socket.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:39k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * NET An implementation of the SOCKET network access protocol.
  3.  *
  4.  * Version: @(#)socket.c 1.1.93 18/02/95
  5.  *
  6.  * Authors: Orest Zborowski, <obz@Kodak.COM>
  7.  * Ross Biro, <bir7@leland.Stanford.Edu>
  8.  * 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)
  45.  * Tigran Aivazian : Made listen(2) backlog sanity checks 
  46.  * protocol-independent
  47.  *
  48.  *
  49.  * This program is free software; you can redistribute it and/or
  50.  * modify it under the terms of the GNU General Public License
  51.  * as published by the Free Software Foundation; either version
  52.  * 2 of the License, or (at your option) any later version.
  53.  *
  54.  *
  55.  * This module is effectively the top level interface to the BSD socket
  56.  * paradigm. 
  57.  *
  58.  */
  59. #include <linux/config.h>
  60. #include <linux/mm.h>
  61. #include <linux/smp_lock.h>
  62. #include <linux/socket.h>
  63. #include <linux/file.h>
  64. #include <linux/net.h>
  65. #include <linux/interrupt.h>
  66. #include <linux/netdevice.h>
  67. #include <linux/proc_fs.h>
  68. #include <linux/wanrouter.h>
  69. #include <linux/netlink.h>
  70. #include <linux/rtnetlink.h>
  71. #include <linux/init.h>
  72. #include <linux/poll.h>
  73. #include <linux/cache.h>
  74. #include <linux/module.h>
  75. #include <linux/highmem.h>
  76. #if defined(CONFIG_KMOD) && defined(CONFIG_NET)
  77. #include <linux/kmod.h>
  78. #endif
  79. #include <asm/uaccess.h>
  80. #include <net/sock.h>
  81. #include <net/scm.h>
  82. #include <linux/netfilter.h>
  83. static int sock_no_open(struct inode *irrelevant, struct file *dontcare);
  84. static ssize_t sock_read(struct file *file, char *buf,
  85.  size_t size, loff_t *ppos);
  86. static ssize_t sock_write(struct file *file, const char *buf,
  87.   size_t size, loff_t *ppos);
  88. static int sock_mmap(struct file *file, struct vm_area_struct * vma);
  89. static int sock_close(struct inode *inode, struct file *file);
  90. static unsigned int sock_poll(struct file *file,
  91.       struct poll_table_struct *wait);
  92. static int sock_ioctl(struct inode *inode, struct file *file,
  93.       unsigned int cmd, unsigned long arg);
  94. static int sock_fasync(int fd, struct file *filp, int on);
  95. static ssize_t sock_readv(struct file *file, const struct iovec *vector,
  96.   unsigned long count, loff_t *ppos);
  97. static ssize_t sock_writev(struct file *file, const struct iovec *vector,
  98.   unsigned long count, loff_t *ppos);
  99. static ssize_t sock_sendpage(struct file *file, struct page *page,
  100.      int offset, size_t size, loff_t *ppos, int more);
  101. /*
  102.  * Socket files have a set of 'special' operations as well as the generic file ones. These don't appear
  103.  * in the operation structures but are done directly via the socketcall() multiplexor.
  104.  */
  105. static struct file_operations socket_file_ops = {
  106. llseek: no_llseek,
  107. read: sock_read,
  108. write: sock_write,
  109. poll: sock_poll,
  110. ioctl: sock_ioctl,
  111. mmap: sock_mmap,
  112. open: sock_no_open, /* special open code to disallow open via /proc */
  113. release: sock_close,
  114. fasync: sock_fasync,
  115. readv: sock_readv,
  116. writev: sock_writev,
  117. sendpage: sock_sendpage
  118. };
  119. /*
  120.  * The protocol list. Each protocol is registered in here.
  121.  */
  122. static struct net_proto_family *net_families[NPROTO];
  123. #ifdef CONFIG_SMP
  124. static atomic_t net_family_lockct = ATOMIC_INIT(0);
  125. static spinlock_t net_family_lock = SPIN_LOCK_UNLOCKED;
  126. /* The strategy is: modifications net_family vector are short, do not
  127.    sleep and veeery rare, but read access should be free of any exclusive
  128.    locks.
  129.  */
  130. static void net_family_write_lock(void)
  131. {
  132. spin_lock(&net_family_lock);
  133. while (atomic_read(&net_family_lockct) != 0) {
  134. spin_unlock(&net_family_lock);
  135. yield();
  136. spin_lock(&net_family_lock);
  137. }
  138. }
  139. static __inline__ void net_family_write_unlock(void)
  140. {
  141. spin_unlock(&net_family_lock);
  142. }
  143. static __inline__ void net_family_read_lock(void)
  144. {
  145. atomic_inc(&net_family_lockct);
  146. spin_unlock_wait(&net_family_lock);
  147. }
  148. static __inline__ void net_family_read_unlock(void)
  149. {
  150. atomic_dec(&net_family_lockct);
  151. }
  152. #else
  153. #define net_family_write_lock() do { } while(0)
  154. #define net_family_write_unlock() do { } while(0)
  155. #define net_family_read_lock() do { } while(0)
  156. #define net_family_read_unlock() do { } while(0)
  157. #endif
  158. /*
  159.  * Statistics counters of the socket lists
  160.  */
  161. static union {
  162. int counter;
  163. char __pad[SMP_CACHE_BYTES];
  164. } sockets_in_use[NR_CPUS] __cacheline_aligned = {{0}};
  165. /*
  166.  * Support routines. Move socket addresses back and forth across the kernel/user
  167.  * divide and look after the messy bits.
  168.  */
  169. #define MAX_SOCK_ADDR 128 /* 108 for Unix domain - 
  170.    16 for IP, 16 for IPX,
  171.    24 for IPv6,
  172.    about 80 for AX.25 
  173.    must be at least one bigger than
  174.    the AF_UNIX size (see net/unix/af_unix.c
  175.    :unix_mkname()).  
  176.  */
  177.  
  178. /**
  179.  * move_addr_to_kernel - copy a socket address into kernel space
  180.  * @uaddr: Address in user space
  181.  * @kaddr: Address in kernel space
  182.  * @ulen: Length in user space
  183.  *
  184.  * The address is copied into kernel space. If the provided address is
  185.  * too long an error code of -EINVAL is returned. If the copy gives
  186.  * invalid addresses -EFAULT is returned. On a success 0 is returned.
  187.  */
  188. int move_addr_to_kernel(void *uaddr, int ulen, void *kaddr)
  189. {
  190. if(ulen<0||ulen>MAX_SOCK_ADDR)
  191. return -EINVAL;
  192. if(ulen==0)
  193. return 0;
  194. if(copy_from_user(kaddr,uaddr,ulen))
  195. return -EFAULT;
  196. return 0;
  197. }
  198. /**
  199.  * move_addr_to_user - copy an address to user space
  200.  * @kaddr: kernel space address
  201.  * @klen: length of address in kernel
  202.  * @uaddr: user space address
  203.  * @ulen: pointer to user length field
  204.  *
  205.  * The value pointed to by ulen on entry is the buffer length available.
  206.  * This is overwritten with the buffer space used. -EINVAL is returned
  207.  * if an overlong buffer is specified or a negative buffer size. -EFAULT
  208.  * is returned if either the buffer or the length field are not
  209.  * accessible.
  210.  * After copying the data up to the limit the user specifies, the true
  211.  * length of the data is written over the length limit the user
  212.  * specified. Zero is returned for a success.
  213.  */
  214.  
  215. int move_addr_to_user(void *kaddr, int klen, void *uaddr, int *ulen)
  216. {
  217. int err;
  218. int len;
  219. if((err=get_user(len, ulen)))
  220. return err;
  221. if(len>klen)
  222. len=klen;
  223. if(len<0 || len> MAX_SOCK_ADDR)
  224. return -EINVAL;
  225. if(len)
  226. {
  227. if(copy_to_user(uaddr,kaddr,len))
  228. return -EFAULT;
  229. }
  230. /*
  231.  * "fromlen shall refer to the value before truncation.."
  232.  * 1003.1g
  233.  */
  234. return __put_user(klen, ulen);
  235. }
  236. #define SOCKFS_MAGIC 0x534F434B
  237. static int sockfs_statfs(struct super_block *sb, struct statfs *buf)
  238. {
  239. buf->f_type = SOCKFS_MAGIC;
  240. buf->f_bsize = 1024;
  241. buf->f_namelen = 255;
  242. return 0;
  243. }
  244. static struct super_operations sockfs_ops = {
  245. statfs: sockfs_statfs,
  246. };
  247. static struct super_block * sockfs_read_super(struct super_block *sb, void *data, int silent)
  248. {
  249. struct inode *root = new_inode(sb);
  250. if (!root)
  251. return NULL;
  252. root->i_mode = S_IFDIR | S_IRUSR | S_IWUSR;
  253. root->i_uid = root->i_gid = 0;
  254. root->i_atime = root->i_mtime = root->i_ctime = CURRENT_TIME;
  255. sb->s_blocksize = 1024;
  256. sb->s_blocksize_bits = 10;
  257. sb->s_magic = SOCKFS_MAGIC;
  258. sb->s_op = &sockfs_ops;
  259. sb->s_root = d_alloc(NULL, &(const struct qstr) { "socket:", 7, 0 });
  260. if (!sb->s_root) {
  261. iput(root);
  262. return NULL;
  263. }
  264. sb->s_root->d_sb = sb;
  265. sb->s_root->d_parent = sb->s_root;
  266. d_instantiate(sb->s_root, root);
  267. return sb;
  268. }
  269. static struct vfsmount *sock_mnt;
  270. static DECLARE_FSTYPE(sock_fs_type, "sockfs", sockfs_read_super, FS_NOMOUNT);
  271. static int sockfs_delete_dentry(struct dentry *dentry)
  272. {
  273. return 1;
  274. }
  275. static struct dentry_operations sockfs_dentry_operations = {
  276. d_delete: sockfs_delete_dentry,
  277. };
  278. /*
  279.  * Obtains the first available file descriptor and sets it up for use.
  280.  *
  281.  * This functions creates file structure and maps it to fd space
  282.  * of current process. On success it returns file descriptor
  283.  * and file struct implicitly stored in sock->file.
  284.  * Note that another thread may close file descriptor before we return
  285.  * from this function. We use the fact that now we do not refer
  286.  * to socket after mapping. If one day we will need it, this
  287.  * function will inincrement ref. count on file by 1.
  288.  *
  289.  * In any case returned fd MAY BE not valid!
  290.  * This race condition is inavoidable
  291.  * with shared fd spaces, we cannot solve is inside kernel,
  292.  * but we take care of internal coherence yet.
  293.  */
  294. static int sock_map_fd(struct socket *sock)
  295. {
  296. int fd;
  297. struct qstr this;
  298. char name[32];
  299. /*
  300.  * Find a file descriptor suitable for return to the user. 
  301.  */
  302. fd = get_unused_fd();
  303. if (fd >= 0) {
  304. struct file *file = get_empty_filp();
  305. if (!file) {
  306. put_unused_fd(fd);
  307. fd = -ENFILE;
  308. goto out;
  309. }
  310. sprintf(name, "[%lu]", sock->inode->i_ino);
  311. this.name = name;
  312. this.len = strlen(name);
  313. this.hash = sock->inode->i_ino;
  314. file->f_dentry = d_alloc(sock_mnt->mnt_sb->s_root, &this);
  315. if (!file->f_dentry) {
  316. put_filp(file);
  317. put_unused_fd(fd);
  318. fd = -ENOMEM;
  319. goto out;
  320. }
  321. file->f_dentry->d_op = &sockfs_dentry_operations;
  322. d_add(file->f_dentry, sock->inode);
  323. file->f_vfsmnt = mntget(sock_mnt);
  324. sock->file = file;
  325. file->f_op = sock->inode->i_fop = &socket_file_ops;
  326. file->f_mode = 3;
  327. file->f_flags = O_RDWR;
  328. file->f_pos = 0;
  329. fd_install(fd, file);
  330. }
  331. out:
  332. return fd;
  333. }
  334. extern __inline__ struct socket *socki_lookup(struct inode *inode)
  335. {
  336. return &inode->u.socket_i;
  337. }
  338. /**
  339.  * sockfd_lookup -  Go from a file number to its socket slot
  340.  * @fd: file handle
  341.  * @err: pointer to an error code return
  342.  *
  343.  * The file handle passed in is locked and the socket it is bound
  344.  * too is returned. If an error occurs the err pointer is overwritten
  345.  * with a negative errno code and NULL is returned. The function checks
  346.  * for both invalid handles and passing a handle which is not a socket.
  347.  *
  348.  * On a success the socket object pointer is returned.
  349.  */
  350. struct socket *sockfd_lookup(int fd, int *err)
  351. {
  352. struct file *file;
  353. struct inode *inode;
  354. struct socket *sock;
  355. if (!(file = fget(fd)))
  356. {
  357. *err = -EBADF;
  358. return NULL;
  359. }
  360. inode = file->f_dentry->d_inode;
  361. if (!inode->i_sock || !(sock = socki_lookup(inode)))
  362. {
  363. *err = -ENOTSOCK;
  364. fput(file);
  365. return NULL;
  366. }
  367. if (sock->file != file) {
  368. printk(KERN_ERR "socki_lookup: socket file changed!n");
  369. sock->file = file;
  370. }
  371. return sock;
  372. }
  373. extern __inline__ void sockfd_put(struct socket *sock)
  374. {
  375. fput(sock->file);
  376. }
  377. /**
  378.  * sock_alloc - allocate a socket
  379.  *
  380.  * Allocate a new inode and socket object. The two are bound together
  381.  * and initialised. The socket is then returned. If we are out of inodes
  382.  * NULL is returned.
  383.  */
  384. struct socket *sock_alloc(void)
  385. {
  386. struct inode * inode;
  387. struct socket * sock;
  388. inode = get_empty_inode();
  389. if (!inode)
  390. return NULL;
  391. inode->i_sb = sock_mnt->mnt_sb;
  392. sock = socki_lookup(inode);
  393. inode->i_mode = S_IFSOCK|S_IRWXUGO;
  394. inode->i_sock = 1;
  395. inode->i_uid = current->fsuid;
  396. inode->i_gid = current->fsgid;
  397. sock->inode = inode;
  398. init_waitqueue_head(&sock->wait);
  399. sock->fasync_list = NULL;
  400. sock->state = SS_UNCONNECTED;
  401. sock->flags = 0;
  402. sock->ops = NULL;
  403. sock->sk = NULL;
  404. sock->file = NULL;
  405. sockets_in_use[smp_processor_id()].counter++;
  406. return sock;
  407. }
  408. /*
  409.  * In theory you can't get an open on this inode, but /proc provides
  410.  * a back door. Remember to keep it shut otherwise you'll let the
  411.  * creepy crawlies in.
  412.  */
  413.   
  414. static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
  415. {
  416. return -ENXIO;
  417. }
  418. /**
  419.  * sock_release - close a socket
  420.  * @sock: socket to close
  421.  *
  422.  * The socket is released from the protocol stack if it has a release
  423.  * callback, and the inode is then released if the socket is bound to
  424.  * an inode not a file. 
  425.  */
  426.  
  427. void sock_release(struct socket *sock)
  428. {
  429. if (sock->ops) 
  430. sock->ops->release(sock);
  431. if (sock->fasync_list)
  432. printk(KERN_ERR "sock_release: fasync list not empty!n");
  433. sockets_in_use[smp_processor_id()].counter--;
  434. if (!sock->file) {
  435. iput(sock->inode);
  436. return;
  437. }
  438. sock->file=NULL;
  439. }
  440. int sock_sendmsg(struct socket *sock, struct msghdr *msg, int size)
  441. {
  442. int err;
  443. struct scm_cookie scm;
  444. err = scm_send(sock, msg, &scm);
  445. if (err >= 0) {
  446. err = sock->ops->sendmsg(sock, msg, size, &scm);
  447. scm_destroy(&scm);
  448. }
  449. return err;
  450. }
  451. int sock_recvmsg(struct socket *sock, struct msghdr *msg, int size, int flags)
  452. {
  453. struct scm_cookie scm;
  454. memset(&scm, 0, sizeof(scm));
  455. size = sock->ops->recvmsg(sock, msg, size, flags, &scm);
  456. if (size >= 0)
  457. scm_recv(sock, msg, &scm, flags);
  458. return size;
  459. }
  460. /*
  461.  * Read data from a socket. ubuf is a user mode pointer. We make sure the user
  462.  * area ubuf...ubuf+size-1 is writable before asking the protocol.
  463.  */
  464. static ssize_t sock_read(struct file *file, char *ubuf,
  465.  size_t size, loff_t *ppos)
  466. {
  467. struct socket *sock;
  468. struct iovec iov;
  469. struct msghdr msg;
  470. int flags;
  471. if (ppos != &file->f_pos)
  472. return -ESPIPE;
  473. if (size==0) /* Match SYS5 behaviour */
  474. return 0;
  475. sock = socki_lookup(file->f_dentry->d_inode); 
  476. msg.msg_name=NULL;
  477. msg.msg_namelen=0;
  478. msg.msg_iov=&iov;
  479. msg.msg_iovlen=1;
  480. msg.msg_control=NULL;
  481. msg.msg_controllen=0;
  482. iov.iov_base=ubuf;
  483. iov.iov_len=size;
  484. flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
  485. return sock_recvmsg(sock, &msg, size, flags);
  486. }
  487. /*
  488.  * Write data to a socket. We verify that the user area ubuf..ubuf+size-1
  489.  * is readable by the user process.
  490.  */
  491. static ssize_t sock_write(struct file *file, const char *ubuf,
  492.   size_t size, loff_t *ppos)
  493. {
  494. struct socket *sock;
  495. struct msghdr msg;
  496. struct iovec iov;
  497. if (ppos != &file->f_pos)
  498. return -ESPIPE;
  499. if(size==0) /* Match SYS5 behaviour */
  500. return 0;
  501. sock = socki_lookup(file->f_dentry->d_inode); 
  502. msg.msg_name=NULL;
  503. msg.msg_namelen=0;
  504. msg.msg_iov=&iov;
  505. msg.msg_iovlen=1;
  506. msg.msg_control=NULL;
  507. msg.msg_controllen=0;
  508. msg.msg_flags=!(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
  509. if (sock->type == SOCK_SEQPACKET)
  510. msg.msg_flags |= MSG_EOR;
  511. iov.iov_base=(void *)ubuf;
  512. iov.iov_len=size;
  513. return sock_sendmsg(sock, &msg, size);
  514. }
  515. ssize_t sock_sendpage(struct file *file, struct page *page,
  516.       int offset, size_t size, loff_t *ppos, int more)
  517. {
  518. struct socket *sock;
  519. int flags;
  520. if (ppos != &file->f_pos)
  521. return -ESPIPE;
  522. sock = socki_lookup(file->f_dentry->d_inode);
  523. flags = !(file->f_flags & O_NONBLOCK) ? 0 : MSG_DONTWAIT;
  524. if (more)
  525. flags |= MSG_MORE;
  526. return sock->ops->sendpage(sock, page, offset, size, flags);
  527. }
  528. int sock_readv_writev(int type, struct inode * inode, struct file * file,
  529.       const struct iovec * iov, long count, long size)
  530. {
  531. struct msghdr msg;
  532. struct socket *sock;
  533. sock = socki_lookup(inode);
  534. msg.msg_name = NULL;
  535. msg.msg_namelen = 0;
  536. msg.msg_control = NULL;
  537. msg.msg_controllen = 0;
  538. msg.msg_iov = (struct iovec *) iov;
  539. msg.msg_iovlen = count;
  540. msg.msg_flags = (file->f_flags & O_NONBLOCK) ? MSG_DONTWAIT : 0;
  541. /* read() does a VERIFY_WRITE */
  542. if (type == VERIFY_WRITE)
  543. return sock_recvmsg(sock, &msg, size, msg.msg_flags);
  544. if (sock->type == SOCK_SEQPACKET)
  545. msg.msg_flags |= MSG_EOR;
  546. return sock_sendmsg(sock, &msg, size);
  547. }
  548. static ssize_t sock_readv(struct file *file, const struct iovec *vector,
  549.   unsigned long count, loff_t *ppos)
  550. {
  551. size_t tot_len = 0;
  552. int i;
  553.         for (i = 0 ; i < count ; i++)
  554.                 tot_len += vector[i].iov_len;
  555. return sock_readv_writev(VERIFY_WRITE, file->f_dentry->d_inode,
  556.  file, vector, count, tot_len);
  557. }
  558. static ssize_t sock_writev(struct file *file, const struct iovec *vector,
  559.    unsigned long count, loff_t *ppos)
  560. {
  561. size_t tot_len = 0;
  562. int i;
  563.         for (i = 0 ; i < count ; i++)
  564.                 tot_len += vector[i].iov_len;
  565. return sock_readv_writev(VERIFY_READ, file->f_dentry->d_inode,
  566.  file, vector, count, tot_len);
  567. }
  568. /*
  569.  * With an ioctl arg may well be a user mode pointer, but we don't know what to do
  570.  * with it - that's up to the protocol still.
  571.  */
  572. int sock_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
  573.    unsigned long arg)
  574. {
  575. struct socket *sock;
  576. int err;
  577. unlock_kernel();
  578. sock = socki_lookup(inode);
  579. err = sock->ops->ioctl(sock, cmd, arg);
  580. lock_kernel();
  581. return err;
  582. }
  583. /* No kernel lock held - perfect */
  584. static unsigned int sock_poll(struct file *file, poll_table * wait)
  585. {
  586. struct socket *sock;
  587. /*
  588.  * We can't return errors to poll, so it's either yes or no. 
  589.  */
  590. sock = socki_lookup(file->f_dentry->d_inode);
  591. return sock->ops->poll(file, sock, wait);
  592. }
  593. static int sock_mmap(struct file * file, struct vm_area_struct * vma)
  594. {
  595. struct socket *sock = socki_lookup(file->f_dentry->d_inode);
  596. return sock->ops->mmap(file, sock, vma);
  597. }
  598. int sock_close(struct inode *inode, struct file *filp)
  599. {
  600. /*
  601.  * It was possible the inode is NULL we were 
  602.  * closing an unfinished socket. 
  603.  */
  604. if (!inode)
  605. {
  606. printk(KERN_DEBUG "sock_close: NULL inoden");
  607. return 0;
  608. }
  609. sock_fasync(-1, filp, 0);
  610. sock_release(socki_lookup(inode));
  611. return 0;
  612. }
  613. /*
  614.  * Update the socket async list
  615.  *
  616.  * Fasync_list locking strategy.
  617.  *
  618.  * 1. fasync_list is modified only under process context socket lock
  619.  *    i.e. under semaphore.
  620.  * 2. fasync_list is used under read_lock(&sk->callback_lock)
  621.  *    or under socket lock.
  622.  * 3. fasync_list can be used from softirq context, so that
  623.  *    modification under socket lock have to be enhanced with
  624.  *    write_lock_bh(&sk->callback_lock).
  625.  * --ANK (990710)
  626.  */
  627. static int sock_fasync(int fd, struct file *filp, int on)
  628. {
  629. struct fasync_struct *fa, *fna=NULL, **prev;
  630. struct socket *sock;
  631. struct sock *sk;
  632. if (on)
  633. {
  634. fna=(struct fasync_struct *)kmalloc(sizeof(struct fasync_struct), GFP_KERNEL);
  635. if(fna==NULL)
  636. return -ENOMEM;
  637. }
  638. sock = socki_lookup(filp->f_dentry->d_inode);
  639. if ((sk=sock->sk) == NULL) {
  640. if (fna)
  641. kfree(fna);
  642. return -EINVAL;
  643. }
  644. lock_sock(sk);
  645. prev=&(sock->fasync_list);
  646. for (fa=*prev; fa!=NULL; prev=&fa->fa_next,fa=*prev)
  647. if (fa->fa_file==filp)
  648. break;
  649. if(on)
  650. {
  651. if(fa!=NULL)
  652. {
  653. write_lock_bh(&sk->callback_lock);
  654. fa->fa_fd=fd;
  655. write_unlock_bh(&sk->callback_lock);
  656. kfree(fna);
  657. goto out;
  658. }
  659. fna->fa_file=filp;
  660. fna->fa_fd=fd;
  661. fna->magic=FASYNC_MAGIC;
  662. fna->fa_next=sock->fasync_list;
  663. write_lock_bh(&sk->callback_lock);
  664. sock->fasync_list=fna;
  665. write_unlock_bh(&sk->callback_lock);
  666. }
  667. else
  668. {
  669. if (fa!=NULL)
  670. {
  671. write_lock_bh(&sk->callback_lock);
  672. *prev=fa->fa_next;
  673. write_unlock_bh(&sk->callback_lock);
  674. kfree(fa);
  675. }
  676. }
  677. out:
  678. release_sock(sock->sk);
  679. return 0;
  680. }
  681. /* This function may be called only under socket lock or callback_lock */
  682. int sock_wake_async(struct socket *sock, int how, int band)
  683. {
  684. if (!sock || !sock->fasync_list)
  685. return -1;
  686. switch (how)
  687. {
  688. case 1:
  689. if (test_bit(SOCK_ASYNC_WAITDATA, &sock->flags))
  690. break;
  691. goto call_kill;
  692. case 2:
  693. if (!test_and_clear_bit(SOCK_ASYNC_NOSPACE, &sock->flags))
  694. break;
  695. /* fall through */
  696. case 0:
  697. call_kill:
  698. __kill_fasync(sock->fasync_list, SIGIO, band);
  699. break;
  700. case 3:
  701. __kill_fasync(sock->fasync_list, SIGURG, band);
  702. }
  703. return 0;
  704. }
  705. int sock_create(int family, int type, int protocol, struct socket **res)
  706. {
  707. int i;
  708. struct socket *sock;
  709. /*
  710.  * Check protocol is in range
  711.  */
  712. if (family < 0 || family >= NPROTO)
  713. return -EAFNOSUPPORT;
  714. if (type < 0 || type >= SOCK_MAX)
  715. return -EINVAL;
  716. /* Compatibility.
  717.    This uglymoron is moved from INET layer to here to avoid
  718.    deadlock in module load.
  719.  */
  720. if (family == PF_INET && type == SOCK_PACKET) {
  721. static int warned; 
  722. if (!warned) {
  723. warned = 1;
  724. printk(KERN_INFO "%s uses obsolete (PF_INET,SOCK_PACKET)n", current->comm);
  725. }
  726. family = PF_PACKET;
  727. }
  728. #if defined(CONFIG_KMOD) && defined(CONFIG_NET)
  729. /* Attempt to load a protocol module if the find failed. 
  730.  * 
  731.  * 12/09/1996 Marcin: But! this makes REALLY only sense, if the user 
  732.  * requested real, full-featured networking support upon configuration.
  733.  * Otherwise module support will break!
  734.  */
  735. if (net_families[family]==NULL)
  736. {
  737. char module_name[30];
  738. sprintf(module_name,"net-pf-%d",family);
  739. request_module(module_name);
  740. }
  741. #endif
  742. net_family_read_lock();
  743. if (net_families[family] == NULL) {
  744. i = -EAFNOSUPPORT;
  745. goto out;
  746. }
  747. /*
  748.  * Allocate the socket and allow the family to set things up. if
  749.  * the protocol is 0, the family is instructed to select an appropriate
  750.  * default.
  751.  */
  752. if (!(sock = sock_alloc())) 
  753. {
  754. printk(KERN_WARNING "socket: no more socketsn");
  755. i = -ENFILE; /* Not exactly a match, but its the
  756.    closest posix thing */
  757. goto out;
  758. }
  759. sock->type  = type;
  760. if ((i = net_families[family]->create(sock, protocol)) < 0) 
  761. {
  762. sock_release(sock);
  763. goto out;
  764. }
  765. *res = sock;
  766. out:
  767. net_family_read_unlock();
  768. return i;
  769. }
  770. asmlinkage long sys_socket(int family, int type, int protocol)
  771. {
  772. int retval;
  773. struct socket *sock;
  774. retval = sock_create(family, type, protocol, &sock);
  775. if (retval < 0)
  776. goto out;
  777. retval = sock_map_fd(sock);
  778. if (retval < 0)
  779. goto out_release;
  780. out:
  781. /* It may be already another descriptor 8) Not kernel problem. */
  782. return retval;
  783. out_release:
  784. sock_release(sock);
  785. return retval;
  786. }
  787. /*
  788.  * Create a pair of connected sockets.
  789.  */
  790. asmlinkage long sys_socketpair(int family, int type, int protocol, int usockvec[2])
  791. {
  792. struct socket *sock1, *sock2;
  793. int fd1, fd2, err;
  794. /*
  795.  * Obtain the first socket and check if the underlying protocol
  796.  * supports the socketpair call.
  797.  */
  798. err = sock_create(family, type, protocol, &sock1);
  799. if (err < 0)
  800. goto out;
  801. err = sock_create(family, type, protocol, &sock2);
  802. if (err < 0)
  803. goto out_release_1;
  804. err = sock1->ops->socketpair(sock1, sock2);
  805. if (err < 0) 
  806. goto out_release_both;
  807. fd1 = fd2 = -1;
  808. err = sock_map_fd(sock1);
  809. if (err < 0)
  810. goto out_release_both;
  811. fd1 = err;
  812. err = sock_map_fd(sock2);
  813. if (err < 0)
  814. goto out_close_1;
  815. fd2 = err;
  816. /* fd1 and fd2 may be already another descriptors.
  817.  * Not kernel problem.
  818.  */
  819. err = put_user(fd1, &usockvec[0]); 
  820. if (!err)
  821. err = put_user(fd2, &usockvec[1]);
  822. if (!err)
  823. return 0;
  824. sys_close(fd2);
  825. sys_close(fd1);
  826. return err;
  827. out_close_1:
  828.         sock_release(sock2);
  829. sys_close(fd1);
  830. return err;
  831. out_release_both:
  832.         sock_release(sock2);
  833. out_release_1:
  834.         sock_release(sock1);
  835. out:
  836. return err;
  837. }
  838. /*
  839.  * Bind a name to a socket. Nothing much to do here since it's
  840.  * the protocol's responsibility to handle the local address.
  841.  *
  842.  * We move the socket address to kernel space before we call
  843.  * the protocol layer (having also checked the address is ok).
  844.  */
  845. asmlinkage long sys_bind(int fd, struct sockaddr *umyaddr, int addrlen)
  846. {
  847. struct socket *sock;
  848. char address[MAX_SOCK_ADDR];
  849. int err;
  850. if((sock = sockfd_lookup(fd,&err))!=NULL)
  851. {
  852. if((err=move_addr_to_kernel(umyaddr,addrlen,address))>=0)
  853. err = sock->ops->bind(sock, (struct sockaddr *)address, addrlen);
  854. sockfd_put(sock);
  855. }
  856. return err;
  857. }
  858. /*
  859.  * Perform a listen. Basically, we allow the protocol to do anything
  860.  * necessary for a listen, and if that works, we mark the socket as
  861.  * ready for listening.
  862.  */
  863. asmlinkage long sys_listen(int fd, int backlog)
  864. {
  865. struct socket *sock;
  866. int err;
  867. if ((sock = sockfd_lookup(fd, &err)) != NULL) {
  868. if ((unsigned) backlog > SOMAXCONN)
  869. backlog = SOMAXCONN;
  870. err=sock->ops->listen(sock, backlog);
  871. sockfd_put(sock);
  872. }
  873. return err;
  874. }
  875. /*
  876.  * For accept, we attempt to create a new socket, set up the link
  877.  * with the client, wake up the client, then return the new
  878.  * connected fd. We collect the address of the connector in kernel
  879.  * space and move it to user at the very end. This is unclean because
  880.  * we open the socket then return an error.
  881.  *
  882.  * 1003.1g adds the ability to recvmsg() to query connection pending
  883.  * status to recvmsg. We need to add that support in a way thats
  884.  * clean when we restucture accept also.
  885.  */
  886. asmlinkage long sys_accept(int fd, struct sockaddr *upeer_sockaddr, int *upeer_addrlen)
  887. {
  888. struct socket *sock, *newsock;
  889. int err, len;
  890. char address[MAX_SOCK_ADDR];
  891. sock = sockfd_lookup(fd, &err);
  892. if (!sock)
  893. goto out;
  894. err = -EMFILE;
  895. if (!(newsock = sock_alloc())) 
  896. goto out_put;
  897. newsock->type = sock->type;
  898. newsock->ops = sock->ops;
  899. err = sock->ops->accept(sock, newsock, sock->file->f_flags);
  900. if (err < 0)
  901. goto out_release;
  902. if (upeer_sockaddr) {
  903. if(newsock->ops->getname(newsock, (struct sockaddr *)address, &len, 2)<0) {
  904. err = -ECONNABORTED;
  905. goto out_release;
  906. }
  907. err = move_addr_to_user(address, len, upeer_sockaddr, upeer_addrlen);
  908. if (err < 0)
  909. goto out_release;
  910. }
  911. /* File flags are not inherited via accept() unlike another OSes. */
  912. if ((err = sock_map_fd(newsock)) < 0)
  913. goto out_release;
  914. out_put:
  915. sockfd_put(sock);
  916. out:
  917. return err;
  918. out_release:
  919. sock_release(newsock);
  920. goto out_put;
  921. }
  922. /*
  923.  * Attempt to connect to a socket with the server address.  The address
  924.  * is in user space so we verify it is OK and move it to kernel space.
  925.  *
  926.  * For 1003.1g we need to add clean support for a bind to AF_UNSPEC to
  927.  * break bindings
  928.  *
  929.  * NOTE: 1003.1g draft 6.3 is broken with respect to AX.25/NetROM and
  930.  * other SEQPACKET protocols that take time to connect() as it doesn't
  931.  * include the -EINPROGRESS status for such sockets.
  932.  */
  933. asmlinkage long sys_connect(int fd, struct sockaddr *uservaddr, int addrlen)
  934. {
  935. struct socket *sock;
  936. char address[MAX_SOCK_ADDR];
  937. int err;
  938. sock = sockfd_lookup(fd, &err);
  939. if (!sock)
  940. goto out;
  941. err = move_addr_to_kernel(uservaddr, addrlen, address);
  942. if (err < 0)
  943. goto out_put;
  944. err = sock->ops->connect(sock, (struct sockaddr *) address, addrlen,
  945.  sock->file->f_flags);
  946. out_put:
  947. sockfd_put(sock);
  948. out:
  949. return err;
  950. }
  951. /*
  952.  * Get the local address ('name') of a socket object. Move the obtained
  953.  * name to user space.
  954.  */
  955. asmlinkage long sys_getsockname(int fd, struct sockaddr *usockaddr, int *usockaddr_len)
  956. {
  957. struct socket *sock;
  958. char address[MAX_SOCK_ADDR];
  959. int len, err;
  960. sock = sockfd_lookup(fd, &err);
  961. if (!sock)
  962. goto out;
  963. err = sock->ops->getname(sock, (struct sockaddr *)address, &len, 0);
  964. if (err)
  965. goto out_put;
  966. err = move_addr_to_user(address, len, usockaddr, usockaddr_len);
  967. out_put:
  968. sockfd_put(sock);
  969. out:
  970. return err;
  971. }
  972. /*
  973.  * Get the remote address ('name') of a socket object. Move the obtained
  974.  * name to user space.
  975.  */
  976. asmlinkage long sys_getpeername(int fd, struct sockaddr *usockaddr, int *usockaddr_len)
  977. {
  978. struct socket *sock;
  979. char address[MAX_SOCK_ADDR];
  980. int len, err;
  981. if ((sock = sockfd_lookup(fd, &err))!=NULL)
  982. {
  983. err = sock->ops->getname(sock, (struct sockaddr *)address, &len, 1);
  984. if (!err)
  985. err=move_addr_to_user(address,len, usockaddr, usockaddr_len);
  986. sockfd_put(sock);
  987. }
  988. return err;
  989. }
  990. /*
  991.  * Send a datagram to a given address. We move the address into kernel
  992.  * space and check the user space data area is readable before invoking
  993.  * the protocol.
  994.  */
  995. asmlinkage long sys_sendto(int fd, void * buff, size_t len, unsigned flags,
  996.    struct sockaddr *addr, int addr_len)
  997. {
  998. struct socket *sock;
  999. char address[MAX_SOCK_ADDR];
  1000. int err;
  1001. struct msghdr msg;
  1002. struct iovec iov;
  1003. sock = sockfd_lookup(fd, &err);
  1004. if (!sock)
  1005. goto out;
  1006. iov.iov_base=buff;
  1007. iov.iov_len=len;
  1008. msg.msg_name=NULL;
  1009. msg.msg_iov=&iov;
  1010. msg.msg_iovlen=1;
  1011. msg.msg_control=NULL;
  1012. msg.msg_controllen=0;
  1013. msg.msg_namelen=0;
  1014. if(addr)
  1015. {
  1016. err = move_addr_to_kernel(addr, addr_len, address);
  1017. if (err < 0)
  1018. goto out_put;
  1019. msg.msg_name=address;
  1020. msg.msg_namelen=addr_len;
  1021. }
  1022. if (sock->file->f_flags & O_NONBLOCK)
  1023. flags |= MSG_DONTWAIT;
  1024. msg.msg_flags = flags;
  1025. err = sock_sendmsg(sock, &msg, len);
  1026. out_put:
  1027. sockfd_put(sock);
  1028. out:
  1029. return err;
  1030. }
  1031. /*
  1032.  * Send a datagram down a socket. 
  1033.  */
  1034. asmlinkage long sys_send(int fd, void * buff, size_t len, unsigned flags)
  1035. {
  1036. return sys_sendto(fd, buff, len, flags, NULL, 0);
  1037. }
  1038. /*
  1039.  * Receive a frame from the socket and optionally record the address of the 
  1040.  * sender. We verify the buffers are writable and if needed move the
  1041.  * sender address from kernel to user space.
  1042.  */
  1043. asmlinkage long sys_recvfrom(int fd, void * ubuf, size_t size, unsigned flags,
  1044.      struct sockaddr *addr, int *addr_len)
  1045. {
  1046. struct socket *sock;
  1047. struct iovec iov;
  1048. struct msghdr msg;
  1049. char address[MAX_SOCK_ADDR];
  1050. int err,err2;
  1051. sock = sockfd_lookup(fd, &err);
  1052. if (!sock)
  1053. goto out;
  1054. msg.msg_control=NULL;
  1055. msg.msg_controllen=0;
  1056. msg.msg_iovlen=1;
  1057. msg.msg_iov=&iov;
  1058. iov.iov_len=size;
  1059. iov.iov_base=ubuf;
  1060. msg.msg_name=address;
  1061. msg.msg_namelen=MAX_SOCK_ADDR;
  1062. if (sock->file->f_flags & O_NONBLOCK)
  1063. flags |= MSG_DONTWAIT;
  1064. err=sock_recvmsg(sock, &msg, size, flags);
  1065. if(err >= 0 && addr != NULL && msg.msg_namelen)
  1066. {
  1067. err2=move_addr_to_user(address, msg.msg_namelen, addr, addr_len);
  1068. if(err2<0)
  1069. err=err2;
  1070. }
  1071. sockfd_put(sock);
  1072. out:
  1073. return err;
  1074. }
  1075. /*
  1076.  * Receive a datagram from a socket. 
  1077.  */
  1078. asmlinkage long sys_recv(int fd, void * ubuf, size_t size, unsigned flags)
  1079. {
  1080. return sys_recvfrom(fd, ubuf, size, flags, NULL, NULL);
  1081. }
  1082. /*
  1083.  * Set a socket option. Because we don't know the option lengths we have
  1084.  * to pass the user mode parameter for the protocols to sort out.
  1085.  */
  1086. asmlinkage long sys_setsockopt(int fd, int level, int optname, char *optval, int optlen)
  1087. {
  1088. int err;
  1089. struct socket *sock;
  1090. if (optlen < 0)
  1091. return -EINVAL;
  1092. if ((sock = sockfd_lookup(fd, &err))!=NULL)
  1093. {
  1094. if (level == SOL_SOCKET)
  1095. err=sock_setsockopt(sock,level,optname,optval,optlen);
  1096. else
  1097. err=sock->ops->setsockopt(sock, level, optname, optval, optlen);
  1098. sockfd_put(sock);
  1099. }
  1100. return err;
  1101. }
  1102. /*
  1103.  * Get a socket option. Because we don't know the option lengths we have
  1104.  * to pass a user mode parameter for the protocols to sort out.
  1105.  */
  1106. asmlinkage long sys_getsockopt(int fd, int level, int optname, char *optval, int *optlen)
  1107. {
  1108. int err;
  1109. struct socket *sock;
  1110. if ((sock = sockfd_lookup(fd, &err))!=NULL)
  1111. {
  1112. if (level == SOL_SOCKET)
  1113. err=sock_getsockopt(sock,level,optname,optval,optlen);
  1114. else
  1115. err=sock->ops->getsockopt(sock, level, optname, optval, optlen);
  1116. sockfd_put(sock);
  1117. }
  1118. return err;
  1119. }
  1120. /*
  1121.  * Shutdown a socket.
  1122.  */
  1123. asmlinkage long sys_shutdown(int fd, int how)
  1124. {
  1125. int err;
  1126. struct socket *sock;
  1127. if ((sock = sockfd_lookup(fd, &err))!=NULL)
  1128. {
  1129. err=sock->ops->shutdown(sock, how);
  1130. sockfd_put(sock);
  1131. }
  1132. return err;
  1133. }
  1134. /*
  1135.  * BSD sendmsg interface
  1136.  */
  1137. asmlinkage long sys_sendmsg(int fd, struct msghdr *msg, unsigned flags)
  1138. {
  1139. struct socket *sock;
  1140. char address[MAX_SOCK_ADDR];
  1141. struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
  1142. unsigned char ctl[sizeof(struct cmsghdr) + 20]; /* 20 is size of ipv6_pktinfo */
  1143. unsigned char *ctl_buf = ctl;
  1144. struct msghdr msg_sys;
  1145. int err, ctl_len, iov_size, total_len;
  1146. err = -EFAULT;
  1147. if (copy_from_user(&msg_sys,msg,sizeof(struct msghdr)))
  1148. goto out; 
  1149. sock = sockfd_lookup(fd, &err);
  1150. if (!sock) 
  1151. goto out;
  1152. /* do not move before msg_sys is valid */
  1153. err = -EINVAL;
  1154. if (msg_sys.msg_iovlen > UIO_MAXIOV)
  1155. goto out_put;
  1156. /* Check whether to allocate the iovec area*/
  1157. err = -ENOMEM;
  1158. iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
  1159. if (msg_sys.msg_iovlen > UIO_FASTIOV) {
  1160. iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
  1161. if (!iov)
  1162. goto out_put;
  1163. }
  1164. /* This will also move the address data into kernel space */
  1165. err = verify_iovec(&msg_sys, iov, address, VERIFY_READ);
  1166. if (err < 0) 
  1167. goto out_freeiov;
  1168. total_len = err;
  1169. err = -ENOBUFS;
  1170. if (msg_sys.msg_controllen > INT_MAX)
  1171. goto out_freeiov;
  1172. ctl_len = msg_sys.msg_controllen; 
  1173. if (ctl_len) 
  1174. {
  1175. if (ctl_len > sizeof(ctl))
  1176. {
  1177. ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
  1178. if (ctl_buf == NULL) 
  1179. goto out_freeiov;
  1180. }
  1181. err = -EFAULT;
  1182. if (copy_from_user(ctl_buf, msg_sys.msg_control, ctl_len))
  1183. goto out_freectl;
  1184. msg_sys.msg_control = ctl_buf;
  1185. }
  1186. msg_sys.msg_flags = flags;
  1187. if (sock->file->f_flags & O_NONBLOCK)
  1188. msg_sys.msg_flags |= MSG_DONTWAIT;
  1189. err = sock_sendmsg(sock, &msg_sys, total_len);
  1190. out_freectl:
  1191. if (ctl_buf != ctl)    
  1192. sock_kfree_s(sock->sk, ctl_buf, ctl_len);
  1193. out_freeiov:
  1194. if (iov != iovstack)
  1195. sock_kfree_s(sock->sk, iov, iov_size);
  1196. out_put:
  1197. sockfd_put(sock);
  1198. out:       
  1199. return err;
  1200. }
  1201. /*
  1202.  * BSD recvmsg interface
  1203.  */
  1204. asmlinkage long sys_recvmsg(int fd, struct msghdr *msg, unsigned int flags)
  1205. {
  1206. struct socket *sock;
  1207. struct iovec iovstack[UIO_FASTIOV];
  1208. struct iovec *iov=iovstack;
  1209. struct msghdr msg_sys;
  1210. unsigned long cmsg_ptr;
  1211. int err, iov_size, total_len, len;
  1212. /* kernel mode address */
  1213. char addr[MAX_SOCK_ADDR];
  1214. /* user mode address pointers */
  1215. struct sockaddr *uaddr;
  1216. int *uaddr_len;
  1217. err=-EFAULT;
  1218. if (copy_from_user(&msg_sys,msg,sizeof(struct msghdr)))
  1219. goto out;
  1220. sock = sockfd_lookup(fd, &err);
  1221. if (!sock)
  1222. goto out;
  1223. err = -EINVAL;
  1224. if (msg_sys.msg_iovlen > UIO_MAXIOV)
  1225. goto out_put;
  1226. /* Check whether to allocate the iovec area*/
  1227. err = -ENOMEM;
  1228. iov_size = msg_sys.msg_iovlen * sizeof(struct iovec);
  1229. if (msg_sys.msg_iovlen > UIO_FASTIOV) {
  1230. iov = sock_kmalloc(sock->sk, iov_size, GFP_KERNEL);
  1231. if (!iov)
  1232. goto out_put;
  1233. }
  1234. /*
  1235.  * Save the user-mode address (verify_iovec will change the
  1236.  * kernel msghdr to use the kernel address space)
  1237.  */
  1238.  
  1239. uaddr = msg_sys.msg_name;
  1240. uaddr_len = &msg->msg_namelen;
  1241. err = verify_iovec(&msg_sys, iov, addr, VERIFY_WRITE);
  1242. if (err < 0)
  1243. goto out_freeiov;
  1244. total_len=err;
  1245. cmsg_ptr = (unsigned long)msg_sys.msg_control;
  1246. msg_sys.msg_flags = 0;
  1247. if (sock->file->f_flags & O_NONBLOCK)
  1248. flags |= MSG_DONTWAIT;
  1249. err = sock_recvmsg(sock, &msg_sys, total_len, flags);
  1250. if (err < 0)
  1251. goto out_freeiov;
  1252. len = err;
  1253. if (uaddr != NULL && msg_sys.msg_namelen) {
  1254. err = move_addr_to_user(addr, msg_sys.msg_namelen, uaddr, uaddr_len);
  1255. if (err < 0)
  1256. goto out_freeiov;
  1257. }
  1258. err = __put_user(msg_sys.msg_flags, &msg->msg_flags);
  1259. if (err)
  1260. goto out_freeiov;
  1261. err = __put_user((unsigned long)msg_sys.msg_control-cmsg_ptr, 
  1262.  &msg->msg_controllen);
  1263. if (err)
  1264. goto out_freeiov;
  1265. err = len;
  1266. out_freeiov:
  1267. if (iov != iovstack)
  1268. sock_kfree_s(sock->sk, iov, iov_size);
  1269. out_put:
  1270. sockfd_put(sock);
  1271. out:
  1272. return err;
  1273. }
  1274. /*
  1275.  * Perform a file control on a socket file descriptor.
  1276.  *
  1277.  * Doesn't acquire a fd lock, because no network fcntl
  1278.  * function sleeps currently.
  1279.  */
  1280. int sock_fcntl(struct file *filp, unsigned int cmd, unsigned long arg)
  1281. {
  1282. struct socket *sock;
  1283. sock = socki_lookup (filp->f_dentry->d_inode);
  1284. if (sock && sock->ops)
  1285. return sock_no_fcntl(sock, cmd, arg);
  1286. return(-EINVAL);
  1287. }
  1288. /* Argument list sizes for sys_socketcall */
  1289. #define AL(x) ((x) * sizeof(unsigned long))
  1290. static unsigned char nargs[18]={AL(0),AL(3),AL(3),AL(3),AL(2),AL(3),
  1291. AL(3),AL(3),AL(4),AL(4),AL(4),AL(6),
  1292. AL(6),AL(2),AL(5),AL(5),AL(3),AL(3)};
  1293. #undef AL
  1294. /*
  1295.  * System call vectors. 
  1296.  *
  1297.  * Argument checking cleaned up. Saved 20% in size.
  1298.  *  This function doesn't need to set the kernel lock because
  1299.  *  it is set by the callees. 
  1300.  */
  1301. asmlinkage long sys_socketcall(int call, unsigned long *args)
  1302. {
  1303. unsigned long a[6];
  1304. unsigned long a0,a1;
  1305. int err;
  1306. if(call<1||call>SYS_RECVMSG)
  1307. return -EINVAL;
  1308. /* copy_from_user should be SMP safe. */
  1309. if (copy_from_user(a, args, nargs[call]))
  1310. return -EFAULT;
  1311. a0=a[0];
  1312. a1=a[1];
  1313. switch(call) 
  1314. {
  1315. case SYS_SOCKET:
  1316. err = sys_socket(a0,a1,a[2]);
  1317. break;
  1318. case SYS_BIND:
  1319. err = sys_bind(a0,(struct sockaddr *)a1, a[2]);
  1320. break;
  1321. case SYS_CONNECT:
  1322. err = sys_connect(a0, (struct sockaddr *)a1, a[2]);
  1323. break;
  1324. case SYS_LISTEN:
  1325. err = sys_listen(a0,a1);
  1326. break;
  1327. case SYS_ACCEPT:
  1328. err = sys_accept(a0,(struct sockaddr *)a1, (int *)a[2]);
  1329. break;
  1330. case SYS_GETSOCKNAME:
  1331. err = sys_getsockname(a0,(struct sockaddr *)a1, (int *)a[2]);
  1332. break;
  1333. case SYS_GETPEERNAME:
  1334. err = sys_getpeername(a0, (struct sockaddr *)a1, (int *)a[2]);
  1335. break;
  1336. case SYS_SOCKETPAIR:
  1337. err = sys_socketpair(a0,a1, a[2], (int *)a[3]);
  1338. break;
  1339. case SYS_SEND:
  1340. err = sys_send(a0, (void *)a1, a[2], a[3]);
  1341. break;
  1342. case SYS_SENDTO:
  1343. err = sys_sendto(a0,(void *)a1, a[2], a[3],
  1344.  (struct sockaddr *)a[4], a[5]);
  1345. break;
  1346. case SYS_RECV:
  1347. err = sys_recv(a0, (void *)a1, a[2], a[3]);
  1348. break;
  1349. case SYS_RECVFROM:
  1350. err = sys_recvfrom(a0, (void *)a1, a[2], a[3],
  1351.    (struct sockaddr *)a[4], (int *)a[5]);
  1352. break;
  1353. case SYS_SHUTDOWN:
  1354. err = sys_shutdown(a0,a1);
  1355. break;
  1356. case SYS_SETSOCKOPT:
  1357. err = sys_setsockopt(a0, a1, a[2], (char *)a[3], a[4]);
  1358. break;
  1359. case SYS_GETSOCKOPT:
  1360. err = sys_getsockopt(a0, a1, a[2], (char *)a[3], (int *)a[4]);
  1361. break;
  1362. case SYS_SENDMSG:
  1363. err = sys_sendmsg(a0, (struct msghdr *) a1, a[2]);
  1364. break;
  1365. case SYS_RECVMSG:
  1366. err = sys_recvmsg(a0, (struct msghdr *) a1, a[2]);
  1367. break;
  1368. default:
  1369. err = -EINVAL;
  1370. break;
  1371. }
  1372. return err;
  1373. }
  1374. /*
  1375.  * This function is called by a protocol handler that wants to
  1376.  * advertise its address family, and have it linked into the
  1377.  * SOCKET module.
  1378.  */
  1379. int sock_register(struct net_proto_family *ops)
  1380. {
  1381. int err;
  1382. if (ops->family >= NPROTO) {
  1383. printk(KERN_CRIT "protocol %d >= NPROTO(%d)n", ops->family, NPROTO);
  1384. return -ENOBUFS;
  1385. }
  1386. net_family_write_lock();
  1387. err = -EEXIST;
  1388. if (net_families[ops->family] == NULL) {
  1389. net_families[ops->family]=ops;
  1390. err = 0;
  1391. }
  1392. net_family_write_unlock();
  1393. return err;
  1394. }
  1395. /*
  1396.  * This function is called by a protocol handler that wants to
  1397.  * remove its address family, and have it unlinked from the
  1398.  * SOCKET module.
  1399.  */
  1400. int sock_unregister(int family)
  1401. {
  1402. if (family < 0 || family >= NPROTO)
  1403. return -1;
  1404. net_family_write_lock();
  1405. net_families[family]=NULL;
  1406. net_family_write_unlock();
  1407. return 0;
  1408. }
  1409. extern void sk_init(void);
  1410. #ifdef CONFIG_WAN_ROUTER
  1411. extern void wanrouter_init(void);
  1412. #endif
  1413. #ifdef CONFIG_BLUEZ
  1414. extern void bluez_init(void);
  1415. #endif
  1416. void __init sock_init(void)
  1417. {
  1418. int i;
  1419. printk(KERN_INFO "Linux NET4.0 for Linux 2.4n");
  1420. printk(KERN_INFO "Based upon Swansea University Computer Society NET3.039n");
  1421. /*
  1422.  * Initialize all address (protocol) families. 
  1423.  */
  1424.  
  1425. for (i = 0; i < NPROTO; i++) 
  1426. net_families[i] = NULL;
  1427. /*
  1428.  * Initialize sock SLAB cache.
  1429.  */
  1430.  
  1431. sk_init();
  1432. #ifdef SLAB_SKB
  1433. /*
  1434.  * Initialize skbuff SLAB cache 
  1435.  */
  1436. skb_init();
  1437. #endif
  1438. /*
  1439.  * Wan router layer. 
  1440.  */
  1441. #ifdef CONFIG_WAN_ROUTER  
  1442. wanrouter_init();
  1443. #endif
  1444. /*
  1445.  * Initialize the protocols module. 
  1446.  */
  1447. register_filesystem(&sock_fs_type);
  1448. sock_mnt = kern_mount(&sock_fs_type);
  1449. /* The real protocol initialization is performed when
  1450.  *  do_initcalls is run.  
  1451.  */
  1452. /*
  1453.  * The netlink device handler may be needed early.
  1454.  */
  1455. #ifdef CONFIG_NET
  1456. rtnetlink_init();
  1457. #endif
  1458. #ifdef CONFIG_NETLINK_DEV
  1459. init_netlink();
  1460. #endif
  1461. #ifdef CONFIG_NETFILTER
  1462. netfilter_init();
  1463. #endif
  1464. #ifdef CONFIG_BLUEZ
  1465. bluez_init();
  1466. #endif
  1467. }
  1468. int socket_get_info(char *buffer, char **start, off_t offset, int length)
  1469. {
  1470. int len, cpu;
  1471. int counter = 0;
  1472. for (cpu=0; cpu<smp_num_cpus; cpu++)
  1473. counter += sockets_in_use[cpu_logical_map(cpu)].counter;
  1474. /* It can be negative, by the way. 8) */
  1475. if (counter < 0)
  1476. counter = 0;
  1477. len = sprintf(buffer, "sockets: used %dn", counter);
  1478. if (offset >= len)
  1479. {
  1480. *start = buffer;
  1481. return 0;
  1482. }
  1483. *start = buffer + offset;
  1484. len -= offset;
  1485. if (len > length)
  1486. len = length;
  1487. if (len < 0)
  1488. len = 0;
  1489. return len;
  1490. }