Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef NET_COMPAT_H |
| 3 | #define NET_COMPAT_H |
| 4 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | |
Andrew Morton | 29f767a | 2006-05-30 21:27:18 -0700 | [diff] [blame] | 6 | struct sock; |
| 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #if defined(CONFIG_COMPAT) |
| 9 | |
| 10 | #include <linux/compat.h> |
| 11 | |
| 12 | struct compat_msghdr { |
| 13 | compat_uptr_t msg_name; /* void * */ |
| 14 | compat_int_t msg_namelen; |
| 15 | compat_uptr_t msg_iov; /* struct compat_iovec * */ |
| 16 | compat_size_t msg_iovlen; |
| 17 | compat_uptr_t msg_control; /* void * */ |
| 18 | compat_size_t msg_controllen; |
| 19 | compat_uint_t msg_flags; |
| 20 | }; |
| 21 | |
Arnaldo Carvalho de Melo | a2e2725 | 2009-10-12 23:40:10 -0700 | [diff] [blame] | 22 | struct compat_mmsghdr { |
| 23 | struct compat_msghdr msg_hdr; |
| 24 | compat_uint_t msg_len; |
| 25 | }; |
| 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | struct compat_cmsghdr { |
| 28 | compat_size_t cmsg_len; |
| 29 | compat_int_t cmsg_level; |
| 30 | compat_int_t cmsg_type; |
| 31 | }; |
| 32 | |
| 33 | #else /* defined(CONFIG_COMPAT) */ |
Arnaldo Carvalho de Melo | 7488797 | 2009-10-20 01:09:17 -0700 | [diff] [blame] | 34 | /* |
| 35 | * To avoid compiler warnings: |
| 36 | */ |
| 37 | #define compat_msghdr msghdr |
| 38 | #define compat_mmsghdr mmsghdr |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #endif /* defined(CONFIG_COMPAT) */ |
| 40 | |
Jens Axboe | 0a384ab | 2020-02-27 08:11:20 -0700 | [diff] [blame] | 41 | int __get_compat_msghdr(struct msghdr *kmsg, struct compat_msghdr __user *umsg, |
| 42 | struct sockaddr __user **save_addr, compat_uptr_t *ptr, |
| 43 | compat_size_t *len); |
Al Viro | da18428 | 2015-03-21 19:29:06 -0400 | [diff] [blame] | 44 | int get_compat_msghdr(struct msghdr *, struct compat_msghdr __user *, |
Al Viro | 08adb7d | 2014-11-10 20:23:13 -0500 | [diff] [blame] | 45 | struct sockaddr __user **, struct iovec **); |
Willem de Bruijn | 719c44d | 2016-06-07 12:06:34 -0400 | [diff] [blame] | 46 | struct sock_fprog __user *get_compat_bpf_fprog(char __user *optval); |
Joe Perches | e8d895a | 2013-09-20 11:23:18 -0700 | [diff] [blame] | 47 | int put_cmsg_compat(struct msghdr*, int, int, int, void *); |
David S. Miller | e50ef933 | 2005-09-08 12:32:46 -0700 | [diff] [blame] | 48 | |
Joe Perches | e8d895a | 2013-09-20 11:23:18 -0700 | [diff] [blame] | 49 | int cmsghdr_from_user_compat_to_kern(struct msghdr *, struct sock *, |
| 50 | unsigned char *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Joe Perches | e8d895a | 2013-09-20 11:23:18 -0700 | [diff] [blame] | 52 | int compat_mc_setsockopt(struct sock *, int, int, char __user *, unsigned int, |
| 53 | int (*)(struct sock *, int, int, char __user *, |
| 54 | unsigned int)); |
| 55 | int compat_mc_getsockopt(struct sock *, int, int, char __user *, int __user *, |
| 56 | int (*)(struct sock *, int, int, char __user *, |
| 57 | int __user *)); |
David L Stevens | dae5029 | 2008-04-27 01:06:07 -0700 | [diff] [blame] | 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | #endif /* NET_COMPAT_H */ |