Home | History | Annotate | Line # | Download | only in netbt
rfcomm_upper.c revision 1.10
      1  1.10   plunky /*	$NetBSD: rfcomm_upper.c,v 1.10 2007/11/20 20:25:57 plunky Exp $	*/
      2   1.1  gdamore 
      3   1.1  gdamore /*-
      4   1.1  gdamore  * Copyright (c) 2006 Itronix Inc.
      5   1.1  gdamore  * All rights reserved.
      6   1.1  gdamore  *
      7   1.1  gdamore  * Written by Iain Hibbert for Itronix Inc.
      8   1.1  gdamore  *
      9   1.1  gdamore  * Redistribution and use in source and binary forms, with or without
     10   1.1  gdamore  * modification, are permitted provided that the following conditions
     11   1.1  gdamore  * are met:
     12   1.1  gdamore  * 1. Redistributions of source code must retain the above copyright
     13   1.1  gdamore  *    notice, this list of conditions and the following disclaimer.
     14   1.1  gdamore  * 2. Redistributions in binary form must reproduce the above copyright
     15   1.1  gdamore  *    notice, this list of conditions and the following disclaimer in the
     16   1.1  gdamore  *    documentation and/or other materials provided with the distribution.
     17   1.1  gdamore  * 3. The name of Itronix Inc. may not be used to endorse
     18   1.1  gdamore  *    or promote products derived from this software without specific
     19   1.1  gdamore  *    prior written permission.
     20   1.1  gdamore  *
     21   1.1  gdamore  * THIS SOFTWARE IS PROVIDED BY ITRONIX INC. ``AS IS'' AND
     22   1.1  gdamore  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     23   1.1  gdamore  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     24   1.1  gdamore  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL ITRONIX INC. BE LIABLE FOR ANY
     25   1.1  gdamore  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     26   1.1  gdamore  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     27   1.1  gdamore  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
     28   1.1  gdamore  * ON ANY THEORY OF LIABILITY, WHETHER IN
     29   1.1  gdamore  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30   1.1  gdamore  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     31   1.1  gdamore  * POSSIBILITY OF SUCH DAMAGE.
     32   1.1  gdamore  */
     33   1.1  gdamore 
     34   1.1  gdamore #include <sys/cdefs.h>
     35  1.10   plunky __KERNEL_RCSID(0, "$NetBSD: rfcomm_upper.c,v 1.10 2007/11/20 20:25:57 plunky Exp $");
     36   1.1  gdamore 
     37   1.1  gdamore #include <sys/param.h>
     38   1.1  gdamore #include <sys/kernel.h>
     39   1.1  gdamore #include <sys/mbuf.h>
     40   1.1  gdamore #include <sys/proc.h>
     41   1.1  gdamore #include <sys/systm.h>
     42   1.1  gdamore 
     43   1.1  gdamore #include <netbt/bluetooth.h>
     44   1.1  gdamore #include <netbt/hci.h>
     45   1.1  gdamore #include <netbt/l2cap.h>
     46   1.1  gdamore #include <netbt/rfcomm.h>
     47   1.1  gdamore 
     48   1.1  gdamore /****************************************************************************
     49   1.1  gdamore  *
     50   1.1  gdamore  *	RFCOMM DLC - Upper Protocol API
     51   1.1  gdamore  *
     52   1.1  gdamore  * Currently the only 'Port Emulation Entity' is the RFCOMM socket code
     53   1.1  gdamore  * but it is should be possible to provide a pseudo-device for a direct
     54   1.1  gdamore  * tty interface.
     55   1.1  gdamore  */
     56   1.1  gdamore 
     57   1.1  gdamore /*
     58   1.1  gdamore  * rfcomm_attach(handle, proto, upper)
     59   1.1  gdamore  *
     60   1.1  gdamore  * attach a new RFCOMM DLC to handle, populate with reasonable defaults
     61   1.1  gdamore  */
     62   1.1  gdamore int
     63   1.1  gdamore rfcomm_attach(struct rfcomm_dlc **handle,
     64   1.1  gdamore 		const struct btproto *proto, void *upper)
     65   1.1  gdamore {
     66   1.1  gdamore 	struct rfcomm_dlc *dlc;
     67   1.1  gdamore 
     68   1.4   plunky 	KASSERT(handle != NULL);
     69   1.4   plunky 	KASSERT(proto != NULL);
     70   1.4   plunky 	KASSERT(upper != NULL);
     71   1.1  gdamore 
     72   1.1  gdamore 	dlc = malloc(sizeof(struct rfcomm_dlc), M_BLUETOOTH, M_NOWAIT | M_ZERO);
     73   1.1  gdamore 	if (dlc == NULL)
     74   1.1  gdamore 		return ENOMEM;
     75   1.1  gdamore 
     76   1.1  gdamore 	dlc->rd_state = RFCOMM_DLC_CLOSED;
     77   1.1  gdamore 	dlc->rd_mtu = rfcomm_mtu_default;
     78   1.1  gdamore 
     79   1.1  gdamore 	dlc->rd_proto = proto;
     80   1.1  gdamore 	dlc->rd_upper = upper;
     81   1.1  gdamore 
     82   1.1  gdamore 	dlc->rd_laddr.bt_len = sizeof(struct sockaddr_bt);
     83   1.1  gdamore 	dlc->rd_laddr.bt_family = AF_BLUETOOTH;
     84   1.1  gdamore 	dlc->rd_laddr.bt_psm = L2CAP_PSM_RFCOMM;
     85   1.1  gdamore 
     86   1.1  gdamore 	dlc->rd_raddr.bt_len = sizeof(struct sockaddr_bt);
     87   1.1  gdamore 	dlc->rd_raddr.bt_family = AF_BLUETOOTH;
     88   1.1  gdamore 	dlc->rd_raddr.bt_psm = L2CAP_PSM_RFCOMM;
     89   1.1  gdamore 
     90   1.1  gdamore 	dlc->rd_lmodem = RFCOMM_MSC_RTC | RFCOMM_MSC_RTR | RFCOMM_MSC_DV;
     91   1.1  gdamore 
     92   1.7       ad 	callout_init(&dlc->rd_timeout, 0);
     93   1.1  gdamore 	callout_setfunc(&dlc->rd_timeout, rfcomm_dlc_timeout, dlc);
     94   1.1  gdamore 
     95   1.1  gdamore 	*handle = dlc;
     96   1.1  gdamore 	return 0;
     97   1.1  gdamore }
     98   1.1  gdamore 
     99   1.1  gdamore /*
    100   1.1  gdamore  * rfcomm_bind(dlc, sockaddr)
    101   1.1  gdamore  *
    102   1.1  gdamore  * bind DLC to local address
    103   1.1  gdamore  */
    104   1.1  gdamore int
    105   1.1  gdamore rfcomm_bind(struct rfcomm_dlc *dlc, struct sockaddr_bt *addr)
    106   1.1  gdamore {
    107   1.1  gdamore 
    108   1.1  gdamore 	memcpy(&dlc->rd_laddr, addr, sizeof(struct sockaddr_bt));
    109   1.1  gdamore 	return 0;
    110   1.1  gdamore }
    111   1.1  gdamore 
    112   1.1  gdamore /*
    113   1.1  gdamore  * rfcomm_sockaddr(dlc, sockaddr)
    114   1.1  gdamore  *
    115   1.1  gdamore  * return local address
    116   1.1  gdamore  */
    117   1.1  gdamore int
    118   1.1  gdamore rfcomm_sockaddr(struct rfcomm_dlc *dlc, struct sockaddr_bt *addr)
    119   1.1  gdamore {
    120   1.1  gdamore 
    121   1.1  gdamore 	memcpy(addr, &dlc->rd_laddr, sizeof(struct sockaddr_bt));
    122   1.1  gdamore 	return 0;
    123   1.1  gdamore }
    124   1.1  gdamore 
    125   1.1  gdamore /*
    126   1.1  gdamore  * rfcomm_connect(dlc, sockaddr)
    127   1.1  gdamore  *
    128   1.1  gdamore  * Initiate connection of RFCOMM DLC to remote address.
    129   1.1  gdamore  */
    130   1.1  gdamore int
    131   1.1  gdamore rfcomm_connect(struct rfcomm_dlc *dlc, struct sockaddr_bt *dest)
    132   1.1  gdamore {
    133   1.1  gdamore 	struct rfcomm_session *rs;
    134   1.1  gdamore 	int err = 0;
    135   1.1  gdamore 
    136   1.1  gdamore 	if (dlc->rd_state != RFCOMM_DLC_CLOSED)
    137   1.1  gdamore 		return EISCONN;
    138   1.1  gdamore 
    139   1.1  gdamore 	memcpy(&dlc->rd_raddr, dest, sizeof(struct sockaddr_bt));
    140   1.1  gdamore 
    141   1.1  gdamore 	if (dlc->rd_raddr.bt_channel < RFCOMM_CHANNEL_MIN
    142   1.1  gdamore 	    || dlc->rd_raddr.bt_channel > RFCOMM_CHANNEL_MAX
    143   1.1  gdamore 	    || bdaddr_any(&dlc->rd_raddr.bt_bdaddr))
    144   1.1  gdamore 		return EDESTADDRREQ;
    145   1.1  gdamore 
    146   1.1  gdamore 	if (dlc->rd_raddr.bt_psm == L2CAP_PSM_ANY)
    147   1.1  gdamore 		dlc->rd_raddr.bt_psm = L2CAP_PSM_RFCOMM;
    148   1.1  gdamore 	else if (dlc->rd_raddr.bt_psm != L2CAP_PSM_RFCOMM
    149   1.1  gdamore 	    && (dlc->rd_raddr.bt_psm < 0x1001
    150   1.1  gdamore 	    || L2CAP_PSM_INVALID(dlc->rd_raddr.bt_psm)))
    151   1.1  gdamore 		return EINVAL;
    152   1.1  gdamore 
    153   1.1  gdamore 	/*
    154   1.1  gdamore 	 * We are allowed only one RFCOMM session between any 2 Bluetooth
    155   1.1  gdamore 	 * devices, so see if there is a session already otherwise create
    156   1.1  gdamore 	 * one and set it connecting.
    157   1.1  gdamore 	 */
    158   1.1  gdamore 	rs = rfcomm_session_lookup(&dlc->rd_laddr, &dlc->rd_raddr);
    159   1.1  gdamore 	if (rs == NULL) {
    160   1.1  gdamore 		rs = rfcomm_session_alloc(&rfcomm_session_active,
    161   1.1  gdamore 						&dlc->rd_laddr);
    162   1.1  gdamore 		if (rs == NULL)
    163   1.1  gdamore 			return ENOMEM;
    164   1.1  gdamore 
    165   1.1  gdamore 		rs->rs_flags |= RFCOMM_SESSION_INITIATOR;
    166   1.1  gdamore 		rs->rs_state = RFCOMM_SESSION_WAIT_CONNECT;
    167   1.1  gdamore 
    168   1.1  gdamore 		err = l2cap_connect(rs->rs_l2cap, &dlc->rd_raddr);
    169   1.1  gdamore 		if (err) {
    170   1.1  gdamore 			rfcomm_session_free(rs);
    171   1.1  gdamore 			return err;
    172   1.1  gdamore 		}
    173   1.1  gdamore 
    174   1.1  gdamore 		/*
    175   1.1  gdamore 		 * This session will start up automatically when its
    176   1.1  gdamore 		 * L2CAP channel is connected.
    177   1.1  gdamore 		 */
    178   1.1  gdamore 	}
    179   1.1  gdamore 
    180   1.1  gdamore 	/* construct DLC */
    181   1.1  gdamore 	dlc->rd_dlci = RFCOMM_MKDLCI(IS_INITIATOR(rs) ? 0:1, dest->bt_channel);
    182   1.1  gdamore 	if (rfcomm_dlc_lookup(rs, dlc->rd_dlci))
    183   1.1  gdamore 		return EBUSY;
    184   1.1  gdamore 
    185   1.1  gdamore 	l2cap_sockaddr(rs->rs_l2cap, &dlc->rd_laddr);
    186   1.1  gdamore 
    187   1.1  gdamore 	/*
    188   1.1  gdamore 	 * attach the DLC to the session and start it off
    189   1.1  gdamore 	 */
    190   1.1  gdamore 	dlc->rd_session = rs;
    191   1.1  gdamore 	dlc->rd_state = RFCOMM_DLC_WAIT_SESSION;
    192   1.1  gdamore 	LIST_INSERT_HEAD(&rs->rs_dlcs, dlc, rd_next);
    193   1.1  gdamore 
    194   1.1  gdamore 	if (rs->rs_state == RFCOMM_SESSION_OPEN)
    195   1.1  gdamore 		err = rfcomm_dlc_connect(dlc);
    196   1.1  gdamore 
    197   1.1  gdamore 	return err;
    198   1.1  gdamore }
    199   1.1  gdamore 
    200   1.1  gdamore /*
    201   1.1  gdamore  * rfcomm_peeraddr(dlc, sockaddr)
    202   1.1  gdamore  *
    203   1.1  gdamore  * return remote address
    204   1.1  gdamore  */
    205   1.1  gdamore int
    206   1.1  gdamore rfcomm_peeraddr(struct rfcomm_dlc *dlc, struct sockaddr_bt *addr)
    207   1.1  gdamore {
    208   1.1  gdamore 
    209   1.1  gdamore 	memcpy(addr, &dlc->rd_raddr, sizeof(struct sockaddr_bt));
    210   1.1  gdamore 	return 0;
    211   1.1  gdamore }
    212   1.1  gdamore 
    213   1.1  gdamore /*
    214   1.1  gdamore  * rfcomm_disconnect(dlc, linger)
    215   1.1  gdamore  *
    216   1.1  gdamore  * disconnect RFCOMM DLC
    217   1.1  gdamore  */
    218   1.1  gdamore int
    219   1.1  gdamore rfcomm_disconnect(struct rfcomm_dlc *dlc, int linger)
    220   1.1  gdamore {
    221   1.1  gdamore 	struct rfcomm_session *rs = dlc->rd_session;
    222   1.1  gdamore 	int err = 0;
    223   1.1  gdamore 
    224   1.1  gdamore 	KASSERT(dlc != NULL);
    225   1.1  gdamore 
    226   1.1  gdamore 	switch (dlc->rd_state) {
    227   1.1  gdamore 	case RFCOMM_DLC_CLOSED:
    228   1.1  gdamore 	case RFCOMM_DLC_LISTEN:
    229   1.1  gdamore 		return EINVAL;
    230   1.1  gdamore 
    231   1.6   plunky 	case RFCOMM_DLC_WAIT_SEND_UA:
    232   1.6   plunky 		err = rfcomm_session_send_frame(rs,
    233   1.6   plunky 				RFCOMM_FRAME_DM, dlc->rd_dlci);
    234   1.6   plunky 
    235   1.6   plunky 		/* fall through */
    236   1.1  gdamore 	case RFCOMM_DLC_WAIT_SESSION:
    237   1.6   plunky 	case RFCOMM_DLC_WAIT_CONNECT:
    238   1.6   plunky 	case RFCOMM_DLC_WAIT_SEND_SABM:
    239   1.1  gdamore 		rfcomm_dlc_close(dlc, 0);
    240   1.1  gdamore 		break;
    241   1.1  gdamore 
    242   1.1  gdamore 	case RFCOMM_DLC_OPEN:
    243   1.1  gdamore 		if (dlc->rd_txbuf != NULL && linger != 0) {
    244   1.1  gdamore 			dlc->rd_flags |= RFCOMM_DLC_SHUTDOWN;
    245   1.1  gdamore 			break;
    246   1.1  gdamore 		}
    247   1.1  gdamore 
    248   1.1  gdamore 		/* else fall through */
    249   1.6   plunky 	case RFCOMM_DLC_WAIT_RECV_UA:
    250   1.1  gdamore 		dlc->rd_state = RFCOMM_DLC_WAIT_DISCONNECT;
    251   1.1  gdamore 		err = rfcomm_session_send_frame(rs, RFCOMM_FRAME_DISC,
    252   1.1  gdamore 							dlc->rd_dlci);
    253   1.1  gdamore 		callout_schedule(&dlc->rd_timeout, rfcomm_ack_timeout * hz);
    254   1.1  gdamore 		break;
    255   1.1  gdamore 
    256   1.1  gdamore 	case RFCOMM_DLC_WAIT_DISCONNECT:
    257   1.1  gdamore 		err = EALREADY;
    258   1.1  gdamore 		break;
    259   1.1  gdamore 
    260   1.1  gdamore 	default:
    261   1.1  gdamore 		UNKNOWN(dlc->rd_state);
    262   1.1  gdamore 		break;
    263   1.1  gdamore 	}
    264   1.1  gdamore 
    265   1.1  gdamore 	return err;
    266   1.1  gdamore }
    267   1.1  gdamore 
    268   1.1  gdamore /*
    269   1.1  gdamore  * rfcomm_detach(handle)
    270   1.1  gdamore  *
    271   1.1  gdamore  * detach RFCOMM DLC from handle
    272   1.1  gdamore  */
    273   1.1  gdamore int
    274   1.1  gdamore rfcomm_detach(struct rfcomm_dlc **handle)
    275   1.1  gdamore {
    276   1.1  gdamore 	struct rfcomm_dlc *dlc = *handle;
    277   1.1  gdamore 
    278   1.1  gdamore 	if (dlc->rd_state != RFCOMM_DLC_CLOSED)
    279   1.1  gdamore 		rfcomm_dlc_close(dlc, 0);
    280   1.1  gdamore 
    281   1.1  gdamore 	if (dlc->rd_txbuf != NULL) {
    282   1.1  gdamore 		m_freem(dlc->rd_txbuf);
    283   1.1  gdamore 		dlc->rd_txbuf = NULL;
    284   1.1  gdamore 	}
    285   1.1  gdamore 
    286   1.1  gdamore 	dlc->rd_upper = NULL;
    287   1.1  gdamore 	*handle = NULL;
    288   1.1  gdamore 
    289   1.1  gdamore 	/*
    290   1.1  gdamore 	 * If callout is invoking we can't free the DLC so
    291   1.1  gdamore 	 * mark it and let the callout release it.
    292   1.1  gdamore 	 */
    293   1.1  gdamore 	if (callout_invoking(&dlc->rd_timeout))
    294   1.1  gdamore 		dlc->rd_flags |= RFCOMM_DLC_DETACH;
    295   1.8   plunky 	else {
    296   1.8   plunky 		callout_destroy(&dlc->rd_timeout);
    297   1.1  gdamore 		free(dlc, M_BLUETOOTH);
    298   1.8   plunky 	}
    299   1.1  gdamore 
    300   1.1  gdamore 	return 0;
    301   1.1  gdamore }
    302   1.1  gdamore 
    303   1.1  gdamore /*
    304   1.1  gdamore  * rfcomm_listen(dlc)
    305   1.1  gdamore  *
    306   1.1  gdamore  * This DLC is a listener. We look for an existing listening session
    307   1.1  gdamore  * with a matching address to attach to or else create a new one on
    308  1.10   plunky  * the listeners list. If the ANY channel is given, allocate the first
    309  1.10   plunky  * available for the session.
    310   1.1  gdamore  */
    311   1.1  gdamore int
    312   1.1  gdamore rfcomm_listen(struct rfcomm_dlc *dlc)
    313   1.1  gdamore {
    314   1.9   plunky 	struct rfcomm_session *rs;
    315  1.10   plunky 	struct rfcomm_dlc *used;
    316   1.1  gdamore 	struct sockaddr_bt addr;
    317  1.10   plunky 	int err, channel;
    318   1.1  gdamore 
    319   1.1  gdamore 	if (dlc->rd_state != RFCOMM_DLC_CLOSED)
    320   1.1  gdamore 		return EISCONN;
    321   1.1  gdamore 
    322  1.10   plunky 	if (dlc->rd_laddr.bt_channel != RFCOMM_CHANNEL_ANY
    323  1.10   plunky 	    && (dlc->rd_laddr.bt_channel < RFCOMM_CHANNEL_MIN
    324  1.10   plunky 	    || dlc->rd_laddr.bt_channel > RFCOMM_CHANNEL_MAX))
    325   1.1  gdamore 		return EADDRNOTAVAIL;
    326   1.1  gdamore 
    327   1.1  gdamore 	if (dlc->rd_laddr.bt_psm == L2CAP_PSM_ANY)
    328   1.1  gdamore 		dlc->rd_laddr.bt_psm = L2CAP_PSM_RFCOMM;
    329   1.1  gdamore 	else if (dlc->rd_laddr.bt_psm != L2CAP_PSM_RFCOMM
    330   1.1  gdamore 	    && (dlc->rd_laddr.bt_psm < 0x1001
    331   1.1  gdamore 	    || L2CAP_PSM_INVALID(dlc->rd_laddr.bt_psm)))
    332   1.1  gdamore 		return EADDRNOTAVAIL;
    333   1.1  gdamore 
    334   1.1  gdamore 	LIST_FOREACH(rs, &rfcomm_session_listen, rs_next) {
    335   1.1  gdamore 		l2cap_sockaddr(rs->rs_l2cap, &addr);
    336   1.1  gdamore 
    337   1.1  gdamore 		if (addr.bt_psm != dlc->rd_laddr.bt_psm)
    338   1.1  gdamore 			continue;
    339   1.1  gdamore 
    340   1.1  gdamore 		if (bdaddr_same(&dlc->rd_laddr.bt_bdaddr, &addr.bt_bdaddr))
    341   1.9   plunky 			break;
    342   1.1  gdamore 	}
    343   1.1  gdamore 
    344   1.1  gdamore 	if (rs == NULL) {
    345   1.1  gdamore 		rs = rfcomm_session_alloc(&rfcomm_session_listen,
    346   1.1  gdamore 						&dlc->rd_laddr);
    347   1.1  gdamore 		if (rs == NULL)
    348   1.1  gdamore 			return ENOMEM;
    349   1.1  gdamore 
    350   1.1  gdamore 		rs->rs_state = RFCOMM_SESSION_LISTEN;
    351   1.1  gdamore 
    352   1.1  gdamore 		err = l2cap_listen(rs->rs_l2cap);
    353   1.1  gdamore 		if (err) {
    354   1.1  gdamore 			rfcomm_session_free(rs);
    355   1.1  gdamore 			return err;
    356   1.1  gdamore 		}
    357   1.1  gdamore 	}
    358   1.1  gdamore 
    359  1.10   plunky 	if (dlc->rd_laddr.bt_channel == RFCOMM_CHANNEL_ANY) {
    360  1.10   plunky 		channel = RFCOMM_CHANNEL_MIN;
    361  1.10   plunky 		used = LIST_FIRST(&rs->rs_dlcs);
    362  1.10   plunky 
    363  1.10   plunky 		while (used != NULL) {
    364  1.10   plunky 			if (used->rd_laddr.bt_channel == channel) {
    365  1.10   plunky 				if (channel++ == RFCOMM_CHANNEL_MAX)
    366  1.10   plunky 					return EADDRNOTAVAIL;
    367  1.10   plunky 
    368  1.10   plunky 				used = LIST_FIRST(&rs->rs_dlcs);
    369  1.10   plunky 			} else {
    370  1.10   plunky 				used = LIST_NEXT(used, rd_next);
    371  1.10   plunky 			}
    372  1.10   plunky 		}
    373  1.10   plunky 
    374  1.10   plunky 		dlc->rd_laddr.bt_channel = channel;
    375  1.10   plunky 	}
    376  1.10   plunky 
    377   1.1  gdamore 	dlc->rd_session = rs;
    378   1.1  gdamore 	dlc->rd_state = RFCOMM_DLC_LISTEN;
    379   1.1  gdamore 	LIST_INSERT_HEAD(&rs->rs_dlcs, dlc, rd_next);
    380   1.1  gdamore 
    381   1.1  gdamore 	return 0;
    382   1.1  gdamore }
    383   1.1  gdamore 
    384   1.1  gdamore /*
    385   1.1  gdamore  * rfcomm_send(dlc, mbuf)
    386   1.1  gdamore  *
    387   1.1  gdamore  * Output data on DLC. This is streamed data, so we add it
    388   1.1  gdamore  * to our buffer and start the the DLC, which will assemble
    389   1.1  gdamore  * packets and send them if it can.
    390   1.1  gdamore  */
    391   1.1  gdamore int
    392   1.1  gdamore rfcomm_send(struct rfcomm_dlc *dlc, struct mbuf *m)
    393   1.1  gdamore {
    394   1.1  gdamore 
    395   1.1  gdamore 	if (dlc->rd_txbuf != NULL) {
    396   1.1  gdamore 		dlc->rd_txbuf->m_pkthdr.len += m->m_pkthdr.len;
    397   1.1  gdamore 		m_cat(dlc->rd_txbuf, m);
    398   1.1  gdamore 	} else {
    399   1.1  gdamore 		dlc->rd_txbuf = m;
    400   1.1  gdamore 	}
    401   1.1  gdamore 
    402   1.1  gdamore 	if (dlc->rd_state == RFCOMM_DLC_OPEN)
    403   1.1  gdamore 		rfcomm_dlc_start(dlc);
    404   1.1  gdamore 
    405   1.1  gdamore 	return 0;
    406   1.1  gdamore }
    407   1.1  gdamore 
    408   1.1  gdamore /*
    409   1.1  gdamore  * rfcomm_rcvd(dlc, space)
    410   1.1  gdamore  *
    411   1.1  gdamore  * Indicate space now available in receive buffer
    412   1.1  gdamore  *
    413   1.1  gdamore  * This should be used to give an initial value of the receive buffer
    414   1.1  gdamore  * size when the DLC is attached and anytime data is cleared from the
    415   1.1  gdamore  * buffer after that.
    416   1.1  gdamore  */
    417   1.1  gdamore int
    418   1.1  gdamore rfcomm_rcvd(struct rfcomm_dlc *dlc, size_t space)
    419   1.1  gdamore {
    420   1.1  gdamore 
    421   1.1  gdamore 	KASSERT(dlc != NULL);
    422   1.1  gdamore 
    423   1.1  gdamore 	dlc->rd_rxsize = space;
    424   1.1  gdamore 
    425   1.1  gdamore 	/*
    426   1.1  gdamore 	 * if we are using credit based flow control, we may
    427   1.1  gdamore 	 * want to send some credits..
    428   1.1  gdamore 	 */
    429   1.1  gdamore 	if (dlc->rd_state == RFCOMM_DLC_OPEN
    430   1.1  gdamore 	    && (dlc->rd_session->rs_flags & RFCOMM_SESSION_CFC))
    431   1.1  gdamore 		rfcomm_dlc_start(dlc);
    432   1.1  gdamore 
    433   1.1  gdamore 	return 0;
    434   1.1  gdamore }
    435   1.1  gdamore 
    436   1.1  gdamore /*
    437   1.1  gdamore  * rfcomm_setopt(dlc, option, addr)
    438   1.1  gdamore  *
    439   1.1  gdamore  * set DLC options
    440   1.1  gdamore  */
    441   1.1  gdamore int
    442   1.1  gdamore rfcomm_setopt(struct rfcomm_dlc *dlc, int opt, void *addr)
    443   1.1  gdamore {
    444   1.6   plunky 	int mode, err = 0;
    445   1.3   plunky 	uint16_t mtu;
    446   1.1  gdamore 
    447   1.1  gdamore 	switch (opt) {
    448   1.1  gdamore 	case SO_RFCOMM_MTU:
    449   1.3   plunky 		mtu = *(uint16_t *)addr;
    450   1.3   plunky 		if (mtu < RFCOMM_MTU_MIN || mtu > RFCOMM_MTU_MAX)
    451   1.1  gdamore 			err = EINVAL;
    452   1.5   plunky 		else if (dlc->rd_state == RFCOMM_DLC_CLOSED)
    453   1.5   plunky 			dlc->rd_mtu = mtu;
    454   1.3   plunky 		else
    455   1.5   plunky 			err = EBUSY;
    456   1.3   plunky 
    457   1.1  gdamore 		break;
    458   1.1  gdamore 
    459   1.6   plunky 	case SO_RFCOMM_LM:
    460   1.6   plunky 		mode = *(int *)addr;
    461   1.6   plunky 		mode &= (RFCOMM_LM_SECURE | RFCOMM_LM_ENCRYPT | RFCOMM_LM_AUTH);
    462   1.6   plunky 
    463   1.6   plunky 		if (mode & RFCOMM_LM_SECURE)
    464   1.6   plunky 			mode |= RFCOMM_LM_ENCRYPT;
    465   1.6   plunky 
    466   1.6   plunky 		if (mode & RFCOMM_LM_ENCRYPT)
    467   1.6   plunky 			mode |= RFCOMM_LM_AUTH;
    468   1.6   plunky 
    469   1.6   plunky 		dlc->rd_mode = mode;
    470   1.6   plunky 
    471   1.6   plunky 		if (dlc->rd_state == RFCOMM_DLC_OPEN)
    472   1.6   plunky 			err = rfcomm_dlc_setmode(dlc);
    473   1.6   plunky 
    474   1.6   plunky 		break;
    475   1.6   plunky 
    476   1.1  gdamore 	default:
    477   1.2   plunky 		err = ENOPROTOOPT;
    478   1.1  gdamore 		break;
    479   1.1  gdamore 	}
    480   1.1  gdamore 	return err;
    481   1.1  gdamore }
    482   1.1  gdamore 
    483   1.1  gdamore /*
    484   1.1  gdamore  * rfcomm_getopt(dlc, option, addr)
    485   1.1  gdamore  *
    486   1.1  gdamore  * get DLC options
    487   1.1  gdamore  */
    488   1.1  gdamore int
    489   1.1  gdamore rfcomm_getopt(struct rfcomm_dlc *dlc, int opt, void *addr)
    490   1.1  gdamore {
    491   1.1  gdamore 	struct rfcomm_fc_info *fc;
    492   1.1  gdamore 
    493   1.1  gdamore 	switch (opt) {
    494   1.1  gdamore 	case SO_RFCOMM_MTU:
    495   1.1  gdamore 		*(uint16_t *)addr = dlc->rd_mtu;
    496   1.1  gdamore 		return sizeof(uint16_t);
    497   1.1  gdamore 
    498   1.1  gdamore 	case SO_RFCOMM_FC_INFO:
    499   1.1  gdamore 		fc = addr;
    500   1.1  gdamore 		memset(fc, 0, sizeof(*fc));
    501   1.1  gdamore 		fc->lmodem = dlc->rd_lmodem;
    502   1.1  gdamore 		fc->rmodem = dlc->rd_rmodem;
    503   1.1  gdamore 		fc->tx_cred = max(dlc->rd_txcred, 0xff);
    504   1.1  gdamore 		fc->rx_cred = max(dlc->rd_rxcred, 0xff);
    505   1.1  gdamore 		if (dlc->rd_session
    506   1.1  gdamore 		    && (dlc->rd_session->rs_flags & RFCOMM_SESSION_CFC))
    507   1.1  gdamore 			fc->cfc = 1;
    508   1.1  gdamore 
    509   1.1  gdamore 		return sizeof(*fc);
    510   1.1  gdamore 
    511   1.6   plunky 	case SO_RFCOMM_LM:
    512   1.6   plunky 		*(int *)addr = dlc->rd_mode;
    513   1.6   plunky 		return sizeof(int);
    514   1.6   plunky 
    515   1.1  gdamore 	default:
    516   1.1  gdamore 		break;
    517   1.1  gdamore 	}
    518   1.1  gdamore 
    519   1.1  gdamore 	return 0;
    520   1.1  gdamore }
    521