Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
9f693039
Unverified
Commit
9f693039
authored
Sep 26, 2023
by
夏楚
Committed by
GitHub
Sep 26, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IP白名单支持ipv6 (#2858)
Fix #2855
parent
3ff37347
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
62 行增加
和
18 行删除
+62
-18
conf/config.ini
+1
-1
src/Common/config.cpp
+1
-1
src/Http/HttpFileManager.cpp
+60
-16
没有找到文件。
conf/config.ini
查看文件 @
9f693039
...
...
@@ -244,7 +244,7 @@ forwarded_ip_header=
#默认允许所有跨域请求
allow_cross_domains
=
1
#允许访问http api和http文件索引的ip地址范围白名单,置空情况下不做限制
allow_ip_range
=
127.0.0.1,172.16.0.0-172.31.255.255,192.168.0.0-192.168.255.255,10.0.0.0-10.255.255.255
allow_ip_range
=
::1,
127.0.0.1,172.16.0.0-172.31.255.255,192.168.0.0-192.168.255.255,10.0.0.0-10.255.255.255
[multicast]
#rtp组播截止组播ip地址
...
...
src/Common/config.cpp
查看文件 @
9f693039
...
...
@@ -194,7 +194,7 @@ static onceToken token([]() {
mINI
::
Instance
()[
kForbidCacheSuffix
]
=
""
;
mINI
::
Instance
()[
kForwardedIpHeader
]
=
""
;
mINI
::
Instance
()[
kAllowCrossDomains
]
=
1
;
mINI
::
Instance
()[
kAllowIPRange
]
=
"127.0.0.1,172.16.0.0-172.31.255.255,192.168.0.0-192.168.255.255,10.0.0.0-10.255.255.255"
;
mINI
::
Instance
()[
kAllowIPRange
]
=
"
::1,
127.0.0.1,172.16.0.0-172.31.255.255,192.168.0.0-192.168.255.255,10.0.0.0-10.255.255.255"
;
});
}
// namespace Http
...
...
src/Http/HttpFileManager.cpp
查看文件 @
9f693039
...
...
@@ -50,29 +50,69 @@ const string &HttpFileManager::getContentType(const char *name) {
return
HttpConst
::
getHttpContentType
(
name
);
}
#ifndef ntohll
static
uint64_t
ntohll
(
uint64_t
val
)
{
return
(((
uint64_t
)
ntohl
(
val
))
<<
32
)
+
ntohl
(
val
>>
32
);
namespace
{
class
UInt128
{
public
:
UInt128
()
=
default
;
UInt128
(
const
struct
sockaddr_storage
&
storage
)
{
_family
=
storage
.
ss_family
;
memset
(
_bytes
,
0
,
16
);
switch
(
storage
.
ss_family
)
{
case
AF_INET
:
{
memcpy
(
_bytes
,
&
(
reinterpret_cast
<
const
struct
sockaddr_in
&>
(
storage
).
sin_addr
),
4
);
break
;
}
case
AF_INET6
:
{
memcpy
(
_bytes
,
&
(
reinterpret_cast
<
const
struct
sockaddr_in6
&>
(
storage
).
sin6_addr
),
16
);
break
;
}
default
:
CHECK
(
false
,
"Invalid socket family"
);
break
;
}
}
bool
operator
==
(
const
UInt128
&
that
)
const
{
return
_family
==
that
.
_family
&&
!
memcmp
(
_bytes
,
that
.
_bytes
,
16
);
}
bool
operator
<=
(
const
UInt128
&
that
)
const
{
return
*
this
<
that
||
*
this
==
that
;
}
bool
operator
>=
(
const
UInt128
&
that
)
const
{
return
*
this
>
that
||
*
this
==
that
;
}
bool
operator
>
(
const
UInt128
&
that
)
const
{
return
that
<
*
this
;
}
bool
operator
<
(
const
UInt128
&
that
)
const
{
auto
sz
=
_family
==
AF_INET
?
4
:
16
;
for
(
int
i
=
0
;
i
<
sz
;
++
i
)
{
if
(
_bytes
[
i
]
<
that
.
_bytes
[
i
])
{
return
true
;
}
else
if
(
_bytes
[
i
]
>
that
.
_bytes
[
i
])
{
return
false
;
}
}
return
false
;
}
operator
bool
()
const
{
return
_family
!=
-
1
;
}
bool
same_type
(
const
UInt128
&
that
)
const
{
return
_family
==
that
.
_family
;
}
private
:
int
_family
=
-
1
;
uint8_t
_bytes
[
16
];
};
}
#endif
static
uint64_t
get_ip_uint64
(
const
std
::
string
&
ip
)
{
static
UInt128
get_ip_uint64
(
const
std
::
string
&
ip
)
{
try
{
auto
storage
=
SockUtil
::
make_sockaddr
(
ip
.
data
(),
0
);
if
(
storage
.
ss_family
==
AF_INET
)
{
return
ntohl
(
reinterpret_cast
<
uint32_t
&>
(
reinterpret_cast
<
struct
sockaddr_in
&>
(
storage
).
sin_addr
));
}
if
(
storage
.
ss_family
==
AF_INET6
)
{
return
ntohll
(
reinterpret_cast
<
uint64_t
&>
(
reinterpret_cast
<
struct
sockaddr_in6
&>
(
storage
).
sin6_addr
));
}
return
UInt128
(
SockUtil
::
make_sockaddr
(
ip
.
data
(),
0
));
}
catch
(
std
::
exception
&
ex
)
{
WarnL
<<
ex
.
what
();
}
return
0
;
return
UInt128
()
;
}
bool
HttpFileManager
::
isIPAllowed
(
const
std
::
string
&
ip
)
{
using
IPRangs
=
std
::
vector
<
std
::
pair
<
uint64_t
/*min_ip*/
,
uint64_t
/*max_ip*/
>>
;
using
IPRangs
=
std
::
vector
<
std
::
pair
<
UInt128
/*min_ip*/
,
UInt128
/*max_ip*/
>>
;
GET_CONFIG_FUNC
(
IPRangs
,
allow_ip_range
,
Http
::
kAllowIPRange
,
[](
const
string
&
str
)
->
IPRangs
{
IPRangs
ret
;
auto
vec
=
split
(
str
,
","
);
...
...
@@ -84,13 +124,17 @@ bool HttpFileManager::isIPAllowed(const std::string &ip) {
if
(
range
.
size
()
==
2
)
{
auto
ip_min
=
get_ip_uint64
(
trim
(
range
[
0
]));
auto
ip_max
=
get_ip_uint64
(
trim
(
range
[
1
]));
if
(
ip_min
&&
ip_max
)
{
if
(
ip_min
&&
ip_max
&&
ip_min
.
same_type
(
ip_max
)
)
{
ret
.
emplace_back
(
ip_min
,
ip_max
);
}
else
{
WarnL
<<
"Invalid ip range or family: "
<<
item
;
}
}
else
if
(
range
.
size
()
==
1
)
{
auto
ip
=
get_ip_uint64
(
trim
(
range
[
0
]));
if
(
ip
)
{
ret
.
emplace_back
(
ip
,
ip
);
}
else
{
WarnL
<<
"Invalid ip: "
<<
item
;
}
}
else
{
WarnL
<<
"Invalid ip range: "
<<
item
;
...
...
@@ -104,7 +148,7 @@ bool HttpFileManager::isIPAllowed(const std::string &ip) {
}
auto
ip_int
=
get_ip_uint64
(
ip
);
for
(
auto
&
range
:
allow_ip_range
)
{
if
(
ip_int
>=
range
.
first
&&
ip_int
<=
range
.
second
)
{
if
(
ip_int
.
same_type
(
range
.
first
)
&&
ip_int
>=
range
.
first
&&
ip_int
<=
range
.
second
)
{
return
true
;
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论