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>
28 static int hidp_sock_release(struct socket
*sock
)
30 struct sock
*sk
= sock
->sk
;
32 BT_DBG("sock %p sk %p", sock
, sk
);
43 static int hidp_sock_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
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
;
54 BT_DBG("cmd %x arg %lx", cmd
, arg
);
58 if (!capable(CAP_NET_ADMIN
))
61 if (copy_from_user(&ca
, argp
, sizeof(ca
)))
64 csock
= sockfd_lookup(ca
.ctrl_sock
, &err
);
68 isock
= sockfd_lookup(ca
.intr_sock
, &err
);
74 if (csock
->sk
->sk_state
!= BT_CONNECTED
||
75 isock
->sk
->sk_state
!= BT_CONNECTED
) {
81 err
= hidp_add_connection(&ca
, csock
, isock
);
83 if (copy_to_user(argp
, &ca
, sizeof(ca
)))
93 if (!capable(CAP_NET_ADMIN
))
96 if (copy_from_user(&cd
, argp
, sizeof(cd
)))
99 return hidp_del_connection(&cd
);
101 case HIDPGETCONNLIST
:
102 if (copy_from_user(&cl
, argp
, sizeof(cl
)))
108 err
= hidp_get_connlist(&cl
);
109 if (!err
&& copy_to_user(argp
, &cl
, sizeof(cl
)))
114 case HIDPGETCONNINFO
:
115 if (copy_from_user(&ci
, argp
, sizeof(ci
)))
118 err
= hidp_get_conninfo(&ci
);
119 if (!err
&& copy_to_user(argp
, &ci
, sizeof(ci
)))
129 struct compat_hidp_connadd_req
{
130 int ctrl_sock
; /* Connected control socket */
131 int intr_sock
; /* Connected interrupt socket */
134 compat_uptr_t rd_data
;
145 static int hidp_sock_compat_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
147 if (cmd
== HIDPGETCONNLIST
) {
148 struct hidp_connlist_req cl
;
152 if (get_user(cl
.cnum
, (u32 __user
*) arg
) ||
153 get_user(uci
, (u32 __user
*) (arg
+ 4)))
156 cl
.ci
= compat_ptr(uci
);
161 err
= hidp_get_connlist(&cl
);
163 if (!err
&& put_user(cl
.cnum
, (u32 __user
*) arg
))
167 } else if (cmd
== HIDPCONNADD
) {
168 struct compat_hidp_connadd_req ca
;
169 struct hidp_connadd_req __user
*uca
;
171 uca
= compat_alloc_user_space(sizeof(*uca
));
173 if (copy_from_user(&ca
, (void __user
*) arg
, sizeof(ca
)))
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
) ||
179 put_user(ca
.rd_size
, &uca
->rd_size
) ||
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))
191 arg
= (unsigned long) uca
;
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 */
198 return hidp_sock_ioctl(sock
, cmd
, arg
);
202 static const struct proto_ops hidp_sock_ops
= {
203 .family
= PF_BLUETOOTH
,
204 .owner
= THIS_MODULE
,
205 .release
= hidp_sock_release
,
206 .ioctl
= hidp_sock_ioctl
,
208 .compat_ioctl
= hidp_sock_compat_ioctl
,
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
,
225 static struct proto hidp_proto
= {
227 .owner
= THIS_MODULE
,
228 .obj_size
= sizeof(struct bt_sock
)
231 static int hidp_sock_create(struct net
*net
, struct socket
*sock
, int protocol
,
236 BT_DBG("sock %p", sock
);
238 if (sock
->type
!= SOCK_RAW
)
239 return -ESOCKTNOSUPPORT
;
241 sk
= sk_alloc(net
, PF_BLUETOOTH
, GFP_ATOMIC
, &hidp_proto
);
245 sock_init_data(sock
, sk
);
247 sock
->ops
= &hidp_sock_ops
;
249 sock
->state
= SS_UNCONNECTED
;
251 sock_reset_flag(sk
, SOCK_ZAPPED
);
253 sk
->sk_protocol
= protocol
;
254 sk
->sk_state
= BT_OPEN
;
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)
269 err
= proto_register(&hidp_proto
, 0);
273 err
= bt_sock_register(BTPROTO_HIDP
, &hidp_sock_family_ops
);
280 BT_ERR("Can't register HIDP socket");
281 proto_unregister(&hidp_proto
);
285 void __exit
hidp_cleanup_sockets(void)
287 if (bt_sock_unregister(BTPROTO_HIDP
) < 0)
288 BT_ERR("Can't unregister HIDP socket");
290 proto_unregister(&hidp_proto
);