Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Kernel Liteos A
提交
0af36ec5
K
Kernel Liteos A
项目概览
OpenHarmony
/
Kernel Liteos A
1 年多 前同步成功
通知
460
Star
414
Fork
55
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
4
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel Liteos A
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
4
Issue
4
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
0af36ec5
编写于
10月 09, 2020
作者:
O
openharmony_ci
提交者:
Gitee
10月 09, 2020
浏览文件
操作
浏览文件
下载
差异文件
!17 默认不应用CAP_NET_BROADCAST权限校验,保持与linux行为兼容
Merge pull request !17 from Caoruihong/xx
上级
3c255345
990f3abe
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
2 deletion
+8
-2
net/lwip-2.1/porting/include/lwip/lwipopts.h
net/lwip-2.1/porting/include/lwip/lwipopts.h
+1
-0
net/lwip-2.1/porting/src/sockets.c
net/lwip-2.1/porting/src/sockets.c
+7
-2
未找到文件。
net/lwip-2.1/porting/include/lwip/lwipopts.h
浏览文件 @
0af36ec5
...
@@ -221,5 +221,6 @@
...
@@ -221,5 +221,6 @@
#define LWIP_TFTP LOSCFG_NET_LWIP_SACK_TFTP
#define LWIP_TFTP LOSCFG_NET_LWIP_SACK_TFTP
#define LWIP_DHCPS 1
#define LWIP_DHCPS 1
#define LWIP_ENABLE_NET_CAPABILITY 1
#define LWIP_ENABLE_NET_CAPABILITY 1
#define LWIP_ENABLE_CAP_NET_BROADCAST 0
#endif
/* _LWIP_PORTING_LWIPOPTS_H_ */
#endif
/* _LWIP_PORTING_LWIPOPTS_H_ */
net/lwip-2.1/porting/src/sockets.c
浏览文件 @
0af36ec5
...
@@ -142,12 +142,14 @@ static int lwip_setsockopt_wrap(int s, int level, int optname, const void *optva
...
@@ -142,12 +142,14 @@ static int lwip_setsockopt_wrap(int s, int level, int optname, const void *optva
#if LWIP_ENABLE_NET_CAPABILITY
#if LWIP_ENABLE_NET_CAPABILITY
if
(
level
==
SOL_SOCKET
)
{
if
(
level
==
SOL_SOCKET
)
{
switch
(
optname
)
{
switch
(
optname
)
{
#if LWIP_ENABLE_CAP_NET_BROADCAST
case
SO_BROADCAST
:
case
SO_BROADCAST
:
if
(
!
IsCapPermit
(
CAP_NET_BROADCAST
))
{
if
(
!
IsCapPermit
(
CAP_NET_BROADCAST
))
{
set_errno
(
EPERM
);
set_errno
(
EPERM
);
return
-
1
;
return
-
1
;
}
}
break
;
break
;
#endif
case
SO_DEBUG
:
case
SO_DEBUG
:
case
SO_MARK
:
case
SO_MARK
:
case
SO_PRIORITY
:
case
SO_PRIORITY
:
...
@@ -166,7 +168,7 @@ static int lwip_setsockopt_wrap(int s, int level, int optname, const void *optva
...
@@ -166,7 +168,7 @@ static int lwip_setsockopt_wrap(int s, int level, int optname, const void *optva
return
lwip_setsockopt2
(
s
,
level
,
optname
,
optval
,
optlen
);
return
lwip_setsockopt2
(
s
,
level
,
optname
,
optval
,
optlen
);
}
}
#if LWIP_ENABLE_NET_CAPABILITY
#if LWIP_ENABLE_NET_CAPABILITY
&& LWIP_ENABLE_CAP_NET_BROADCAST
static
int
ip_addr_isbroadcast_bysock
(
const
ip_addr_t
*
ipaddr
,
int
s
)
static
int
ip_addr_isbroadcast_bysock
(
const
ip_addr_t
*
ipaddr
,
int
s
)
{
{
struct
sockaddr
sa
;
struct
sockaddr
sa
;
...
@@ -215,10 +217,12 @@ static int lwip_bind_wrap(int s, const struct sockaddr *name, socklen_t namelen)
...
@@ -215,10 +217,12 @@ static int lwip_bind_wrap(int s, const struct sockaddr *name, socklen_t namelen)
LWIP_ERROR
(
"permission deny: NET_BIND_SERVICE
\n
"
,
IsCapPermit
(
CAP_NET_BIND_SERVICE
),
LWIP_ERROR
(
"permission deny: NET_BIND_SERVICE
\n
"
,
IsCapPermit
(
CAP_NET_BIND_SERVICE
),
set_errno
(
EPERM
);
return
-
1
);
set_errno
(
EPERM
);
return
-
1
);
}
}
#if LWIP_ENABLE_CAP_NET_BROADCAST
if
(
ip_addr_ismulticast
(
&
ipaddr
)
||
ip_addr_isbroadcast_bysock
(
&
ipaddr
,
s
))
{
if
(
ip_addr_ismulticast
(
&
ipaddr
)
||
ip_addr_isbroadcast_bysock
(
&
ipaddr
,
s
))
{
LWIP_ERROR
(
"permission deny: NET_BROADCAST
\n
"
,
IsCapPermit
(
CAP_NET_BROADCAST
),
LWIP_ERROR
(
"permission deny: NET_BROADCAST
\n
"
,
IsCapPermit
(
CAP_NET_BROADCAST
),
set_errno
(
EPERM
);
return
-
1
);
set_errno
(
EPERM
);
return
-
1
);
}
}
#endif
}
}
#endif
#endif
...
@@ -236,11 +240,12 @@ static ssize_t lwip_sendto_wrap(int s, const void *dataptr, size_t size, int fla
...
@@ -236,11 +240,12 @@ static ssize_t lwip_sendto_wrap(int s, const void *dataptr, size_t size, int fla
u16_t
port
;
u16_t
port
;
SOCKADDR_TO_IPADDR_PORT
(
to
,
&
ipaddr
,
port
);
SOCKADDR_TO_IPADDR_PORT
(
to
,
&
ipaddr
,
port
);
#if LWIP_ENABLE_CAP_NET_BROADCAST
if
(
ip_addr_ismulticast
(
&
ipaddr
)
||
ip_addr_isbroadcast_bysock
(
&
ipaddr
,
s
))
{
if
(
ip_addr_ismulticast
(
&
ipaddr
)
||
ip_addr_isbroadcast_bysock
(
&
ipaddr
,
s
))
{
LWIP_ERROR
(
"permission deny: NET_BROADCAST
\n
"
,
IsCapPermit
(
CAP_NET_BROADCAST
),
LWIP_ERROR
(
"permission deny: NET_BROADCAST
\n
"
,
IsCapPermit
(
CAP_NET_BROADCAST
),
set_errno
(
EPERM
);
return
-
1
);
set_errno
(
EPERM
);
return
-
1
);
}
}
#endif
}
}
#endif
#endif
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录