YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | HIDP implementation for Linux Bluetooth stack (BlueZ). |
| 3 | Copyright (C) 2003-2004 Marcel Holtmann <marcel@holtmann.org> |
| 4 | |
| 5 | This program is free software; you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License version 2 as |
| 7 | published by the Free Software Foundation; |
| 8 | |
| 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 10 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 11 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. |
| 12 | IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 13 | CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES |
| 14 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 15 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 17 | |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 18 | ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, |
| 19 | COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | SOFTWARE IS DISCLAIMED. |
| 21 | */ |
| 22 | |
Gustavo Padovan | 8c520a5 | 2012-05-23 04:04:22 -0300 | [diff] [blame] | 23 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | #include "hidp.h" |
| 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | static int hidp_sock_release(struct socket *sock) |
| 29 | { |
| 30 | struct sock *sk = sock->sk; |
| 31 | |
| 32 | BT_DBG("sock %p sk %p", sock, sk); |
| 33 | |
| 34 | if (!sk) |
| 35 | return 0; |
| 36 | |
| 37 | sock_orphan(sk); |
| 38 | sock_put(sk); |
| 39 | |
| 40 | return 0; |
| 41 | } |
| 42 | |
| 43 | static int hidp_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) |
| 44 | { |
| 45 | void __user *argp = (void __user *) arg; |
| 46 | struct hidp_connadd_req ca; |
| 47 | struct hidp_conndel_req cd; |
| 48 | struct hidp_connlist_req cl; |
| 49 | struct hidp_conninfo ci; |
| 50 | struct socket *csock; |
| 51 | struct socket *isock; |
| 52 | int err; |
| 53 | |
| 54 | BT_DBG("cmd %x arg %lx", cmd, arg); |
| 55 | |
| 56 | switch (cmd) { |
| 57 | case HIDPCONNADD: |
| 58 | if (!capable(CAP_NET_ADMIN)) |
Zhao Hongjiang | bf5b30b | 2012-09-20 22:37:25 +0000 | [diff] [blame^] | 59 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | if (copy_from_user(&ca, argp, sizeof(ca))) |
| 62 | return -EFAULT; |
| 63 | |
| 64 | csock = sockfd_lookup(ca.ctrl_sock, &err); |
| 65 | if (!csock) |
| 66 | return err; |
| 67 | |
| 68 | isock = sockfd_lookup(ca.intr_sock, &err); |
| 69 | if (!isock) { |
Julia Lawall | 67b2321 | 2008-01-07 22:38:42 -0800 | [diff] [blame] | 70 | sockfd_put(csock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | return err; |
| 72 | } |
| 73 | |
Szymon Janc | 17f09a7 | 2011-03-21 14:20:01 +0100 | [diff] [blame] | 74 | if (csock->sk->sk_state != BT_CONNECTED || |
| 75 | isock->sk->sk_state != BT_CONNECTED) { |
Julia Lawall | 67b2321 | 2008-01-07 22:38:42 -0800 | [diff] [blame] | 76 | sockfd_put(csock); |
| 77 | sockfd_put(isock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | return -EBADFD; |
| 79 | } |
| 80 | |
| 81 | err = hidp_add_connection(&ca, csock, isock); |
| 82 | if (!err) { |
| 83 | if (copy_to_user(argp, &ca, sizeof(ca))) |
| 84 | err = -EFAULT; |
| 85 | } else { |
Julia Lawall | 67b2321 | 2008-01-07 22:38:42 -0800 | [diff] [blame] | 86 | sockfd_put(csock); |
| 87 | sockfd_put(isock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | return err; |
| 91 | |
| 92 | case HIDPCONNDEL: |
| 93 | if (!capable(CAP_NET_ADMIN)) |
Zhao Hongjiang | bf5b30b | 2012-09-20 22:37:25 +0000 | [diff] [blame^] | 94 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | if (copy_from_user(&cd, argp, sizeof(cd))) |
| 97 | return -EFAULT; |
| 98 | |
| 99 | return hidp_del_connection(&cd); |
| 100 | |
| 101 | case HIDPGETCONNLIST: |
| 102 | if (copy_from_user(&cl, argp, sizeof(cl))) |
| 103 | return -EFAULT; |
| 104 | |
| 105 | if (cl.cnum <= 0) |
| 106 | return -EINVAL; |
| 107 | |
| 108 | err = hidp_get_connlist(&cl); |
| 109 | if (!err && copy_to_user(argp, &cl, sizeof(cl))) |
| 110 | return -EFAULT; |
| 111 | |
| 112 | return err; |
| 113 | |
| 114 | case HIDPGETCONNINFO: |
| 115 | if (copy_from_user(&ci, argp, sizeof(ci))) |
| 116 | return -EFAULT; |
| 117 | |
| 118 | err = hidp_get_conninfo(&ci); |
| 119 | if (!err && copy_to_user(argp, &ci, sizeof(ci))) |
| 120 | return -EFAULT; |
| 121 | |
| 122 | return err; |
| 123 | } |
| 124 | |
| 125 | return -EINVAL; |
| 126 | } |
| 127 | |
Marcel Holtmann | e9c5702 | 2006-10-15 17:30:22 +0200 | [diff] [blame] | 128 | #ifdef CONFIG_COMPAT |
| 129 | struct compat_hidp_connadd_req { |
Szymon Janc | 17f09a7 | 2011-03-21 14:20:01 +0100 | [diff] [blame] | 130 | int ctrl_sock; /* Connected control socket */ |
| 131 | int intr_sock; /* Connected interrupt socket */ |
Marcel Holtmann | e9c5702 | 2006-10-15 17:30:22 +0200 | [diff] [blame] | 132 | __u16 parser; |
| 133 | __u16 rd_size; |
| 134 | compat_uptr_t rd_data; |
| 135 | __u8 country; |
| 136 | __u8 subclass; |
| 137 | __u16 vendor; |
| 138 | __u16 product; |
| 139 | __u16 version; |
| 140 | __u32 flags; |
| 141 | __u32 idle_to; |
| 142 | char name[128]; |
| 143 | }; |
| 144 | |
| 145 | static int hidp_sock_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) |
| 146 | { |
| 147 | if (cmd == HIDPGETCONNLIST) { |
| 148 | struct hidp_connlist_req cl; |
Johan Hedberg | 816a11d | 2012-02-26 13:04:52 +0200 | [diff] [blame] | 149 | u32 uci; |
Marcel Holtmann | e9c5702 | 2006-10-15 17:30:22 +0200 | [diff] [blame] | 150 | int err; |
| 151 | |
Johan Hedberg | 816a11d | 2012-02-26 13:04:52 +0200 | [diff] [blame] | 152 | if (get_user(cl.cnum, (u32 __user *) arg) || |
Marcel Holtmann | e9c5702 | 2006-10-15 17:30:22 +0200 | [diff] [blame] | 153 | get_user(uci, (u32 __user *) (arg + 4))) |
| 154 | return -EFAULT; |
| 155 | |
| 156 | cl.ci = compat_ptr(uci); |
| 157 | |
| 158 | if (cl.cnum <= 0) |
| 159 | return -EINVAL; |
| 160 | |
| 161 | err = hidp_get_connlist(&cl); |
| 162 | |
Johan Hedberg | 816a11d | 2012-02-26 13:04:52 +0200 | [diff] [blame] | 163 | if (!err && put_user(cl.cnum, (u32 __user *) arg)) |
Marcel Holtmann | e9c5702 | 2006-10-15 17:30:22 +0200 | [diff] [blame] | 164 | err = -EFAULT; |
| 165 | |
| 166 | return err; |
| 167 | } else if (cmd == HIDPCONNADD) { |
| 168 | struct compat_hidp_connadd_req ca; |
| 169 | struct hidp_connadd_req __user *uca; |
| 170 | |
| 171 | uca = compat_alloc_user_space(sizeof(*uca)); |
| 172 | |
Al Viro | 55e7474 | 2007-02-09 16:38:00 +0000 | [diff] [blame] | 173 | if (copy_from_user(&ca, (void __user *) arg, sizeof(ca))) |
Marcel Holtmann | e9c5702 | 2006-10-15 17:30:22 +0200 | [diff] [blame] | 174 | return -EFAULT; |
| 175 | |
| 176 | if (put_user(ca.ctrl_sock, &uca->ctrl_sock) || |
| 177 | put_user(ca.intr_sock, &uca->intr_sock) || |
| 178 | put_user(ca.parser, &uca->parser) || |
Marcel Holtmann | a83d6c0d | 2007-02-17 23:58:44 +0100 | [diff] [blame] | 179 | put_user(ca.rd_size, &uca->rd_size) || |
Marcel Holtmann | e9c5702 | 2006-10-15 17:30:22 +0200 | [diff] [blame] | 180 | put_user(compat_ptr(ca.rd_data), &uca->rd_data) || |
| 181 | put_user(ca.country, &uca->country) || |
| 182 | put_user(ca.subclass, &uca->subclass) || |
| 183 | put_user(ca.vendor, &uca->vendor) || |
| 184 | put_user(ca.product, &uca->product) || |
| 185 | put_user(ca.version, &uca->version) || |
| 186 | put_user(ca.flags, &uca->flags) || |
| 187 | put_user(ca.idle_to, &uca->idle_to) || |
| 188 | copy_to_user(&uca->name[0], &ca.name[0], 128)) |
| 189 | return -EFAULT; |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 190 | |
Marcel Holtmann | e9c5702 | 2006-10-15 17:30:22 +0200 | [diff] [blame] | 191 | arg = (unsigned long) uca; |
| 192 | |
| 193 | /* Fall through. We don't actually write back any _changes_ |
| 194 | to the structure anyway, so there's no need to copy back |
| 195 | into the original compat version */ |
| 196 | } |
| 197 | |
| 198 | return hidp_sock_ioctl(sock, cmd, arg); |
| 199 | } |
| 200 | #endif |
| 201 | |
Eric Dumazet | 90ddc4f | 2005-12-22 12:49:22 -0800 | [diff] [blame] | 202 | static const struct proto_ops hidp_sock_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | .family = PF_BLUETOOTH, |
| 204 | .owner = THIS_MODULE, |
| 205 | .release = hidp_sock_release, |
| 206 | .ioctl = hidp_sock_ioctl, |
Marcel Holtmann | e9c5702 | 2006-10-15 17:30:22 +0200 | [diff] [blame] | 207 | #ifdef CONFIG_COMPAT |
| 208 | .compat_ioctl = hidp_sock_compat_ioctl, |
| 209 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | .bind = sock_no_bind, |
| 211 | .getname = sock_no_getname, |
| 212 | .sendmsg = sock_no_sendmsg, |
| 213 | .recvmsg = sock_no_recvmsg, |
| 214 | .poll = sock_no_poll, |
| 215 | .listen = sock_no_listen, |
| 216 | .shutdown = sock_no_shutdown, |
| 217 | .setsockopt = sock_no_setsockopt, |
| 218 | .getsockopt = sock_no_getsockopt, |
| 219 | .connect = sock_no_connect, |
| 220 | .socketpair = sock_no_socketpair, |
| 221 | .accept = sock_no_accept, |
| 222 | .mmap = sock_no_mmap |
| 223 | }; |
| 224 | |
| 225 | static struct proto hidp_proto = { |
| 226 | .name = "HIDP", |
| 227 | .owner = THIS_MODULE, |
| 228 | .obj_size = sizeof(struct bt_sock) |
| 229 | }; |
| 230 | |
Eric Paris | 3f378b6 | 2009-11-05 22:18:14 -0800 | [diff] [blame] | 231 | static int hidp_sock_create(struct net *net, struct socket *sock, int protocol, |
| 232 | int kern) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | { |
| 234 | struct sock *sk; |
| 235 | |
| 236 | BT_DBG("sock %p", sock); |
| 237 | |
| 238 | if (sock->type != SOCK_RAW) |
| 239 | return -ESOCKTNOSUPPORT; |
| 240 | |
Pavel Emelyanov | 6257ff2 | 2007-11-01 00:39:31 -0700 | [diff] [blame] | 241 | sk = sk_alloc(net, PF_BLUETOOTH, GFP_ATOMIC, &hidp_proto); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | if (!sk) |
| 243 | return -ENOMEM; |
| 244 | |
| 245 | sock_init_data(sock, sk); |
| 246 | |
| 247 | sock->ops = &hidp_sock_ops; |
| 248 | |
| 249 | sock->state = SS_UNCONNECTED; |
| 250 | |
| 251 | sock_reset_flag(sk, SOCK_ZAPPED); |
| 252 | |
| 253 | sk->sk_protocol = protocol; |
| 254 | sk->sk_state = BT_OPEN; |
| 255 | |
| 256 | return 0; |
| 257 | } |
| 258 | |
Stephen Hemminger | ec1b4cf | 2009-10-05 05:58:39 +0000 | [diff] [blame] | 259 | static const struct net_proto_family hidp_sock_family_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | .family = PF_BLUETOOTH, |
| 261 | .owner = THIS_MODULE, |
| 262 | .create = hidp_sock_create |
| 263 | }; |
| 264 | |
| 265 | int __init hidp_init_sockets(void) |
| 266 | { |
| 267 | int err; |
| 268 | |
| 269 | err = proto_register(&hidp_proto, 0); |
| 270 | if (err < 0) |
| 271 | return err; |
| 272 | |
| 273 | err = bt_sock_register(BTPROTO_HIDP, &hidp_sock_family_ops); |
| 274 | if (err < 0) |
| 275 | goto error; |
| 276 | |
| 277 | return 0; |
| 278 | |
| 279 | error: |
| 280 | BT_ERR("Can't register HIDP socket"); |
| 281 | proto_unregister(&hidp_proto); |
| 282 | return err; |
| 283 | } |
| 284 | |
| 285 | void __exit hidp_cleanup_sockets(void) |
| 286 | { |
| 287 | if (bt_sock_unregister(BTPROTO_HIDP) < 0) |
| 288 | BT_ERR("Can't unregister HIDP socket"); |
| 289 | |
| 290 | proto_unregister(&hidp_proto); |
| 291 | } |