1 /* $NetBSD: client.c,v 1.2 2008/12/06 20:01:14 plunky Exp $ */ 2 3 /*- 4 * Copyright (c) 2008 Iain Hibbert 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 */ 27 28 /* $FreeBSD$ */ 29 30 #include <sys/cdefs.h> 31 __RCSID("$NetBSD: client.c,v 1.2 2008/12/06 20:01:14 plunky Exp $"); 32 33 #include <bluetooth.h> 34 #include <errno.h> 35 #include <sdp.h> 36 #include <unistd.h> 37 38 #include "btpand.h" 39 #include "bnep.h" 40 #include "sdp.h" 41 42 static void client_query(void); 43 44 void 45 client_init(void) 46 { 47 struct sockaddr_l2cap sa; 48 channel_t *chan; 49 socklen_t len; 50 int fd, n; 51 uint16_t mru, mtu; 52 53 if (bdaddr_any(&remote_bdaddr)) 54 return; 55 56 if (service_name) 57 client_query(); 58 59 fd = socket(PF_BLUETOOTH, SOCK_SEQPACKET, BLUETOOTH_PROTO_L2CAP); 60 if (fd == -1) { 61 log_err("Could not open L2CAP socket: %m"); 62 exit(EXIT_FAILURE); 63 } 64 65 memset(&sa, 0, sizeof(sa)); 66 sa.l2cap_family = AF_BLUETOOTH; 67 sa.l2cap_len = sizeof(sa); 68 bdaddr_copy(&sa.l2cap_bdaddr, &local_bdaddr); 69 if (bind(fd, (struct sockaddr *)&sa, sizeof(sa)) == -1) { 70 log_err("Could not bind client socket: %m"); 71 exit(EXIT_FAILURE); 72 } 73 74 mru = BNEP_MTU_MIN; 75 if (setsockopt(fd, SOL_L2CAP, SO_L2CAP_IMTU, &mru, sizeof(mru)) == -1) { 76 log_err("Could not set L2CAP IMTU (%d): %m", mru); 77 exit(EXIT_FAILURE); 78 } 79 80 log_info("Opening connection to service 0x%4.4x at %s", 81 service_class, bt_ntoa(&remote_bdaddr, NULL)); 82 83 sa.l2cap_psm = htole16(l2cap_psm); 84 bdaddr_copy(&sa.l2cap_bdaddr, &remote_bdaddr); 85 if (connect(fd, (struct sockaddr *)&sa, sizeof(sa)) == -1) { 86 log_err("Could not connect: %m"); 87 exit(EXIT_FAILURE); 88 } 89 90 len = sizeof(mru); 91 if (getsockopt(fd, SOL_L2CAP, SO_L2CAP_IMTU, &mru, &len) == -1) { 92 log_err("Could not get IMTU: %m"); 93 exit(EXIT_FAILURE); 94 } 95 if (mru < BNEP_MTU_MIN) { 96 log_err("L2CAP IMTU too small (%d)", mru); 97 exit(EXIT_FAILURE); 98 } 99 100 len = sizeof(n); 101 if (getsockopt(fd, SOL_SOCKET, SO_RCVBUF, &n, &len) == -1) { 102 log_err("Could not read SO_RCVBUF"); 103 exit(EXIT_FAILURE); 104 } 105 if (n < (mru * 10)) { 106 n = mru * 10; 107 if (setsockopt(fd, SOL_SOCKET, SO_RCVBUF, &n, sizeof(n)) == -1) 108 log_info("Could not increase SO_RCVBUF (from %d)", n); 109 } 110 111 len = sizeof(mtu); 112 if (getsockopt(fd, SOL_L2CAP, SO_L2CAP_OMTU, &mtu, &len) == -1) { 113 log_err("Could not get L2CAP OMTU: %m"); 114 exit(EXIT_FAILURE); 115 } 116 if (mtu < BNEP_MTU_MIN) { 117 log_err("L2CAP OMTU too small (%d)", mtu); 118 exit(EXIT_FAILURE); 119 } 120 121 len = sizeof(n); 122 if (getsockopt(fd, SOL_SOCKET, SO_SNDBUF, &n, &len) == -1) { 123 log_err("Could not get socket send buffer size: %m"); 124 close(fd); 125 return; 126 } 127 if (n < (mtu * 2)) { 128 n = mtu * 2; 129 if (setsockopt(fd, SOL_SOCKET, SO_SNDBUF, &n, sizeof(n)) == -1) { 130 log_err("Could not set socket send buffer size (%d): %m", n); 131 close(fd); 132 return; 133 } 134 } 135 n = mtu; 136 if (setsockopt(fd, SOL_SOCKET, SO_SNDLOWAT, &n, sizeof(n)) == -1) { 137 log_err("Could not set socket low water mark (%d): %m", n); 138 close(fd); 139 return; 140 } 141 142 chan = channel_alloc(); 143 if (chan == NULL) 144 exit(EXIT_FAILURE); 145 146 chan->send = bnep_send; 147 chan->recv = bnep_recv; 148 chan->mru = mru; 149 chan->mtu = mtu; 150 b2eaddr(chan->raddr, &remote_bdaddr); 151 b2eaddr(chan->laddr, &local_bdaddr); 152 chan->state = CHANNEL_WAIT_CONNECT_RSP; 153 channel_timeout(chan, 10); 154 if (!channel_open(chan, fd)) 155 exit(EXIT_FAILURE); 156 157 bnep_send_control(chan, BNEP_SETUP_CONNECTION_REQUEST, 158 2, service_class, SDP_SERVICE_CLASS_PANU); 159 } 160 161 static void 162 client_query(void) 163 { 164 uint8_t buffer[512]; 165 sdp_attr_t attr; 166 uint32_t range; 167 void *ss; 168 int rv; 169 uint8_t *seq0, *seq1; 170 171 attr.flags = SDP_ATTR_INVALID; 172 attr.attr = 0; 173 attr.vlen = sizeof(buffer); 174 attr.value = buffer; 175 176 range = SDP_ATTR_RANGE(SDP_ATTR_PROTOCOL_DESCRIPTOR_LIST, 177 SDP_ATTR_PROTOCOL_DESCRIPTOR_LIST); 178 179 ss = sdp_open(&local_bdaddr, &remote_bdaddr); 180 if (ss == NULL || (errno = sdp_error(ss)) != 0) { 181 log_err("%s: %m", service_name); 182 exit(EXIT_FAILURE); 183 } 184 185 log_info("Searching for %s service at %s", 186 service_name, bt_ntoa(&remote_bdaddr, NULL)); 187 188 rv = sdp_search(ss, 1, &service_class, 1, &range, 1, &attr); 189 if (rv != 0) { 190 log_err("%s: %s", service_name, strerror(sdp_error(ss))); 191 exit(EXIT_FAILURE); 192 } 193 194 sdp_close(ss); 195 196 if (attr.flags != SDP_ATTR_OK 197 || attr.attr != SDP_ATTR_PROTOCOL_DESCRIPTOR_LIST) { 198 log_err("%s service not found", service_name); 199 exit(EXIT_FAILURE); 200 } 201 202 /* 203 * we expect the following protocol descriptor list 204 * 205 * seq len 206 * seq len 207 * uuid value == L2CAP 208 * uint16 value16 => PSM 209 * seq len 210 * uuid value == BNEP 211 */ 212 if (_sdp_get_seq(&attr.value, attr.value + attr.vlen, &seq0) 213 && _sdp_get_seq(&seq0, attr.value, &seq1) 214 && _sdp_match_uuid16(&seq1, seq0, SDP_UUID_PROTOCOL_L2CAP) 215 && _sdp_get_uint16(&seq1, seq0, &l2cap_psm) 216 && _sdp_get_seq(&seq0, attr.value, &seq1) 217 && _sdp_match_uuid16(&seq1, seq0, SDP_UUID_PROTOCOL_BNEP)) { 218 log_info("Found PSM %d for service %s", l2cap_psm, service_name); 219 return; 220 } 221 222 log_err("%s query failed", service_name); 223 exit(EXIT_FAILURE); 224 } 225