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
098046cb
Commit
098046cb
authored
Jul 26, 2023
by
xia-chu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增http api与http文件访问ip白名单限制机制,默认禁止公网访问
parent
e8f8b48d
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
77 行增加
和
2 行删除
+77
-2
conf/config.ini
+2
-0
server/WebApi.cpp
+5
-0
src/Common/config.cpp
+2
-0
src/Common/config.h
+2
-0
src/Http/HttpFileManager.cpp
+59
-2
src/Http/HttpFileManager.h
+7
-0
没有找到文件。
conf/config.ini
查看文件 @
098046cb
...
...
@@ -241,6 +241,8 @@ forbidCacheSuffix=
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
[multicast]
#rtp组播截止组播ip地址
...
...
server/WebApi.cpp
查看文件 @
098046cb
...
...
@@ -238,6 +238,11 @@ static inline void addHttpListener(){
//该api已被消费
consumed
=
true
;
if
(
!
HttpFileManager
::
isIPAllowed
(
sender
.
get_peer_ip
()))
{
invoker
(
403
,
HttpSession
::
KeyValue
(),
"Your ip is not allowed to access the service."
);
return
;
}
if
(
api_debug
){
auto
newInvoker
=
[
invoker
,
parser
](
int
code
,
const
HttpSession
::
KeyValue
&
headerOut
,
const
HttpBody
::
Ptr
&
body
)
{
//body默认为空
...
...
src/Common/config.cpp
查看文件 @
098046cb
...
...
@@ -165,6 +165,7 @@ const string kDirMenu = HTTP_FIELD "dirMenu";
const
string
kForbidCacheSuffix
=
HTTP_FIELD
"forbidCacheSuffix"
;
const
string
kForwardedIpHeader
=
HTTP_FIELD
"forwarded_ip_header"
;
const
string
kAllowCrossDomains
=
HTTP_FIELD
"allow_cross_domains"
;
const
string
kAllowIPRange
=
HTTP_FIELD
"allow_ip_range"
;
static
onceToken
token
([]()
{
mINI
::
Instance
()[
kSendBufSize
]
=
64
*
1024
;
...
...
@@ -193,6 +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"
;
});
}
// namespace Http
...
...
src/Common/config.h
查看文件 @
098046cb
...
...
@@ -254,6 +254,8 @@ extern const std::string kForbidCacheSuffix;
extern
const
std
::
string
kForwardedIpHeader
;
// 是否允许所有跨域请求
extern
const
std
::
string
kAllowCrossDomains
;
// 允许访问http api和http文件索引的ip地址范围白名单,置空情况下不做限制
extern
const
std
::
string
kAllowIPRange
;
}
// namespace Http
////////////SHELL配置///////////
...
...
src/Http/HttpFileManager.cpp
查看文件 @
098046cb
...
...
@@ -50,6 +50,58 @@ 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
);
}
#endif
static
uint64_t
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
));
}
}
catch
(
std
::
exception
&
ex
)
{
WarnL
<<
ex
.
what
();
}
return
0
;
}
bool
HttpFileManager
::
isIPAllowed
(
const
std
::
string
&
ip
)
{
using
IPRangs
=
std
::
vector
<
std
::
pair
<
uint64_t
/*min_ip*/
,
uint64_t
/*max_ip*/
>>
;
GET_CONFIG_FUNC
(
IPRangs
,
allow_ip_range
,
Http
::
kAllowIPRange
,
[](
const
string
&
str
)
->
IPRangs
{
IPRangs
ret
;
auto
vec
=
split
(
str
,
","
);
for
(
auto
&
item
:
vec
)
{
auto
range
=
split
(
item
,
"-"
);
if
(
range
.
size
()
==
2
)
{
ret
.
emplace_back
(
get_ip_uint64
(
trim
(
range
[
0
])),
get_ip_uint64
(
trim
(
range
[
1
])));
}
else
if
(
range
.
size
()
==
1
)
{
auto
ip
=
get_ip_uint64
(
trim
(
range
[
0
]));
ret
.
emplace_back
(
ip
,
ip
);
}
else
{
WarnL
<<
"Invalid ip range: "
<<
item
;
}
}
return
ret
;
});
if
(
allow_ip_range
.
empty
())
{
return
true
;
}
for
(
auto
&
range
:
allow_ip_range
)
{
auto
ip_int
=
get_ip_uint64
(
ip
);
if
(
ip_int
>=
range
.
first
&&
ip_int
<=
range
.
second
)
{
return
true
;
}
}
return
false
;
}
static
string
searchIndexFile
(
const
string
&
dir
){
DIR
*
pDir
;
dirent
*
pDirent
;
...
...
@@ -321,10 +373,15 @@ static void canAccessPath(Session &sender, const Parser &parser, const MediaInfo
return
;
}
//事件未被拦截,则认为是http下载请求
if
(
!
HttpFileManager
::
isIPAllowed
(
sender
.
get_peer_ip
()))
{
callback
(
"Your ip is not allowed to access the service."
,
nullptr
);
return
;
}
// 事件未被拦截,则认为是http下载请求
bool
flag
=
NoticeCenter
::
Instance
().
emitEvent
(
Broadcast
::
kBroadcastHttpAccess
,
parser
,
path
,
is_dir
,
accessPathInvoker
,
static_cast
<
SockInfo
&>
(
sender
));
if
(
!
flag
)
{
//此事件无人监听,我们默认都有权限访问
//
此事件无人监听,我们默认都有权限访问
callback
(
""
,
nullptr
);
}
}
...
...
src/Http/HttpFileManager.h
查看文件 @
098046cb
...
...
@@ -62,6 +62,13 @@ public:
* @return mime值
*/
static
const
std
::
string
&
getContentType
(
const
char
*
name
);
/**
* 该ip是否再白名单中
* @param ip 支持ipv4和ipv6
*/
static
bool
isIPAllowed
(
const
std
::
string
&
ip
);
private
:
HttpFileManager
()
=
delete
;
~
HttpFileManager
()
=
delete
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论