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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  2.    BNEP implementation for Linux Bluetooth stack (BlueZ).
  3.    Copyright (C) 2001-2002 Inventel Systemes
  4.    Written 2001-2002 by
  5. David Libault  <david.libault@inventel.fr>
  6.    Copyright (C) 2002 Maxim Krasnyanskiy <maxk@qualcomm.com>
  7.    This program is free software; you can redistribute it and/or modify
  8.    it under the terms of the GNU General Public License version 2 as
  9.    published by the Free Software Foundation;
  10.    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  11.    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  12.    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
  13.    IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
  14.    CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES 
  15.    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 
  16.    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 
  17.    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  18.    ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, 
  19.    COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS 
  20.    SOFTWARE IS DISCLAIMED.
  21. */
  22. /*
  23.  * $Id: sock.c,v 1.3 2002/07/10 22:59:52 maxk Exp $
  24.  */ 
  25. #include <linux/config.h>
  26. #include <linux/module.h>
  27. #include <linux/types.h>
  28. #include <linux/errno.h>
  29. #include <linux/kernel.h>
  30. #include <linux/major.h>
  31. #include <linux/sched.h>
  32. #include <linux/slab.h>
  33. #include <linux/poll.h>
  34. #include <linux/fcntl.h>
  35. #include <linux/skbuff.h>
  36. #include <linux/socket.h>
  37. #include <linux/ioctl.h>
  38. #include <linux/file.h>
  39. #include <net/sock.h>
  40. #include <asm/system.h>
  41. #include <asm/uaccess.h>
  42. #include "bnep.h"
  43. #ifndef CONFIG_BNEP_DEBUG
  44. #undef  BT_DBG
  45. #define BT_DBG( A... )
  46. #endif
  47. static inline struct socket *socki_lookup(struct inode *inode)
  48. {
  49. return &inode->u.socket_i;
  50. }
  51. static struct socket *sockfd_lookup(int fd, int *err)
  52. {
  53. struct file *file;
  54. struct inode *inode;
  55. struct socket *sock;
  56. if (!(file = fget(fd))) {
  57. *err = -EBADF;
  58. return NULL;
  59. }
  60. inode = file->f_dentry->d_inode;
  61. if (!inode->i_sock || !(sock = socki_lookup(inode))) {
  62. *err = -ENOTSOCK;
  63. fput(file);
  64. return NULL;
  65. }
  66. if (sock->file != file) {
  67. printk(KERN_ERR "socki_lookup: socket file changed!n");
  68. sock->file = file;
  69. }
  70. return sock;
  71. }
  72.  
  73. static int bnep_sock_release(struct socket *sock)
  74. {
  75. struct sock *sk = sock->sk;
  76. BT_DBG("sock %p sk %p", sock, sk);
  77. if (!sk)
  78. return 0;
  79. sock_orphan(sk);
  80. sock_put(sk);
  81. MOD_DEC_USE_COUNT;
  82. return 0;
  83. }
  84. static int bnep_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
  85. {
  86. struct bnep_conlist_req cl;
  87. struct bnep_conadd_req  ca;
  88. struct bnep_condel_req  cd;
  89. struct bnep_coninfo ci;
  90. struct socket *nsock;
  91. int err;
  92. BT_DBG("cmd %x arg %lx", cmd, arg);
  93. switch (cmd) {
  94. case BNEPCONADD:
  95. if (!capable(CAP_NET_ADMIN))
  96. return -EACCES;
  97. if (copy_from_user(&ca, (void *) arg, sizeof(ca)))
  98. return -EFAULT;
  99. nsock = sockfd_lookup(ca.sock, &err);
  100. if (!nsock)
  101. return err;
  102. if (nsock->sk->state != BT_CONNECTED)
  103. return -EBADFD;
  104. err = bnep_add_connection(&ca, nsock);
  105. if (!err) {
  106.      if (copy_to_user((void *) arg, &ca, sizeof(ca)))
  107. err = -EFAULT;
  108. } else
  109. fput(nsock->file);
  110. return err;
  111. case BNEPCONDEL:
  112. if (!capable(CAP_NET_ADMIN))
  113. return -EACCES;
  114. if (copy_from_user(&cd, (void *) arg, sizeof(cd)))
  115. return -EFAULT;
  116. return bnep_del_connection(&cd);
  117. case BNEPGETCONLIST:
  118. if (copy_from_user(&cl, (void *) arg, sizeof(cl)))
  119. return -EFAULT;
  120. if (cl.cnum <= 0)
  121. return -EINVAL;
  122. err = bnep_get_conlist(&cl);
  123. if (!err && copy_to_user((void *) arg, &cl, sizeof(cl)))
  124. return -EFAULT;
  125. return err;
  126. case BNEPGETCONINFO:
  127. if (copy_from_user(&ci, (void *) arg, sizeof(ci)))
  128. return -EFAULT;
  129. err = bnep_get_coninfo(&ci);
  130. if (!err && copy_to_user((void *) arg, &ci, sizeof(ci)))
  131. return -EFAULT;
  132. return err;
  133. default:
  134. return -EINVAL;
  135. }
  136. return 0;
  137. }
  138. static struct proto_ops bnep_sock_ops = {
  139. family:     PF_BLUETOOTH,
  140. release:    bnep_sock_release,
  141. ioctl:      bnep_sock_ioctl,
  142. bind:       sock_no_bind,
  143. getname:    sock_no_getname,
  144. sendmsg:    sock_no_sendmsg,
  145. recvmsg:    sock_no_recvmsg,
  146. poll:       sock_no_poll,
  147. listen:     sock_no_listen,
  148. shutdown:   sock_no_shutdown,
  149. setsockopt: sock_no_setsockopt,
  150. getsockopt: sock_no_getsockopt,
  151. connect:    sock_no_connect,
  152. socketpair: sock_no_socketpair,
  153. accept:     sock_no_accept,
  154. mmap:       sock_no_mmap
  155. };
  156. static int bnep_sock_create(struct socket *sock, int protocol)
  157. {
  158. struct sock *sk;
  159. BT_DBG("sock %p", sock);
  160. if (sock->type != SOCK_RAW)
  161. return -ESOCKTNOSUPPORT;
  162. sock->ops = &bnep_sock_ops;
  163. if (!(sk = sk_alloc(PF_BLUETOOTH, GFP_KERNEL, 1)))
  164. return -ENOMEM;
  165. MOD_INC_USE_COUNT;
  166. sock->state = SS_UNCONNECTED;
  167. sock_init_data(sock, sk);
  168. sk->destruct = NULL;
  169. sk->protocol = protocol;
  170. return 0;
  171. }
  172. static struct net_proto_family bnep_sock_family_ops = {
  173. family: PF_BLUETOOTH,
  174. create: bnep_sock_create
  175. };
  176. int bnep_sock_init(void)
  177. {
  178. bluez_sock_register(BTPROTO_BNEP, &bnep_sock_family_ops);
  179. return 0;
  180. }
  181. int bnep_sock_cleanup(void)
  182. {
  183. if (bluez_sock_unregister(BTPROTO_BNEP))
  184. BT_ERR("Can't unregister BNEP socket");
  185. return 0;
  186. }