blob: 4b04ae06b288a905032bc32c740351d73fb3616f [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
Jeff Kirsherd3770502013-12-06 09:13:43 -080028 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 *
30 * Linux-IrDA now supports four different types of IrDA sockets:
31 *
32 * o SOCK_STREAM: TinyTP connections with SAR disabled. The
33 * max SDU size is 0 for conn. of this type
34 * o SOCK_SEQPACKET: TinyTP connections with SAR enabled. TTP may
35 * fragment the messages, but will preserve
36 * the message boundaries
37 * o SOCK_DGRAM: IRDAPROTO_UNITDATA: TinyTP connections with Unitdata
38 * (unreliable) transfers
39 * IRDAPROTO_ULTRA: Connectionless and unreliable data
40 *
41 ********************************************************************/
42
Randy Dunlap4fc268d2006-01-11 12:17:47 -080043#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/module.h>
45#include <linux/types.h>
46#include <linux/socket.h>
47#include <linux/sockios.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090048#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/init.h>
50#include <linux/net.h>
51#include <linux/irda.h>
52#include <linux/poll.h>
53
54#include <asm/ioctls.h> /* TIOCOUTQ, TIOCINQ */
55#include <asm/uaccess.h>
56
57#include <net/sock.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070058#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#include <net/irda/af_irda.h>
61
Eric Paris3f378b62009-11-05 22:18:14 -080062static int irda_create(struct net *net, struct socket *sock, int protocol, int kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Eric Dumazet90ddc4f2005-12-22 12:49:22 -080064static const struct proto_ops irda_stream_ops;
65static const struct proto_ops irda_seqpacket_ops;
66static const struct proto_ops irda_dgram_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#ifdef CONFIG_IRDA_ULTRA
Eric Dumazet90ddc4f2005-12-22 12:49:22 -080069static const struct proto_ops irda_ultra_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define ULTRA_MAX_DATA 382
71#endif /* CONFIG_IRDA_ULTRA */
72
73#define IRDA_MAX_HEADER (TTP_MAX_HEADER)
74
75/*
76 * Function irda_data_indication (instance, sap, skb)
77 *
78 * Received some data from TinyTP. Just queue it on the receive queue
79 *
80 */
81static int irda_data_indication(void *instance, void *sap, struct sk_buff *skb)
82{
83 struct irda_sock *self;
84 struct sock *sk;
85 int err;
86
Harvey Harrison0dc47872008-03-05 20:47:47 -080087 IRDA_DEBUG(3, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 self = instance;
90 sk = instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 err = sock_queue_rcv_skb(sk, skb);
93 if (err) {
Harvey Harrison0dc47872008-03-05 20:47:47 -080094 IRDA_DEBUG(1, "%s(), error: no more mem!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 self->rx_flow = FLOW_STOP;
96
97 /* When we return error, TTP will need to requeue the skb */
98 return err;
99 }
100
101 return 0;
102}
103
104/*
105 * Function irda_disconnect_indication (instance, sap, reason, skb)
106 *
107 * Connection has been closed. Check reason to find out why
108 *
109 */
110static void irda_disconnect_indication(void *instance, void *sap,
111 LM_REASON reason, struct sk_buff *skb)
112{
113 struct irda_sock *self;
114 struct sock *sk;
115
116 self = instance;
117
Harvey Harrison0dc47872008-03-05 20:47:47 -0800118 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 /* Don't care about it, but let's not leak it */
121 if(skb)
122 dev_kfree_skb(skb);
123
124 sk = instance;
125 if (sk == NULL) {
126 IRDA_DEBUG(0, "%s(%p) : BUG : sk is NULL\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800127 __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return;
129 }
130
131 /* Prevent race conditions with irda_release() and irda_shutdown() */
Olaf Kirch6e66aa12007-04-20 22:08:15 -0700132 bh_lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (!sock_flag(sk, SOCK_DEAD) && sk->sk_state != TCP_CLOSE) {
134 sk->sk_state = TCP_CLOSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 sk->sk_shutdown |= SEND_SHUTDOWN;
136
137 sk->sk_state_change(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 /* Close our TSAP.
140 * If we leave it open, IrLMP put it back into the list of
141 * unconnected LSAPs. The problem is that any incoming request
142 * can then be matched to this socket (and it will be, because
143 * it is at the head of the list). This would prevent any
144 * listening socket waiting on the same TSAP to get those
145 * requests. Some apps forget to close sockets, or hang to it
146 * a bit too long, so we may stay in this dead state long
147 * enough to be noticed...
148 * Note : all socket function do check sk->sk_state, so we are
149 * safe...
150 * Jean II
151 */
152 if (self->tsap) {
153 irttp_close_tsap(self->tsap);
154 self->tsap = NULL;
155 }
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +0900156 }
Olaf Kirch6e66aa12007-04-20 22:08:15 -0700157 bh_unlock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 /* Note : once we are there, there is not much you want to do
160 * with the socket anymore, apart from closing it.
161 * For example, bind() and connect() won't reset sk->sk_err,
162 * sk->sk_shutdown and sk->sk_flags to valid values...
163 * Jean II
164 */
165}
166
167/*
168 * Function irda_connect_confirm (instance, sap, qos, max_sdu_size, skb)
169 *
170 * Connections has been confirmed by the remote device
171 *
172 */
173static void irda_connect_confirm(void *instance, void *sap,
174 struct qos_info *qos,
175 __u32 max_sdu_size, __u8 max_header_size,
176 struct sk_buff *skb)
177{
178 struct irda_sock *self;
179 struct sock *sk;
180
181 self = instance;
182
Harvey Harrison0dc47872008-03-05 20:47:47 -0800183 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 sk = instance;
186 if (sk == NULL) {
187 dev_kfree_skb(skb);
188 return;
189 }
190
191 dev_kfree_skb(skb);
192 // Should be ??? skb_queue_tail(&sk->sk_receive_queue, skb);
193
194 /* How much header space do we need to reserve */
195 self->max_header_size = max_header_size;
196
197 /* IrTTP max SDU size in transmit direction */
198 self->max_sdu_size_tx = max_sdu_size;
199
200 /* Find out what the largest chunk of data that we can transmit is */
201 switch (sk->sk_type) {
202 case SOCK_STREAM:
203 if (max_sdu_size != 0) {
Joe Perches6c910232014-11-11 13:37:30 -0800204 net_err_ratelimited("%s: max_sdu_size must be 0\n",
205 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return;
207 }
208 self->max_data_size = irttp_get_max_seg_size(self->tsap);
209 break;
210 case SOCK_SEQPACKET:
211 if (max_sdu_size == 0) {
Joe Perches6c910232014-11-11 13:37:30 -0800212 net_err_ratelimited("%s: max_sdu_size cannot be 0\n",
213 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return;
215 }
216 self->max_data_size = max_sdu_size;
217 break;
218 default:
219 self->max_data_size = irttp_get_max_seg_size(self->tsap);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Harvey Harrison0dc47872008-03-05 20:47:47 -0800222 IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 self->max_data_size);
224
225 memcpy(&self->qos_tx, qos, sizeof(struct qos_info));
226
227 /* We are now connected! */
228 sk->sk_state = TCP_ESTABLISHED;
229 sk->sk_state_change(sk);
230}
231
232/*
233 * Function irda_connect_indication(instance, sap, qos, max_sdu_size, userdata)
234 *
235 * Incoming connection
236 *
237 */
238static void irda_connect_indication(void *instance, void *sap,
239 struct qos_info *qos, __u32 max_sdu_size,
240 __u8 max_header_size, struct sk_buff *skb)
241{
242 struct irda_sock *self;
243 struct sock *sk;
244
245 self = instance;
246
Harvey Harrison0dc47872008-03-05 20:47:47 -0800247 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 sk = instance;
250 if (sk == NULL) {
251 dev_kfree_skb(skb);
252 return;
253 }
254
255 /* How much header space do we need to reserve */
256 self->max_header_size = max_header_size;
257
258 /* IrTTP max SDU size in transmit direction */
259 self->max_sdu_size_tx = max_sdu_size;
260
261 /* Find out what the largest chunk of data that we can transmit is */
262 switch (sk->sk_type) {
263 case SOCK_STREAM:
264 if (max_sdu_size != 0) {
Joe Perches6c910232014-11-11 13:37:30 -0800265 net_err_ratelimited("%s: max_sdu_size must be 0\n",
266 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 kfree_skb(skb);
268 return;
269 }
270 self->max_data_size = irttp_get_max_seg_size(self->tsap);
271 break;
272 case SOCK_SEQPACKET:
273 if (max_sdu_size == 0) {
Joe Perches6c910232014-11-11 13:37:30 -0800274 net_err_ratelimited("%s: max_sdu_size cannot be 0\n",
275 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 kfree_skb(skb);
277 return;
278 }
279 self->max_data_size = max_sdu_size;
280 break;
281 default:
282 self->max_data_size = irttp_get_max_seg_size(self->tsap);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Harvey Harrison0dc47872008-03-05 20:47:47 -0800285 IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 self->max_data_size);
287
288 memcpy(&self->qos_tx, qos, sizeof(struct qos_info));
289
290 skb_queue_tail(&sk->sk_receive_queue, skb);
291 sk->sk_state_change(sk);
292}
293
294/*
295 * Function irda_connect_response (handle)
296 *
297 * Accept incoming connection
298 *
299 */
300static void irda_connect_response(struct irda_sock *self)
301{
302 struct sk_buff *skb;
303
Harvey Harrison0dc47872008-03-05 20:47:47 -0800304 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Mathias Krausee1e3c802013-04-05 10:41:28 +0000306 skb = alloc_skb(TTP_MAX_HEADER + TTP_SAR_HEADER, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (skb == NULL) {
308 IRDA_DEBUG(0, "%s() Unable to allocate sk_buff!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800309 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return;
311 }
312
313 /* Reserve space for MUX_CONTROL and LAP header */
314 skb_reserve(skb, IRDA_MAX_HEADER);
315
316 irttp_connect_response(self->tsap, self->max_sdu_size_rx, skb);
317}
318
319/*
320 * Function irda_flow_indication (instance, sap, flow)
321 *
322 * Used by TinyTP to tell us if it can accept more data or not
323 *
324 */
325static void irda_flow_indication(void *instance, void *sap, LOCAL_FLOW flow)
326{
327 struct irda_sock *self;
328 struct sock *sk;
329
Harvey Harrison0dc47872008-03-05 20:47:47 -0800330 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 self = instance;
333 sk = instance;
Samuel Ortizc3ea9fa2007-04-20 22:10:13 -0700334 BUG_ON(sk == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 switch (flow) {
337 case FLOW_STOP:
338 IRDA_DEBUG(1, "%s(), IrTTP wants us to slow down\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800339 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 self->tx_flow = flow;
341 break;
342 case FLOW_START:
343 self->tx_flow = flow;
344 IRDA_DEBUG(1, "%s(), IrTTP wants us to start again\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800345 __func__);
Eric Dumazetaa395142010-04-20 13:03:51 +0000346 wake_up_interruptible(sk_sleep(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 break;
348 default:
Harvey Harrison0dc47872008-03-05 20:47:47 -0800349 IRDA_DEBUG(0, "%s(), Unknown flow command!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 /* Unknown flow command, better stop */
351 self->tx_flow = flow;
352 break;
353 }
354}
355
356/*
357 * Function irda_getvalue_confirm (obj_id, value, priv)
358 *
359 * Got answer from remote LM-IAS, just pass object to requester...
360 *
361 * Note : duplicate from above, but we need our own version that
362 * doesn't touch the dtsap_sel and save the full value structure...
363 */
364static void irda_getvalue_confirm(int result, __u16 obj_id,
365 struct ias_value *value, void *priv)
366{
367 struct irda_sock *self;
368
Joe Perchesea110732011-06-13 16:21:26 +0000369 self = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (!self) {
Joe Perches6c910232014-11-11 13:37:30 -0800371 net_warn_ratelimited("%s: lost myself!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return;
373 }
374
Harvey Harrison0dc47872008-03-05 20:47:47 -0800375 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 /* We probably don't need to make any more queries */
378 iriap_close(self->iriap);
379 self->iriap = NULL;
380
381 /* Check if request succeeded */
382 if (result != IAS_SUCCESS) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800383 IRDA_DEBUG(1, "%s(), IAS query failed! (%d)\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 result);
385
386 self->errno = result; /* We really need it later */
387
388 /* Wake up any processes waiting for result */
389 wake_up_interruptible(&self->query_wait);
390
391 return;
392 }
393
394 /* Pass the object to the caller (so the caller must delete it) */
395 self->ias_result = value;
396 self->errno = 0;
397
398 /* Wake up any processes waiting for result */
399 wake_up_interruptible(&self->query_wait);
400}
401
402/*
403 * Function irda_selective_discovery_indication (discovery)
404 *
405 * Got a selective discovery indication from IrLMP.
406 *
407 * IrLMP is telling us that this node is new and matching our hint bit
408 * filter. Wake up any process waiting for answer...
409 */
410static void irda_selective_discovery_indication(discinfo_t *discovery,
411 DISCOVERY_MODE mode,
412 void *priv)
413{
414 struct irda_sock *self;
415
Harvey Harrison0dc47872008-03-05 20:47:47 -0800416 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Joe Perchesea110732011-06-13 16:21:26 +0000418 self = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (!self) {
Joe Perches6c910232014-11-11 13:37:30 -0800420 net_warn_ratelimited("%s: lost myself!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return;
422 }
423
424 /* Pass parameter to the caller */
425 self->cachedaddr = discovery->daddr;
426
427 /* Wake up process if its waiting for device to be discovered */
428 wake_up_interruptible(&self->query_wait);
429}
430
431/*
432 * Function irda_discovery_timeout (priv)
433 *
434 * Timeout in the selective discovery process
435 *
436 * We were waiting for a node to be discovered, but nothing has come up
437 * so far. Wake up the user and tell him that we failed...
438 */
439static void irda_discovery_timeout(u_long priv)
440{
441 struct irda_sock *self;
442
Harvey Harrison0dc47872008-03-05 20:47:47 -0800443 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 self = (struct irda_sock *) priv;
Samuel Ortizc3ea9fa2007-04-20 22:10:13 -0700446 BUG_ON(self == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 /* Nothing for the caller */
449 self->cachelog = NULL;
450 self->cachedaddr = 0;
451 self->errno = -ETIME;
452
453 /* Wake up process if its still waiting... */
454 wake_up_interruptible(&self->query_wait);
455}
456
457/*
458 * Function irda_open_tsap (self)
459 *
460 * Open local Transport Service Access Point (TSAP)
461 *
462 */
463static int irda_open_tsap(struct irda_sock *self, __u8 tsap_sel, char *name)
464{
465 notify_t notify;
466
467 if (self->tsap) {
Dave Jones09689582012-10-04 03:36:13 +0000468 IRDA_DEBUG(0, "%s: busy!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return -EBUSY;
470 }
471
472 /* Initialize callbacks to be used by the IrDA stack */
473 irda_notify_init(&notify);
474 notify.connect_confirm = irda_connect_confirm;
475 notify.connect_indication = irda_connect_indication;
476 notify.disconnect_indication = irda_disconnect_indication;
477 notify.data_indication = irda_data_indication;
478 notify.udata_indication = irda_data_indication;
479 notify.flow_indication = irda_flow_indication;
480 notify.instance = self;
481 strncpy(notify.name, name, NOTIFY_MAX_NAME);
482
483 self->tsap = irttp_open_tsap(tsap_sel, DEFAULT_INITIAL_CREDIT,
484 &notify);
485 if (self->tsap == NULL) {
486 IRDA_DEBUG(0, "%s(), Unable to allocate TSAP!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800487 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return -ENOMEM;
489 }
490 /* Remember which TSAP selector we actually got */
491 self->stsap_sel = self->tsap->stsap_sel;
492
493 return 0;
494}
495
496/*
497 * Function irda_open_lsap (self)
498 *
499 * Open local Link Service Access Point (LSAP). Used for opening Ultra
500 * sockets
501 */
502#ifdef CONFIG_IRDA_ULTRA
503static int irda_open_lsap(struct irda_sock *self, int pid)
504{
505 notify_t notify;
506
507 if (self->lsap) {
Joe Perches6c910232014-11-11 13:37:30 -0800508 net_warn_ratelimited("%s(), busy!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return -EBUSY;
510 }
511
512 /* Initialize callbacks to be used by the IrDA stack */
513 irda_notify_init(&notify);
514 notify.udata_indication = irda_data_indication;
515 notify.instance = self;
516 strncpy(notify.name, "Ultra", NOTIFY_MAX_NAME);
517
518 self->lsap = irlmp_open_lsap(LSAP_CONNLESS, &notify, pid);
519 if (self->lsap == NULL) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800520 IRDA_DEBUG( 0, "%s(), Unable to allocate LSAP!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return -ENOMEM;
522 }
523
524 return 0;
525}
526#endif /* CONFIG_IRDA_ULTRA */
527
528/*
529 * Function irda_find_lsap_sel (self, name)
530 *
531 * Try to lookup LSAP selector in remote LM-IAS
532 *
533 * Basically, we start a IAP query, and then go to sleep. When the query
534 * return, irda_getvalue_confirm will wake us up, and we can examine the
535 * result of the query...
536 * Note that in some case, the query fail even before we go to sleep,
537 * creating some races...
538 */
539static int irda_find_lsap_sel(struct irda_sock *self, char *name)
540{
Harvey Harrison0dc47872008-03-05 20:47:47 -0800541 IRDA_DEBUG(2, "%s(%p, %s)\n", __func__, self, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (self->iriap) {
Joe Perches6c910232014-11-11 13:37:30 -0800544 net_warn_ratelimited("%s(): busy with a previous query\n",
545 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return -EBUSY;
547 }
548
549 self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
550 irda_getvalue_confirm);
551 if(self->iriap == NULL)
552 return -ENOMEM;
553
554 /* Treat unexpected wakeup as disconnect */
555 self->errno = -EHOSTUNREACH;
556
557 /* Query remote LM-IAS */
558 iriap_getvaluebyclass_request(self->iriap, self->saddr, self->daddr,
559 name, "IrDA:TinyTP:LsapSel");
560
561 /* Wait for answer, if not yet finished (or failed) */
562 if (wait_event_interruptible(self->query_wait, (self->iriap==NULL)))
563 /* Treat signals as disconnect */
564 return -EHOSTUNREACH;
565
566 /* Check what happened */
567 if (self->errno)
568 {
569 /* Requested object/attribute doesn't exist */
570 if((self->errno == IAS_CLASS_UNKNOWN) ||
571 (self->errno == IAS_ATTRIB_UNKNOWN))
Eric Dumazeta02cec22010-09-22 20:43:57 +0000572 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 else
Eric Dumazeta02cec22010-09-22 20:43:57 +0000574 return -EHOSTUNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576
577 /* Get the remote TSAP selector */
578 switch (self->ias_result->type) {
579 case IAS_INTEGER:
580 IRDA_DEBUG(4, "%s() int=%d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800581 __func__, self->ias_result->t.integer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 if (self->ias_result->t.integer != -1)
584 self->dtsap_sel = self->ias_result->t.integer;
585 else
586 self->dtsap_sel = 0;
587 break;
588 default:
589 self->dtsap_sel = 0;
Harvey Harrison0dc47872008-03-05 20:47:47 -0800590 IRDA_DEBUG(0, "%s(), bad type!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 break;
592 }
593 if (self->ias_result)
594 irias_delete_value(self->ias_result);
595
596 if (self->dtsap_sel)
597 return 0;
598
599 return -EADDRNOTAVAIL;
600}
601
602/*
603 * Function irda_discover_daddr_and_lsap_sel (self, name)
604 *
605 * This try to find a device with the requested service.
606 *
607 * It basically look into the discovery log. For each address in the list,
608 * it queries the LM-IAS of the device to find if this device offer
609 * the requested service.
610 * If there is more than one node supporting the service, we complain
611 * to the user (it should move devices around).
612 * The, we set both the destination address and the lsap selector to point
613 * on the service on the unique device we have found.
614 *
615 * Note : this function fails if there is more than one device in range,
616 * because IrLMP doesn't disconnect the LAP when the last LSAP is closed.
617 * Moreover, we would need to wait the LAP disconnection...
618 */
619static int irda_discover_daddr_and_lsap_sel(struct irda_sock *self, char *name)
620{
621 discinfo_t *discoveries; /* Copy of the discovery log */
622 int number; /* Number of nodes in the log */
623 int i;
624 int err = -ENETUNREACH;
625 __u32 daddr = DEV_ADDR_ANY; /* Address we found the service on */
626 __u8 dtsap_sel = 0x0; /* TSAP associated with it */
627
Harvey Harrison0dc47872008-03-05 20:47:47 -0800628 IRDA_DEBUG(2, "%s(), name=%s\n", __func__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 /* Ask lmp for the current discovery log
631 * Note : we have to use irlmp_get_discoveries(), as opposed
632 * to play with the cachelog directly, because while we are
633 * making our ias query, le log might change... */
634 discoveries = irlmp_get_discoveries(&number, self->mask.word,
635 self->nslots);
636 /* Check if the we got some results */
637 if (discoveries == NULL)
638 return -ENETUNREACH; /* No nodes discovered */
639
640 /*
641 * Now, check all discovered devices (if any), and connect
642 * client only about the services that the client is
643 * interested in...
644 */
645 for(i = 0; i < number; i++) {
646 /* Try the address in the log */
647 self->daddr = discoveries[i].daddr;
648 self->saddr = 0x0;
649 IRDA_DEBUG(1, "%s(), trying daddr = %08x\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800650 __func__, self->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 /* Query remote LM-IAS for this service */
653 err = irda_find_lsap_sel(self, name);
654 switch (err) {
655 case 0:
656 /* We found the requested service */
657 if(daddr != DEV_ADDR_ANY) {
658 IRDA_DEBUG(1, "%s(), discovered service ''%s'' in two different devices !!!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800659 __func__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 self->daddr = DEV_ADDR_ANY;
661 kfree(discoveries);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000662 return -ENOTUNIQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664 /* First time we found that one, save it ! */
665 daddr = self->daddr;
666 dtsap_sel = self->dtsap_sel;
667 break;
668 case -EADDRNOTAVAIL:
669 /* Requested service simply doesn't exist on this node */
670 break;
671 default:
672 /* Something bad did happen :-( */
Harvey Harrison0dc47872008-03-05 20:47:47 -0800673 IRDA_DEBUG(0, "%s(), unexpected IAS query failure\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 self->daddr = DEV_ADDR_ANY;
675 kfree(discoveries);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000676 return -EHOSTUNREACH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678 }
679 /* Cleanup our copy of the discovery log */
680 kfree(discoveries);
681
682 /* Check out what we found */
683 if(daddr == DEV_ADDR_ANY) {
684 IRDA_DEBUG(1, "%s(), cannot discover service ''%s'' in any device !!!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800685 __func__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 self->daddr = DEV_ADDR_ANY;
Eric Dumazeta02cec22010-09-22 20:43:57 +0000687 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
689
690 /* Revert back to discovered device & service */
691 self->daddr = daddr;
692 self->saddr = 0x0;
693 self->dtsap_sel = dtsap_sel;
694
695 IRDA_DEBUG(1, "%s(), discovered requested service ''%s'' at address %08x\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800696 __func__, name, self->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 return 0;
699}
700
701/*
702 * Function irda_getname (sock, uaddr, uaddr_len, peer)
703 *
704 * Return the our own, or peers socket address (sockaddr_irda)
705 *
706 */
707static int irda_getname(struct socket *sock, struct sockaddr *uaddr,
708 int *uaddr_len, int peer)
709{
710 struct sockaddr_irda saddr;
711 struct sock *sk = sock->sk;
712 struct irda_sock *self = irda_sk(sk);
713
Eric Dumazet09384df2009-08-06 03:55:04 +0000714 memset(&saddr, 0, sizeof(saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (peer) {
716 if (sk->sk_state != TCP_ESTABLISHED)
Samuel Ortiz5b409642010-10-11 00:46:51 +0200717 return -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 saddr.sir_family = AF_IRDA;
720 saddr.sir_lsap_sel = self->dtsap_sel;
721 saddr.sir_addr = self->daddr;
722 } else {
723 saddr.sir_family = AF_IRDA;
724 saddr.sir_lsap_sel = self->stsap_sel;
725 saddr.sir_addr = self->saddr;
726 }
727
Harvey Harrison0dc47872008-03-05 20:47:47 -0800728 IRDA_DEBUG(1, "%s(), tsap_sel = %#x\n", __func__, saddr.sir_lsap_sel);
729 IRDA_DEBUG(1, "%s(), addr = %08x\n", __func__, saddr.sir_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 /* uaddr_len come to us uninitialised */
732 *uaddr_len = sizeof (struct sockaddr_irda);
733 memcpy(uaddr, &saddr, *uaddr_len);
Samuel Ortiz5b409642010-10-11 00:46:51 +0200734
735 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
738/*
739 * Function irda_listen (sock, backlog)
740 *
741 * Just move to the listen state
742 *
743 */
744static int irda_listen(struct socket *sock, int backlog)
745{
746 struct sock *sk = sock->sk;
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800747 int err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Harvey Harrison0dc47872008-03-05 20:47:47 -0800749 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Samuel Ortiz5b409642010-10-11 00:46:51 +0200751 lock_sock(sk);
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if ((sk->sk_type != SOCK_STREAM) && (sk->sk_type != SOCK_SEQPACKET) &&
754 (sk->sk_type != SOCK_DGRAM))
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800755 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 if (sk->sk_state != TCP_LISTEN) {
758 sk->sk_max_ack_backlog = backlog;
759 sk->sk_state = TCP_LISTEN;
760
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800761 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800763out:
Samuel Ortiz5b409642010-10-11 00:46:51 +0200764 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800766 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
769/*
770 * Function irda_bind (sock, uaddr, addr_len)
771 *
772 * Used by servers to register their well known TSAP
773 *
774 */
775static int irda_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
776{
777 struct sock *sk = sock->sk;
778 struct sockaddr_irda *addr = (struct sockaddr_irda *) uaddr;
779 struct irda_sock *self = irda_sk(sk);
780 int err;
781
Harvey Harrison0dc47872008-03-05 20:47:47 -0800782 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 if (addr_len != sizeof(struct sockaddr_irda))
785 return -EINVAL;
786
Samuel Ortiz5b409642010-10-11 00:46:51 +0200787 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788#ifdef CONFIG_IRDA_ULTRA
789 /* Special care for Ultra sockets */
790 if ((sk->sk_type == SOCK_DGRAM) &&
791 (sk->sk_protocol == IRDAPROTO_ULTRA)) {
792 self->pid = addr->sir_lsap_sel;
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800793 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (self->pid & 0x80) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800795 IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__);
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800796 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798 err = irda_open_lsap(self, self->pid);
799 if (err < 0)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800800 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 /* Pretend we are connected */
803 sock->state = SS_CONNECTED;
804 sk->sk_state = TCP_ESTABLISHED;
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800805 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800807 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
809#endif /* CONFIG_IRDA_ULTRA */
810
Jesper Juhl61e44b42008-01-20 16:58:04 -0800811 self->ias_obj = irias_new_object(addr->sir_name, jiffies);
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800812 err = -ENOMEM;
Jesper Juhl61e44b42008-01-20 16:58:04 -0800813 if (self->ias_obj == NULL)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800814 goto out;
Jesper Juhl61e44b42008-01-20 16:58:04 -0800815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 err = irda_open_tsap(self, addr->sir_lsap_sel, addr->sir_name);
Jesper Juhl61e44b42008-01-20 16:58:04 -0800817 if (err < 0) {
David S. Miller628e3002010-08-30 18:35:24 -0700818 irias_delete_object(self->ias_obj);
819 self->ias_obj = NULL;
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800820 goto out;
Jesper Juhl61e44b42008-01-20 16:58:04 -0800821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 /* Register with LM-IAS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 irias_add_integer_attrib(self->ias_obj, "IrDA:TinyTP:LsapSel",
825 self->stsap_sel, IAS_KERNEL_ATTR);
826 irias_insert_object(self->ias_obj);
827
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800828 err = 0;
829out:
Samuel Ortiz5b409642010-10-11 00:46:51 +0200830 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800831 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834/*
835 * Function irda_accept (sock, newsock, flags)
836 *
837 * Wait for incoming connection
838 *
839 */
840static int irda_accept(struct socket *sock, struct socket *newsock, int flags)
841{
842 struct sock *sk = sock->sk;
843 struct irda_sock *new, *self = irda_sk(sk);
844 struct sock *newsk;
845 struct sk_buff *skb;
846 int err;
847
Harvey Harrison0dc47872008-03-05 20:47:47 -0800848 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Eric Paris3f378b62009-11-05 22:18:14 -0800850 err = irda_create(sock_net(sk), newsock, sk->sk_protocol, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (err)
Samuel Ortiz5b409642010-10-11 00:46:51 +0200852 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800854 err = -EINVAL;
Samuel Ortiz5b409642010-10-11 00:46:51 +0200855
856 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (sock->state != SS_UNCONNECTED)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800858 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 if ((sk = sock->sk) == NULL)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800861 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800863 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if ((sk->sk_type != SOCK_STREAM) && (sk->sk_type != SOCK_SEQPACKET) &&
865 (sk->sk_type != SOCK_DGRAM))
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800866 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800868 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (sk->sk_state != TCP_LISTEN)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800870 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 /*
873 * The read queue this time is holding sockets ready to use
874 * hooked into the SABM we saved
875 */
876
877 /*
878 * We can perform the accept only if there is incoming data
879 * on the listening socket.
880 * So, we will block the caller until we receive any data.
881 * If the caller was waiting on select() or poll() before
882 * calling us, the data is waiting for us ;-)
883 * Jean II
884 */
Samuel Ortizd7f48d12007-04-20 22:09:33 -0700885 while (1) {
886 skb = skb_dequeue(&sk->sk_receive_queue);
887 if (skb)
888 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 /* Non blocking operation */
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800891 err = -EWOULDBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (flags & O_NONBLOCK)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800893 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Eric Dumazetaa395142010-04-20 13:03:51 +0000895 err = wait_event_interruptible(*(sk_sleep(sk)),
Samuel Ortizd7f48d12007-04-20 22:09:33 -0700896 skb_peek(&sk->sk_receive_queue));
897 if (err)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800898 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
900
901 newsk = newsock->sk;
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800902 err = -EIO;
Samuel Ortizc3ea9fa2007-04-20 22:10:13 -0700903 if (newsk == NULL)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800904 goto out;
Samuel Ortizc3ea9fa2007-04-20 22:10:13 -0700905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 newsk->sk_state = TCP_ESTABLISHED;
907
908 new = irda_sk(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 /* Now attach up the new socket */
911 new->tsap = irttp_dup(self->tsap, new);
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800912 err = -EPERM; /* value does not seem to make sense. -arnd */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 if (!new->tsap) {
Harvey Harrison0dc47872008-03-05 20:47:47 -0800914 IRDA_DEBUG(0, "%s(), dup failed!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 kfree_skb(skb);
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800916 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
918
919 new->stsap_sel = new->tsap->stsap_sel;
920 new->dtsap_sel = new->tsap->dtsap_sel;
921 new->saddr = irttp_get_saddr(new->tsap);
922 new->daddr = irttp_get_daddr(new->tsap);
923
924 new->max_sdu_size_tx = self->max_sdu_size_tx;
925 new->max_sdu_size_rx = self->max_sdu_size_rx;
926 new->max_data_size = self->max_data_size;
927 new->max_header_size = self->max_header_size;
928
929 memcpy(&new->qos_tx, &self->qos_tx, sizeof(struct qos_info));
930
931 /* Clean up the original one to keep it in listen state */
932 irttp_listen(self->tsap);
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 kfree_skb(skb);
935 sk->sk_ack_backlog--;
936
937 newsock->state = SS_CONNECTED;
938
939 irda_connect_response(new);
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800940 err = 0;
941out:
Samuel Ortiz5b409642010-10-11 00:46:51 +0200942 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800943 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
946/*
947 * Function irda_connect (sock, uaddr, addr_len, flags)
948 *
949 * Connect to a IrDA device
950 *
951 * The main difference with a "standard" connect is that with IrDA we need
952 * to resolve the service name into a TSAP selector (in TCP, port number
953 * doesn't have to be resolved).
Masanari Iidaad8c9452012-07-13 07:22:47 +0000954 * Because of this service name resolution, we can offer "auto-connect",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 * where we connect to a service without specifying a destination address.
956 *
957 * Note : by consulting "errno", the user space caller may learn the cause
958 * of the failure. Most of them are visible in the function, others may come
959 * from subroutines called and are listed here :
960 * o EBUSY : already processing a connect
961 * o EHOSTUNREACH : bad addr->sir_addr argument
962 * o EADDRNOTAVAIL : bad addr->sir_name argument
963 * o ENOTUNIQ : more than one node has addr->sir_name (auto-connect)
964 * o ENETUNREACH : no node found on the network (auto-connect)
965 */
966static int irda_connect(struct socket *sock, struct sockaddr *uaddr,
967 int addr_len, int flags)
968{
969 struct sock *sk = sock->sk;
970 struct sockaddr_irda *addr = (struct sockaddr_irda *) uaddr;
971 struct irda_sock *self = irda_sk(sk);
972 int err;
973
Harvey Harrison0dc47872008-03-05 20:47:47 -0800974 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Samuel Ortiz5b409642010-10-11 00:46:51 +0200976 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 /* Don't allow connect for Ultra sockets */
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800978 err = -ESOCKTNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if ((sk->sk_type == SOCK_DGRAM) && (sk->sk_protocol == IRDAPROTO_ULTRA))
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800980 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 if (sk->sk_state == TCP_ESTABLISHED && sock->state == SS_CONNECTING) {
983 sock->state = SS_CONNECTED;
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800984 err = 0;
985 goto out; /* Connect completed during a ERESTARTSYS event */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987
988 if (sk->sk_state == TCP_CLOSE && sock->state == SS_CONNECTING) {
989 sock->state = SS_UNCONNECTED;
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800990 err = -ECONNREFUSED;
991 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
993
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800994 err = -EISCONN; /* No reconnect on a seqpacket socket */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (sk->sk_state == TCP_ESTABLISHED)
Arnd Bergmann58a9d732009-11-06 00:38:01 -0800996 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 sk->sk_state = TCP_CLOSE;
999 sock->state = SS_UNCONNECTED;
1000
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001001 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (addr_len != sizeof(struct sockaddr_irda))
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001003 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 /* Check if user supplied any destination device address */
1006 if ((!addr->sir_addr) || (addr->sir_addr == DEV_ADDR_ANY)) {
1007 /* Try to find one suitable */
1008 err = irda_discover_daddr_and_lsap_sel(self, addr->sir_name);
1009 if (err) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001010 IRDA_DEBUG(0, "%s(), auto-connect failed!\n", __func__);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001011 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
1013 } else {
1014 /* Use the one provided by the user */
1015 self->daddr = addr->sir_addr;
Harvey Harrison0dc47872008-03-05 20:47:47 -08001016 IRDA_DEBUG(1, "%s(), daddr = %08x\n", __func__, self->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 /* If we don't have a valid service name, we assume the
1019 * user want to connect on a specific LSAP. Prevent
1020 * the use of invalid LSAPs (IrLMP 1.1 p10). Jean II */
1021 if((addr->sir_name[0] != '\0') ||
1022 (addr->sir_lsap_sel >= 0x70)) {
1023 /* Query remote LM-IAS using service name */
1024 err = irda_find_lsap_sel(self, addr->sir_name);
1025 if (err) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001026 IRDA_DEBUG(0, "%s(), connect failed!\n", __func__);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001027 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
1029 } else {
1030 /* Directly connect to the remote LSAP
1031 * specified by the sir_lsap field.
1032 * Please use with caution, in IrDA LSAPs are
1033 * dynamic and there is no "well-known" LSAP. */
1034 self->dtsap_sel = addr->sir_lsap_sel;
1035 }
1036 }
1037
1038 /* Check if we have opened a local TSAP */
1039 if (!self->tsap)
1040 irda_open_tsap(self, LSAP_ANY, addr->sir_name);
1041
1042 /* Move to connecting socket, start sending Connect Requests */
1043 sock->state = SS_CONNECTING;
1044 sk->sk_state = TCP_SYN_SENT;
1045
1046 /* Connect to remote device */
1047 err = irttp_connect_request(self->tsap, self->dtsap_sel,
1048 self->saddr, self->daddr, NULL,
1049 self->max_sdu_size_rx, NULL);
1050 if (err) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001051 IRDA_DEBUG(0, "%s(), connect failed!\n", __func__);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001052 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054
1055 /* Now the loop */
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001056 err = -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (sk->sk_state != TCP_ESTABLISHED && (flags & O_NONBLOCK))
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001058 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001060 err = -ERESTARTSYS;
Eric Dumazetaa395142010-04-20 13:03:51 +00001061 if (wait_event_interruptible(*(sk_sleep(sk)),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 (sk->sk_state != TCP_SYN_SENT)))
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001063 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 if (sk->sk_state != TCP_ESTABLISHED) {
1066 sock->state = SS_UNCONNECTED;
Samuel Ortiz5b409642010-10-11 00:46:51 +02001067 if (sk->sk_prot->disconnect(sk, flags))
1068 sock->state = SS_DISCONNECTING;
Olaf Kirch6e66aa12007-04-20 22:08:15 -07001069 err = sock_error(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001070 if (!err)
1071 err = -ECONNRESET;
1072 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
1074
1075 sock->state = SS_CONNECTED;
1076
1077 /* At this point, IrLMP has assigned our source address */
1078 self->saddr = irttp_get_saddr(self->tsap);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001079 err = 0;
1080out:
Samuel Ortiz5b409642010-10-11 00:46:51 +02001081 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001082 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
1085static struct proto irda_proto = {
1086 .name = "IRDA",
1087 .owner = THIS_MODULE,
1088 .obj_size = sizeof(struct irda_sock),
1089};
1090
1091/*
1092 * Function irda_create (sock, protocol)
1093 *
1094 * Create IrDA socket
1095 *
1096 */
Eric Paris3f378b62009-11-05 22:18:14 -08001097static int irda_create(struct net *net, struct socket *sock, int protocol,
1098 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
1100 struct sock *sk;
1101 struct irda_sock *self;
1102
Harvey Harrison0dc47872008-03-05 20:47:47 -08001103 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -07001105 if (net != &init_net)
1106 return -EAFNOSUPPORT;
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 /* Check for valid socket type */
1109 switch (sock->type) {
1110 case SOCK_STREAM: /* For TTP connections with SAR disabled */
1111 case SOCK_SEQPACKET: /* For TTP connections with SAR enabled */
1112 case SOCK_DGRAM: /* For TTP Unitdata or LMP Ultra transfers */
1113 break;
1114 default:
1115 return -ESOCKTNOSUPPORT;
1116 }
1117
1118 /* Allocate networking socket */
Mathias Krause84e23062013-04-05 10:41:27 +00001119 sk = sk_alloc(net, PF_IRDA, GFP_KERNEL, &irda_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (sk == NULL)
1121 return -ENOMEM;
1122
1123 self = irda_sk(sk);
Harvey Harrison0dc47872008-03-05 20:47:47 -08001124 IRDA_DEBUG(2, "%s() : self is %p\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 init_waitqueue_head(&self->query_wait);
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 switch (sock->type) {
1129 case SOCK_STREAM:
1130 sock->ops = &irda_stream_ops;
1131 self->max_sdu_size_rx = TTP_SAR_DISABLE;
1132 break;
1133 case SOCK_SEQPACKET:
1134 sock->ops = &irda_seqpacket_ops;
1135 self->max_sdu_size_rx = TTP_SAR_UNBOUND;
1136 break;
1137 case SOCK_DGRAM:
1138 switch (protocol) {
1139#ifdef CONFIG_IRDA_ULTRA
1140 case IRDAPROTO_ULTRA:
1141 sock->ops = &irda_ultra_ops;
1142 /* Initialise now, because we may send on unbound
1143 * sockets. Jean II */
1144 self->max_data_size = ULTRA_MAX_DATA - LMP_PID_HEADER;
1145 self->max_header_size = IRDA_MAX_HEADER + LMP_PID_HEADER;
1146 break;
1147#endif /* CONFIG_IRDA_ULTRA */
1148 case IRDAPROTO_UNITDATA:
1149 sock->ops = &irda_dgram_ops;
1150 /* We let Unitdata conn. be like seqpack conn. */
1151 self->max_sdu_size_rx = TTP_SAR_UNBOUND;
1152 break;
1153 default:
Pavel Emelyanov9ecad872008-06-03 15:18:36 -07001154 sk_free(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 return -ESOCKTNOSUPPORT;
1156 }
1157 break;
1158 default:
Pavel Emelyanov9ecad872008-06-03 15:18:36 -07001159 sk_free(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 return -ESOCKTNOSUPPORT;
1161 }
1162
Pavel Emelyanov9ecad872008-06-03 15:18:36 -07001163 /* Initialise networking socket struct */
1164 sock_init_data(sock, sk); /* Note : set sk->sk_refcnt to 1 */
1165 sk->sk_family = PF_IRDA;
1166 sk->sk_protocol = protocol;
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 /* Register as a client with IrLMP */
1169 self->ckey = irlmp_register_client(0, NULL, NULL, NULL);
1170 self->mask.word = 0xffff;
1171 self->rx_flow = self->tx_flow = FLOW_START;
1172 self->nslots = DISCOVERY_DEFAULT_SLOTS;
1173 self->daddr = DEV_ADDR_ANY; /* Until we get connected */
1174 self->saddr = 0x0; /* so IrLMP assign us any link */
1175 return 0;
1176}
1177
1178/*
1179 * Function irda_destroy_socket (self)
1180 *
1181 * Destroy socket
1182 *
1183 */
1184static void irda_destroy_socket(struct irda_sock *self)
1185{
Harvey Harrison0dc47872008-03-05 20:47:47 -08001186 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 /* Unregister with IrLMP */
1189 irlmp_unregister_client(self->ckey);
1190 irlmp_unregister_service(self->skey);
1191
1192 /* Unregister with LM-IAS */
1193 if (self->ias_obj) {
1194 irias_delete_object(self->ias_obj);
1195 self->ias_obj = NULL;
1196 }
1197
1198 if (self->iriap) {
1199 iriap_close(self->iriap);
1200 self->iriap = NULL;
1201 }
1202
1203 if (self->tsap) {
1204 irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
1205 irttp_close_tsap(self->tsap);
1206 self->tsap = NULL;
1207 }
1208#ifdef CONFIG_IRDA_ULTRA
1209 if (self->lsap) {
1210 irlmp_close_lsap(self->lsap);
1211 self->lsap = NULL;
1212 }
1213#endif /* CONFIG_IRDA_ULTRA */
1214}
1215
1216/*
1217 * Function irda_release (sock)
1218 */
1219static int irda_release(struct socket *sock)
1220{
1221 struct sock *sk = sock->sk;
1222
Harvey Harrison0dc47872008-03-05 20:47:47 -08001223 IRDA_DEBUG(2, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001225 if (sk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 return 0;
1227
Samuel Ortizda349f12006-09-27 20:05:38 -07001228 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 sk->sk_state = TCP_CLOSE;
1230 sk->sk_shutdown |= SEND_SHUTDOWN;
1231 sk->sk_state_change(sk);
1232
1233 /* Destroy IrDA socket */
1234 irda_destroy_socket(irda_sk(sk));
1235
1236 sock_orphan(sk);
1237 sock->sk = NULL;
Samuel Ortizda349f12006-09-27 20:05:38 -07001238 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
1240 /* Purge queues (see sock_init_data()) */
1241 skb_queue_purge(&sk->sk_receive_queue);
1242
1243 /* Destroy networking socket if we are the last reference on it,
1244 * i.e. if(sk->sk_refcnt == 0) -> sk_free(sk) */
1245 sock_put(sk);
1246
1247 /* Notes on socket locking and deallocation... - Jean II
1248 * In theory we should put pairs of sock_hold() / sock_put() to
1249 * prevent the socket to be destroyed whenever there is an
1250 * outstanding request or outstanding incoming packet or event.
1251 *
1252 * 1) This may include IAS request, both in connect and getsockopt.
1253 * Unfortunately, the situation is a bit more messy than it looks,
1254 * because we close iriap and kfree(self) above.
1255 *
1256 * 2) This may include selective discovery in getsockopt.
1257 * Same stuff as above, irlmp registration and self are gone.
1258 *
1259 * Probably 1 and 2 may not matter, because it's all triggered
1260 * by a process and the socket layer already prevent the
1261 * socket to go away while a process is holding it, through
1262 * sockfd_put() and fput()...
1263 *
1264 * 3) This may include deferred TSAP closure. In particular,
1265 * we may receive a late irda_disconnect_indication()
1266 * Fortunately, (tsap_cb *)->close_pend should protect us
1267 * from that.
1268 *
1269 * I did some testing on SMP, and it looks solid. And the socket
1270 * memory leak is now gone... - Jean II
1271 */
1272
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001273 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
1276/*
1277 * Function irda_sendmsg (iocb, sock, msg, len)
1278 *
1279 * Send message down to TinyTP. This function is used for both STREAM and
1280 * SEQPACK services. This is possible since it forces the client to
1281 * fragment the message if necessary
1282 */
1283static int irda_sendmsg(struct kiocb *iocb, struct socket *sock,
1284 struct msghdr *msg, size_t len)
1285{
1286 struct sock *sk = sock->sk;
1287 struct irda_sock *self;
1288 struct sk_buff *skb;
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001289 int err = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Harvey Harrison0dc47872008-03-05 20:47:47 -08001291 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 /* Note : socket.c set MSG_EOR on SEQPACKET sockets */
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001294 if (msg->msg_flags & ~(MSG_DONTWAIT | MSG_EOR | MSG_CMSG_COMPAT |
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001295 MSG_NOSIGNAL)) {
Dave Jones020318d02011-04-12 15:29:54 -07001296 return -EINVAL;
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Samuel Ortiz5b409642010-10-11 00:46:51 +02001299 lock_sock(sk);
1300
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001301 if (sk->sk_shutdown & SEND_SHUTDOWN)
1302 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001304 if (sk->sk_state != TCP_ESTABLISHED) {
1305 err = -ENOTCONN;
1306 goto out;
1307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 self = irda_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 /* Check if IrTTP is wants us to slow down */
1312
Eric Dumazetaa395142010-04-20 13:03:51 +00001313 if (wait_event_interruptible(*(sk_sleep(sk)),
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001314 (self->tx_flow != FLOW_STOP || sk->sk_state != TCP_ESTABLISHED))) {
1315 err = -ERESTARTSYS;
1316 goto out;
1317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
1319 /* Check if we are still connected */
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001320 if (sk->sk_state != TCP_ESTABLISHED) {
1321 err = -ENOTCONN;
1322 goto out;
1323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08001325 /* Check that we don't send out too big frames */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if (len > self->max_data_size) {
1327 IRDA_DEBUG(2, "%s(), Chopping frame from %zd to %d bytes!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001328 __func__, len, self->max_data_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 len = self->max_data_size;
1330 }
1331
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001332 skb = sock_alloc_send_skb(sk, len + self->max_header_size + 16,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 msg->msg_flags & MSG_DONTWAIT, &err);
1334 if (!skb)
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001335 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 skb_reserve(skb, self->max_header_size + 16);
Arnaldo Carvalho de Meloeeeb0372007-03-14 21:04:34 -03001338 skb_reset_transport_header(skb);
1339 skb_put(skb, len);
1340 err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 if (err) {
1342 kfree_skb(skb);
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001343 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
1345
1346 /*
1347 * Just send the message to TinyTP, and let it deal with possible
1348 * errors. No need to duplicate all that here
1349 */
1350 err = irttp_data_request(self->tsap, skb);
1351 if (err) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001352 IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001353 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 }
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001355
Samuel Ortiz5b409642010-10-11 00:46:51 +02001356 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 /* Tell client how much data we actually sent */
1358 return len;
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001359
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001360out_err:
1361 err = sk_stream_error(sk, msg->msg_flags, err);
1362out:
Samuel Ortiz5b409642010-10-11 00:46:51 +02001363 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001364 return err;
Samuel Ortizbcb5e0e2007-08-28 15:57:12 -07001365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366}
1367
1368/*
1369 * Function irda_recvmsg_dgram (iocb, sock, msg, size, flags)
1370 *
1371 * Try to receive message and copy it to user. The frame is discarded
1372 * after being read, regardless of how much the user actually read
1373 */
1374static int irda_recvmsg_dgram(struct kiocb *iocb, struct socket *sock,
1375 struct msghdr *msg, size_t size, int flags)
1376{
1377 struct sock *sk = sock->sk;
1378 struct irda_sock *self = irda_sk(sk);
1379 struct sk_buff *skb;
1380 size_t copied;
1381 int err;
1382
Harvey Harrison0dc47872008-03-05 20:47:47 -08001383 IRDA_DEBUG(4, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
1386 flags & MSG_DONTWAIT, &err);
1387 if (!skb)
Samuel Ortiz5b409642010-10-11 00:46:51 +02001388 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001390 skb_reset_transport_header(skb);
1391 copied = skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 if (copied > size) {
1394 IRDA_DEBUG(2, "%s(), Received truncated frame (%zd < %zd)!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001395 __func__, copied, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 copied = size;
1397 msg->msg_flags |= MSG_TRUNC;
1398 }
David S. Miller51f3d022014-11-05 16:46:40 -05001399 skb_copy_datagram_msg(skb, 0, msg, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 skb_free_datagram(sk, skb);
1402
1403 /*
1404 * Check if we have previously stopped IrTTP and we know
1405 * have more free space in our rx_queue. If so tell IrTTP
1406 * to start delivering frames again before our rx_queue gets
1407 * empty
1408 */
1409 if (self->rx_flow == FLOW_STOP) {
1410 if ((atomic_read(&sk->sk_rmem_alloc) << 2) <= sk->sk_rcvbuf) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001411 IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 self->rx_flow = FLOW_START;
1413 irttp_flow_request(self->tsap, FLOW_START);
1414 }
1415 }
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001416
Samuel Ortiz5b409642010-10-11 00:46:51 +02001417 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
1419
1420/*
1421 * Function irda_recvmsg_stream (iocb, sock, msg, size, flags)
1422 */
1423static int irda_recvmsg_stream(struct kiocb *iocb, struct socket *sock,
1424 struct msghdr *msg, size_t size, int flags)
1425{
1426 struct sock *sk = sock->sk;
1427 struct irda_sock *self = irda_sk(sk);
1428 int noblock = flags & MSG_DONTWAIT;
1429 size_t copied = 0;
Olaf Kirch6e66aa12007-04-20 22:08:15 -07001430 int target, err;
Olaf Kirch305f2aa2007-04-20 22:05:27 -07001431 long timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Harvey Harrison0dc47872008-03-05 20:47:47 -08001433 IRDA_DEBUG(3, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Olaf Kirch6e66aa12007-04-20 22:08:15 -07001435 if ((err = sock_error(sk)) < 0)
Samuel Ortiz5b409642010-10-11 00:46:51 +02001436 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 if (sock->flags & __SO_ACCEPTCON)
Samuel Ortiz5b409642010-10-11 00:46:51 +02001439 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001441 err =-EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (flags & MSG_OOB)
Samuel Ortiz5b409642010-10-11 00:46:51 +02001443 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001445 err = 0;
Olaf Kirch305f2aa2007-04-20 22:05:27 -07001446 target = sock_rcvlowat(sk, flags & MSG_WAITALL, size);
1447 timeo = sock_rcvtimeo(sk, noblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 do {
1450 int chunk;
1451 struct sk_buff *skb = skb_dequeue(&sk->sk_receive_queue);
1452
Olaf Kirch305f2aa2007-04-20 22:05:27 -07001453 if (skb == NULL) {
1454 DEFINE_WAIT(wait);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001455 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 if (copied >= target)
1458 break;
1459
Eric Dumazetaa395142010-04-20 13:03:51 +00001460 prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 /*
1463 * POSIX 1003.1g mandates this order.
1464 */
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001465 err = sock_error(sk);
1466 if (err)
Olaf Kirchbfb67092007-04-18 15:07:22 -07001467 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 else if (sk->sk_shutdown & RCV_SHUTDOWN)
1469 ;
1470 else if (noblock)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001471 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 else if (signal_pending(current))
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001473 err = sock_intr_errno(timeo);
Olaf Kirch305f2aa2007-04-20 22:05:27 -07001474 else if (sk->sk_state != TCP_ESTABLISHED)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001475 err = -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 else if (skb_peek(&sk->sk_receive_queue) == NULL)
1477 /* Wait process until data arrives */
1478 schedule();
1479
Eric Dumazetaa395142010-04-20 13:03:51 +00001480 finish_wait(sk_sleep(sk), &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001482 if (err)
Samuel Ortiz5b409642010-10-11 00:46:51 +02001483 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 if (sk->sk_shutdown & RCV_SHUTDOWN)
1485 break;
1486
1487 continue;
1488 }
1489
1490 chunk = min_t(unsigned int, skb->len, size);
1491 if (memcpy_toiovec(msg->msg_iov, skb->data, chunk)) {
1492 skb_queue_head(&sk->sk_receive_queue, skb);
1493 if (copied == 0)
1494 copied = -EFAULT;
1495 break;
1496 }
1497 copied += chunk;
1498 size -= chunk;
1499
1500 /* Mark read part of skb as used */
1501 if (!(flags & MSG_PEEK)) {
1502 skb_pull(skb, chunk);
1503
1504 /* put the skb back if we didn't use it up.. */
1505 if (skb->len) {
1506 IRDA_DEBUG(1, "%s(), back on q!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001507 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 skb_queue_head(&sk->sk_receive_queue, skb);
1509 break;
1510 }
1511
1512 kfree_skb(skb);
1513 } else {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001514 IRDA_DEBUG(0, "%s() questionable!?\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
1516 /* put message back and return */
1517 skb_queue_head(&sk->sk_receive_queue, skb);
1518 break;
1519 }
1520 } while (size);
1521
1522 /*
1523 * Check if we have previously stopped IrTTP and we know
1524 * have more free space in our rx_queue. If so tell IrTTP
1525 * to start delivering frames again before our rx_queue gets
1526 * empty
1527 */
1528 if (self->rx_flow == FLOW_STOP) {
1529 if ((atomic_read(&sk->sk_rmem_alloc) << 2) <= sk->sk_rcvbuf) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001530 IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 self->rx_flow = FLOW_START;
1532 irttp_flow_request(self->tsap, FLOW_START);
1533 }
1534 }
1535
Samuel Ortiz5b409642010-10-11 00:46:51 +02001536 return copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
1539/*
1540 * Function irda_sendmsg_dgram (iocb, sock, msg, len)
1541 *
1542 * Send message down to TinyTP for the unreliable sequenced
1543 * packet service...
1544 *
1545 */
1546static int irda_sendmsg_dgram(struct kiocb *iocb, struct socket *sock,
1547 struct msghdr *msg, size_t len)
1548{
1549 struct sock *sk = sock->sk;
1550 struct irda_sock *self;
1551 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 int err;
1553
Harvey Harrison0dc47872008-03-05 20:47:47 -08001554 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
1556 if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
Samuel Ortiz5b409642010-10-11 00:46:51 +02001557 return -EINVAL;
1558
1559 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 if (sk->sk_shutdown & SEND_SHUTDOWN) {
1562 send_sig(SIGPIPE, current, 0);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001563 err = -EPIPE;
1564 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
1566
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001567 err = -ENOTCONN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 if (sk->sk_state != TCP_ESTABLISHED)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001569 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 self = irda_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573 /*
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08001574 * Check that we don't send out too big frames. This is an unreliable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 * service, so we have no fragmentation and no coalescence
1576 */
1577 if (len > self->max_data_size) {
1578 IRDA_DEBUG(0, "%s(), Warning to much data! "
1579 "Chopping frame from %zd to %d bytes!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001580 __func__, len, self->max_data_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 len = self->max_data_size;
1582 }
1583
1584 skb = sock_alloc_send_skb(sk, len + self->max_header_size,
1585 msg->msg_flags & MSG_DONTWAIT, &err);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001586 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (!skb)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001588 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
1590 skb_reserve(skb, self->max_header_size);
Arnaldo Carvalho de Meloeeeb0372007-03-14 21:04:34 -03001591 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Harvey Harrison0dc47872008-03-05 20:47:47 -08001593 IRDA_DEBUG(4, "%s(), appending user data\n", __func__);
Arnaldo Carvalho de Meloeeeb0372007-03-14 21:04:34 -03001594 skb_put(skb, len);
1595 err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 if (err) {
1597 kfree_skb(skb);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001598 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
1600
1601 /*
1602 * Just send the message to TinyTP, and let it deal with possible
1603 * errors. No need to duplicate all that here
1604 */
1605 err = irttp_udata_request(self->tsap, skb);
1606 if (err) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001607 IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001608 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 }
Samuel Ortiz5b409642010-10-11 00:46:51 +02001610
1611 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 return len;
Samuel Ortiz5b409642010-10-11 00:46:51 +02001613
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001614out:
Samuel Ortiz5b409642010-10-11 00:46:51 +02001615 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001616 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
1619/*
1620 * Function irda_sendmsg_ultra (iocb, sock, msg, len)
1621 *
1622 * Send message down to IrLMP for the unreliable Ultra
1623 * packet service...
1624 */
1625#ifdef CONFIG_IRDA_ULTRA
1626static int irda_sendmsg_ultra(struct kiocb *iocb, struct socket *sock,
1627 struct msghdr *msg, size_t len)
1628{
1629 struct sock *sk = sock->sk;
1630 struct irda_sock *self;
1631 __u8 pid = 0;
1632 int bound = 0;
1633 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 int err;
1635
Harvey Harrison0dc47872008-03-05 20:47:47 -08001636 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001638 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_CMSG_COMPAT))
Samuel Ortiz5b409642010-10-11 00:46:51 +02001640 return -EINVAL;
1641
1642 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001644 err = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (sk->sk_shutdown & SEND_SHUTDOWN) {
1646 send_sig(SIGPIPE, current, 0);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001647 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
1649
1650 self = irda_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 /* Check if an address was specified with sendto. Jean II */
1653 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001654 DECLARE_SOCKADDR(struct sockaddr_irda *, addr, msg->msg_name);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001655 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 /* Check address, extract pid. Jean II */
1657 if (msg->msg_namelen < sizeof(*addr))
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001658 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 if (addr->sir_family != AF_IRDA)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001660 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662 pid = addr->sir_lsap_sel;
1663 if (pid & 0x80) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001664 IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001665 err = -EOPNOTSUPP;
1666 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 }
1668 } else {
1669 /* Check that the socket is properly bound to an Ultra
1670 * port. Jean II */
1671 if ((self->lsap == NULL) ||
1672 (sk->sk_state != TCP_ESTABLISHED)) {
1673 IRDA_DEBUG(0, "%s(), socket not bound to Ultra PID.\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001674 __func__);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001675 err = -ENOTCONN;
1676 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
1678 /* Use PID from socket */
1679 bound = 1;
1680 }
1681
1682 /*
Alexey Dobriyan7f927fc2006-03-28 01:56:53 -08001683 * Check that we don't send out too big frames. This is an unreliable
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 * service, so we have no fragmentation and no coalescence
1685 */
1686 if (len > self->max_data_size) {
1687 IRDA_DEBUG(0, "%s(), Warning to much data! "
1688 "Chopping frame from %zd to %d bytes!\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001689 __func__, len, self->max_data_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 len = self->max_data_size;
1691 }
1692
1693 skb = sock_alloc_send_skb(sk, len + self->max_header_size,
1694 msg->msg_flags & MSG_DONTWAIT, &err);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001695 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 if (!skb)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001697 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699 skb_reserve(skb, self->max_header_size);
Arnaldo Carvalho de Meloeeeb0372007-03-14 21:04:34 -03001700 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Harvey Harrison0dc47872008-03-05 20:47:47 -08001702 IRDA_DEBUG(4, "%s(), appending user data\n", __func__);
Arnaldo Carvalho de Meloeeeb0372007-03-14 21:04:34 -03001703 skb_put(skb, len);
1704 err = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 if (err) {
1706 kfree_skb(skb);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001707 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 }
1709
1710 err = irlmp_connless_data_request((bound ? self->lsap : NULL),
1711 skb, pid);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001712 if (err)
Harvey Harrison0dc47872008-03-05 20:47:47 -08001713 IRDA_DEBUG(0, "%s(), err=%d\n", __func__, err);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001714out:
Samuel Ortiz5b409642010-10-11 00:46:51 +02001715 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001716 return err ? : len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717}
1718#endif /* CONFIG_IRDA_ULTRA */
1719
1720/*
1721 * Function irda_shutdown (sk, how)
1722 */
1723static int irda_shutdown(struct socket *sock, int how)
1724{
1725 struct sock *sk = sock->sk;
1726 struct irda_sock *self = irda_sk(sk);
1727
Harvey Harrison0dc47872008-03-05 20:47:47 -08001728 IRDA_DEBUG(1, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Samuel Ortiz5b409642010-10-11 00:46:51 +02001730 lock_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 sk->sk_state = TCP_CLOSE;
1733 sk->sk_shutdown |= SEND_SHUTDOWN;
1734 sk->sk_state_change(sk);
1735
1736 if (self->iriap) {
1737 iriap_close(self->iriap);
1738 self->iriap = NULL;
1739 }
1740
1741 if (self->tsap) {
1742 irttp_disconnect_request(self->tsap, NULL, P_NORMAL);
1743 irttp_close_tsap(self->tsap);
1744 self->tsap = NULL;
1745 }
1746
1747 /* A few cleanup so the socket look as good as new... */
1748 self->rx_flow = self->tx_flow = FLOW_START; /* needed ??? */
1749 self->daddr = DEV_ADDR_ANY; /* Until we get re-connected */
1750 self->saddr = 0x0; /* so IrLMP assign us any link */
1751
Samuel Ortiz5b409642010-10-11 00:46:51 +02001752 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001753
YOSHIFUJI Hideaki6819bc22007-02-09 23:24:53 +09001754 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755}
1756
1757/*
1758 * Function irda_poll (file, sock, wait)
1759 */
1760static unsigned int irda_poll(struct file * file, struct socket *sock,
1761 poll_table *wait)
1762{
1763 struct sock *sk = sock->sk;
1764 struct irda_sock *self = irda_sk(sk);
1765 unsigned int mask;
1766
Harvey Harrison0dc47872008-03-05 20:47:47 -08001767 IRDA_DEBUG(4, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Eric Dumazetaa395142010-04-20 13:03:51 +00001769 poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 mask = 0;
1771
1772 /* Exceptional events? */
1773 if (sk->sk_err)
1774 mask |= POLLERR;
1775 if (sk->sk_shutdown & RCV_SHUTDOWN) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001776 IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 mask |= POLLHUP;
1778 }
1779
1780 /* Readable? */
1781 if (!skb_queue_empty(&sk->sk_receive_queue)) {
1782 IRDA_DEBUG(4, "Socket is readable\n");
1783 mask |= POLLIN | POLLRDNORM;
1784 }
1785
1786 /* Connection-based need to check for termination and startup */
1787 switch (sk->sk_type) {
1788 case SOCK_STREAM:
1789 if (sk->sk_state == TCP_CLOSE) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08001790 IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 mask |= POLLHUP;
1792 }
1793
1794 if (sk->sk_state == TCP_ESTABLISHED) {
1795 if ((self->tx_flow == FLOW_START) &&
1796 sock_writeable(sk))
1797 {
1798 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1799 }
1800 }
1801 break;
1802 case SOCK_SEQPACKET:
1803 if ((self->tx_flow == FLOW_START) &&
1804 sock_writeable(sk))
1805 {
1806 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1807 }
1808 break;
1809 case SOCK_DGRAM:
1810 if (sock_writeable(sk))
1811 mask |= POLLOUT | POLLWRNORM | POLLWRBAND;
1812 break;
1813 default:
1814 break;
1815 }
Samuel Ortiz5b409642010-10-11 00:46:51 +02001816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return mask;
1818}
1819
1820/*
1821 * Function irda_ioctl (sock, cmd, arg)
1822 */
1823static int irda_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1824{
1825 struct sock *sk = sock->sk;
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001826 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Harvey Harrison0dc47872008-03-05 20:47:47 -08001828 IRDA_DEBUG(4, "%s(), cmd=%#x\n", __func__, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001830 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 switch (cmd) {
1832 case TIOCOUTQ: {
1833 long amount;
Eric Dumazet31e6d362009-06-17 19:05:41 -07001834
1835 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 if (amount < 0)
1837 amount = 0;
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001838 err = put_user(amount, (unsigned int __user *)arg);
1839 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 }
1841
1842 case TIOCINQ: {
1843 struct sk_buff *skb;
1844 long amount = 0L;
1845 /* These two are safe on a single CPU system as only user tasks fiddle here */
1846 if ((skb = skb_peek(&sk->sk_receive_queue)) != NULL)
1847 amount = skb->len;
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001848 err = put_user(amount, (unsigned int __user *)arg);
1849 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 }
1851
1852 case SIOCGSTAMP:
1853 if (sk != NULL)
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001854 err = sock_get_timestamp(sk, (struct timeval __user *)arg);
1855 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
1857 case SIOCGIFADDR:
1858 case SIOCSIFADDR:
1859 case SIOCGIFDSTADDR:
1860 case SIOCSIFDSTADDR:
1861 case SIOCGIFBRDADDR:
1862 case SIOCSIFBRDADDR:
1863 case SIOCGIFNETMASK:
1864 case SIOCSIFNETMASK:
1865 case SIOCGIFMETRIC:
1866 case SIOCSIFMETRIC:
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001867 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 default:
Harvey Harrison0dc47872008-03-05 20:47:47 -08001869 IRDA_DEBUG(1, "%s(), doing device ioctl!\n", __func__);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001870 err = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
1872
Arnd Bergmann58a9d732009-11-06 00:38:01 -08001873 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874}
1875
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08001876#ifdef CONFIG_COMPAT
1877/*
1878 * Function irda_ioctl (sock, cmd, arg)
1879 */
1880static int irda_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1881{
1882 /*
1883 * All IRDA's ioctl are standard ones.
1884 */
1885 return -ENOIOCTLCMD;
1886}
1887#endif
1888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889/*
1890 * Function irda_setsockopt (sock, level, optname, optval, optlen)
1891 *
1892 * Set some options for the socket
1893 *
1894 */
Samuel Ortiz5b409642010-10-11 00:46:51 +02001895static int irda_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001896 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
1898 struct sock *sk = sock->sk;
1899 struct irda_sock *self = irda_sk(sk);
1900 struct irda_ias_set *ias_opt;
1901 struct ias_object *ias_obj;
1902 struct ias_attrib * ias_attr; /* Attribute in IAS object */
Samuel Ortiz5b409642010-10-11 00:46:51 +02001903 int opt, free_ias = 0, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
Harvey Harrison0dc47872008-03-05 20:47:47 -08001905 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
1907 if (level != SOL_IRLMP)
1908 return -ENOPROTOOPT;
1909
Samuel Ortiz5b409642010-10-11 00:46:51 +02001910 lock_sock(sk);
1911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 switch (optname) {
1913 case IRLMP_IAS_SET:
1914 /* The user want to add an attribute to an existing IAS object
1915 * (in the IAS database) or to create a new object with this
1916 * attribute.
1917 * We first query IAS to know if the object exist, and then
1918 * create the right attribute...
1919 */
1920
Samuel Ortiz5b409642010-10-11 00:46:51 +02001921 if (optlen != sizeof(struct irda_ias_set)) {
1922 err = -EINVAL;
1923 goto out;
1924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
Samuel Ortiz5b409642010-10-11 00:46:51 +02001927 if (ias_opt == NULL) {
1928 err = -ENOMEM;
1929 goto out;
1930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 /* Copy query to the driver. */
1933 if (copy_from_user(ias_opt, optval, optlen)) {
1934 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02001935 err = -EFAULT;
1936 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
1938
1939 /* Find the object we target.
1940 * If the user gives us an empty string, we use the object
1941 * associated with this socket. This will workaround
1942 * duplicated class name - Jean II */
1943 if(ias_opt->irda_class_name[0] == '\0') {
1944 if(self->ias_obj == NULL) {
1945 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02001946 err = -EINVAL;
1947 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 }
1949 ias_obj = self->ias_obj;
1950 } else
1951 ias_obj = irias_find_object(ias_opt->irda_class_name);
1952
1953 /* Only ROOT can mess with the global IAS database.
1954 * Users can only add attributes to the object associated
1955 * with the socket they own - Jean II */
1956 if((!capable(CAP_NET_ADMIN)) &&
1957 ((ias_obj == NULL) || (ias_obj != self->ias_obj))) {
1958 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02001959 err = -EPERM;
1960 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 }
1962
1963 /* If the object doesn't exist, create it */
1964 if(ias_obj == (struct ias_object *) NULL) {
1965 /* Create a new object */
1966 ias_obj = irias_new_object(ias_opt->irda_class_name,
1967 jiffies);
Jesper Juhl61e44b42008-01-20 16:58:04 -08001968 if (ias_obj == NULL) {
1969 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02001970 err = -ENOMEM;
1971 goto out;
Jesper Juhl61e44b42008-01-20 16:58:04 -08001972 }
1973 free_ias = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 }
1975
1976 /* Do we have the attribute already ? */
1977 if(irias_find_attrib(ias_obj, ias_opt->irda_attrib_name)) {
1978 kfree(ias_opt);
Jesper Juhl61e44b42008-01-20 16:58:04 -08001979 if (free_ias) {
1980 kfree(ias_obj->name);
1981 kfree(ias_obj);
1982 }
Samuel Ortiz5b409642010-10-11 00:46:51 +02001983 err = -EINVAL;
1984 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 }
1986
1987 /* Look at the type */
1988 switch(ias_opt->irda_attrib_type) {
1989 case IAS_INTEGER:
1990 /* Add an integer attribute */
1991 irias_add_integer_attrib(
1992 ias_obj,
1993 ias_opt->irda_attrib_name,
1994 ias_opt->attribute.irda_attrib_int,
1995 IAS_USER_ATTR);
1996 break;
1997 case IAS_OCT_SEQ:
1998 /* Check length */
1999 if(ias_opt->attribute.irda_attrib_octet_seq.len >
2000 IAS_MAX_OCTET_STRING) {
2001 kfree(ias_opt);
Jesper Juhl61e44b42008-01-20 16:58:04 -08002002 if (free_ias) {
2003 kfree(ias_obj->name);
2004 kfree(ias_obj);
2005 }
2006
Samuel Ortiz5b409642010-10-11 00:46:51 +02002007 err = -EINVAL;
2008 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 }
2010 /* Add an octet sequence attribute */
2011 irias_add_octseq_attrib(
2012 ias_obj,
2013 ias_opt->irda_attrib_name,
2014 ias_opt->attribute.irda_attrib_octet_seq.octet_seq,
2015 ias_opt->attribute.irda_attrib_octet_seq.len,
2016 IAS_USER_ATTR);
2017 break;
2018 case IAS_STRING:
2019 /* Should check charset & co */
2020 /* Check length */
2021 /* The length is encoded in a __u8, and
2022 * IAS_MAX_STRING == 256, so there is no way
2023 * userspace can pass us a string too large.
2024 * Jean II */
2025 /* NULL terminate the string (avoid troubles) */
2026 ias_opt->attribute.irda_attrib_string.string[ias_opt->attribute.irda_attrib_string.len] = '\0';
2027 /* Add a string attribute */
2028 irias_add_string_attrib(
2029 ias_obj,
2030 ias_opt->irda_attrib_name,
2031 ias_opt->attribute.irda_attrib_string.string,
2032 IAS_USER_ATTR);
2033 break;
2034 default :
2035 kfree(ias_opt);
Jesper Juhl61e44b42008-01-20 16:58:04 -08002036 if (free_ias) {
2037 kfree(ias_obj->name);
2038 kfree(ias_obj);
2039 }
Samuel Ortiz5b409642010-10-11 00:46:51 +02002040 err = -EINVAL;
2041 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 }
2043 irias_insert_object(ias_obj);
2044 kfree(ias_opt);
2045 break;
2046 case IRLMP_IAS_DEL:
2047 /* The user want to delete an object from our local IAS
2048 * database. We just need to query the IAS, check is the
2049 * object is not owned by the kernel and delete it.
2050 */
2051
Samuel Ortiz5b409642010-10-11 00:46:51 +02002052 if (optlen != sizeof(struct irda_ias_set)) {
2053 err = -EINVAL;
2054 goto out;
2055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
2057 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002058 if (ias_opt == NULL) {
2059 err = -ENOMEM;
2060 goto out;
2061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
2063 /* Copy query to the driver. */
2064 if (copy_from_user(ias_opt, optval, optlen)) {
2065 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002066 err = -EFAULT;
2067 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 }
2069
2070 /* Find the object we target.
2071 * If the user gives us an empty string, we use the object
2072 * associated with this socket. This will workaround
2073 * duplicated class name - Jean II */
2074 if(ias_opt->irda_class_name[0] == '\0')
2075 ias_obj = self->ias_obj;
2076 else
2077 ias_obj = irias_find_object(ias_opt->irda_class_name);
2078 if(ias_obj == (struct ias_object *) NULL) {
2079 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002080 err = -EINVAL;
2081 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 }
2083
2084 /* Only ROOT can mess with the global IAS database.
2085 * Users can only del attributes from the object associated
2086 * with the socket they own - Jean II */
2087 if((!capable(CAP_NET_ADMIN)) &&
2088 ((ias_obj == NULL) || (ias_obj != self->ias_obj))) {
2089 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002090 err = -EPERM;
2091 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 }
2093
2094 /* Find the attribute (in the object) we target */
2095 ias_attr = irias_find_attrib(ias_obj,
2096 ias_opt->irda_attrib_name);
2097 if(ias_attr == (struct ias_attrib *) NULL) {
2098 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002099 err = -EINVAL;
2100 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 }
2102
2103 /* Check is the user space own the object */
2104 if(ias_attr->value->owner != IAS_USER_ATTR) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08002105 IRDA_DEBUG(1, "%s(), attempting to delete a kernel attribute\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002107 err = -EPERM;
2108 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 }
2110
2111 /* Remove the attribute (and maybe the object) */
2112 irias_delete_attrib(ias_obj, ias_attr, 1);
2113 kfree(ias_opt);
2114 break;
2115 case IRLMP_MAX_SDU_SIZE:
Samuel Ortiz5b409642010-10-11 00:46:51 +02002116 if (optlen < sizeof(int)) {
2117 err = -EINVAL;
2118 goto out;
2119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
Samuel Ortiz5b409642010-10-11 00:46:51 +02002121 if (get_user(opt, (int __user *)optval)) {
2122 err = -EFAULT;
2123 goto out;
2124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126 /* Only possible for a seqpacket service (TTP with SAR) */
2127 if (sk->sk_type != SOCK_SEQPACKET) {
2128 IRDA_DEBUG(2, "%s(), setting max_sdu_size = %d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08002129 __func__, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 self->max_sdu_size_rx = opt;
2131 } else {
Joe Perches6c910232014-11-11 13:37:30 -08002132 net_warn_ratelimited("%s: not allowed to set MAXSDUSIZE for this socket type!\n",
2133 __func__);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002134 err = -ENOPROTOOPT;
2135 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 }
2137 break;
2138 case IRLMP_HINTS_SET:
Samuel Ortiz5b409642010-10-11 00:46:51 +02002139 if (optlen < sizeof(int)) {
2140 err = -EINVAL;
2141 goto out;
2142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
2144 /* The input is really a (__u8 hints[2]), easier as an int */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002145 if (get_user(opt, (int __user *)optval)) {
2146 err = -EFAULT;
2147 goto out;
2148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150 /* Unregister any old registration */
2151 if (self->skey)
2152 irlmp_unregister_service(self->skey);
2153
2154 self->skey = irlmp_register_service((__u16) opt);
2155 break;
2156 case IRLMP_HINT_MASK_SET:
2157 /* As opposed to the previous case which set the hint bits
2158 * that we advertise, this one set the filter we use when
2159 * making a discovery (nodes which don't match any hint
2160 * bit in the mask are not reported).
2161 */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002162 if (optlen < sizeof(int)) {
2163 err = -EINVAL;
2164 goto out;
2165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
2167 /* The input is really a (__u8 hints[2]), easier as an int */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002168 if (get_user(opt, (int __user *)optval)) {
2169 err = -EFAULT;
2170 goto out;
2171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173 /* Set the new hint mask */
2174 self->mask.word = (__u16) opt;
2175 /* Mask out extension bits */
2176 self->mask.word &= 0x7f7f;
2177 /* Check if no bits */
2178 if(!self->mask.word)
2179 self->mask.word = 0xFFFF;
2180
2181 break;
2182 default:
Samuel Ortiz5b409642010-10-11 00:46:51 +02002183 err = -ENOPROTOOPT;
2184 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Samuel Ortiz5b409642010-10-11 00:46:51 +02002187out:
2188 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08002189
2190 return err;
2191}
2192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193/*
2194 * Function irda_extract_ias_value(ias_opt, ias_value)
2195 *
2196 * Translate internal IAS value structure to the user space representation
2197 *
2198 * The external representation of IAS values, as we exchange them with
2199 * user space program is quite different from the internal representation,
2200 * as stored in the IAS database (because we need a flat structure for
2201 * crossing kernel boundary).
2202 * This function transform the former in the latter. We also check
2203 * that the value type is valid.
2204 */
2205static int irda_extract_ias_value(struct irda_ias_set *ias_opt,
2206 struct ias_value *ias_value)
2207{
2208 /* Look at the type */
2209 switch (ias_value->type) {
2210 case IAS_INTEGER:
2211 /* Copy the integer */
2212 ias_opt->attribute.irda_attrib_int = ias_value->t.integer;
2213 break;
2214 case IAS_OCT_SEQ:
2215 /* Set length */
2216 ias_opt->attribute.irda_attrib_octet_seq.len = ias_value->len;
2217 /* Copy over */
2218 memcpy(ias_opt->attribute.irda_attrib_octet_seq.octet_seq,
2219 ias_value->t.oct_seq, ias_value->len);
2220 break;
2221 case IAS_STRING:
2222 /* Set length */
2223 ias_opt->attribute.irda_attrib_string.len = ias_value->len;
2224 ias_opt->attribute.irda_attrib_string.charset = ias_value->charset;
2225 /* Copy over */
2226 memcpy(ias_opt->attribute.irda_attrib_string.string,
2227 ias_value->t.string, ias_value->len);
2228 /* NULL terminate the string (avoid troubles) */
2229 ias_opt->attribute.irda_attrib_string.string[ias_value->len] = '\0';
2230 break;
2231 case IAS_MISSING:
2232 default :
2233 return -EINVAL;
2234 }
2235
2236 /* Copy type over */
2237 ias_opt->irda_attrib_type = ias_value->type;
2238
2239 return 0;
2240}
2241
2242/*
2243 * Function irda_getsockopt (sock, level, optname, optval, optlen)
2244 */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002245static int irda_getsockopt(struct socket *sock, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 char __user *optval, int __user *optlen)
2247{
2248 struct sock *sk = sock->sk;
2249 struct irda_sock *self = irda_sk(sk);
2250 struct irda_device_list list;
2251 struct irda_device_info *discoveries;
2252 struct irda_ias_set * ias_opt; /* IAS get/query params */
2253 struct ias_object * ias_obj; /* Object in IAS */
2254 struct ias_attrib * ias_attr; /* Attribute in IAS object */
2255 int daddr = DEV_ADDR_ANY; /* Dest address for IAS queries */
2256 int val = 0;
2257 int len = 0;
Samuel Ortiz5b409642010-10-11 00:46:51 +02002258 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 int offset, total;
2260
Harvey Harrison0dc47872008-03-05 20:47:47 -08002261 IRDA_DEBUG(2, "%s(%p)\n", __func__, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
2263 if (level != SOL_IRLMP)
2264 return -ENOPROTOOPT;
2265
2266 if (get_user(len, optlen))
2267 return -EFAULT;
2268
2269 if(len < 0)
2270 return -EINVAL;
2271
Samuel Ortiz5b409642010-10-11 00:46:51 +02002272 lock_sock(sk);
2273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 switch (optname) {
2275 case IRLMP_ENUMDEVICES:
Dan Rosenbergfdac1e02010-12-22 13:58:27 +00002276
2277 /* Offset to first device entry */
2278 offset = sizeof(struct irda_device_list) -
2279 sizeof(struct irda_device_info);
2280
2281 if (len < offset) {
2282 err = -EINVAL;
2283 goto out;
2284 }
2285
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 /* Ask lmp for the current discovery log */
2287 discoveries = irlmp_get_discoveries(&list.len, self->mask.word,
2288 self->nslots);
2289 /* Check if the we got some results */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002290 if (discoveries == NULL) {
2291 err = -EAGAIN;
2292 goto out; /* Didn't find any devices */
2293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
2295 /* Write total list length back to client */
Dan Rosenbergfdac1e02010-12-22 13:58:27 +00002296 if (copy_to_user(optval, &list, offset))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 err = -EFAULT;
2298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 /* Copy the list itself - watch for overflow */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002300 if (list.len > 2048) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 err = -EINVAL;
2302 goto bed;
2303 }
2304 total = offset + (list.len * sizeof(struct irda_device_info));
2305 if (total > len)
2306 total = len;
2307 if (copy_to_user(optval+offset, discoveries, total - offset))
2308 err = -EFAULT;
2309
2310 /* Write total number of bytes used back to client */
2311 if (put_user(total, optlen))
2312 err = -EFAULT;
2313bed:
2314 /* Free up our buffer */
2315 kfree(discoveries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 break;
2317 case IRLMP_MAX_SDU_SIZE:
2318 val = self->max_data_size;
2319 len = sizeof(int);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002320 if (put_user(len, optlen)) {
2321 err = -EFAULT;
2322 goto out;
2323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
Samuel Ortiz5b409642010-10-11 00:46:51 +02002325 if (copy_to_user(optval, &val, len)) {
2326 err = -EFAULT;
2327 goto out;
2328 }
2329
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 break;
2331 case IRLMP_IAS_GET:
2332 /* The user want an object from our local IAS database.
2333 * We just need to query the IAS and return the value
2334 * that we found */
2335
2336 /* Check that the user has allocated the right space for us */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002337 if (len != sizeof(struct irda_ias_set)) {
2338 err = -EINVAL;
2339 goto out;
2340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
2342 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002343 if (ias_opt == NULL) {
2344 err = -ENOMEM;
2345 goto out;
2346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
2348 /* Copy query to the driver. */
2349 if (copy_from_user(ias_opt, optval, len)) {
2350 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002351 err = -EFAULT;
2352 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 }
2354
2355 /* Find the object we target.
2356 * If the user gives us an empty string, we use the object
2357 * associated with this socket. This will workaround
2358 * duplicated class name - Jean II */
2359 if(ias_opt->irda_class_name[0] == '\0')
2360 ias_obj = self->ias_obj;
2361 else
2362 ias_obj = irias_find_object(ias_opt->irda_class_name);
2363 if(ias_obj == (struct ias_object *) NULL) {
2364 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002365 err = -EINVAL;
2366 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 }
2368
2369 /* Find the attribute (in the object) we target */
2370 ias_attr = irias_find_attrib(ias_obj,
2371 ias_opt->irda_attrib_name);
2372 if(ias_attr == (struct ias_attrib *) NULL) {
2373 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002374 err = -EINVAL;
2375 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 }
2377
2378 /* Translate from internal to user structure */
2379 err = irda_extract_ias_value(ias_opt, ias_attr->value);
2380 if(err) {
2381 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002382 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 }
2384
2385 /* Copy reply to the user */
2386 if (copy_to_user(optval, ias_opt,
2387 sizeof(struct irda_ias_set))) {
2388 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002389 err = -EFAULT;
2390 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 }
2392 /* Note : don't need to put optlen, we checked it */
2393 kfree(ias_opt);
2394 break;
2395 case IRLMP_IAS_QUERY:
2396 /* The user want an object from a remote IAS database.
2397 * We need to use IAP to query the remote database and
2398 * then wait for the answer to come back. */
2399
2400 /* Check that the user has allocated the right space for us */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002401 if (len != sizeof(struct irda_ias_set)) {
2402 err = -EINVAL;
2403 goto out;
2404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
2406 ias_opt = kmalloc(sizeof(struct irda_ias_set), GFP_ATOMIC);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002407 if (ias_opt == NULL) {
2408 err = -ENOMEM;
2409 goto out;
2410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
2412 /* Copy query to the driver. */
2413 if (copy_from_user(ias_opt, optval, len)) {
2414 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002415 err = -EFAULT;
2416 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 }
2418
2419 /* At this point, there are two cases...
2420 * 1) the socket is connected - that's the easy case, we
2421 * just query the device we are connected to...
2422 * 2) the socket is not connected - the user doesn't want
2423 * to connect and/or may not have a valid service name
2424 * (so can't create a fake connection). In this case,
2425 * we assume that the user pass us a valid destination
2426 * address in the requesting structure...
2427 */
2428 if(self->daddr != DEV_ADDR_ANY) {
2429 /* We are connected - reuse known daddr */
2430 daddr = self->daddr;
2431 } else {
2432 /* We are not connected, we must specify a valid
2433 * destination address */
2434 daddr = ias_opt->daddr;
2435 if((!daddr) || (daddr == DEV_ADDR_ANY)) {
2436 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002437 err = -EINVAL;
2438 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 }
2440 }
2441
2442 /* Check that we can proceed with IAP */
2443 if (self->iriap) {
Joe Perches6c910232014-11-11 13:37:30 -08002444 net_warn_ratelimited("%s: busy with a previous query\n",
2445 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002447 err = -EBUSY;
2448 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 }
2450
2451 self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
2452 irda_getvalue_confirm);
2453
2454 if (self->iriap == NULL) {
2455 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002456 err = -ENOMEM;
2457 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 }
2459
2460 /* Treat unexpected wakeup as disconnect */
2461 self->errno = -EHOSTUNREACH;
2462
2463 /* Query remote LM-IAS */
2464 iriap_getvaluebyclass_request(self->iriap,
2465 self->saddr, daddr,
2466 ias_opt->irda_class_name,
2467 ias_opt->irda_attrib_name);
2468
2469 /* Wait for answer, if not yet finished (or failed) */
2470 if (wait_event_interruptible(self->query_wait,
2471 (self->iriap == NULL))) {
2472 /* pending request uses copy of ias_opt-content
2473 * we can free it regardless! */
2474 kfree(ias_opt);
2475 /* Treat signals as disconnect */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002476 err = -EHOSTUNREACH;
2477 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 }
2479
2480 /* Check what happened */
2481 if (self->errno)
2482 {
2483 kfree(ias_opt);
2484 /* Requested object/attribute doesn't exist */
2485 if((self->errno == IAS_CLASS_UNKNOWN) ||
2486 (self->errno == IAS_ATTRIB_UNKNOWN))
Samuel Ortiz5b409642010-10-11 00:46:51 +02002487 err = -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 else
Samuel Ortiz5b409642010-10-11 00:46:51 +02002489 err = -EHOSTUNREACH;
2490
2491 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 }
2493
2494 /* Translate from internal to user structure */
2495 err = irda_extract_ias_value(ias_opt, self->ias_result);
2496 if (self->ias_result)
2497 irias_delete_value(self->ias_result);
2498 if (err) {
2499 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002500 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 }
2502
2503 /* Copy reply to the user */
2504 if (copy_to_user(optval, ias_opt,
2505 sizeof(struct irda_ias_set))) {
2506 kfree(ias_opt);
Samuel Ortiz5b409642010-10-11 00:46:51 +02002507 err = -EFAULT;
2508 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 }
2510 /* Note : don't need to put optlen, we checked it */
2511 kfree(ias_opt);
2512 break;
2513 case IRLMP_WAITDEVICE:
2514 /* This function is just another way of seeing life ;-)
2515 * IRLMP_ENUMDEVICES assumes that you have a static network,
2516 * and that you just want to pick one of the devices present.
2517 * On the other hand, in here we assume that no device is
2518 * present and that at some point in the future a device will
2519 * come into range. When this device arrive, we just wake
2520 * up the caller, so that he has time to connect to it before
2521 * the device goes away...
2522 * Note : once the node has been discovered for more than a
2523 * few second, it won't trigger this function, unless it
2524 * goes away and come back changes its hint bits (so we
2525 * might call it IRLMP_WAITNEWDEVICE).
2526 */
2527
2528 /* Check that the user is passing us an int */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002529 if (len != sizeof(int)) {
2530 err = -EINVAL;
2531 goto out;
2532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 /* Get timeout in ms (max time we block the caller) */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002534 if (get_user(val, (int __user *)optval)) {
2535 err = -EFAULT;
2536 goto out;
2537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
2539 /* Tell IrLMP we want to be notified */
2540 irlmp_update_client(self->ckey, self->mask.word,
2541 irda_selective_discovery_indication,
2542 NULL, (void *) self);
2543
2544 /* Do some discovery (and also return cached results) */
2545 irlmp_discovery_request(self->nslots);
2546
2547 /* Wait until a node is discovered */
2548 if (!self->cachedaddr) {
Harvey Harrison0dc47872008-03-05 20:47:47 -08002549 IRDA_DEBUG(1, "%s(), nothing discovered yet, going to sleep...\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550
2551 /* Set watchdog timer to expire in <val> ms. */
2552 self->errno = 0;
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -08002553 setup_timer(&self->watchdog, irda_discovery_timeout,
2554 (unsigned long)self);
Xi Wang7d6c4292011-12-21 02:57:16 +00002555 mod_timer(&self->watchdog,
2556 jiffies + msecs_to_jiffies(val));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
2558 /* Wait for IR-LMP to call us back */
Peter Zijlstra35a2af92013-10-02 11:22:33 +02002559 err = __wait_event_interruptible(self->query_wait,
2560 (self->cachedaddr != 0 || self->errno == -ETIME));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
2562 /* If watchdog is still activated, kill it! */
Ying Xue25cc4ae2013-02-03 20:32:57 +00002563 del_timer(&(self->watchdog));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Harvey Harrison0dc47872008-03-05 20:47:47 -08002565 IRDA_DEBUG(1, "%s(), ...waking up !\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
Samuel Ortiz5b409642010-10-11 00:46:51 +02002567 if (err != 0)
2568 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 }
2570 else
2571 IRDA_DEBUG(1, "%s(), found immediately !\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08002572 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
2574 /* Tell IrLMP that we have been notified */
2575 irlmp_update_client(self->ckey, self->mask.word,
2576 NULL, NULL, NULL);
2577
2578 /* Check if the we got some results */
Kees Cook896ee0e2013-03-20 05:19:24 +00002579 if (!self->cachedaddr) {
2580 err = -EAGAIN; /* Didn't find any devices */
2581 goto out;
2582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 daddr = self->cachedaddr;
2584 /* Cleanup */
2585 self->cachedaddr = 0;
2586
2587 /* We return the daddr of the device that trigger the
2588 * wakeup. As irlmp pass us only the new devices, we
2589 * are sure that it's not an old device.
2590 * If the user want more details, he should query
2591 * the whole discovery log and pick one device...
2592 */
Samuel Ortiz5b409642010-10-11 00:46:51 +02002593 if (put_user(daddr, (int __user *)optval)) {
2594 err = -EFAULT;
2595 goto out;
2596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
2598 break;
2599 default:
Samuel Ortiz5b409642010-10-11 00:46:51 +02002600 err = -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 }
2602
Samuel Ortiz5b409642010-10-11 00:46:51 +02002603out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
Samuel Ortiz5b409642010-10-11 00:46:51 +02002605 release_sock(sk);
Arnd Bergmann58a9d732009-11-06 00:38:01 -08002606
2607 return err;
2608}
2609
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00002610static const struct net_proto_family irda_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 .family = PF_IRDA,
2612 .create = irda_create,
2613 .owner = THIS_MODULE,
2614};
2615
Arnd Bergmann58a9d732009-11-06 00:38:01 -08002616static const struct proto_ops irda_stream_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 .family = PF_IRDA,
2618 .owner = THIS_MODULE,
2619 .release = irda_release,
2620 .bind = irda_bind,
2621 .connect = irda_connect,
2622 .socketpair = sock_no_socketpair,
2623 .accept = irda_accept,
2624 .getname = irda_getname,
2625 .poll = irda_poll,
2626 .ioctl = irda_ioctl,
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08002627#ifdef CONFIG_COMPAT
2628 .compat_ioctl = irda_compat_ioctl,
2629#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 .listen = irda_listen,
2631 .shutdown = irda_shutdown,
2632 .setsockopt = irda_setsockopt,
2633 .getsockopt = irda_getsockopt,
2634 .sendmsg = irda_sendmsg,
2635 .recvmsg = irda_recvmsg_stream,
2636 .mmap = sock_no_mmap,
2637 .sendpage = sock_no_sendpage,
2638};
2639
Arnd Bergmann58a9d732009-11-06 00:38:01 -08002640static const struct proto_ops irda_seqpacket_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 .family = PF_IRDA,
2642 .owner = THIS_MODULE,
2643 .release = irda_release,
2644 .bind = irda_bind,
2645 .connect = irda_connect,
2646 .socketpair = sock_no_socketpair,
2647 .accept = irda_accept,
2648 .getname = irda_getname,
Samuel Ortiz5b409642010-10-11 00:46:51 +02002649 .poll = datagram_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 .ioctl = irda_ioctl,
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08002651#ifdef CONFIG_COMPAT
2652 .compat_ioctl = irda_compat_ioctl,
2653#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 .listen = irda_listen,
2655 .shutdown = irda_shutdown,
2656 .setsockopt = irda_setsockopt,
2657 .getsockopt = irda_getsockopt,
2658 .sendmsg = irda_sendmsg,
2659 .recvmsg = irda_recvmsg_dgram,
2660 .mmap = sock_no_mmap,
2661 .sendpage = sock_no_sendpage,
2662};
2663
Arnd Bergmann58a9d732009-11-06 00:38:01 -08002664static const struct proto_ops irda_dgram_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 .family = PF_IRDA,
2666 .owner = THIS_MODULE,
2667 .release = irda_release,
2668 .bind = irda_bind,
2669 .connect = irda_connect,
2670 .socketpair = sock_no_socketpair,
2671 .accept = irda_accept,
2672 .getname = irda_getname,
Samuel Ortiz5b409642010-10-11 00:46:51 +02002673 .poll = datagram_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 .ioctl = irda_ioctl,
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08002675#ifdef CONFIG_COMPAT
2676 .compat_ioctl = irda_compat_ioctl,
2677#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 .listen = irda_listen,
2679 .shutdown = irda_shutdown,
2680 .setsockopt = irda_setsockopt,
2681 .getsockopt = irda_getsockopt,
2682 .sendmsg = irda_sendmsg_dgram,
2683 .recvmsg = irda_recvmsg_dgram,
2684 .mmap = sock_no_mmap,
2685 .sendpage = sock_no_sendpage,
2686};
2687
2688#ifdef CONFIG_IRDA_ULTRA
Arnd Bergmann58a9d732009-11-06 00:38:01 -08002689static const struct proto_ops irda_ultra_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 .family = PF_IRDA,
2691 .owner = THIS_MODULE,
2692 .release = irda_release,
2693 .bind = irda_bind,
2694 .connect = sock_no_connect,
2695 .socketpair = sock_no_socketpair,
2696 .accept = sock_no_accept,
2697 .getname = irda_getname,
Samuel Ortiz5b409642010-10-11 00:46:51 +02002698 .poll = datagram_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 .ioctl = irda_ioctl,
Petr Vandrovecf6c90b72006-03-27 23:39:31 -08002700#ifdef CONFIG_COMPAT
2701 .compat_ioctl = irda_compat_ioctl,
2702#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 .listen = sock_no_listen,
2704 .shutdown = irda_shutdown,
2705 .setsockopt = irda_setsockopt,
2706 .getsockopt = irda_getsockopt,
2707 .sendmsg = irda_sendmsg_ultra,
2708 .recvmsg = irda_recvmsg_dgram,
2709 .mmap = sock_no_mmap,
2710 .sendpage = sock_no_sendpage,
2711};
2712#endif /* CONFIG_IRDA_ULTRA */
2713
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714/*
2715 * Function irsock_init (pro)
2716 *
2717 * Initialize IrDA protocol
2718 *
2719 */
2720int __init irsock_init(void)
2721{
2722 int rc = proto_register(&irda_proto, 0);
2723
2724 if (rc == 0)
2725 rc = sock_register(&irda_family_ops);
2726
2727 return rc;
2728}
2729
2730/*
2731 * Function irsock_cleanup (void)
2732 *
2733 * Remove IrDA protocol
2734 *
2735 */
Samuel Ortiz75a69ac2007-07-18 02:16:30 -07002736void irsock_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737{
2738 sock_unregister(PF_IRDA);
2739 proto_unregister(&irda_proto);
2740}