x86/speculation/mds: Fix documentation typo
[linux/fpc-iii.git] / net / bluetooth / hidp / sock.c
blobcc80c76177b6e3f5e3343c758ebc462eee201fae
1 /*
2 HIDP implementation for Linux Bluetooth stack (BlueZ).
3 Copyright (C) 2003-2004 Marcel Holtmann <marcel@holtmann.org>
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;
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
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
16 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.
23 #include <linux/export.h>
24 #include <linux/file.h>
26 #include "hidp.h"
28 static struct bt_sock_list hidp_sk_list = {
29 .lock = __RW_LOCK_UNLOCKED(hidp_sk_list.lock)
32 static int hidp_sock_release(struct socket *sock)
34 struct sock *sk = sock->sk;
36 BT_DBG("sock %p sk %p", sock, sk);
38 if (!sk)
39 return 0;
41 bt_sock_unlink(&hidp_sk_list, sk);
43 sock_orphan(sk);
44 sock_put(sk);
46 return 0;
49 static int hidp_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
51 void __user *argp = (void __user *) arg;
52 struct hidp_connadd_req ca;
53 struct hidp_conndel_req cd;
54 struct hidp_connlist_req cl;
55 struct hidp_conninfo ci;
56 struct socket *csock;
57 struct socket *isock;
58 int err;
60 BT_DBG("cmd %x arg %lx", cmd, arg);
62 switch (cmd) {
63 case HIDPCONNADD:
64 if (!capable(CAP_NET_ADMIN))
65 return -EPERM;
67 if (copy_from_user(&ca, argp, sizeof(ca)))
68 return -EFAULT;
70 csock = sockfd_lookup(ca.ctrl_sock, &err);
71 if (!csock)
72 return err;
74 isock = sockfd_lookup(ca.intr_sock, &err);
75 if (!isock) {
76 sockfd_put(csock);
77 return err;
79 ca.name[sizeof(ca.name)-1] = 0;
81 err = hidp_connection_add(&ca, csock, isock);
82 if (!err && copy_to_user(argp, &ca, sizeof(ca)))
83 err = -EFAULT;
85 sockfd_put(csock);
86 sockfd_put(isock);
88 return err;
90 case HIDPCONNDEL:
91 if (!capable(CAP_NET_ADMIN))
92 return -EPERM;
94 if (copy_from_user(&cd, argp, sizeof(cd)))
95 return -EFAULT;
97 return hidp_connection_del(&cd);
99 case HIDPGETCONNLIST:
100 if (copy_from_user(&cl, argp, sizeof(cl)))
101 return -EFAULT;
103 if (cl.cnum <= 0)
104 return -EINVAL;
106 err = hidp_get_connlist(&cl);
107 if (!err && copy_to_user(argp, &cl, sizeof(cl)))
108 return -EFAULT;
110 return err;
112 case HIDPGETCONNINFO:
113 if (copy_from_user(&ci, argp, sizeof(ci)))
114 return -EFAULT;
116 err = hidp_get_conninfo(&ci);
117 if (!err && copy_to_user(argp, &ci, sizeof(ci)))
118 return -EFAULT;
120 return err;
123 return -EINVAL;
126 #ifdef CONFIG_COMPAT
127 struct compat_hidp_connadd_req {
128 int ctrl_sock; /* Connected control socket */
129 int intr_sock; /* Connected interrupt socket */
130 __u16 parser;
131 __u16 rd_size;
132 compat_uptr_t rd_data;
133 __u8 country;
134 __u8 subclass;
135 __u16 vendor;
136 __u16 product;
137 __u16 version;
138 __u32 flags;
139 __u32 idle_to;
140 char name[128];
143 static int hidp_sock_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
145 if (cmd == HIDPGETCONNLIST) {
146 struct hidp_connlist_req cl;
147 u32 uci;
148 int err;
150 if (get_user(cl.cnum, (u32 __user *) arg) ||
151 get_user(uci, (u32 __user *) (arg + 4)))
152 return -EFAULT;
154 cl.ci = compat_ptr(uci);
156 if (cl.cnum <= 0)
157 return -EINVAL;
159 err = hidp_get_connlist(&cl);
161 if (!err && put_user(cl.cnum, (u32 __user *) arg))
162 err = -EFAULT;
164 return err;
165 } else if (cmd == HIDPCONNADD) {
166 struct compat_hidp_connadd_req ca;
167 struct hidp_connadd_req __user *uca;
169 uca = compat_alloc_user_space(sizeof(*uca));
171 if (copy_from_user(&ca, (void __user *) arg, sizeof(ca)))
172 return -EFAULT;
174 if (put_user(ca.ctrl_sock, &uca->ctrl_sock) ||
175 put_user(ca.intr_sock, &uca->intr_sock) ||
176 put_user(ca.parser, &uca->parser) ||
177 put_user(ca.rd_size, &uca->rd_size) ||
178 put_user(compat_ptr(ca.rd_data), &uca->rd_data) ||
179 put_user(ca.country, &uca->country) ||
180 put_user(ca.subclass, &uca->subclass) ||
181 put_user(ca.vendor, &uca->vendor) ||
182 put_user(ca.product, &uca->product) ||
183 put_user(ca.version, &uca->version) ||
184 put_user(ca.flags, &uca->flags) ||
185 put_user(ca.idle_to, &uca->idle_to) ||
186 copy_to_user(&uca->name[0], &ca.name[0], 128))
187 return -EFAULT;
189 arg = (unsigned long) uca;
191 /* Fall through. We don't actually write back any _changes_
192 to the structure anyway, so there's no need to copy back
193 into the original compat version */
196 return hidp_sock_ioctl(sock, cmd, arg);
198 #endif
200 static const struct proto_ops hidp_sock_ops = {
201 .family = PF_BLUETOOTH,
202 .owner = THIS_MODULE,
203 .release = hidp_sock_release,
204 .ioctl = hidp_sock_ioctl,
205 #ifdef CONFIG_COMPAT
206 .compat_ioctl = hidp_sock_compat_ioctl,
207 #endif
208 .bind = sock_no_bind,
209 .getname = sock_no_getname,
210 .sendmsg = sock_no_sendmsg,
211 .recvmsg = sock_no_recvmsg,
212 .poll = sock_no_poll,
213 .listen = sock_no_listen,
214 .shutdown = sock_no_shutdown,
215 .setsockopt = sock_no_setsockopt,
216 .getsockopt = sock_no_getsockopt,
217 .connect = sock_no_connect,
218 .socketpair = sock_no_socketpair,
219 .accept = sock_no_accept,
220 .mmap = sock_no_mmap
223 static struct proto hidp_proto = {
224 .name = "HIDP",
225 .owner = THIS_MODULE,
226 .obj_size = sizeof(struct bt_sock)
229 static int hidp_sock_create(struct net *net, struct socket *sock, int protocol,
230 int kern)
232 struct sock *sk;
234 BT_DBG("sock %p", sock);
236 if (sock->type != SOCK_RAW)
237 return -ESOCKTNOSUPPORT;
239 sk = sk_alloc(net, PF_BLUETOOTH, GFP_ATOMIC, &hidp_proto, kern);
240 if (!sk)
241 return -ENOMEM;
243 sock_init_data(sock, sk);
245 sock->ops = &hidp_sock_ops;
247 sock->state = SS_UNCONNECTED;
249 sock_reset_flag(sk, SOCK_ZAPPED);
251 sk->sk_protocol = protocol;
252 sk->sk_state = BT_OPEN;
254 bt_sock_link(&hidp_sk_list, sk);
256 return 0;
259 static const struct net_proto_family hidp_sock_family_ops = {
260 .family = PF_BLUETOOTH,
261 .owner = THIS_MODULE,
262 .create = hidp_sock_create
265 int __init hidp_init_sockets(void)
267 int err;
269 err = proto_register(&hidp_proto, 0);
270 if (err < 0)
271 return err;
273 err = bt_sock_register(BTPROTO_HIDP, &hidp_sock_family_ops);
274 if (err < 0) {
275 BT_ERR("Can't register HIDP socket");
276 goto error;
279 err = bt_procfs_init(&init_net, "hidp", &hidp_sk_list, NULL);
280 if (err < 0) {
281 BT_ERR("Failed to create HIDP proc file");
282 bt_sock_unregister(BTPROTO_HIDP);
283 goto error;
286 BT_INFO("HIDP socket layer initialized");
288 return 0;
290 error:
291 proto_unregister(&hidp_proto);
292 return err;
295 void __exit hidp_cleanup_sockets(void)
297 bt_procfs_cleanup(&init_net, "hidp");
298 bt_sock_unregister(BTPROTO_HIDP);
299 proto_unregister(&hidp_proto);