Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SoftEtherVPN/SoftEtherVPN_Stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorELIN <elin@mikomoe.jp>2014-01-26 06:51:34 +0400
committerELIN <elin@mikomoe.jp>2014-01-26 06:51:34 +0400
commitd38762941f92ffa72516dd1e1180ba0912b36559 (patch)
tree0d8b192d534d3cd145018273c3be708976683a3e
parent001fd910fedfd0ef1690a9d3c50c1a28d1680d1d (diff)
adminip.txt CIDR Support
-rw-r--r--src/Cedar/Admin.c28
1 files changed, 27 insertions, 1 deletions
diff --git a/src/Cedar/Admin.c b/src/Cedar/Admin.c
index e61e41f4..626c1cd7 100644
--- a/src/Cedar/Admin.c
+++ b/src/Cedar/Admin.c
@@ -13212,6 +13212,9 @@ bool CheckAdminSourceAddress(SOCK *sock, char *hubname)
UINT i;
TOKEN_LIST *t;
IP ip;
+ IP mask;
+ IP ip1;
+ IP ip2;
s = CfgReadNextLine(b);
if (s == NULL)
@@ -13242,7 +13245,30 @@ bool CheckAdminSourceAddress(SOCK *sock, char *hubname)
{
if (t->NumTokens == 1 || StrCmpi(hubname, t->Token[1]) == 0)
{
- if (StrToIP(&ip, t->Token[0]))
+ if (ParseIpAndMask46(t->Token[0], &ip, &mask))
+ {
+ if (IsIP4(&sock->RemoteIP) && IsIP4(&ip))
+ {
+ IPAnd4(&ip1, &sock->RemoteIP, &mask);
+ IPAnd4(&ip2, &ip, &mask);
+
+ if (CmpIpAddr(&ip1, &ip2) == 0)
+ {
+ ok = true;
+ }
+ }
+ else if (IsIP6(&sock->RemoteIP) && IsIP6(&ip))
+ {
+ IPAnd6(&ip1, &sock->RemoteIP, &mask);
+ IPAnd6(&ip2, &ip, &mask);
+
+ if (CmpIpAddr(&ip1, &ip2) == 0)
+ {
+ ok = true;
+ }
+ }
+ }
+ else if (StrToIP(&ip, t->Token[0]))
{
if (CmpIpAddr(&sock->RemoteIP, &ip) == 0)
{