blob: 156f2efa4e4a8b6db28565812def67a0567fb8cf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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, <obz@Kodak.COM>
Jesper Juhl02c30a82005-05-05 16:16:16 -07007 * Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
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)
Stephen Hemminger89bddce2006-09-01 00:19:31 -070045 * Tigran Aivazian : Made listen(2) backlog sanity checks
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * 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
Stephen Hemminger89bddce2006-09-01 00:19:31 -070056 * paradigm.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
58 * Based upon Swansea University Computer Society NET3.039
59 */
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/mm.h>
62#include <linux/smp_lock.h>
63#include <linux/socket.h>
64#include <linux/file.h>
65#include <linux/net.h>
66#include <linux/interrupt.h>
67#include <linux/netdevice.h>
68#include <linux/proc_fs.h>
69#include <linux/seq_file.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080070#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <linux/wanrouter.h>
72#include <linux/if_bridge.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030073#include <linux/if_frad.h>
74#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#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/divert.h>
81#include <linux/mount.h>
82#include <linux/security.h>
83#include <linux/syscalls.h>
84#include <linux/compat.h>
85#include <linux/kmod.h>
David Woodhouse3ec3b2f2005-05-17 12:08:48 +010086#include <linux/audit.h>
Adrian Bunkd86b5e02006-01-21 00:46:55 +010087#include <linux/wireless.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89#include <asm/uaccess.h>
90#include <asm/unistd.h>
91
92#include <net/compat.h>
93
94#include <net/sock.h>
95#include <linux/netfilter.h>
96
97static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
98static ssize_t sock_aio_read(struct kiocb *iocb, char __user *buf,
Stephen Hemminger89bddce2006-09-01 00:19:31 -070099 size_t size, loff_t pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static ssize_t sock_aio_write(struct kiocb *iocb, const char __user *buf,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700101 size_t size, loff_t pos);
102static int sock_mmap(struct file *file, struct vm_area_struct *vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104static int sock_close(struct inode *inode, struct file *file);
105static unsigned int sock_poll(struct file *file,
106 struct poll_table_struct *wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700107static long sock_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800108#ifdef CONFIG_COMPAT
109static long compat_sock_ioctl(struct file *file,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700110 unsigned int cmd, unsigned long arg);
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800111#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static int sock_fasync(int fd, struct file *filp, int on);
113static ssize_t sock_readv(struct file *file, const struct iovec *vector,
114 unsigned long count, loff_t *ppos);
115static ssize_t sock_writev(struct file *file, const struct iovec *vector,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700116 unsigned long count, loff_t *ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static ssize_t sock_sendpage(struct file *file, struct page *page,
118 int offset, size_t size, loff_t *ppos, int more);
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/*
121 * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
122 * in the operation structures but are done directly via the socketcall() multiplexor.
123 */
124
125static struct file_operations socket_file_ops = {
126 .owner = THIS_MODULE,
127 .llseek = no_llseek,
128 .aio_read = sock_aio_read,
129 .aio_write = sock_aio_write,
130 .poll = sock_poll,
131 .unlocked_ioctl = sock_ioctl,
Shaun Pereira89bbfc92006-03-21 23:58:08 -0800132#ifdef CONFIG_COMPAT
133 .compat_ioctl = compat_sock_ioctl,
134#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .mmap = sock_mmap,
136 .open = sock_no_open, /* special open code to disallow open via /proc */
137 .release = sock_close,
138 .fasync = sock_fasync,
139 .readv = sock_readv,
140 .writev = sock_writev,
Jens Axboe5274f052006-03-30 15:15:30 +0200141 .sendpage = sock_sendpage,
142 .splice_write = generic_splice_sendpage,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143};
144
145/*
146 * The protocol list. Each protocol is registered in here.
147 */
148
149static struct net_proto_family *net_families[NPROTO];
150
151#if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
152static atomic_t net_family_lockct = ATOMIC_INIT(0);
153static DEFINE_SPINLOCK(net_family_lock);
154
155/* The strategy is: modifications net_family vector are short, do not
156 sleep and veeery rare, but read access should be free of any exclusive
157 locks.
158 */
159
160static void net_family_write_lock(void)
161{
162 spin_lock(&net_family_lock);
163 while (atomic_read(&net_family_lockct) != 0) {
164 spin_unlock(&net_family_lock);
165
166 yield();
167
168 spin_lock(&net_family_lock);
169 }
170}
171
172static __inline__ void net_family_write_unlock(void)
173{
174 spin_unlock(&net_family_lock);
175}
176
177static __inline__ void net_family_read_lock(void)
178{
179 atomic_inc(&net_family_lockct);
180 spin_unlock_wait(&net_family_lock);
181}
182
183static __inline__ void net_family_read_unlock(void)
184{
185 atomic_dec(&net_family_lockct);
186}
187
188#else
189#define net_family_write_lock() do { } while(0)
190#define net_family_write_unlock() do { } while(0)
191#define net_family_read_lock() do { } while(0)
192#define net_family_read_unlock() do { } while(0)
193#endif
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/*
196 * Statistics counters of the socket lists
197 */
198
199static DEFINE_PER_CPU(int, sockets_in_use) = 0;
200
201/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700202 * Support routines.
203 * Move socket addresses back and forth across the kernel/user
204 * divide and look after the messy bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 */
206
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700207#define MAX_SOCK_ADDR 128 /* 108 for Unix domain -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 16 for IP, 16 for IPX,
209 24 for IPv6,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700210 about 80 for AX.25
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 must be at least one bigger than
212 the AF_UNIX size (see net/unix/af_unix.c
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700213 :unix_mkname()).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/**
217 * move_addr_to_kernel - copy a socket address into kernel space
218 * @uaddr: Address in user space
219 * @kaddr: Address in kernel space
220 * @ulen: Length in user space
221 *
222 * The address is copied into kernel space. If the provided address is
223 * too long an error code of -EINVAL is returned. If the copy gives
224 * invalid addresses -EFAULT is returned. On a success 0 is returned.
225 */
226
227int move_addr_to_kernel(void __user *uaddr, int ulen, void *kaddr)
228{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700229 if (ulen < 0 || ulen > MAX_SOCK_ADDR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700231 if (ulen == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700233 if (copy_from_user(kaddr, uaddr, ulen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +0100235 return audit_sockaddr(ulen, kaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
238/**
239 * move_addr_to_user - copy an address to user space
240 * @kaddr: kernel space address
241 * @klen: length of address in kernel
242 * @uaddr: user space address
243 * @ulen: pointer to user length field
244 *
245 * The value pointed to by ulen on entry is the buffer length available.
246 * This is overwritten with the buffer space used. -EINVAL is returned
247 * if an overlong buffer is specified or a negative buffer size. -EFAULT
248 * is returned if either the buffer or the length field are not
249 * accessible.
250 * After copying the data up to the limit the user specifies, the true
251 * length of the data is written over the length limit the user
252 * specified. Zero is returned for a success.
253 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700254
255int move_addr_to_user(void *kaddr, int klen, void __user *uaddr,
256 int __user *ulen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 int err;
259 int len;
260
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700261 err = get_user(len, ulen);
262 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700264 if (len > klen)
265 len = klen;
266 if (len < 0 || len > MAX_SOCK_ADDR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700268 if (len) {
Steve Grubbd6fe3942006-03-30 12:20:22 -0500269 if (audit_sockaddr(klen, kaddr))
270 return -ENOMEM;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700271 if (copy_to_user(uaddr, kaddr, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return -EFAULT;
273 }
274 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700275 * "fromlen shall refer to the value before truncation.."
276 * 1003.1g
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 */
278 return __put_user(klen, ulen);
279}
280
281#define SOCKFS_MAGIC 0x534F434B
282
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700283static kmem_cache_t *sock_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285static struct inode *sock_alloc_inode(struct super_block *sb)
286{
287 struct socket_alloc *ei;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700288
289 ei = kmem_cache_alloc(sock_inode_cachep, SLAB_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (!ei)
291 return NULL;
292 init_waitqueue_head(&ei->socket.wait);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 ei->socket.fasync_list = NULL;
295 ei->socket.state = SS_UNCONNECTED;
296 ei->socket.flags = 0;
297 ei->socket.ops = NULL;
298 ei->socket.sk = NULL;
299 ei->socket.file = NULL;
300 ei->socket.flags = 0;
301
302 return &ei->vfs_inode;
303}
304
305static void sock_destroy_inode(struct inode *inode)
306{
307 kmem_cache_free(sock_inode_cachep,
308 container_of(inode, struct socket_alloc, vfs_inode));
309}
310
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700311static void init_once(void *foo, kmem_cache_t *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700313 struct socket_alloc *ei = (struct socket_alloc *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700315 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR))
316 == SLAB_CTOR_CONSTRUCTOR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 inode_init_once(&ei->vfs_inode);
318}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320static int init_inodecache(void)
321{
322 sock_inode_cachep = kmem_cache_create("sock_inode_cache",
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700323 sizeof(struct socket_alloc),
324 0,
325 (SLAB_HWCACHE_ALIGN |
326 SLAB_RECLAIM_ACCOUNT |
327 SLAB_MEM_SPREAD),
328 init_once,
329 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (sock_inode_cachep == NULL)
331 return -ENOMEM;
332 return 0;
333}
334
335static struct super_operations sockfs_ops = {
336 .alloc_inode = sock_alloc_inode,
337 .destroy_inode =sock_destroy_inode,
338 .statfs = simple_statfs,
339};
340
David Howells454e2392006-06-23 02:02:57 -0700341static int sockfs_get_sb(struct file_system_type *fs_type,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700342 int flags, const char *dev_name, void *data,
343 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
David Howells454e2392006-06-23 02:02:57 -0700345 return get_sb_pseudo(fs_type, "socket:", &sockfs_ops, SOCKFS_MAGIC,
346 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Eric Dumazetba899662005-08-26 12:05:31 -0700349static struct vfsmount *sock_mnt __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351static struct file_system_type sock_fs_type = {
352 .name = "sockfs",
353 .get_sb = sockfs_get_sb,
354 .kill_sb = kill_anon_super,
355};
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357static int sockfs_delete_dentry(struct dentry *dentry)
358{
359 return 1;
360}
361static struct dentry_operations sockfs_dentry_operations = {
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700362 .d_delete = sockfs_delete_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363};
364
365/*
366 * Obtains the first available file descriptor and sets it up for use.
367 *
David S. Miller39d8c1b2006-03-20 17:13:49 -0800368 * These functions create file structures and maps them to fd space
369 * of the current process. On success it returns file descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 * and file struct implicitly stored in sock->file.
371 * Note that another thread may close file descriptor before we return
372 * from this function. We use the fact that now we do not refer
373 * to socket after mapping. If one day we will need it, this
374 * function will increment ref. count on file by 1.
375 *
376 * In any case returned fd MAY BE not valid!
377 * This race condition is unavoidable
378 * with shared fd spaces, we cannot solve it inside kernel,
379 * but we take care of internal coherence yet.
380 */
381
David S. Miller39d8c1b2006-03-20 17:13:49 -0800382static int sock_alloc_fd(struct file **filep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
384 int fd;
David S. Miller39d8c1b2006-03-20 17:13:49 -0800385
386 fd = get_unused_fd();
387 if (likely(fd >= 0)) {
388 struct file *file = get_empty_filp();
389
390 *filep = file;
391 if (unlikely(!file)) {
392 put_unused_fd(fd);
393 return -ENFILE;
394 }
395 } else
396 *filep = NULL;
397 return fd;
398}
399
400static int sock_attach_fd(struct socket *sock, struct file *file)
401{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 struct qstr this;
403 char name[32];
404
David S. Miller39d8c1b2006-03-20 17:13:49 -0800405 this.len = sprintf(name, "[%lu]", SOCK_INODE(sock)->i_ino);
406 this.name = name;
407 this.hash = SOCK_INODE(sock)->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
David S. Miller39d8c1b2006-03-20 17:13:49 -0800409 file->f_dentry = d_alloc(sock_mnt->mnt_sb->s_root, &this);
410 if (unlikely(!file->f_dentry))
411 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
David S. Miller39d8c1b2006-03-20 17:13:49 -0800413 file->f_dentry->d_op = &sockfs_dentry_operations;
414 d_add(file->f_dentry, SOCK_INODE(sock));
415 file->f_vfsmnt = mntget(sock_mnt);
416 file->f_mapping = file->f_dentry->d_inode->i_mapping;
417
418 sock->file = file;
419 file->f_op = SOCK_INODE(sock)->i_fop = &socket_file_ops;
420 file->f_mode = FMODE_READ | FMODE_WRITE;
421 file->f_flags = O_RDWR;
422 file->f_pos = 0;
423 file->private_data = sock;
424
425 return 0;
426}
427
428int sock_map_fd(struct socket *sock)
429{
430 struct file *newfile;
431 int fd = sock_alloc_fd(&newfile);
432
433 if (likely(fd >= 0)) {
434 int err = sock_attach_fd(sock, newfile);
435
436 if (unlikely(err < 0)) {
437 put_filp(newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 put_unused_fd(fd);
David S. Miller39d8c1b2006-03-20 17:13:49 -0800439 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
David S. Miller39d8c1b2006-03-20 17:13:49 -0800441 fd_install(fd, newfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return fd;
444}
445
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800446static struct socket *sock_from_file(struct file *file, int *err)
447{
448 struct inode *inode;
449 struct socket *sock;
450
451 if (file->f_op == &socket_file_ops)
452 return file->private_data; /* set in sock_map_fd */
453
454 inode = file->f_dentry->d_inode;
455 if (!S_ISSOCK(inode->i_mode)) {
456 *err = -ENOTSOCK;
457 return NULL;
458 }
459
460 sock = SOCKET_I(inode);
461 if (sock->file != file) {
462 printk(KERN_ERR "socki_lookup: socket file changed!\n");
463 sock->file = file;
464 }
465 return sock;
466}
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468/**
469 * sockfd_lookup - Go from a file number to its socket slot
470 * @fd: file handle
471 * @err: pointer to an error code return
472 *
473 * The file handle passed in is locked and the socket it is bound
474 * too is returned. If an error occurs the err pointer is overwritten
475 * with a negative errno code and NULL is returned. The function checks
476 * for both invalid handles and passing a handle which is not a socket.
477 *
478 * On a success the socket object pointer is returned.
479 */
480
481struct socket *sockfd_lookup(int fd, int *err)
482{
483 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 struct socket *sock;
485
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700486 file = fget(fd);
487 if (!file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 *err = -EBADF;
489 return NULL;
490 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700491
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800492 sock = sock_from_file(file, err);
493 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return sock;
496}
497
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800498static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
499{
500 struct file *file;
501 struct socket *sock;
502
Hua Zhong36725582006-04-19 15:25:02 -0700503 *err = -EBADF;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -0800504 file = fget_light(fd, fput_needed);
505 if (file) {
506 sock = sock_from_file(file, err);
507 if (sock)
508 return sock;
509 fput_light(file, *fput_needed);
510 }
511 return NULL;
512}
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514/**
515 * sock_alloc - allocate a socket
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700516 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 * Allocate a new inode and socket object. The two are bound together
518 * and initialised. The socket is then returned. If we are out of inodes
519 * NULL is returned.
520 */
521
522static struct socket *sock_alloc(void)
523{
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700524 struct inode *inode;
525 struct socket *sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 inode = new_inode(sock_mnt->mnt_sb);
528 if (!inode)
529 return NULL;
530
531 sock = SOCKET_I(inode);
532
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700533 inode->i_mode = S_IFSOCK | S_IRWXUGO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 inode->i_uid = current->fsuid;
535 inode->i_gid = current->fsgid;
536
537 get_cpu_var(sockets_in_use)++;
538 put_cpu_var(sockets_in_use);
539 return sock;
540}
541
542/*
543 * In theory you can't get an open on this inode, but /proc provides
544 * a back door. Remember to keep it shut otherwise you'll let the
545 * creepy crawlies in.
546 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
549{
550 return -ENXIO;
551}
552
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800553const struct file_operations bad_sock_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 .owner = THIS_MODULE,
555 .open = sock_no_open,
556};
557
558/**
559 * sock_release - close a socket
560 * @sock: socket to close
561 *
562 * The socket is released from the protocol stack if it has a release
563 * callback, and the inode is then released if the socket is bound to
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700564 * an inode not a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567void sock_release(struct socket *sock)
568{
569 if (sock->ops) {
570 struct module *owner = sock->ops->owner;
571
572 sock->ops->release(sock);
573 sock->ops = NULL;
574 module_put(owner);
575 }
576
577 if (sock->fasync_list)
578 printk(KERN_ERR "sock_release: fasync list not empty!\n");
579
580 get_cpu_var(sockets_in_use)--;
581 put_cpu_var(sockets_in_use);
582 if (!sock->file) {
583 iput(SOCK_INODE(sock));
584 return;
585 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700586 sock->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700589static inline int __sock_sendmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 struct msghdr *msg, size_t size)
591{
592 struct sock_iocb *si = kiocb_to_siocb(iocb);
593 int err;
594
595 si->sock = sock;
596 si->scm = NULL;
597 si->msg = msg;
598 si->size = size;
599
600 err = security_socket_sendmsg(sock, msg, size);
601 if (err)
602 return err;
603
604 return sock->ops->sendmsg(iocb, sock, msg, size);
605}
606
607int sock_sendmsg(struct socket *sock, struct msghdr *msg, size_t size)
608{
609 struct kiocb iocb;
610 struct sock_iocb siocb;
611 int ret;
612
613 init_sync_kiocb(&iocb, NULL);
614 iocb.private = &siocb;
615 ret = __sock_sendmsg(&iocb, sock, msg, size);
616 if (-EIOCBQUEUED == ret)
617 ret = wait_on_sync_kiocb(&iocb);
618 return ret;
619}
620
621int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
622 struct kvec *vec, size_t num, size_t size)
623{
624 mm_segment_t oldfs = get_fs();
625 int result;
626
627 set_fs(KERNEL_DS);
628 /*
629 * the following is safe, since for compiler definitions of kvec and
630 * iovec are identical, yielding the same in-core layout and alignment
631 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700632 msg->msg_iov = (struct iovec *)vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 msg->msg_iovlen = num;
634 result = sock_sendmsg(sock, msg, size);
635 set_fs(oldfs);
636 return result;
637}
638
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700639static inline int __sock_recvmsg(struct kiocb *iocb, struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 struct msghdr *msg, size_t size, int flags)
641{
642 int err;
643 struct sock_iocb *si = kiocb_to_siocb(iocb);
644
645 si->sock = sock;
646 si->scm = NULL;
647 si->msg = msg;
648 si->size = size;
649 si->flags = flags;
650
651 err = security_socket_recvmsg(sock, msg, size, flags);
652 if (err)
653 return err;
654
655 return sock->ops->recvmsg(iocb, sock, msg, size, flags);
656}
657
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700658int sock_recvmsg(struct socket *sock, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 size_t size, int flags)
660{
661 struct kiocb iocb;
662 struct sock_iocb siocb;
663 int ret;
664
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700665 init_sync_kiocb(&iocb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 iocb.private = &siocb;
667 ret = __sock_recvmsg(&iocb, sock, msg, size, flags);
668 if (-EIOCBQUEUED == ret)
669 ret = wait_on_sync_kiocb(&iocb);
670 return ret;
671}
672
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700673int kernel_recvmsg(struct socket *sock, struct msghdr *msg,
674 struct kvec *vec, size_t num, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
676 mm_segment_t oldfs = get_fs();
677 int result;
678
679 set_fs(KERNEL_DS);
680 /*
681 * the following is safe, since for compiler definitions of kvec and
682 * iovec are identical, yielding the same in-core layout and alignment
683 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700684 msg->msg_iov = (struct iovec *)vec, msg->msg_iovlen = num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 result = sock_recvmsg(sock, msg, size, flags);
686 set_fs(oldfs);
687 return result;
688}
689
690static void sock_aio_dtor(struct kiocb *iocb)
691{
692 kfree(iocb->private);
693}
694
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -0300695static ssize_t sock_sendpage(struct file *file, struct page *page,
696 int offset, size_t size, loff_t *ppos, int more)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 struct socket *sock;
699 int flags;
700
Eric Dumazetb69aee02005-09-06 14:42:45 -0700701 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
704 if (more)
705 flags |= MSG_MORE;
706
707 return sock->ops->sendpage(sock, page, offset, size, flags);
708}
709
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800710static struct sock_iocb *alloc_sock_iocb(struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700711 char __user *ubuf, size_t size,
712 struct sock_iocb *siocb)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800713{
714 if (!is_sync_kiocb(iocb)) {
715 siocb = kmalloc(sizeof(*siocb), GFP_KERNEL);
716 if (!siocb)
717 return NULL;
718 iocb->ki_dtor = sock_aio_dtor;
719 }
720
721 siocb->kiocb = iocb;
722 siocb->async_iov.iov_base = ubuf;
723 siocb->async_iov.iov_len = size;
724
725 iocb->private = siocb;
726 return siocb;
727}
728
729static ssize_t do_sock_read(struct msghdr *msg, struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700730 struct file *file, struct iovec *iov,
731 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800732{
733 struct socket *sock = file->private_data;
734 size_t size = 0;
735 int i;
736
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700737 for (i = 0; i < nr_segs; i++)
738 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800739
740 msg->msg_name = NULL;
741 msg->msg_namelen = 0;
742 msg->msg_control = NULL;
743 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700744 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800745 msg->msg_iovlen = nr_segs;
746 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
747
748 return __sock_recvmsg(iocb, sock, msg, size, msg->msg_flags);
749}
750
751static ssize_t sock_readv(struct file *file, const struct iovec *iov,
752 unsigned long nr_segs, loff_t *ppos)
753{
754 struct kiocb iocb;
755 struct sock_iocb siocb;
756 struct msghdr msg;
757 int ret;
758
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700759 init_sync_kiocb(&iocb, NULL);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800760 iocb.private = &siocb;
761
762 ret = do_sock_read(&msg, &iocb, file, (struct iovec *)iov, nr_segs);
763 if (-EIOCBQUEUED == ret)
764 ret = wait_on_sync_kiocb(&iocb);
765 return ret;
766}
767
768static ssize_t sock_aio_read(struct kiocb *iocb, char __user *ubuf,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700769 size_t count, loff_t pos)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800770{
771 struct sock_iocb siocb, *x;
772
773 if (pos != 0)
774 return -ESPIPE;
775 if (count == 0) /* Match SYS5 behaviour */
776 return 0;
777
778 x = alloc_sock_iocb(iocb, ubuf, count, &siocb);
779 if (!x)
780 return -ENOMEM;
781 return do_sock_read(&x->async_msg, iocb, iocb->ki_filp,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700782 &x->async_iov, 1);
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800783}
784
785static ssize_t do_sock_write(struct msghdr *msg, struct kiocb *iocb,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700786 struct file *file, struct iovec *iov,
787 unsigned long nr_segs)
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800788{
789 struct socket *sock = file->private_data;
790 size_t size = 0;
791 int i;
792
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700793 for (i = 0; i < nr_segs; i++)
794 size += iov[i].iov_len;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800795
796 msg->msg_name = NULL;
797 msg->msg_namelen = 0;
798 msg->msg_control = NULL;
799 msg->msg_controllen = 0;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700800 msg->msg_iov = (struct iovec *)iov;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800801 msg->msg_iovlen = nr_segs;
802 msg->msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
803 if (sock->type == SOCK_SEQPACKET)
804 msg->msg_flags |= MSG_EOR;
805
806 return __sock_sendmsg(iocb, sock, msg, size);
807}
808
809static ssize_t sock_writev(struct file *file, const struct iovec *iov,
810 unsigned long nr_segs, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
812 struct msghdr msg;
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800813 struct kiocb iocb;
814 struct sock_iocb siocb;
815 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800817 init_sync_kiocb(&iocb, NULL);
818 iocb.private = &siocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800820 ret = do_sock_write(&msg, &iocb, file, (struct iovec *)iov, nr_segs);
821 if (-EIOCBQUEUED == ret)
822 ret = wait_on_sync_kiocb(&iocb);
823 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800826static ssize_t sock_aio_write(struct kiocb *iocb, const char __user *ubuf,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700827 size_t count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Christoph Hellwigce1d4d32005-12-22 21:08:46 -0800829 struct sock_iocb siocb, *x;
830
831 if (pos != 0)
832 return -ESPIPE;
833 if (count == 0) /* Match SYS5 behaviour */
834 return 0;
835
836 x = alloc_sock_iocb(iocb, (void __user *)ubuf, count, &siocb);
837 if (!x)
838 return -ENOMEM;
839
840 return do_sock_write(&x->async_msg, iocb, iocb->ki_filp,
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700841 &x->async_iov, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844/*
845 * Atomic setting of ioctl hooks to avoid race
846 * with module unload.
847 */
848
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800849static DEFINE_MUTEX(br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700850static int (*br_ioctl_hook) (unsigned int cmd, void __user *arg) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700852void brioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800854 mutex_lock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 br_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800856 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859EXPORT_SYMBOL(brioctl_set);
860
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800861static DEFINE_MUTEX(vlan_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700862static int (*vlan_ioctl_hook) (void __user *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700864void vlan_ioctl_set(int (*hook) (void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800866 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 vlan_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800868 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871EXPORT_SYMBOL(vlan_ioctl_set);
872
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800873static DEFINE_MUTEX(dlci_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700874static int (*dlci_ioctl_hook) (unsigned int, void __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700876void dlci_ioctl_set(int (*hook) (unsigned int, void __user *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800878 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 dlci_ioctl_hook = hook;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800880 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883EXPORT_SYMBOL(dlci_ioctl_set);
884
885/*
886 * With an ioctl, arg may well be a user mode pointer, but we don't know
887 * what to do with it - that's up to the protocol still.
888 */
889
890static long sock_ioctl(struct file *file, unsigned cmd, unsigned long arg)
891{
892 struct socket *sock;
893 void __user *argp = (void __user *)arg;
894 int pid, err;
895
Eric Dumazetb69aee02005-09-06 14:42:45 -0700896 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
898 err = dev_ioctl(cmd, argp);
899 } else
Adrian Bunkd86b5e02006-01-21 00:46:55 +0100900#ifdef CONFIG_WIRELESS_EXT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) {
902 err = dev_ioctl(cmd, argp);
903 } else
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700904#endif /* CONFIG_WIRELESS_EXT */
905 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 case FIOSETOWN:
907 case SIOCSPGRP:
908 err = -EFAULT;
909 if (get_user(pid, (int __user *)argp))
910 break;
911 err = f_setown(sock->file, pid, 1);
912 break;
913 case FIOGETOWN:
914 case SIOCGPGRP:
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700915 err = put_user(sock->file->f_owner.pid,
916 (int __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 break;
918 case SIOCGIFBR:
919 case SIOCSIFBR:
920 case SIOCBRADDBR:
921 case SIOCBRDELBR:
922 err = -ENOPKG;
923 if (!br_ioctl_hook)
924 request_module("bridge");
925
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800926 mutex_lock(&br_ioctl_mutex);
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700927 if (br_ioctl_hook)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 err = br_ioctl_hook(cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800929 mutex_unlock(&br_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 break;
931 case SIOCGIFVLAN:
932 case SIOCSIFVLAN:
933 err = -ENOPKG;
934 if (!vlan_ioctl_hook)
935 request_module("8021q");
936
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800937 mutex_lock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 if (vlan_ioctl_hook)
939 err = vlan_ioctl_hook(argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800940 mutex_unlock(&vlan_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 break;
942 case SIOCGIFDIVERT:
943 case SIOCSIFDIVERT:
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700944 /* Convert this to call through a hook */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 err = divert_ioctl(cmd, argp);
946 break;
947 case SIOCADDDLCI:
948 case SIOCDELDLCI:
949 err = -ENOPKG;
950 if (!dlci_ioctl_hook)
951 request_module("dlci");
952
953 if (dlci_ioctl_hook) {
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800954 mutex_lock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 err = dlci_ioctl_hook(cmd, argp);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800956 mutex_unlock(&dlci_ioctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 }
958 break;
959 default:
960 err = sock->ops->ioctl(sock, cmd, arg);
Christoph Hellwigb5e5fa52006-01-03 14:18:33 -0800961
962 /*
963 * If this ioctl is unknown try to hand it down
964 * to the NIC driver.
965 */
966 if (err == -ENOIOCTLCMD)
967 err = dev_ioctl(cmd, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 break;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 return err;
971}
972
973int sock_create_lite(int family, int type, int protocol, struct socket **res)
974{
975 int err;
976 struct socket *sock = NULL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -0700977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 err = security_socket_create(family, type, protocol, 1);
979 if (err)
980 goto out;
981
982 sock = sock_alloc();
983 if (!sock) {
984 err = -ENOMEM;
985 goto out;
986 }
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 sock->type = type;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -0700989 err = security_socket_post_create(sock, family, type, protocol, 1);
990 if (err)
991 goto out_release;
992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993out:
994 *res = sock;
995 return err;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -0700996out_release:
997 sock_release(sock);
998 sock = NULL;
999 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
1002/* No kernel lock held - perfect */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001003static unsigned int sock_poll(struct file *file, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
1005 struct socket *sock;
1006
1007 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001008 * We can't return errors to poll, so it's either yes or no.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 */
Eric Dumazetb69aee02005-09-06 14:42:45 -07001010 sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return sock->ops->poll(file, sock, wait);
1012}
1013
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001014static int sock_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
Eric Dumazetb69aee02005-09-06 14:42:45 -07001016 struct socket *sock = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 return sock->ops->mmap(file, sock, vma);
1019}
1020
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001021static int sock_close(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
1023 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001024 * It was possible the inode is NULL we were
1025 * closing an unfinished socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 */
1027
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001028 if (!inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 printk(KERN_DEBUG "sock_close: NULL inode\n");
1030 return 0;
1031 }
1032 sock_fasync(-1, filp, 0);
1033 sock_release(SOCKET_I(inode));
1034 return 0;
1035}
1036
1037/*
1038 * Update the socket async list
1039 *
1040 * Fasync_list locking strategy.
1041 *
1042 * 1. fasync_list is modified only under process context socket lock
1043 * i.e. under semaphore.
1044 * 2. fasync_list is used under read_lock(&sk->sk_callback_lock)
1045 * or under socket lock.
1046 * 3. fasync_list can be used from softirq context, so that
1047 * modification under socket lock have to be enhanced with
1048 * write_lock_bh(&sk->sk_callback_lock).
1049 * --ANK (990710)
1050 */
1051
1052static int sock_fasync(int fd, struct file *filp, int on)
1053{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001054 struct fasync_struct *fa, *fna = NULL, **prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 struct socket *sock;
1056 struct sock *sk;
1057
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001058 if (on) {
Kris Katterjohn8b3a7002006-01-11 15:56:43 -08001059 fna = kmalloc(sizeof(struct fasync_struct), GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001060 if (fna == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 return -ENOMEM;
1062 }
1063
Eric Dumazetb69aee02005-09-06 14:42:45 -07001064 sock = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001066 sk = sock->sk;
1067 if (sk == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 kfree(fna);
1069 return -EINVAL;
1070 }
1071
1072 lock_sock(sk);
1073
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001074 prev = &(sock->fasync_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001076 for (fa = *prev; fa != NULL; prev = &fa->fa_next, fa = *prev)
1077 if (fa->fa_file == filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 break;
1079
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001080 if (on) {
1081 if (fa != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001083 fa->fa_fd = fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 write_unlock_bh(&sk->sk_callback_lock);
1085
1086 kfree(fna);
1087 goto out;
1088 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001089 fna->fa_file = filp;
1090 fna->fa_fd = fd;
1091 fna->magic = FASYNC_MAGIC;
1092 fna->fa_next = sock->fasync_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001094 sock->fasync_list = fna;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 write_unlock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001096 } else {
1097 if (fa != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 write_lock_bh(&sk->sk_callback_lock);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001099 *prev = fa->fa_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 write_unlock_bh(&sk->sk_callback_lock);
1101 kfree(fa);
1102 }
1103 }
1104
1105out:
1106 release_sock(sock->sk);
1107 return 0;
1108}
1109
1110/* This function may be called only under socket lock or callback_lock */
1111
1112int sock_wake_async(struct socket *sock, int how, int band)
1113{
1114 if (!sock || !sock->fasync_list)
1115 return -1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001116 switch (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 case 1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
1120 break;
1121 goto call_kill;
1122 case 2:
1123 if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
1124 break;
1125 /* fall through */
1126 case 0:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001127call_kill:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 __kill_fasync(sock->fasync_list, SIGIO, band);
1129 break;
1130 case 3:
1131 __kill_fasync(sock->fasync_list, SIGURG, band);
1132 }
1133 return 0;
1134}
1135
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001136static int __sock_create(int family, int type, int protocol,
1137 struct socket **res, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
1139 int err;
1140 struct socket *sock;
1141
1142 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001143 * Check protocol is in range
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 */
1145 if (family < 0 || family >= NPROTO)
1146 return -EAFNOSUPPORT;
1147 if (type < 0 || type >= SOCK_MAX)
1148 return -EINVAL;
1149
1150 /* Compatibility.
1151
1152 This uglymoron is moved from INET layer to here to avoid
1153 deadlock in module load.
1154 */
1155 if (family == PF_INET && type == SOCK_PACKET) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001156 static int warned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if (!warned) {
1158 warned = 1;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001159 printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)\n",
1160 current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162 family = PF_PACKET;
1163 }
1164
1165 err = security_socket_create(family, type, protocol, kern);
1166 if (err)
1167 return err;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169#if defined(CONFIG_KMOD)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001170 /* Attempt to load a protocol module if the find failed.
1171 *
1172 * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 * requested real, full-featured networking support upon configuration.
1174 * Otherwise module support will break!
1175 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001176 if (net_families[family] == NULL) {
1177 request_module("net-pf-%d", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
1179#endif
1180
1181 net_family_read_lock();
1182 if (net_families[family] == NULL) {
1183 err = -EAFNOSUPPORT;
1184 goto out;
1185 }
1186
1187/*
1188 * Allocate the socket and allow the family to set things up. if
1189 * the protocol is 0, the family is instructed to select an appropriate
1190 * default.
1191 */
1192
1193 if (!(sock = sock_alloc())) {
Akinobu Mita5991c842006-08-31 15:21:50 -07001194 if (net_ratelimit())
1195 printk(KERN_WARNING "socket: no more sockets\n");
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001196 err = -ENFILE; /* Not exactly a match, but its the
1197 closest posix thing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 goto out;
1199 }
1200
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001201 sock->type = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 /*
1204 * We will call the ->create function, that possibly is in a loadable
1205 * module, so we have to bump that loadable module refcnt first.
1206 */
1207 err = -EAFNOSUPPORT;
1208 if (!try_module_get(net_families[family]->owner))
1209 goto out_release;
1210
Frank Filza79af592005-09-27 15:23:38 -07001211 if ((err = net_families[family]->create(sock, protocol)) < 0) {
1212 sock->ops = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 goto out_module_put;
Frank Filza79af592005-09-27 15:23:38 -07001214 }
1215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 /*
1217 * Now to bump the refcnt of the [loadable] module that owns this
1218 * socket at sock_release time we decrement its refcnt.
1219 */
1220 if (!try_module_get(sock->ops->owner)) {
1221 sock->ops = NULL;
1222 goto out_module_put;
1223 }
1224 /*
1225 * Now that we're done with the ->create function, the [loadable]
1226 * module can have its refcnt decremented
1227 */
1228 module_put(net_families[family]->owner);
1229 *res = sock;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001230 err = security_socket_post_create(sock, family, type, protocol, kern);
1231 if (err)
1232 goto out_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234out:
1235 net_family_read_unlock();
1236 return err;
1237out_module_put:
1238 module_put(net_families[family]->owner);
1239out_release:
1240 sock_release(sock);
1241 goto out;
1242}
1243
1244int sock_create(int family, int type, int protocol, struct socket **res)
1245{
1246 return __sock_create(family, type, protocol, res, 0);
1247}
1248
1249int sock_create_kern(int family, int type, int protocol, struct socket **res)
1250{
1251 return __sock_create(family, type, protocol, res, 1);
1252}
1253
1254asmlinkage long sys_socket(int family, int type, int protocol)
1255{
1256 int retval;
1257 struct socket *sock;
1258
1259 retval = sock_create(family, type, protocol, &sock);
1260 if (retval < 0)
1261 goto out;
1262
1263 retval = sock_map_fd(sock);
1264 if (retval < 0)
1265 goto out_release;
1266
1267out:
1268 /* It may be already another descriptor 8) Not kernel problem. */
1269 return retval;
1270
1271out_release:
1272 sock_release(sock);
1273 return retval;
1274}
1275
1276/*
1277 * Create a pair of connected sockets.
1278 */
1279
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001280asmlinkage long sys_socketpair(int family, int type, int protocol,
1281 int __user *usockvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
1283 struct socket *sock1, *sock2;
1284 int fd1, fd2, err;
1285
1286 /*
1287 * Obtain the first socket and check if the underlying protocol
1288 * supports the socketpair call.
1289 */
1290
1291 err = sock_create(family, type, protocol, &sock1);
1292 if (err < 0)
1293 goto out;
1294
1295 err = sock_create(family, type, protocol, &sock2);
1296 if (err < 0)
1297 goto out_release_1;
1298
1299 err = sock1->ops->socketpair(sock1, sock2);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001300 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 goto out_release_both;
1302
1303 fd1 = fd2 = -1;
1304
1305 err = sock_map_fd(sock1);
1306 if (err < 0)
1307 goto out_release_both;
1308 fd1 = err;
1309
1310 err = sock_map_fd(sock2);
1311 if (err < 0)
1312 goto out_close_1;
1313 fd2 = err;
1314
1315 /* fd1 and fd2 may be already another descriptors.
1316 * Not kernel problem.
1317 */
1318
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001319 err = put_user(fd1, &usockvec[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 if (!err)
1321 err = put_user(fd2, &usockvec[1]);
1322 if (!err)
1323 return 0;
1324
1325 sys_close(fd2);
1326 sys_close(fd1);
1327 return err;
1328
1329out_close_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001330 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 sys_close(fd1);
1332 return err;
1333
1334out_release_both:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001335 sock_release(sock2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336out_release_1:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001337 sock_release(sock1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338out:
1339 return err;
1340}
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342/*
1343 * Bind a name to a socket. Nothing much to do here since it's
1344 * the protocol's responsibility to handle the local address.
1345 *
1346 * We move the socket address to kernel space before we call
1347 * the protocol layer (having also checked the address is ok).
1348 */
1349
1350asmlinkage long sys_bind(int fd, struct sockaddr __user *umyaddr, int addrlen)
1351{
1352 struct socket *sock;
1353 char address[MAX_SOCK_ADDR];
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001354 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001356 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1357 if(sock) {
1358 err = move_addr_to_kernel(umyaddr, addrlen, address);
1359 if (err >= 0) {
1360 err = security_socket_bind(sock,
1361 (struct sockaddr *)address,
1362 addrlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001363 if (!err)
1364 err = sock->ops->bind(sock,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001365 (struct sockaddr *)
1366 address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001368 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return err;
1371}
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373/*
1374 * Perform a listen. Basically, we allow the protocol to do anything
1375 * necessary for a listen, and if that works, we mark the socket as
1376 * ready for listening.
1377 */
1378
1379int sysctl_somaxconn = SOMAXCONN;
1380
1381asmlinkage long sys_listen(int fd, int backlog)
1382{
1383 struct socket *sock;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001384 int err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001385
1386 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1387 if (sock) {
1388 if ((unsigned)backlog > sysctl_somaxconn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 backlog = sysctl_somaxconn;
1390
1391 err = security_socket_listen(sock, backlog);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001392 if (!err)
1393 err = sock->ops->listen(sock, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001395 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397 return err;
1398}
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400/*
1401 * For accept, we attempt to create a new socket, set up the link
1402 * with the client, wake up the client, then return the new
1403 * connected fd. We collect the address of the connector in kernel
1404 * space and move it to user at the very end. This is unclean because
1405 * we open the socket then return an error.
1406 *
1407 * 1003.1g adds the ability to recvmsg() to query connection pending
1408 * status to recvmsg. We need to add that support in a way thats
1409 * clean when we restucture accept also.
1410 */
1411
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001412asmlinkage long sys_accept(int fd, struct sockaddr __user *upeer_sockaddr,
1413 int __user *upeer_addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
1415 struct socket *sock, *newsock;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001416 struct file *newfile;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001417 int err, len, newfd, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 char address[MAX_SOCK_ADDR];
1419
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001420 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 if (!sock)
1422 goto out;
1423
1424 err = -ENFILE;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001425 if (!(newsock = sock_alloc()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 goto out_put;
1427
1428 newsock->type = sock->type;
1429 newsock->ops = sock->ops;
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 /*
1432 * We don't need try_module_get here, as the listening socket (sock)
1433 * has the protocol module (sock->ops->owner) held.
1434 */
1435 __module_get(newsock->ops->owner);
1436
David S. Miller39d8c1b2006-03-20 17:13:49 -08001437 newfd = sock_alloc_fd(&newfile);
1438 if (unlikely(newfd < 0)) {
1439 err = newfd;
David S. Miller9a1875e2006-04-01 12:48:36 -08001440 sock_release(newsock);
1441 goto out_put;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001442 }
1443
1444 err = sock_attach_fd(newsock, newfile);
1445 if (err < 0)
1446 goto out_fd;
1447
Frank Filza79af592005-09-27 15:23:38 -07001448 err = security_socket_accept(sock, newsock);
1449 if (err)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001450 goto out_fd;
Frank Filza79af592005-09-27 15:23:38 -07001451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 err = sock->ops->accept(sock, newsock, sock->file->f_flags);
1453 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001454 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 if (upeer_sockaddr) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001457 if (newsock->ops->getname(newsock, (struct sockaddr *)address,
1458 &len, 2) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 err = -ECONNABORTED;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001460 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001462 err = move_addr_to_user(address, len, upeer_sockaddr,
1463 upeer_addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (err < 0)
David S. Miller39d8c1b2006-03-20 17:13:49 -08001465 goto out_fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
1467
1468 /* File flags are not inherited via accept() unlike another OSes. */
1469
David S. Miller39d8c1b2006-03-20 17:13:49 -08001470 fd_install(newfd, newfile);
1471 err = newfd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 security_socket_post_accept(sock, newsock);
1474
1475out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001476 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477out:
1478 return err;
David S. Miller39d8c1b2006-03-20 17:13:49 -08001479out_fd:
David S. Miller9606a212006-04-01 01:00:14 -08001480 fput(newfile);
David S. Miller39d8c1b2006-03-20 17:13:49 -08001481 put_unused_fd(newfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 goto out_put;
1483}
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485/*
1486 * Attempt to connect to a socket with the server address. The address
1487 * is in user space so we verify it is OK and move it to kernel space.
1488 *
1489 * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
1490 * break bindings
1491 *
1492 * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
1493 * other SEQPACKET protocols that take time to connect() as it doesn't
1494 * include the -EINPROGRESS status for such sockets.
1495 */
1496
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001497asmlinkage long sys_connect(int fd, struct sockaddr __user *uservaddr,
1498 int addrlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
1500 struct socket *sock;
1501 char address[MAX_SOCK_ADDR];
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001502 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001504 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 if (!sock)
1506 goto out;
1507 err = move_addr_to_kernel(uservaddr, addrlen, address);
1508 if (err < 0)
1509 goto out_put;
1510
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001511 err =
1512 security_socket_connect(sock, (struct sockaddr *)address, addrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if (err)
1514 goto out_put;
1515
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001516 err = sock->ops->connect(sock, (struct sockaddr *)address, addrlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 sock->file->f_flags);
1518out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001519 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520out:
1521 return err;
1522}
1523
1524/*
1525 * Get the local address ('name') of a socket object. Move the obtained
1526 * name to user space.
1527 */
1528
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001529asmlinkage long sys_getsockname(int fd, struct sockaddr __user *usockaddr,
1530 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
1532 struct socket *sock;
1533 char address[MAX_SOCK_ADDR];
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001534 int len, err, fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001535
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001536 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 if (!sock)
1538 goto out;
1539
1540 err = security_socket_getsockname(sock);
1541 if (err)
1542 goto out_put;
1543
1544 err = sock->ops->getname(sock, (struct sockaddr *)address, &len, 0);
1545 if (err)
1546 goto out_put;
1547 err = move_addr_to_user(address, len, usockaddr, usockaddr_len);
1548
1549out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001550 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551out:
1552 return err;
1553}
1554
1555/*
1556 * Get the remote address ('name') of a socket object. Move the obtained
1557 * name to user space.
1558 */
1559
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001560asmlinkage long sys_getpeername(int fd, struct sockaddr __user *usockaddr,
1561 int __user *usockaddr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
1563 struct socket *sock;
1564 char address[MAX_SOCK_ADDR];
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001565 int len, err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001567 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1568 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 err = security_socket_getpeername(sock);
1570 if (err) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001571 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 return err;
1573 }
1574
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001575 err =
1576 sock->ops->getname(sock, (struct sockaddr *)address, &len,
1577 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 if (!err)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001579 err = move_addr_to_user(address, len, usockaddr,
1580 usockaddr_len);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001581 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 }
1583 return err;
1584}
1585
1586/*
1587 * Send a datagram to a given address. We move the address into kernel
1588 * space and check the user space data area is readable before invoking
1589 * the protocol.
1590 */
1591
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001592asmlinkage long sys_sendto(int fd, void __user *buff, size_t len,
1593 unsigned flags, struct sockaddr __user *addr,
1594 int addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
1596 struct socket *sock;
1597 char address[MAX_SOCK_ADDR];
1598 int err;
1599 struct msghdr msg;
1600 struct iovec iov;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001601 int fput_needed;
1602 struct file *sock_file;
1603
1604 sock_file = fget_light(fd, &fput_needed);
1605 if (!sock_file)
1606 return -EBADF;
1607
1608 sock = sock_from_file(sock_file, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if (!sock)
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001610 goto out_put;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001611 iov.iov_base = buff;
1612 iov.iov_len = len;
1613 msg.msg_name = NULL;
1614 msg.msg_iov = &iov;
1615 msg.msg_iovlen = 1;
1616 msg.msg_control = NULL;
1617 msg.msg_controllen = 0;
1618 msg.msg_namelen = 0;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001619 if (addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 err = move_addr_to_kernel(addr, addr_len, address);
1621 if (err < 0)
1622 goto out_put;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001623 msg.msg_name = address;
1624 msg.msg_namelen = addr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 }
1626 if (sock->file->f_flags & O_NONBLOCK)
1627 flags |= MSG_DONTWAIT;
1628 msg.msg_flags = flags;
1629 err = sock_sendmsg(sock, &msg, len);
1630
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001631out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001632 fput_light(sock_file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 return err;
1634}
1635
1636/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001637 * Send a datagram down a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 */
1639
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001640asmlinkage long sys_send(int fd, void __user *buff, size_t len, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641{
1642 return sys_sendto(fd, buff, len, flags, NULL, 0);
1643}
1644
1645/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001646 * Receive a frame from the socket and optionally record the address of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 * sender. We verify the buffers are writable and if needed move the
1648 * sender address from kernel to user space.
1649 */
1650
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001651asmlinkage long sys_recvfrom(int fd, void __user *ubuf, size_t size,
1652 unsigned flags, struct sockaddr __user *addr,
1653 int __user *addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654{
1655 struct socket *sock;
1656 struct iovec iov;
1657 struct msghdr msg;
1658 char address[MAX_SOCK_ADDR];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001659 int err, err2;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001660 struct file *sock_file;
1661 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001663 sock_file = fget_light(fd, &fput_needed);
1664 if (!sock_file)
1665 return -EBADF;
1666
1667 sock = sock_from_file(sock_file, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 if (!sock)
1669 goto out;
1670
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001671 msg.msg_control = NULL;
1672 msg.msg_controllen = 0;
1673 msg.msg_iovlen = 1;
1674 msg.msg_iov = &iov;
1675 iov.iov_len = size;
1676 iov.iov_base = ubuf;
1677 msg.msg_name = address;
1678 msg.msg_namelen = MAX_SOCK_ADDR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 if (sock->file->f_flags & O_NONBLOCK)
1680 flags |= MSG_DONTWAIT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001681 err = sock_recvmsg(sock, &msg, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001683 if (err >= 0 && addr != NULL) {
1684 err2 = move_addr_to_user(address, msg.msg_namelen, addr, addr_len);
1685 if (err2 < 0)
1686 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688out:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001689 fput_light(sock_file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return err;
1691}
1692
1693/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001694 * Receive a datagram from a socket.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 */
1696
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001697asmlinkage long sys_recv(int fd, void __user *ubuf, size_t size,
1698 unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
1700 return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
1701}
1702
1703/*
1704 * Set a socket option. Because we don't know the option lengths we have
1705 * to pass the user mode parameter for the protocols to sort out.
1706 */
1707
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001708asmlinkage long sys_setsockopt(int fd, int level, int optname,
1709 char __user *optval, int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001711 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 struct socket *sock;
1713
1714 if (optlen < 0)
1715 return -EINVAL;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001716
1717 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1718 if (sock != NULL) {
1719 err = security_socket_setsockopt(sock, level, optname);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001720 if (err)
1721 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001724 err =
1725 sock_setsockopt(sock, level, optname, optval,
1726 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001728 err =
1729 sock->ops->setsockopt(sock, level, optname, optval,
1730 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001731out_put:
1732 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
1734 return err;
1735}
1736
1737/*
1738 * Get a socket option. Because we don't know the option lengths we have
1739 * to pass a user mode parameter for the protocols to sort out.
1740 */
1741
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001742asmlinkage long sys_getsockopt(int fd, int level, int optname,
1743 char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001745 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 struct socket *sock;
1747
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001748 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1749 if (sock != NULL) {
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001750 err = security_socket_getsockopt(sock, level, optname);
1751 if (err)
1752 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
1754 if (level == SOL_SOCKET)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001755 err =
1756 sock_getsockopt(sock, level, optname, optval,
1757 optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001759 err =
1760 sock->ops->getsockopt(sock, level, optname, optval,
1761 optlen);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001762out_put:
1763 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
1765 return err;
1766}
1767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768/*
1769 * Shutdown a socket.
1770 */
1771
1772asmlinkage long sys_shutdown(int fd, int how)
1773{
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001774 int err, fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 struct socket *sock;
1776
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001777 sock = sockfd_lookup_light(fd, &err, &fput_needed);
1778 if (sock != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 err = security_socket_shutdown(sock, how);
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001780 if (!err)
1781 err = sock->ops->shutdown(sock, how);
1782 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
1784 return err;
1785}
1786
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001787/* A couple of helpful macros for getting the address of the 32/64 bit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 * fields which are the same type (int / unsigned) on our platforms.
1789 */
1790#define COMPAT_MSG(msg, member) ((MSG_CMSG_COMPAT & flags) ? &msg##_compat->member : &msg->member)
1791#define COMPAT_NAMELEN(msg) COMPAT_MSG(msg, msg_namelen)
1792#define COMPAT_FLAGS(msg) COMPAT_MSG(msg, msg_flags)
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794/*
1795 * BSD sendmsg interface
1796 */
1797
1798asmlinkage long sys_sendmsg(int fd, struct msghdr __user *msg, unsigned flags)
1799{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001800 struct compat_msghdr __user *msg_compat =
1801 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 struct socket *sock;
1803 char address[MAX_SOCK_ADDR];
1804 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
Alex Williamsonb9d717a2005-09-26 14:28:02 -07001805 unsigned char ctl[sizeof(struct cmsghdr) + 20]
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001806 __attribute__ ((aligned(sizeof(__kernel_size_t))));
1807 /* 20 is size of ipv6_pktinfo */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 unsigned char *ctl_buf = ctl;
1809 struct msghdr msg_sys;
1810 int err, ctl_len, iov_size, total_len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001811 int fput_needed;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 err = -EFAULT;
1814 if (MSG_CMSG_COMPAT & flags) {
1815 if (get_compat_msghdr(&msg_sys, msg_compat))
1816 return -EFAULT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001817 }
1818 else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return -EFAULT;
1820
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001821 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001822 if (!sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 goto out;
1824
1825 /* do not move before msg_sys is valid */
1826 err = -EMSGSIZE;
1827 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1828 goto out_put;
1829
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001830 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 err = -ENOMEM;
1832 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1833 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1834 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1835 if (!iov)
1836 goto out_put;
1837 }
1838
1839 /* This will also move the address data into kernel space */
1840 if (MSG_CMSG_COMPAT & flags) {
1841 err = verify_compat_iovec(&msg_sys, iov, address, VERIFY_READ);
1842 } else
1843 err = verify_iovec(&msg_sys, iov, address, VERIFY_READ);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001844 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 goto out_freeiov;
1846 total_len = err;
1847
1848 err = -ENOBUFS;
1849
1850 if (msg_sys.msg_controllen > INT_MAX)
1851 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001852 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001854 err =
1855 cmsghdr_from_user_compat_to_kern(&msg_sys, sock->sk, ctl,
1856 sizeof(ctl));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 if (err)
1858 goto out_freeiov;
1859 ctl_buf = msg_sys.msg_control;
Al Viro8920e8f2005-09-07 18:28:51 -07001860 ctl_len = msg_sys.msg_controllen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 } else if (ctl_len) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001862 if (ctl_len > sizeof(ctl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001864 if (ctl_buf == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 goto out_freeiov;
1866 }
1867 err = -EFAULT;
1868 /*
1869 * Careful! Before this, msg_sys.msg_control contains a user pointer.
1870 * Afterwards, it will be a kernel pointer. Thus the compiler-assisted
1871 * checking falls down on this.
1872 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001873 if (copy_from_user(ctl_buf, (void __user *)msg_sys.msg_control,
1874 ctl_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 goto out_freectl;
1876 msg_sys.msg_control = ctl_buf;
1877 }
1878 msg_sys.msg_flags = flags;
1879
1880 if (sock->file->f_flags & O_NONBLOCK)
1881 msg_sys.msg_flags |= MSG_DONTWAIT;
1882 err = sock_sendmsg(sock, &msg_sys, total_len);
1883
1884out_freectl:
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001885 if (ctl_buf != ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 sock_kfree_s(sock->sk, ctl_buf, ctl_len);
1887out_freeiov:
1888 if (iov != iovstack)
1889 sock_kfree_s(sock->sk, iov, iov_size);
1890out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001891 fput_light(sock->file, fput_needed);
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001892out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 return err;
1894}
1895
1896/*
1897 * BSD recvmsg interface
1898 */
1899
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001900asmlinkage long sys_recvmsg(int fd, struct msghdr __user *msg,
1901 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902{
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001903 struct compat_msghdr __user *msg_compat =
1904 (struct compat_msghdr __user *)msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 struct socket *sock;
1906 struct iovec iovstack[UIO_FASTIOV];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001907 struct iovec *iov = iovstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 struct msghdr msg_sys;
1909 unsigned long cmsg_ptr;
1910 int err, iov_size, total_len, len;
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001911 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913 /* kernel mode address */
1914 char addr[MAX_SOCK_ADDR];
1915
1916 /* user mode address pointers */
1917 struct sockaddr __user *uaddr;
1918 int __user *uaddr_len;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if (MSG_CMSG_COMPAT & flags) {
1921 if (get_compat_msghdr(&msg_sys, msg_compat))
1922 return -EFAULT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001923 }
1924 else if (copy_from_user(&msg_sys, msg, sizeof(struct msghdr)))
1925 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001927 sock = sockfd_lookup_light(fd, &err, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 if (!sock)
1929 goto out;
1930
1931 err = -EMSGSIZE;
1932 if (msg_sys.msg_iovlen > UIO_MAXIOV)
1933 goto out_put;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001934
1935 /* Check whether to allocate the iovec area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 err = -ENOMEM;
1937 iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
1938 if (msg_sys.msg_iovlen > UIO_FASTIOV) {
1939 iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
1940 if (!iov)
1941 goto out_put;
1942 }
1943
1944 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001945 * Save the user-mode address (verify_iovec will change the
1946 * kernel msghdr to use the kernel address space)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001948
1949 uaddr = (void __user *)msg_sys.msg_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 uaddr_len = COMPAT_NAMELEN(msg);
1951 if (MSG_CMSG_COMPAT & flags) {
1952 err = verify_compat_iovec(&msg_sys, iov, addr, VERIFY_WRITE);
1953 } else
1954 err = verify_iovec(&msg_sys, iov, addr, VERIFY_WRITE);
1955 if (err < 0)
1956 goto out_freeiov;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001957 total_len = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
1959 cmsg_ptr = (unsigned long)msg_sys.msg_control;
1960 msg_sys.msg_flags = 0;
1961 if (MSG_CMSG_COMPAT & flags)
1962 msg_sys.msg_flags = MSG_CMSG_COMPAT;
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 if (sock->file->f_flags & O_NONBLOCK)
1965 flags |= MSG_DONTWAIT;
1966 err = sock_recvmsg(sock, &msg_sys, total_len, flags);
1967 if (err < 0)
1968 goto out_freeiov;
1969 len = err;
1970
1971 if (uaddr != NULL) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001972 err = move_addr_to_user(addr, msg_sys.msg_namelen, uaddr,
1973 uaddr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 if (err < 0)
1975 goto out_freeiov;
1976 }
David S. Miller37f7f422005-09-16 16:51:01 -07001977 err = __put_user((msg_sys.msg_flags & ~MSG_CMSG_COMPAT),
1978 COMPAT_FLAGS(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 if (err)
1980 goto out_freeiov;
1981 if (MSG_CMSG_COMPAT & flags)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001982 err = __put_user((unsigned long)msg_sys.msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 &msg_compat->msg_controllen);
1984 else
Stephen Hemminger89bddce2006-09-01 00:19:31 -07001985 err = __put_user((unsigned long)msg_sys.msg_control - cmsg_ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 &msg->msg_controllen);
1987 if (err)
1988 goto out_freeiov;
1989 err = len;
1990
1991out_freeiov:
1992 if (iov != iovstack)
1993 sock_kfree_s(sock->sk, iov, iov_size);
1994out_put:
Benjamin LaHaise6cb153c2006-03-20 22:27:12 -08001995 fput_light(sock->file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996out:
1997 return err;
1998}
1999
2000#ifdef __ARCH_WANT_SYS_SOCKETCALL
2001
2002/* Argument list sizes for sys_socketcall */
2003#define AL(x) ((x) * sizeof(unsigned long))
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002004static const unsigned char nargs[18]={
2005 AL(0),AL(3),AL(3),AL(3),AL(2),AL(3),
2006 AL(3),AL(3),AL(4),AL(4),AL(4),AL(6),
2007 AL(6),AL(2),AL(5),AL(5),AL(3),AL(3)
2008};
2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010#undef AL
2011
2012/*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002013 * System call vectors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 *
2015 * Argument checking cleaned up. Saved 20% in size.
2016 * This function doesn't need to set the kernel lock because
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002017 * it is set by the callees.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 */
2019
2020asmlinkage long sys_socketcall(int call, unsigned long __user *args)
2021{
2022 unsigned long a[6];
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002023 unsigned long a0, a1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 int err;
2025
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002026 if (call < 1 || call > SYS_RECVMSG)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 return -EINVAL;
2028
2029 /* copy_from_user should be SMP safe. */
2030 if (copy_from_user(a, args, nargs[call]))
2031 return -EFAULT;
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002032
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002033 err = audit_socketcall(nargs[call] / sizeof(unsigned long), a);
David Woodhouse3ec3b2f2005-05-17 12:08:48 +01002034 if (err)
2035 return err;
2036
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002037 a0 = a[0];
2038 a1 = a[1];
2039
2040 switch (call) {
2041 case SYS_SOCKET:
2042 err = sys_socket(a0, a1, a[2]);
2043 break;
2044 case SYS_BIND:
2045 err = sys_bind(a0, (struct sockaddr __user *)a1, a[2]);
2046 break;
2047 case SYS_CONNECT:
2048 err = sys_connect(a0, (struct sockaddr __user *)a1, a[2]);
2049 break;
2050 case SYS_LISTEN:
2051 err = sys_listen(a0, a1);
2052 break;
2053 case SYS_ACCEPT:
2054 err =
2055 sys_accept(a0, (struct sockaddr __user *)a1,
2056 (int __user *)a[2]);
2057 break;
2058 case SYS_GETSOCKNAME:
2059 err =
2060 sys_getsockname(a0, (struct sockaddr __user *)a1,
2061 (int __user *)a[2]);
2062 break;
2063 case SYS_GETPEERNAME:
2064 err =
2065 sys_getpeername(a0, (struct sockaddr __user *)a1,
2066 (int __user *)a[2]);
2067 break;
2068 case SYS_SOCKETPAIR:
2069 err = sys_socketpair(a0, a1, a[2], (int __user *)a[3]);
2070 break;
2071 case SYS_SEND:
2072 err = sys_send(a0, (void __user *)a1, a[2], a[3]);
2073 break;
2074 case SYS_SENDTO:
2075 err = sys_sendto(a0, (void __user *)a1, a[2], a[3],
2076 (struct sockaddr __user *)a[4], a[5]);
2077 break;
2078 case SYS_RECV:
2079 err = sys_recv(a0, (void __user *)a1, a[2], a[3]);
2080 break;
2081 case SYS_RECVFROM:
2082 err = sys_recvfrom(a0, (void __user *)a1, a[2], a[3],
2083 (struct sockaddr __user *)a[4],
2084 (int __user *)a[5]);
2085 break;
2086 case SYS_SHUTDOWN:
2087 err = sys_shutdown(a0, a1);
2088 break;
2089 case SYS_SETSOCKOPT:
2090 err = sys_setsockopt(a0, a1, a[2], (char __user *)a[3], a[4]);
2091 break;
2092 case SYS_GETSOCKOPT:
2093 err =
2094 sys_getsockopt(a0, a1, a[2], (char __user *)a[3],
2095 (int __user *)a[4]);
2096 break;
2097 case SYS_SENDMSG:
2098 err = sys_sendmsg(a0, (struct msghdr __user *)a1, a[2]);
2099 break;
2100 case SYS_RECVMSG:
2101 err = sys_recvmsg(a0, (struct msghdr __user *)a1, a[2]);
2102 break;
2103 default:
2104 err = -EINVAL;
2105 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
2107 return err;
2108}
2109
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002110#endif /* __ARCH_WANT_SYS_SOCKETCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
2112/*
2113 * This function is called by a protocol handler that wants to
2114 * advertise its address family, and have it linked into the
2115 * SOCKET module.
2116 */
2117
2118int sock_register(struct net_proto_family *ops)
2119{
2120 int err;
2121
2122 if (ops->family >= NPROTO) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002123 printk(KERN_CRIT "protocol %d >= NPROTO(%d)\n", ops->family,
2124 NPROTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 return -ENOBUFS;
2126 }
2127 net_family_write_lock();
2128 err = -EEXIST;
2129 if (net_families[ops->family] == NULL) {
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002130 net_families[ops->family] = ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 err = 0;
2132 }
2133 net_family_write_unlock();
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002134 printk(KERN_INFO "NET: Registered protocol family %d\n", ops->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 return err;
2136}
2137
2138/*
2139 * This function is called by a protocol handler that wants to
2140 * remove its address family, and have it unlinked from the
2141 * SOCKET module.
2142 */
2143
2144int sock_unregister(int family)
2145{
2146 if (family < 0 || family >= NPROTO)
2147 return -1;
2148
2149 net_family_write_lock();
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002150 net_families[family] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 net_family_write_unlock();
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002152 printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 return 0;
2154}
2155
Andi Kleen77d76ea2005-12-22 12:43:42 -08002156static int __init sock_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157{
2158 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002159 * Initialize sock SLAB cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 */
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002161
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 sk_init();
2163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002165 * Initialize skbuff SLAB cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 */
2167 skb_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
2169 /*
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002170 * Initialize the protocols module.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 */
2172
2173 init_inodecache();
2174 register_filesystem(&sock_fs_type);
2175 sock_mnt = kern_mount(&sock_fs_type);
Andi Kleen77d76ea2005-12-22 12:43:42 -08002176
2177 /* The real protocol initialization is performed in later initcalls.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 */
2179
2180#ifdef CONFIG_NETFILTER
2181 netfilter_init();
2182#endif
David S. Millercbeb3212005-12-22 12:58:55 -08002183
2184 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185}
2186
Andi Kleen77d76ea2005-12-22 12:43:42 -08002187core_initcall(sock_init); /* early initcall */
2188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189#ifdef CONFIG_PROC_FS
2190void socket_seq_show(struct seq_file *seq)
2191{
2192 int cpu;
2193 int counter = 0;
2194
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07002195 for_each_possible_cpu(cpu)
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002196 counter += per_cpu(sockets_in_use, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198 /* It can be negative, by the way. 8) */
2199 if (counter < 0)
2200 counter = 0;
2201
2202 seq_printf(seq, "sockets: used %d\n", counter);
2203}
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002204#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002206#ifdef CONFIG_COMPAT
2207static long compat_sock_ioctl(struct file *file, unsigned cmd,
Stephen Hemminger89bddce2006-09-01 00:19:31 -07002208 unsigned long arg)
Shaun Pereira89bbfc92006-03-21 23:58:08 -08002209{
2210 struct socket *sock = file->private_data;
2211 int ret = -ENOIOCTLCMD;
2212
2213 if (sock->ops->compat_ioctl)
2214 ret = sock->ops->compat_ioctl(sock, cmd, arg);
2215
2216 return ret;
2217}
2218#endif
2219
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002220int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen)
2221{
2222 return sock->ops->bind(sock, addr, addrlen);
2223}
2224
2225int kernel_listen(struct socket *sock, int backlog)
2226{
2227 return sock->ops->listen(sock, backlog);
2228}
2229
2230int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
2231{
2232 struct sock *sk = sock->sk;
2233 int err;
2234
2235 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
2236 newsock);
2237 if (err < 0)
2238 goto done;
2239
2240 err = sock->ops->accept(sock, *newsock, flags);
2241 if (err < 0) {
2242 sock_release(*newsock);
2243 goto done;
2244 }
2245
2246 (*newsock)->ops = sock->ops;
2247
2248done:
2249 return err;
2250}
2251
2252int kernel_connect(struct socket *sock, struct sockaddr *addr, int addrlen,
2253 int flags)
2254{
2255 return sock->ops->connect(sock, addr, addrlen, flags);
2256}
2257
2258int kernel_getsockname(struct socket *sock, struct sockaddr *addr,
2259 int *addrlen)
2260{
2261 return sock->ops->getname(sock, addr, addrlen, 0);
2262}
2263
2264int kernel_getpeername(struct socket *sock, struct sockaddr *addr,
2265 int *addrlen)
2266{
2267 return sock->ops->getname(sock, addr, addrlen, 1);
2268}
2269
2270int kernel_getsockopt(struct socket *sock, int level, int optname,
2271 char *optval, int *optlen)
2272{
2273 mm_segment_t oldfs = get_fs();
2274 int err;
2275
2276 set_fs(KERNEL_DS);
2277 if (level == SOL_SOCKET)
2278 err = sock_getsockopt(sock, level, optname, optval, optlen);
2279 else
2280 err = sock->ops->getsockopt(sock, level, optname, optval,
2281 optlen);
2282 set_fs(oldfs);
2283 return err;
2284}
2285
2286int kernel_setsockopt(struct socket *sock, int level, int optname,
2287 char *optval, int optlen)
2288{
2289 mm_segment_t oldfs = get_fs();
2290 int err;
2291
2292 set_fs(KERNEL_DS);
2293 if (level == SOL_SOCKET)
2294 err = sock_setsockopt(sock, level, optname, optval, optlen);
2295 else
2296 err = sock->ops->setsockopt(sock, level, optname, optval,
2297 optlen);
2298 set_fs(oldfs);
2299 return err;
2300}
2301
2302int kernel_sendpage(struct socket *sock, struct page *page, int offset,
2303 size_t size, int flags)
2304{
2305 if (sock->ops->sendpage)
2306 return sock->ops->sendpage(sock, page, offset, size, flags);
2307
2308 return sock_no_sendpage(sock, page, offset, size, flags);
2309}
2310
2311int kernel_sock_ioctl(struct socket *sock, int cmd, unsigned long arg)
2312{
2313 mm_segment_t oldfs = get_fs();
2314 int err;
2315
2316 set_fs(KERNEL_DS);
2317 err = sock->ops->ioctl(sock, cmd, arg);
2318 set_fs(oldfs);
2319
2320 return err;
2321}
2322
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323/* ABI emulation layers need these two */
2324EXPORT_SYMBOL(move_addr_to_kernel);
2325EXPORT_SYMBOL(move_addr_to_user);
2326EXPORT_SYMBOL(sock_create);
2327EXPORT_SYMBOL(sock_create_kern);
2328EXPORT_SYMBOL(sock_create_lite);
2329EXPORT_SYMBOL(sock_map_fd);
2330EXPORT_SYMBOL(sock_recvmsg);
2331EXPORT_SYMBOL(sock_register);
2332EXPORT_SYMBOL(sock_release);
2333EXPORT_SYMBOL(sock_sendmsg);
2334EXPORT_SYMBOL(sock_unregister);
2335EXPORT_SYMBOL(sock_wake_async);
2336EXPORT_SYMBOL(sockfd_lookup);
2337EXPORT_SYMBOL(kernel_sendmsg);
2338EXPORT_SYMBOL(kernel_recvmsg);
Sridhar Samudralaac5a4882006-08-07 20:57:31 -07002339EXPORT_SYMBOL(kernel_bind);
2340EXPORT_SYMBOL(kernel_listen);
2341EXPORT_SYMBOL(kernel_accept);
2342EXPORT_SYMBOL(kernel_connect);
2343EXPORT_SYMBOL(kernel_getsockname);
2344EXPORT_SYMBOL(kernel_getpeername);
2345EXPORT_SYMBOL(kernel_getsockopt);
2346EXPORT_SYMBOL(kernel_setsockopt);
2347EXPORT_SYMBOL(kernel_sendpage);
2348EXPORT_SYMBOL(kernel_sock_ioctl);