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
nexedi
linux
Commits
38fc0000
Commit
38fc0000
authored
Apr 02, 2003
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[IPSEC]: Add encap support for xfrm_user.
parent
cc68945e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
0 deletions
+39
-0
net/xfrm/xfrm_user.c
net/xfrm/xfrm_user.c
+39
-0
No files found.
net/xfrm/xfrm_user.c
View file @
38fc0000
...
...
@@ -67,6 +67,20 @@ static int verify_one_alg(struct rtattr **xfrma, enum xfrm_attr_type_t type)
return
0
;
}
static
int
verify_encap_tmpl
(
struct
rtattr
**
xfrma
)
{
struct
rtattr
*
rt
=
xfrma
[
XFRMA_ENCAP
-
1
];
struct
xfrm_encap_tmpl
*
encap
;
if
(
!
rt
)
return
0
;
if
((
rt
->
rta_len
-
sizeof
(
*
rt
))
<
sizeof
(
*
encap
))
return
-
EINVAL
;
return
0
;
}
static
int
verify_newsa_info
(
struct
xfrm_usersa_info
*
p
,
struct
rtattr
**
xfrma
)
{
...
...
@@ -122,6 +136,8 @@ static int verify_newsa_info(struct xfrm_usersa_info *p,
goto
out
;
if
((
err
=
verify_one_alg
(
xfrma
,
XFRMA_ALG_COMP
)))
goto
out
;
if
((
err
=
verify_encap_tmpl
(
xfrma
)))
goto
out
;
err
=
-
EINVAL
;
switch
(
p
->
mode
)
{
...
...
@@ -157,6 +173,24 @@ static int attach_one_algo(struct xfrm_algo **algpp, struct rtattr *u_arg)
return
0
;
}
static
int
attach_encap_tmpl
(
struct
xfrm_encap_tmpl
**
encapp
,
struct
rtattr
*
u_arg
)
{
struct
rtattr
*
rta
=
u_arg
;
struct
xfrm_encap_tmpl
*
p
,
*
uencap
;
if
(
!
rta
)
return
0
;
uencap
=
RTA_DATA
(
rta
);
p
=
kmalloc
(
sizeof
(
*
p
),
GFP_KERNEL
);
if
(
!
p
)
return
-
ENOMEM
;
memcpy
(
p
,
uencap
,
sizeof
(
*
p
));
*
encapp
=
p
;
return
0
;
}
static
void
copy_from_user_state
(
struct
xfrm_state
*
x
,
struct
xfrm_usersa_info
*
p
)
{
memcpy
(
&
x
->
id
,
&
p
->
id
,
sizeof
(
x
->
id
));
...
...
@@ -187,6 +221,8 @@ static struct xfrm_state *xfrm_state_construct(struct xfrm_usersa_info *p,
goto
error
;
if
((
err
=
attach_one_algo
(
&
x
->
calg
,
xfrma
[
XFRMA_ALG_COMP
-
1
])))
goto
error
;
if
((
err
=
attach_encap_tmpl
(
&
x
->
encap
,
xfrma
[
XFRMA_ENCAP
-
1
])))
goto
error
;
err
=
-
ENOENT
;
x
->
type
=
xfrm_get_type
(
x
->
id
.
proto
,
x
->
props
.
family
);
...
...
@@ -302,6 +338,9 @@ static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
if
(
x
->
calg
)
RTA_PUT
(
skb
,
XFRMA_ALG_COMP
,
sizeof
(
*
(
x
->
calg
)),
x
->
calg
);
if
(
x
->
encap
)
RTA_PUT
(
skb
,
XFRMA_ENCAP
,
sizeof
(
*
x
->
encap
),
x
->
encap
);
nlh
->
nlmsg_len
=
skb
->
tail
-
b
;
out:
sp
->
this_idx
++
;
...
...
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