xref: /linux-6.15/net/socket.c (revision 26ee65e6)
1 /*
2  * NET		An implementation of the SOCKET network access protocol.
3  *
4  * Version:	@(#)socket.c	1.1.93	18/02/95
5  *
6  * Authors:	Orest Zborowski, <[email protected]>
7  *		Ross Biro
8  *		Fred N. van Kempen, <[email protected]>
9  *
10  * Fixes:
11  *		Anonymous	:	NOTSOCK/BADF cleanup. Error fix in
12  *					shutdown()
13  *		Alan Cox	:	verify_area() fixes
14  *		Alan Cox	:	Removed DDI
15  *		Jonathan Kamens	:	SOCK_DGRAM reconnect bug
16  *		Alan Cox	:	Moved a load of checks to the very
17  *					top level.
18  *		Alan Cox	:	Move address structures to/from user
19  *					mode above the protocol layers.
20  *		Rob Janssen	:	Allow 0 length sends.
21  *		Alan Cox	:	Asynchronous I/O support (cribbed from the
22  *					tty drivers).
23  *		Niibe Yutaka	:	Asynchronous I/O for writes (4.4BSD style)
24  *		Jeff Uphoff	:	Made max number of sockets command-line
25  *					configurable.
26  *		Matti Aarnio	:	Made the number of sockets dynamic,
27  *					to be allocated when needed, and mr.
28  *					Uphoff's max is used as max to be
29  *					allowed to allocate.
30  *		Linus		:	Argh. removed all the socket allocation
31  *					altogether: it's in the inode now.
32  *		Alan Cox	:	Made sock_alloc()/sock_release() public
33  *					for NetROM and future kernel nfsd type
34  *					stuff.
35  *		Alan Cox	:	sendmsg/recvmsg basics.
36  *		Tom Dyas	:	Export net symbols.
37  *		Marcin Dalecki	:	Fixed problems with CONFIG_NET="n".
38  *		Alan Cox	:	Added thread locking to sys_* calls
39  *					for sockets. May have errors at the
40  *					moment.
41  *		Kevin Buhr	:	Fixed the dumb errors in the above.
42  *		Andi Kleen	:	Some small cleanups, optimizations,
43  *					and fixed a copy_from_user() bug.
44  *		Tigran Aivazian	:	sys_send(args) calls sys_sendto(args, NULL, 0)
45  *		Tigran Aivazian	:	Made listen(2) backlog sanity checks
46  *					protocol-independent
47  *
48  *
49  *		This program is free software; you can redistribute it and/or
50  *		modify it under the terms of the GNU General Public License
51  *		as published by the Free Software Foundation; either version
52  *		2 of the License, or (at your option) any later version.
53  *
54  *
55  *	This module is effectively the top level interface to the BSD socket
56  *	paradigm.
57  *
58  *	Based upon Swansea University Computer Society NET3.039
59  */
60 
61 #include <linux/mm.h>
62 #include <linux/socket.h>
63 #include <linux/file.h>
64 #include <linux/net.h>
65 #include <linux/interrupt.h>
66 #include <linux/thread_info.h>
67 #include <linux/rcupdate.h>
68 #include <linux/netdevice.h>
69 #include <linux/proc_fs.h>
70 #include <linux/seq_file.h>
71 #include <linux/mutex.h>
72 #include <linux/if_bridge.h>
73 #include <linux/if_frad.h>
74 #include <linux/if_vlan.h>
75 #include <linux/init.h>
76 #include <linux/poll.h>
77 #include <linux/cache.h>
78 #include <linux/module.h>
79 #include <linux/highmem.h>
80 #include <linux/mount.h>
81 #include <linux/security.h>
82 #include <linux/syscalls.h>
83 #include <linux/compat.h>
84 #include <linux/kmod.h>
85 #include <linux/audit.h>
86 #include <linux/wireless.h>
87 #include <linux/nsproxy.h>
88 #include <linux/magic.h>
89 #include <linux/slab.h>
90 #include <linux/xattr.h>
91 
92 #include <asm/uaccess.h>
93 #include <asm/unistd.h>
94 
95 #include <net/compat.h>
96 #include <net/wext.h>
97 #include <net/cls_cgroup.h>
98 
99 #include <net/sock.h>
100 #include <linux/netfilter.h>
101 
102 #include <linux/if_tun.h>
103 #include <linux/ipv6_route.h>
104 #include <linux/route.h>
105 #include <linux/sockios.h>
106 #include <linux/atalk.h>
107 
108 static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
109 static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
110 			 unsigned long nr_segs, loff_t pos);
111 static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
112 			  unsigned long nr_segs, loff_t pos);
113 static int sock_mmap(struct file *file, struct vm_area_struct *vma);
114 
115 static int sock_close(struct inode *inode, struct file *file);
116 static unsigned int sock_poll(struct file *file,
117 			      struct poll_table_struct *wait);
118 static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
119 #ifdef CONFIG_COMPAT
120 static long compat_sock_ioctl(struct file *file,
121 			      unsigned int cmd, unsigned long arg);
122 #endif
123 static int sock_fasync(int fd, struct file *filp, int on);
124 static ssize_t sock_sendpage(struct file *file, struct page *page,
125 			     int offset, size_t size, loff_t *ppos, int more);
126 static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
127 				struct pipe_inode_info *pipe, size_t len,
128 				unsigned int flags);
129 
130 /*
131  *	Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
132  *	in the operation structures but are done directly via the socketcall() multiplexor.
133  */
134 
135 static const struct file_operations socket_file_ops = {
136 	.owner =	THIS_MODULE,
137 	.llseek =	no_llseek,
138 	.aio_read =	sock_aio_read,
139 	.aio_write =	sock_aio_write,
140 	.poll =		sock_poll,
141 	.unlocked_ioctl = sock_ioctl,
142 #ifdef CONFIG_COMPAT
143 	.compat_ioctl = compat_sock_ioctl,
144 #endif
145 	.mmap =		sock_mmap,
146 	.open =		sock_no_open,	/* special open code to disallow open via /proc */
147 	.release =	sock_close,
148 	.fasync =	sock_fasync,
149 	.sendpage =	sock_sendpage,
150 	.splice_write = generic_splice_sendpage,
151 	.splice_read =	sock_splice_read,
152 };
153 
154 /*
155  *	The protocol list. Each protocol is registered in here.
156  */
157 
158 static DEFINE_SPINLOCK(net_family_lock);
159 static const struct net_proto_family __rcu *net_families[NPROTO] __read_mostly;
160 
161 /*
162  *	Statistics counters of the socket lists
163  */
164 
165 static DEFINE_PER_CPU(int, sockets_in_use);
166 
167 /*
168  * Support routines.
169  * Move socket addresses back and forth across the kernel/user
170  * divide and look after the messy bits.
171  */
172 
173 /**
174  *	move_addr_to_kernel	-	copy a socket address into kernel space
175  *	@uaddr: Address in user space
176  *	@kaddr: Address in kernel space
177  *	@ulen: Length in user space
178  *
179  *	The address is copied into kernel space. If the provided address is
180  *	too long an error code of -EINVAL is returned. If the copy gives
181  *	invalid addresses -EFAULT is returned. On a success 0 is returned.
182  */
183 
184 int move_addr_to_kernel(void __user *uaddr, int ulen, struct sockaddr_storage *kaddr)
185 {
186 	if (ulen < 0 || ulen > sizeof(struct sockaddr_storage))
187 		return -EINVAL;
188 	if (ulen == 0)
189 		return 0;
190 	if (copy_from_user(kaddr, uaddr, ulen))
191 		return -EFAULT;
192 	return audit_sockaddr(ulen, kaddr);
193 }
194 
195 /**
196  *	move_addr_to_user	-	copy an address to user space
197  *	@kaddr: kernel space address
198  *	@klen: length of address in kernel
199  *	@uaddr: user space address
200  *	@ulen: pointer to user length field
201  *
202  *	The value pointed to by ulen on entry is the buffer length available.
203  *	This is overwritten with the buffer space used. -EINVAL is returned
204  *	if an overlong buffer is specified or a negative buffer size. -EFAULT
205  *	is returned if either the buffer or the length field are not
206  *	accessible.
207  *	After copying the data up to the limit the user specifies, the true
208  *	length of the data is written over the length limit the user
209  *	specified. Zero is returned for a success.
210  */
211 
212 static int move_addr_to_user(struct sockaddr_storage *kaddr, int klen,
213 			     void __user *uaddr, int __user *ulen)
214 {
215 	int err;
216 	int len;
217 
218 	err = get_user(len, ulen);
219 	if (err)
220 		return err;
221 	if (len > klen)
222 		len = klen;
223 	if (len < 0 || len > sizeof(struct sockaddr_storage))
224 		return -EINVAL;
225 	if (len) {
226 		if (audit_sockaddr(klen, kaddr))
227 			return -ENOMEM;
228 		if (copy_to_user(uaddr, kaddr, len))
229 			return -EFAULT;
230 	}
231 	/*
232 	 *      "fromlen shall refer to the value before truncation.."
233 	 *                      1003.1g
234 	 */
235 	return __put_user(klen, ulen);
236 }
237 
238 static struct kmem_cache *sock_inode_cachep __read_mostly;
239 
240 static struct inode *sock_alloc_inode(struct super_block *sb)
241 {
242 	struct socket_alloc *ei;
243 	struct socket_wq *wq;
244 
245 	ei = kmem_cache_alloc(sock_inode_cachep, GFP_KERNEL);
246 	if (!ei)
247 		return NULL;
248 	wq = kmalloc(sizeof(*wq), GFP_KERNEL);
249 	if (!wq) {
250 		kmem_cache_free(sock_inode_cachep, ei);
251 		return NULL;
252 	}
253 	init_waitqueue_head(&wq->wait);
254 	wq->fasync_list = NULL;
255 	RCU_INIT_POINTER(ei->socket.wq, wq);
256 
257 	ei->socket.state = SS_UNCONNECTED;
258 	ei->socket.flags = 0;
259 	ei->socket.ops = NULL;
260 	ei->socket.sk = NULL;
261 	ei->socket.file = NULL;
262 
263 	return &ei->vfs_inode;
264 }
265 
266 static void sock_destroy_inode(struct inode *inode)
267 {
268 	struct socket_alloc *ei;
269 	struct socket_wq *wq;
270 
271 	ei = container_of(inode, struct socket_alloc, vfs_inode);
272 	wq = rcu_dereference_protected(ei->socket.wq, 1);
273 	kfree_rcu(wq, rcu);
274 	kmem_cache_free(sock_inode_cachep, ei);
275 }
276 
277 static void init_once(void *foo)
278 {
279 	struct socket_alloc *ei = (struct socket_alloc *)foo;
280 
281 	inode_init_once(&ei->vfs_inode);
282 }
283 
284 static int init_inodecache(void)
285 {
286 	sock_inode_cachep = kmem_cache_create("sock_inode_cache",
287 					      sizeof(struct socket_alloc),
288 					      0,
289 					      (SLAB_HWCACHE_ALIGN |
290 					       SLAB_RECLAIM_ACCOUNT |
291 					       SLAB_MEM_SPREAD),
292 					      init_once);
293 	if (sock_inode_cachep == NULL)
294 		return -ENOMEM;
295 	return 0;
296 }
297 
298 static const struct super_operations sockfs_ops = {
299 	.alloc_inode	= sock_alloc_inode,
300 	.destroy_inode	= sock_destroy_inode,
301 	.statfs		= simple_statfs,
302 };
303 
304 /*
305  * sockfs_dname() is called from d_path().
306  */
307 static char *sockfs_dname(struct dentry *dentry, char *buffer, int buflen)
308 {
309 	return dynamic_dname(dentry, buffer, buflen, "socket:[%lu]",
310 				dentry->d_inode->i_ino);
311 }
312 
313 static const struct dentry_operations sockfs_dentry_operations = {
314 	.d_dname  = sockfs_dname,
315 };
316 
317 static struct dentry *sockfs_mount(struct file_system_type *fs_type,
318 			 int flags, const char *dev_name, void *data)
319 {
320 	return mount_pseudo(fs_type, "socket:", &sockfs_ops,
321 		&sockfs_dentry_operations, SOCKFS_MAGIC);
322 }
323 
324 static struct vfsmount *sock_mnt __read_mostly;
325 
326 static struct file_system_type sock_fs_type = {
327 	.name =		"sockfs",
328 	.mount =	sockfs_mount,
329 	.kill_sb =	kill_anon_super,
330 };
331 
332 /*
333  *	Obtains the first available file descriptor and sets it up for use.
334  *
335  *	These functions create file structures and maps them to fd space
336  *	of the current process. On success it returns file descriptor
337  *	and file struct implicitly stored in sock->file.
338  *	Note that another thread may close file descriptor before we return
339  *	from this function. We use the fact that now we do not refer
340  *	to socket after mapping. If one day we will need it, this
341  *	function will increment ref. count on file by 1.
342  *
343  *	In any case returned fd MAY BE not valid!
344  *	This race condition is unavoidable
345  *	with shared fd spaces, we cannot solve it inside kernel,
346  *	but we take care of internal coherence yet.
347  */
348 
349 struct file *sock_alloc_file(struct socket *sock, int flags, const char *dname)
350 {
351 	struct qstr name = { .name = "" };
352 	struct path path;
353 	struct file *file;
354 
355 	if (dname) {
356 		name.name = dname;
357 		name.len = strlen(name.name);
358 	} else if (sock->sk) {
359 		name.name = sock->sk->sk_prot_creator->name;
360 		name.len = strlen(name.name);
361 	}
362 	path.dentry = d_alloc_pseudo(sock_mnt->mnt_sb, &name);
363 	if (unlikely(!path.dentry))
364 		return ERR_PTR(-ENOMEM);
365 	path.mnt = mntget(sock_mnt);
366 
367 	d_instantiate(path.dentry, SOCK_INODE(sock));
368 	SOCK_INODE(sock)->i_fop = &socket_file_ops;
369 
370 	file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
371 		  &socket_file_ops);
372 	if (unlikely(IS_ERR(file))) {
373 		/* drop dentry, keep inode */
374 		ihold(path.dentry->d_inode);
375 		path_put(&path);
376 		return file;
377 	}
378 
379 	sock->file = file;
380 	file->f_flags = O_RDWR | (flags & O_NONBLOCK);
381 	file->private_data = sock;
382 	return file;
383 }
384 EXPORT_SYMBOL(sock_alloc_file);
385 
386 static int sock_map_fd(struct socket *sock, int flags)
387 {
388 	struct file *newfile;
389 	int fd = get_unused_fd_flags(flags);
390 	if (unlikely(fd < 0))
391 		return fd;
392 
393 	newfile = sock_alloc_file(sock, flags, NULL);
394 	if (likely(!IS_ERR(newfile))) {
395 		fd_install(fd, newfile);
396 		return fd;
397 	}
398 
399 	put_unused_fd(fd);
400 	return PTR_ERR(newfile);
401 }
402 
403 struct socket *sock_from_file(struct file *file, int *err)
404 {
405 	if (file->f_op == &socket_file_ops)
406 		return file->private_data;	/* set in sock_map_fd */
407 
408 	*err = -ENOTSOCK;
409 	return NULL;
410 }
411 EXPORT_SYMBOL(sock_from_file);
412 
413 /**
414  *	sockfd_lookup - Go from a file number to its socket slot
415  *	@fd: file handle
416  *	@err: pointer to an error code return
417  *
418  *	The file handle passed in is locked and the socket it is bound
419  *	too is returned. If an error occurs the err pointer is overwritten
420  *	with a negative errno code and NULL is returned. The function checks
421  *	for both invalid handles and passing a handle which is not a socket.
422  *
423  *	On a success the socket object pointer is returned.
424  */
425 
426 struct socket *sockfd_lookup(int fd, int *err)
427 {
428 	struct file *file;
429 	struct socket *sock;
430 
431 	file = fget(fd);
432 	if (!file) {
433 		*err = -EBADF;
434 		return NULL;
435 	}
436 
437 	sock = sock_from_file(file, err);
438 	if (!sock)
439 		fput(file);
440 	return sock;
441 }
442 EXPORT_SYMBOL(sockfd_lookup);
443 
444 static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
445 {
446 	struct file *file;
447 	struct socket *sock;
448 
449 	*err = -EBADF;
450 	file = fget_light(fd, fput_needed);
451 	if (file) {
452 		sock = sock_from_file(file, err);
453 		if (sock)
454 			return sock;
455 		fput_light(file, *fput_needed);
456 	}
457 	return NULL;
458 }
459 
460 #define XATTR_SOCKPROTONAME_SUFFIX "sockprotoname"
461 #define XATTR_NAME_SOCKPROTONAME (XATTR_SYSTEM_PREFIX XATTR_SOCKPROTONAME_SUFFIX)
462 #define XATTR_NAME_SOCKPROTONAME_LEN (sizeof(XATTR_NAME_SOCKPROTONAME)-1)
463 static ssize_t sockfs_getxattr(struct dentry *dentry,
464 			       const char *name, void *value, size_t size)
465 {
466 	const char *proto_name;
467 	size_t proto_size;
468 	int error;
469 
470 	error = -ENODATA;
471 	if (!strncmp(name, XATTR_NAME_SOCKPROTONAME, XATTR_NAME_SOCKPROTONAME_LEN)) {
472 		proto_name = dentry->d_name.name;
473 		proto_size = strlen(proto_name);
474 
475 		if (value) {
476 			error = -ERANGE;
477 			if (proto_size + 1 > size)
478 				goto out;
479 
480 			strncpy(value, proto_name, proto_size + 1);
481 		}
482 		error = proto_size + 1;
483 	}
484 
485 out:
486 	return error;
487 }
488 
489 static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer,
490 				size_t size)
491 {
492 	ssize_t len;
493 	ssize_t used = 0;
494 
495 	len = security_inode_listsecurity(dentry->d_inode, buffer, size);
496 	if (len < 0)
497 		return len;
498 	used += len;
499 	if (buffer) {
500 		if (size < used)
501 			return -ERANGE;
502 		buffer += len;
503 	}
504 
505 	len = (XATTR_NAME_SOCKPROTONAME_LEN + 1);
506 	used += len;
507 	if (buffer) {
508 		if (size < used)
509 			return -ERANGE;
510 		memcpy(buffer, XATTR_NAME_SOCKPROTONAME, len);
511 		buffer += len;
512 	}
513 
514 	return used;
515 }
516 
517 static const struct inode_operations sockfs_inode_ops = {
518 	.getxattr = sockfs_getxattr,
519 	.listxattr = sockfs_listxattr,
520 };
521 
522 /**
523  *	sock_alloc	-	allocate a socket
524  *
525  *	Allocate a new inode and socket object. The two are bound together
526  *	and initialised. The socket is then returned. If we are out of inodes
527  *	NULL is returned.
528  */
529 
530 static struct socket *sock_alloc(void)
531 {
532 	struct inode *inode;
533 	struct socket *sock;
534 
535 	inode = new_inode_pseudo(sock_mnt->mnt_sb);
536 	if (!inode)
537 		return NULL;
538 
539 	sock = SOCKET_I(inode);
540 
541 	kmemcheck_annotate_bitfield(sock, type);
542 	inode->i_ino = get_next_ino();
543 	inode->i_mode = S_IFSOCK | S_IRWXUGO;
544 	inode->i_uid = current_fsuid();
545 	inode->i_gid = current_fsgid();
546 	inode->i_op = &sockfs_inode_ops;
547 
548 	this_cpu_add(sockets_in_use, 1);
549 	return sock;
550 }
551 
552 /*
553  *	In theory you can't get an open on this inode, but /proc provides
554  *	a back door. Remember to keep it shut otherwise you'll let the
555  *	creepy crawlies in.
556  */
557 
558 static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
559 {
560 	return -ENXIO;
561 }
562 
563 const struct file_operations bad_sock_fops = {
564 	.owner = THIS_MODULE,
565 	.open = sock_no_open,
566 	.llseek = noop_llseek,
567 };
568 
569 /**
570  *	sock_release	-	close a socket
571  *	@sock: socket to close
572  *
573  *	The socket is released from the protocol stack if it has a release
574  *	callback, and the inode is then released if the socket is bound to
575  *	an inode not a file.
576  */
577 
578 void sock_release(struct socket *sock)
579 {
580 	if (sock->ops) {
581 		struct module *owner = sock->ops->owner;
582 
583 		sock->ops->release(sock);
584 		sock->ops = NULL;
585 		module_put(owner);
586 	}
587 
588 	if (rcu_dereference_protected(sock->wq, 1)->fasync_list)
589 		printk(KERN_ERR "sock_release: fasync list not empty!\n");
590 
591 	if (test_bit(SOCK_EXTERNALLY_ALLOCATED, &sock->flags))
592 		return;
593 
594 	this_cpu_sub(sockets_in_use, 1);
595 	if (!sock->file) {
596 		iput(SOCK_INODE(sock));
597 		return;
598 	}
599 	sock->file = NULL;
600 }
601 EXPORT_SYMBOL(sock_release);
602 
603 void sock_tx_timestamp(struct sock *sk, __u8 *tx_flags)
604 {
605 	*tx_flags = 0;
606 	if (sock_flag(sk, SOCK_TIMESTAMPING_TX_HARDWARE))
607 		*tx_flags |= SKBTX_HW_TSTAMP;
608 	if (sock_flag(sk, SOCK_TIMESTAMPING_TX_SOFTWARE))
609 		*tx_flags |= SKBTX_SW_TSTAMP;
610 	if (sock_flag(sk, SOCK_WIFI_STATUS))
611 		*tx_flags |= SKBTX_WIFI_STATUS;
612 }
613 EXPORT_SYMBOL(sock_tx_timestamp);
614 
615 static inline int __sock_sendmsg_nosec(struct kiocb *iocb, struct socket *sock,
616 				       struct msghdr *msg, size_t size)
617 {
618 	struct sock_iocb *si = kiocb_to_siocb(iocb);
619 
620 	si->sock = sock;
621 	si->scm = NULL;
622 	si->msg = msg;
623 	si->size = size;
624 
625 	return sock->ops->sendmsg(iocb, sock, msg, size);
626 }
627 
628 static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
629 				 struct msghdr *msg, size_t size)
630 {
631 	int err = security_socket_sendmsg(sock, msg, size);
632 
633 	return err ?: __sock_sendmsg_nosec(iocb, sock, msg, size);
634 }
635 
636 int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
637 {
638 	struct kiocb iocb;
639 	struct sock_iocb siocb;
640 	int ret;
641 
642 	init_sync_kiocb(&iocb, NULL);
643 	iocb.private = &siocb;
644 	ret = __sock_sendmsg(&iocb, sock, msg, size);
645 	if (-EIOCBQUEUED == ret)
646 		ret = wait_on_sync_kiocb(&iocb);
647 	return ret;
648 }
649 EXPORT_SYMBOL(sock_sendmsg);
650 
651 static int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg, size_t size)
652 {
653 	struct kiocb iocb;
654 	struct sock_iocb siocb;
655 	int ret;
656 
657 	init_sync_kiocb(&iocb, NULL);
658 	iocb.private = &siocb;
659 	ret = __sock_sendmsg_nosec(&iocb, sock, msg, size);
660 	if (-EIOCBQUEUED == ret)
661 		ret = wait_on_sync_kiocb(&iocb);
662 	return ret;
663 }
664 
665 int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
666 		   struct kvec *vec, size_t num, size_t size)
667 {
668 	mm_segment_t oldfs = get_fs();
669 	int result;
670 
671 	set_fs(KERNEL_DS);
672 	/*
673 	 * the following is safe, since for compiler definitions of kvec and
674 	 * iovec are identical, yielding the same in-core layout and alignment
675 	 */
676 	msg->msg_iov = (struct iovec *)vec;
677 	msg->msg_iovlen = num;
678 	result = sock_sendmsg(sock, msg, size);
679 	set_fs(oldfs);
680 	return result;
681 }
682 EXPORT_SYMBOL(kernel_sendmsg);
683 
684 /*
685  * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
686  */
687 void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
688 	struct sk_buff *skb)
689 {
690 	int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP);
691 	struct timespec ts[3];
692 	int empty = 1;
693 	struct skb_shared_hwtstamps *shhwtstamps =
694 		skb_hwtstamps(skb);
695 
696 	/* Race occurred between timestamp enabling and packet
697 	   receiving.  Fill in the current time for now. */
698 	if (need_software_tstamp && skb->tstamp.tv64 == 0)
699 		__net_timestamp(skb);
700 
701 	if (need_software_tstamp) {
702 		if (!sock_flag(sk, SOCK_RCVTSTAMPNS)) {
703 			struct timeval tv;
704 			skb_get_timestamp(skb, &tv);
705 			put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
706 				 sizeof(tv), &tv);
707 		} else {
708 			skb_get_timestampns(skb, &ts[0]);
709 			put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMPNS,
710 				 sizeof(ts[0]), &ts[0]);
711 		}
712 	}
713 
714 
715 	memset(ts, 0, sizeof(ts));
716 	if (sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE) &&
717 	    ktime_to_timespec_cond(skb->tstamp, ts + 0))
718 		empty = 0;
719 	if (shhwtstamps) {
720 		if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
721 		    ktime_to_timespec_cond(shhwtstamps->syststamp, ts + 1))
722 			empty = 0;
723 		if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
724 		    ktime_to_timespec_cond(shhwtstamps->hwtstamp, ts + 2))
725 			empty = 0;
726 	}
727 	if (!empty)
728 		put_cmsg(msg, SOL_SOCKET,
729 			 SCM_TIMESTAMPING, sizeof(ts), &ts);
730 }
731 EXPORT_SYMBOL_GPL(__sock_recv_timestamp);
732 
733 void __sock_recv_wifi_status(struct msghdr *msg, struct sock *sk,
734 	struct sk_buff *skb)
735 {
736 	int ack;
737 
738 	if (!sock_flag(sk, SOCK_WIFI_STATUS))
739 		return;
740 	if (!skb->wifi_acked_valid)
741 		return;
742 
743 	ack = skb->wifi_acked;
744 
745 	put_cmsg(msg, SOL_SOCKET, SCM_WIFI_STATUS, sizeof(ack), &ack);
746 }
747 EXPORT_SYMBOL_GPL(__sock_recv_wifi_status);
748 
749 static inline void sock_recv_drops(struct msghdr *msg, struct sock *sk,
750 				   struct sk_buff *skb)
751 {
752 	if (sock_flag(sk, SOCK_RXQ_OVFL) && skb && skb->dropcount)
753 		put_cmsg(msg, SOL_SOCKET, SO_RXQ_OVFL,
754 			sizeof(__u32), &skb->dropcount);
755 }
756 
757 void __sock_recv_ts_and_drops(struct msghdr *msg, struct sock *sk,
758 	struct sk_buff *skb)
759 {
760 	sock_recv_timestamp(msg, sk, skb);
761 	sock_recv_drops(msg, sk, skb);
762 }
763 EXPORT_SYMBOL_GPL(__sock_recv_ts_and_drops);
764 
765 static inline int __sock_recvmsg_nosec(struct kiocb *iocb, struct socket *sock,
766 				       struct msghdr *msg, size_t size, int flags)
767 {
768 	struct sock_iocb *si = kiocb_to_siocb(iocb);
769 
770 	si->sock = sock;
771 	si->scm = NULL;
772 	si->msg = msg;
773 	si->size = size;
774 	si->flags = flags;
775 
776 	return sock->ops->recvmsg(iocb, sock, msg, size, flags);
777 }
778 
779 static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
780 				 struct msghdr *msg, size_t size, int flags)
781 {
782 	int err = security_socket_recvmsg(sock, msg, size, flags);
783 
784 	return err ?: __sock_recvmsg_nosec(iocb, sock, msg, size, flags);
785 }
786 
787 int sock_recvmsg(struct socket *sock, struct msghdr *msg,
788 		 size_t size, int flags)
789 {
790 	struct kiocb iocb;
791 	struct sock_iocb siocb;
792 	int ret;
793 
794 	init_sync_kiocb(&iocb, NULL);
795 	iocb.private = &siocb;
796 	ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
797 	if (-EIOCBQUEUED == ret)
798 		ret = wait_on_sync_kiocb(&iocb);
799 	return ret;
800 }
801 EXPORT_SYMBOL(sock_recvmsg);
802 
803 static int sock_recvmsg_nosec(struct socket *sock, struct msghdr *msg,
804 			      size_t size, int flags)
805 {
806 	struct kiocb iocb;
807 	struct sock_iocb siocb;
808 	int ret;
809 
810 	init_sync_kiocb(&iocb, NULL);
811 	iocb.private = &siocb;
812 	ret = __sock_recvmsg_nosec(&iocb, sock, msg, size, flags);
813 	if (-EIOCBQUEUED == ret)
814 		ret = wait_on_sync_kiocb(&iocb);
815 	return ret;
816 }
817 
818 /**
819  * kernel_recvmsg - Receive a message from a socket (kernel space)
820  * @sock:       The socket to receive the message from
821  * @msg:        Received message
822  * @vec:        Input s/g array for message data
823  * @num:        Size of input s/g array
824  * @size:       Number of bytes to read
825  * @flags:      Message flags (MSG_DONTWAIT, etc...)
826  *
827  * On return the msg structure contains the scatter/gather array passed in the
828  * vec argument. The array is modified so that it consists of the unfilled
829  * portion of the original array.
830  *
831  * The returned value is the total number of bytes received, or an error.
832  */
833 int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
834 		   struct kvec *vec, size_t num, size_t size, int flags)
835 {
836 	mm_segment_t oldfs = get_fs();
837 	int result;
838 
839 	set_fs(KERNEL_DS);
840 	/*
841 	 * the following is safe, since for compiler definitions of kvec and
842 	 * iovec are identical, yielding the same in-core layout and alignment
843 	 */
844 	msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
845 	result = sock_recvmsg(sock, msg, size, flags);
846 	set_fs(oldfs);
847 	return result;
848 }
849 EXPORT_SYMBOL(kernel_recvmsg);
850 
851 static void sock_aio_dtor(struct kiocb *iocb)
852 {
853 	kfree(iocb->private);
854 }
855 
856 static ssize_t sock_sendpage(struct file *file, struct page *page,
857 			     int offset, size_t size, loff_t *ppos, int more)
858 {
859 	struct socket *sock;
860 	int flags;
861 
862 	sock = file->private_data;
863 
864 	flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
865 	/* more is a combination of MSG_MORE and MSG_SENDPAGE_NOTLAST */
866 	flags |= more;
867 
868 	return kernel_sendpage(sock, page, offset, size, flags);
869 }
870 
871 static ssize_t sock_splice_read(struct file *file, loff_t *ppos,
872 				struct pipe_inode_info *pipe, size_t len,
873 				unsigned int flags)
874 {
875 	struct socket *sock = file->private_data;
876 
877 	if (unlikely(!sock->ops->splice_read))
878 		return -EINVAL;
879 
880 	return sock->ops->splice_read(sock, ppos, pipe, len, flags);
881 }
882 
883 static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
884 					 struct sock_iocb *siocb)
885 {
886 	if (!is_sync_kiocb(iocb)) {
887 		siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
888 		if (!siocb)
889 			return NULL;
890 		iocb->ki_dtor = sock_aio_dtor;
891 	}
892 
893 	siocb->kiocb = iocb;
894 	iocb->private = siocb;
895 	return siocb;
896 }
897 
898 static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
899 		struct file *file, const struct iovec *iov,
900 		unsigned long nr_segs)
901 {
902 	struct socket *sock = file->private_data;
903 	size_t size = 0;
904 	int i;
905 
906 	for (i = 0; i < nr_segs; i++)
907 		size += iov[i].iov_len;
908 
909 	msg->msg_name = NULL;
910 	msg->msg_namelen = 0;
911 	msg->msg_control = NULL;
912 	msg->msg_controllen = 0;
913 	msg->msg_iov = (struct iovec *)iov;
914 	msg->msg_iovlen = nr_segs;
915 	msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
916 
917 	return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
918 }
919 
920 static ssize_t sock_aio_read(struct kiocb *iocb, const struct iovec *iov,
921 				unsigned long nr_segs, loff_t pos)
922 {
923 	struct sock_iocb siocb, *x;
924 
925 	if (pos != 0)
926 		return -ESPIPE;
927 
928 	if (iocb->ki_left == 0)	/* Match SYS5 behaviour */
929 		return 0;
930 
931 
932 	x = alloc_sock_iocb(iocb, &siocb);
933 	if (!x)
934 		return -ENOMEM;
935 	return do_sock_read(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
936 }
937 
938 static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
939 			struct file *file, const struct iovec *iov,
940 			unsigned long nr_segs)
941 {
942 	struct socket *sock = file->private_data;
943 	size_t size = 0;
944 	int i;
945 
946 	for (i = 0; i < nr_segs; i++)
947 		size += iov[i].iov_len;
948 
949 	msg->msg_name = NULL;
950 	msg->msg_namelen = 0;
951 	msg->msg_control = NULL;
952 	msg->msg_controllen = 0;
953 	msg->msg_iov = (struct iovec *)iov;
954 	msg->msg_iovlen = nr_segs;
955 	msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
956 	if (sock->type == SOCK_SEQPACKET)
957 		msg->msg_flags |= MSG_EOR;
958 
959 	return __sock_sendmsg(iocb, sock, msg, size);
960 }
961 
962 static ssize_t sock_aio_write(struct kiocb *iocb, const struct iovec *iov,
963 			  unsigned long nr_segs, loff_t pos)
964 {
965 	struct sock_iocb siocb, *x;
966 
967 	if (pos != 0)
968 		return -ESPIPE;
969 
970 	x = alloc_sock_iocb(iocb, &siocb);
971 	if (!x)
972 		return -ENOMEM;
973 
974 	return do_sock_write(&x->async_msg, iocb, iocb->ki_filp, iov, nr_segs);
975 }
976 
977 /*
978  * Atomic setting of ioctl hooks to avoid race
979  * with module unload.
980  */
981 
982 static DEFINE_MUTEX(br_ioctl_mutex);
983 static int (*br_ioctl_hook) (struct net *, unsigned int cmd, void __user *arg);
984 
985 void brioctl_set(int (*hook) (struct net *, unsigned int, void __user *))
986 {
987 	mutex_lock(&br_ioctl_mutex);
988 	br_ioctl_hook = hook;
989 	mutex_unlock(&br_ioctl_mutex);
990 }
991 EXPORT_SYMBOL(brioctl_set);
992 
993 static DEFINE_MUTEX(vlan_ioctl_mutex);
994 static int (*vlan_ioctl_hook) (struct net *, void __user *arg);
995 
996 void vlan_ioctl_set(int (*hook) (struct net *, void __user *))
997 {
998 	mutex_lock(&vlan_ioctl_mutex);
999 	vlan_ioctl_hook = hook;
1000 	mutex_unlock(&vlan_ioctl_mutex);
1001 }
1002 EXPORT_SYMBOL(vlan_ioctl_set);
1003 
1004 static DEFINE_MUTEX(dlci_ioctl_mutex);
1005 static int (*dlci_ioctl_hook) (unsigned int, void __user *);
1006 
1007 void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
1008 {
1009 	mutex_lock(&dlci_ioctl_mutex);
1010 	dlci_ioctl_hook = hook;
1011 	mutex_unlock(&dlci_ioctl_mutex);
1012 }
1013 EXPORT_SYMBOL(dlci_ioctl_set);
1014 
1015 static long sock_do_ioctl(struct net *net, struct socket *sock,
1016 				 unsigned int cmd, unsigned long arg)
1017 {
1018 	int err;
1019 	void __user *argp = (void __user *)arg;
1020 
1021 	err = sock->ops->ioctl(sock, cmd, arg);
1022 
1023 	/*
1024 	 * If this ioctl is unknown try to hand it down
1025 	 * to the NIC driver.
1026 	 */
1027 	if (err == -ENOIOCTLCMD)
1028 		err = dev_ioctl(net, cmd, argp);
1029 
1030 	return err;
1031 }
1032 
1033 /*
1034  *	With an ioctl, arg may well be a user mode pointer, but we don't know
1035  *	what to do with it - that's up to the protocol still.
1036  */
1037 
1038 static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
1039 {
1040 	struct socket *sock;
1041 	struct sock *sk;
1042 	void __user *argp = (void __user *)arg;
1043 	int pid, err;
1044 	struct net *net;
1045 
1046 	sock = file->private_data;
1047 	sk = sock->sk;
1048 	net = sock_net(sk);
1049 	if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
1050 		err = dev_ioctl(net, cmd, argp);
1051 	} else
1052 #ifdef CONFIG_WEXT_CORE
1053 	if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
1054 		err = dev_ioctl(net, cmd, argp);
1055 	} else
1056 #endif
1057 		switch (cmd) {
1058 		case FIOSETOWN:
1059 		case SIOCSPGRP:
1060 			err = -EFAULT;
1061 			if (get_user(pid, (int __user *)argp))
1062 				break;
1063 			err = f_setown(sock->file, pid, 1);
1064 			break;
1065 		case FIOGETOWN:
1066 		case SIOCGPGRP:
1067 			err = put_user(f_getown(sock->file),
1068 				       (int __user *)argp);
1069 			break;
1070 		case SIOCGIFBR:
1071 		case SIOCSIFBR:
1072 		case SIOCBRADDBR:
1073 		case SIOCBRDELBR:
1074 			err = -ENOPKG;
1075 			if (!br_ioctl_hook)
1076 				request_module("bridge");
1077 
1078 			mutex_lock(&br_ioctl_mutex);
1079 			if (br_ioctl_hook)
1080 				err = br_ioctl_hook(net, cmd, argp);
1081 			mutex_unlock(&br_ioctl_mutex);
1082 			break;
1083 		case SIOCGIFVLAN:
1084 		case SIOCSIFVLAN:
1085 			err = -ENOPKG;
1086 			if (!vlan_ioctl_hook)
1087 				request_module("8021q");
1088 
1089 			mutex_lock(&vlan_ioctl_mutex);
1090 			if (vlan_ioctl_hook)
1091 				err = vlan_ioctl_hook(net, argp);
1092 			mutex_unlock(&vlan_ioctl_mutex);
1093 			break;
1094 		case SIOCADDDLCI:
1095 		case SIOCDELDLCI:
1096 			err = -ENOPKG;
1097 			if (!dlci_ioctl_hook)
1098 				request_module("dlci");
1099 
1100 			mutex_lock(&dlci_ioctl_mutex);
1101 			if (dlci_ioctl_hook)
1102 				err = dlci_ioctl_hook(cmd, argp);
1103 			mutex_unlock(&dlci_ioctl_mutex);
1104 			break;
1105 		default:
1106 			err = sock_do_ioctl(net, sock, cmd, arg);
1107 			break;
1108 		}
1109 	return err;
1110 }
1111 
1112 int sock_create_lite(int family, int type, int protocol, struct socket **res)
1113 {
1114 	int err;
1115 	struct socket *sock = NULL;
1116 
1117 	err = security_socket_create(family, type, protocol, 1);
1118 	if (err)
1119 		goto out;
1120 
1121 	sock = sock_alloc();
1122 	if (!sock) {
1123 		err = -ENOMEM;
1124 		goto out;
1125 	}
1126 
1127 	sock->type = type;
1128 	err = security_socket_post_create(sock, family, type, protocol, 1);
1129 	if (err)
1130 		goto out_release;
1131 
1132 out:
1133 	*res = sock;
1134 	return err;
1135 out_release:
1136 	sock_release(sock);
1137 	sock = NULL;
1138 	goto out;
1139 }
1140 EXPORT_SYMBOL(sock_create_lite);
1141 
1142 /* No kernel lock held - perfect */
1143 static unsigned int sock_poll(struct file *file, poll_table *wait)
1144 {
1145 	struct socket *sock;
1146 
1147 	/*
1148 	 *      We can't return errors to poll, so it's either yes or no.
1149 	 */
1150 	sock = file->private_data;
1151 	return sock->ops->poll(file, sock, wait);
1152 }
1153 
1154 static int sock_mmap(struct file *file, struct vm_area_struct *vma)
1155 {
1156 	struct socket *sock = file->private_data;
1157 
1158 	return sock->ops->mmap(file, sock, vma);
1159 }
1160 
1161 static int sock_close(struct inode *inode, struct file *filp)
1162 {
1163 	/*
1164 	 *      It was possible the inode is NULL we were
1165 	 *      closing an unfinished socket.
1166 	 */
1167 
1168 	if (!inode) {
1169 		printk(KERN_DEBUG "sock_close: NULL inode\n");
1170 		return 0;
1171 	}
1172 	sock_release(SOCKET_I(inode));
1173 	return 0;
1174 }
1175 
1176 /*
1177  *	Update the socket async list
1178  *
1179  *	Fasync_list locking strategy.
1180  *
1181  *	1. fasync_list is modified only under process context socket lock
1182  *	   i.e. under semaphore.
1183  *	2. fasync_list is used under read_lock(&sk->sk_callback_lock)
1184  *	   or under socket lock
1185  */
1186 
1187 static int sock_fasync(int fd, struct file *filp, int on)
1188 {
1189 	struct socket *sock = filp->private_data;
1190 	struct sock *sk = sock->sk;
1191 	struct socket_wq *wq;
1192 
1193 	if (sk == NULL)
1194 		return -EINVAL;
1195 
1196 	lock_sock(sk);
1197 	wq = rcu_dereference_protected(sock->wq, sock_owned_by_user(sk));
1198 	fasync_helper(fd, filp, on, &wq->fasync_list);
1199 
1200 	if (!wq->fasync_list)
1201 		sock_reset_flag(sk, SOCK_FASYNC);
1202 	else
1203 		sock_set_flag(sk, SOCK_FASYNC);
1204 
1205 	release_sock(sk);
1206 	return 0;
1207 }
1208 
1209 /* This function may be called only under socket lock or callback_lock or rcu_lock */
1210 
1211 int sock_wake_async(struct socket *sock, int how, int band)
1212 {
1213 	struct socket_wq *wq;
1214 
1215 	if (!sock)
1216 		return -1;
1217 	rcu_read_lock();
1218 	wq = rcu_dereference(sock->wq);
1219 	if (!wq || !wq->fasync_list) {
1220 		rcu_read_unlock();
1221 		return -1;
1222 	}
1223 	switch (how) {
1224 	case SOCK_WAKE_WAITD:
1225 		if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1226 			break;
1227 		goto call_kill;
1228 	case SOCK_WAKE_SPACE:
1229 		if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1230 			break;
1231 		/* fall through */
1232 	case SOCK_WAKE_IO:
1233 call_kill:
1234 		kill_fasync(&wq->fasync_list, SIGIO, band);
1235 		break;
1236 	case SOCK_WAKE_URG:
1237 		kill_fasync(&wq->fasync_list, SIGURG, band);
1238 	}
1239 	rcu_read_unlock();
1240 	return 0;
1241 }
1242 EXPORT_SYMBOL(sock_wake_async);
1243 
1244 int __sock_create(struct net *net, int family, int type, int protocol,
1245 			 struct socket **res, int kern)
1246 {
1247 	int err;
1248 	struct socket *sock;
1249 	const struct net_proto_family *pf;
1250 
1251 	/*
1252 	 *      Check protocol is in range
1253 	 */
1254 	if (family < 0 || family >= NPROTO)
1255 		return -EAFNOSUPPORT;
1256 	if (type < 0 || type >= SOCK_MAX)
1257 		return -EINVAL;
1258 
1259 	/* Compatibility.
1260 
1261 	   This uglymoron is moved from INET layer to here to avoid
1262 	   deadlock in module load.
1263 	 */
1264 	if (family == PF_INET && type == SOCK_PACKET) {
1265 		static int warned;
1266 		if (!warned) {
1267 			warned = 1;
1268 			printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1269 			       current->comm);
1270 		}
1271 		family = PF_PACKET;
1272 	}
1273 
1274 	err = security_socket_create(family, type, protocol, kern);
1275 	if (err)
1276 		return err;
1277 
1278 	/*
1279 	 *	Allocate the socket and allow the family to set things up. if
1280 	 *	the protocol is 0, the family is instructed to select an appropriate
1281 	 *	default.
1282 	 */
1283 	sock = sock_alloc();
1284 	if (!sock) {
1285 		net_warn_ratelimited("socket: no more sockets\n");
1286 		return -ENFILE;	/* Not exactly a match, but its the
1287 				   closest posix thing */
1288 	}
1289 
1290 	sock->type = type;
1291 
1292 #ifdef CONFIG_MODULES
1293 	/* Attempt to load a protocol module if the find failed.
1294 	 *
1295 	 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
1296 	 * requested real, full-featured networking support upon configuration.
1297 	 * Otherwise module support will break!
1298 	 */
1299 	if (rcu_access_pointer(net_families[family]) == NULL)
1300 		request_module("net-pf-%d", family);
1301 #endif
1302 
1303 	rcu_read_lock();
1304 	pf = rcu_dereference(net_families[family]);
1305 	err = -EAFNOSUPPORT;
1306 	if (!pf)
1307 		goto out_release;
1308 
1309 	/*
1310 	 * We will call the ->create function, that possibly is in a loadable
1311 	 * module, so we have to bump that loadable module refcnt first.
1312 	 */
1313 	if (!try_module_get(pf->owner))
1314 		goto out_release;
1315 
1316 	/* Now protected by module ref count */
1317 	rcu_read_unlock();
1318 
1319 	err = pf->create(net, sock, protocol, kern);
1320 	if (err < 0)
1321 		goto out_module_put;
1322 
1323 	/*
1324 	 * Now to bump the refcnt of the [loadable] module that owns this
1325 	 * socket at sock_release time we decrement its refcnt.
1326 	 */
1327 	if (!try_module_get(sock->ops->owner))
1328 		goto out_module_busy;
1329 
1330 	/*
1331 	 * Now that we're done with the ->create function, the [loadable]
1332 	 * module can have its refcnt decremented
1333 	 */
1334 	module_put(pf->owner);
1335 	err = security_socket_post_create(sock, family, type, protocol, kern);
1336 	if (err)
1337 		goto out_sock_release;
1338 	*res = sock;
1339 
1340 	return 0;
1341 
1342 out_module_busy:
1343 	err = -EAFNOSUPPORT;
1344 out_module_put:
1345 	sock->ops = NULL;
1346 	module_put(pf->owner);
1347 out_sock_release:
1348 	sock_release(sock);
1349 	return err;
1350 
1351 out_release:
1352 	rcu_read_unlock();
1353 	goto out_sock_release;
1354 }
1355 EXPORT_SYMBOL(__sock_create);
1356 
1357 int sock_create(int family, int type, int protocol, struct socket **res)
1358 {
1359 	return __sock_create(current->nsproxy->net_ns, family, type, protocol, res, 0);
1360 }
1361 EXPORT_SYMBOL(sock_create);
1362 
1363 int sock_create_kern(int family, int type, int protocol, struct socket **res)
1364 {
1365 	return __sock_create(&init_net, family, type, protocol, res, 1);
1366 }
1367 EXPORT_SYMBOL(sock_create_kern);
1368 
1369 SYSCALL_DEFINE3(socket, int, family, int, type, int, protocol)
1370 {
1371 	int retval;
1372 	struct socket *sock;
1373 	int flags;
1374 
1375 	/* Check the SOCK_* constants for consistency.  */
1376 	BUILD_BUG_ON(SOCK_CLOEXEC != O_CLOEXEC);
1377 	BUILD_BUG_ON((SOCK_MAX | SOCK_TYPE_MASK) != SOCK_TYPE_MASK);
1378 	BUILD_BUG_ON(SOCK_CLOEXEC & SOCK_TYPE_MASK);
1379 	BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
1380 
1381 	flags = type & ~SOCK_TYPE_MASK;
1382 	if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
1383 		return -EINVAL;
1384 	type &= SOCK_TYPE_MASK;
1385 
1386 	if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1387 		flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1388 
1389 	retval = sock_create(family, type, protocol, &sock);
1390 	if (retval < 0)
1391 		goto out;
1392 
1393 	retval = sock_map_fd(sock, flags & (O_CLOEXEC | O_NONBLOCK));
1394 	if (retval < 0)
1395 		goto out_release;
1396 
1397 out:
1398 	/* It may be already another descriptor 8) Not kernel problem. */
1399 	return retval;
1400 
1401 out_release:
1402 	sock_release(sock);
1403 	return retval;
1404 }
1405 
1406 /*
1407  *	Create a pair of connected sockets.
1408  */
1409 
1410 SYSCALL_DEFINE4(socketpair, int, family, int, type, int, protocol,
1411 		int __user *, usockvec)
1412 {
1413 	struct socket *sock1, *sock2;
1414 	int fd1, fd2, err;
1415 	struct file *newfile1, *newfile2;
1416 	int flags;
1417 
1418 	flags = type & ~SOCK_TYPE_MASK;
1419 	if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
1420 		return -EINVAL;
1421 	type &= SOCK_TYPE_MASK;
1422 
1423 	if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1424 		flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1425 
1426 	/*
1427 	 * Obtain the first socket and check if the underlying protocol
1428 	 * supports the socketpair call.
1429 	 */
1430 
1431 	err = sock_create(family, type, protocol, &sock1);
1432 	if (err < 0)
1433 		goto out;
1434 
1435 	err = sock_create(family, type, protocol, &sock2);
1436 	if (err < 0)
1437 		goto out_release_1;
1438 
1439 	err = sock1->ops->socketpair(sock1, sock2);
1440 	if (err < 0)
1441 		goto out_release_both;
1442 
1443 	fd1 = get_unused_fd_flags(flags);
1444 	if (unlikely(fd1 < 0)) {
1445 		err = fd1;
1446 		goto out_release_both;
1447 	}
1448 	fd2 = get_unused_fd_flags(flags);
1449 	if (unlikely(fd2 < 0)) {
1450 		err = fd2;
1451 		put_unused_fd(fd1);
1452 		goto out_release_both;
1453 	}
1454 
1455 	newfile1 = sock_alloc_file(sock1, flags, NULL);
1456 	if (unlikely(IS_ERR(newfile1))) {
1457 		err = PTR_ERR(newfile1);
1458 		put_unused_fd(fd1);
1459 		put_unused_fd(fd2);
1460 		goto out_release_both;
1461 	}
1462 
1463 	newfile2 = sock_alloc_file(sock2, flags, NULL);
1464 	if (IS_ERR(newfile2)) {
1465 		err = PTR_ERR(newfile2);
1466 		fput(newfile1);
1467 		put_unused_fd(fd1);
1468 		put_unused_fd(fd2);
1469 		sock_release(sock2);
1470 		goto out;
1471 	}
1472 
1473 	audit_fd_pair(fd1, fd2);
1474 	fd_install(fd1, newfile1);
1475 	fd_install(fd2, newfile2);
1476 	/* fd1 and fd2 may be already another descriptors.
1477 	 * Not kernel problem.
1478 	 */
1479 
1480 	err = put_user(fd1, &usockvec[0]);
1481 	if (!err)
1482 		err = put_user(fd2, &usockvec[1]);
1483 	if (!err)
1484 		return 0;
1485 
1486 	sys_close(fd2);
1487 	sys_close(fd1);
1488 	return err;
1489 
1490 out_release_both:
1491 	sock_release(sock2);
1492 out_release_1:
1493 	sock_release(sock1);
1494 out:
1495 	return err;
1496 }
1497 
1498 /*
1499  *	Bind a name to a socket. Nothing much to do here since it's
1500  *	the protocol's responsibility to handle the local address.
1501  *
1502  *	We move the socket address to kernel space before we call
1503  *	the protocol layer (having also checked the address is ok).
1504  */
1505 
1506 SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
1507 {
1508 	struct socket *sock;
1509 	struct sockaddr_storage address;
1510 	int err, fput_needed;
1511 
1512 	sock = sockfd_lookup_light(fd, &err, &fput_needed);
1513 	if (sock) {
1514 		err = move_addr_to_kernel(umyaddr, addrlen, &address);
1515 		if (err >= 0) {
1516 			err = security_socket_bind(sock,
1517 						   (struct sockaddr *)&address,
1518 						   addrlen);
1519 			if (!err)
1520 				err = sock->ops->bind(sock,
1521 						      (struct sockaddr *)
1522 						      &address, addrlen);
1523 		}
1524 		fput_light(sock->file, fput_needed);
1525 	}
1526 	return err;
1527 }
1528 
1529 /*
1530  *	Perform a listen. Basically, we allow the protocol to do anything
1531  *	necessary for a listen, and if that works, we mark the socket as
1532  *	ready for listening.
1533  */
1534 
1535 SYSCALL_DEFINE2(listen, int, fd, int, backlog)
1536 {
1537 	struct socket *sock;
1538 	int err, fput_needed;
1539 	int somaxconn;
1540 
1541 	sock = sockfd_lookup_light(fd, &err, &fput_needed);
1542 	if (sock) {
1543 		somaxconn = sock_net(sock->sk)->core.sysctl_somaxconn;
1544 		if ((unsigned int)backlog > somaxconn)
1545 			backlog = somaxconn;
1546 
1547 		err = security_socket_listen(sock, backlog);
1548 		if (!err)
1549 			err = sock->ops->listen(sock, backlog);
1550 
1551 		fput_light(sock->file, fput_needed);
1552 	}
1553 	return err;
1554 }
1555 
1556 /*
1557  *	For accept, we attempt to create a new socket, set up the link
1558  *	with the client, wake up the client, then return the new
1559  *	connected fd. We collect the address of the connector in kernel
1560  *	space and move it to user at the very end. This is unclean because
1561  *	we open the socket then return an error.
1562  *
1563  *	1003.1g adds the ability to recvmsg() to query connection pending
1564  *	status to recvmsg. We need to add that support in a way thats
1565  *	clean when we restucture accept also.
1566  */
1567 
1568 SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr,
1569 		int __user *, upeer_addrlen, int, flags)
1570 {
1571 	struct socket *sock, *newsock;
1572 	struct file *newfile;
1573 	int err, len, newfd, fput_needed;
1574 	struct sockaddr_storage address;
1575 
1576 	if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
1577 		return -EINVAL;
1578 
1579 	if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
1580 		flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
1581 
1582 	sock = sockfd_lookup_light(fd, &err, &fput_needed);
1583 	if (!sock)
1584 		goto out;
1585 
1586 	err = -ENFILE;
1587 	newsock = sock_alloc();
1588 	if (!newsock)
1589 		goto out_put;
1590 
1591 	newsock->type = sock->type;
1592 	newsock->ops = sock->ops;
1593 
1594 	/*
1595 	 * We don't need try_module_get here, as the listening socket (sock)
1596 	 * has the protocol module (sock->ops->owner) held.
1597 	 */
1598 	__module_get(newsock->ops->owner);
1599 
1600 	newfd = get_unused_fd_flags(flags);
1601 	if (unlikely(newfd < 0)) {
1602 		err = newfd;
1603 		sock_release(newsock);
1604 		goto out_put;
1605 	}
1606 	newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name);
1607 	if (unlikely(IS_ERR(newfile))) {
1608 		err = PTR_ERR(newfile);
1609 		put_unused_fd(newfd);
1610 		sock_release(newsock);
1611 		goto out_put;
1612 	}
1613 
1614 	err = security_socket_accept(sock, newsock);
1615 	if (err)
1616 		goto out_fd;
1617 
1618 	err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1619 	if (err < 0)
1620 		goto out_fd;
1621 
1622 	if (upeer_sockaddr) {
1623 		if (newsock->ops->getname(newsock, (struct sockaddr *)&address,
1624 					  &len, 2) < 0) {
1625 			err = -ECONNABORTED;
1626 			goto out_fd;
1627 		}
1628 		err = move_addr_to_user(&address,
1629 					len, upeer_sockaddr, upeer_addrlen);
1630 		if (err < 0)
1631 			goto out_fd;
1632 	}
1633 
1634 	/* File flags are not inherited via accept() unlike another OSes. */
1635 
1636 	fd_install(newfd, newfile);
1637 	err = newfd;
1638 
1639 out_put:
1640 	fput_light(sock->file, fput_needed);
1641 out:
1642 	return err;
1643 out_fd:
1644 	fput(newfile);
1645 	put_unused_fd(newfd);
1646 	goto out_put;
1647 }
1648 
1649 SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr,
1650 		int __user *, upeer_addrlen)
1651 {
1652 	return sys_accept4(fd, upeer_sockaddr, upeer_addrlen, 0);
1653 }
1654 
1655 /*
1656  *	Attempt to connect to a socket with the server address.  The address
1657  *	is in user space so we verify it is OK and move it to kernel space.
1658  *
1659  *	For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1660  *	break bindings
1661  *
1662  *	NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1663  *	other SEQPACKET protocols that take time to connect() as it doesn't
1664  *	include the -EINPROGRESS status for such sockets.
1665  */
1666 
1667 SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr,
1668 		int, addrlen)
1669 {
1670 	struct socket *sock;
1671 	struct sockaddr_storage address;
1672 	int err, fput_needed;
1673 
1674 	sock = sockfd_lookup_light(fd, &err, &fput_needed);
1675 	if (!sock)
1676 		goto out;
1677 	err = move_addr_to_kernel(uservaddr, addrlen, &address);
1678 	if (err < 0)
1679 		goto out_put;
1680 
1681 	err =
1682 	    security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
1683 	if (err)
1684 		goto out_put;
1685 
1686 	err = sock->ops->connect(sock, (struct sockaddr *)&address, addrlen,
1687 				 sock->file->f_flags);
1688 out_put:
1689 	fput_light(sock->file, fput_needed);
1690 out:
1691 	return err;
1692 }
1693 
1694 /*
1695  *	Get the local address ('name') of a socket object. Move the obtained
1696  *	name to user space.
1697  */
1698 
1699 SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr,
1700 		int __user *, usockaddr_len)
1701 {
1702 	struct socket *sock;
1703 	struct sockaddr_storage address;
1704 	int len, err, fput_needed;
1705 
1706 	sock = sockfd_lookup_light(fd, &err, &fput_needed);
1707 	if (!sock)
1708 		goto out;
1709 
1710 	err = security_socket_getsockname(sock);
1711 	if (err)
1712 		goto out_put;
1713 
1714 	err = sock->ops->getname(sock, (struct sockaddr *)&address, &len, 0);
1715 	if (err)
1716 		goto out_put;
1717 	err = move_addr_to_user(&address, len, usockaddr, usockaddr_len);
1718 
1719 out_put:
1720 	fput_light(sock->file, fput_needed);
1721 out:
1722 	return err;
1723 }
1724 
1725 /*
1726  *	Get the remote address ('name') of a socket object. Move the obtained
1727  *	name to user space.
1728  */
1729 
1730 SYSCALL_DEFINE3(getpeername, int, fd, struct sockaddr __user *, usockaddr,
1731 		int __user *, usockaddr_len)
1732 {
1733 	struct socket *sock;
1734 	struct sockaddr_storage address;
1735 	int len, err, fput_needed;
1736 
1737 	sock = sockfd_lookup_light(fd, &err, &fput_needed);
1738 	if (sock != NULL) {
1739 		err = security_socket_getpeername(sock);
1740 		if (err) {
1741 			fput_light(sock->file, fput_needed);
1742 			return err;
1743 		}
1744 
1745 		err =
1746 		    sock->ops->getname(sock, (struct sockaddr *)&address, &len,
1747 				       1);
1748 		if (!err)
1749 			err = move_addr_to_user(&address, len, usockaddr,
1750 						usockaddr_len);
1751 		fput_light(sock->file, fput_needed);
1752 	}
1753 	return err;
1754 }
1755 
1756 /*
1757  *	Send a datagram to a given address. We move the address into kernel
1758  *	space and check the user space data area is readable before invoking
1759  *	the protocol.
1760  */
1761 
1762 SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
1763 		unsigned int, flags, struct sockaddr __user *, addr,
1764 		int, addr_len)
1765 {
1766 	struct socket *sock;
1767 	struct sockaddr_storage address;
1768 	int err;
1769 	struct msghdr msg;
1770 	struct iovec iov;
1771 	int fput_needed;
1772 
1773 	if (len > INT_MAX)
1774 		len = INT_MAX;
1775 	sock = sockfd_lookup_light(fd, &err, &fput_needed);
1776 	if (!sock)
1777 		goto out;
1778 
1779 	iov.iov_base = buff;
1780 	iov.iov_len = len;
1781 	msg.msg_name = NULL;
1782 	msg.msg_iov = &iov;
1783 	msg.msg_iovlen = 1;
1784 	msg.msg_control = NULL;
1785 	msg.msg_controllen = 0;
1786 	msg.msg_namelen = 0;
1787 	if (addr) {
1788 		err = move_addr_to_kernel(addr, addr_len, &address);
1789 		if (err < 0)
1790 			goto out_put;
1791 		msg.msg_name = (struct sockaddr *)&address;
1792 		msg.msg_namelen = addr_len;
1793 	}
1794 	if (sock->file->f_flags & O_NONBLOCK)
1795 		flags |= MSG_DONTWAIT;
1796 	msg.msg_flags = flags;
1797 	err = sock_sendmsg(sock, &msg, len);
1798 
1799 out_put:
1800 	fput_light(sock->file, fput_needed);
1801 out:
1802 	return err;
1803 }
1804 
1805 /*
1806  *	Send a datagram down a socket.
1807  */
1808 
1809 SYSCALL_DEFINE4(send, int, fd, void __user *, buff, size_t, len,
1810 		unsigned int, flags)
1811 {
1812 	return sys_sendto(fd, buff, len, flags, NULL, 0);
1813 }
1814 
1815 /*
1816  *	Receive a frame from the socket and optionally record the address of the
1817  *	sender. We verify the buffers are writable and if needed move the
1818  *	sender address from kernel to user space.
1819  */
1820 
1821 SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
1822 		unsigned int, flags, struct sockaddr __user *, addr,
1823 		int __user *, addr_len)
1824 {
1825 	struct socket *sock;
1826 	struct iovec iov;
1827 	struct msghdr msg;
1828 	struct sockaddr_storage address;
1829 	int err, err2;
1830 	int fput_needed;
1831 
1832 	if (size > INT_MAX)
1833 		size = INT_MAX;
1834 	sock = sockfd_lookup_light(fd, &err, &fput_needed);
1835 	if (!sock)
1836 		goto out;
1837 
1838 	msg.msg_control = NULL;
1839 	msg.msg_controllen = 0;
1840 	msg.msg_iovlen = 1;
1841 	msg.msg_iov = &iov;
1842 	iov.iov_len = size;
1843 	iov.iov_base = ubuf;
1844 	msg.msg_name = (struct sockaddr *)&address;
1845 	msg.msg_namelen = sizeof(address);
1846 	if (sock->file->f_flags & O_NONBLOCK)
1847 		flags |= MSG_DONTWAIT;
1848 	err = sock_recvmsg(sock, &msg, size, flags);
1849 
1850 	if (err >= 0 && addr != NULL) {
1851 		err2 = move_addr_to_user(&address,
1852 					 msg.msg_namelen, addr, addr_len);
1853 		if (err2 < 0)
1854 			err = err2;
1855 	}
1856 
1857 	fput_light(sock->file, fput_needed);
1858 out:
1859 	return err;
1860 }
1861 
1862 /*
1863  *	Receive a datagram from a socket.
1864  */
1865 
1866 asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1867 			 unsigned int flags)
1868 {
1869 	return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1870 }
1871 
1872 /*
1873  *	Set a socket option. Because we don't know the option lengths we have
1874  *	to pass the user mode parameter for the protocols to sort out.
1875  */
1876 
1877 SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname,
1878 		char __user *, optval, int, optlen)
1879 {
1880 	int err, fput_needed;
1881 	struct socket *sock;
1882 
1883 	if (optlen < 0)
1884 		return -EINVAL;
1885 
1886 	sock = sockfd_lookup_light(fd, &err, &fput_needed);
1887 	if (sock != NULL) {
1888 		err = security_socket_setsockopt(sock, level, optname);
1889 		if (err)
1890 			goto out_put;
1891 
1892 		if (level == SOL_SOCKET)
1893 			err =
1894 			    sock_setsockopt(sock, level, optname, optval,
1895 					    optlen);
1896 		else
1897 			err =
1898 			    sock->ops->setsockopt(sock, level, optname, optval,
1899 						  optlen);
1900 out_put:
1901 		fput_light(sock->file, fput_needed);
1902 	}
1903 	return err;
1904 }
1905 
1906 /*
1907  *	Get a socket option. Because we don't know the option lengths we have
1908  *	to pass a user mode parameter for the protocols to sort out.
1909  */
1910 
1911 SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname,
1912 		char __user *, optval, int __user *, optlen)
1913 {
1914 	int err, fput_needed;
1915 	struct socket *sock;
1916 
1917 	sock = sockfd_lookup_light(fd, &err, &fput_needed);
1918 	if (sock != NULL) {
1919 		err = security_socket_getsockopt(sock, level, optname);
1920 		if (err)
1921 			goto out_put;
1922 
1923 		if (level == SOL_SOCKET)
1924 			err =
1925 			    sock_getsockopt(sock, level, optname, optval,
1926 					    optlen);
1927 		else
1928 			err =
1929 			    sock->ops->getsockopt(sock, level, optname, optval,
1930 						  optlen);
1931 out_put:
1932 		fput_light(sock->file, fput_needed);
1933 	}
1934 	return err;
1935 }
1936 
1937 /*
1938  *	Shutdown a socket.
1939  */
1940 
1941 SYSCALL_DEFINE2(shutdown, int, fd, int, how)
1942 {
1943 	int err, fput_needed;
1944 	struct socket *sock;
1945 
1946 	sock = sockfd_lookup_light(fd, &err, &fput_needed);
1947 	if (sock != NULL) {
1948 		err = security_socket_shutdown(sock, how);
1949 		if (!err)
1950 			err = sock->ops->shutdown(sock, how);
1951 		fput_light(sock->file, fput_needed);
1952 	}
1953 	return err;
1954 }
1955 
1956 /* A couple of helpful macros for getting the address of the 32/64 bit
1957  * fields which are the same type (int / unsigned) on our platforms.
1958  */
1959 #define COMPAT_MSG(msg, member)	((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1960 #define COMPAT_NAMELEN(msg)	COMPAT_MSG(msg, msg_namelen)
1961 #define COMPAT_FLAGS(msg)	COMPAT_MSG(msg, msg_flags)
1962 
1963 struct used_address {
1964 	struct sockaddr_storage name;
1965 	unsigned int name_len;
1966 };
1967 
1968 static int __sys_sendmsg(struct socket *sock, struct msghdr __user *msg,
1969 			 struct msghdr *msg_sys, unsigned int flags,
1970 			 struct used_address *used_address)
1971 {
1972 	struct compat_msghdr __user *msg_compat =
1973 	    (struct compat_msghdr __user *)msg;
1974 	struct sockaddr_storage address;
1975 	struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
1976 	unsigned char ctl[sizeof(struct cmsghdr) + 20]
1977 	    __attribute__ ((aligned(sizeof(__kernel_size_t))));
1978 	/* 20 is size of ipv6_pktinfo */
1979 	unsigned char *ctl_buf = ctl;
1980 	int err, ctl_len, total_len;
1981 
1982 	err = -EFAULT;
1983 	if (MSG_CMSG_COMPAT & flags) {
1984 		if (get_compat_msghdr(msg_sys, msg_compat))
1985 			return -EFAULT;
1986 	} else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
1987 		return -EFAULT;
1988 
1989 	if (msg_sys->msg_iovlen > UIO_FASTIOV) {
1990 		err = -EMSGSIZE;
1991 		if (msg_sys->msg_iovlen > UIO_MAXIOV)
1992 			goto out;
1993 		err = -ENOMEM;
1994 		iov = kmalloc(msg_sys->msg_iovlen * sizeof(struct iovec),
1995 			      GFP_KERNEL);
1996 		if (!iov)
1997 			goto out;
1998 	}
1999 
2000 	/* This will also move the address data into kernel space */
2001 	if (MSG_CMSG_COMPAT & flags) {
2002 		err = verify_compat_iovec(msg_sys, iov, &address, VERIFY_READ);
2003 	} else
2004 		err = verify_iovec(msg_sys, iov, &address, VERIFY_READ);
2005 	if (err < 0)
2006 		goto out_freeiov;
2007 	total_len = err;
2008 
2009 	err = -ENOBUFS;
2010 
2011 	if (msg_sys->msg_controllen > INT_MAX)
2012 		goto out_freeiov;
2013 	ctl_len = msg_sys->msg_controllen;
2014 	if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
2015 		err =
2016 		    cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
2017 						     sizeof(ctl));
2018 		if (err)
2019 			goto out_freeiov;
2020 		ctl_buf = msg_sys->msg_control;
2021 		ctl_len = msg_sys->msg_controllen;
2022 	} else if (ctl_len) {
2023 		if (ctl_len > sizeof(ctl)) {
2024 			ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
2025 			if (ctl_buf == NULL)
2026 				goto out_freeiov;
2027 		}
2028 		err = -EFAULT;
2029 		/*
2030 		 * Careful! Before this, msg_sys->msg_control contains a user pointer.
2031 		 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
2032 		 * checking falls down on this.
2033 		 */
2034 		if (copy_from_user(ctl_buf,
2035 				   (void __user __force *)msg_sys->msg_control,
2036 				   ctl_len))
2037 			goto out_freectl;
2038 		msg_sys->msg_control = ctl_buf;
2039 	}
2040 	msg_sys->msg_flags = flags;
2041 
2042 	if (sock->file->f_flags & O_NONBLOCK)
2043 		msg_sys->msg_flags |= MSG_DONTWAIT;
2044 	/*
2045 	 * If this is sendmmsg() and current destination address is same as
2046 	 * previously succeeded address, omit asking LSM's decision.
2047 	 * used_address->name_len is initialized to UINT_MAX so that the first
2048 	 * destination address never matches.
2049 	 */
2050 	if (used_address && msg_sys->msg_name &&
2051 	    used_address->name_len == msg_sys->msg_namelen &&
2052 	    !memcmp(&used_address->name, msg_sys->msg_name,
2053 		    used_address->name_len)) {
2054 		err = sock_sendmsg_nosec(sock, msg_sys, total_len);
2055 		goto out_freectl;
2056 	}
2057 	err = sock_sendmsg(sock, msg_sys, total_len);
2058 	/*
2059 	 * If this is sendmmsg() and sending to current destination address was
2060 	 * successful, remember it.
2061 	 */
2062 	if (used_address && err >= 0) {
2063 		used_address->name_len = msg_sys->msg_namelen;
2064 		if (msg_sys->msg_name)
2065 			memcpy(&used_address->name, msg_sys->msg_name,
2066 			       used_address->name_len);
2067 	}
2068 
2069 out_freectl:
2070 	if (ctl_buf != ctl)
2071 		sock_kfree_s(sock->sk, ctl_buf, ctl_len);
2072 out_freeiov:
2073 	if (iov != iovstack)
2074 		kfree(iov);
2075 out:
2076 	return err;
2077 }
2078 
2079 /*
2080  *	BSD sendmsg interface
2081  */
2082 
2083 SYSCALL_DEFINE3(sendmsg, int, fd, struct msghdr __user *, msg, unsigned int, flags)
2084 {
2085 	int fput_needed, err;
2086 	struct msghdr msg_sys;
2087 	struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2088 
2089 	if (!sock)
2090 		goto out;
2091 
2092 	err = __sys_sendmsg(sock, msg, &msg_sys, flags, NULL);
2093 
2094 	fput_light(sock->file, fput_needed);
2095 out:
2096 	return err;
2097 }
2098 
2099 /*
2100  *	Linux sendmmsg interface
2101  */
2102 
2103 int __sys_sendmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2104 		   unsigned int flags)
2105 {
2106 	int fput_needed, err, datagrams;
2107 	struct socket *sock;
2108 	struct mmsghdr __user *entry;
2109 	struct compat_mmsghdr __user *compat_entry;
2110 	struct msghdr msg_sys;
2111 	struct used_address used_address;
2112 
2113 	if (vlen > UIO_MAXIOV)
2114 		vlen = UIO_MAXIOV;
2115 
2116 	datagrams = 0;
2117 
2118 	sock = sockfd_lookup_light(fd, &err, &fput_needed);
2119 	if (!sock)
2120 		return err;
2121 
2122 	used_address.name_len = UINT_MAX;
2123 	entry = mmsg;
2124 	compat_entry = (struct compat_mmsghdr __user *)mmsg;
2125 	err = 0;
2126 
2127 	while (datagrams < vlen) {
2128 		if (MSG_CMSG_COMPAT & flags) {
2129 			err = __sys_sendmsg(sock, (struct msghdr __user *)compat_entry,
2130 					    &msg_sys, flags, &used_address);
2131 			if (err < 0)
2132 				break;
2133 			err = __put_user(err, &compat_entry->msg_len);
2134 			++compat_entry;
2135 		} else {
2136 			err = __sys_sendmsg(sock, (struct msghdr __user *)entry,
2137 					    &msg_sys, flags, &used_address);
2138 			if (err < 0)
2139 				break;
2140 			err = put_user(err, &entry->msg_len);
2141 			++entry;
2142 		}
2143 
2144 		if (err)
2145 			break;
2146 		++datagrams;
2147 	}
2148 
2149 	fput_light(sock->file, fput_needed);
2150 
2151 	/* We only return an error if no datagrams were able to be sent */
2152 	if (datagrams != 0)
2153 		return datagrams;
2154 
2155 	return err;
2156 }
2157 
2158 SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
2159 		unsigned int, vlen, unsigned int, flags)
2160 {
2161 	return __sys_sendmmsg(fd, mmsg, vlen, flags);
2162 }
2163 
2164 static int __sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
2165 			 struct msghdr *msg_sys, unsigned int flags, int nosec)
2166 {
2167 	struct compat_msghdr __user *msg_compat =
2168 	    (struct compat_msghdr __user *)msg;
2169 	struct iovec iovstack[UIO_FASTIOV];
2170 	struct iovec *iov = iovstack;
2171 	unsigned long cmsg_ptr;
2172 	int err, total_len, len;
2173 
2174 	/* kernel mode address */
2175 	struct sockaddr_storage addr;
2176 
2177 	/* user mode address pointers */
2178 	struct sockaddr __user *uaddr;
2179 	int __user *uaddr_len;
2180 
2181 	if (MSG_CMSG_COMPAT & flags) {
2182 		if (get_compat_msghdr(msg_sys, msg_compat))
2183 			return -EFAULT;
2184 	} else if (copy_from_user(msg_sys, msg, sizeof(struct msghdr)))
2185 		return -EFAULT;
2186 
2187 	if (msg_sys->msg_iovlen > UIO_FASTIOV) {
2188 		err = -EMSGSIZE;
2189 		if (msg_sys->msg_iovlen > UIO_MAXIOV)
2190 			goto out;
2191 		err = -ENOMEM;
2192 		iov = kmalloc(msg_sys->msg_iovlen * sizeof(struct iovec),
2193 			      GFP_KERNEL);
2194 		if (!iov)
2195 			goto out;
2196 	}
2197 
2198 	/*
2199 	 *      Save the user-mode address (verify_iovec will change the
2200 	 *      kernel msghdr to use the kernel address space)
2201 	 */
2202 
2203 	uaddr = (__force void __user *)msg_sys->msg_name;
2204 	uaddr_len = COMPAT_NAMELEN(msg);
2205 	if (MSG_CMSG_COMPAT & flags) {
2206 		err = verify_compat_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
2207 	} else
2208 		err = verify_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
2209 	if (err < 0)
2210 		goto out_freeiov;
2211 	total_len = err;
2212 
2213 	cmsg_ptr = (unsigned long)msg_sys->msg_control;
2214 	msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
2215 
2216 	if (sock->file->f_flags & O_NONBLOCK)
2217 		flags |= MSG_DONTWAIT;
2218 	err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys,
2219 							  total_len, flags);
2220 	if (err < 0)
2221 		goto out_freeiov;
2222 	len = err;
2223 
2224 	if (uaddr != NULL) {
2225 		err = move_addr_to_user(&addr,
2226 					msg_sys->msg_namelen, uaddr,
2227 					uaddr_len);
2228 		if (err < 0)
2229 			goto out_freeiov;
2230 	}
2231 	err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
2232 			 COMPAT_FLAGS(msg));
2233 	if (err)
2234 		goto out_freeiov;
2235 	if (MSG_CMSG_COMPAT & flags)
2236 		err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
2237 				 &msg_compat->msg_controllen);
2238 	else
2239 		err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
2240 				 &msg->msg_controllen);
2241 	if (err)
2242 		goto out_freeiov;
2243 	err = len;
2244 
2245 out_freeiov:
2246 	if (iov != iovstack)
2247 		kfree(iov);
2248 out:
2249 	return err;
2250 }
2251 
2252 /*
2253  *	BSD recvmsg interface
2254  */
2255 
2256 SYSCALL_DEFINE3(recvmsg, int, fd, struct msghdr __user *, msg,
2257 		unsigned int, flags)
2258 {
2259 	int fput_needed, err;
2260 	struct msghdr msg_sys;
2261 	struct socket *sock = sockfd_lookup_light(fd, &err, &fput_needed);
2262 
2263 	if (!sock)
2264 		goto out;
2265 
2266 	err = __sys_recvmsg(sock, msg, &msg_sys, flags, 0);
2267 
2268 	fput_light(sock->file, fput_needed);
2269 out:
2270 	return err;
2271 }
2272 
2273 /*
2274  *     Linux recvmmsg interface
2275  */
2276 
2277 int __sys_recvmmsg(int fd, struct mmsghdr __user *mmsg, unsigned int vlen,
2278 		   unsigned int flags, struct timespec *timeout)
2279 {
2280 	int fput_needed, err, datagrams;
2281 	struct socket *sock;
2282 	struct mmsghdr __user *entry;
2283 	struct compat_mmsghdr __user *compat_entry;
2284 	struct msghdr msg_sys;
2285 	struct timespec end_time;
2286 
2287 	if (timeout &&
2288 	    poll_select_set_timeout(&end_time, timeout->tv_sec,
2289 				    timeout->tv_nsec))
2290 		return -EINVAL;
2291 
2292 	datagrams = 0;
2293 
2294 	sock = sockfd_lookup_light(fd, &err, &fput_needed);
2295 	if (!sock)
2296 		return err;
2297 
2298 	err = sock_error(sock->sk);
2299 	if (err)
2300 		goto out_put;
2301 
2302 	entry = mmsg;
2303 	compat_entry = (struct compat_mmsghdr __user *)mmsg;
2304 
2305 	while (datagrams < vlen) {
2306 		/*
2307 		 * No need to ask LSM for more than the first datagram.
2308 		 */
2309 		if (MSG_CMSG_COMPAT & flags) {
2310 			err = __sys_recvmsg(sock, (struct msghdr __user *)compat_entry,
2311 					    &msg_sys, flags & ~MSG_WAITFORONE,
2312 					    datagrams);
2313 			if (err < 0)
2314 				break;
2315 			err = __put_user(err, &compat_entry->msg_len);
2316 			++compat_entry;
2317 		} else {
2318 			err = __sys_recvmsg(sock, (struct msghdr __user *)entry,
2319 					    &msg_sys, flags & ~MSG_WAITFORONE,
2320 					    datagrams);
2321 			if (err < 0)
2322 				break;
2323 			err = put_user(err, &entry->msg_len);
2324 			++entry;
2325 		}
2326 
2327 		if (err)
2328 			break;
2329 		++datagrams;
2330 
2331 		/* MSG_WAITFORONE turns on MSG_DONTWAIT after one packet */
2332 		if (flags & MSG_WAITFORONE)
2333 			flags |= MSG_DONTWAIT;
2334 
2335 		if (timeout) {
2336 			ktime_get_ts(timeout);
2337 			*timeout = timespec_sub(end_time, *timeout);
2338 			if (timeout->tv_sec < 0) {
2339 				timeout->tv_sec = timeout->tv_nsec = 0;
2340 				break;
2341 			}
2342 
2343 			/* Timeout, return less than vlen datagrams */
2344 			if (timeout->tv_nsec == 0 && timeout->tv_sec == 0)
2345 				break;
2346 		}
2347 
2348 		/* Out of band data, return right away */
2349 		if (msg_sys.msg_flags & MSG_OOB)
2350 			break;
2351 	}
2352 
2353 out_put:
2354 	fput_light(sock->file, fput_needed);
2355 
2356 	if (err == 0)
2357 		return datagrams;
2358 
2359 	if (datagrams != 0) {
2360 		/*
2361 		 * We may return less entries than requested (vlen) if the
2362 		 * sock is non block and there aren't enough datagrams...
2363 		 */
2364 		if (err != -EAGAIN) {
2365 			/*
2366 			 * ... or  if recvmsg returns an error after we
2367 			 * received some datagrams, where we record the
2368 			 * error to return on the next call or if the
2369 			 * app asks about it using getsockopt(SO_ERROR).
2370 			 */
2371 			sock->sk->sk_err = -err;
2372 		}
2373 
2374 		return datagrams;
2375 	}
2376 
2377 	return err;
2378 }
2379 
2380 SYSCALL_DEFINE5(recvmmsg, int, fd, struct mmsghdr __user *, mmsg,
2381 		unsigned int, vlen, unsigned int, flags,
2382 		struct timespec __user *, timeout)
2383 {
2384 	int datagrams;
2385 	struct timespec timeout_sys;
2386 
2387 	if (!timeout)
2388 		return __sys_recvmmsg(fd, mmsg, vlen, flags, NULL);
2389 
2390 	if (copy_from_user(&timeout_sys, timeout, sizeof(timeout_sys)))
2391 		return -EFAULT;
2392 
2393 	datagrams = __sys_recvmmsg(fd, mmsg, vlen, flags, &timeout_sys);
2394 
2395 	if (datagrams > 0 &&
2396 	    copy_to_user(timeout, &timeout_sys, sizeof(timeout_sys)))
2397 		datagrams = -EFAULT;
2398 
2399 	return datagrams;
2400 }
2401 
2402 #ifdef __ARCH_WANT_SYS_SOCKETCALL
2403 /* Argument list sizes for sys_socketcall */
2404 #define AL(x) ((x) * sizeof(unsigned long))
2405 static const unsigned char nargs[21] = {
2406 	AL(0), AL(3), AL(3), AL(3), AL(2), AL(3),
2407 	AL(3), AL(3), AL(4), AL(4), AL(4), AL(6),
2408 	AL(6), AL(2), AL(5), AL(5), AL(3), AL(3),
2409 	AL(4), AL(5), AL(4)
2410 };
2411 
2412 #undef AL
2413 
2414 /*
2415  *	System call vectors.
2416  *
2417  *	Argument checking cleaned up. Saved 20% in size.
2418  *  This function doesn't need to set the kernel lock because
2419  *  it is set by the callees.
2420  */
2421 
2422 SYSCALL_DEFINE2(socketcall, int, call, unsigned long __user *, args)
2423 {
2424 	unsigned long a[6];
2425 	unsigned long a0, a1;
2426 	int err;
2427 	unsigned int len;
2428 
2429 	if (call < 1 || call > SYS_SENDMMSG)
2430 		return -EINVAL;
2431 
2432 	len = nargs[call];
2433 	if (len > sizeof(a))
2434 		return -EINVAL;
2435 
2436 	/* copy_from_user should be SMP safe. */
2437 	if (copy_from_user(a, args, len))
2438 		return -EFAULT;
2439 
2440 	audit_socketcall(nargs[call] / sizeof(unsigned long), a);
2441 
2442 	a0 = a[0];
2443 	a1 = a[1];
2444 
2445 	switch (call) {
2446 	case SYS_SOCKET:
2447 		err = sys_socket(a0, a1, a[2]);
2448 		break;
2449 	case SYS_BIND:
2450 		err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2451 		break;
2452 	case SYS_CONNECT:
2453 		err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2454 		break;
2455 	case SYS_LISTEN:
2456 		err = sys_listen(a0, a1);
2457 		break;
2458 	case SYS_ACCEPT:
2459 		err = sys_accept4(a0, (struct sockaddr __user *)a1,
2460 				  (int __user *)a[2], 0);
2461 		break;
2462 	case SYS_GETSOCKNAME:
2463 		err =
2464 		    sys_getsockname(a0, (struct sockaddr __user *)a1,
2465 				    (int __user *)a[2]);
2466 		break;
2467 	case SYS_GETPEERNAME:
2468 		err =
2469 		    sys_getpeername(a0, (struct sockaddr __user *)a1,
2470 				    (int __user *)a[2]);
2471 		break;
2472 	case SYS_SOCKETPAIR:
2473 		err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2474 		break;
2475 	case SYS_SEND:
2476 		err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2477 		break;
2478 	case SYS_SENDTO:
2479 		err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2480 				 (struct sockaddr __user *)a[4], a[5]);
2481 		break;
2482 	case SYS_RECV:
2483 		err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2484 		break;
2485 	case SYS_RECVFROM:
2486 		err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2487 				   (struct sockaddr __user *)a[4],
2488 				   (int __user *)a[5]);
2489 		break;
2490 	case SYS_SHUTDOWN:
2491 		err = sys_shutdown(a0, a1);
2492 		break;
2493 	case SYS_SETSOCKOPT:
2494 		err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2495 		break;
2496 	case SYS_GETSOCKOPT:
2497 		err =
2498 		    sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2499 				   (int __user *)a[4]);
2500 		break;
2501 	case SYS_SENDMSG:
2502 		err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2503 		break;
2504 	case SYS_SENDMMSG:
2505 		err = sys_sendmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3]);
2506 		break;
2507 	case SYS_RECVMSG:
2508 		err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2509 		break;
2510 	case SYS_RECVMMSG:
2511 		err = sys_recvmmsg(a0, (struct mmsghdr __user *)a1, a[2], a[3],
2512 				   (struct timespec __user *)a[4]);
2513 		break;
2514 	case SYS_ACCEPT4:
2515 		err = sys_accept4(a0, (struct sockaddr __user *)a1,
2516 				  (int __user *)a[2], a[3]);
2517 		break;
2518 	default:
2519 		err = -EINVAL;
2520 		break;
2521 	}
2522 	return err;
2523 }
2524 
2525 #endif				/* __ARCH_WANT_SYS_SOCKETCALL */
2526 
2527 /**
2528  *	sock_register - add a socket protocol handler
2529  *	@ops: description of protocol
2530  *
2531  *	This function is called by a protocol handler that wants to
2532  *	advertise its address family, and have it linked into the
2533  *	socket interface. The value ops->family coresponds to the
2534  *	socket system call protocol family.
2535  */
2536 int sock_register(const struct net_proto_family *ops)
2537 {
2538 	int err;
2539 
2540 	if (ops->family >= NPROTO) {
2541 		printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2542 		       NPROTO);
2543 		return -ENOBUFS;
2544 	}
2545 
2546 	spin_lock(&net_family_lock);
2547 	if (rcu_dereference_protected(net_families[ops->family],
2548 				      lockdep_is_held(&net_family_lock)))
2549 		err = -EEXIST;
2550 	else {
2551 		rcu_assign_pointer(net_families[ops->family], ops);
2552 		err = 0;
2553 	}
2554 	spin_unlock(&net_family_lock);
2555 
2556 	printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
2557 	return err;
2558 }
2559 EXPORT_SYMBOL(sock_register);
2560 
2561 /**
2562  *	sock_unregister - remove a protocol handler
2563  *	@family: protocol family to remove
2564  *
2565  *	This function is called by a protocol handler that wants to
2566  *	remove its address family, and have it unlinked from the
2567  *	new socket creation.
2568  *
2569  *	If protocol handler is a module, then it can use module reference
2570  *	counts to protect against new references. If protocol handler is not
2571  *	a module then it needs to provide its own protection in
2572  *	the ops->create routine.
2573  */
2574 void sock_unregister(int family)
2575 {
2576 	BUG_ON(family < 0 || family >= NPROTO);
2577 
2578 	spin_lock(&net_family_lock);
2579 	RCU_INIT_POINTER(net_families[family], NULL);
2580 	spin_unlock(&net_family_lock);
2581 
2582 	synchronize_rcu();
2583 
2584 	printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
2585 }
2586 EXPORT_SYMBOL(sock_unregister);
2587 
2588 static int __init sock_init(void)
2589 {
2590 	int err;
2591 	/*
2592 	 *      Initialize the network sysctl infrastructure.
2593 	 */
2594 	err = net_sysctl_init();
2595 	if (err)
2596 		goto out;
2597 
2598 	/*
2599 	 *      Initialize skbuff SLAB cache
2600 	 */
2601 	skb_init();
2602 
2603 	/*
2604 	 *      Initialize the protocols module.
2605 	 */
2606 
2607 	init_inodecache();
2608 
2609 	err = register_filesystem(&sock_fs_type);
2610 	if (err)
2611 		goto out_fs;
2612 	sock_mnt = kern_mount(&sock_fs_type);
2613 	if (IS_ERR(sock_mnt)) {
2614 		err = PTR_ERR(sock_mnt);
2615 		goto out_mount;
2616 	}
2617 
2618 	/* The real protocol initialization is performed in later initcalls.
2619 	 */
2620 
2621 #ifdef CONFIG_NETFILTER
2622 	netfilter_init();
2623 #endif
2624 
2625 #ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
2626 	skb_timestamping_init();
2627 #endif
2628 
2629 out:
2630 	return err;
2631 
2632 out_mount:
2633 	unregister_filesystem(&sock_fs_type);
2634 out_fs:
2635 	goto out;
2636 }
2637 
2638 core_initcall(sock_init);	/* early initcall */
2639 
2640 #ifdef CONFIG_PROC_FS
2641 void socket_seq_show(struct seq_file *seq)
2642 {
2643 	int cpu;
2644 	int counter = 0;
2645 
2646 	for_each_possible_cpu(cpu)
2647 	    counter += per_cpu(sockets_in_use, cpu);
2648 
2649 	/* It can be negative, by the way. 8) */
2650 	if (counter < 0)
2651 		counter = 0;
2652 
2653 	seq_printf(seq, "sockets: used %d\n", counter);
2654 }
2655 #endif				/* CONFIG_PROC_FS */
2656 
2657 #ifdef CONFIG_COMPAT
2658 static int do_siocgstamp(struct net *net, struct socket *sock,
2659 			 unsigned int cmd, void __user *up)
2660 {
2661 	mm_segment_t old_fs = get_fs();
2662 	struct timeval ktv;
2663 	int err;
2664 
2665 	set_fs(KERNEL_DS);
2666 	err = sock_do_ioctl(net, sock, cmd, (unsigned long)&ktv);
2667 	set_fs(old_fs);
2668 	if (!err)
2669 		err = compat_put_timeval(&ktv, up);
2670 
2671 	return err;
2672 }
2673 
2674 static int do_siocgstampns(struct net *net, struct socket *sock,
2675 			   unsigned int cmd, void __user *up)
2676 {
2677 	mm_segment_t old_fs = get_fs();
2678 	struct timespec kts;
2679 	int err;
2680 
2681 	set_fs(KERNEL_DS);
2682 	err = sock_do_ioctl(net, sock, cmd, (unsigned long)&kts);
2683 	set_fs(old_fs);
2684 	if (!err)
2685 		err = compat_put_timespec(&kts, up);
2686 
2687 	return err;
2688 }
2689 
2690 static int dev_ifname32(struct net *net, struct compat_ifreq __user *uifr32)
2691 {
2692 	struct ifreq __user *uifr;
2693 	int err;
2694 
2695 	uifr = compat_alloc_user_space(sizeof(struct ifreq));
2696 	if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2697 		return -EFAULT;
2698 
2699 	err = dev_ioctl(net, SIOCGIFNAME, uifr);
2700 	if (err)
2701 		return err;
2702 
2703 	if (copy_in_user(uifr32, uifr, sizeof(struct compat_ifreq)))
2704 		return -EFAULT;
2705 
2706 	return 0;
2707 }
2708 
2709 static int dev_ifconf(struct net *net, struct compat_ifconf __user *uifc32)
2710 {
2711 	struct compat_ifconf ifc32;
2712 	struct ifconf ifc;
2713 	struct ifconf __user *uifc;
2714 	struct compat_ifreq __user *ifr32;
2715 	struct ifreq __user *ifr;
2716 	unsigned int i, j;
2717 	int err;
2718 
2719 	if (copy_from_user(&ifc32, uifc32, sizeof(struct compat_ifconf)))
2720 		return -EFAULT;
2721 
2722 	memset(&ifc, 0, sizeof(ifc));
2723 	if (ifc32.ifcbuf == 0) {
2724 		ifc32.ifc_len = 0;
2725 		ifc.ifc_len = 0;
2726 		ifc.ifc_req = NULL;
2727 		uifc = compat_alloc_user_space(sizeof(struct ifconf));
2728 	} else {
2729 		size_t len = ((ifc32.ifc_len / sizeof(struct compat_ifreq)) + 1) *
2730 			sizeof(struct ifreq);
2731 		uifc = compat_alloc_user_space(sizeof(struct ifconf) + len);
2732 		ifc.ifc_len = len;
2733 		ifr = ifc.ifc_req = (void __user *)(uifc + 1);
2734 		ifr32 = compat_ptr(ifc32.ifcbuf);
2735 		for (i = 0; i < ifc32.ifc_len; i += sizeof(struct compat_ifreq)) {
2736 			if (copy_in_user(ifr, ifr32, sizeof(struct compat_ifreq)))
2737 				return -EFAULT;
2738 			ifr++;
2739 			ifr32++;
2740 		}
2741 	}
2742 	if (copy_to_user(uifc, &ifc, sizeof(struct ifconf)))
2743 		return -EFAULT;
2744 
2745 	err = dev_ioctl(net, SIOCGIFCONF, uifc);
2746 	if (err)
2747 		return err;
2748 
2749 	if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
2750 		return -EFAULT;
2751 
2752 	ifr = ifc.ifc_req;
2753 	ifr32 = compat_ptr(ifc32.ifcbuf);
2754 	for (i = 0, j = 0;
2755 	     i + sizeof(struct compat_ifreq) <= ifc32.ifc_len && j < ifc.ifc_len;
2756 	     i += sizeof(struct compat_ifreq), j += sizeof(struct ifreq)) {
2757 		if (copy_in_user(ifr32, ifr, sizeof(struct compat_ifreq)))
2758 			return -EFAULT;
2759 		ifr32++;
2760 		ifr++;
2761 	}
2762 
2763 	if (ifc32.ifcbuf == 0) {
2764 		/* Translate from 64-bit structure multiple to
2765 		 * a 32-bit one.
2766 		 */
2767 		i = ifc.ifc_len;
2768 		i = ((i / sizeof(struct ifreq)) * sizeof(struct compat_ifreq));
2769 		ifc32.ifc_len = i;
2770 	} else {
2771 		ifc32.ifc_len = i;
2772 	}
2773 	if (copy_to_user(uifc32, &ifc32, sizeof(struct compat_ifconf)))
2774 		return -EFAULT;
2775 
2776 	return 0;
2777 }
2778 
2779 static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
2780 {
2781 	struct compat_ethtool_rxnfc __user *compat_rxnfc;
2782 	bool convert_in = false, convert_out = false;
2783 	size_t buf_size = ALIGN(sizeof(struct ifreq), 8);
2784 	struct ethtool_rxnfc __user *rxnfc;
2785 	struct ifreq __user *ifr;
2786 	u32 rule_cnt = 0, actual_rule_cnt;
2787 	u32 ethcmd;
2788 	u32 data;
2789 	int ret;
2790 
2791 	if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2792 		return -EFAULT;
2793 
2794 	compat_rxnfc = compat_ptr(data);
2795 
2796 	if (get_user(ethcmd, &compat_rxnfc->cmd))
2797 		return -EFAULT;
2798 
2799 	/* Most ethtool structures are defined without padding.
2800 	 * Unfortunately struct ethtool_rxnfc is an exception.
2801 	 */
2802 	switch (ethcmd) {
2803 	default:
2804 		break;
2805 	case ETHTOOL_GRXCLSRLALL:
2806 		/* Buffer size is variable */
2807 		if (get_user(rule_cnt, &compat_rxnfc->rule_cnt))
2808 			return -EFAULT;
2809 		if (rule_cnt > KMALLOC_MAX_SIZE / sizeof(u32))
2810 			return -ENOMEM;
2811 		buf_size += rule_cnt * sizeof(u32);
2812 		/* fall through */
2813 	case ETHTOOL_GRXRINGS:
2814 	case ETHTOOL_GRXCLSRLCNT:
2815 	case ETHTOOL_GRXCLSRULE:
2816 	case ETHTOOL_SRXCLSRLINS:
2817 		convert_out = true;
2818 		/* fall through */
2819 	case ETHTOOL_SRXCLSRLDEL:
2820 		buf_size += sizeof(struct ethtool_rxnfc);
2821 		convert_in = true;
2822 		break;
2823 	}
2824 
2825 	ifr = compat_alloc_user_space(buf_size);
2826 	rxnfc = (void __user *)ifr + ALIGN(sizeof(struct ifreq), 8);
2827 
2828 	if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2829 		return -EFAULT;
2830 
2831 	if (put_user(convert_in ? rxnfc : compat_ptr(data),
2832 		     &ifr->ifr_ifru.ifru_data))
2833 		return -EFAULT;
2834 
2835 	if (convert_in) {
2836 		/* We expect there to be holes between fs.m_ext and
2837 		 * fs.ring_cookie and at the end of fs, but nowhere else.
2838 		 */
2839 		BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
2840 			     sizeof(compat_rxnfc->fs.m_ext) !=
2841 			     offsetof(struct ethtool_rxnfc, fs.m_ext) +
2842 			     sizeof(rxnfc->fs.m_ext));
2843 		BUILD_BUG_ON(
2844 			offsetof(struct compat_ethtool_rxnfc, fs.location) -
2845 			offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
2846 			offsetof(struct ethtool_rxnfc, fs.location) -
2847 			offsetof(struct ethtool_rxnfc, fs.ring_cookie));
2848 
2849 		if (copy_in_user(rxnfc, compat_rxnfc,
2850 				 (void __user *)(&rxnfc->fs.m_ext + 1) -
2851 				 (void __user *)rxnfc) ||
2852 		    copy_in_user(&rxnfc->fs.ring_cookie,
2853 				 &compat_rxnfc->fs.ring_cookie,
2854 				 (void __user *)(&rxnfc->fs.location + 1) -
2855 				 (void __user *)&rxnfc->fs.ring_cookie) ||
2856 		    copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
2857 				 sizeof(rxnfc->rule_cnt)))
2858 			return -EFAULT;
2859 	}
2860 
2861 	ret = dev_ioctl(net, SIOCETHTOOL, ifr);
2862 	if (ret)
2863 		return ret;
2864 
2865 	if (convert_out) {
2866 		if (copy_in_user(compat_rxnfc, rxnfc,
2867 				 (const void __user *)(&rxnfc->fs.m_ext + 1) -
2868 				 (const void __user *)rxnfc) ||
2869 		    copy_in_user(&compat_rxnfc->fs.ring_cookie,
2870 				 &rxnfc->fs.ring_cookie,
2871 				 (const void __user *)(&rxnfc->fs.location + 1) -
2872 				 (const void __user *)&rxnfc->fs.ring_cookie) ||
2873 		    copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
2874 				 sizeof(rxnfc->rule_cnt)))
2875 			return -EFAULT;
2876 
2877 		if (ethcmd == ETHTOOL_GRXCLSRLALL) {
2878 			/* As an optimisation, we only copy the actual
2879 			 * number of rules that the underlying
2880 			 * function returned.  Since Mallory might
2881 			 * change the rule count in user memory, we
2882 			 * check that it is less than the rule count
2883 			 * originally given (as the user buffer size),
2884 			 * which has been range-checked.
2885 			 */
2886 			if (get_user(actual_rule_cnt, &rxnfc->rule_cnt))
2887 				return -EFAULT;
2888 			if (actual_rule_cnt < rule_cnt)
2889 				rule_cnt = actual_rule_cnt;
2890 			if (copy_in_user(&compat_rxnfc->rule_locs[0],
2891 					 &rxnfc->rule_locs[0],
2892 					 rule_cnt * sizeof(u32)))
2893 				return -EFAULT;
2894 		}
2895 	}
2896 
2897 	return 0;
2898 }
2899 
2900 static int compat_siocwandev(struct net *net, struct compat_ifreq __user *uifr32)
2901 {
2902 	void __user *uptr;
2903 	compat_uptr_t uptr32;
2904 	struct ifreq __user *uifr;
2905 
2906 	uifr = compat_alloc_user_space(sizeof(*uifr));
2907 	if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
2908 		return -EFAULT;
2909 
2910 	if (get_user(uptr32, &uifr32->ifr_settings.ifs_ifsu))
2911 		return -EFAULT;
2912 
2913 	uptr = compat_ptr(uptr32);
2914 
2915 	if (put_user(uptr, &uifr->ifr_settings.ifs_ifsu.raw_hdlc))
2916 		return -EFAULT;
2917 
2918 	return dev_ioctl(net, SIOCWANDEV, uifr);
2919 }
2920 
2921 static int bond_ioctl(struct net *net, unsigned int cmd,
2922 			 struct compat_ifreq __user *ifr32)
2923 {
2924 	struct ifreq kifr;
2925 	struct ifreq __user *uifr;
2926 	mm_segment_t old_fs;
2927 	int err;
2928 	u32 data;
2929 	void __user *datap;
2930 
2931 	switch (cmd) {
2932 	case SIOCBONDENSLAVE:
2933 	case SIOCBONDRELEASE:
2934 	case SIOCBONDSETHWADDR:
2935 	case SIOCBONDCHANGEACTIVE:
2936 		if (copy_from_user(&kifr, ifr32, sizeof(struct compat_ifreq)))
2937 			return -EFAULT;
2938 
2939 		old_fs = get_fs();
2940 		set_fs(KERNEL_DS);
2941 		err = dev_ioctl(net, cmd,
2942 				(struct ifreq __user __force *) &kifr);
2943 		set_fs(old_fs);
2944 
2945 		return err;
2946 	case SIOCBONDSLAVEINFOQUERY:
2947 	case SIOCBONDINFOQUERY:
2948 		uifr = compat_alloc_user_space(sizeof(*uifr));
2949 		if (copy_in_user(&uifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
2950 			return -EFAULT;
2951 
2952 		if (get_user(data, &ifr32->ifr_ifru.ifru_data))
2953 			return -EFAULT;
2954 
2955 		datap = compat_ptr(data);
2956 		if (put_user(datap, &uifr->ifr_ifru.ifru_data))
2957 			return -EFAULT;
2958 
2959 		return dev_ioctl(net, cmd, uifr);
2960 	default:
2961 		return -ENOIOCTLCMD;
2962 	}
2963 }
2964 
2965 static int siocdevprivate_ioctl(struct net *net, unsigned int cmd,
2966 				 struct compat_ifreq __user *u_ifreq32)
2967 {
2968 	struct ifreq __user *u_ifreq64;
2969 	char tmp_buf[IFNAMSIZ];
2970 	void __user *data64;
2971 	u32 data32;
2972 
2973 	if (copy_from_user(&tmp_buf[0], &(u_ifreq32->ifr_ifrn.ifrn_name[0]),
2974 			   IFNAMSIZ))
2975 		return -EFAULT;
2976 	if (__get_user(data32, &u_ifreq32->ifr_ifru.ifru_data))
2977 		return -EFAULT;
2978 	data64 = compat_ptr(data32);
2979 
2980 	u_ifreq64 = compat_alloc_user_space(sizeof(*u_ifreq64));
2981 
2982 	/* Don't check these user accesses, just let that get trapped
2983 	 * in the ioctl handler instead.
2984 	 */
2985 	if (copy_to_user(&u_ifreq64->ifr_ifrn.ifrn_name[0], &tmp_buf[0],
2986 			 IFNAMSIZ))
2987 		return -EFAULT;
2988 	if (__put_user(data64, &u_ifreq64->ifr_ifru.ifru_data))
2989 		return -EFAULT;
2990 
2991 	return dev_ioctl(net, cmd, u_ifreq64);
2992 }
2993 
2994 static int dev_ifsioc(struct net *net, struct socket *sock,
2995 			 unsigned int cmd, struct compat_ifreq __user *uifr32)
2996 {
2997 	struct ifreq __user *uifr;
2998 	int err;
2999 
3000 	uifr = compat_alloc_user_space(sizeof(*uifr));
3001 	if (copy_in_user(uifr, uifr32, sizeof(*uifr32)))
3002 		return -EFAULT;
3003 
3004 	err = sock_do_ioctl(net, sock, cmd, (unsigned long)uifr);
3005 
3006 	if (!err) {
3007 		switch (cmd) {
3008 		case SIOCGIFFLAGS:
3009 		case SIOCGIFMETRIC:
3010 		case SIOCGIFMTU:
3011 		case SIOCGIFMEM:
3012 		case SIOCGIFHWADDR:
3013 		case SIOCGIFINDEX:
3014 		case SIOCGIFADDR:
3015 		case SIOCGIFBRDADDR:
3016 		case SIOCGIFDSTADDR:
3017 		case SIOCGIFNETMASK:
3018 		case SIOCGIFPFLAGS:
3019 		case SIOCGIFTXQLEN:
3020 		case SIOCGMIIPHY:
3021 		case SIOCGMIIREG:
3022 			if (copy_in_user(uifr32, uifr, sizeof(*uifr32)))
3023 				err = -EFAULT;
3024 			break;
3025 		}
3026 	}
3027 	return err;
3028 }
3029 
3030 static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
3031 			struct compat_ifreq __user *uifr32)
3032 {
3033 	struct ifreq ifr;
3034 	struct compat_ifmap __user *uifmap32;
3035 	mm_segment_t old_fs;
3036 	int err;
3037 
3038 	uifmap32 = &uifr32->ifr_ifru.ifru_map;
3039 	err = copy_from_user(&ifr, uifr32, sizeof(ifr.ifr_name));
3040 	err |= __get_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3041 	err |= __get_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3042 	err |= __get_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3043 	err |= __get_user(ifr.ifr_map.irq, &uifmap32->irq);
3044 	err |= __get_user(ifr.ifr_map.dma, &uifmap32->dma);
3045 	err |= __get_user(ifr.ifr_map.port, &uifmap32->port);
3046 	if (err)
3047 		return -EFAULT;
3048 
3049 	old_fs = get_fs();
3050 	set_fs(KERNEL_DS);
3051 	err = dev_ioctl(net, cmd, (void  __user __force *)&ifr);
3052 	set_fs(old_fs);
3053 
3054 	if (cmd == SIOCGIFMAP && !err) {
3055 		err = copy_to_user(uifr32, &ifr, sizeof(ifr.ifr_name));
3056 		err |= __put_user(ifr.ifr_map.mem_start, &uifmap32->mem_start);
3057 		err |= __put_user(ifr.ifr_map.mem_end, &uifmap32->mem_end);
3058 		err |= __put_user(ifr.ifr_map.base_addr, &uifmap32->base_addr);
3059 		err |= __put_user(ifr.ifr_map.irq, &uifmap32->irq);
3060 		err |= __put_user(ifr.ifr_map.dma, &uifmap32->dma);
3061 		err |= __put_user(ifr.ifr_map.port, &uifmap32->port);
3062 		if (err)
3063 			err = -EFAULT;
3064 	}
3065 	return err;
3066 }
3067 
3068 static int compat_siocshwtstamp(struct net *net, struct compat_ifreq __user *uifr32)
3069 {
3070 	void __user *uptr;
3071 	compat_uptr_t uptr32;
3072 	struct ifreq __user *uifr;
3073 
3074 	uifr = compat_alloc_user_space(sizeof(*uifr));
3075 	if (copy_in_user(uifr, uifr32, sizeof(struct compat_ifreq)))
3076 		return -EFAULT;
3077 
3078 	if (get_user(uptr32, &uifr32->ifr_data))
3079 		return -EFAULT;
3080 
3081 	uptr = compat_ptr(uptr32);
3082 
3083 	if (put_user(uptr, &uifr->ifr_data))
3084 		return -EFAULT;
3085 
3086 	return dev_ioctl(net, SIOCSHWTSTAMP, uifr);
3087 }
3088 
3089 struct rtentry32 {
3090 	u32		rt_pad1;
3091 	struct sockaddr rt_dst;         /* target address               */
3092 	struct sockaddr rt_gateway;     /* gateway addr (RTF_GATEWAY)   */
3093 	struct sockaddr rt_genmask;     /* target network mask (IP)     */
3094 	unsigned short	rt_flags;
3095 	short		rt_pad2;
3096 	u32		rt_pad3;
3097 	unsigned char	rt_tos;
3098 	unsigned char	rt_class;
3099 	short		rt_pad4;
3100 	short		rt_metric;      /* +1 for binary compatibility! */
3101 	/* char * */ u32 rt_dev;        /* forcing the device at add    */
3102 	u32		rt_mtu;         /* per route MTU/Window         */
3103 	u32		rt_window;      /* Window clamping              */
3104 	unsigned short  rt_irtt;        /* Initial RTT                  */
3105 };
3106 
3107 struct in6_rtmsg32 {
3108 	struct in6_addr		rtmsg_dst;
3109 	struct in6_addr		rtmsg_src;
3110 	struct in6_addr		rtmsg_gateway;
3111 	u32			rtmsg_type;
3112 	u16			rtmsg_dst_len;
3113 	u16			rtmsg_src_len;
3114 	u32			rtmsg_metric;
3115 	u32			rtmsg_info;
3116 	u32			rtmsg_flags;
3117 	s32			rtmsg_ifindex;
3118 };
3119 
3120 static int routing_ioctl(struct net *net, struct socket *sock,
3121 			 unsigned int cmd, void __user *argp)
3122 {
3123 	int ret;
3124 	void *r = NULL;
3125 	struct in6_rtmsg r6;
3126 	struct rtentry r4;
3127 	char devname[16];
3128 	u32 rtdev;
3129 	mm_segment_t old_fs = get_fs();
3130 
3131 	if (sock && sock->sk && sock->sk->sk_family == AF_INET6) { /* ipv6 */
3132 		struct in6_rtmsg32 __user *ur6 = argp;
3133 		ret = copy_from_user(&r6.rtmsg_dst, &(ur6->rtmsg_dst),
3134 			3 * sizeof(struct in6_addr));
3135 		ret |= __get_user(r6.rtmsg_type, &(ur6->rtmsg_type));
3136 		ret |= __get_user(r6.rtmsg_dst_len, &(ur6->rtmsg_dst_len));
3137 		ret |= __get_user(r6.rtmsg_src_len, &(ur6->rtmsg_src_len));
3138 		ret |= __get_user(r6.rtmsg_metric, &(ur6->rtmsg_metric));
3139 		ret |= __get_user(r6.rtmsg_info, &(ur6->rtmsg_info));
3140 		ret |= __get_user(r6.rtmsg_flags, &(ur6->rtmsg_flags));
3141 		ret |= __get_user(r6.rtmsg_ifindex, &(ur6->rtmsg_ifindex));
3142 
3143 		r = (void *) &r6;
3144 	} else { /* ipv4 */
3145 		struct rtentry32 __user *ur4 = argp;
3146 		ret = copy_from_user(&r4.rt_dst, &(ur4->rt_dst),
3147 					3 * sizeof(struct sockaddr));
3148 		ret |= __get_user(r4.rt_flags, &(ur4->rt_flags));
3149 		ret |= __get_user(r4.rt_metric, &(ur4->rt_metric));
3150 		ret |= __get_user(r4.rt_mtu, &(ur4->rt_mtu));
3151 		ret |= __get_user(r4.rt_window, &(ur4->rt_window));
3152 		ret |= __get_user(r4.rt_irtt, &(ur4->rt_irtt));
3153 		ret |= __get_user(rtdev, &(ur4->rt_dev));
3154 		if (rtdev) {
3155 			ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
3156 			r4.rt_dev = (char __user __force *)devname;
3157 			devname[15] = 0;
3158 		} else
3159 			r4.rt_dev = NULL;
3160 
3161 		r = (void *) &r4;
3162 	}
3163 
3164 	if (ret) {
3165 		ret = -EFAULT;
3166 		goto out;
3167 	}
3168 
3169 	set_fs(KERNEL_DS);
3170 	ret = sock_do_ioctl(net, sock, cmd, (unsigned long) r);
3171 	set_fs(old_fs);
3172 
3173 out:
3174 	return ret;
3175 }
3176 
3177 /* Since old style bridge ioctl's endup using SIOCDEVPRIVATE
3178  * for some operations; this forces use of the newer bridge-utils that
3179  * use compatible ioctls
3180  */
3181 static int old_bridge_ioctl(compat_ulong_t __user *argp)
3182 {
3183 	compat_ulong_t tmp;
3184 
3185 	if (get_user(tmp, argp))
3186 		return -EFAULT;
3187 	if (tmp == BRCTL_GET_VERSION)
3188 		return BRCTL_VERSION + 1;
3189 	return -EINVAL;
3190 }
3191 
3192 static int compat_sock_ioctl_trans(struct file *file, struct socket *sock,
3193 			 unsigned int cmd, unsigned long arg)
3194 {
3195 	void __user *argp = compat_ptr(arg);
3196 	struct sock *sk = sock->sk;
3197 	struct net *net = sock_net(sk);
3198 
3199 	if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
3200 		return siocdevprivate_ioctl(net, cmd, argp);
3201 
3202 	switch (cmd) {
3203 	case SIOCSIFBR:
3204 	case SIOCGIFBR:
3205 		return old_bridge_ioctl(argp);
3206 	case SIOCGIFNAME:
3207 		return dev_ifname32(net, argp);
3208 	case SIOCGIFCONF:
3209 		return dev_ifconf(net, argp);
3210 	case SIOCETHTOOL:
3211 		return ethtool_ioctl(net, argp);
3212 	case SIOCWANDEV:
3213 		return compat_siocwandev(net, argp);
3214 	case SIOCGIFMAP:
3215 	case SIOCSIFMAP:
3216 		return compat_sioc_ifmap(net, cmd, argp);
3217 	case SIOCBONDENSLAVE:
3218 	case SIOCBONDRELEASE:
3219 	case SIOCBONDSETHWADDR:
3220 	case SIOCBONDSLAVEINFOQUERY:
3221 	case SIOCBONDINFOQUERY:
3222 	case SIOCBONDCHANGEACTIVE:
3223 		return bond_ioctl(net, cmd, argp);
3224 	case SIOCADDRT:
3225 	case SIOCDELRT:
3226 		return routing_ioctl(net, sock, cmd, argp);
3227 	case SIOCGSTAMP:
3228 		return do_siocgstamp(net, sock, cmd, argp);
3229 	case SIOCGSTAMPNS:
3230 		return do_siocgstampns(net, sock, cmd, argp);
3231 	case SIOCSHWTSTAMP:
3232 		return compat_siocshwtstamp(net, argp);
3233 
3234 	case FIOSETOWN:
3235 	case SIOCSPGRP:
3236 	case FIOGETOWN:
3237 	case SIOCGPGRP:
3238 	case SIOCBRADDBR:
3239 	case SIOCBRDELBR:
3240 	case SIOCGIFVLAN:
3241 	case SIOCSIFVLAN:
3242 	case SIOCADDDLCI:
3243 	case SIOCDELDLCI:
3244 		return sock_ioctl(file, cmd, arg);
3245 
3246 	case SIOCGIFFLAGS:
3247 	case SIOCSIFFLAGS:
3248 	case SIOCGIFMETRIC:
3249 	case SIOCSIFMETRIC:
3250 	case SIOCGIFMTU:
3251 	case SIOCSIFMTU:
3252 	case SIOCGIFMEM:
3253 	case SIOCSIFMEM:
3254 	case SIOCGIFHWADDR:
3255 	case SIOCSIFHWADDR:
3256 	case SIOCADDMULTI:
3257 	case SIOCDELMULTI:
3258 	case SIOCGIFINDEX:
3259 	case SIOCGIFADDR:
3260 	case SIOCSIFADDR:
3261 	case SIOCSIFHWBROADCAST:
3262 	case SIOCDIFADDR:
3263 	case SIOCGIFBRDADDR:
3264 	case SIOCSIFBRDADDR:
3265 	case SIOCGIFDSTADDR:
3266 	case SIOCSIFDSTADDR:
3267 	case SIOCGIFNETMASK:
3268 	case SIOCSIFNETMASK:
3269 	case SIOCSIFPFLAGS:
3270 	case SIOCGIFPFLAGS:
3271 	case SIOCGIFTXQLEN:
3272 	case SIOCSIFTXQLEN:
3273 	case SIOCBRADDIF:
3274 	case SIOCBRDELIF:
3275 	case SIOCSIFNAME:
3276 	case SIOCGMIIPHY:
3277 	case SIOCGMIIREG:
3278 	case SIOCSMIIREG:
3279 		return dev_ifsioc(net, sock, cmd, argp);
3280 
3281 	case SIOCSARP:
3282 	case SIOCGARP:
3283 	case SIOCDARP:
3284 	case SIOCATMARK:
3285 		return sock_do_ioctl(net, sock, cmd, arg);
3286 	}
3287 
3288 	return -ENOIOCTLCMD;
3289 }
3290 
3291 static long compat_sock_ioctl(struct file *file, unsigned int cmd,
3292 			      unsigned long arg)
3293 {
3294 	struct socket *sock = file->private_data;
3295 	int ret = -ENOIOCTLCMD;
3296 	struct sock *sk;
3297 	struct net *net;
3298 
3299 	sk = sock->sk;
3300 	net = sock_net(sk);
3301 
3302 	if (sock->ops->compat_ioctl)
3303 		ret = sock->ops->compat_ioctl(sock, cmd, arg);
3304 
3305 	if (ret == -ENOIOCTLCMD &&
3306 	    (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST))
3307 		ret = compat_wext_handle_ioctl(net, cmd, arg);
3308 
3309 	if (ret == -ENOIOCTLCMD)
3310 		ret = compat_sock_ioctl_trans(file, sock, cmd, arg);
3311 
3312 	return ret;
3313 }
3314 #endif
3315 
3316 int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
3317 {
3318 	return sock->ops->bind(sock, addr, addrlen);
3319 }
3320 EXPORT_SYMBOL(kernel_bind);
3321 
3322 int kernel_listen(struct socket *sock, int backlog)
3323 {
3324 	return sock->ops->listen(sock, backlog);
3325 }
3326 EXPORT_SYMBOL(kernel_listen);
3327 
3328 int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
3329 {
3330 	struct sock *sk = sock->sk;
3331 	int err;
3332 
3333 	err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
3334 			       newsock);
3335 	if (err < 0)
3336 		goto done;
3337 
3338 	err = sock->ops->accept(sock, *newsock, flags);
3339 	if (err < 0) {
3340 		sock_release(*newsock);
3341 		*newsock = NULL;
3342 		goto done;
3343 	}
3344 
3345 	(*newsock)->ops = sock->ops;
3346 	__module_get((*newsock)->ops->owner);
3347 
3348 done:
3349 	return err;
3350 }
3351 EXPORT_SYMBOL(kernel_accept);
3352 
3353 int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
3354 		   int flags)
3355 {
3356 	return sock->ops->connect(sock, addr, addrlen, flags);
3357 }
3358 EXPORT_SYMBOL(kernel_connect);
3359 
3360 int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
3361 			 int *addrlen)
3362 {
3363 	return sock->ops->getname(sock, addr, addrlen, 0);
3364 }
3365 EXPORT_SYMBOL(kernel_getsockname);
3366 
3367 int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
3368 			 int *addrlen)
3369 {
3370 	return sock->ops->getname(sock, addr, addrlen, 1);
3371 }
3372 EXPORT_SYMBOL(kernel_getpeername);
3373 
3374 int kernel_getsockopt(struct socket *sock, int level, int optname,
3375 			char *optval, int *optlen)
3376 {
3377 	mm_segment_t oldfs = get_fs();
3378 	char __user *uoptval;
3379 	int __user *uoptlen;
3380 	int err;
3381 
3382 	uoptval = (char __user __force *) optval;
3383 	uoptlen = (int __user __force *) optlen;
3384 
3385 	set_fs(KERNEL_DS);
3386 	if (level == SOL_SOCKET)
3387 		err = sock_getsockopt(sock, level, optname, uoptval, uoptlen);
3388 	else
3389 		err = sock->ops->getsockopt(sock, level, optname, uoptval,
3390 					    uoptlen);
3391 	set_fs(oldfs);
3392 	return err;
3393 }
3394 EXPORT_SYMBOL(kernel_getsockopt);
3395 
3396 int kernel_setsockopt(struct socket *sock, int level, int optname,
3397 			char *optval, unsigned int optlen)
3398 {
3399 	mm_segment_t oldfs = get_fs();
3400 	char __user *uoptval;
3401 	int err;
3402 
3403 	uoptval = (char __user __force *) optval;
3404 
3405 	set_fs(KERNEL_DS);
3406 	if (level == SOL_SOCKET)
3407 		err = sock_setsockopt(sock, level, optname, uoptval, optlen);
3408 	else
3409 		err = sock->ops->setsockopt(sock, level, optname, uoptval,
3410 					    optlen);
3411 	set_fs(oldfs);
3412 	return err;
3413 }
3414 EXPORT_SYMBOL(kernel_setsockopt);
3415 
3416 int kernel_sendpage(struct socket *sock, struct page *page, int offset,
3417 		    size_t size, int flags)
3418 {
3419 	if (sock->ops->sendpage)
3420 		return sock->ops->sendpage(sock, page, offset, size, flags);
3421 
3422 	return sock_no_sendpage(sock, page, offset, size, flags);
3423 }
3424 EXPORT_SYMBOL(kernel_sendpage);
3425 
3426 int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
3427 {
3428 	mm_segment_t oldfs = get_fs();
3429 	int err;
3430 
3431 	set_fs(KERNEL_DS);
3432 	err = sock->ops->ioctl(sock, cmd, arg);
3433 	set_fs(oldfs);
3434 
3435 	return err;
3436 }
3437 EXPORT_SYMBOL(kernel_sock_ioctl);
3438 
3439 int kernel_sock_shutdown(struct socket *sock, enum sock_shutdown_cmd how)
3440 {
3441 	return sock->ops->shutdown(sock, how);
3442 }
3443 EXPORT_SYMBOL(kernel_sock_shutdown);
3444