mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Setting AuthOnlyViaModule on a user causes CheckPass to never return true, causing all authentication attempts using the configured password to fail, both on IRC connections and for webadmin. This is useful in situations where an external module (cyrusauth, certauth, imapauth) handles authentication. Setting the global AuthOnlyViaModule option causes similar behavior across every user. If AuthOnlyViaModule is set to true globally, it cannot be overridden per-user. Close #1474 Close #331
152 lines
4.9 KiB
C++
152 lines
4.9 KiB
C++
/*
|
|
* Copyright (C) 2004-2017 ZNC, see the NOTICE file for details.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <znc/User.h>
|
|
#include <znc/znc.h>
|
|
|
|
class UserTest : public ::testing::Test {
|
|
protected:
|
|
// A CZNC instance is required to instantiate CUsers
|
|
UserTest() { CZNC::CreateInstance(); }
|
|
~UserTest() { CZNC::DestroyInstance(); }
|
|
};
|
|
|
|
TEST_F(UserTest, IsHostAllowed) {
|
|
struct hostTest {
|
|
CString sMask;
|
|
CString sIP;
|
|
bool bExpectedResult;
|
|
};
|
|
|
|
hostTest aHostTests[] = {
|
|
{"127.0.0.1", "127.0.0.1", true},
|
|
{"127.0.0.20", "127.0.0.1", false},
|
|
{"127.0.0.20/24", "127.0.0.1", true},
|
|
{"127.0.0.20/0", "127.0.0.1", true},
|
|
{"127.0.0.20/32", "127.0.0.1", false},
|
|
|
|
{"127.0.0.1", "127.0.0.0", false},
|
|
{"127.0.0.20", "127.0.0.0", false},
|
|
{"127.0.0.20/24", "127.0.0.0", true},
|
|
{"127.0.0.20/0", "127.0.0.0", true},
|
|
{"127.0.0.20/32", "127.0.0.0", false},
|
|
|
|
{"127.0.0.1", "127.0.0.255", false},
|
|
{"127.0.0.20", "127.0.0.255", false},
|
|
{"127.0.0.20/24", "127.0.0.255", true},
|
|
{"127.0.0.20/0", "127.0.0.255", true},
|
|
{"127.0.0.20/32", "127.0.0.255", false},
|
|
|
|
{"127.0.0.1", "127.0.1.1", false},
|
|
{"127.0.0.20", "127.0.1.1", false},
|
|
{"127.0.0.20/24", "127.0.1.1", false},
|
|
{"127.0.0.20/16", "127.0.1.1", true},
|
|
{"127.0.0.20/0", "127.0.1.1", true},
|
|
{"127.0.0.20/32", "127.0.1.1", false},
|
|
|
|
{"127.0.0.1", "0.0.0.0", false},
|
|
{"127.0.0.20", "0.0.0.0", false},
|
|
{"127.0.0.20/24", "0.0.0.0", false},
|
|
{"127.0.0.20/16", "0.0.0.0", false},
|
|
{"127.0.0.20/0", "0.0.0.0", true},
|
|
{"127.0.0.20/32", "0.0.0.0", false},
|
|
|
|
{"127.0.0.1", "255.255.255.255", false},
|
|
{"127.0.0.20", "255.255.255.255", false},
|
|
{"127.0.0.20/24", "255.255.255.255", false},
|
|
{"127.0.0.20/16", "255.255.255.255", false},
|
|
{"127.0.0.20/0", "255.255.255.255", true},
|
|
{"127.0.0.20/32", "255.255.255.255", false},
|
|
|
|
{"127.0.0.1", "::1", false},
|
|
{"::1", "::1", true},
|
|
{"::20/120", "::1", true},
|
|
{"::20/120", "::ffff", false},
|
|
{"::ff/0", "::1", true},
|
|
{"::ff/0", "127.0.0.1", false},
|
|
{"127.0.0.20/0", "::1", false},
|
|
|
|
{"127.0.0.1/-1", "127.0.0.1", false},
|
|
{"::0/-1", "::0", false},
|
|
{"127.0.0.a/0", "127.0.0.1", false},
|
|
{"::g/0", "::0", false},
|
|
{"127.0.0.1/0", "127.0.0.a", false},
|
|
{"::0/0", "::g", false},
|
|
|
|
{"::0/0/0", "::0", false},
|
|
{"2001:db8::/33", "2001:db9:0::", false},
|
|
{"2001:db8::/32", "2001:db8:8000::", true},
|
|
{"2001:db8::/33", "2001:db8:8000::", false},
|
|
|
|
{"0.0.0.0/0", "::1", false},
|
|
{"0.0.0.0/0", "127.0.0.1", true},
|
|
{"::0/0", "127.0.0.1", false},
|
|
{"::0/0", "::1", true},
|
|
{"0.0.0.0", "127.0.0.1", false},
|
|
{"0.0.0.0", "::1", false},
|
|
{"::0", "::1", false},
|
|
{"::0", "127.0.0.1", false},
|
|
|
|
{"127.0.0.2/abc", "127.0.0.1", false},
|
|
{"::2/abc", "::1", false},
|
|
{"127.0.0.1/33", "127.0.0.1", false},
|
|
{"::1/129", "::1", false},
|
|
|
|
{"::2/00000000000", "::1", false},
|
|
{"::2/0a", "::1", false},
|
|
|
|
{"192.168.*", "192.168.0.1", true},
|
|
};
|
|
|
|
for (const hostTest& h : aHostTests) {
|
|
CUser user("user");
|
|
user.AddAllowedHost(h.sMask);
|
|
EXPECT_EQ(h.bExpectedResult, user.IsHostAllowed(h.sIP))
|
|
<< "Allow-host is " << h.sMask;
|
|
}
|
|
}
|
|
|
|
TEST_F(UserTest, TestAuthOnlyViaModule) {
|
|
CUser user("user");
|
|
user.SetPass("password", CUser::HASH_NONE);
|
|
|
|
bool bAuthOnlyViaModuleDefault = CZNC::Get().GetAuthOnlyViaModule();
|
|
|
|
CZNC::Get().SetAuthOnlyViaModule(false);
|
|
user.SetAuthOnlyViaModule(false);
|
|
|
|
EXPECT_TRUE(user.CheckPass("password"));
|
|
|
|
// user-level only
|
|
user.SetAuthOnlyViaModule(true);
|
|
EXPECT_FALSE(user.CheckPass("password"));
|
|
|
|
// re-enabling built-in authentication
|
|
user.SetAuthOnlyViaModule(false);
|
|
EXPECT_TRUE(user.CheckPass("password"));
|
|
|
|
// on at global level, off at user level
|
|
CZNC::Get().SetAuthOnlyViaModule(true);
|
|
EXPECT_FALSE(user.CheckPass("password"));
|
|
|
|
// on at both levels
|
|
user.SetAuthOnlyViaModule(true);
|
|
EXPECT_FALSE(user.CheckPass("password"));
|
|
|
|
CZNC::Get().SetAuthOnlyViaModule(bAuthOnlyViaModuleDefault);
|
|
}
|