2 BNEP implementation for Linux Bluetooth stack (BlueZ).
3 Copyright (C) 2001-2002 Inventel Systemes
5 David Libault <david.libault@inventel.fr>
7 Copyright (C) 2002 Maxim Krasnyansky <maxk@qualcomm.com>
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;
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
17 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
20 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
23 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
24 SOFTWARE IS DISCLAIMED.
27 #include <linux/module.h>
29 #include <linux/types.h>
30 #include <linux/capability.h>
31 #include <linux/errno.h>
32 #include <linux/kernel.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 <linux/init.h>
40 #include <linux/compat.h>
41 #include <linux/gfp.h>
42 #include <linux/uaccess.h>
45 #include <asm/system.h>
49 static int bnep_sock_release(struct socket
*sock
)
51 struct sock
*sk
= sock
->sk
;
53 BT_DBG("sock %p sk %p", sock
, sk
);
63 static int bnep_sock_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
65 struct bnep_connlist_req cl
;
66 struct bnep_connadd_req ca
;
67 struct bnep_conndel_req cd
;
68 struct bnep_conninfo ci
;
70 void __user
*argp
= (void __user
*)arg
;
73 BT_DBG("cmd %x arg %lx", cmd
, arg
);
77 if (!capable(CAP_NET_ADMIN
))
80 if (copy_from_user(&ca
, argp
, sizeof(ca
)))
83 nsock
= sockfd_lookup(ca
.sock
, &err
);
87 if (nsock
->sk
->sk_state
!= BT_CONNECTED
) {
91 ca
.device
[sizeof(ca
.device
)-1] = 0;
93 err
= bnep_add_connection(&ca
, nsock
);
95 if (copy_to_user(argp
, &ca
, sizeof(ca
)))
103 if (!capable(CAP_NET_ADMIN
))
106 if (copy_from_user(&cd
, argp
, sizeof(cd
)))
109 return bnep_del_connection(&cd
);
111 case BNEPGETCONNLIST
:
112 if (copy_from_user(&cl
, argp
, sizeof(cl
)))
118 err
= bnep_get_connlist(&cl
);
119 if (!err
&& copy_to_user(argp
, &cl
, sizeof(cl
)))
124 case BNEPGETCONNINFO
:
125 if (copy_from_user(&ci
, argp
, sizeof(ci
)))
128 err
= bnep_get_conninfo(&ci
);
129 if (!err
&& copy_to_user(argp
, &ci
, sizeof(ci
)))
142 static int bnep_sock_compat_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
144 if (cmd
== BNEPGETCONNLIST
) {
145 struct bnep_connlist_req cl
;
149 if (get_user(cl
.cnum
, (uint32_t __user
*) arg
) ||
150 get_user(uci
, (u32 __user
*) (arg
+ 4)))
153 cl
.ci
= compat_ptr(uci
);
158 err
= bnep_get_connlist(&cl
);
160 if (!err
&& put_user(cl
.cnum
, (uint32_t __user
*) arg
))
166 return bnep_sock_ioctl(sock
, cmd
, arg
);
170 static const struct proto_ops bnep_sock_ops
= {
171 .family
= PF_BLUETOOTH
,
172 .owner
= THIS_MODULE
,
173 .release
= bnep_sock_release
,
174 .ioctl
= bnep_sock_ioctl
,
176 .compat_ioctl
= bnep_sock_compat_ioctl
,
178 .bind
= sock_no_bind
,
179 .getname
= sock_no_getname
,
180 .sendmsg
= sock_no_sendmsg
,
181 .recvmsg
= sock_no_recvmsg
,
182 .poll
= sock_no_poll
,
183 .listen
= sock_no_listen
,
184 .shutdown
= sock_no_shutdown
,
185 .setsockopt
= sock_no_setsockopt
,
186 .getsockopt
= sock_no_getsockopt
,
187 .connect
= sock_no_connect
,
188 .socketpair
= sock_no_socketpair
,
189 .accept
= sock_no_accept
,
193 static struct proto bnep_proto
= {
195 .owner
= THIS_MODULE
,
196 .obj_size
= sizeof(struct bt_sock
)
199 static int bnep_sock_create(struct net
*net
, struct socket
*sock
, int protocol
,
204 BT_DBG("sock %p", sock
);
206 if (sock
->type
!= SOCK_RAW
)
207 return -ESOCKTNOSUPPORT
;
209 sk
= sk_alloc(net
, PF_BLUETOOTH
, GFP_ATOMIC
, &bnep_proto
);
213 sock_init_data(sock
, sk
);
215 sock
->ops
= &bnep_sock_ops
;
217 sock
->state
= SS_UNCONNECTED
;
219 sock_reset_flag(sk
, SOCK_ZAPPED
);
221 sk
->sk_protocol
= protocol
;
222 sk
->sk_state
= BT_OPEN
;
227 static const struct net_proto_family bnep_sock_family_ops
= {
228 .family
= PF_BLUETOOTH
,
229 .owner
= THIS_MODULE
,
230 .create
= bnep_sock_create
233 int __init
bnep_sock_init(void)
237 err
= proto_register(&bnep_proto
, 0);
241 err
= bt_sock_register(BTPROTO_BNEP
, &bnep_sock_family_ops
);
248 BT_ERR("Can't register BNEP socket");
249 proto_unregister(&bnep_proto
);
253 void __exit
bnep_sock_cleanup(void)
255 if (bt_sock_unregister(BTPROTO_BNEP
) < 0)
256 BT_ERR("Can't unregister BNEP socket");
258 proto_unregister(&bnep_proto
);