blob: b5116fa9835e1d0875ace8529f1ff00d1a347a96 [file] [log] [blame]
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 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
7 Copyright (C) 2002 Maxim Krasnyansky <maxk@qualcomm.com>
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License version 2 as
11 published by the Free Software Foundation;
12
13 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
14 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
16 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090017 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
18 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
19 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090022 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
23 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 SOFTWARE IS DISCLAIMED.
25*/
26
Gustavo Padovan8c520a52012-05-23 04:04:22 -030027#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include "bnep.h"
31
Masatake YAMATO77cf5582012-07-26 01:27:35 +090032static struct bt_sock_list bnep_sk_list = {
33 .lock = __RW_LOCK_UNLOCKED(bnep_sk_list.lock)
34};
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static int bnep_sock_release(struct socket *sock)
37{
38 struct sock *sk = sock->sk;
39
40 BT_DBG("sock %p sk %p", sock, sk);
41
42 if (!sk)
43 return 0;
44
Masatake YAMATO77cf5582012-07-26 01:27:35 +090045 bt_sock_unlink(&bnep_sk_list, sk);
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 sock_orphan(sk);
48 sock_put(sk);
49 return 0;
50}
51
52static int bnep_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
53{
54 struct bnep_connlist_req cl;
55 struct bnep_connadd_req ca;
56 struct bnep_conndel_req cd;
57 struct bnep_conninfo ci;
58 struct socket *nsock;
59 void __user *argp = (void __user *)arg;
Grzegorz Kolodziejczyk836a0612015-04-03 12:14:55 +020060 __u32 supp_feat = BIT(BNEP_SETUP_RESPONSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 int err;
62
63 BT_DBG("cmd %x arg %lx", cmd, arg);
64
65 switch (cmd) {
66 case BNEPCONNADD:
67 if (!capable(CAP_NET_ADMIN))
Zhao Hongjiangbf5b30b2012-09-20 22:37:25 +000068 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 if (copy_from_user(&ca, argp, sizeof(ca)))
71 return -EFAULT;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 nsock = sockfd_lookup(ca.sock, &err);
74 if (!nsock)
75 return err;
76
77 if (nsock->sk->sk_state != BT_CONNECTED) {
Julia Lawall67b23212008-01-07 22:38:42 -080078 sockfd_put(nsock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return -EBADFD;
80 }
Vasiliy Kulikov43629f82011-02-14 13:54:31 +030081 ca.device[sizeof(ca.device)-1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 err = bnep_add_connection(&ca, nsock);
84 if (!err) {
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090085 if (copy_to_user(argp, &ca, sizeof(ca)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 err = -EFAULT;
87 } else
Julia Lawall67b23212008-01-07 22:38:42 -080088 sockfd_put(nsock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 return err;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 case BNEPCONNDEL:
93 if (!capable(CAP_NET_ADMIN))
Zhao Hongjiangbf5b30b2012-09-20 22:37:25 +000094 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 if (copy_from_user(&cd, argp, sizeof(cd)))
97 return -EFAULT;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return bnep_del_connection(&cd);
100
101 case BNEPGETCONNLIST:
102 if (copy_from_user(&cl, argp, sizeof(cl)))
103 return -EFAULT;
104
105 if (cl.cnum <= 0)
106 return -EINVAL;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 err = bnep_get_connlist(&cl);
109 if (!err && copy_to_user(argp, &cl, sizeof(cl)))
110 return -EFAULT;
111
112 return err;
113
114 case BNEPGETCONNINFO:
115 if (copy_from_user(&ci, argp, sizeof(ci)))
116 return -EFAULT;
117
118 err = bnep_get_conninfo(&ci);
119 if (!err && copy_to_user(argp, &ci, sizeof(ci)))
120 return -EFAULT;
121
122 return err;
123
Grzegorz Kolodziejczyk0477e2e2015-04-03 12:14:53 +0200124 case BNEPGETSUPPFEAT:
125 if (copy_to_user(argp, &supp_feat, sizeof(supp_feat)))
126 return -EFAULT;
127
128 return 0;
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 default:
131 return -EINVAL;
132 }
133
134 return 0;
135}
136
Marcel Holtmanne9c57022006-10-15 17:30:22 +0200137#ifdef CONFIG_COMPAT
138static int bnep_sock_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
139{
140 if (cmd == BNEPGETCONNLIST) {
141 struct bnep_connlist_req cl;
Johan Hedberg816a11d2012-02-26 13:04:52 +0200142 u32 uci;
Marcel Holtmanne9c57022006-10-15 17:30:22 +0200143 int err;
144
Johan Hedberg816a11d2012-02-26 13:04:52 +0200145 if (get_user(cl.cnum, (u32 __user *) arg) ||
Marcel Holtmanne9c57022006-10-15 17:30:22 +0200146 get_user(uci, (u32 __user *) (arg + 4)))
147 return -EFAULT;
148
149 cl.ci = compat_ptr(uci);
150
151 if (cl.cnum <= 0)
152 return -EINVAL;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900153
Marcel Holtmanne9c57022006-10-15 17:30:22 +0200154 err = bnep_get_connlist(&cl);
155
Johan Hedberg816a11d2012-02-26 13:04:52 +0200156 if (!err && put_user(cl.cnum, (u32 __user *) arg))
Marcel Holtmanne9c57022006-10-15 17:30:22 +0200157 err = -EFAULT;
158
159 return err;
160 }
161
162 return bnep_sock_ioctl(sock, cmd, arg);
163}
164#endif
165
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800166static const struct proto_ops bnep_sock_ops = {
Marcel Holtmanne9c57022006-10-15 17:30:22 +0200167 .family = PF_BLUETOOTH,
168 .owner = THIS_MODULE,
169 .release = bnep_sock_release,
170 .ioctl = bnep_sock_ioctl,
171#ifdef CONFIG_COMPAT
172 .compat_ioctl = bnep_sock_compat_ioctl,
173#endif
174 .bind = sock_no_bind,
175 .getname = sock_no_getname,
176 .sendmsg = sock_no_sendmsg,
177 .recvmsg = sock_no_recvmsg,
178 .poll = sock_no_poll,
179 .listen = sock_no_listen,
180 .shutdown = sock_no_shutdown,
181 .setsockopt = sock_no_setsockopt,
182 .getsockopt = sock_no_getsockopt,
183 .connect = sock_no_connect,
184 .socketpair = sock_no_socketpair,
185 .accept = sock_no_accept,
186 .mmap = sock_no_mmap
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187};
188
189static struct proto bnep_proto = {
190 .name = "BNEP",
191 .owner = THIS_MODULE,
192 .obj_size = sizeof(struct bt_sock)
193};
194
Eric Paris3f378b62009-11-05 22:18:14 -0800195static int bnep_sock_create(struct net *net, struct socket *sock, int protocol,
196 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 struct sock *sk;
199
200 BT_DBG("sock %p", sock);
201
202 if (sock->type != SOCK_RAW)
203 return -ESOCKTNOSUPPORT;
204
Eric W. Biederman11aa9c22015-05-08 21:09:13 -0500205 sk = sk_alloc(net, PF_BLUETOOTH, GFP_ATOMIC, &bnep_proto, kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (!sk)
207 return -ENOMEM;
208
209 sock_init_data(sock, sk);
210
211 sock->ops = &bnep_sock_ops;
212
213 sock->state = SS_UNCONNECTED;
214
215 sock_reset_flag(sk, SOCK_ZAPPED);
216
217 sk->sk_protocol = protocol;
218 sk->sk_state = BT_OPEN;
219
Masatake YAMATO77cf5582012-07-26 01:27:35 +0900220 bt_sock_link(&bnep_sk_list, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return 0;
222}
223
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +0000224static const struct net_proto_family bnep_sock_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 .family = PF_BLUETOOTH,
226 .owner = THIS_MODULE,
227 .create = bnep_sock_create
228};
229
230int __init bnep_sock_init(void)
231{
232 int err;
233
234 err = proto_register(&bnep_proto, 0);
235 if (err < 0)
236 return err;
237
238 err = bt_sock_register(BTPROTO_BNEP, &bnep_sock_family_ops);
Masatake YAMATO77cf5582012-07-26 01:27:35 +0900239 if (err < 0) {
240 BT_ERR("Can't register BNEP socket");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 goto error;
Masatake YAMATO77cf5582012-07-26 01:27:35 +0900242 }
243
Al Virob0316612013-04-04 19:14:33 -0400244 err = bt_procfs_init(&init_net, "bnep", &bnep_sk_list, NULL);
Masatake YAMATO77cf5582012-07-26 01:27:35 +0900245 if (err < 0) {
246 BT_ERR("Failed to create BNEP proc file");
247 bt_sock_unregister(BTPROTO_BNEP);
248 goto error;
249 }
250
251 BT_INFO("BNEP socket layer initialized");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 return 0;
254
255error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 proto_unregister(&bnep_proto);
257 return err;
258}
259
Tobias Klausera4e2acf2008-03-05 18:47:40 -0800260void __exit bnep_sock_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Masatake YAMATO77cf5582012-07-26 01:27:35 +0900262 bt_procfs_cleanup(&init_net, "bnep");
David Herrmann5e9d7f82013-02-24 19:36:51 +0100263 bt_sock_unregister(BTPROTO_BNEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 proto_unregister(&bnep_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}