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
7e8d06bc
Commit
7e8d06bc
authored
Mar 30, 2003
by
Randolph Chung
Committed by
David S. Miller
Mar 30, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[COMPAT]: Fix MSG_CMSG_COMPAT flag passing, kill cmsg_compat_recvmsg_fixup.
parent
69655cb1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
105 deletions
+4
-105
include/net/compat.h
include/net/compat.h
+0
-2
net/compat.c
net/compat.c
+0
-102
net/socket.c
net/socket.c
+4
-1
No files found.
include/net/compat.h
View file @
7e8d06bc
...
@@ -33,8 +33,6 @@ extern asmlinkage long compat_sys_sendmsg(int,struct compat_msghdr *,unsigned);
...
@@ -33,8 +33,6 @@ extern asmlinkage long compat_sys_sendmsg(int,struct compat_msghdr *,unsigned);
extern
asmlinkage
long
compat_sys_recvmsg
(
int
,
struct
compat_msghdr
*
,
unsigned
);
extern
asmlinkage
long
compat_sys_recvmsg
(
int
,
struct
compat_msghdr
*
,
unsigned
);
extern
asmlinkage
long
compat_sys_getsockopt
(
int
,
int
,
int
,
char
*
,
int
*
);
extern
asmlinkage
long
compat_sys_getsockopt
(
int
,
int
,
int
,
char
*
,
int
*
);
extern
int
put_cmsg_compat
(
struct
msghdr
*
,
int
,
int
,
int
,
void
*
);
extern
int
put_cmsg_compat
(
struct
msghdr
*
,
int
,
int
,
int
,
void
*
);
extern
int
put_compat_msg_controllen
(
struct
msghdr
*
,
struct
compat_msghdr
*
,
unsigned
long
);
extern
int
cmsghdr_from_user_compat_to_kern
(
struct
msghdr
*
,
unsigned
char
*
,
extern
int
cmsghdr_from_user_compat_to_kern
(
struct
msghdr
*
,
unsigned
char
*
,
int
);
int
);
...
...
net/compat.c
View file @
7e8d06bc
...
@@ -296,108 +296,6 @@ void scm_detach_fds_compat(struct msghdr *kmsg, struct scm_cookie *scm)
...
@@ -296,108 +296,6 @@ void scm_detach_fds_compat(struct msghdr *kmsg, struct scm_cookie *scm)
__scm_destroy
(
scm
);
__scm_destroy
(
scm
);
}
}
/* In these cases we (currently) can just copy to data over verbatim
* because all CMSGs created by the kernel have well defined types which
* have the same layout in both the 32-bit and 64-bit API. One must add
* some special cased conversions here if we start sending control messages
* with incompatible types.
*
* SCM_RIGHTS and SCM_CREDENTIALS are done by hand in recvmsg_compat right after
* we do our work. The remaining cases are:
*
* SOL_IP IP_PKTINFO struct in_pktinfo 32-bit clean
* IP_TTL int 32-bit clean
* IP_TOS __u8 32-bit clean
* IP_RECVOPTS variable length 32-bit clean
* IP_RETOPTS variable length 32-bit clean
* (these last two are clean because the types are defined
* by the IPv4 protocol)
* IP_RECVERR struct sock_extended_err +
* struct sockaddr_in 32-bit clean
* SOL_IPV6 IPV6_RECVERR struct sock_extended_err +
* struct sockaddr_in6 32-bit clean
* IPV6_PKTINFO struct in6_pktinfo 32-bit clean
* IPV6_HOPLIMIT int 32-bit clean
* IPV6_FLOWINFO u32 32-bit clean
* IPV6_HOPOPTS ipv6 hop exthdr 32-bit clean
* IPV6_DSTOPTS ipv6 dst exthdr(s) 32-bit clean
* IPV6_RTHDR ipv6 routing exthdr 32-bit clean
* IPV6_AUTHHDR ipv6 auth exthdr 32-bit clean
*/
static
void
cmsg_compat_recvmsg_fixup
(
struct
msghdr
*
kmsg
,
unsigned
long
orig_cmsg_uptr
)
{
unsigned
char
*
workbuf
,
*
wp
;
unsigned
long
bufsz
,
space_avail
;
struct
cmsghdr
*
ucmsg
;
bufsz
=
((
unsigned
long
)
kmsg
->
msg_control
)
-
orig_cmsg_uptr
;
space_avail
=
kmsg
->
msg_controllen
+
bufsz
;
wp
=
workbuf
=
kmalloc
(
bufsz
,
GFP_KERNEL
);
if
(
workbuf
==
NULL
)
goto
fail
;
/* To make this more sane we assume the kernel sends back properly
* formatted control messages. Because of how the kernel will truncate
* the cmsg_len for MSG_TRUNC cases, we need not check that case either.
*/
ucmsg
=
(
struct
cmsghdr
*
)
orig_cmsg_uptr
;
while
(((
unsigned
long
)
ucmsg
)
<=
(((
unsigned
long
)
kmsg
->
msg_control
)
-
sizeof
(
struct
cmsghdr
)))
{
struct
compat_cmsghdr
*
kcmsg_compat
=
(
struct
compat_cmsghdr
*
)
wp
;
int
clen64
,
clen32
;
/* UCMSG is the 64-bit format CMSG entry in user-space.
* KCMSG_COMPAT is within the kernel space temporary buffer
* we use to convert into a 32-bit style CMSG.
*/
__get_user
(
kcmsg_compat
->
cmsg_len
,
&
ucmsg
->
cmsg_len
);
__get_user
(
kcmsg_compat
->
cmsg_level
,
&
ucmsg
->
cmsg_level
);
__get_user
(
kcmsg_compat
->
cmsg_type
,
&
ucmsg
->
cmsg_type
);
clen64
=
kcmsg_compat
->
cmsg_len
;
copy_from_user
(
CMSG_COMPAT_DATA
(
kcmsg_compat
),
CMSG_DATA
(
ucmsg
),
clen64
-
CMSG_ALIGN
(
sizeof
(
*
ucmsg
)));
clen32
=
((
clen64
-
CMSG_ALIGN
(
sizeof
(
*
ucmsg
)))
+
CMSG_COMPAT_ALIGN
(
sizeof
(
struct
compat_cmsghdr
)));
kcmsg_compat
->
cmsg_len
=
clen32
;
ucmsg
=
(
struct
cmsghdr
*
)
(((
char
*
)
ucmsg
)
+
CMSG_ALIGN
(
clen64
));
wp
=
(((
char
*
)
kcmsg_compat
)
+
CMSG_COMPAT_ALIGN
(
clen32
));
}
/* Copy back fixed up data, and adjust pointers. */
bufsz
=
(
wp
-
workbuf
);
copy_to_user
((
void
*
)
orig_cmsg_uptr
,
workbuf
,
bufsz
);
kmsg
->
msg_control
=
(
struct
cmsghdr
*
)
(((
char
*
)
orig_cmsg_uptr
)
+
bufsz
);
kmsg
->
msg_controllen
=
space_avail
-
bufsz
;
kfree
(
workbuf
);
return
;
fail:
/* If we leave the 64-bit format CMSG chunks in there,
* the application could get confused and crash. So to
* ensure greater recovery, we report no CMSGs.
*/
kmsg
->
msg_controllen
+=
bufsz
;
kmsg
->
msg_control
=
(
void
*
)
orig_cmsg_uptr
;
}
int
put_compat_msg_controllen
(
struct
msghdr
*
msg_sys
,
struct
compat_msghdr
*
msg_compat
,
unsigned
long
cmsg_ptr
)
{
unsigned
long
ucmsg_ptr
;
compat_size_t
uclen
;
if
((
unsigned
long
)
msg_sys
->
msg_control
!=
cmsg_ptr
)
cmsg_compat_recvmsg_fixup
(
msg_sys
,
cmsg_ptr
);
ucmsg_ptr
=
((
unsigned
long
)
msg_sys
->
msg_control
);
uclen
=
(
compat_size_t
)
(
ucmsg_ptr
-
cmsg_ptr
);
return
__put_user
(
uclen
,
&
msg_compat
->
msg_controllen
);
}
extern
asmlinkage
long
sys_setsockopt
(
int
fd
,
int
level
,
int
optname
,
extern
asmlinkage
long
sys_setsockopt
(
int
fd
,
int
level
,
int
optname
,
char
*
optval
,
int
optlen
);
char
*
optval
,
int
optlen
);
...
...
net/socket.c
View file @
7e8d06bc
...
@@ -1692,6 +1692,8 @@ asmlinkage long sys_recvmsg(int fd, struct msghdr *msg, unsigned int flags)
...
@@ -1692,6 +1692,8 @@ asmlinkage long sys_recvmsg(int fd, struct msghdr *msg, unsigned int flags)
cmsg_ptr
=
(
unsigned
long
)
msg_sys
.
msg_control
;
cmsg_ptr
=
(
unsigned
long
)
msg_sys
.
msg_control
;
msg_sys
.
msg_flags
=
0
;
msg_sys
.
msg_flags
=
0
;
if
(
MSG_CMSG_COMPAT
&
flags
)
msg_sys
.
msg_flags
=
MSG_CMSG_COMPAT
;
if
(
sock
->
file
->
f_flags
&
O_NONBLOCK
)
if
(
sock
->
file
->
f_flags
&
O_NONBLOCK
)
flags
|=
MSG_DONTWAIT
;
flags
|=
MSG_DONTWAIT
;
...
@@ -1709,7 +1711,8 @@ asmlinkage long sys_recvmsg(int fd, struct msghdr *msg, unsigned int flags)
...
@@ -1709,7 +1711,8 @@ asmlinkage long sys_recvmsg(int fd, struct msghdr *msg, unsigned int flags)
if
(
err
)
if
(
err
)
goto
out_freeiov
;
goto
out_freeiov
;
if
(
MSG_CMSG_COMPAT
&
flags
)
if
(
MSG_CMSG_COMPAT
&
flags
)
err
=
put_compat_msg_controllen
(
&
msg_sys
,
msg_compat
,
cmsg_ptr
);
err
=
__put_user
((
unsigned
long
)
msg_sys
.
msg_control
-
cmsg_ptr
,
&
msg_compat
->
msg_controllen
);
else
else
err
=
__put_user
((
unsigned
long
)
msg_sys
.
msg_control
-
cmsg_ptr
,
err
=
__put_user
((
unsigned
long
)
msg_sys
.
msg_control
-
cmsg_ptr
,
&
msg
->
msg_controllen
);
&
msg
->
msg_controllen
);
...
...
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