blob: e341260642feedd7cc77f22a4a5c7915e7d07d31 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef NET_COMPAT_H
3#define NET_COMPAT_H
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Andrew Morton29f767a2006-05-30 21:27:18 -07006struct sock;
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#if defined(CONFIG_COMPAT)
9
10#include <linux/compat.h>
11
12struct 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 Meloa2e27252009-10-12 23:40:10 -070022struct compat_mmsghdr {
23 struct compat_msghdr msg_hdr;
24 compat_uint_t msg_len;
25};
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027struct 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 Melo74887972009-10-20 01:09:17 -070034/*
35 * To avoid compiler warnings:
36 */
37#define compat_msghdr msghdr
38#define compat_mmsghdr mmsghdr
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#endif /* defined(CONFIG_COMPAT) */
40
Jens Axboe0a384ab2020-02-27 08:11:20 -070041int __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 Viroda184282015-03-21 19:29:06 -040044int get_compat_msghdr(struct msghdr *, struct compat_msghdr __user *,
Al Viro08adb7d2014-11-10 20:23:13 -050045 struct sockaddr __user **, struct iovec **);
Willem de Bruijn719c44d2016-06-07 12:06:34 -040046struct sock_fprog __user *get_compat_bpf_fprog(char __user *optval);
Joe Perchese8d895a2013-09-20 11:23:18 -070047int put_cmsg_compat(struct msghdr*, int, int, int, void *);
David S. Millere50ef9332005-09-08 12:32:46 -070048
Joe Perchese8d895a2013-09-20 11:23:18 -070049int cmsghdr_from_user_compat_to_kern(struct msghdr *, struct sock *,
50 unsigned char *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Joe Perchese8d895a2013-09-20 11:23:18 -070052int compat_mc_setsockopt(struct sock *, int, int, char __user *, unsigned int,
53 int (*)(struct sock *, int, int, char __user *,
54 unsigned int));
55int compat_mc_getsockopt(struct sock *, int, int, char __user *, int __user *,
56 int (*)(struct sock *, int, int, char __user *,
57 int __user *));
David L Stevensdae50292008-04-27 01:06:07 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#endif /* NET_COMPAT_H */