2 CMTP implementation for Linux Bluetooth stack (BlueZ).
3 Copyright (C) 2002-2003 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/module.h>
25 #include <linux/types.h>
26 #include <linux/errno.h>
27 #include <linux/kernel.h>
28 #include <linux/sched.h>
29 #include <linux/slab.h>
30 #include <linux/poll.h>
31 #include <linux/fcntl.h>
32 #include <linux/freezer.h>
33 #include <linux/skbuff.h>
34 #include <linux/socket.h>
35 #include <linux/ioctl.h>
36 #include <linux/file.h>
37 #include <linux/init.h>
40 #include <linux/isdn/capilli.h>
42 #include <net/bluetooth/bluetooth.h>
43 #include <net/bluetooth/l2cap.h>
49 static DECLARE_RWSEM(cmtp_session_sem);
50 static LIST_HEAD(cmtp_session_list);
52 static struct cmtp_session *__cmtp_get_session(bdaddr_t *bdaddr)
54 struct cmtp_session *session;
59 list_for_each(p, &cmtp_session_list) {
60 session = list_entry(p, struct cmtp_session, list);
61 if (!bacmp(bdaddr, &session->bdaddr))
67 static void __cmtp_link_session(struct cmtp_session *session)
69 __module_get(THIS_MODULE);
70 list_add(&session->list, &cmtp_session_list);
73 static void __cmtp_unlink_session(struct cmtp_session *session)
75 list_del(&session->list);
76 module_put(THIS_MODULE);
79 static void __cmtp_copy_session(struct cmtp_session *session, struct cmtp_conninfo *ci)
81 bacpy(&ci->bdaddr, &session->bdaddr);
83 ci->flags = session->flags;
84 ci->state = session->state;
86 ci->num = session->num;
90 static inline int cmtp_alloc_block_id(struct cmtp_session *session)
94 for (i = 0; i < 16; i++)
95 if (!test_and_set_bit(i, &session->blockids)) {
103 static inline void cmtp_free_block_id(struct cmtp_session *session, int id)
105 clear_bit(id, &session->blockids);
108 static inline void cmtp_add_msgpart(struct cmtp_session *session, int id, const unsigned char *buf, int count)
110 struct sk_buff *skb = session->reassembly[id], *nskb;
113 BT_DBG("session %p buf %p count %d", session, buf, count);
115 size = (skb) ? skb->len + count : count;
117 if (!(nskb = alloc_skb(size, GFP_ATOMIC))) {
118 BT_ERR("Can't allocate memory for CAPI message");
122 if (skb && (skb->len > 0))
123 skb_copy_from_linear_data(skb, skb_put(nskb, skb->len), skb->len);
125 memcpy(skb_put(nskb, count), buf, count);
127 session->reassembly[id] = nskb;
132 static inline int cmtp_recv_frame(struct cmtp_session *session, struct sk_buff *skb)
134 __u8 hdr, hdrlen, id;
137 BT_DBG("session %p skb %p len %d", session, skb, skb->len);
139 while (skb->len > 0) {
142 switch (hdr & 0xc0) {
149 len = skb->data[1] | (skb->data[2] << 8);
157 id = (hdr & 0x3c) >> 2;
159 BT_DBG("hdr 0x%02x hdrlen %d len %d id %d", hdr, hdrlen, len, id);
161 if (hdrlen + len > skb->len) {
162 BT_ERR("Wrong size or header information in CMTP frame");
167 skb_pull(skb, hdrlen);
171 switch (hdr & 0x03) {
173 cmtp_add_msgpart(session, id, skb->data + hdrlen, len);
174 cmtp_recv_capimsg(session, session->reassembly[id]);
175 session->reassembly[id] = NULL;
178 cmtp_add_msgpart(session, id, skb->data + hdrlen, len);
181 if (session->reassembly[id] != NULL)
182 kfree_skb(session->reassembly[id]);
183 session->reassembly[id] = NULL;
187 skb_pull(skb, hdrlen + len);
194 static int cmtp_send_frame(struct cmtp_session *session, unsigned char *data, int len)
196 struct socket *sock = session->sock;
197 struct kvec iv = { data, len };
200 BT_DBG("session %p data %p len %d", session, data, len);
205 memset(&msg, 0, sizeof(msg));
207 return kernel_sendmsg(sock, &msg, &iv, 1, len);
210 static void cmtp_process_transmit(struct cmtp_session *session)
212 struct sk_buff *skb, *nskb;
214 unsigned int size, tail;
216 BT_DBG("session %p", session);
218 if (!(nskb = alloc_skb(session->mtu, GFP_ATOMIC))) {
219 BT_ERR("Can't allocate memory for new frame");
223 while ((skb = skb_dequeue(&session->transmit))) {
224 struct cmtp_scb *scb = (void *) skb->cb;
226 if ((tail = (session->mtu - nskb->len)) < 5) {
227 cmtp_send_frame(session, nskb->data, nskb->len);
232 size = min_t(uint, ((tail < 258) ? (tail - 2) : (tail - 3)), skb->len);
234 if ((scb->id < 0) && ((scb->id = cmtp_alloc_block_id(session)) < 0)) {
235 skb_queue_head(&session->transmit, skb);
240 hdr = skb_put(nskb, 2);
242 | ((scb->id << 2) & 0x3c)
243 | ((skb->len == size) ? 0x00 : 0x01);
246 hdr = skb_put(nskb, 3);
248 | ((scb->id << 2) & 0x3c)
249 | ((skb->len == size) ? 0x00 : 0x01);
250 hdr[1] = size & 0xff;
254 skb_copy_from_linear_data(skb, skb_put(nskb, size), size);
258 skb_queue_head(&session->transmit, skb);
260 cmtp_free_block_id(session, scb->id);
262 cmtp_send_frame(session, nskb->data, nskb->len);
269 cmtp_send_frame(session, nskb->data, nskb->len);
274 static int cmtp_session(void *arg)
276 struct cmtp_session *session = arg;
277 struct sock *sk = session->sock->sk;
281 BT_DBG("session %p", session);
283 daemonize("kcmtpd_ctr_%d", session->num);
284 set_user_nice(current, -15);
286 init_waitqueue_entry(&wait, current);
287 add_wait_queue(sk->sk_sleep, &wait);
288 while (!atomic_read(&session->terminate)) {
289 set_current_state(TASK_INTERRUPTIBLE);
291 if (sk->sk_state != BT_CONNECTED)
294 while ((skb = skb_dequeue(&sk->sk_receive_queue))) {
296 cmtp_recv_frame(session, skb);
299 cmtp_process_transmit(session);
303 set_current_state(TASK_RUNNING);
304 remove_wait_queue(sk->sk_sleep, &wait);
306 down_write(&cmtp_session_sem);
308 if (!(session->flags & (1 << CMTP_LOOPBACK)))
309 cmtp_detach_device(session);
311 fput(session->sock->file);
313 __cmtp_unlink_session(session);
315 up_write(&cmtp_session_sem);
321 int cmtp_add_connection(struct cmtp_connadd_req *req, struct socket *sock)
323 struct cmtp_session *session, *s;
329 baswap(&src, &bt_sk(sock->sk)->src);
330 baswap(&dst, &bt_sk(sock->sk)->dst);
332 session = kzalloc(sizeof(struct cmtp_session), GFP_KERNEL);
336 down_write(&cmtp_session_sem);
338 s = __cmtp_get_session(&bt_sk(sock->sk)->dst);
339 if (s && s->state == BT_CONNECTED) {
344 bacpy(&session->bdaddr, &bt_sk(sock->sk)->dst);
346 session->mtu = min_t(uint, l2cap_pi(sock->sk)->omtu, l2cap_pi(sock->sk)->imtu);
348 BT_DBG("mtu %d", session->mtu);
350 sprintf(session->name, "%s", batostr(&dst));
352 session->sock = sock;
353 session->state = BT_CONFIG;
355 init_waitqueue_head(&session->wait);
357 session->msgnum = CMTP_INITIAL_MSGNUM;
359 INIT_LIST_HEAD(&session->applications);
361 skb_queue_head_init(&session->transmit);
363 for (i = 0; i < 16; i++)
364 session->reassembly[i] = NULL;
366 session->flags = req->flags;
368 __cmtp_link_session(session);
370 err = kernel_thread(cmtp_session, session, CLONE_KERNEL);
374 if (!(session->flags & (1 << CMTP_LOOPBACK))) {
375 err = cmtp_attach_device(session);
380 up_write(&cmtp_session_sem);
384 cmtp_detach_device(session);
387 __cmtp_unlink_session(session);
390 up_write(&cmtp_session_sem);
395 int cmtp_del_connection(struct cmtp_conndel_req *req)
397 struct cmtp_session *session;
402 down_read(&cmtp_session_sem);
404 session = __cmtp_get_session(&req->bdaddr);
406 /* Flush the transmit queue */
407 skb_queue_purge(&session->transmit);
409 /* Kill session thread */
410 atomic_inc(&session->terminate);
411 cmtp_schedule(session);
415 up_read(&cmtp_session_sem);
419 int cmtp_get_connlist(struct cmtp_connlist_req *req)
426 down_read(&cmtp_session_sem);
428 list_for_each(p, &cmtp_session_list) {
429 struct cmtp_session *session;
430 struct cmtp_conninfo ci;
432 session = list_entry(p, struct cmtp_session, list);
434 __cmtp_copy_session(session, &ci);
436 if (copy_to_user(req->ci, &ci, sizeof(ci))) {
441 if (++n >= req->cnum)
448 up_read(&cmtp_session_sem);
452 int cmtp_get_conninfo(struct cmtp_conninfo *ci)
454 struct cmtp_session *session;
457 down_read(&cmtp_session_sem);
459 session = __cmtp_get_session(&ci->bdaddr);
461 __cmtp_copy_session(session, ci);
465 up_read(&cmtp_session_sem);
470 static int __init cmtp_init(void)
474 BT_INFO("CMTP (CAPI Emulation) ver %s", VERSION);
481 static void __exit cmtp_exit(void)
483 cmtp_cleanup_sockets();
486 module_init(cmtp_init);
487 module_exit(cmtp_exit);
489 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
490 MODULE_DESCRIPTION("Bluetooth CMTP ver " VERSION);
491 MODULE_VERSION(VERSION);
492 MODULE_LICENSE("GPL");
493 MODULE_ALIAS("bt-proto-5");