Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
91e1908f
Commit
91e1908f
authored
Jun 04, 2008
by
YOSHIFUJI Hideaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[IPV6] NETNS: Handle ancillary data in appropriate namespace.
Signed-off-by:
YOSHIFUJI Hideaki
<
yoshfuji@linux-ipv6.org
>
parent
187e3838
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
8 deletions
+10
-8
include/net/transp_v6.h
include/net/transp_v6.h
+2
-1
net/ipv6/datagram.c
net/ipv6/datagram.c
+4
-3
net/ipv6/ip6_flowlabel.c
net/ipv6/ip6_flowlabel.c
+1
-1
net/ipv6/ipv6_sockglue.c
net/ipv6/ipv6_sockglue.c
+1
-1
net/ipv6/raw.c
net/ipv6/raw.c
+1
-1
net/ipv6/udp.c
net/ipv6/udp.c
+1
-1
No files found.
include/net/transp_v6.h
View file @
91e1908f
...
...
@@ -40,7 +40,8 @@ extern int datagram_recv_ctl(struct sock *sk,
struct
msghdr
*
msg
,
struct
sk_buff
*
skb
);
extern
int
datagram_send_ctl
(
struct
msghdr
*
msg
,
extern
int
datagram_send_ctl
(
struct
net
*
net
,
struct
msghdr
*
msg
,
struct
flowi
*
fl
,
struct
ipv6_txoptions
*
opt
,
int
*
hlimit
,
int
*
tclass
);
...
...
net/ipv6/datagram.c
View file @
91e1908f
...
...
@@ -496,7 +496,8 @@ int datagram_recv_ctl(struct sock *sk, struct msghdr *msg, struct sk_buff *skb)
return
0
;
}
int
datagram_send_ctl
(
struct
msghdr
*
msg
,
struct
flowi
*
fl
,
int
datagram_send_ctl
(
struct
net
*
net
,
struct
msghdr
*
msg
,
struct
flowi
*
fl
,
struct
ipv6_txoptions
*
opt
,
int
*
hlimit
,
int
*
tclass
)
{
...
...
@@ -540,7 +541,7 @@ int datagram_send_ctl(struct msghdr *msg, struct flowi *fl,
addr_type
=
__ipv6_addr_type
(
&
src_info
->
ipi6_addr
);
if
(
fl
->
oif
)
{
dev
=
dev_get_by_index
(
&
init_
net
,
fl
->
oif
);
dev
=
dev_get_by_index
(
net
,
fl
->
oif
);
if
(
!
dev
)
return
-
ENODEV
;
}
else
if
(
addr_type
&
IPV6_ADDR_LINKLOCAL
)
...
...
@@ -548,7 +549,7 @@ int datagram_send_ctl(struct msghdr *msg, struct flowi *fl,
if
(
addr_type
!=
IPV6_ADDR_ANY
)
{
int
strict
=
__ipv6_addr_src_scope
(
addr_type
)
<=
IPV6_ADDR_SCOPE_LINKLOCAL
;
if
(
!
ipv6_chk_addr
(
&
init_
net
,
&
src_info
->
ipi6_addr
,
if
(
!
ipv6_chk_addr
(
net
,
&
src_info
->
ipi6_addr
,
strict
?
dev
:
NULL
,
0
))
err
=
-
EINVAL
;
else
...
...
net/ipv6/ip6_flowlabel.c
View file @
91e1908f
...
...
@@ -354,7 +354,7 @@ fl_create(struct net *net, struct in6_flowlabel_req *freq, char __user *optval,
msg
.
msg_control
=
(
void
*
)(
fl
->
opt
+
1
);
flowi
.
oif
=
0
;
err
=
datagram_send_ctl
(
&
msg
,
&
flowi
,
fl
->
opt
,
&
junk
,
&
junk
);
err
=
datagram_send_ctl
(
net
,
&
msg
,
&
flowi
,
fl
->
opt
,
&
junk
,
&
junk
);
if
(
err
)
goto
done
;
err
=
-
EINVAL
;
...
...
net/ipv6/ipv6_sockglue.c
View file @
91e1908f
...
...
@@ -416,7 +416,7 @@ static int do_ipv6_setsockopt(struct sock *sk, int level, int optname,
msg
.
msg_controllen
=
optlen
;
msg
.
msg_control
=
(
void
*
)(
opt
+
1
);
retv
=
datagram_send_ctl
(
&
msg
,
&
fl
,
opt
,
&
junk
,
&
junk
);
retv
=
datagram_send_ctl
(
net
,
&
msg
,
&
fl
,
opt
,
&
junk
,
&
junk
);
if
(
retv
)
goto
done
;
update:
...
...
net/ipv6/raw.c
View file @
91e1908f
...
...
@@ -813,7 +813,7 @@ static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
memset
(
opt
,
0
,
sizeof
(
struct
ipv6_txoptions
));
opt
->
tot_len
=
sizeof
(
struct
ipv6_txoptions
);
err
=
datagram_send_ctl
(
msg
,
&
fl
,
opt
,
&
hlimit
,
&
tclass
);
err
=
datagram_send_ctl
(
sock_net
(
sk
),
msg
,
&
fl
,
opt
,
&
hlimit
,
&
tclass
);
if
(
err
<
0
)
{
fl6_sock_release
(
flowlabel
);
return
err
;
...
...
net/ipv6/udp.c
View file @
91e1908f
...
...
@@ -731,7 +731,7 @@ int udpv6_sendmsg(struct kiocb *iocb, struct sock *sk,
memset
(
opt
,
0
,
sizeof
(
struct
ipv6_txoptions
));
opt
->
tot_len
=
sizeof
(
*
opt
);
err
=
datagram_send_ctl
(
msg
,
&
fl
,
opt
,
&
hlimit
,
&
tclass
);
err
=
datagram_send_ctl
(
sock_net
(
sk
),
msg
,
&
fl
,
opt
,
&
hlimit
,
&
tclass
);
if
(
err
<
0
)
{
fl6_sock_release
(
flowlabel
);
return
err
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment