Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
de357cc0
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
6
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
de357cc0
编写于
3月 15, 2008
作者:
Y
YOSHIFUJI Hideaki
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[IPV6] NDISC: Don't rely on node-type hint from L2 unless required.
Signed-off-by:
N
YOSHIFUJI Hideaki
<
yoshfuji@linux-ipv6.org
>
上级
52eeeb84
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
16 addition
and
0 deletion
+16
-0
include/linux/skbuff.h
include/linux/skbuff.h
+2
-0
net/ipv6/Kconfig
net/ipv6/Kconfig
+4
-0
net/ipv6/ndisc.c
net/ipv6/ndisc.c
+10
-0
未找到文件。
include/linux/skbuff.h
浏览文件 @
de357cc0
...
@@ -313,7 +313,9 @@ struct sk_buff {
...
@@ -313,7 +313,9 @@ struct sk_buff {
__u16
tc_verd
;
/* traffic control verdict */
__u16
tc_verd
;
/* traffic control verdict */
#endif
#endif
#endif
#endif
#ifdef CONFIG_IPV6_NDISC_NODETYPE
__u8
ndisc_nodetype
:
2
;
__u8
ndisc_nodetype
:
2
;
#endif
/* 14 bit hole */
/* 14 bit hole */
#ifdef CONFIG_NET_DMA
#ifdef CONFIG_NET_DMA
...
...
net/ipv6/Kconfig
浏览文件 @
de357cc0
...
@@ -168,6 +168,7 @@ config IPV6_SIT
...
@@ -168,6 +168,7 @@ config IPV6_SIT
tristate "IPv6: IPv6-in-IPv4 tunnel (SIT driver)"
tristate "IPv6: IPv6-in-IPv4 tunnel (SIT driver)"
depends on IPV6
depends on IPV6
select INET_TUNNEL
select INET_TUNNEL
select IPV6_NDISC_NODETYPE
default y
default y
---help---
---help---
Tunneling means encapsulating data of one protocol type within
Tunneling means encapsulating data of one protocol type within
...
@@ -178,6 +179,9 @@ config IPV6_SIT
...
@@ -178,6 +179,9 @@ config IPV6_SIT
Saying M here will produce a module called sit.ko. If unsure, say Y.
Saying M here will produce a module called sit.ko. If unsure, say Y.
config IPV6_NDISC_NODETYPE
bool
config IPV6_TUNNEL
config IPV6_TUNNEL
tristate "IPv6: IP-in-IPv6 tunnel (RFC2473)"
tristate "IPv6: IP-in-IPv6 tunnel (RFC2473)"
select INET6_TUNNEL
select INET6_TUNNEL
...
...
net/ipv6/ndisc.c
浏览文件 @
de357cc0
...
@@ -1092,11 +1092,13 @@ static void ndisc_router_discovery(struct sk_buff *skb)
...
@@ -1092,11 +1092,13 @@ static void ndisc_router_discovery(struct sk_buff *skb)
return
;
return
;
}
}
#ifdef CONFIG_IPV6_NDISC_NODETYPE
if
(
skb
->
ndisc_nodetype
==
NDISC_NODETYPE_HOST
)
{
if
(
skb
->
ndisc_nodetype
==
NDISC_NODETYPE_HOST
)
{
ND_PRINTK2
(
KERN_WARNING
ND_PRINTK2
(
KERN_WARNING
"ICMPv6 RA: from host or unauthorized router
\n
"
);
"ICMPv6 RA: from host or unauthorized router
\n
"
);
return
;
return
;
}
}
#endif
/*
/*
* set the RA_RECV flag in the interface
* set the RA_RECV flag in the interface
...
@@ -1121,9 +1123,11 @@ static void ndisc_router_discovery(struct sk_buff *skb)
...
@@ -1121,9 +1123,11 @@ static void ndisc_router_discovery(struct sk_buff *skb)
return
;
return
;
}
}
#ifdef CONFIG_IPV6_NDISC_NODETYPE
/* skip link-specific parameters from interior routers */
/* skip link-specific parameters from interior routers */
if
(
skb
->
ndisc_nodetype
==
NDISC_NODETYPE_NODEFAULT
)
if
(
skb
->
ndisc_nodetype
==
NDISC_NODETYPE_NODEFAULT
)
goto
skip_linkparms
;
goto
skip_linkparms
;
#endif
if
(
in6_dev
->
if_flags
&
IF_RS_SENT
)
{
if
(
in6_dev
->
if_flags
&
IF_RS_SENT
)
{
/*
/*
...
@@ -1239,7 +1243,9 @@ static void ndisc_router_discovery(struct sk_buff *skb)
...
@@ -1239,7 +1243,9 @@ static void ndisc_router_discovery(struct sk_buff *skb)
}
}
}
}
#ifdef CONFIG_IPV6_NDISC_NODETYPE
skip_linkparms:
skip_linkparms:
#endif
/*
/*
* Process options.
* Process options.
...
@@ -1286,9 +1292,11 @@ static void ndisc_router_discovery(struct sk_buff *skb)
...
@@ -1286,9 +1292,11 @@ static void ndisc_router_discovery(struct sk_buff *skb)
}
}
#endif
#endif
#ifdef CONFIG_IPV6_NDISC_NODETYPE
/* skip link-specific ndopts from interior routers */
/* skip link-specific ndopts from interior routers */
if
(
skb
->
ndisc_nodetype
==
NDISC_NODETYPE_NODEFAULT
)
if
(
skb
->
ndisc_nodetype
==
NDISC_NODETYPE_NODEFAULT
)
goto
out
;
goto
out
;
#endif
if
(
in6_dev
->
cnf
.
accept_ra_pinfo
&&
ndopts
.
nd_opts_pi
)
{
if
(
in6_dev
->
cnf
.
accept_ra_pinfo
&&
ndopts
.
nd_opts_pi
)
{
struct
nd_opt_hdr
*
p
;
struct
nd_opt_hdr
*
p
;
...
@@ -1353,6 +1361,7 @@ static void ndisc_redirect_rcv(struct sk_buff *skb)
...
@@ -1353,6 +1361,7 @@ static void ndisc_redirect_rcv(struct sk_buff *skb)
int
optlen
;
int
optlen
;
u8
*
lladdr
=
NULL
;
u8
*
lladdr
=
NULL
;
#ifdef CONFIG_IPV6_NDISC_NODETYPE
switch
(
skb
->
ndisc_nodetype
)
{
switch
(
skb
->
ndisc_nodetype
)
{
case
NDISC_NODETYPE_HOST
:
case
NDISC_NODETYPE_HOST
:
case
NDISC_NODETYPE_NODEFAULT
:
case
NDISC_NODETYPE_NODEFAULT
:
...
@@ -1360,6 +1369,7 @@ static void ndisc_redirect_rcv(struct sk_buff *skb)
...
@@ -1360,6 +1369,7 @@ static void ndisc_redirect_rcv(struct sk_buff *skb)
"ICMPv6 Redirect: from host or unauthorized router
\n
"
);
"ICMPv6 Redirect: from host or unauthorized router
\n
"
);
return
;
return
;
}
}
#endif
if
(
!
(
ipv6_addr_type
(
&
ipv6_hdr
(
skb
)
->
saddr
)
&
IPV6_ADDR_LINKLOCAL
))
{
if
(
!
(
ipv6_addr_type
(
&
ipv6_hdr
(
skb
)
->
saddr
)
&
IPV6_ADDR_LINKLOCAL
))
{
ND_PRINTK2
(
KERN_WARNING
ND_PRINTK2
(
KERN_WARNING
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录