blob: e493b3397ae3337b4582d811febb932e0711a09e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*********************************************************************
2 *
3 * Filename: af_irda.c
4 * Version: 0.9
5 * Description: IrDA sockets implementation
6 * Status: Stable
7 * Author: Dag Brattli <dagb@cs.uit.no>
8 * Created at: Sun May 31 10:12:43 1998
9 * Modified at: Sat Dec 25 21:10:23 1999
10 * Modified by: Dag Brattli <dag@brattli.net>
11 * Sources: af_netroom.c, af_ax25.c, af_rose.c, af_x25.c etc.
12 *
13 * Copyright (c) 1999 Dag Brattli <dagb@cs.uit.no>
14 * Copyright (c) 1999-2003 Jean Tourrilhes <jt@hpl.hp.com>
15 * All Rights Reserved.
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of
20 * the License, or (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 * MA 02111-1307 USA
31 *
32 * Linux-IrDA now supports four different types of IrDA sockets:
33 *
34 * o SOCK_STREAM: TinyTP connections with SAR disabled. The
35 * max SDU size is 0 for conn. of this type
36 * o SOCK_SEQPACKET: TinyTP connections with SAR enabled. TTP may
37 * fragment the messages, but will preserve
38 * the message boundaries
39 * o SOCK_DGRAM: IRDAPROTO_UNITDATA: TinyTP connections with Unitdata
40 * (unreliable) transfers
41 * IRDAPROTO_ULTRA: Connectionless and unreliable data
42 *
43 ********************************************************************/
44
Randy Dunlap4fc268d2006-01-11 12:17:47 -080045#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/module.h>
47#include <linux/types.h>
48#include <linux/socket.h>
49#include <linux/sockios.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090050#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/init.h>
52#include <linux/net.h>
53#include <linux/irda.h>
54#include <linux/poll.h>
55
56#include <asm/ioctls.h> /* TIOCOUTQ, TIOCINQ */
57#include <asm/uaccess.h>
58
59#include <net/sock.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070060#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#include <net/irda/af_irda.h>
63
Eric Paris3f378b62009-11-05 22:18:14 -080064static int irda_create(struct net *net, struct socket *sock, int protocol, int kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Eric Dumazet90ddc4f2005-12-22 12:49:22 -080066static const struct proto_ops irda_stream_ops;
67static const struct proto_ops irda_seqpacket_ops;
68static const struct proto_ops irda_dgram_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#ifdef CONFIG_IRDA_ULTRA
Eric Dumazet90ddc4f2005-12-22 12:49:22 -080071static const struct proto_ops irda_ultra_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#define ULTRA_MAX_DATA 382
73#endif /* CONFIG_IRDA_ULTRA */
74
75#define IRDA_MAX_HEADER (TTP_MAX_HEADER)
76
77/*
78 * Function irda_data_indication (instance, sap, skb)
79 *
80 * Received some data from TinyTP. Just queue it on the receive queue
81 *
82 */
83static int irda_data_indication(void *instance, void *sap, struct sk_buff *skb)
84{
85 struct irda_sock *self;
86 struct sock *sk;
87 int err;
88
Harvey Harrison0dc47872008-03-05 20:47:47 -080089 IRDA_DEBUG(3, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 self = instance;
92 sk = instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 err = sock_queue_rcv_skb(sk, skb);
95 if (err) {
Harvey Harrison0dc47872008-03-05 20:47:47 -080096 IRDA_DEBUG(1, "%s(), error: no more mem!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 self->rx_flow = FLOW_STOP;
98
99 /* When we return error, TTP will need to requeue the skb */
100 return err;
101 }
102
103 return 0;
104}
105
106/*
107 * Function irda_disconnect_indication (instance, sap, reason, skb)
108 *
109 * Connection has been closed. Check reason to find out why
110 *
111 */
112static void irda_disconnect_indication(void *instance, void *sap,
113 LM_REASON reason, struct sk_buff *skb)
114{
115 struct irda_sock *self;
116 struct sock *sk;
117
118 self = instance;
119
Harvey Harrison0dc47872008-03-05 20:47:47 -0800120 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 /* Don't care about it, but let's not leak it */
123 if(skb)
124 dev_kfree_skb(skb);
125
126 sk = instance;
127 if (sk == NULL) {
128 IRDA_DEBUG(0, "%s(%p) : BUG : sk is NULL\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800129 __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return;
131 }
132
133 /* Prevent race conditions with irda_release() and irda_shutdown() */
Olaf Kirch6e66aa12007-04-20 22:08:15 -0700134 bh_lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 if (!sock_flag(sk, SOCK_DEAD) && sk->sk_state != TCP_CLOSE) {
136 sk->sk_state = TCP_CLOSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 sk->sk_shutdown |= SEND_SHUTDOWN;
138
139 sk->sk_state_change(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 /* Close our TSAP.
142 * If we leave it open, IrLMP put it back into the list of
143 * unconnected LSAPs. The problem is that any incoming request
144 * can then be matched to this socket (and it will be, because
145 * it is at the head of the list). This would prevent any
146 * listening socket waiting on the same TSAP to get those
147 * requests. Some apps forget to close sockets, or hang to it
148 * a bit too long, so we may stay in this dead state long
149 * enough to be noticed...
150 * Note : all socket function do check sk->sk_state, so we are
151 * safe...
152 * Jean II
153 */
154 if (self->tsap) {
155 irttp_close_tsap(self->tsap);
156 self->tsap = NULL;
157 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900158 }
Olaf Kirch6e66aa12007-04-20 22:08:15 -0700159 bh_unlock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 /* Note : once we are there, there is not much you want to do
162 * with the socket anymore, apart from closing it.
163 * For example, bind() and connect() won't reset sk->sk_err,
164 * sk->sk_shutdown and sk->sk_flags to valid values...
165 * Jean II
166 */
167}
168
169/*
170 * Function irda_connect_confirm (instance, sap, qos, max_sdu_size, skb)
171 *
172 * Connections has been confirmed by the remote device
173 *
174 */
175static void irda_connect_confirm(void *instance, void *sap,
176 struct qos_info *qos,
177 __u32 max_sdu_size, __u8 max_header_size,
178 struct sk_buff *skb)
179{
180 struct irda_sock *self;
181 struct sock *sk;
182
183 self = instance;
184
Harvey Harrison0dc47872008-03-05 20:47:47 -0800185 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 sk = instance;
188 if (sk == NULL) {
189 dev_kfree_skb(skb);
190 return;
191 }
192
193 dev_kfree_skb(skb);
194 // Should be ??? skb_queue_tail(&sk->sk_receive_queue, skb);
195
196 /* How much header space do we need to reserve */
197 self->max_header_size = max_header_size;
198
199 /* IrTTP max SDU size in transmit direction */
200 self->max_sdu_size_tx = max_sdu_size;
201
202 /* Find out what the largest chunk of data that we can transmit is */
203 switch (sk->sk_type) {
204 case SOCK_STREAM:
205 if (max_sdu_size != 0) {
206 IRDA_ERROR("%s: max_sdu_size must be 0\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800207 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return;
209 }
210 self->max_data_size = irttp_get_max_seg_size(self->tsap);
211 break;
212 case SOCK_SEQPACKET:
213 if (max_sdu_size == 0) {
214 IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800215 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return;
217 }
218 self->max_data_size = max_sdu_size;
219 break;
220 default:
221 self->max_data_size = irttp_get_max_seg_size(self->tsap);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Harvey Harrison0dc47872008-03-05 20:47:47 -0800224 IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 self->max_data_size);
226
227 memcpy(&self->qos_tx, qos, sizeof(struct qos_info));
228
229 /* We are now connected! */
230 sk->sk_state = TCP_ESTABLISHED;
231 sk->sk_state_change(sk);
232}
233
234/*
235 * Function irda_connect_indication(instance, sap, qos, max_sdu_size, userdata)
236 *
237 * Incoming connection
238 *
239 */
240static void irda_connect_indication(void *instance, void *sap,
241 struct qos_info *qos, __u32 max_sdu_size,
242 __u8 max_header_size, struct sk_buff *skb)
243{
244 struct irda_sock *self;
245 struct sock *sk;
246
247 self = instance;
248
Harvey Harrison0dc47872008-03-05 20:47:47 -0800249 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 sk = instance;
252 if (sk == NULL) {
253 dev_kfree_skb(skb);
254 return;
255 }
256
257 /* How much header space do we need to reserve */
258 self->max_header_size = max_header_size;
259
260 /* IrTTP max SDU size in transmit direction */
261 self->max_sdu_size_tx = max_sdu_size;
262
263 /* Find out what the largest chunk of data that we can transmit is */
264 switch (sk->sk_type) {
265 case SOCK_STREAM:
266 if (max_sdu_size != 0) {
267 IRDA_ERROR("%s: max_sdu_size must be 0\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800268 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 kfree_skb(skb);
270 return;
271 }
272 self->max_data_size = irttp_get_max_seg_size(self->tsap);
273 break;
274 case SOCK_SEQPACKET:
275 if (max_sdu_size == 0) {
276 IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800277 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 kfree_skb(skb);
279 return;
280 }
281 self->max_data_size = max_sdu_size;
282 break;
283 default:
284 self->max_data_size = irttp_get_max_seg_size(self->tsap);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Harvey Harrison0dc47872008-03-05 20:47:47 -0800287 IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 self->max_data_size);
289
290 memcpy(&self->qos_tx, qos, sizeof(struct qos_info));
291
292 skb_queue_tail(&sk->sk_receive_queue, skb);
293 sk->sk_state_change(sk);
294}
295
296/*
297 * Function irda_connect_response (handle)
298 *
299 * Accept incoming connection
300 *
301 */
302static void irda_connect_response(struct irda_sock *self)
303{
304 struct sk_buff *skb;
305
Harvey Harrison0dc47872008-03-05 20:47:47 -0800306 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Samuel Ortiz1b0fee72006-09-27 20:06:44 -0700308 skb = alloc_skb(TTP_MAX_HEADER + TTP_SAR_HEADER,
309 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (skb == NULL) {
311 IRDA_DEBUG(0, "%s() Unable to allocate sk_buff!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800312 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return;
314 }
315
316 /* Reserve space for MUX_CONTROL and LAP header */
317 skb_reserve(skb, IRDA_MAX_HEADER);
318
319 irttp_connect_response(self->tsap, self->max_sdu_size_rx, skb);
320}
321
322/*
323 * Function irda_flow_indication (instance, sap, flow)
324 *
325 * Used by TinyTP to tell us if it can accept more data or not
326 *
327 */
328static void irda_flow_indication(void *instance, void *sap, LOCAL_FLOW flow)
329{
330 struct irda_sock *self;
331 struct sock *sk;
332
Harvey Harrison0dc47872008-03-05 20:47:47 -0800333 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 self = instance;
336 sk = instance;
Samuel Ortizc3ea9fa2007-04-20 22:10:13 -0700337 BUG_ON(sk == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 switch (flow) {
340 case FLOW_STOP:
341 IRDA_DEBUG(1, "%s(), IrTTP wants us to slow down\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800342 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 self->tx_flow = flow;
344 break;
345 case FLOW_START:
346 self->tx_flow = flow;
347 IRDA_DEBUG(1, "%s(), IrTTP wants us to start again\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800348 __func__);
Eric Dumazetaa395142010-04-20 13:03:51 +0000349 wake_up_interruptible(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 break;
351 default:
Harvey Harrison0dc47872008-03-05 20:47:47 -0800352 IRDA_DEBUG(0, "%s(), Unknown flow command!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 /* Unknown flow command, better stop */
354 self->tx_flow = flow;
355 break;
356 }
357}
358
359/*
360 * Function irda_getvalue_confirm (obj_id, value, priv)
361 *
362 * Got answer from remote LM-IAS, just pass object to requester...
363 *
364 * Note : duplicate from above, but we need our own version that
365 * doesn't touch the dtsap_sel and save the full value structure...
366 */
367static void irda_getvalue_confirm(int result, __u16 obj_id,
368 struct ias_value *value, void *priv)
369{
370 struct irda_sock *self;
371
Joe Perchesea110732011-06-13 16:21:26 +0000372 self = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (!self) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800374 IRDA_WARNING("%s: lost myself!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return;
376 }
377
Harvey Harrison0dc47872008-03-05 20:47:47 -0800378 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 /* We probably don't need to make any more queries */
381 iriap_close(self->iriap);
382 self->iriap = NULL;
383
384 /* Check if request succeeded */
385 if (result != IAS_SUCCESS) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800386 IRDA_DEBUG(1, "%s(), IAS query failed! (%d)\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 result);
388
389 self->errno = result; /* We really need it later */
390
391 /* Wake up any processes waiting for result */
392 wake_up_interruptible(&self->query_wait);
393
394 return;
395 }
396
397 /* Pass the object to the caller (so the caller must delete it) */
398 self->ias_result = value;
399 self->errno = 0;
400
401 /* Wake up any processes waiting for result */
402 wake_up_interruptible(&self->query_wait);
403}
404
405/*
406 * Function irda_selective_discovery_indication (discovery)
407 *
408 * Got a selective discovery indication from IrLMP.
409 *
410 * IrLMP is telling us that this node is new and matching our hint bit
411 * filter. Wake up any process waiting for answer...
412 */
413static void irda_selective_discovery_indication(discinfo_t *discovery,
414 DISCOVERY_MODE mode,
415 void *priv)
416{
417 struct irda_sock *self;
418
Harvey Harrison0dc47872008-03-05 20:47:47 -0800419 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Joe Perchesea110732011-06-13 16:21:26 +0000421 self = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (!self) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800423 IRDA_WARNING("%s: lost myself!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return;
425 }
426
427 /* Pass parameter to the caller */
428 self->cachedaddr = discovery->daddr;
429
430 /* Wake up process if its waiting for device to be discovered */
431 wake_up_interruptible(&self->query_wait);
432}
433
434/*
435 * Function irda_discovery_timeout (priv)
436 *
437 * Timeout in the selective discovery process
438 *
439 * We were waiting for a node to be discovered, but nothing has come up
440 * so far. Wake up the user and tell him that we failed...
441 */
442static void irda_discovery_timeout(u_long priv)
443{
444 struct irda_sock *self;
445
Harvey Harrison0dc47872008-03-05 20:47:47 -0800446 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 self = (struct irda_sock *) priv;
Samuel Ortizc3ea9fa2007-04-20 22:10:13 -0700449 BUG_ON(self == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /* Nothing for the caller */
452 self->cachelog = NULL;
453 self->cachedaddr = 0;
454 self->errno = -ETIME;
455
456 /* Wake up process if its still waiting... */
457 wake_up_interruptible(&self->query_wait);
458}
459
460/*
461 * Function irda_open_tsap (self)
462 *
463 * Open local Transport Service Access Point (TSAP)
464 *
465 */
466static int irda_open_tsap(struct irda_sock *self, __u8 tsap_sel, char *name)
467{
468 notify_t notify;
469
470 if (self->tsap) {
Dave Jones09689582012-10-04 03:36:13 +0000471 IRDA_DEBUG(0, "%s: busy!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return -EBUSY;
473 }
474
475 /* Initialize callbacks to be used by the IrDA stack */
476 irda_notify_init(&notify);
477 notify.connect_confirm = irda_connect_confirm;
478 notify.connect_indication = irda_connect_indication;
479 notify.disconnect_indication = irda_disconnect_indication;
480 notify.data_indication = irda_data_indication;
481 notify.udata_indication = irda_data_indication;
482 notify.flow_indication = irda_flow_indication;
483 notify.instance = self;
484 strncpy(notify.name, name, NOTIFY_MAX_NAME);
485
486 self->tsap = irttp_open_tsap(tsap_sel, DEFAULT_INITIAL_CREDIT,
487 &notify);
488 if (self->tsap == NULL) {
489 IRDA_DEBUG(0, "%s(), Unable to allocate TSAP!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800490 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return -ENOMEM;
492 }
493 /* Remember which TSAP selector we actually got */
494 self->stsap_sel = self->tsap->stsap_sel;
495
496 return 0;
497}
498
499/*
500 * Function irda_open_lsap (self)
501 *
502 * Open local Link Service Access Point (LSAP). Used for opening Ultra
503 * sockets
504 */
505#ifdef CONFIG_IRDA_ULTRA
506static int irda_open_lsap(struct irda_sock *self, int pid)
507{
508 notify_t notify;
509
510 if (self->lsap) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800511 IRDA_WARNING("%s(), busy!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return -EBUSY;
513 }
514
515 /* Initialize callbacks to be used by the IrDA stack */
516 irda_notify_init(&notify);
517 notify.udata_indication = irda_data_indication;
518 notify.instance = self;
519 strncpy(notify.name, "Ultra", NOTIFY_MAX_NAME);
520
521 self->lsap = irlmp_open_lsap(LSAP_CONNLESS, &notify, pid);
522 if (self->lsap == NULL) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800523 IRDA_DEBUG( 0, "%s(), Unable to allocate LSAP!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return -ENOMEM;
525 }
526
527 return 0;
528}
529#endif /* CONFIG_IRDA_ULTRA */
530
531/*
532 * Function irda_find_lsap_sel (self, name)
533 *
534 * Try to lookup LSAP selector in remote LM-IAS
535 *
536 * Basically, we start a IAP query, and then go to sleep. When the query
537 * return, irda_getvalue_confirm will wake us up, and we can examine the
538 * result of the query...
539 * Note that in some case, the query fail even before we go to sleep,
540 * creating some races...
541 */
542static int irda_find_lsap_sel(struct irda_sock *self, char *name)
543{
Harvey Harrison0dc47872008-03-05 20:47:47 -0800544 IRDA_DEBUG(2, "%s(%p, %s)\n", __func__, self, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (self->iriap) {
547 IRDA_WARNING("%s(): busy with a previous query\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800548 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return -EBUSY;
550 }
551
552 self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
553 irda_getvalue_confirm);
554 if(self->iriap == NULL)
555 return -ENOMEM;
556
557 /* Treat unexpected wakeup as disconnect */
558 self->errno = -EHOSTUNREACH;
559
560 /* Query remote LM-IAS */
561 iriap_getvaluebyclass_request(self->iriap, self->saddr, self->daddr,
562 name, "IrDA:TinyTP:LsapSel");
563
564 /* Wait for answer, if not yet finished (or failed) */
565 if (wait_event_interruptible(self->query_wait, (self->iriap==NULL)))
566 /* Treat signals as disconnect */
567 return -EHOSTUNREACH;
568
569 /* Check what happened */
570 if (self->errno)
571 {
572 /* Requested object/attribute doesn't exist */
573 if((self->errno == IAS_CLASS_UNKNOWN) ||
574 (self->errno == IAS_ATTRIB_UNKNOWN))
Eric Dumazeta02cec22010-09-22 20:43:57 +0000575 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 else
Eric Dumazeta02cec22010-09-22 20:43:57 +0000577 return -EHOSTUNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579
580 /* Get the remote TSAP selector */
581 switch (self->ias_result->type) {
582 case IAS_INTEGER:
583 IRDA_DEBUG(4, "%s() int=%d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800584 __func__, self->ias_result->t.integer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 if (self->ias_result->t.integer != -1)
587 self->dtsap_sel = self->ias_result->t.integer;
588 else
589 self->dtsap_sel = 0;
590 break;
591 default:
592 self->dtsap_sel = 0;
Harvey Harrison0dc47872008-03-05 20:47:47 -0800593 IRDA_DEBUG(0, "%s(), bad type!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 break;
595 }
596 if (self->ias_result)
597 irias_delete_value(self->ias_result);
598
599 if (self->dtsap_sel)
600 return 0;
601
602 return -EADDRNOTAVAIL;
603}
604
605/*
606 * Function irda_discover_daddr_and_lsap_sel (self, name)
607 *
608 * This try to find a device with the requested service.
609 *
610 * It basically look into the discovery log. For each address in the list,
611 * it queries the LM-IAS of the device to find if this device offer
612 * the requested service.
613 * If there is more than one node supporting the service, we complain
614 * to the user (it should move devices around).
615 * The, we set both the destination address and the lsap selector to point
616 * on the service on the unique device we have found.
617 *
618 * Note : this function fails if there is more than one device in range,
619 * because IrLMP doesn't disconnect the LAP when the last LSAP is closed.
620 * Moreover, we would need to wait the LAP disconnection...
621 */
622static int irda_discover_daddr_and_lsap_sel(struct irda_sock *self, char *name)
623{
624 discinfo_t *discoveries; /* Copy of the discovery log */
625 int number; /* Number of nodes in the log */
626 int i;
627 int err = -ENETUNREACH;
628 __u32 daddr = DEV_ADDR_ANY; /* Address we found the service on */
629 __u8 dtsap_sel = 0x0; /* TSAP associated with it */
630
Harvey Harrison0dc47872008-03-05 20:47:47 -0800631 IRDA_DEBUG(2, "%s(), name=%s\n", __func__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /* Ask lmp for the current discovery log
634 * Note : we have to use irlmp_get_discoveries(), as opposed
635 * to play with the cachelog directly, because while we are
636 * making our ias query, le log might change... */
637 discoveries = irlmp_get_discoveries(&number, self->mask.word,
638 self->nslots);
639 /* Check if the we got some results */
640 if (discoveries == NULL)
641 return -ENETUNREACH; /* No nodes discovered */
642
643 /*
644 * Now, check all discovered devices (if any), and connect
645 * client only about the services that the client is
646 * interested in...
647 */
648 for(i = 0; i < number; i++) {
649 /* Try the address in the log */
650 self->daddr = discoveries[i].daddr;
651 self->saddr = 0x0;
652 IRDA_DEBUG(1, "%s(), trying daddr = %08x\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800653 __func__, self->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 /* Query remote LM-IAS for this service */
656 err = irda_find_lsap_sel(self, name);
657 switch (err) {
658 case 0:
659 /* We found the requested service */
660 if(daddr != DEV_ADDR_ANY) {
661 IRDA_DEBUG(1, "%s(), discovered service ''%s'' in two different devices !!!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800662 __func__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 self->daddr = DEV_ADDR_ANY;
664 kfree(discoveries);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000665 return -ENOTUNIQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667 /* First time we found that one, save it ! */
668 daddr = self->daddr;
669 dtsap_sel = self->dtsap_sel;
670 break;
671 case -EADDRNOTAVAIL:
672 /* Requested service simply doesn't exist on this node */
673 break;
674 default:
675 /* Something bad did happen :-( */
Harvey Harrison0dc47872008-03-05 20:47:47 -0800676 IRDA_DEBUG(0, "%s(), unexpected IAS query failure\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 self->daddr = DEV_ADDR_ANY;
678 kfree(discoveries);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000679 return -EHOSTUNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 break;
681 }
682 }
683 /* Cleanup our copy of the discovery log */
684 kfree(discoveries);
685
686 /* Check out what we found */
687 if(daddr == DEV_ADDR_ANY) {
688 IRDA_DEBUG(1, "%s(), cannot discover service ''%s'' in any device !!!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800689 __func__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 self->daddr = DEV_ADDR_ANY;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000691 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
693
694 /* Revert back to discovered device & service */
695 self->daddr = daddr;
696 self->saddr = 0x0;
697 self->dtsap_sel = dtsap_sel;
698
699 IRDA_DEBUG(1, "%s(), discovered requested service ''%s'' at address %08x\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800700 __func__, name, self->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 return 0;
703}
704
705/*
706 * Function irda_getname (sock, uaddr, uaddr_len, peer)
707 *
708 * Return the our own, or peers socket address (sockaddr_irda)
709 *
710 */
711static int irda_getname(struct socket *sock, struct sockaddr *uaddr,
712 int *uaddr_len, int peer)
713{
714 struct sockaddr_irda saddr;
715 struct sock *sk = sock->sk;
716 struct irda_sock *self = irda_sk(sk);
717
Eric Dumazet09384df2009-08-06 03:55:04 +0000718 memset(&saddr, 0, sizeof(saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (peer) {
720 if (sk->sk_state != TCP_ESTABLISHED)
Samuel Ortiz5b409642010-10-11 00:46:51 +0200721 return -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 saddr.sir_family = AF_IRDA;
724 saddr.sir_lsap_sel = self->dtsap_sel;
725 saddr.sir_addr = self->daddr;
726 } else {
727 saddr.sir_family = AF_IRDA;
728 saddr.sir_lsap_sel = self->stsap_sel;
729 saddr.sir_addr = self->saddr;
730 }
731
Harvey Harrison0dc47872008-03-05 20:47:47 -0800732 IRDA_DEBUG(1, "%s(), tsap_sel = %#x\n", __func__, saddr.sir_lsap_sel);
733 IRDA_DEBUG(1, "%s(), addr = %08x\n", __func__, saddr.sir_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 /* uaddr_len come to us uninitialised */
736 *uaddr_len = sizeof (struct sockaddr_irda);
737 memcpy(uaddr, &saddr, *uaddr_len);
Samuel Ortiz5b409642010-10-11 00:46:51 +0200738
739 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
742/*
743 * Function irda_listen (sock, backlog)
744 *
745 * Just move to the listen state
746 *
747 */
748static int irda_listen(struct socket *sock, int backlog)
749{
750 struct sock *sk = sock->sk;
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800751 int err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Harvey Harrison0dc47872008-03-05 20:47:47 -0800753 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Samuel Ortiz5b409642010-10-11 00:46:51 +0200755 lock_sock(sk);
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if ((sk->sk_type != SOCK_STREAM) && (sk->sk_type != SOCK_SEQPACKET) &&
758 (sk->sk_type != SOCK_DGRAM))
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800759 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 if (sk->sk_state != TCP_LISTEN) {
762 sk->sk_max_ack_backlog = backlog;
763 sk->sk_state = TCP_LISTEN;
764
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800765 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800767out:
Samuel Ortiz5b409642010-10-11 00:46:51 +0200768 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800770 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
773/*
774 * Function irda_bind (sock, uaddr, addr_len)
775 *
776 * Used by servers to register their well known TSAP
777 *
778 */
779static int irda_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
780{
781 struct sock *sk = sock->sk;
782 struct sockaddr_irda *addr = (struct sockaddr_irda *) uaddr;
783 struct irda_sock *self = irda_sk(sk);
784 int err;
785
Harvey Harrison0dc47872008-03-05 20:47:47 -0800786 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 if (addr_len != sizeof(struct sockaddr_irda))
789 return -EINVAL;
790
Samuel Ortiz5b409642010-10-11 00:46:51 +0200791 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792#ifdef CONFIG_IRDA_ULTRA
793 /* Special care for Ultra sockets */
794 if ((sk->sk_type == SOCK_DGRAM) &&
795 (sk->sk_protocol == IRDAPROTO_ULTRA)) {
796 self->pid = addr->sir_lsap_sel;
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800797 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (self->pid & 0x80) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800799 IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__);
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800800 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
802 err = irda_open_lsap(self, self->pid);
803 if (err < 0)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800804 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 /* Pretend we are connected */
807 sock->state = SS_CONNECTED;
808 sk->sk_state = TCP_ESTABLISHED;
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800809 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800811 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813#endif /* CONFIG_IRDA_ULTRA */
814
Jesper Juhl61e44b42008-01-20 16:58:04 -0800815 self->ias_obj = irias_new_object(addr->sir_name, jiffies);
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800816 err = -ENOMEM;
Jesper Juhl61e44b42008-01-20 16:58:04 -0800817 if (self->ias_obj == NULL)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800818 goto out;
Jesper Juhl61e44b42008-01-20 16:58:04 -0800819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 err = irda_open_tsap(self, addr->sir_lsap_sel, addr->sir_name);
Jesper Juhl61e44b42008-01-20 16:58:04 -0800821 if (err < 0) {
David S. Miller628e3002010-08-30 18:35:24 -0700822 irias_delete_object(self->ias_obj);
823 self->ias_obj = NULL;
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800824 goto out;
Jesper Juhl61e44b42008-01-20 16:58:04 -0800825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 /* Register with LM-IAS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 irias_add_integer_attrib(self->ias_obj, "IrDA:TinyTP:LsapSel",
829 self->stsap_sel, IAS_KERNEL_ATTR);
830 irias_insert_object(self->ias_obj);
831
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800832 err = 0;
833out:
Samuel Ortiz5b409642010-10-11 00:46:51 +0200834 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800835 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836}
837
838/*
839 * Function irda_accept (sock, newsock, flags)
840 *
841 * Wait for incoming connection
842 *
843 */
844static int irda_accept(struct socket *sock, struct socket *newsock, int flags)
845{
846 struct sock *sk = sock->sk;
847 struct irda_sock *new, *self = irda_sk(sk);
848 struct sock *newsk;
849 struct sk_buff *skb;
850 int err;
851
Harvey Harrison0dc47872008-03-05 20:47:47 -0800852 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Eric Paris3f378b62009-11-05 22:18:14 -0800854 err = irda_create(sock_net(sk), newsock, sk->sk_protocol, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (err)
Samuel Ortiz5b409642010-10-11 00:46:51 +0200856 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800858 err = -EINVAL;
Samuel Ortiz5b409642010-10-11 00:46:51 +0200859
860 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (sock->state != SS_UNCONNECTED)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800862 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864 if ((sk = sock->sk) == NULL)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800865 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800867 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if ((sk->sk_type != SOCK_STREAM) && (sk->sk_type != SOCK_SEQPACKET) &&
869 (sk->sk_type != SOCK_DGRAM))
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800870 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800872 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (sk->sk_state != TCP_LISTEN)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800874 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 /*
877 * The read queue this time is holding sockets ready to use
878 * hooked into the SABM we saved
879 */
880
881 /*
882 * We can perform the accept only if there is incoming data
883 * on the listening socket.
884 * So, we will block the caller until we receive any data.
885 * If the caller was waiting on select() or poll() before
886 * calling us, the data is waiting for us ;-)
887 * Jean II
888 */
Samuel Ortizd7f48d12007-04-20 22:09:33 -0700889 while (1) {
890 skb = skb_dequeue(&sk->sk_receive_queue);
891 if (skb)
892 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 /* Non blocking operation */
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800895 err = -EWOULDBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (flags & O_NONBLOCK)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800897 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Eric Dumazetaa395142010-04-20 13:03:51 +0000899 err = wait_event_interruptible(*(sk_sleep(sk)),
Samuel Ortizd7f48d12007-04-20 22:09:33 -0700900 skb_peek(&sk->sk_receive_queue));
901 if (err)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800902 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
904
905 newsk = newsock->sk;
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800906 err = -EIO;
Samuel Ortizc3ea9fa2007-04-20 22:10:13 -0700907 if (newsk == NULL)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800908 goto out;
Samuel Ortizc3ea9fa2007-04-20 22:10:13 -0700909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 newsk->sk_state = TCP_ESTABLISHED;
911
912 new = irda_sk(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 /* Now attach up the new socket */
915 new->tsap = irttp_dup(self->tsap, new);
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800916 err = -EPERM; /* value does not seem to make sense. -arnd */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (!new->tsap) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800918 IRDA_DEBUG(0, "%s(), dup failed!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 kfree_skb(skb);
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800920 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
922
923 new->stsap_sel = new->tsap->stsap_sel;
924 new->dtsap_sel = new->tsap->dtsap_sel;
925 new->saddr = irttp_get_saddr(new->tsap);
926 new->daddr = irttp_get_daddr(new->tsap);
927
928 new->max_sdu_size_tx = self->max_sdu_size_tx;
929 new->max_sdu_size_rx = self->max_sdu_size_rx;
930 new->max_data_size = self->max_data_size;
931 new->max_header_size = self->max_header_size;
932
933 memcpy(&new->qos_tx, &self->qos_tx, sizeof(struct qos_info));
934
935 /* Clean up the original one to keep it in listen state */
936 irttp_listen(self->tsap);
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 kfree_skb(skb);
939 sk->sk_ack_backlog--;
940
941 newsock->state = SS_CONNECTED;
942
943 irda_connect_response(new);
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800944 err = 0;
945out:
Samuel Ortiz5b409642010-10-11 00:46:51 +0200946 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800947 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
949
950/*
951 * Function irda_connect (sock, uaddr, addr_len, flags)
952 *
953 * Connect to a IrDA device
954 *
955 * The main difference with a "standard" connect is that with IrDA we need
956 * to resolve the service name into a TSAP selector (in TCP, port number
957 * doesn't have to be resolved).
Masanari Iidaad8c9452012-07-13 07:22:47 +0000958 * Because of this service name resolution, we can offer "auto-connect",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 * where we connect to a service without specifying a destination address.
960 *
961 * Note : by consulting "errno", the user space caller may learn the cause
962 * of the failure. Most of them are visible in the function, others may come
963 * from subroutines called and are listed here :
964 * o EBUSY : already processing a connect
965 * o EHOSTUNREACH : bad addr->sir_addr argument
966 * o EADDRNOTAVAIL : bad addr->sir_name argument
967 * o ENOTUNIQ : more than one node has addr->sir_name (auto-connect)
968 * o ENETUNREACH : no node found on the network (auto-connect)
969 */
970static int irda_connect(struct socket *sock, struct sockaddr *uaddr,
971 int addr_len, int flags)
972{
973 struct sock *sk = sock->sk;
974 struct sockaddr_irda *addr = (struct sockaddr_irda *) uaddr;
975 struct irda_sock *self = irda_sk(sk);
976 int err;
977
Harvey Harrison0dc47872008-03-05 20:47:47 -0800978 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Samuel Ortiz5b409642010-10-11 00:46:51 +0200980 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 /* Don't allow connect for Ultra sockets */
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800982 err = -ESOCKTNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if ((sk->sk_type == SOCK_DGRAM) && (sk->sk_protocol == IRDAPROTO_ULTRA))
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800984 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 if (sk->sk_state == TCP_ESTABLISHED && sock->state == SS_CONNECTING) {
987 sock->state = SS_CONNECTED;
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800988 err = 0;
989 goto out; /* Connect completed during a ERESTARTSYS event */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
991
992 if (sk->sk_state == TCP_CLOSE && sock->state == SS_CONNECTING) {
993 sock->state = SS_UNCONNECTED;
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800994 err = -ECONNREFUSED;
995 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
997
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800998 err = -EISCONN; /* No reconnect on a seqpacket socket */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (sk->sk_state == TCP_ESTABLISHED)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001000 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 sk->sk_state = TCP_CLOSE;
1003 sock->state = SS_UNCONNECTED;
1004
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001005 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 if (addr_len != sizeof(struct sockaddr_irda))
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001007 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
1009 /* Check if user supplied any destination device address */
1010 if ((!addr->sir_addr) || (addr->sir_addr == DEV_ADDR_ANY)) {
1011 /* Try to find one suitable */
1012 err = irda_discover_daddr_and_lsap_sel(self, addr->sir_name);
1013 if (err) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001014 IRDA_DEBUG(0, "%s(), auto-connect failed!\n", __func__);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001015 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
1017 } else {
1018 /* Use the one provided by the user */
1019 self->daddr = addr->sir_addr;
Harvey Harrison0dc47872008-03-05 20:47:47 -08001020 IRDA_DEBUG(1, "%s(), daddr = %08x\n", __func__, self->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 /* If we don't have a valid service name, we assume the
1023 * user want to connect on a specific LSAP. Prevent
1024 * the use of invalid LSAPs (IrLMP 1.1 p10). Jean II */
1025 if((addr->sir_name[0] != '\0') ||
1026 (addr->sir_lsap_sel >= 0x70)) {
1027 /* Query remote LM-IAS using service name */
1028 err = irda_find_lsap_sel(self, addr->sir_name);
1029 if (err) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001030 IRDA_DEBUG(0, "%s(), connect failed!\n", __func__);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001031 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033 } else {
1034 /* Directly connect to the remote LSAP
1035 * specified by the sir_lsap field.
1036 * Please use with caution, in IrDA LSAPs are
1037 * dynamic and there is no "well-known" LSAP. */
1038 self->dtsap_sel = addr->sir_lsap_sel;
1039 }
1040 }
1041
1042 /* Check if we have opened a local TSAP */
1043 if (!self->tsap)
1044 irda_open_tsap(self, LSAP_ANY, addr->sir_name);
1045
1046 /* Move to connecting socket, start sending Connect Requests */
1047 sock->state = SS_CONNECTING;
1048 sk->sk_state = TCP_SYN_SENT;
1049
1050 /* Connect to remote device */
1051 err = irttp_connect_request(self->tsap, self->dtsap_sel,
1052 self->saddr, self->daddr, NULL,
1053 self->max_sdu_size_rx, NULL);
1054 if (err) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001055 IRDA_DEBUG(0, "%s(), connect failed!\n", __func__);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001056 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
1058
1059 /* Now the loop */
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001060 err = -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 if (sk->sk_state != TCP_ESTABLISHED && (flags & O_NONBLOCK))
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001062 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001064 err = -ERESTARTSYS;
Eric Dumazetaa395142010-04-20 13:03:51 +00001065 if (wait_event_interruptible(*(sk_sleep(sk)),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 (sk->sk_state != TCP_SYN_SENT)))
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001067 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069 if (sk->sk_state != TCP_ESTABLISHED) {
1070 sock->state = SS_UNCONNECTED;
Samuel Ortiz5b409642010-10-11 00:46:51 +02001071 if (sk->sk_prot->disconnect(sk, flags))
1072 sock->state = SS_DISCONNECTING;
Olaf Kirch6e66aa12007-04-20 22:08:15 -07001073 err = sock_error(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001074 if (!err)
1075 err = -ECONNRESET;
1076 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
1078
1079 sock->state = SS_CONNECTED;
1080
1081 /* At this point, IrLMP has assigned our source address */
1082 self->saddr = irttp_get_saddr(self->tsap);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001083 err = 0;
1084out:
Samuel Ortiz5b409642010-10-11 00:46:51 +02001085 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001086 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
1089static struct proto irda_proto = {
1090 .name = "IRDA",
1091 .owner = THIS_MODULE,
1092 .obj_size = sizeof(struct irda_sock),
1093};
1094
1095/*
1096 * Function irda_create (sock, protocol)
1097 *
1098 * Create IrDA socket
1099 *
1100 */
Eric Paris3f378b62009-11-05 22:18:14 -08001101static int irda_create(struct net *net, struct socket *sock, int protocol,
1102 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 struct sock *sk;
1105 struct irda_sock *self;
1106
Harvey Harrison0dc47872008-03-05 20:47:47 -08001107 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001109 if (net != &init_net)
1110 return -EAFNOSUPPORT;
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 /* Check for valid socket type */
1113 switch (sock->type) {
1114 case SOCK_STREAM: /* For TTP connections with SAR disabled */
1115 case SOCK_SEQPACKET: /* For TTP connections with SAR enabled */
1116 case SOCK_DGRAM: /* For TTP Unitdata or LMP Ultra transfers */
1117 break;
1118 default:
1119 return -ESOCKTNOSUPPORT;
1120 }
1121
1122 /* Allocate networking socket */
Pavel Emelyanov6257ff22007-11-01 00:39:31 -07001123 sk = sk_alloc(net, PF_IRDA, GFP_ATOMIC, &irda_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (sk == NULL)
1125 return -ENOMEM;
1126
1127 self = irda_sk(sk);
Harvey Harrison0dc47872008-03-05 20:47:47 -08001128 IRDA_DEBUG(2, "%s() : self is %p\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 init_waitqueue_head(&self->query_wait);
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 switch (sock->type) {
1133 case SOCK_STREAM:
1134 sock->ops = &irda_stream_ops;
1135 self->max_sdu_size_rx = TTP_SAR_DISABLE;
1136 break;
1137 case SOCK_SEQPACKET:
1138 sock->ops = &irda_seqpacket_ops;
1139 self->max_sdu_size_rx = TTP_SAR_UNBOUND;
1140 break;
1141 case SOCK_DGRAM:
1142 switch (protocol) {
1143#ifdef CONFIG_IRDA_ULTRA
1144 case IRDAPROTO_ULTRA:
1145 sock->ops = &irda_ultra_ops;
1146 /* Initialise now, because we may send on unbound
1147 * sockets. Jean II */
1148 self->max_data_size = ULTRA_MAX_DATA - LMP_PID_HEADER;
1149 self->max_header_size = IRDA_MAX_HEADER + LMP_PID_HEADER;
1150 break;
1151#endif /* CONFIG_IRDA_ULTRA */
1152 case IRDAPROTO_UNITDATA:
1153 sock->ops = &irda_dgram_ops;
1154 /* We let Unitdata conn. be like seqpack conn. */
1155 self->max_sdu_size_rx = TTP_SAR_UNBOUND;
1156 break;
1157 default:
Pavel Emelyanov9ecad872008-06-03 15:18:36 -07001158 sk_free(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return -ESOCKTNOSUPPORT;
1160 }
1161 break;
1162 default:
Pavel Emelyanov9ecad872008-06-03 15:18:36 -07001163 sk_free(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 return -ESOCKTNOSUPPORT;
1165 }
1166
Pavel Emelyanov9ecad872008-06-03 15:18:36 -07001167 /* Initialise networking socket struct */
1168 sock_init_data(sock, sk); /* Note : set sk->sk_refcnt to 1 */
1169 sk->sk_family = PF_IRDA;
1170 sk->sk_protocol = protocol;
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 /* Register as a client with IrLMP */
1173 self->ckey = irlmp_register_client(0, NULL, NULL, NULL);
1174 self->mask.word = 0xffff;
1175 self->rx_flow = self->tx_flow = FLOW_START;
1176 self->nslots = DISCOVERY_DEFAULT_SLOTS;
1177 self->daddr = DEV_ADDR_ANY; /* Until we get connected */
1178 self->saddr = 0x0; /* so IrLMP assign us any link */
1179 return 0;
1180}
1181
1182/*
1183 * Function irda_destroy_socket (self)
1184 *
1185 * Destroy socket
1186 *
1187 */
1188static void irda_destroy_socket(struct irda_sock *self)
1189{
Harvey Harrison0dc47872008-03-05 20:47:47 -08001190 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 /* Unregister with IrLMP */
1193 irlmp_unregister_client(self->ckey);
1194 irlmp_unregister_service(self->skey);
1195
1196 /* Unregister with LM-IAS */
1197 if (self->ias_obj) {
1198 irias_delete_object(self->ias_obj);
1199 self->ias_obj = NULL;
1200 }
1201
1202 if (self->iriap) {
1203 iriap_close(self->iriap);
1204 self->iriap = NULL;
1205 }
1206
1207 if (self->tsap) {
1208 irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
1209 irttp_close_tsap(self->tsap);
1210 self->tsap = NULL;
1211 }
1212#ifdef CONFIG_IRDA_ULTRA
1213 if (self->lsap) {
1214 irlmp_close_lsap(self->lsap);
1215 self->lsap = NULL;
1216 }
1217#endif /* CONFIG_IRDA_ULTRA */
1218}
1219
1220/*
1221 * Function irda_release (sock)
1222 */
1223static int irda_release(struct socket *sock)
1224{
1225 struct sock *sk = sock->sk;
1226
Harvey Harrison0dc47872008-03-05 20:47:47 -08001227 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001229 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return 0;
1231
Samuel Ortizda349f12006-09-27 20:05:38 -07001232 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 sk->sk_state = TCP_CLOSE;
1234 sk->sk_shutdown |= SEND_SHUTDOWN;
1235 sk->sk_state_change(sk);
1236
1237 /* Destroy IrDA socket */
1238 irda_destroy_socket(irda_sk(sk));
1239
1240 sock_orphan(sk);
1241 sock->sk = NULL;
Samuel Ortizda349f12006-09-27 20:05:38 -07001242 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 /* Purge queues (see sock_init_data()) */
1245 skb_queue_purge(&sk->sk_receive_queue);
1246
1247 /* Destroy networking socket if we are the last reference on it,
1248 * i.e. if(sk->sk_refcnt == 0) -> sk_free(sk) */
1249 sock_put(sk);
1250
1251 /* Notes on socket locking and deallocation... - Jean II
1252 * In theory we should put pairs of sock_hold() / sock_put() to
1253 * prevent the socket to be destroyed whenever there is an
1254 * outstanding request or outstanding incoming packet or event.
1255 *
1256 * 1) This may include IAS request, both in connect and getsockopt.
1257 * Unfortunately, the situation is a bit more messy than it looks,
1258 * because we close iriap and kfree(self) above.
1259 *
1260 * 2) This may include selective discovery in getsockopt.
1261 * Same stuff as above, irlmp registration and self are gone.
1262 *
1263 * Probably 1 and 2 may not matter, because it's all triggered
1264 * by a process and the socket layer already prevent the
1265 * socket to go away while a process is holding it, through
1266 * sockfd_put() and fput()...
1267 *
1268 * 3) This may include deferred TSAP closure. In particular,
1269 * we may receive a late irda_disconnect_indication()
1270 * Fortunately, (tsap_cb *)->close_pend should protect us
1271 * from that.
1272 *
1273 * I did some testing on SMP, and it looks solid. And the socket
1274 * memory leak is now gone... - Jean II
1275 */
1276
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001277 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
1280/*
1281 * Function irda_sendmsg (iocb, sock, msg, len)
1282 *
1283 * Send message down to TinyTP. This function is used for both STREAM and
1284 * SEQPACK services. This is possible since it forces the client to
1285 * fragment the message if necessary
1286 */
1287static int irda_sendmsg(struct kiocb *iocb, struct socket *sock,
1288 struct msghdr *msg, size_t len)
1289{
1290 struct sock *sk = sock->sk;
1291 struct irda_sock *self;
1292 struct sk_buff *skb;
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001293 int err = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Harvey Harrison0dc47872008-03-05 20:47:47 -08001295 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 /* Note : socket.c set MSG_EOR on SEQPACKET sockets */
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001298 if (msg->msg_flags & ~(MSG_DONTWAIT | MSG_EOR | MSG_CMSG_COMPAT |
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001299 MSG_NOSIGNAL)) {
Dave Jones020318d02011-04-12 15:29:54 -07001300 return -EINVAL;
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Samuel Ortiz5b409642010-10-11 00:46:51 +02001303 lock_sock(sk);
1304
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001305 if (sk->sk_shutdown & SEND_SHUTDOWN)
1306 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001308 if (sk->sk_state != TCP_ESTABLISHED) {
1309 err = -ENOTCONN;
1310 goto out;
1311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 self = irda_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 /* Check if IrTTP is wants us to slow down */
1316
Eric Dumazetaa395142010-04-20 13:03:51 +00001317 if (wait_event_interruptible(*(sk_sleep(sk)),
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001318 (self->tx_flow != FLOW_STOP || sk->sk_state != TCP_ESTABLISHED))) {
1319 err = -ERESTARTSYS;
1320 goto out;
1321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 /* Check if we are still connected */
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001324 if (sk->sk_state != TCP_ESTABLISHED) {
1325 err = -ENOTCONN;
1326 goto out;
1327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08001329 /* Check that we don't send out too big frames */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 if (len > self->max_data_size) {
1331 IRDA_DEBUG(2, "%s(), Chopping frame from %zd to %d bytes!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001332 __func__, len, self->max_data_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 len = self->max_data_size;
1334 }
1335
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001336 skb = sock_alloc_send_skb(sk, len + self->max_header_size + 16,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 msg->msg_flags & MSG_DONTWAIT, &err);
1338 if (!skb)
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001339 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341 skb_reserve(skb, self->max_header_size + 16);
Arnaldo Carvalho de Meloeeeb0372007-03-14 21:04:34 -03001342 skb_reset_transport_header(skb);
1343 skb_put(skb, len);
1344 err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 if (err) {
1346 kfree_skb(skb);
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001347 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 }
1349
1350 /*
1351 * Just send the message to TinyTP, and let it deal with possible
1352 * errors. No need to duplicate all that here
1353 */
1354 err = irttp_data_request(self->tsap, skb);
1355 if (err) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001356 IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001357 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 }
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001359
Samuel Ortiz5b409642010-10-11 00:46:51 +02001360 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 /* Tell client how much data we actually sent */
1362 return len;
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001363
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001364out_err:
1365 err = sk_stream_error(sk, msg->msg_flags, err);
1366out:
Samuel Ortiz5b409642010-10-11 00:46:51 +02001367 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001368 return err;
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
1372/*
1373 * Function irda_recvmsg_dgram (iocb, sock, msg, size, flags)
1374 *
1375 * Try to receive message and copy it to user. The frame is discarded
1376 * after being read, regardless of how much the user actually read
1377 */
1378static int irda_recvmsg_dgram(struct kiocb *iocb, struct socket *sock,
1379 struct msghdr *msg, size_t size, int flags)
1380{
1381 struct sock *sk = sock->sk;
1382 struct irda_sock *self = irda_sk(sk);
1383 struct sk_buff *skb;
1384 size_t copied;
1385 int err;
1386
Harvey Harrison0dc47872008-03-05 20:47:47 -08001387 IRDA_DEBUG(4, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Mathias Krause5ae94c02013-04-07 01:51:53 +00001389 msg->msg_namelen = 0;
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
1392 flags & MSG_DONTWAIT, &err);
1393 if (!skb)
Samuel Ortiz5b409642010-10-11 00:46:51 +02001394 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001396 skb_reset_transport_header(skb);
1397 copied = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399 if (copied > size) {
1400 IRDA_DEBUG(2, "%s(), Received truncated frame (%zd < %zd)!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001401 __func__, copied, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 copied = size;
1403 msg->msg_flags |= MSG_TRUNC;
1404 }
1405 skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1406
1407 skb_free_datagram(sk, skb);
1408
1409 /*
1410 * Check if we have previously stopped IrTTP and we know
1411 * have more free space in our rx_queue. If so tell IrTTP
1412 * to start delivering frames again before our rx_queue gets
1413 * empty
1414 */
1415 if (self->rx_flow == FLOW_STOP) {
1416 if ((atomic_read(&sk->sk_rmem_alloc) << 2) <= sk->sk_rcvbuf) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001417 IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 self->rx_flow = FLOW_START;
1419 irttp_flow_request(self->tsap, FLOW_START);
1420 }
1421 }
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001422
Samuel Ortiz5b409642010-10-11 00:46:51 +02001423 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424}
1425
1426/*
1427 * Function irda_recvmsg_stream (iocb, sock, msg, size, flags)
1428 */
1429static int irda_recvmsg_stream(struct kiocb *iocb, struct socket *sock,
1430 struct msghdr *msg, size_t size, int flags)
1431{
1432 struct sock *sk = sock->sk;
1433 struct irda_sock *self = irda_sk(sk);
1434 int noblock = flags & MSG_DONTWAIT;
1435 size_t copied = 0;
Olaf Kirch6e66aa12007-04-20 22:08:15 -07001436 int target, err;
Olaf Kirch305f2aa2007-04-20 22:05:27 -07001437 long timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Harvey Harrison0dc47872008-03-05 20:47:47 -08001439 IRDA_DEBUG(3, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Olaf Kirch6e66aa12007-04-20 22:08:15 -07001441 if ((err = sock_error(sk)) < 0)
Samuel Ortiz5b409642010-10-11 00:46:51 +02001442 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
1444 if (sock->flags & __SO_ACCEPTCON)
Samuel Ortiz5b409642010-10-11 00:46:51 +02001445 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001447 err =-EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 if (flags & MSG_OOB)
Samuel Ortiz5b409642010-10-11 00:46:51 +02001449 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001451 err = 0;
Olaf Kirch305f2aa2007-04-20 22:05:27 -07001452 target = sock_rcvlowat(sk, flags & MSG_WAITALL, size);
1453 timeo = sock_rcvtimeo(sk, noblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 msg->msg_namelen = 0;
1456
1457 do {
1458 int chunk;
1459 struct sk_buff *skb = skb_dequeue(&sk->sk_receive_queue);
1460
Olaf Kirch305f2aa2007-04-20 22:05:27 -07001461 if (skb == NULL) {
1462 DEFINE_WAIT(wait);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001463 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
1465 if (copied >= target)
1466 break;
1467
Eric Dumazetaa395142010-04-20 13:03:51 +00001468 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470 /*
1471 * POSIX 1003.1g mandates this order.
1472 */
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001473 err = sock_error(sk);
1474 if (err)
Olaf Kirchbfb67092007-04-18 15:07:22 -07001475 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 else if (sk->sk_shutdown & RCV_SHUTDOWN)
1477 ;
1478 else if (noblock)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001479 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 else if (signal_pending(current))
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001481 err = sock_intr_errno(timeo);
Olaf Kirch305f2aa2007-04-20 22:05:27 -07001482 else if (sk->sk_state != TCP_ESTABLISHED)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001483 err = -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 else if (skb_peek(&sk->sk_receive_queue) == NULL)
1485 /* Wait process until data arrives */
1486 schedule();
1487
Eric Dumazetaa395142010-04-20 13:03:51 +00001488 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001490 if (err)
Samuel Ortiz5b409642010-10-11 00:46:51 +02001491 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (sk->sk_shutdown & RCV_SHUTDOWN)
1493 break;
1494
1495 continue;
1496 }
1497
1498 chunk = min_t(unsigned int, skb->len, size);
1499 if (memcpy_toiovec(msg->msg_iov, skb->data, chunk)) {
1500 skb_queue_head(&sk->sk_receive_queue, skb);
1501 if (copied == 0)
1502 copied = -EFAULT;
1503 break;
1504 }
1505 copied += chunk;
1506 size -= chunk;
1507
1508 /* Mark read part of skb as used */
1509 if (!(flags & MSG_PEEK)) {
1510 skb_pull(skb, chunk);
1511
1512 /* put the skb back if we didn't use it up.. */
1513 if (skb->len) {
1514 IRDA_DEBUG(1, "%s(), back on q!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001515 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 skb_queue_head(&sk->sk_receive_queue, skb);
1517 break;
1518 }
1519
1520 kfree_skb(skb);
1521 } else {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001522 IRDA_DEBUG(0, "%s() questionable!?\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524 /* put message back and return */
1525 skb_queue_head(&sk->sk_receive_queue, skb);
1526 break;
1527 }
1528 } while (size);
1529
1530 /*
1531 * Check if we have previously stopped IrTTP and we know
1532 * have more free space in our rx_queue. If so tell IrTTP
1533 * to start delivering frames again before our rx_queue gets
1534 * empty
1535 */
1536 if (self->rx_flow == FLOW_STOP) {
1537 if ((atomic_read(&sk->sk_rmem_alloc) << 2) <= sk->sk_rcvbuf) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001538 IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 self->rx_flow = FLOW_START;
1540 irttp_flow_request(self->tsap, FLOW_START);
1541 }
1542 }
1543
Samuel Ortiz5b409642010-10-11 00:46:51 +02001544 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
1547/*
1548 * Function irda_sendmsg_dgram (iocb, sock, msg, len)
1549 *
1550 * Send message down to TinyTP for the unreliable sequenced
1551 * packet service...
1552 *
1553 */
1554static int irda_sendmsg_dgram(struct kiocb *iocb, struct socket *sock,
1555 struct msghdr *msg, size_t len)
1556{
1557 struct sock *sk = sock->sk;
1558 struct irda_sock *self;
1559 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 int err;
1561
Harvey Harrison0dc47872008-03-05 20:47:47 -08001562 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
1564 if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
Samuel Ortiz5b409642010-10-11 00:46:51 +02001565 return -EINVAL;
1566
1567 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
1569 if (sk->sk_shutdown & SEND_SHUTDOWN) {
1570 send_sig(SIGPIPE, current, 0);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001571 err = -EPIPE;
1572 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 }
1574
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001575 err = -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 if (sk->sk_state != TCP_ESTABLISHED)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001577 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 self = irda_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581 /*
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08001582 * Check that we don't send out too big frames. This is an unreliable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 * service, so we have no fragmentation and no coalescence
1584 */
1585 if (len > self->max_data_size) {
1586 IRDA_DEBUG(0, "%s(), Warning to much data! "
1587 "Chopping frame from %zd to %d bytes!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001588 __func__, len, self->max_data_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 len = self->max_data_size;
1590 }
1591
1592 skb = sock_alloc_send_skb(sk, len + self->max_header_size,
1593 msg->msg_flags & MSG_DONTWAIT, &err);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001594 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (!skb)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001596 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 skb_reserve(skb, self->max_header_size);
Arnaldo Carvalho de Meloeeeb0372007-03-14 21:04:34 -03001599 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Harvey Harrison0dc47872008-03-05 20:47:47 -08001601 IRDA_DEBUG(4, "%s(), appending user data\n", __func__);
Arnaldo Carvalho de Meloeeeb0372007-03-14 21:04:34 -03001602 skb_put(skb, len);
1603 err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if (err) {
1605 kfree_skb(skb);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001606 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 }
1608
1609 /*
1610 * Just send the message to TinyTP, and let it deal with possible
1611 * errors. No need to duplicate all that here
1612 */
1613 err = irttp_udata_request(self->tsap, skb);
1614 if (err) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001615 IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001616 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 }
Samuel Ortiz5b409642010-10-11 00:46:51 +02001618
1619 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 return len;
Samuel Ortiz5b409642010-10-11 00:46:51 +02001621
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001622out:
Samuel Ortiz5b409642010-10-11 00:46:51 +02001623 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001624 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625}
1626
1627/*
1628 * Function irda_sendmsg_ultra (iocb, sock, msg, len)
1629 *
1630 * Send message down to IrLMP for the unreliable Ultra
1631 * packet service...
1632 */
1633#ifdef CONFIG_IRDA_ULTRA
1634static int irda_sendmsg_ultra(struct kiocb *iocb, struct socket *sock,
1635 struct msghdr *msg, size_t len)
1636{
1637 struct sock *sk = sock->sk;
1638 struct irda_sock *self;
1639 __u8 pid = 0;
1640 int bound = 0;
1641 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 int err;
1643
Harvey Harrison0dc47872008-03-05 20:47:47 -08001644 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001646 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
Samuel Ortiz5b409642010-10-11 00:46:51 +02001648 return -EINVAL;
1649
1650 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001652 err = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 if (sk->sk_shutdown & SEND_SHUTDOWN) {
1654 send_sig(SIGPIPE, current, 0);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001655 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
1657
1658 self = irda_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660 /* Check if an address was specified with sendto. Jean II */
1661 if (msg->msg_name) {
1662 struct sockaddr_irda *addr = (struct sockaddr_irda *) msg->msg_name;
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001663 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 /* Check address, extract pid. Jean II */
1665 if (msg->msg_namelen < sizeof(*addr))
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001666 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 if (addr->sir_family != AF_IRDA)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001668 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 pid = addr->sir_lsap_sel;
1671 if (pid & 0x80) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001672 IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001673 err = -EOPNOTSUPP;
1674 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 }
1676 } else {
1677 /* Check that the socket is properly bound to an Ultra
1678 * port. Jean II */
1679 if ((self->lsap == NULL) ||
1680 (sk->sk_state != TCP_ESTABLISHED)) {
1681 IRDA_DEBUG(0, "%s(), socket not bound to Ultra PID.\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001682 __func__);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001683 err = -ENOTCONN;
1684 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
1686 /* Use PID from socket */
1687 bound = 1;
1688 }
1689
1690 /*
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08001691 * Check that we don't send out too big frames. This is an unreliable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 * service, so we have no fragmentation and no coalescence
1693 */
1694 if (len > self->max_data_size) {
1695 IRDA_DEBUG(0, "%s(), Warning to much data! "
1696 "Chopping frame from %zd to %d bytes!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001697 __func__, len, self->max_data_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 len = self->max_data_size;
1699 }
1700
1701 skb = sock_alloc_send_skb(sk, len + self->max_header_size,
1702 msg->msg_flags & MSG_DONTWAIT, &err);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001703 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 if (!skb)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001705 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
1707 skb_reserve(skb, self->max_header_size);
Arnaldo Carvalho de Meloeeeb0372007-03-14 21:04:34 -03001708 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Harvey Harrison0dc47872008-03-05 20:47:47 -08001710 IRDA_DEBUG(4, "%s(), appending user data\n", __func__);
Arnaldo Carvalho de Meloeeeb0372007-03-14 21:04:34 -03001711 skb_put(skb, len);
1712 err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 if (err) {
1714 kfree_skb(skb);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001715 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 }
1717
1718 err = irlmp_connless_data_request((bound ? self->lsap : NULL),
1719 skb, pid);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001720 if (err)
Harvey Harrison0dc47872008-03-05 20:47:47 -08001721 IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001722out:
Samuel Ortiz5b409642010-10-11 00:46:51 +02001723 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001724 return err ? : len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725}
1726#endif /* CONFIG_IRDA_ULTRA */
1727
1728/*
1729 * Function irda_shutdown (sk, how)
1730 */
1731static int irda_shutdown(struct socket *sock, int how)
1732{
1733 struct sock *sk = sock->sk;
1734 struct irda_sock *self = irda_sk(sk);
1735
Harvey Harrison0dc47872008-03-05 20:47:47 -08001736 IRDA_DEBUG(1, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Samuel Ortiz5b409642010-10-11 00:46:51 +02001738 lock_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 sk->sk_state = TCP_CLOSE;
1741 sk->sk_shutdown |= SEND_SHUTDOWN;
1742 sk->sk_state_change(sk);
1743
1744 if (self->iriap) {
1745 iriap_close(self->iriap);
1746 self->iriap = NULL;
1747 }
1748
1749 if (self->tsap) {
1750 irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
1751 irttp_close_tsap(self->tsap);
1752 self->tsap = NULL;
1753 }
1754
1755 /* A few cleanup so the socket look as good as new... */
1756 self->rx_flow = self->tx_flow = FLOW_START; /* needed ??? */
1757 self->daddr = DEV_ADDR_ANY; /* Until we get re-connected */
1758 self->saddr = 0x0; /* so IrLMP assign us any link */
1759
Samuel Ortiz5b409642010-10-11 00:46:51 +02001760 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001761
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763}
1764
1765/*
1766 * Function irda_poll (file, sock, wait)
1767 */
1768static unsigned int irda_poll(struct file * file, struct socket *sock,
1769 poll_table *wait)
1770{
1771 struct sock *sk = sock->sk;
1772 struct irda_sock *self = irda_sk(sk);
1773 unsigned int mask;
1774
Harvey Harrison0dc47872008-03-05 20:47:47 -08001775 IRDA_DEBUG(4, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Eric Dumazetaa395142010-04-20 13:03:51 +00001777 poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 mask = 0;
1779
1780 /* Exceptional events? */
1781 if (sk->sk_err)
1782 mask |= POLLERR;
1783 if (sk->sk_shutdown & RCV_SHUTDOWN) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001784 IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 mask |= POLLHUP;
1786 }
1787
1788 /* Readable? */
1789 if (!skb_queue_empty(&sk->sk_receive_queue)) {
1790 IRDA_DEBUG(4, "Socket is readable\n");
1791 mask |= POLLIN | POLLRDNORM;
1792 }
1793
1794 /* Connection-based need to check for termination and startup */
1795 switch (sk->sk_type) {
1796 case SOCK_STREAM:
1797 if (sk->sk_state == TCP_CLOSE) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001798 IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 mask |= POLLHUP;
1800 }
1801
1802 if (sk->sk_state == TCP_ESTABLISHED) {
1803 if ((self->tx_flow == FLOW_START) &&
1804 sock_writeable(sk))
1805 {
1806 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1807 }
1808 }
1809 break;
1810 case SOCK_SEQPACKET:
1811 if ((self->tx_flow == FLOW_START) &&
1812 sock_writeable(sk))
1813 {
1814 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1815 }
1816 break;
1817 case SOCK_DGRAM:
1818 if (sock_writeable(sk))
1819 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1820 break;
1821 default:
1822 break;
1823 }
Samuel Ortiz5b409642010-10-11 00:46:51 +02001824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 return mask;
1826}
1827
1828/*
1829 * Function irda_ioctl (sock, cmd, arg)
1830 */
1831static int irda_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1832{
1833 struct sock *sk = sock->sk;
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001834 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Harvey Harrison0dc47872008-03-05 20:47:47 -08001836 IRDA_DEBUG(4, "%s(), cmd=%#x\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001838 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 switch (cmd) {
1840 case TIOCOUTQ: {
1841 long amount;
Eric Dumazet31e6d362009-06-17 19:05:41 -07001842
1843 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (amount < 0)
1845 amount = 0;
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001846 err = put_user(amount, (unsigned int __user *)arg);
1847 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 }
1849
1850 case TIOCINQ: {
1851 struct sk_buff *skb;
1852 long amount = 0L;
1853 /* These two are safe on a single CPU system as only user tasks fiddle here */
1854 if ((skb = skb_peek(&sk->sk_receive_queue)) != NULL)
1855 amount = skb->len;
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001856 err = put_user(amount, (unsigned int __user *)arg);
1857 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 }
1859
1860 case SIOCGSTAMP:
1861 if (sk != NULL)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001862 err = sock_get_timestamp(sk, (struct timeval __user *)arg);
1863 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865 case SIOCGIFADDR:
1866 case SIOCSIFADDR:
1867 case SIOCGIFDSTADDR:
1868 case SIOCSIFDSTADDR:
1869 case SIOCGIFBRDADDR:
1870 case SIOCSIFBRDADDR:
1871 case SIOCGIFNETMASK:
1872 case SIOCSIFNETMASK:
1873 case SIOCGIFMETRIC:
1874 case SIOCSIFMETRIC:
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001875 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 default:
Harvey Harrison0dc47872008-03-05 20:47:47 -08001877 IRDA_DEBUG(1, "%s(), doing device ioctl!\n", __func__);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001878 err = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 }
1880
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001881 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001884#ifdef CONFIG_COMPAT
1885/*
1886 * Function irda_ioctl (sock, cmd, arg)
1887 */
1888static int irda_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1889{
1890 /*
1891 * All IRDA's ioctl are standard ones.
1892 */
1893 return -ENOIOCTLCMD;
1894}
1895#endif
1896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897/*
1898 * Function irda_setsockopt (sock, level, optname, optval, optlen)
1899 *
1900 * Set some options for the socket
1901 *
1902 */
Samuel Ortiz5b409642010-10-11 00:46:51 +02001903static int irda_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001904 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905{
1906 struct sock *sk = sock->sk;
1907 struct irda_sock *self = irda_sk(sk);
1908 struct irda_ias_set *ias_opt;
1909 struct ias_object *ias_obj;
1910 struct ias_attrib * ias_attr; /* Attribute in IAS object */
Samuel Ortiz5b409642010-10-11 00:46:51 +02001911 int opt, free_ias = 0, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Harvey Harrison0dc47872008-03-05 20:47:47 -08001913 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915 if (level != SOL_IRLMP)
1916 return -ENOPROTOOPT;
1917
Samuel Ortiz5b409642010-10-11 00:46:51 +02001918 lock_sock(sk);
1919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 switch (optname) {
1921 case IRLMP_IAS_SET:
1922 /* The user want to add an attribute to an existing IAS object
1923 * (in the IAS database) or to create a new object with this
1924 * attribute.
1925 * We first query IAS to know if the object exist, and then
1926 * create the right attribute...
1927 */
1928
Samuel Ortiz5b409642010-10-11 00:46:51 +02001929 if (optlen != sizeof(struct irda_ias_set)) {
1930 err = -EINVAL;
1931 goto out;
1932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
Samuel Ortiz5b409642010-10-11 00:46:51 +02001935 if (ias_opt == NULL) {
1936 err = -ENOMEM;
1937 goto out;
1938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
1940 /* Copy query to the driver. */
1941 if (copy_from_user(ias_opt, optval, optlen)) {
1942 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02001943 err = -EFAULT;
1944 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 }
1946
1947 /* Find the object we target.
1948 * If the user gives us an empty string, we use the object
1949 * associated with this socket. This will workaround
1950 * duplicated class name - Jean II */
1951 if(ias_opt->irda_class_name[0] == '\0') {
1952 if(self->ias_obj == NULL) {
1953 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02001954 err = -EINVAL;
1955 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 }
1957 ias_obj = self->ias_obj;
1958 } else
1959 ias_obj = irias_find_object(ias_opt->irda_class_name);
1960
1961 /* Only ROOT can mess with the global IAS database.
1962 * Users can only add attributes to the object associated
1963 * with the socket they own - Jean II */
1964 if((!capable(CAP_NET_ADMIN)) &&
1965 ((ias_obj == NULL) || (ias_obj != self->ias_obj))) {
1966 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02001967 err = -EPERM;
1968 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 }
1970
1971 /* If the object doesn't exist, create it */
1972 if(ias_obj == (struct ias_object *) NULL) {
1973 /* Create a new object */
1974 ias_obj = irias_new_object(ias_opt->irda_class_name,
1975 jiffies);
Jesper Juhl61e44b42008-01-20 16:58:04 -08001976 if (ias_obj == NULL) {
1977 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02001978 err = -ENOMEM;
1979 goto out;
Jesper Juhl61e44b42008-01-20 16:58:04 -08001980 }
1981 free_ias = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 }
1983
1984 /* Do we have the attribute already ? */
1985 if(irias_find_attrib(ias_obj, ias_opt->irda_attrib_name)) {
1986 kfree(ias_opt);
Jesper Juhl61e44b42008-01-20 16:58:04 -08001987 if (free_ias) {
1988 kfree(ias_obj->name);
1989 kfree(ias_obj);
1990 }
Samuel Ortiz5b409642010-10-11 00:46:51 +02001991 err = -EINVAL;
1992 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 }
1994
1995 /* Look at the type */
1996 switch(ias_opt->irda_attrib_type) {
1997 case IAS_INTEGER:
1998 /* Add an integer attribute */
1999 irias_add_integer_attrib(
2000 ias_obj,
2001 ias_opt->irda_attrib_name,
2002 ias_opt->attribute.irda_attrib_int,
2003 IAS_USER_ATTR);
2004 break;
2005 case IAS_OCT_SEQ:
2006 /* Check length */
2007 if(ias_opt->attribute.irda_attrib_octet_seq.len >
2008 IAS_MAX_OCTET_STRING) {
2009 kfree(ias_opt);
Jesper Juhl61e44b42008-01-20 16:58:04 -08002010 if (free_ias) {
2011 kfree(ias_obj->name);
2012 kfree(ias_obj);
2013 }
2014
Samuel Ortiz5b409642010-10-11 00:46:51 +02002015 err = -EINVAL;
2016 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 }
2018 /* Add an octet sequence attribute */
2019 irias_add_octseq_attrib(
2020 ias_obj,
2021 ias_opt->irda_attrib_name,
2022 ias_opt->attribute.irda_attrib_octet_seq.octet_seq,
2023 ias_opt->attribute.irda_attrib_octet_seq.len,
2024 IAS_USER_ATTR);
2025 break;
2026 case IAS_STRING:
2027 /* Should check charset & co */
2028 /* Check length */
2029 /* The length is encoded in a __u8, and
2030 * IAS_MAX_STRING == 256, so there is no way
2031 * userspace can pass us a string too large.
2032 * Jean II */
2033 /* NULL terminate the string (avoid troubles) */
2034 ias_opt->attribute.irda_attrib_string.string[ias_opt->attribute.irda_attrib_string.len] = '\0';
2035 /* Add a string attribute */
2036 irias_add_string_attrib(
2037 ias_obj,
2038 ias_opt->irda_attrib_name,
2039 ias_opt->attribute.irda_attrib_string.string,
2040 IAS_USER_ATTR);
2041 break;
2042 default :
2043 kfree(ias_opt);
Jesper Juhl61e44b42008-01-20 16:58:04 -08002044 if (free_ias) {
2045 kfree(ias_obj->name);
2046 kfree(ias_obj);
2047 }
Samuel Ortiz5b409642010-10-11 00:46:51 +02002048 err = -EINVAL;
2049 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 }
2051 irias_insert_object(ias_obj);
2052 kfree(ias_opt);
2053 break;
2054 case IRLMP_IAS_DEL:
2055 /* The user want to delete an object from our local IAS
2056 * database. We just need to query the IAS, check is the
2057 * object is not owned by the kernel and delete it.
2058 */
2059
Samuel Ortiz5b409642010-10-11 00:46:51 +02002060 if (optlen != sizeof(struct irda_ias_set)) {
2061 err = -EINVAL;
2062 goto out;
2063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002066 if (ias_opt == NULL) {
2067 err = -ENOMEM;
2068 goto out;
2069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 /* Copy query to the driver. */
2072 if (copy_from_user(ias_opt, optval, optlen)) {
2073 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002074 err = -EFAULT;
2075 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 }
2077
2078 /* Find the object we target.
2079 * If the user gives us an empty string, we use the object
2080 * associated with this socket. This will workaround
2081 * duplicated class name - Jean II */
2082 if(ias_opt->irda_class_name[0] == '\0')
2083 ias_obj = self->ias_obj;
2084 else
2085 ias_obj = irias_find_object(ias_opt->irda_class_name);
2086 if(ias_obj == (struct ias_object *) NULL) {
2087 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002088 err = -EINVAL;
2089 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 }
2091
2092 /* Only ROOT can mess with the global IAS database.
2093 * Users can only del attributes from the object associated
2094 * with the socket they own - Jean II */
2095 if((!capable(CAP_NET_ADMIN)) &&
2096 ((ias_obj == NULL) || (ias_obj != self->ias_obj))) {
2097 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002098 err = -EPERM;
2099 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 }
2101
2102 /* Find the attribute (in the object) we target */
2103 ias_attr = irias_find_attrib(ias_obj,
2104 ias_opt->irda_attrib_name);
2105 if(ias_attr == (struct ias_attrib *) NULL) {
2106 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002107 err = -EINVAL;
2108 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 }
2110
2111 /* Check is the user space own the object */
2112 if(ias_attr->value->owner != IAS_USER_ATTR) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08002113 IRDA_DEBUG(1, "%s(), attempting to delete a kernel attribute\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002115 err = -EPERM;
2116 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 }
2118
2119 /* Remove the attribute (and maybe the object) */
2120 irias_delete_attrib(ias_obj, ias_attr, 1);
2121 kfree(ias_opt);
2122 break;
2123 case IRLMP_MAX_SDU_SIZE:
Samuel Ortiz5b409642010-10-11 00:46:51 +02002124 if (optlen < sizeof(int)) {
2125 err = -EINVAL;
2126 goto out;
2127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Samuel Ortiz5b409642010-10-11 00:46:51 +02002129 if (get_user(opt, (int __user *)optval)) {
2130 err = -EFAULT;
2131 goto out;
2132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
2134 /* Only possible for a seqpacket service (TTP with SAR) */
2135 if (sk->sk_type != SOCK_SEQPACKET) {
2136 IRDA_DEBUG(2, "%s(), setting max_sdu_size = %d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08002137 __func__, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 self->max_sdu_size_rx = opt;
2139 } else {
2140 IRDA_WARNING("%s: not allowed to set MAXSDUSIZE for this socket type!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08002141 __func__);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002142 err = -ENOPROTOOPT;
2143 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 }
2145 break;
2146 case IRLMP_HINTS_SET:
Samuel Ortiz5b409642010-10-11 00:46:51 +02002147 if (optlen < sizeof(int)) {
2148 err = -EINVAL;
2149 goto out;
2150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
2152 /* The input is really a (__u8 hints[2]), easier as an int */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002153 if (get_user(opt, (int __user *)optval)) {
2154 err = -EFAULT;
2155 goto out;
2156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158 /* Unregister any old registration */
2159 if (self->skey)
2160 irlmp_unregister_service(self->skey);
2161
2162 self->skey = irlmp_register_service((__u16) opt);
2163 break;
2164 case IRLMP_HINT_MASK_SET:
2165 /* As opposed to the previous case which set the hint bits
2166 * that we advertise, this one set the filter we use when
2167 * making a discovery (nodes which don't match any hint
2168 * bit in the mask are not reported).
2169 */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002170 if (optlen < sizeof(int)) {
2171 err = -EINVAL;
2172 goto out;
2173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175 /* The input is really a (__u8 hints[2]), easier as an int */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002176 if (get_user(opt, (int __user *)optval)) {
2177 err = -EFAULT;
2178 goto out;
2179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181 /* Set the new hint mask */
2182 self->mask.word = (__u16) opt;
2183 /* Mask out extension bits */
2184 self->mask.word &= 0x7f7f;
2185 /* Check if no bits */
2186 if(!self->mask.word)
2187 self->mask.word = 0xFFFF;
2188
2189 break;
2190 default:
Samuel Ortiz5b409642010-10-11 00:46:51 +02002191 err = -ENOPROTOOPT;
2192 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Samuel Ortiz5b409642010-10-11 00:46:51 +02002195out:
2196 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08002197
2198 return err;
2199}
2200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201/*
2202 * Function irda_extract_ias_value(ias_opt, ias_value)
2203 *
2204 * Translate internal IAS value structure to the user space representation
2205 *
2206 * The external representation of IAS values, as we exchange them with
2207 * user space program is quite different from the internal representation,
2208 * as stored in the IAS database (because we need a flat structure for
2209 * crossing kernel boundary).
2210 * This function transform the former in the latter. We also check
2211 * that the value type is valid.
2212 */
2213static int irda_extract_ias_value(struct irda_ias_set *ias_opt,
2214 struct ias_value *ias_value)
2215{
2216 /* Look at the type */
2217 switch (ias_value->type) {
2218 case IAS_INTEGER:
2219 /* Copy the integer */
2220 ias_opt->attribute.irda_attrib_int = ias_value->t.integer;
2221 break;
2222 case IAS_OCT_SEQ:
2223 /* Set length */
2224 ias_opt->attribute.irda_attrib_octet_seq.len = ias_value->len;
2225 /* Copy over */
2226 memcpy(ias_opt->attribute.irda_attrib_octet_seq.octet_seq,
2227 ias_value->t.oct_seq, ias_value->len);
2228 break;
2229 case IAS_STRING:
2230 /* Set length */
2231 ias_opt->attribute.irda_attrib_string.len = ias_value->len;
2232 ias_opt->attribute.irda_attrib_string.charset = ias_value->charset;
2233 /* Copy over */
2234 memcpy(ias_opt->attribute.irda_attrib_string.string,
2235 ias_value->t.string, ias_value->len);
2236 /* NULL terminate the string (avoid troubles) */
2237 ias_opt->attribute.irda_attrib_string.string[ias_value->len] = '\0';
2238 break;
2239 case IAS_MISSING:
2240 default :
2241 return -EINVAL;
2242 }
2243
2244 /* Copy type over */
2245 ias_opt->irda_attrib_type = ias_value->type;
2246
2247 return 0;
2248}
2249
2250/*
2251 * Function irda_getsockopt (sock, level, optname, optval, optlen)
2252 */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002253static int irda_getsockopt(struct socket *sock, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 char __user *optval, int __user *optlen)
2255{
2256 struct sock *sk = sock->sk;
2257 struct irda_sock *self = irda_sk(sk);
2258 struct irda_device_list list;
2259 struct irda_device_info *discoveries;
2260 struct irda_ias_set * ias_opt; /* IAS get/query params */
2261 struct ias_object * ias_obj; /* Object in IAS */
2262 struct ias_attrib * ias_attr; /* Attribute in IAS object */
2263 int daddr = DEV_ADDR_ANY; /* Dest address for IAS queries */
2264 int val = 0;
2265 int len = 0;
Samuel Ortiz5b409642010-10-11 00:46:51 +02002266 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 int offset, total;
2268
Harvey Harrison0dc47872008-03-05 20:47:47 -08002269 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
2271 if (level != SOL_IRLMP)
2272 return -ENOPROTOOPT;
2273
2274 if (get_user(len, optlen))
2275 return -EFAULT;
2276
2277 if(len < 0)
2278 return -EINVAL;
2279
Samuel Ortiz5b409642010-10-11 00:46:51 +02002280 lock_sock(sk);
2281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 switch (optname) {
2283 case IRLMP_ENUMDEVICES:
Dan Rosenbergfdac1e02010-12-22 13:58:27 +00002284
2285 /* Offset to first device entry */
2286 offset = sizeof(struct irda_device_list) -
2287 sizeof(struct irda_device_info);
2288
2289 if (len < offset) {
2290 err = -EINVAL;
2291 goto out;
2292 }
2293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 /* Ask lmp for the current discovery log */
2295 discoveries = irlmp_get_discoveries(&list.len, self->mask.word,
2296 self->nslots);
2297 /* Check if the we got some results */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002298 if (discoveries == NULL) {
2299 err = -EAGAIN;
2300 goto out; /* Didn't find any devices */
2301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
2303 /* Write total list length back to client */
Dan Rosenbergfdac1e02010-12-22 13:58:27 +00002304 if (copy_to_user(optval, &list, offset))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 err = -EFAULT;
2306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 /* Copy the list itself - watch for overflow */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002308 if (list.len > 2048) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 err = -EINVAL;
2310 goto bed;
2311 }
2312 total = offset + (list.len * sizeof(struct irda_device_info));
2313 if (total > len)
2314 total = len;
2315 if (copy_to_user(optval+offset, discoveries, total - offset))
2316 err = -EFAULT;
2317
2318 /* Write total number of bytes used back to client */
2319 if (put_user(total, optlen))
2320 err = -EFAULT;
2321bed:
2322 /* Free up our buffer */
2323 kfree(discoveries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 break;
2325 case IRLMP_MAX_SDU_SIZE:
2326 val = self->max_data_size;
2327 len = sizeof(int);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002328 if (put_user(len, optlen)) {
2329 err = -EFAULT;
2330 goto out;
2331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
Samuel Ortiz5b409642010-10-11 00:46:51 +02002333 if (copy_to_user(optval, &val, len)) {
2334 err = -EFAULT;
2335 goto out;
2336 }
2337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 break;
2339 case IRLMP_IAS_GET:
2340 /* The user want an object from our local IAS database.
2341 * We just need to query the IAS and return the value
2342 * that we found */
2343
2344 /* Check that the user has allocated the right space for us */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002345 if (len != sizeof(struct irda_ias_set)) {
2346 err = -EINVAL;
2347 goto out;
2348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
2350 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002351 if (ias_opt == NULL) {
2352 err = -ENOMEM;
2353 goto out;
2354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
2356 /* Copy query to the driver. */
2357 if (copy_from_user(ias_opt, optval, len)) {
2358 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002359 err = -EFAULT;
2360 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 }
2362
2363 /* Find the object we target.
2364 * If the user gives us an empty string, we use the object
2365 * associated with this socket. This will workaround
2366 * duplicated class name - Jean II */
2367 if(ias_opt->irda_class_name[0] == '\0')
2368 ias_obj = self->ias_obj;
2369 else
2370 ias_obj = irias_find_object(ias_opt->irda_class_name);
2371 if(ias_obj == (struct ias_object *) NULL) {
2372 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002373 err = -EINVAL;
2374 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 }
2376
2377 /* Find the attribute (in the object) we target */
2378 ias_attr = irias_find_attrib(ias_obj,
2379 ias_opt->irda_attrib_name);
2380 if(ias_attr == (struct ias_attrib *) NULL) {
2381 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002382 err = -EINVAL;
2383 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 }
2385
2386 /* Translate from internal to user structure */
2387 err = irda_extract_ias_value(ias_opt, ias_attr->value);
2388 if(err) {
2389 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002390 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 }
2392
2393 /* Copy reply to the user */
2394 if (copy_to_user(optval, ias_opt,
2395 sizeof(struct irda_ias_set))) {
2396 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002397 err = -EFAULT;
2398 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 }
2400 /* Note : don't need to put optlen, we checked it */
2401 kfree(ias_opt);
2402 break;
2403 case IRLMP_IAS_QUERY:
2404 /* The user want an object from a remote IAS database.
2405 * We need to use IAP to query the remote database and
2406 * then wait for the answer to come back. */
2407
2408 /* Check that the user has allocated the right space for us */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002409 if (len != sizeof(struct irda_ias_set)) {
2410 err = -EINVAL;
2411 goto out;
2412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
2414 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002415 if (ias_opt == NULL) {
2416 err = -ENOMEM;
2417 goto out;
2418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
2420 /* Copy query to the driver. */
2421 if (copy_from_user(ias_opt, optval, len)) {
2422 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002423 err = -EFAULT;
2424 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 }
2426
2427 /* At this point, there are two cases...
2428 * 1) the socket is connected - that's the easy case, we
2429 * just query the device we are connected to...
2430 * 2) the socket is not connected - the user doesn't want
2431 * to connect and/or may not have a valid service name
2432 * (so can't create a fake connection). In this case,
2433 * we assume that the user pass us a valid destination
2434 * address in the requesting structure...
2435 */
2436 if(self->daddr != DEV_ADDR_ANY) {
2437 /* We are connected - reuse known daddr */
2438 daddr = self->daddr;
2439 } else {
2440 /* We are not connected, we must specify a valid
2441 * destination address */
2442 daddr = ias_opt->daddr;
2443 if((!daddr) || (daddr == DEV_ADDR_ANY)) {
2444 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002445 err = -EINVAL;
2446 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 }
2448 }
2449
2450 /* Check that we can proceed with IAP */
2451 if (self->iriap) {
2452 IRDA_WARNING("%s: busy with a previous query\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08002453 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002455 err = -EBUSY;
2456 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 }
2458
2459 self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
2460 irda_getvalue_confirm);
2461
2462 if (self->iriap == NULL) {
2463 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002464 err = -ENOMEM;
2465 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 }
2467
2468 /* Treat unexpected wakeup as disconnect */
2469 self->errno = -EHOSTUNREACH;
2470
2471 /* Query remote LM-IAS */
2472 iriap_getvaluebyclass_request(self->iriap,
2473 self->saddr, daddr,
2474 ias_opt->irda_class_name,
2475 ias_opt->irda_attrib_name);
2476
2477 /* Wait for answer, if not yet finished (or failed) */
2478 if (wait_event_interruptible(self->query_wait,
2479 (self->iriap == NULL))) {
2480 /* pending request uses copy of ias_opt-content
2481 * we can free it regardless! */
2482 kfree(ias_opt);
2483 /* Treat signals as disconnect */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002484 err = -EHOSTUNREACH;
2485 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 }
2487
2488 /* Check what happened */
2489 if (self->errno)
2490 {
2491 kfree(ias_opt);
2492 /* Requested object/attribute doesn't exist */
2493 if((self->errno == IAS_CLASS_UNKNOWN) ||
2494 (self->errno == IAS_ATTRIB_UNKNOWN))
Samuel Ortiz5b409642010-10-11 00:46:51 +02002495 err = -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 else
Samuel Ortiz5b409642010-10-11 00:46:51 +02002497 err = -EHOSTUNREACH;
2498
2499 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 }
2501
2502 /* Translate from internal to user structure */
2503 err = irda_extract_ias_value(ias_opt, self->ias_result);
2504 if (self->ias_result)
2505 irias_delete_value(self->ias_result);
2506 if (err) {
2507 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002508 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 }
2510
2511 /* Copy reply to the user */
2512 if (copy_to_user(optval, ias_opt,
2513 sizeof(struct irda_ias_set))) {
2514 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002515 err = -EFAULT;
2516 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 }
2518 /* Note : don't need to put optlen, we checked it */
2519 kfree(ias_opt);
2520 break;
2521 case IRLMP_WAITDEVICE:
2522 /* This function is just another way of seeing life ;-)
2523 * IRLMP_ENUMDEVICES assumes that you have a static network,
2524 * and that you just want to pick one of the devices present.
2525 * On the other hand, in here we assume that no device is
2526 * present and that at some point in the future a device will
2527 * come into range. When this device arrive, we just wake
2528 * up the caller, so that he has time to connect to it before
2529 * the device goes away...
2530 * Note : once the node has been discovered for more than a
2531 * few second, it won't trigger this function, unless it
2532 * goes away and come back changes its hint bits (so we
2533 * might call it IRLMP_WAITNEWDEVICE).
2534 */
2535
2536 /* Check that the user is passing us an int */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002537 if (len != sizeof(int)) {
2538 err = -EINVAL;
2539 goto out;
2540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 /* Get timeout in ms (max time we block the caller) */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002542 if (get_user(val, (int __user *)optval)) {
2543 err = -EFAULT;
2544 goto out;
2545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
2547 /* Tell IrLMP we want to be notified */
2548 irlmp_update_client(self->ckey, self->mask.word,
2549 irda_selective_discovery_indication,
2550 NULL, (void *) self);
2551
2552 /* Do some discovery (and also return cached results) */
2553 irlmp_discovery_request(self->nslots);
2554
2555 /* Wait until a node is discovered */
2556 if (!self->cachedaddr) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08002557 IRDA_DEBUG(1, "%s(), nothing discovered yet, going to sleep...\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
2559 /* Set watchdog timer to expire in <val> ms. */
2560 self->errno = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08002561 setup_timer(&self->watchdog, irda_discovery_timeout,
2562 (unsigned long)self);
Xi Wang7d6c4292011-12-21 02:57:16 +00002563 mod_timer(&self->watchdog,
2564 jiffies + msecs_to_jiffies(val));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
2566 /* Wait for IR-LMP to call us back */
2567 __wait_event_interruptible(self->query_wait,
2568 (self->cachedaddr != 0 || self->errno == -ETIME),
Samuel Ortiz5b409642010-10-11 00:46:51 +02002569 err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
2571 /* If watchdog is still activated, kill it! */
Ying Xue25cc4ae2013-02-03 20:32:57 +00002572 del_timer(&(self->watchdog));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
Harvey Harrison0dc47872008-03-05 20:47:47 -08002574 IRDA_DEBUG(1, "%s(), ...waking up !\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
Samuel Ortiz5b409642010-10-11 00:46:51 +02002576 if (err != 0)
2577 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 }
2579 else
2580 IRDA_DEBUG(1, "%s(), found immediately !\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08002581 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
2583 /* Tell IrLMP that we have been notified */
2584 irlmp_update_client(self->ckey, self->mask.word,
2585 NULL, NULL, NULL);
2586
2587 /* Check if the we got some results */
Kees Cook896ee0e2013-03-20 05:19:24 +00002588 if (!self->cachedaddr) {
2589 err = -EAGAIN; /* Didn't find any devices */
2590 goto out;
2591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 daddr = self->cachedaddr;
2593 /* Cleanup */
2594 self->cachedaddr = 0;
2595
2596 /* We return the daddr of the device that trigger the
2597 * wakeup. As irlmp pass us only the new devices, we
2598 * are sure that it's not an old device.
2599 * If the user want more details, he should query
2600 * the whole discovery log and pick one device...
2601 */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002602 if (put_user(daddr, (int __user *)optval)) {
2603 err = -EFAULT;
2604 goto out;
2605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
2607 break;
2608 default:
Samuel Ortiz5b409642010-10-11 00:46:51 +02002609 err = -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 }
2611
Samuel Ortiz5b409642010-10-11 00:46:51 +02002612out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
Samuel Ortiz5b409642010-10-11 00:46:51 +02002614 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08002615
2616 return err;
2617}
2618
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00002619static const struct net_proto_family irda_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 .family = PF_IRDA,
2621 .create = irda_create,
2622 .owner = THIS_MODULE,
2623};
2624
Arnd Bergmann58a9d732009-11-06 00:38:01 -08002625static const struct proto_ops irda_stream_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 .family = PF_IRDA,
2627 .owner = THIS_MODULE,
2628 .release = irda_release,
2629 .bind = irda_bind,
2630 .connect = irda_connect,
2631 .socketpair = sock_no_socketpair,
2632 .accept = irda_accept,
2633 .getname = irda_getname,
2634 .poll = irda_poll,
2635 .ioctl = irda_ioctl,
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08002636#ifdef CONFIG_COMPAT
2637 .compat_ioctl = irda_compat_ioctl,
2638#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 .listen = irda_listen,
2640 .shutdown = irda_shutdown,
2641 .setsockopt = irda_setsockopt,
2642 .getsockopt = irda_getsockopt,
2643 .sendmsg = irda_sendmsg,
2644 .recvmsg = irda_recvmsg_stream,
2645 .mmap = sock_no_mmap,
2646 .sendpage = sock_no_sendpage,
2647};
2648
Arnd Bergmann58a9d732009-11-06 00:38:01 -08002649static const struct proto_ops irda_seqpacket_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 .family = PF_IRDA,
2651 .owner = THIS_MODULE,
2652 .release = irda_release,
2653 .bind = irda_bind,
2654 .connect = irda_connect,
2655 .socketpair = sock_no_socketpair,
2656 .accept = irda_accept,
2657 .getname = irda_getname,
Samuel Ortiz5b409642010-10-11 00:46:51 +02002658 .poll = datagram_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 .ioctl = irda_ioctl,
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08002660#ifdef CONFIG_COMPAT
2661 .compat_ioctl = irda_compat_ioctl,
2662#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 .listen = irda_listen,
2664 .shutdown = irda_shutdown,
2665 .setsockopt = irda_setsockopt,
2666 .getsockopt = irda_getsockopt,
2667 .sendmsg = irda_sendmsg,
2668 .recvmsg = irda_recvmsg_dgram,
2669 .mmap = sock_no_mmap,
2670 .sendpage = sock_no_sendpage,
2671};
2672
Arnd Bergmann58a9d732009-11-06 00:38:01 -08002673static const struct proto_ops irda_dgram_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 .family = PF_IRDA,
2675 .owner = THIS_MODULE,
2676 .release = irda_release,
2677 .bind = irda_bind,
2678 .connect = irda_connect,
2679 .socketpair = sock_no_socketpair,
2680 .accept = irda_accept,
2681 .getname = irda_getname,
Samuel Ortiz5b409642010-10-11 00:46:51 +02002682 .poll = datagram_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 .ioctl = irda_ioctl,
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08002684#ifdef CONFIG_COMPAT
2685 .compat_ioctl = irda_compat_ioctl,
2686#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 .listen = irda_listen,
2688 .shutdown = irda_shutdown,
2689 .setsockopt = irda_setsockopt,
2690 .getsockopt = irda_getsockopt,
2691 .sendmsg = irda_sendmsg_dgram,
2692 .recvmsg = irda_recvmsg_dgram,
2693 .mmap = sock_no_mmap,
2694 .sendpage = sock_no_sendpage,
2695};
2696
2697#ifdef CONFIG_IRDA_ULTRA
Arnd Bergmann58a9d732009-11-06 00:38:01 -08002698static const struct proto_ops irda_ultra_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 .family = PF_IRDA,
2700 .owner = THIS_MODULE,
2701 .release = irda_release,
2702 .bind = irda_bind,
2703 .connect = sock_no_connect,
2704 .socketpair = sock_no_socketpair,
2705 .accept = sock_no_accept,
2706 .getname = irda_getname,
Samuel Ortiz5b409642010-10-11 00:46:51 +02002707 .poll = datagram_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 .ioctl = irda_ioctl,
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08002709#ifdef CONFIG_COMPAT
2710 .compat_ioctl = irda_compat_ioctl,
2711#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 .listen = sock_no_listen,
2713 .shutdown = irda_shutdown,
2714 .setsockopt = irda_setsockopt,
2715 .getsockopt = irda_getsockopt,
2716 .sendmsg = irda_sendmsg_ultra,
2717 .recvmsg = irda_recvmsg_dgram,
2718 .mmap = sock_no_mmap,
2719 .sendpage = sock_no_sendpage,
2720};
2721#endif /* CONFIG_IRDA_ULTRA */
2722
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723/*
2724 * Function irsock_init (pro)
2725 *
2726 * Initialize IrDA protocol
2727 *
2728 */
2729int __init irsock_init(void)
2730{
2731 int rc = proto_register(&irda_proto, 0);
2732
2733 if (rc == 0)
2734 rc = sock_register(&irda_family_ops);
2735
2736 return rc;
2737}
2738
2739/*
2740 * Function irsock_cleanup (void)
2741 *
2742 * Remove IrDA protocol
2743 *
2744 */
Samuel Ortiz75a69ac2007-07-18 02:16:30 -07002745void irsock_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746{
2747 sock_unregister(PF_IRDA);
2748 proto_unregister(&irda_proto);
2749}