Merge from vendor branch PKGSRC:
[netbsd-mini2440.git] / sys / netbt / rfcomm_session.c
blobc5ed6f022e8ebd828dc73399770e0768a1570d96
1 /* $NetBSD: rfcomm_session.c,v 1.14 2008/08/06 15:01:24 plunky Exp $ */
3 /*-
4 * Copyright (c) 2006 Itronix Inc.
5 * All rights reserved.
7 * Written by Iain Hibbert for Itronix Inc.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. The name of Itronix Inc. may not be used to endorse
18 * or promote products derived from this software without specific
19 * prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY ITRONIX INC. ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
23 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ITRONIX INC. BE LIABLE FOR ANY
25 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
28 * ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
34 #include <sys/cdefs.h>
35 __KERNEL_RCSID(0, "$NetBSD: rfcomm_session.c,v 1.14 2008/08/06 15:01:24 plunky Exp $");
37 #include <sys/param.h>
38 #include <sys/kernel.h>
39 #include <sys/mbuf.h>
40 #include <sys/proc.h>
41 #include <sys/socketvar.h>
42 #include <sys/systm.h>
43 #include <sys/types.h>
45 #include <netbt/bluetooth.h>
46 #include <netbt/hci.h>
47 #include <netbt/l2cap.h>
48 #include <netbt/rfcomm.h>
50 /******************************************************************************
52 * RFCOMM Multiplexer Sessions sit directly on L2CAP channels, and can
53 * multiplex up to 30 incoming and 30 outgoing connections.
54 * Only one Multiplexer is allowed between any two devices.
57 static void rfcomm_session_timeout(void *);
58 static void rfcomm_session_recv_sabm(struct rfcomm_session *, int);
59 static void rfcomm_session_recv_disc(struct rfcomm_session *, int);
60 static void rfcomm_session_recv_ua(struct rfcomm_session *, int);
61 static void rfcomm_session_recv_dm(struct rfcomm_session *, int);
62 static void rfcomm_session_recv_uih(struct rfcomm_session *, int, int, struct mbuf *, int);
63 static void rfcomm_session_recv_mcc(struct rfcomm_session *, struct mbuf *);
64 static void rfcomm_session_recv_mcc_test(struct rfcomm_session *, int, struct mbuf *);
65 static void rfcomm_session_recv_mcc_fcon(struct rfcomm_session *, int);
66 static void rfcomm_session_recv_mcc_fcoff(struct rfcomm_session *, int);
67 static void rfcomm_session_recv_mcc_msc(struct rfcomm_session *, int, struct mbuf *);
68 static void rfcomm_session_recv_mcc_rpn(struct rfcomm_session *, int, struct mbuf *);
69 static void rfcomm_session_recv_mcc_rls(struct rfcomm_session *, int, struct mbuf *);
70 static void rfcomm_session_recv_mcc_pn(struct rfcomm_session *, int, struct mbuf *);
71 static void rfcomm_session_recv_mcc_nsc(struct rfcomm_session *, int, struct mbuf *);
73 /* L2CAP callbacks */
74 static void rfcomm_session_connecting(void *);
75 static void rfcomm_session_connected(void *);
76 static void rfcomm_session_disconnected(void *, int);
77 static void *rfcomm_session_newconn(void *, struct sockaddr_bt *, struct sockaddr_bt *);
78 static void rfcomm_session_complete(void *, int);
79 static void rfcomm_session_linkmode(void *, int);
80 static void rfcomm_session_input(void *, struct mbuf *);
82 static const struct btproto rfcomm_session_proto = {
83 rfcomm_session_connecting,
84 rfcomm_session_connected,
85 rfcomm_session_disconnected,
86 rfcomm_session_newconn,
87 rfcomm_session_complete,
88 rfcomm_session_linkmode,
89 rfcomm_session_input,
92 struct rfcomm_session_list
93 rfcomm_session_active = LIST_HEAD_INITIALIZER(rfcomm_session_active);
95 struct rfcomm_session_list
96 rfcomm_session_listen = LIST_HEAD_INITIALIZER(rfcomm_session_listen);
98 static struct pool rfcomm_credit_pool;
101 * RFCOMM System Parameters (see section 5.3)
103 int rfcomm_mtu_default = 127; /* bytes */
104 int rfcomm_ack_timeout = 20; /* seconds */
105 int rfcomm_mcc_timeout = 20; /* seconds */
108 * Reversed CRC table as per TS 07.10 Annex B.3.5
110 static const uint8_t crctable[256] = { /* reversed, 8-bit, poly=0x07 */
111 0x00, 0x91, 0xe3, 0x72, 0x07, 0x96, 0xe4, 0x75,
112 0x0e, 0x9f, 0xed, 0x7c, 0x09, 0x98, 0xea, 0x7b,
113 0x1c, 0x8d, 0xff, 0x6e, 0x1b, 0x8a, 0xf8, 0x69,
114 0x12, 0x83, 0xf1, 0x60, 0x15, 0x84, 0xf6, 0x67,
116 0x38, 0xa9, 0xdb, 0x4a, 0x3f, 0xae, 0xdc, 0x4d,
117 0x36, 0xa7, 0xd5, 0x44, 0x31, 0xa0, 0xd2, 0x43,
118 0x24, 0xb5, 0xc7, 0x56, 0x23, 0xb2, 0xc0, 0x51,
119 0x2a, 0xbb, 0xc9, 0x58, 0x2d, 0xbc, 0xce, 0x5f,
121 0x70, 0xe1, 0x93, 0x02, 0x77, 0xe6, 0x94, 0x05,
122 0x7e, 0xef, 0x9d, 0x0c, 0x79, 0xe8, 0x9a, 0x0b,
123 0x6c, 0xfd, 0x8f, 0x1e, 0x6b, 0xfa, 0x88, 0x19,
124 0x62, 0xf3, 0x81, 0x10, 0x65, 0xf4, 0x86, 0x17,
126 0x48, 0xd9, 0xab, 0x3a, 0x4f, 0xde, 0xac, 0x3d,
127 0x46, 0xd7, 0xa5, 0x34, 0x41, 0xd0, 0xa2, 0x33,
128 0x54, 0xc5, 0xb7, 0x26, 0x53, 0xc2, 0xb0, 0x21,
129 0x5a, 0xcb, 0xb9, 0x28, 0x5d, 0xcc, 0xbe, 0x2f,
131 0xe0, 0x71, 0x03, 0x92, 0xe7, 0x76, 0x04, 0x95,
132 0xee, 0x7f, 0x0d, 0x9c, 0xe9, 0x78, 0x0a, 0x9b,
133 0xfc, 0x6d, 0x1f, 0x8e, 0xfb, 0x6a, 0x18, 0x89,
134 0xf2, 0x63, 0x11, 0x80, 0xf5, 0x64, 0x16, 0x87,
136 0xd8, 0x49, 0x3b, 0xaa, 0xdf, 0x4e, 0x3c, 0xad,
137 0xd6, 0x47, 0x35, 0xa4, 0xd1, 0x40, 0x32, 0xa3,
138 0xc4, 0x55, 0x27, 0xb6, 0xc3, 0x52, 0x20, 0xb1,
139 0xca, 0x5b, 0x29, 0xb8, 0xcd, 0x5c, 0x2e, 0xbf,
141 0x90, 0x01, 0x73, 0xe2, 0x97, 0x06, 0x74, 0xe5,
142 0x9e, 0x0f, 0x7d, 0xec, 0x99, 0x08, 0x7a, 0xeb,
143 0x8c, 0x1d, 0x6f, 0xfe, 0x8b, 0x1a, 0x68, 0xf9,
144 0x82, 0x13, 0x61, 0xf0, 0x85, 0x14, 0x66, 0xf7,
146 0xa8, 0x39, 0x4b, 0xda, 0xaf, 0x3e, 0x4c, 0xdd,
147 0xa6, 0x37, 0x45, 0xd4, 0xa1, 0x30, 0x42, 0xd3,
148 0xb4, 0x25, 0x57, 0xc6, 0xb3, 0x22, 0x50, 0xc1,
149 0xba, 0x2b, 0x59, 0xc8, 0xbd, 0x2c, 0x5e, 0xcf
152 #define FCS(f, d) crctable[(f) ^ (d)]
154 void
155 rfcomm_init(void)
158 pool_init(&rfcomm_credit_pool, sizeof(struct rfcomm_credit),
159 0, 0, 0, "rfcomm_credit", NULL, IPL_SOFTNET);
163 * rfcomm_session_alloc(list, sockaddr)
165 * allocate a new session and fill in the blanks, then
166 * attach session to front of specified list (active or listen)
168 struct rfcomm_session *
169 rfcomm_session_alloc(struct rfcomm_session_list *list,
170 struct sockaddr_bt *laddr)
172 struct rfcomm_session *rs;
173 struct sockopt sopt;
174 int err;
176 rs = malloc(sizeof(*rs), M_BLUETOOTH, M_NOWAIT | M_ZERO);
177 if (rs == NULL)
178 return NULL;
180 rs->rs_state = RFCOMM_SESSION_CLOSED;
182 callout_init(&rs->rs_timeout, 0);
183 callout_setfunc(&rs->rs_timeout, rfcomm_session_timeout, rs);
185 SIMPLEQ_INIT(&rs->rs_credits);
186 LIST_INIT(&rs->rs_dlcs);
188 err = l2cap_attach(&rs->rs_l2cap, &rfcomm_session_proto, rs);
189 if (err) {
190 free(rs, M_BLUETOOTH);
191 return NULL;
194 sockopt_init(&sopt, BTPROTO_L2CAP, SO_L2CAP_OMTU, 0);
195 (void)l2cap_getopt(rs->rs_l2cap, &sopt);
196 (void)sockopt_get(&sopt, &rs->rs_mtu, sizeof(rs->rs_mtu));
197 sockopt_destroy(&sopt);
199 if (laddr->bt_psm == L2CAP_PSM_ANY)
200 laddr->bt_psm = L2CAP_PSM_RFCOMM;
202 (void)l2cap_bind(rs->rs_l2cap, laddr);
204 LIST_INSERT_HEAD(list, rs, rs_next);
206 return rs;
210 * rfcomm_session_free(rfcomm_session)
212 * release a session, including any cleanup
214 void
215 rfcomm_session_free(struct rfcomm_session *rs)
217 struct rfcomm_credit *credit;
219 KASSERT(rs != NULL);
220 KASSERT(LIST_EMPTY(&rs->rs_dlcs));
222 rs->rs_state = RFCOMM_SESSION_CLOSED;
225 * If the callout is already invoked we have no way to stop it,
226 * but it will call us back right away (there are no DLC's) so
227 * not to worry.
229 callout_stop(&rs->rs_timeout);
230 if (callout_invoking(&rs->rs_timeout))
231 return;
234 * Take care that rfcomm_session_disconnected() doesnt call
235 * us back either as it will do if the l2cap_channel has not
236 * been closed when we detach it..
238 if (rs->rs_flags & RFCOMM_SESSION_FREE)
239 return;
241 rs->rs_flags |= RFCOMM_SESSION_FREE;
243 /* throw away any remaining credit notes */
244 while ((credit = SIMPLEQ_FIRST(&rs->rs_credits)) != NULL) {
245 SIMPLEQ_REMOVE_HEAD(&rs->rs_credits, rc_next);
246 pool_put(&rfcomm_credit_pool, credit);
249 KASSERT(SIMPLEQ_EMPTY(&rs->rs_credits));
251 /* Goodbye! */
252 LIST_REMOVE(rs, rs_next);
253 l2cap_detach(&rs->rs_l2cap);
254 callout_destroy(&rs->rs_timeout);
255 free(rs, M_BLUETOOTH);
259 * rfcomm_session_lookup(sockaddr, sockaddr)
261 * Find active rfcomm session matching src and dest addresses
262 * when src is BDADDR_ANY match any local address
264 struct rfcomm_session *
265 rfcomm_session_lookup(struct sockaddr_bt *src, struct sockaddr_bt *dest)
267 struct rfcomm_session *rs;
268 struct sockaddr_bt addr;
270 LIST_FOREACH(rs, &rfcomm_session_active, rs_next) {
271 if (rs->rs_state == RFCOMM_SESSION_CLOSED)
272 continue;
274 l2cap_sockaddr(rs->rs_l2cap, &addr);
276 if (bdaddr_same(&src->bt_bdaddr, &addr.bt_bdaddr) == 0)
277 if (bdaddr_any(&src->bt_bdaddr) == 0)
278 continue;
280 l2cap_peeraddr(rs->rs_l2cap, &addr);
282 if (addr.bt_psm != dest->bt_psm)
283 continue;
285 if (bdaddr_same(&dest->bt_bdaddr, &addr.bt_bdaddr))
286 break;
289 return rs;
293 * rfcomm_session_timeout(rfcomm_session)
295 * Session timeouts are scheduled when a session is left or
296 * created with no DLCs, and when SABM(0) or DISC(0) are
297 * sent.
299 * So, if it is in an open state with DLC's attached then
300 * we leave it alone, otherwise the session is lost.
302 static void
303 rfcomm_session_timeout(void *arg)
305 struct rfcomm_session *rs = arg;
306 struct rfcomm_dlc *dlc;
308 KASSERT(rs != NULL);
310 mutex_enter(bt_lock);
311 callout_ack(&rs->rs_timeout);
313 if (rs->rs_state != RFCOMM_SESSION_OPEN) {
314 DPRINTF("timeout\n");
315 rs->rs_state = RFCOMM_SESSION_CLOSED;
317 while (!LIST_EMPTY(&rs->rs_dlcs)) {
318 dlc = LIST_FIRST(&rs->rs_dlcs);
320 rfcomm_dlc_close(dlc, ETIMEDOUT);
324 if (LIST_EMPTY(&rs->rs_dlcs)) {
325 DPRINTF("expiring\n");
326 rfcomm_session_free(rs);
328 mutex_exit(bt_lock);
331 /***********************************************************************
333 * RFCOMM Session L2CAP protocol callbacks
337 static void
338 rfcomm_session_connecting(void *arg)
340 /* struct rfcomm_session *rs = arg; */
342 DPRINTF("Connecting\n");
345 static void
346 rfcomm_session_connected(void *arg)
348 struct rfcomm_session *rs = arg;
349 struct sockopt sopt;
351 DPRINTF("Connected\n");
354 * L2CAP is open.
356 * If we are initiator, we can send our SABM(0)
357 * a timeout should be active?
359 * We must take note of the L2CAP MTU because currently
360 * the L2CAP implementation can only do Basic Mode.
362 sockopt_init(&sopt, BTPROTO_L2CAP, SO_L2CAP_OMTU, 0);
363 (void)l2cap_getopt(rs->rs_l2cap, &sopt);
364 (void)sockopt_get(&sopt, &rs->rs_mtu, sizeof(rs->rs_mtu));
365 sockopt_destroy(&sopt);
367 rs->rs_mtu -= 6; /* (RFCOMM overhead could be this big) */
368 if (rs->rs_mtu < RFCOMM_MTU_MIN) {
369 rfcomm_session_disconnected(rs, EINVAL);
370 return;
373 if (IS_INITIATOR(rs)) {
374 int err;
376 err = rfcomm_session_send_frame(rs, RFCOMM_FRAME_SABM, 0);
377 if (err)
378 rfcomm_session_disconnected(rs, err);
380 callout_schedule(&rs->rs_timeout, rfcomm_ack_timeout * hz);
384 static void
385 rfcomm_session_disconnected(void *arg, int err)
387 struct rfcomm_session *rs = arg;
388 struct rfcomm_dlc *dlc;
390 DPRINTF("Disconnected\n");
392 rs->rs_state = RFCOMM_SESSION_CLOSED;
394 while (!LIST_EMPTY(&rs->rs_dlcs)) {
395 dlc = LIST_FIRST(&rs->rs_dlcs);
397 rfcomm_dlc_close(dlc, err);
400 rfcomm_session_free(rs);
403 static void *
404 rfcomm_session_newconn(void *arg, struct sockaddr_bt *laddr,
405 struct sockaddr_bt *raddr)
407 struct rfcomm_session *new, *rs = arg;
409 DPRINTF("New Connection\n");
412 * Incoming session connect request. We should return a new
413 * session pointer if this is acceptable. The L2CAP layer
414 * passes local and remote addresses, which we must check as
415 * only one RFCOMM session is allowed between any two devices
417 new = rfcomm_session_lookup(laddr, raddr);
418 if (new != NULL)
419 return NULL;
421 new = rfcomm_session_alloc(&rfcomm_session_active, laddr);
422 if (new == NULL)
423 return NULL;
425 new->rs_mtu = rs->rs_mtu;
426 new->rs_state = RFCOMM_SESSION_WAIT_CONNECT;
429 * schedule an expiry so that if nothing comes of it we
430 * can punt.
432 callout_schedule(&new->rs_timeout, rfcomm_mcc_timeout * hz);
434 return new->rs_l2cap;
437 static void
438 rfcomm_session_complete(void *arg, int count)
440 struct rfcomm_session *rs = arg;
441 struct rfcomm_credit *credit;
442 struct rfcomm_dlc *dlc;
445 * count L2CAP packets are 'complete', meaning that they are cleared
446 * our buffers (for best effort) or arrived safe (for guaranteed) so
447 * we can take it off our list and pass the message on, so that
448 * eventually the data can be removed from the sockbuf
450 while (count-- > 0) {
451 credit = SIMPLEQ_FIRST(&rs->rs_credits);
452 #ifdef DIAGNOSTIC
453 if (credit == NULL) {
454 printf("%s: too many packets completed!\n", __func__);
455 break;
457 #endif
458 dlc = credit->rc_dlc;
459 if (dlc != NULL) {
460 dlc->rd_pending--;
461 (*dlc->rd_proto->complete)
462 (dlc->rd_upper, credit->rc_len);
465 * if not using credit flow control, we may push
466 * more data now
468 if ((rs->rs_flags & RFCOMM_SESSION_CFC) == 0
469 && dlc->rd_state == RFCOMM_DLC_OPEN) {
470 rfcomm_dlc_start(dlc);
474 * When shutdown is indicated, we are just waiting to
475 * clear outgoing data.
477 if ((dlc->rd_flags & RFCOMM_DLC_SHUTDOWN)
478 && dlc->rd_txbuf == NULL && dlc->rd_pending == 0) {
479 dlc->rd_state = RFCOMM_DLC_WAIT_DISCONNECT;
480 rfcomm_session_send_frame(rs, RFCOMM_FRAME_DISC,
481 dlc->rd_dlci);
482 callout_schedule(&dlc->rd_timeout,
483 rfcomm_ack_timeout * hz);
487 SIMPLEQ_REMOVE_HEAD(&rs->rs_credits, rc_next);
488 pool_put(&rfcomm_credit_pool, credit);
492 * If session is closed, we are just waiting to clear the queue
494 if (rs->rs_state == RFCOMM_SESSION_CLOSED) {
495 if (SIMPLEQ_EMPTY(&rs->rs_credits))
496 l2cap_disconnect(rs->rs_l2cap, 0);
501 * Link Mode changed
503 * This is called when a mode change is complete. Proceed with connections
504 * where appropriate, or pass the new mode to any active DLCs.
506 static void
507 rfcomm_session_linkmode(void *arg, int new)
509 struct rfcomm_session *rs = arg;
510 struct rfcomm_dlc *dlc, *next;
511 int err, mode = 0;
513 DPRINTF("auth %s, encrypt %s, secure %s\n",
514 (new & L2CAP_LM_AUTH ? "on" : "off"),
515 (new & L2CAP_LM_ENCRYPT ? "on" : "off"),
516 (new & L2CAP_LM_SECURE ? "on" : "off"));
518 if (new & L2CAP_LM_AUTH)
519 mode |= RFCOMM_LM_AUTH;
521 if (new & L2CAP_LM_ENCRYPT)
522 mode |= RFCOMM_LM_ENCRYPT;
524 if (new & L2CAP_LM_SECURE)
525 mode |= RFCOMM_LM_SECURE;
527 next = LIST_FIRST(&rs->rs_dlcs);
528 while ((dlc = next) != NULL) {
529 next = LIST_NEXT(dlc, rd_next);
531 switch (dlc->rd_state) {
532 case RFCOMM_DLC_WAIT_SEND_SABM: /* we are connecting */
533 if ((mode & dlc->rd_mode) != dlc->rd_mode) {
534 rfcomm_dlc_close(dlc, ECONNABORTED);
535 } else {
536 err = rfcomm_session_send_frame(rs,
537 RFCOMM_FRAME_SABM, dlc->rd_dlci);
538 if (err) {
539 rfcomm_dlc_close(dlc, err);
540 } else {
541 dlc->rd_state = RFCOMM_DLC_WAIT_RECV_UA;
542 callout_schedule(&dlc->rd_timeout,
543 rfcomm_ack_timeout * hz);
544 break;
549 * If we aborted the connection and there are no more DLCs
550 * on the session, it is our responsibility to disconnect.
552 if (!LIST_EMPTY(&rs->rs_dlcs))
553 break;
555 rs->rs_state = RFCOMM_SESSION_WAIT_DISCONNECT;
556 rfcomm_session_send_frame(rs, RFCOMM_FRAME_DISC, 0);
557 callout_schedule(&rs->rs_timeout, rfcomm_ack_timeout * hz);
558 break;
560 case RFCOMM_DLC_WAIT_SEND_UA: /* they are connecting */
561 if ((mode & dlc->rd_mode) != dlc->rd_mode) {
562 rfcomm_session_send_frame(rs,
563 RFCOMM_FRAME_DM, dlc->rd_dlci);
564 rfcomm_dlc_close(dlc, ECONNABORTED);
565 break;
568 err = rfcomm_session_send_frame(rs,
569 RFCOMM_FRAME_UA, dlc->rd_dlci);
570 if (err) {
571 rfcomm_session_send_frame(rs,
572 RFCOMM_FRAME_DM, dlc->rd_dlci);
573 rfcomm_dlc_close(dlc, err);
574 break;
577 err = rfcomm_dlc_open(dlc);
578 if (err) {
579 rfcomm_session_send_frame(rs,
580 RFCOMM_FRAME_DM, dlc->rd_dlci);
581 rfcomm_dlc_close(dlc, err);
582 break;
585 break;
587 case RFCOMM_DLC_WAIT_RECV_UA:
588 case RFCOMM_DLC_OPEN: /* already established */
589 (*dlc->rd_proto->linkmode)(dlc->rd_upper, mode);
590 break;
592 default:
593 break;
599 * Receive data from L2CAP layer for session. There is always exactly one
600 * RFCOMM frame contained in each L2CAP frame.
602 static void
603 rfcomm_session_input(void *arg, struct mbuf *m)
605 struct rfcomm_session *rs = arg;
606 int dlci, len, type, pf;
607 uint8_t fcs, b;
609 KASSERT(m != NULL);
610 KASSERT(rs != NULL);
613 * UIH frames: FCS is only calculated on address and control fields
614 * For other frames: FCS is calculated on address, control and length
615 * Length may extend to two octets
617 fcs = 0xff;
619 if (m->m_pkthdr.len < 4) {
620 DPRINTF("short frame (%d), discarded\n", m->m_pkthdr.len);
621 goto done;
624 /* address - one octet */
625 m_copydata(m, 0, 1, &b);
626 m_adj(m, 1);
627 fcs = FCS(fcs, b);
628 dlci = RFCOMM_DLCI(b);
630 /* control - one octet */
631 m_copydata(m, 0, 1, &b);
632 m_adj(m, 1);
633 fcs = FCS(fcs, b);
634 type = RFCOMM_TYPE(b);
635 pf = RFCOMM_PF(b);
637 /* length - may be two octets */
638 m_copydata(m, 0, 1, &b);
639 m_adj(m, 1);
640 if (type != RFCOMM_FRAME_UIH)
641 fcs = FCS(fcs, b);
642 len = (b >> 1) & 0x7f;
644 if (RFCOMM_EA(b) == 0) {
645 if (m->m_pkthdr.len < 2) {
646 DPRINTF("short frame (%d, EA = 0), discarded\n",
647 m->m_pkthdr.len);
648 goto done;
651 m_copydata(m, 0, 1, &b);
652 m_adj(m, 1);
653 if (type != RFCOMM_FRAME_UIH)
654 fcs = FCS(fcs, b);
656 len |= (b << 7);
659 /* FCS byte is last octet in frame */
660 m_copydata(m, m->m_pkthdr.len - 1, 1, &b);
661 m_adj(m, -1);
662 fcs = FCS(fcs, b);
664 if (fcs != 0xcf) {
665 DPRINTF("Bad FCS value (%#2.2x), frame discarded\n", fcs);
666 goto done;
669 DPRINTFN(10, "dlci %d, type %2.2x, len = %d\n", dlci, type, len);
671 switch (type) {
672 case RFCOMM_FRAME_SABM:
673 if (pf)
674 rfcomm_session_recv_sabm(rs, dlci);
675 break;
677 case RFCOMM_FRAME_DISC:
678 if (pf)
679 rfcomm_session_recv_disc(rs, dlci);
680 break;
682 case RFCOMM_FRAME_UA:
683 if (pf)
684 rfcomm_session_recv_ua(rs, dlci);
685 break;
687 case RFCOMM_FRAME_DM:
688 rfcomm_session_recv_dm(rs, dlci);
689 break;
691 case RFCOMM_FRAME_UIH:
692 rfcomm_session_recv_uih(rs, dlci, pf, m, len);
693 return; /* (no release) */
695 default:
696 UNKNOWN(type);
697 break;
700 done:
701 m_freem(m);
704 /***********************************************************************
706 * RFCOMM Session receive processing
710 * rfcomm_session_recv_sabm(rfcomm_session, dlci)
712 * Set Asyncrhonous Balanced Mode - open the channel.
714 static void
715 rfcomm_session_recv_sabm(struct rfcomm_session *rs, int dlci)
717 struct rfcomm_dlc *dlc;
718 int err;
720 DPRINTFN(5, "SABM(%d)\n", dlci);
722 if (dlci == 0) { /* Open Session */
723 rs->rs_state = RFCOMM_SESSION_OPEN;
724 rfcomm_session_send_frame(rs, RFCOMM_FRAME_UA, 0);
725 LIST_FOREACH(dlc, &rs->rs_dlcs, rd_next) {
726 if (dlc->rd_state == RFCOMM_DLC_WAIT_SESSION)
727 rfcomm_dlc_connect(dlc);
729 return;
732 if (rs->rs_state != RFCOMM_SESSION_OPEN) {
733 DPRINTF("session was not even open!\n");
734 return;
737 /* validate direction bit */
738 if ((IS_INITIATOR(rs) && !RFCOMM_DIRECTION(dlci))
739 || (!IS_INITIATOR(rs) && RFCOMM_DIRECTION(dlci))) {
740 DPRINTF("Invalid direction bit on DLCI\n");
741 return;
745 * look for our DLC - this may exist if we received PN
746 * already, or we may have to fabricate a new one.
748 dlc = rfcomm_dlc_lookup(rs, dlci);
749 if (dlc == NULL) {
750 dlc = rfcomm_dlc_newconn(rs, dlci);
751 if (dlc == NULL)
752 return; /* (DM is sent) */
756 * ..but if this DLC is not waiting to connect, they did
757 * something wrong, ignore it.
759 if (dlc->rd_state != RFCOMM_DLC_WAIT_CONNECT)
760 return;
762 /* set link mode */
763 err = rfcomm_dlc_setmode(dlc);
764 if (err == EINPROGRESS) {
765 dlc->rd_state = RFCOMM_DLC_WAIT_SEND_UA;
766 (*dlc->rd_proto->connecting)(dlc->rd_upper);
767 return;
769 if (err)
770 goto close;
772 err = rfcomm_session_send_frame(rs, RFCOMM_FRAME_UA, dlci);
773 if (err)
774 goto close;
776 /* and mark it open */
777 err = rfcomm_dlc_open(dlc);
778 if (err)
779 goto close;
781 return;
783 close:
784 rfcomm_dlc_close(dlc, err);
788 * Receive Disconnect Command
790 static void
791 rfcomm_session_recv_disc(struct rfcomm_session *rs, int dlci)
793 struct rfcomm_dlc *dlc;
795 DPRINTFN(5, "DISC(%d)\n", dlci);
797 if (dlci == 0) {
799 * Disconnect Session
801 * We set the session state to CLOSED so that when
802 * the UA frame is clear the session will be closed
803 * automatically. We wont bother to close any DLC's
804 * just yet as there should be none. In the unlikely
805 * event that something is left, it will get flushed
806 * out as the session goes down.
808 rfcomm_session_send_frame(rs, RFCOMM_FRAME_UA, 0);
809 rs->rs_state = RFCOMM_SESSION_CLOSED;
810 return;
813 dlc = rfcomm_dlc_lookup(rs, dlci);
814 if (dlc == NULL) {
815 rfcomm_session_send_frame(rs, RFCOMM_FRAME_DM, dlci);
816 return;
819 rfcomm_dlc_close(dlc, ECONNRESET);
820 rfcomm_session_send_frame(rs, RFCOMM_FRAME_UA, dlci);
824 * Receive Unnumbered Acknowledgement Response
826 * This should be a response to a DISC or SABM frame that we
827 * have previously sent. If unexpected, ignore it.
829 static void
830 rfcomm_session_recv_ua(struct rfcomm_session *rs, int dlci)
832 struct rfcomm_dlc *dlc;
834 DPRINTFN(5, "UA(%d)\n", dlci);
836 if (dlci == 0) {
837 switch (rs->rs_state) {
838 case RFCOMM_SESSION_WAIT_CONNECT: /* We sent SABM */
839 callout_stop(&rs->rs_timeout);
840 rs->rs_state = RFCOMM_SESSION_OPEN;
841 LIST_FOREACH(dlc, &rs->rs_dlcs, rd_next) {
842 if (dlc->rd_state == RFCOMM_DLC_WAIT_SESSION)
843 rfcomm_dlc_connect(dlc);
845 break;
847 case RFCOMM_SESSION_WAIT_DISCONNECT: /* We sent DISC */
848 callout_stop(&rs->rs_timeout);
849 rs->rs_state = RFCOMM_SESSION_CLOSED;
850 l2cap_disconnect(rs->rs_l2cap, 0);
851 break;
853 default:
854 DPRINTF("Received spurious UA(0)!\n");
855 break;
858 return;
862 * If we have no DLC on this dlci, we may have aborted
863 * without shutting down properly, so check if the session
864 * needs disconnecting.
866 dlc = rfcomm_dlc_lookup(rs, dlci);
867 if (dlc == NULL)
868 goto check;
870 switch (dlc->rd_state) {
871 case RFCOMM_DLC_WAIT_RECV_UA: /* We sent SABM */
872 rfcomm_dlc_open(dlc);
873 return;
875 case RFCOMM_DLC_WAIT_DISCONNECT: /* We sent DISC */
876 rfcomm_dlc_close(dlc, 0);
877 break;
879 default:
880 DPRINTF("Received spurious UA(%d)!\n", dlci);
881 return;
884 check: /* last one out turns out the light */
885 if (LIST_EMPTY(&rs->rs_dlcs)) {
886 rs->rs_state = RFCOMM_SESSION_WAIT_DISCONNECT;
887 rfcomm_session_send_frame(rs, RFCOMM_FRAME_DISC, 0);
888 callout_schedule(&rs->rs_timeout, rfcomm_ack_timeout * hz);
893 * Receive Disconnected Mode Response
895 * If this does not apply to a known DLC then we may ignore it.
897 static void
898 rfcomm_session_recv_dm(struct rfcomm_session *rs, int dlci)
900 struct rfcomm_dlc *dlc;
902 DPRINTFN(5, "DM(%d)\n", dlci);
904 dlc = rfcomm_dlc_lookup(rs, dlci);
905 if (dlc == NULL)
906 return;
908 if (dlc->rd_state == RFCOMM_DLC_WAIT_CONNECT)
909 rfcomm_dlc_close(dlc, ECONNREFUSED);
910 else
911 rfcomm_dlc_close(dlc, ECONNRESET);
915 * Receive Unnumbered Information with Header check (MCC or data packet)
917 static void
918 rfcomm_session_recv_uih(struct rfcomm_session *rs, int dlci,
919 int pf, struct mbuf *m, int len)
921 struct rfcomm_dlc *dlc;
922 uint8_t credits = 0;
924 DPRINTFN(10, "UIH(%d)\n", dlci);
926 if (dlci == 0) {
927 rfcomm_session_recv_mcc(rs, m);
928 return;
931 if (m->m_pkthdr.len != len + pf) {
932 DPRINTF("Bad Frame Length (%d), frame discarded\n",
933 m->m_pkthdr.len);
935 goto discard;
938 dlc = rfcomm_dlc_lookup(rs, dlci);
939 if (dlc == NULL) {
940 DPRINTF("UIH received for non existent DLC, discarded\n");
941 rfcomm_session_send_frame(rs, RFCOMM_FRAME_DM, dlci);
942 goto discard;
945 if (dlc->rd_state != RFCOMM_DLC_OPEN) {
946 DPRINTF("non-open DLC (state = %d), discarded\n",
947 dlc->rd_state);
948 goto discard;
951 /* if PF is set, credits were included */
952 if (rs->rs_flags & RFCOMM_SESSION_CFC) {
953 if (pf != 0) {
954 if (m->m_pkthdr.len < sizeof(credits)) {
955 DPRINTF("Bad PF value, UIH discarded\n");
956 goto discard;
959 m_copydata(m, 0, sizeof(credits), &credits);
960 m_adj(m, sizeof(credits));
962 dlc->rd_txcred += credits;
964 if (credits > 0 && dlc->rd_txbuf != NULL)
965 rfcomm_dlc_start(dlc);
968 if (len == 0)
969 goto discard;
971 if (dlc->rd_rxcred == 0) {
972 DPRINTF("Credit limit reached, UIH discarded\n");
973 goto discard;
976 if (len > dlc->rd_rxsize) {
977 DPRINTF("UIH frame exceeds rxsize, discarded\n");
978 goto discard;
981 dlc->rd_rxcred--;
982 dlc->rd_rxsize -= len;
985 (*dlc->rd_proto->input)(dlc->rd_upper, m);
986 return;
988 discard:
989 m_freem(m);
993 * Receive Multiplexer Control Command
995 static void
996 rfcomm_session_recv_mcc(struct rfcomm_session *rs, struct mbuf *m)
998 int type, cr, len;
999 uint8_t b;
1002 * Extract MCC header.
1004 * Fields are variable length using extension bit = 1 to signify the
1005 * last octet in the sequence.
1007 * Only single octet types are defined in TS 07.10/RFCOMM spec
1009 * Length can realistically only use 15 bits (max RFCOMM MTU)
1011 if (m->m_pkthdr.len < sizeof(b)) {
1012 DPRINTF("Short MCC header, discarded\n");
1013 goto release;
1016 m_copydata(m, 0, sizeof(b), &b);
1017 m_adj(m, sizeof(b));
1019 if (RFCOMM_EA(b) == 0) { /* verify no extensions */
1020 DPRINTF("MCC type EA = 0, discarded\n");
1021 goto release;
1024 type = RFCOMM_MCC_TYPE(b);
1025 cr = RFCOMM_CR(b);
1027 len = 0;
1028 do {
1029 if (m->m_pkthdr.len < sizeof(b)) {
1030 DPRINTF("Short MCC header, discarded\n");
1031 goto release;
1034 m_copydata(m, 0, sizeof(b), &b);
1035 m_adj(m, sizeof(b));
1037 len = (len << 7) | (b >> 1);
1038 len = min(len, RFCOMM_MTU_MAX);
1039 } while (RFCOMM_EA(b) == 0);
1041 if (len != m->m_pkthdr.len) {
1042 DPRINTF("Incorrect MCC length, discarded\n");
1043 goto release;
1046 DPRINTFN(2, "MCC %s type %2.2x (%d bytes)\n",
1047 (cr ? "command" : "response"), type, len);
1050 * pass to command handler
1052 switch(type) {
1053 case RFCOMM_MCC_TEST: /* Test */
1054 rfcomm_session_recv_mcc_test(rs, cr, m);
1055 break;
1057 case RFCOMM_MCC_FCON: /* Flow Control On */
1058 rfcomm_session_recv_mcc_fcon(rs, cr);
1059 break;
1061 case RFCOMM_MCC_FCOFF: /* Flow Control Off */
1062 rfcomm_session_recv_mcc_fcoff(rs, cr);
1063 break;
1065 case RFCOMM_MCC_MSC: /* Modem Status Command */
1066 rfcomm_session_recv_mcc_msc(rs, cr, m);
1067 break;
1069 case RFCOMM_MCC_RPN: /* Remote Port Negotiation */
1070 rfcomm_session_recv_mcc_rpn(rs, cr, m);
1071 break;
1073 case RFCOMM_MCC_RLS: /* Remote Line Status */
1074 rfcomm_session_recv_mcc_rls(rs, cr, m);
1075 break;
1077 case RFCOMM_MCC_PN: /* Parameter Negotiation */
1078 rfcomm_session_recv_mcc_pn(rs, cr, m);
1079 break;
1081 case RFCOMM_MCC_NSC: /* Non Supported Command */
1082 rfcomm_session_recv_mcc_nsc(rs, cr, m);
1083 break;
1085 default:
1086 b = RFCOMM_MKMCC_TYPE(cr, type);
1087 rfcomm_session_send_mcc(rs, 0, RFCOMM_MCC_NSC, &b, sizeof(b));
1090 release:
1091 m_freem(m);
1095 * process TEST command/response
1097 static void
1098 rfcomm_session_recv_mcc_test(struct rfcomm_session *rs, int cr, struct mbuf *m)
1100 void *data;
1101 int len;
1103 if (cr == 0) /* ignore ack */
1104 return;
1107 * we must send all the data they included back as is
1110 len = m->m_pkthdr.len;
1111 if (len > RFCOMM_MTU_MAX)
1112 return;
1114 data = malloc(len, M_BLUETOOTH, M_NOWAIT);
1115 if (data == NULL)
1116 return;
1118 m_copydata(m, 0, len, data);
1119 rfcomm_session_send_mcc(rs, 0, RFCOMM_MCC_TEST, data, len);
1120 free(data, M_BLUETOOTH);
1124 * process Flow Control ON command/response
1126 static void
1127 rfcomm_session_recv_mcc_fcon(struct rfcomm_session *rs, int cr)
1130 if (cr == 0) /* ignore ack */
1131 return;
1133 rs->rs_flags |= RFCOMM_SESSION_RFC;
1134 rfcomm_session_send_mcc(rs, 0, RFCOMM_MCC_FCON, NULL, 0);
1138 * process Flow Control OFF command/response
1140 static void
1141 rfcomm_session_recv_mcc_fcoff(struct rfcomm_session *rs, int cr)
1144 if (cr == 0) /* ignore ack */
1145 return;
1147 rs->rs_flags &= ~RFCOMM_SESSION_RFC;
1148 rfcomm_session_send_mcc(rs, 0, RFCOMM_MCC_FCOFF, NULL, 0);
1152 * process Modem Status Command command/response
1154 static void
1155 rfcomm_session_recv_mcc_msc(struct rfcomm_session *rs, int cr, struct mbuf *m)
1157 struct rfcomm_mcc_msc msc; /* (3 octets) */
1158 struct rfcomm_dlc *dlc;
1159 int len = 0;
1161 /* [ADDRESS] */
1162 if (m->m_pkthdr.len < sizeof(msc.address))
1163 return;
1165 m_copydata(m, 0, sizeof(msc.address), &msc.address);
1166 m_adj(m, sizeof(msc.address));
1167 len += sizeof(msc.address);
1169 dlc = rfcomm_dlc_lookup(rs, RFCOMM_DLCI(msc.address));
1171 if (cr == 0) { /* ignore acks */
1172 if (dlc != NULL)
1173 callout_stop(&dlc->rd_timeout);
1175 return;
1178 if (dlc == NULL) {
1179 rfcomm_session_send_frame(rs, RFCOMM_FRAME_DM,
1180 RFCOMM_DLCI(msc.address));
1181 return;
1184 /* [SIGNALS] */
1185 if (m->m_pkthdr.len < sizeof(msc.modem))
1186 return;
1188 m_copydata(m, 0, sizeof(msc.modem), &msc.modem);
1189 m_adj(m, sizeof(msc.modem));
1190 len += sizeof(msc.modem);
1192 dlc->rd_rmodem = msc.modem;
1193 /* XXX how do we signal this upstream? */
1195 if (RFCOMM_EA(msc.modem) == 0) {
1196 if (m->m_pkthdr.len < sizeof(msc.brk))
1197 return;
1199 m_copydata(m, 0, sizeof(msc.brk), &msc.brk);
1200 m_adj(m, sizeof(msc.brk));
1201 len += sizeof(msc.brk);
1203 /* XXX how do we signal this upstream? */
1206 rfcomm_session_send_mcc(rs, 0, RFCOMM_MCC_MSC, &msc, len);
1210 * process Remote Port Negotiation command/response
1212 static void
1213 rfcomm_session_recv_mcc_rpn(struct rfcomm_session *rs, int cr, struct mbuf *m)
1215 struct rfcomm_mcc_rpn rpn;
1216 uint16_t mask;
1218 if (cr == 0) /* ignore ack */
1219 return;
1221 /* default values */
1222 rpn.bit_rate = RFCOMM_RPN_BR_9600;
1223 rpn.line_settings = RFCOMM_RPN_8_N_1;
1224 rpn.flow_control = RFCOMM_RPN_FLOW_NONE;
1225 rpn.xon_char = RFCOMM_RPN_XON_CHAR;
1226 rpn.xoff_char = RFCOMM_RPN_XOFF_CHAR;
1228 if (m->m_pkthdr.len == sizeof(rpn)) {
1229 m_copydata(m, 0, sizeof(rpn), &rpn);
1230 rpn.param_mask = RFCOMM_RPN_PM_ALL;
1231 } else if (m->m_pkthdr.len == 1) {
1232 m_copydata(m, 0, 1, &rpn);
1233 rpn.param_mask = le16toh(rpn.param_mask);
1234 } else {
1235 DPRINTF("Bad RPN length (%d)\n", m->m_pkthdr.len);
1236 return;
1239 mask = 0;
1241 if (rpn.param_mask & RFCOMM_RPN_PM_RATE)
1242 mask |= RFCOMM_RPN_PM_RATE;
1244 if (rpn.param_mask & RFCOMM_RPN_PM_DATA
1245 && RFCOMM_RPN_DATA_BITS(rpn.line_settings) == RFCOMM_RPN_DATA_8)
1246 mask |= RFCOMM_RPN_PM_DATA;
1248 if (rpn.param_mask & RFCOMM_RPN_PM_STOP
1249 && RFCOMM_RPN_STOP_BITS(rpn.line_settings) == RFCOMM_RPN_STOP_1)
1250 mask |= RFCOMM_RPN_PM_STOP;
1252 if (rpn.param_mask & RFCOMM_RPN_PM_PARITY
1253 && RFCOMM_RPN_PARITY(rpn.line_settings) == RFCOMM_RPN_PARITY_NONE)
1254 mask |= RFCOMM_RPN_PM_PARITY;
1256 if (rpn.param_mask & RFCOMM_RPN_PM_XON
1257 && rpn.xon_char == RFCOMM_RPN_XON_CHAR)
1258 mask |= RFCOMM_RPN_PM_XON;
1260 if (rpn.param_mask & RFCOMM_RPN_PM_XOFF
1261 && rpn.xoff_char == RFCOMM_RPN_XOFF_CHAR)
1262 mask |= RFCOMM_RPN_PM_XOFF;
1264 if (rpn.param_mask & RFCOMM_RPN_PM_FLOW
1265 && rpn.flow_control == RFCOMM_RPN_FLOW_NONE)
1266 mask |= RFCOMM_RPN_PM_FLOW;
1268 rpn.param_mask = htole16(mask);
1270 rfcomm_session_send_mcc(rs, 0, RFCOMM_MCC_RPN, &rpn, sizeof(rpn));
1274 * process Remote Line Status command/response
1276 static void
1277 rfcomm_session_recv_mcc_rls(struct rfcomm_session *rs, int cr, struct mbuf *m)
1279 struct rfcomm_mcc_rls rls;
1281 if (cr == 0) /* ignore ack */
1282 return;
1284 if (m->m_pkthdr.len != sizeof(rls)) {
1285 DPRINTF("Bad RLS length %d\n", m->m_pkthdr.len);
1286 return;
1289 m_copydata(m, 0, sizeof(rls), &rls);
1292 * So far as I can tell, we just send back what
1293 * they sent us. This signifies errors that seem
1294 * irrelevent for RFCOMM over L2CAP.
1296 rls.address |= 0x03; /* EA = 1, CR = 1 */
1297 rls.status &= 0x0f; /* only 4 bits valid */
1299 rfcomm_session_send_mcc(rs, 0, RFCOMM_MCC_RLS, &rls, sizeof(rls));
1303 * process Parameter Negotiation command/response
1305 static void
1306 rfcomm_session_recv_mcc_pn(struct rfcomm_session *rs, int cr, struct mbuf *m)
1308 struct rfcomm_dlc *dlc;
1309 struct rfcomm_mcc_pn pn;
1310 int err;
1312 if (m->m_pkthdr.len != sizeof(pn)) {
1313 DPRINTF("Bad PN length %d\n", m->m_pkthdr.len);
1314 return;
1317 m_copydata(m, 0, sizeof(pn), &pn);
1319 pn.dlci &= 0x3f;
1320 pn.mtu = le16toh(pn.mtu);
1322 dlc = rfcomm_dlc_lookup(rs, pn.dlci);
1323 if (cr) { /* Command */
1325 * If there is no DLC present, this is a new
1326 * connection so attempt to make one
1328 if (dlc == NULL) {
1329 dlc = rfcomm_dlc_newconn(rs, pn.dlci);
1330 if (dlc == NULL)
1331 return; /* (DM is sent) */
1334 /* accept any valid MTU, and offer it back */
1335 pn.mtu = min(pn.mtu, RFCOMM_MTU_MAX);
1336 pn.mtu = min(pn.mtu, rs->rs_mtu);
1337 pn.mtu = max(pn.mtu, RFCOMM_MTU_MIN);
1338 dlc->rd_mtu = pn.mtu;
1339 pn.mtu = htole16(pn.mtu);
1341 /* credits are only set before DLC is open */
1342 if (dlc->rd_state == RFCOMM_DLC_WAIT_CONNECT
1343 && (pn.flow_control & 0xf0) == 0xf0) {
1344 rs->rs_flags |= RFCOMM_SESSION_CFC;
1345 dlc->rd_txcred = pn.credits & 0x07;
1347 dlc->rd_rxcred = (dlc->rd_rxsize / dlc->rd_mtu);
1348 dlc->rd_rxcred = min(dlc->rd_rxcred,
1349 RFCOMM_CREDITS_DEFAULT);
1351 pn.flow_control = 0xe0;
1352 pn.credits = dlc->rd_rxcred;
1353 } else {
1354 pn.flow_control = 0x00;
1355 pn.credits = 0x00;
1358 /* unused fields must be ignored and set to zero */
1359 pn.ack_timer = 0;
1360 pn.max_retrans = 0;
1362 /* send our response */
1363 err = rfcomm_session_send_mcc(rs, 0,
1364 RFCOMM_MCC_PN, &pn, sizeof(pn));
1365 if (err)
1366 goto close;
1368 } else { /* Response */
1369 /* ignore responses with no matching DLC */
1370 if (dlc == NULL)
1371 return;
1373 callout_stop(&dlc->rd_timeout);
1375 if (pn.mtu > RFCOMM_MTU_MAX || pn.mtu > dlc->rd_mtu) {
1376 dlc->rd_state = RFCOMM_DLC_WAIT_DISCONNECT;
1377 err = rfcomm_session_send_frame(rs, RFCOMM_FRAME_DISC,
1378 pn.dlci);
1379 if (err)
1380 goto close;
1382 callout_schedule(&dlc->rd_timeout,
1383 rfcomm_ack_timeout * hz);
1384 return;
1386 dlc->rd_mtu = pn.mtu;
1388 /* if DLC is not waiting to connect, we are done */
1389 if (dlc->rd_state != RFCOMM_DLC_WAIT_CONNECT)
1390 return;
1392 /* set initial credits according to RFCOMM spec */
1393 if ((pn.flow_control & 0xf0) == 0xe0) {
1394 rs->rs_flags |= RFCOMM_SESSION_CFC;
1395 dlc->rd_txcred = (pn.credits & 0x07);
1398 callout_schedule(&dlc->rd_timeout, rfcomm_ack_timeout * hz);
1400 /* set link mode */
1401 err = rfcomm_dlc_setmode(dlc);
1402 if (err == EINPROGRESS) {
1403 dlc->rd_state = RFCOMM_DLC_WAIT_SEND_SABM;
1404 (*dlc->rd_proto->connecting)(dlc->rd_upper);
1405 return;
1407 if (err)
1408 goto close;
1410 /* we can proceed now */
1411 err = rfcomm_session_send_frame(rs, RFCOMM_FRAME_SABM, pn.dlci);
1412 if (err)
1413 goto close;
1415 dlc->rd_state = RFCOMM_DLC_WAIT_RECV_UA;
1417 return;
1419 close:
1420 rfcomm_dlc_close(dlc, err);
1424 * process Non Supported Command command/response
1426 static void
1427 rfcomm_session_recv_mcc_nsc(struct rfcomm_session *rs,
1428 int cr, struct mbuf *m)
1430 struct rfcomm_dlc *dlc, *next;
1433 * Since we did nothing that is not mandatory,
1434 * we just abort the whole session..
1437 next = LIST_FIRST(&rs->rs_dlcs);
1438 while ((dlc = next) != NULL) {
1439 next = LIST_NEXT(dlc, rd_next);
1440 rfcomm_dlc_close(dlc, ECONNABORTED);
1443 rfcomm_session_free(rs);
1446 /***********************************************************************
1448 * RFCOMM Session outward frame/uih/mcc building
1452 * SABM/DISC/DM/UA frames are all minimal and mostly identical.
1455 rfcomm_session_send_frame(struct rfcomm_session *rs, int type, int dlci)
1457 struct rfcomm_cmd_hdr *hdr;
1458 struct rfcomm_credit *credit;
1459 struct mbuf *m;
1460 uint8_t fcs, cr;
1462 credit = pool_get(&rfcomm_credit_pool, PR_NOWAIT);
1463 if (credit == NULL)
1464 return ENOMEM;
1466 m = m_gethdr(M_DONTWAIT, MT_DATA);
1467 if (m == NULL) {
1468 pool_put(&rfcomm_credit_pool, credit);
1469 return ENOMEM;
1473 * The CR (command/response) bit identifies the frame either as a
1474 * commmand or a response and is used along with the DLCI to form
1475 * the address. Commands contain the non-initiator address, whereas
1476 * responses contain the initiator address, so the CR value is
1477 * also dependent on the session direction.
1479 if (type == RFCOMM_FRAME_UA || type == RFCOMM_FRAME_DM)
1480 cr = IS_INITIATOR(rs) ? 0 : 1;
1481 else
1482 cr = IS_INITIATOR(rs) ? 1 : 0;
1484 hdr = mtod(m, struct rfcomm_cmd_hdr *);
1485 hdr->address = RFCOMM_MKADDRESS(cr, dlci);
1486 hdr->control = RFCOMM_MKCONTROL(type, 1); /* PF = 1 */
1487 hdr->length = (0x00 << 1) | 0x01; /* len = 0x00, EA = 1 */
1489 fcs = 0xff;
1490 fcs = FCS(fcs, hdr->address);
1491 fcs = FCS(fcs, hdr->control);
1492 fcs = FCS(fcs, hdr->length);
1493 fcs = 0xff - fcs; /* ones complement */
1494 hdr->fcs = fcs;
1496 m->m_pkthdr.len = m->m_len = sizeof(struct rfcomm_cmd_hdr);
1498 /* empty credit note */
1499 credit->rc_dlc = NULL;
1500 credit->rc_len = m->m_pkthdr.len;
1501 SIMPLEQ_INSERT_TAIL(&rs->rs_credits, credit, rc_next);
1503 DPRINTFN(5, "dlci %d type %2.2x (%d bytes, fcs=%#2.2x)\n",
1504 dlci, type, m->m_pkthdr.len, fcs);
1506 return l2cap_send(rs->rs_l2cap, m);
1510 * rfcomm_session_send_uih(rfcomm_session, rfcomm_dlc, credits, mbuf)
1512 * UIH frame is per DLC data or Multiplexer Control Commands
1513 * when no DLC is given. Data mbuf is optional (just credits
1514 * will be sent in that case)
1517 rfcomm_session_send_uih(struct rfcomm_session *rs, struct rfcomm_dlc *dlc,
1518 int credits, struct mbuf *m)
1520 struct rfcomm_credit *credit;
1521 struct mbuf *m0 = NULL;
1522 int err, len;
1523 uint8_t fcs, *hdr;
1525 KASSERT(rs != NULL);
1527 len = (m == NULL) ? 0 : m->m_pkthdr.len;
1528 KASSERT(!(credits == 0 && len == 0));
1531 * Make a credit note for the completion notification
1533 credit = pool_get(&rfcomm_credit_pool, PR_NOWAIT);
1534 if (credit == NULL)
1535 goto nomem;
1537 credit->rc_len = len;
1538 credit->rc_dlc = dlc;
1541 * Wrap UIH frame information around payload.
1543 * [ADDRESS] [CONTROL] [LENGTH] [CREDITS] [...] [FCS]
1545 * Address is one octet.
1546 * Control is one octet.
1547 * Length is one or two octets.
1548 * Credits may be one octet.
1550 * FCS is one octet and calculated on address and
1551 * control octets only.
1553 * If there are credits to be sent, we will set the PF
1554 * flag and include them in the frame.
1556 m0 = m_gethdr(M_DONTWAIT, MT_DATA);
1557 if (m0 == NULL)
1558 goto nomem;
1560 MH_ALIGN(m0, 5); /* (max 5 header octets) */
1561 hdr = mtod(m0, uint8_t *);
1563 /* CR bit is set according to the initiator of the session */
1564 *hdr = RFCOMM_MKADDRESS((IS_INITIATOR(rs) ? 1 : 0),
1565 (dlc ? dlc->rd_dlci : 0));
1566 fcs = FCS(0xff, *hdr);
1567 hdr++;
1569 /* PF bit is set if credits are being sent */
1570 *hdr = RFCOMM_MKCONTROL(RFCOMM_FRAME_UIH, (credits > 0 ? 1 : 0));
1571 fcs = FCS(fcs, *hdr);
1572 hdr++;
1574 if (len < (1 << 7)) {
1575 *hdr++ = ((len << 1) & 0xfe) | 0x01; /* 7 bits, EA = 1 */
1576 } else {
1577 *hdr++ = ((len << 1) & 0xfe); /* 7 bits, EA = 0 */
1578 *hdr++ = ((len >> 7) & 0xff); /* 8 bits, no EA */
1581 if (credits > 0)
1582 *hdr++ = (uint8_t)credits;
1584 m0->m_len = hdr - mtod(m0, uint8_t *);
1586 /* Append payload */
1587 m0->m_next = m;
1588 m = NULL;
1590 m0->m_pkthdr.len = m0->m_len + len;
1592 /* Append FCS */
1593 fcs = 0xff - fcs; /* ones complement */
1594 len = m0->m_pkthdr.len;
1595 m_copyback(m0, len, sizeof(fcs), &fcs);
1596 if (m0->m_pkthdr.len != len + sizeof(fcs))
1597 goto nomem;
1599 DPRINTFN(10, "dlci %d, pktlen %d (%d data, %d credits), fcs=%#2.2x\n",
1600 dlc ? dlc->rd_dlci : 0, m0->m_pkthdr.len, credit->rc_len,
1601 credits, fcs);
1604 * UIH frame ready to go..
1606 err = l2cap_send(rs->rs_l2cap, m0);
1607 if (err)
1608 goto fail;
1610 SIMPLEQ_INSERT_TAIL(&rs->rs_credits, credit, rc_next);
1611 return 0;
1613 nomem:
1614 err = ENOMEM;
1616 if (m0 != NULL)
1617 m_freem(m0);
1619 if (m != NULL)
1620 m_freem(m);
1622 fail:
1623 if (credit != NULL)
1624 pool_put(&rfcomm_credit_pool, credit);
1626 return err;
1630 * send Multiplexer Control Command (or Response) on session
1633 rfcomm_session_send_mcc(struct rfcomm_session *rs, int cr,
1634 uint8_t type, void *data, int len)
1636 struct mbuf *m;
1637 uint8_t *hdr;
1638 int hlen;
1640 m = m_gethdr(M_DONTWAIT, MT_DATA);
1641 if (m == NULL)
1642 return ENOMEM;
1644 hdr = mtod(m, uint8_t *);
1647 * Technically the type field can extend past one octet, but none
1648 * currently defined will do that.
1650 *hdr++ = RFCOMM_MKMCC_TYPE(cr, type);
1653 * In the frame, the max length size is 2 octets (15 bits) whereas
1654 * no max length size is specified for MCC commands. We must allow
1655 * for 3 octets since for MCC frames we use 7 bits + EA in each.
1657 * Only test data can possibly be that big.
1659 * XXX Should we check this against the MTU?
1661 if (len < (1 << 7)) {
1662 *hdr++ = ((len << 1) & 0xfe) | 0x01; /* 7 bits, EA = 1 */
1663 } else if (len < (1 << 14)) {
1664 *hdr++ = ((len << 1) & 0xfe); /* 7 bits, EA = 0 */
1665 *hdr++ = ((len >> 6) & 0xfe) | 0x01; /* 7 bits, EA = 1 */
1666 } else if (len < (1 << 15)) {
1667 *hdr++ = ((len << 1) & 0xfe); /* 7 bits, EA = 0 */
1668 *hdr++ = ((len >> 6) & 0xfe); /* 7 bits, EA = 0 */
1669 *hdr++ = ((len >> 13) & 0x02) | 0x01; /* 1 bit, EA = 1 */
1670 } else {
1671 DPRINTF("incredible length! (%d)\n", len);
1672 m_freem(m);
1673 return EMSGSIZE;
1677 * add command data (to same mbuf if possible)
1679 hlen = hdr - mtod(m, uint8_t *);
1681 if (len > 0) {
1682 m->m_pkthdr.len = m->m_len = MHLEN;
1683 m_copyback(m, hlen, len, data);
1684 if (m->m_pkthdr.len != max(MHLEN, hlen + len)) {
1685 m_freem(m);
1686 return ENOMEM;
1690 m->m_pkthdr.len = hlen + len;
1691 m->m_len = min(MHLEN, m->m_pkthdr.len);
1693 DPRINTFN(5, "%s type %2.2x len %d\n",
1694 (cr ? "command" : "response"), type, m->m_pkthdr.len);
1696 return rfcomm_session_send_uih(rs, NULL, 0, m);