1 /*********************************************************************
5 * Description: IrDA sockets implementation
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.
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.
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.
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.
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 * Linux-IrDA now supports four different types of IrDA sockets:
34 * o SOCK_STREAM: TinyTP connections with SAR disabled. The
35 * max SDU size is 0 for conn. of this type
36 * o SOCK_SEQPACKET: TinyTP connections with SAR enabled. TTP may
37 * fragment the messages, but will preserve
38 * the message boundaries
39 * o SOCK_DGRAM: IRDAPROTO_UNITDATA: TinyTP connections with Unitdata
40 * (unreliable) transfers
41 * IRDAPROTO_ULTRA: Connectionless and unreliable data
43 ********************************************************************/
45 #include <linux/capability.h>
46 #include <linux/module.h>
47 #include <linux/types.h>
48 #include <linux/smp_lock.h>
49 #include <linux/socket.h>
50 #include <linux/sockios.h>
51 #include <linux/init.h>
52 #include <linux/net.h>
53 #include <linux/irda.h>
54 #include <linux/poll.h>
56 #include <asm/ioctls.h> /* TIOCOUTQ, TIOCINQ */
57 #include <asm/uaccess.h>
60 #include <net/tcp_states.h>
62 #include <net/irda/af_irda.h>
64 static int irda_create(struct net
*net
, struct socket
*sock
, int protocol
);
66 static const struct proto_ops irda_stream_ops
;
67 static const struct proto_ops irda_seqpacket_ops
;
68 static const struct proto_ops irda_dgram_ops
;
70 #ifdef CONFIG_IRDA_ULTRA
71 static const struct proto_ops irda_ultra_ops
;
72 #define ULTRA_MAX_DATA 382
73 #endif /* CONFIG_IRDA_ULTRA */
75 #define IRDA_MAX_HEADER (TTP_MAX_HEADER)
78 * Function irda_data_indication (instance, sap, skb)
80 * Received some data from TinyTP. Just queue it on the receive queue
83 static int irda_data_indication(void *instance
, void *sap
, struct sk_buff
*skb
)
85 struct irda_sock
*self
;
89 IRDA_DEBUG(3, "%s()\n", __func__
);
94 err
= sock_queue_rcv_skb(sk
, skb
);
96 IRDA_DEBUG(1, "%s(), error: no more mem!\n", __func__
);
97 self
->rx_flow
= FLOW_STOP
;
99 /* When we return error, TTP will need to requeue the skb */
107 * Function irda_disconnect_indication (instance, sap, reason, skb)
109 * Connection has been closed. Check reason to find out why
112 static void irda_disconnect_indication(void *instance
, void *sap
,
113 LM_REASON reason
, struct sk_buff
*skb
)
115 struct irda_sock
*self
;
120 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
122 /* Don't care about it, but let's not leak it */
128 IRDA_DEBUG(0, "%s(%p) : BUG : sk is NULL\n",
133 /* Prevent race conditions with irda_release() and irda_shutdown() */
135 if (!sock_flag(sk
, SOCK_DEAD
) && sk
->sk_state
!= TCP_CLOSE
) {
136 sk
->sk_state
= TCP_CLOSE
;
137 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
139 sk
->sk_state_change(sk
);
142 * If we leave it open, IrLMP put it back into the list of
143 * unconnected LSAPs. The problem is that any incoming request
144 * can then be matched to this socket (and it will be, because
145 * it is at the head of the list). This would prevent any
146 * listening socket waiting on the same TSAP to get those
147 * requests. Some apps forget to close sockets, or hang to it
148 * a bit too long, so we may stay in this dead state long
149 * enough to be noticed...
150 * Note : all socket function do check sk->sk_state, so we are
155 irttp_close_tsap(self
->tsap
);
161 /* Note : once we are there, there is not much you want to do
162 * with the socket anymore, apart from closing it.
163 * For example, bind() and connect() won't reset sk->sk_err,
164 * sk->sk_shutdown and sk->sk_flags to valid values...
170 * Function irda_connect_confirm (instance, sap, qos, max_sdu_size, skb)
172 * Connections has been confirmed by the remote device
175 static void irda_connect_confirm(void *instance
, void *sap
,
176 struct qos_info
*qos
,
177 __u32 max_sdu_size
, __u8 max_header_size
,
180 struct irda_sock
*self
;
185 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
194 // Should be ??? skb_queue_tail(&sk->sk_receive_queue, skb);
196 /* How much header space do we need to reserve */
197 self
->max_header_size
= max_header_size
;
199 /* IrTTP max SDU size in transmit direction */
200 self
->max_sdu_size_tx
= max_sdu_size
;
202 /* Find out what the largest chunk of data that we can transmit is */
203 switch (sk
->sk_type
) {
205 if (max_sdu_size
!= 0) {
206 IRDA_ERROR("%s: max_sdu_size must be 0\n",
210 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
213 if (max_sdu_size
== 0) {
214 IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
218 self
->max_data_size
= max_sdu_size
;
221 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
224 IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__
,
225 self
->max_data_size
);
227 memcpy(&self
->qos_tx
, qos
, sizeof(struct qos_info
));
229 /* We are now connected! */
230 sk
->sk_state
= TCP_ESTABLISHED
;
231 sk
->sk_state_change(sk
);
235 * Function irda_connect_indication(instance, sap, qos, max_sdu_size, userdata)
237 * Incoming connection
240 static void irda_connect_indication(void *instance
, void *sap
,
241 struct qos_info
*qos
, __u32 max_sdu_size
,
242 __u8 max_header_size
, struct sk_buff
*skb
)
244 struct irda_sock
*self
;
249 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
257 /* How much header space do we need to reserve */
258 self
->max_header_size
= max_header_size
;
260 /* IrTTP max SDU size in transmit direction */
261 self
->max_sdu_size_tx
= max_sdu_size
;
263 /* Find out what the largest chunk of data that we can transmit is */
264 switch (sk
->sk_type
) {
266 if (max_sdu_size
!= 0) {
267 IRDA_ERROR("%s: max_sdu_size must be 0\n",
272 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
275 if (max_sdu_size
== 0) {
276 IRDA_ERROR("%s: max_sdu_size cannot be 0\n",
281 self
->max_data_size
= max_sdu_size
;
284 self
->max_data_size
= irttp_get_max_seg_size(self
->tsap
);
287 IRDA_DEBUG(2, "%s(), max_data_size=%d\n", __func__
,
288 self
->max_data_size
);
290 memcpy(&self
->qos_tx
, qos
, sizeof(struct qos_info
));
292 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
293 sk
->sk_state_change(sk
);
297 * Function irda_connect_response (handle)
299 * Accept incoming connection
302 static void irda_connect_response(struct irda_sock
*self
)
306 IRDA_DEBUG(2, "%s()\n", __func__
);
308 skb
= alloc_skb(TTP_MAX_HEADER
+ TTP_SAR_HEADER
,
311 IRDA_DEBUG(0, "%s() Unable to allocate sk_buff!\n",
316 /* Reserve space for MUX_CONTROL and LAP header */
317 skb_reserve(skb
, IRDA_MAX_HEADER
);
319 irttp_connect_response(self
->tsap
, self
->max_sdu_size_rx
, skb
);
323 * Function irda_flow_indication (instance, sap, flow)
325 * Used by TinyTP to tell us if it can accept more data or not
328 static void irda_flow_indication(void *instance
, void *sap
, LOCAL_FLOW flow
)
330 struct irda_sock
*self
;
333 IRDA_DEBUG(2, "%s()\n", __func__
);
341 IRDA_DEBUG(1, "%s(), IrTTP wants us to slow down\n",
343 self
->tx_flow
= flow
;
346 self
->tx_flow
= flow
;
347 IRDA_DEBUG(1, "%s(), IrTTP wants us to start again\n",
349 wake_up_interruptible(sk
->sk_sleep
);
352 IRDA_DEBUG(0, "%s(), Unknown flow command!\n", __func__
);
353 /* Unknown flow command, better stop */
354 self
->tx_flow
= flow
;
360 * Function irda_getvalue_confirm (obj_id, value, priv)
362 * Got answer from remote LM-IAS, just pass object to requester...
364 * Note : duplicate from above, but we need our own version that
365 * doesn't touch the dtsap_sel and save the full value structure...
367 static void irda_getvalue_confirm(int result
, __u16 obj_id
,
368 struct ias_value
*value
, void *priv
)
370 struct irda_sock
*self
;
372 self
= (struct irda_sock
*) priv
;
374 IRDA_WARNING("%s: lost myself!\n", __func__
);
378 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
380 /* We probably don't need to make any more queries */
381 iriap_close(self
->iriap
);
384 /* Check if request succeeded */
385 if (result
!= IAS_SUCCESS
) {
386 IRDA_DEBUG(1, "%s(), IAS query failed! (%d)\n", __func__
,
389 self
->errno
= result
; /* We really need it later */
391 /* Wake up any processes waiting for result */
392 wake_up_interruptible(&self
->query_wait
);
397 /* Pass the object to the caller (so the caller must delete it) */
398 self
->ias_result
= value
;
401 /* Wake up any processes waiting for result */
402 wake_up_interruptible(&self
->query_wait
);
406 * Function irda_selective_discovery_indication (discovery)
408 * Got a selective discovery indication from IrLMP.
410 * IrLMP is telling us that this node is new and matching our hint bit
411 * filter. Wake up any process waiting for answer...
413 static void irda_selective_discovery_indication(discinfo_t
*discovery
,
417 struct irda_sock
*self
;
419 IRDA_DEBUG(2, "%s()\n", __func__
);
421 self
= (struct irda_sock
*) priv
;
423 IRDA_WARNING("%s: lost myself!\n", __func__
);
427 /* Pass parameter to the caller */
428 self
->cachedaddr
= discovery
->daddr
;
430 /* Wake up process if its waiting for device to be discovered */
431 wake_up_interruptible(&self
->query_wait
);
435 * Function irda_discovery_timeout (priv)
437 * Timeout in the selective discovery process
439 * We were waiting for a node to be discovered, but nothing has come up
440 * so far. Wake up the user and tell him that we failed...
442 static void irda_discovery_timeout(u_long priv
)
444 struct irda_sock
*self
;
446 IRDA_DEBUG(2, "%s()\n", __func__
);
448 self
= (struct irda_sock
*) priv
;
449 BUG_ON(self
== NULL
);
451 /* Nothing for the caller */
452 self
->cachelog
= NULL
;
453 self
->cachedaddr
= 0;
454 self
->errno
= -ETIME
;
456 /* Wake up process if its still waiting... */
457 wake_up_interruptible(&self
->query_wait
);
461 * Function irda_open_tsap (self)
463 * Open local Transport Service Access Point (TSAP)
466 static int irda_open_tsap(struct irda_sock
*self
, __u8 tsap_sel
, char *name
)
471 IRDA_WARNING("%s: busy!\n", __func__
);
475 /* Initialize callbacks to be used by the IrDA stack */
476 irda_notify_init(¬ify
);
477 notify
.connect_confirm
= irda_connect_confirm
;
478 notify
.connect_indication
= irda_connect_indication
;
479 notify
.disconnect_indication
= irda_disconnect_indication
;
480 notify
.data_indication
= irda_data_indication
;
481 notify
.udata_indication
= irda_data_indication
;
482 notify
.flow_indication
= irda_flow_indication
;
483 notify
.instance
= self
;
484 strncpy(notify
.name
, name
, NOTIFY_MAX_NAME
);
486 self
->tsap
= irttp_open_tsap(tsap_sel
, DEFAULT_INITIAL_CREDIT
,
488 if (self
->tsap
== NULL
) {
489 IRDA_DEBUG(0, "%s(), Unable to allocate TSAP!\n",
493 /* Remember which TSAP selector we actually got */
494 self
->stsap_sel
= self
->tsap
->stsap_sel
;
500 * Function irda_open_lsap (self)
502 * Open local Link Service Access Point (LSAP). Used for opening Ultra
505 #ifdef CONFIG_IRDA_ULTRA
506 static int irda_open_lsap(struct irda_sock
*self
, int pid
)
511 IRDA_WARNING("%s(), busy!\n", __func__
);
515 /* Initialize callbacks to be used by the IrDA stack */
516 irda_notify_init(¬ify
);
517 notify
.udata_indication
= irda_data_indication
;
518 notify
.instance
= self
;
519 strncpy(notify
.name
, "Ultra", NOTIFY_MAX_NAME
);
521 self
->lsap
= irlmp_open_lsap(LSAP_CONNLESS
, ¬ify
, pid
);
522 if (self
->lsap
== NULL
) {
523 IRDA_DEBUG( 0, "%s(), Unable to allocate LSAP!\n", __func__
);
529 #endif /* CONFIG_IRDA_ULTRA */
532 * Function irda_find_lsap_sel (self, name)
534 * Try to lookup LSAP selector in remote LM-IAS
536 * Basically, we start a IAP query, and then go to sleep. When the query
537 * return, irda_getvalue_confirm will wake us up, and we can examine the
538 * result of the query...
539 * Note that in some case, the query fail even before we go to sleep,
540 * creating some races...
542 static int irda_find_lsap_sel(struct irda_sock
*self
, char *name
)
544 IRDA_DEBUG(2, "%s(%p, %s)\n", __func__
, self
, name
);
547 IRDA_WARNING("%s(): busy with a previous query\n",
552 self
->iriap
= iriap_open(LSAP_ANY
, IAS_CLIENT
, self
,
553 irda_getvalue_confirm
);
554 if(self
->iriap
== NULL
)
557 /* Treat unexpected wakeup as disconnect */
558 self
->errno
= -EHOSTUNREACH
;
560 /* Query remote LM-IAS */
561 iriap_getvaluebyclass_request(self
->iriap
, self
->saddr
, self
->daddr
,
562 name
, "IrDA:TinyTP:LsapSel");
564 /* Wait for answer, if not yet finished (or failed) */
565 if (wait_event_interruptible(self
->query_wait
, (self
->iriap
==NULL
)))
566 /* Treat signals as disconnect */
567 return -EHOSTUNREACH
;
569 /* Check what happened */
572 /* Requested object/attribute doesn't exist */
573 if((self
->errno
== IAS_CLASS_UNKNOWN
) ||
574 (self
->errno
== IAS_ATTRIB_UNKNOWN
))
575 return (-EADDRNOTAVAIL
);
577 return (-EHOSTUNREACH
);
580 /* Get the remote TSAP selector */
581 switch (self
->ias_result
->type
) {
583 IRDA_DEBUG(4, "%s() int=%d\n",
584 __func__
, self
->ias_result
->t
.integer
);
586 if (self
->ias_result
->t
.integer
!= -1)
587 self
->dtsap_sel
= self
->ias_result
->t
.integer
;
593 IRDA_DEBUG(0, "%s(), bad type!\n", __func__
);
596 if (self
->ias_result
)
597 irias_delete_value(self
->ias_result
);
602 return -EADDRNOTAVAIL
;
606 * Function irda_discover_daddr_and_lsap_sel (self, name)
608 * This try to find a device with the requested service.
610 * It basically look into the discovery log. For each address in the list,
611 * it queries the LM-IAS of the device to find if this device offer
612 * the requested service.
613 * If there is more than one node supporting the service, we complain
614 * to the user (it should move devices around).
615 * The, we set both the destination address and the lsap selector to point
616 * on the service on the unique device we have found.
618 * Note : this function fails if there is more than one device in range,
619 * because IrLMP doesn't disconnect the LAP when the last LSAP is closed.
620 * Moreover, we would need to wait the LAP disconnection...
622 static int irda_discover_daddr_and_lsap_sel(struct irda_sock
*self
, char *name
)
624 discinfo_t
*discoveries
; /* Copy of the discovery log */
625 int number
; /* Number of nodes in the log */
627 int err
= -ENETUNREACH
;
628 __u32 daddr
= DEV_ADDR_ANY
; /* Address we found the service on */
629 __u8 dtsap_sel
= 0x0; /* TSAP associated with it */
631 IRDA_DEBUG(2, "%s(), name=%s\n", __func__
, name
);
633 /* Ask lmp for the current discovery log
634 * Note : we have to use irlmp_get_discoveries(), as opposed
635 * to play with the cachelog directly, because while we are
636 * making our ias query, le log might change... */
637 discoveries
= irlmp_get_discoveries(&number
, self
->mask
.word
,
639 /* Check if the we got some results */
640 if (discoveries
== NULL
)
641 return -ENETUNREACH
; /* No nodes discovered */
644 * Now, check all discovered devices (if any), and connect
645 * client only about the services that the client is
648 for(i
= 0; i
< number
; i
++) {
649 /* Try the address in the log */
650 self
->daddr
= discoveries
[i
].daddr
;
652 IRDA_DEBUG(1, "%s(), trying daddr = %08x\n",
653 __func__
, self
->daddr
);
655 /* Query remote LM-IAS for this service */
656 err
= irda_find_lsap_sel(self
, name
);
659 /* We found the requested service */
660 if(daddr
!= DEV_ADDR_ANY
) {
661 IRDA_DEBUG(1, "%s(), discovered service ''%s'' in two different devices !!!\n",
663 self
->daddr
= DEV_ADDR_ANY
;
667 /* First time we found that one, save it ! */
669 dtsap_sel
= self
->dtsap_sel
;
672 /* Requested service simply doesn't exist on this node */
675 /* Something bad did happen :-( */
676 IRDA_DEBUG(0, "%s(), unexpected IAS query failure\n", __func__
);
677 self
->daddr
= DEV_ADDR_ANY
;
679 return(-EHOSTUNREACH
);
683 /* Cleanup our copy of the discovery log */
686 /* Check out what we found */
687 if(daddr
== DEV_ADDR_ANY
) {
688 IRDA_DEBUG(1, "%s(), cannot discover service ''%s'' in any device !!!\n",
690 self
->daddr
= DEV_ADDR_ANY
;
691 return(-EADDRNOTAVAIL
);
694 /* Revert back to discovered device & service */
697 self
->dtsap_sel
= dtsap_sel
;
699 IRDA_DEBUG(1, "%s(), discovered requested service ''%s'' at address %08x\n",
700 __func__
, name
, self
->daddr
);
706 * Function irda_getname (sock, uaddr, uaddr_len, peer)
708 * Return the our own, or peers socket address (sockaddr_irda)
711 static int irda_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
712 int *uaddr_len
, int peer
)
714 struct sockaddr_irda saddr
;
715 struct sock
*sk
= sock
->sk
;
716 struct irda_sock
*self
= irda_sk(sk
);
719 if (sk
->sk_state
!= TCP_ESTABLISHED
)
722 saddr
.sir_family
= AF_IRDA
;
723 saddr
.sir_lsap_sel
= self
->dtsap_sel
;
724 saddr
.sir_addr
= self
->daddr
;
726 saddr
.sir_family
= AF_IRDA
;
727 saddr
.sir_lsap_sel
= self
->stsap_sel
;
728 saddr
.sir_addr
= self
->saddr
;
731 IRDA_DEBUG(1, "%s(), tsap_sel = %#x\n", __func__
, saddr
.sir_lsap_sel
);
732 IRDA_DEBUG(1, "%s(), addr = %08x\n", __func__
, saddr
.sir_addr
);
734 /* uaddr_len come to us uninitialised */
735 *uaddr_len
= sizeof (struct sockaddr_irda
);
736 memcpy(uaddr
, &saddr
, *uaddr_len
);
742 * Function irda_listen (sock, backlog)
744 * Just move to the listen state
747 static int irda_listen(struct socket
*sock
, int backlog
)
749 struct sock
*sk
= sock
->sk
;
751 IRDA_DEBUG(2, "%s()\n", __func__
);
753 if ((sk
->sk_type
!= SOCK_STREAM
) && (sk
->sk_type
!= SOCK_SEQPACKET
) &&
754 (sk
->sk_type
!= SOCK_DGRAM
))
757 if (sk
->sk_state
!= TCP_LISTEN
) {
758 sk
->sk_max_ack_backlog
= backlog
;
759 sk
->sk_state
= TCP_LISTEN
;
768 * Function irda_bind (sock, uaddr, addr_len)
770 * Used by servers to register their well known TSAP
773 static int irda_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
775 struct sock
*sk
= sock
->sk
;
776 struct sockaddr_irda
*addr
= (struct sockaddr_irda
*) uaddr
;
777 struct irda_sock
*self
= irda_sk(sk
);
780 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
782 if (addr_len
!= sizeof(struct sockaddr_irda
))
785 #ifdef CONFIG_IRDA_ULTRA
786 /* Special care for Ultra sockets */
787 if ((sk
->sk_type
== SOCK_DGRAM
) &&
788 (sk
->sk_protocol
== IRDAPROTO_ULTRA
)) {
789 self
->pid
= addr
->sir_lsap_sel
;
790 if (self
->pid
& 0x80) {
791 IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__
);
794 err
= irda_open_lsap(self
, self
->pid
);
798 /* Pretend we are connected */
799 sock
->state
= SS_CONNECTED
;
800 sk
->sk_state
= TCP_ESTABLISHED
;
804 #endif /* CONFIG_IRDA_ULTRA */
806 self
->ias_obj
= irias_new_object(addr
->sir_name
, jiffies
);
807 if (self
->ias_obj
== NULL
)
810 err
= irda_open_tsap(self
, addr
->sir_lsap_sel
, addr
->sir_name
);
812 kfree(self
->ias_obj
->name
);
813 kfree(self
->ias_obj
);
817 /* Register with LM-IAS */
818 irias_add_integer_attrib(self
->ias_obj
, "IrDA:TinyTP:LsapSel",
819 self
->stsap_sel
, IAS_KERNEL_ATTR
);
820 irias_insert_object(self
->ias_obj
);
826 * Function irda_accept (sock, newsock, flags)
828 * Wait for incoming connection
831 static int irda_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
833 struct sock
*sk
= sock
->sk
;
834 struct irda_sock
*new, *self
= irda_sk(sk
);
839 IRDA_DEBUG(2, "%s()\n", __func__
);
841 err
= irda_create(sock_net(sk
), newsock
, sk
->sk_protocol
);
845 if (sock
->state
!= SS_UNCONNECTED
)
848 if ((sk
= sock
->sk
) == NULL
)
851 if ((sk
->sk_type
!= SOCK_STREAM
) && (sk
->sk_type
!= SOCK_SEQPACKET
) &&
852 (sk
->sk_type
!= SOCK_DGRAM
))
855 if (sk
->sk_state
!= TCP_LISTEN
)
859 * The read queue this time is holding sockets ready to use
860 * hooked into the SABM we saved
864 * We can perform the accept only if there is incoming data
865 * on the listening socket.
866 * So, we will block the caller until we receive any data.
867 * If the caller was waiting on select() or poll() before
868 * calling us, the data is waiting for us ;-)
872 skb
= skb_dequeue(&sk
->sk_receive_queue
);
876 /* Non blocking operation */
877 if (flags
& O_NONBLOCK
)
880 err
= wait_event_interruptible(*(sk
->sk_sleep
),
881 skb_peek(&sk
->sk_receive_queue
));
890 newsk
->sk_state
= TCP_ESTABLISHED
;
892 new = irda_sk(newsk
);
894 /* Now attach up the new socket */
895 new->tsap
= irttp_dup(self
->tsap
, new);
897 IRDA_DEBUG(0, "%s(), dup failed!\n", __func__
);
902 new->stsap_sel
= new->tsap
->stsap_sel
;
903 new->dtsap_sel
= new->tsap
->dtsap_sel
;
904 new->saddr
= irttp_get_saddr(new->tsap
);
905 new->daddr
= irttp_get_daddr(new->tsap
);
907 new->max_sdu_size_tx
= self
->max_sdu_size_tx
;
908 new->max_sdu_size_rx
= self
->max_sdu_size_rx
;
909 new->max_data_size
= self
->max_data_size
;
910 new->max_header_size
= self
->max_header_size
;
912 memcpy(&new->qos_tx
, &self
->qos_tx
, sizeof(struct qos_info
));
914 /* Clean up the original one to keep it in listen state */
915 irttp_listen(self
->tsap
);
918 sk
->sk_ack_backlog
--;
920 newsock
->state
= SS_CONNECTED
;
922 irda_connect_response(new);
928 * Function irda_connect (sock, uaddr, addr_len, flags)
930 * Connect to a IrDA device
932 * The main difference with a "standard" connect is that with IrDA we need
933 * to resolve the service name into a TSAP selector (in TCP, port number
934 * doesn't have to be resolved).
935 * Because of this service name resoltion, we can offer "auto-connect",
936 * where we connect to a service without specifying a destination address.
938 * Note : by consulting "errno", the user space caller may learn the cause
939 * of the failure. Most of them are visible in the function, others may come
940 * from subroutines called and are listed here :
941 * o EBUSY : already processing a connect
942 * o EHOSTUNREACH : bad addr->sir_addr argument
943 * o EADDRNOTAVAIL : bad addr->sir_name argument
944 * o ENOTUNIQ : more than one node has addr->sir_name (auto-connect)
945 * o ENETUNREACH : no node found on the network (auto-connect)
947 static int irda_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
948 int addr_len
, int flags
)
950 struct sock
*sk
= sock
->sk
;
951 struct sockaddr_irda
*addr
= (struct sockaddr_irda
*) uaddr
;
952 struct irda_sock
*self
= irda_sk(sk
);
955 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
957 /* Don't allow connect for Ultra sockets */
958 if ((sk
->sk_type
== SOCK_DGRAM
) && (sk
->sk_protocol
== IRDAPROTO_ULTRA
))
959 return -ESOCKTNOSUPPORT
;
961 if (sk
->sk_state
== TCP_ESTABLISHED
&& sock
->state
== SS_CONNECTING
) {
962 sock
->state
= SS_CONNECTED
;
963 return 0; /* Connect completed during a ERESTARTSYS event */
966 if (sk
->sk_state
== TCP_CLOSE
&& sock
->state
== SS_CONNECTING
) {
967 sock
->state
= SS_UNCONNECTED
;
968 return -ECONNREFUSED
;
971 if (sk
->sk_state
== TCP_ESTABLISHED
)
972 return -EISCONN
; /* No reconnect on a seqpacket socket */
974 sk
->sk_state
= TCP_CLOSE
;
975 sock
->state
= SS_UNCONNECTED
;
977 if (addr_len
!= sizeof(struct sockaddr_irda
))
980 /* Check if user supplied any destination device address */
981 if ((!addr
->sir_addr
) || (addr
->sir_addr
== DEV_ADDR_ANY
)) {
982 /* Try to find one suitable */
983 err
= irda_discover_daddr_and_lsap_sel(self
, addr
->sir_name
);
985 IRDA_DEBUG(0, "%s(), auto-connect failed!\n", __func__
);
989 /* Use the one provided by the user */
990 self
->daddr
= addr
->sir_addr
;
991 IRDA_DEBUG(1, "%s(), daddr = %08x\n", __func__
, self
->daddr
);
993 /* If we don't have a valid service name, we assume the
994 * user want to connect on a specific LSAP. Prevent
995 * the use of invalid LSAPs (IrLMP 1.1 p10). Jean II */
996 if((addr
->sir_name
[0] != '\0') ||
997 (addr
->sir_lsap_sel
>= 0x70)) {
998 /* Query remote LM-IAS using service name */
999 err
= irda_find_lsap_sel(self
, addr
->sir_name
);
1001 IRDA_DEBUG(0, "%s(), connect failed!\n", __func__
);
1005 /* Directly connect to the remote LSAP
1006 * specified by the sir_lsap field.
1007 * Please use with caution, in IrDA LSAPs are
1008 * dynamic and there is no "well-known" LSAP. */
1009 self
->dtsap_sel
= addr
->sir_lsap_sel
;
1013 /* Check if we have opened a local TSAP */
1015 irda_open_tsap(self
, LSAP_ANY
, addr
->sir_name
);
1017 /* Move to connecting socket, start sending Connect Requests */
1018 sock
->state
= SS_CONNECTING
;
1019 sk
->sk_state
= TCP_SYN_SENT
;
1021 /* Connect to remote device */
1022 err
= irttp_connect_request(self
->tsap
, self
->dtsap_sel
,
1023 self
->saddr
, self
->daddr
, NULL
,
1024 self
->max_sdu_size_rx
, NULL
);
1026 IRDA_DEBUG(0, "%s(), connect failed!\n", __func__
);
1031 if (sk
->sk_state
!= TCP_ESTABLISHED
&& (flags
& O_NONBLOCK
))
1032 return -EINPROGRESS
;
1034 if (wait_event_interruptible(*(sk
->sk_sleep
),
1035 (sk
->sk_state
!= TCP_SYN_SENT
)))
1036 return -ERESTARTSYS
;
1038 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
1039 sock
->state
= SS_UNCONNECTED
;
1040 err
= sock_error(sk
);
1041 return err
? err
: -ECONNRESET
;
1044 sock
->state
= SS_CONNECTED
;
1046 /* At this point, IrLMP has assigned our source address */
1047 self
->saddr
= irttp_get_saddr(self
->tsap
);
1052 static struct proto irda_proto
= {
1054 .owner
= THIS_MODULE
,
1055 .obj_size
= sizeof(struct irda_sock
),
1059 * Function irda_create (sock, protocol)
1061 * Create IrDA socket
1064 static int irda_create(struct net
*net
, struct socket
*sock
, int protocol
)
1067 struct irda_sock
*self
;
1069 IRDA_DEBUG(2, "%s()\n", __func__
);
1071 if (net
!= &init_net
)
1072 return -EAFNOSUPPORT
;
1074 /* Check for valid socket type */
1075 switch (sock
->type
) {
1076 case SOCK_STREAM
: /* For TTP connections with SAR disabled */
1077 case SOCK_SEQPACKET
: /* For TTP connections with SAR enabled */
1078 case SOCK_DGRAM
: /* For TTP Unitdata or LMP Ultra transfers */
1081 return -ESOCKTNOSUPPORT
;
1084 /* Allocate networking socket */
1085 sk
= sk_alloc(net
, PF_IRDA
, GFP_ATOMIC
, &irda_proto
);
1090 IRDA_DEBUG(2, "%s() : self is %p\n", __func__
, self
);
1092 init_waitqueue_head(&self
->query_wait
);
1094 switch (sock
->type
) {
1096 sock
->ops
= &irda_stream_ops
;
1097 self
->max_sdu_size_rx
= TTP_SAR_DISABLE
;
1099 case SOCK_SEQPACKET
:
1100 sock
->ops
= &irda_seqpacket_ops
;
1101 self
->max_sdu_size_rx
= TTP_SAR_UNBOUND
;
1105 #ifdef CONFIG_IRDA_ULTRA
1106 case IRDAPROTO_ULTRA
:
1107 sock
->ops
= &irda_ultra_ops
;
1108 /* Initialise now, because we may send on unbound
1109 * sockets. Jean II */
1110 self
->max_data_size
= ULTRA_MAX_DATA
- LMP_PID_HEADER
;
1111 self
->max_header_size
= IRDA_MAX_HEADER
+ LMP_PID_HEADER
;
1113 #endif /* CONFIG_IRDA_ULTRA */
1114 case IRDAPROTO_UNITDATA
:
1115 sock
->ops
= &irda_dgram_ops
;
1116 /* We let Unitdata conn. be like seqpack conn. */
1117 self
->max_sdu_size_rx
= TTP_SAR_UNBOUND
;
1121 return -ESOCKTNOSUPPORT
;
1126 return -ESOCKTNOSUPPORT
;
1129 /* Initialise networking socket struct */
1130 sock_init_data(sock
, sk
); /* Note : set sk->sk_refcnt to 1 */
1131 sk
->sk_family
= PF_IRDA
;
1132 sk
->sk_protocol
= protocol
;
1134 /* Register as a client with IrLMP */
1135 self
->ckey
= irlmp_register_client(0, NULL
, NULL
, NULL
);
1136 self
->mask
.word
= 0xffff;
1137 self
->rx_flow
= self
->tx_flow
= FLOW_START
;
1138 self
->nslots
= DISCOVERY_DEFAULT_SLOTS
;
1139 self
->daddr
= DEV_ADDR_ANY
; /* Until we get connected */
1140 self
->saddr
= 0x0; /* so IrLMP assign us any link */
1145 * Function irda_destroy_socket (self)
1150 static void irda_destroy_socket(struct irda_sock
*self
)
1152 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
1154 /* Unregister with IrLMP */
1155 irlmp_unregister_client(self
->ckey
);
1156 irlmp_unregister_service(self
->skey
);
1158 /* Unregister with LM-IAS */
1159 if (self
->ias_obj
) {
1160 irias_delete_object(self
->ias_obj
);
1161 self
->ias_obj
= NULL
;
1165 iriap_close(self
->iriap
);
1170 irttp_disconnect_request(self
->tsap
, NULL
, P_NORMAL
);
1171 irttp_close_tsap(self
->tsap
);
1174 #ifdef CONFIG_IRDA_ULTRA
1176 irlmp_close_lsap(self
->lsap
);
1179 #endif /* CONFIG_IRDA_ULTRA */
1183 * Function irda_release (sock)
1185 static int irda_release(struct socket
*sock
)
1187 struct sock
*sk
= sock
->sk
;
1189 IRDA_DEBUG(2, "%s()\n", __func__
);
1195 sk
->sk_state
= TCP_CLOSE
;
1196 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
1197 sk
->sk_state_change(sk
);
1199 /* Destroy IrDA socket */
1200 irda_destroy_socket(irda_sk(sk
));
1206 /* Purge queues (see sock_init_data()) */
1207 skb_queue_purge(&sk
->sk_receive_queue
);
1209 /* Destroy networking socket if we are the last reference on it,
1210 * i.e. if(sk->sk_refcnt == 0) -> sk_free(sk) */
1213 /* Notes on socket locking and deallocation... - Jean II
1214 * In theory we should put pairs of sock_hold() / sock_put() to
1215 * prevent the socket to be destroyed whenever there is an
1216 * outstanding request or outstanding incoming packet or event.
1218 * 1) This may include IAS request, both in connect and getsockopt.
1219 * Unfortunately, the situation is a bit more messy than it looks,
1220 * because we close iriap and kfree(self) above.
1222 * 2) This may include selective discovery in getsockopt.
1223 * Same stuff as above, irlmp registration and self are gone.
1225 * Probably 1 and 2 may not matter, because it's all triggered
1226 * by a process and the socket layer already prevent the
1227 * socket to go away while a process is holding it, through
1228 * sockfd_put() and fput()...
1230 * 3) This may include deferred TSAP closure. In particular,
1231 * we may receive a late irda_disconnect_indication()
1232 * Fortunately, (tsap_cb *)->close_pend should protect us
1235 * I did some testing on SMP, and it looks solid. And the socket
1236 * memory leak is now gone... - Jean II
1243 * Function irda_sendmsg (iocb, sock, msg, len)
1245 * Send message down to TinyTP. This function is used for both STREAM and
1246 * SEQPACK services. This is possible since it forces the client to
1247 * fragment the message if necessary
1249 static int irda_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
1250 struct msghdr
*msg
, size_t len
)
1252 struct sock
*sk
= sock
->sk
;
1253 struct irda_sock
*self
;
1254 struct sk_buff
*skb
;
1257 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__
, len
);
1259 /* Note : socket.c set MSG_EOR on SEQPACKET sockets */
1260 if (msg
->msg_flags
& ~(MSG_DONTWAIT
| MSG_EOR
| MSG_CMSG_COMPAT
|
1264 if (sk
->sk_shutdown
& SEND_SHUTDOWN
)
1267 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1272 /* Check if IrTTP is wants us to slow down */
1274 if (wait_event_interruptible(*(sk
->sk_sleep
),
1275 (self
->tx_flow
!= FLOW_STOP
|| sk
->sk_state
!= TCP_ESTABLISHED
)))
1276 return -ERESTARTSYS
;
1278 /* Check if we are still connected */
1279 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1282 /* Check that we don't send out too big frames */
1283 if (len
> self
->max_data_size
) {
1284 IRDA_DEBUG(2, "%s(), Chopping frame from %zd to %d bytes!\n",
1285 __func__
, len
, self
->max_data_size
);
1286 len
= self
->max_data_size
;
1289 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
+ 16,
1290 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1294 skb_reserve(skb
, self
->max_header_size
+ 16);
1295 skb_reset_transport_header(skb
);
1297 err
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1304 * Just send the message to TinyTP, and let it deal with possible
1305 * errors. No need to duplicate all that here
1307 err
= irttp_data_request(self
->tsap
, skb
);
1309 IRDA_DEBUG(0, "%s(), err=%d\n", __func__
, err
);
1312 /* Tell client how much data we actually sent */
1316 return sk_stream_error(sk
, msg
->msg_flags
, err
);
1321 * Function irda_recvmsg_dgram (iocb, sock, msg, size, flags)
1323 * Try to receive message and copy it to user. The frame is discarded
1324 * after being read, regardless of how much the user actually read
1326 static int irda_recvmsg_dgram(struct kiocb
*iocb
, struct socket
*sock
,
1327 struct msghdr
*msg
, size_t size
, int flags
)
1329 struct sock
*sk
= sock
->sk
;
1330 struct irda_sock
*self
= irda_sk(sk
);
1331 struct sk_buff
*skb
;
1335 IRDA_DEBUG(4, "%s()\n", __func__
);
1337 if ((err
= sock_error(sk
)) < 0)
1340 skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
,
1341 flags
& MSG_DONTWAIT
, &err
);
1345 skb_reset_transport_header(skb
);
1348 if (copied
> size
) {
1349 IRDA_DEBUG(2, "%s(), Received truncated frame (%zd < %zd)!\n",
1350 __func__
, copied
, size
);
1352 msg
->msg_flags
|= MSG_TRUNC
;
1354 skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
1356 skb_free_datagram(sk
, skb
);
1359 * Check if we have previously stopped IrTTP and we know
1360 * have more free space in our rx_queue. If so tell IrTTP
1361 * to start delivering frames again before our rx_queue gets
1364 if (self
->rx_flow
== FLOW_STOP
) {
1365 if ((atomic_read(&sk
->sk_rmem_alloc
) << 2) <= sk
->sk_rcvbuf
) {
1366 IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__
);
1367 self
->rx_flow
= FLOW_START
;
1368 irttp_flow_request(self
->tsap
, FLOW_START
);
1376 * Function irda_recvmsg_stream (iocb, sock, msg, size, flags)
1378 static int irda_recvmsg_stream(struct kiocb
*iocb
, struct socket
*sock
,
1379 struct msghdr
*msg
, size_t size
, int flags
)
1381 struct sock
*sk
= sock
->sk
;
1382 struct irda_sock
*self
= irda_sk(sk
);
1383 int noblock
= flags
& MSG_DONTWAIT
;
1388 IRDA_DEBUG(3, "%s()\n", __func__
);
1390 if ((err
= sock_error(sk
)) < 0)
1393 if (sock
->flags
& __SO_ACCEPTCON
)
1396 if (flags
& MSG_OOB
)
1399 target
= sock_rcvlowat(sk
, flags
& MSG_WAITALL
, size
);
1400 timeo
= sock_rcvtimeo(sk
, noblock
);
1402 msg
->msg_namelen
= 0;
1406 struct sk_buff
*skb
= skb_dequeue(&sk
->sk_receive_queue
);
1412 if (copied
>= target
)
1415 prepare_to_wait_exclusive(sk
->sk_sleep
, &wait
, TASK_INTERRUPTIBLE
);
1418 * POSIX 1003.1g mandates this order.
1420 ret
= sock_error(sk
);
1423 else if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
1427 else if (signal_pending(current
))
1428 ret
= sock_intr_errno(timeo
);
1429 else if (sk
->sk_state
!= TCP_ESTABLISHED
)
1431 else if (skb_peek(&sk
->sk_receive_queue
) == NULL
)
1432 /* Wait process until data arrives */
1435 finish_wait(sk
->sk_sleep
, &wait
);
1439 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
1445 chunk
= min_t(unsigned int, skb
->len
, size
);
1446 if (memcpy_toiovec(msg
->msg_iov
, skb
->data
, chunk
)) {
1447 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1455 /* Mark read part of skb as used */
1456 if (!(flags
& MSG_PEEK
)) {
1457 skb_pull(skb
, chunk
);
1459 /* put the skb back if we didn't use it up.. */
1461 IRDA_DEBUG(1, "%s(), back on q!\n",
1463 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1469 IRDA_DEBUG(0, "%s() questionable!?\n", __func__
);
1471 /* put message back and return */
1472 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1478 * Check if we have previously stopped IrTTP and we know
1479 * have more free space in our rx_queue. If so tell IrTTP
1480 * to start delivering frames again before our rx_queue gets
1483 if (self
->rx_flow
== FLOW_STOP
) {
1484 if ((atomic_read(&sk
->sk_rmem_alloc
) << 2) <= sk
->sk_rcvbuf
) {
1485 IRDA_DEBUG(2, "%s(), Starting IrTTP\n", __func__
);
1486 self
->rx_flow
= FLOW_START
;
1487 irttp_flow_request(self
->tsap
, FLOW_START
);
1495 * Function irda_sendmsg_dgram (iocb, sock, msg, len)
1497 * Send message down to TinyTP for the unreliable sequenced
1501 static int irda_sendmsg_dgram(struct kiocb
*iocb
, struct socket
*sock
,
1502 struct msghdr
*msg
, size_t len
)
1504 struct sock
*sk
= sock
->sk
;
1505 struct irda_sock
*self
;
1506 struct sk_buff
*skb
;
1509 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__
, len
);
1511 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_CMSG_COMPAT
))
1514 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1515 send_sig(SIGPIPE
, current
, 0);
1519 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1525 * Check that we don't send out too big frames. This is an unreliable
1526 * service, so we have no fragmentation and no coalescence
1528 if (len
> self
->max_data_size
) {
1529 IRDA_DEBUG(0, "%s(), Warning to much data! "
1530 "Chopping frame from %zd to %d bytes!\n",
1531 __func__
, len
, self
->max_data_size
);
1532 len
= self
->max_data_size
;
1535 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
,
1536 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1540 skb_reserve(skb
, self
->max_header_size
);
1541 skb_reset_transport_header(skb
);
1543 IRDA_DEBUG(4, "%s(), appending user data\n", __func__
);
1545 err
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1552 * Just send the message to TinyTP, and let it deal with possible
1553 * errors. No need to duplicate all that here
1555 err
= irttp_udata_request(self
->tsap
, skb
);
1557 IRDA_DEBUG(0, "%s(), err=%d\n", __func__
, err
);
1564 * Function irda_sendmsg_ultra (iocb, sock, msg, len)
1566 * Send message down to IrLMP for the unreliable Ultra
1569 #ifdef CONFIG_IRDA_ULTRA
1570 static int irda_sendmsg_ultra(struct kiocb
*iocb
, struct socket
*sock
,
1571 struct msghdr
*msg
, size_t len
)
1573 struct sock
*sk
= sock
->sk
;
1574 struct irda_sock
*self
;
1577 struct sk_buff
*skb
;
1580 IRDA_DEBUG(4, "%s(), len=%zd\n", __func__
, len
);
1582 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_CMSG_COMPAT
))
1585 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1586 send_sig(SIGPIPE
, current
, 0);
1592 /* Check if an address was specified with sendto. Jean II */
1593 if (msg
->msg_name
) {
1594 struct sockaddr_irda
*addr
= (struct sockaddr_irda
*) msg
->msg_name
;
1595 /* Check address, extract pid. Jean II */
1596 if (msg
->msg_namelen
< sizeof(*addr
))
1598 if (addr
->sir_family
!= AF_IRDA
)
1601 pid
= addr
->sir_lsap_sel
;
1603 IRDA_DEBUG(0, "%s(), extension in PID not supp!\n", __func__
);
1607 /* Check that the socket is properly bound to an Ultra
1609 if ((self
->lsap
== NULL
) ||
1610 (sk
->sk_state
!= TCP_ESTABLISHED
)) {
1611 IRDA_DEBUG(0, "%s(), socket not bound to Ultra PID.\n",
1615 /* Use PID from socket */
1620 * Check that we don't send out too big frames. This is an unreliable
1621 * service, so we have no fragmentation and no coalescence
1623 if (len
> self
->max_data_size
) {
1624 IRDA_DEBUG(0, "%s(), Warning to much data! "
1625 "Chopping frame from %zd to %d bytes!\n",
1626 __func__
, len
, self
->max_data_size
);
1627 len
= self
->max_data_size
;
1630 skb
= sock_alloc_send_skb(sk
, len
+ self
->max_header_size
,
1631 msg
->msg_flags
& MSG_DONTWAIT
, &err
);
1635 skb_reserve(skb
, self
->max_header_size
);
1636 skb_reset_transport_header(skb
);
1638 IRDA_DEBUG(4, "%s(), appending user data\n", __func__
);
1640 err
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1646 err
= irlmp_connless_data_request((bound
? self
->lsap
: NULL
),
1649 IRDA_DEBUG(0, "%s(), err=%d\n", __func__
, err
);
1654 #endif /* CONFIG_IRDA_ULTRA */
1657 * Function irda_shutdown (sk, how)
1659 static int irda_shutdown(struct socket
*sock
, int how
)
1661 struct sock
*sk
= sock
->sk
;
1662 struct irda_sock
*self
= irda_sk(sk
);
1664 IRDA_DEBUG(1, "%s(%p)\n", __func__
, self
);
1666 sk
->sk_state
= TCP_CLOSE
;
1667 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
1668 sk
->sk_state_change(sk
);
1671 iriap_close(self
->iriap
);
1676 irttp_disconnect_request(self
->tsap
, NULL
, P_NORMAL
);
1677 irttp_close_tsap(self
->tsap
);
1681 /* A few cleanup so the socket look as good as new... */
1682 self
->rx_flow
= self
->tx_flow
= FLOW_START
; /* needed ??? */
1683 self
->daddr
= DEV_ADDR_ANY
; /* Until we get re-connected */
1684 self
->saddr
= 0x0; /* so IrLMP assign us any link */
1690 * Function irda_poll (file, sock, wait)
1692 static unsigned int irda_poll(struct file
* file
, struct socket
*sock
,
1695 struct sock
*sk
= sock
->sk
;
1696 struct irda_sock
*self
= irda_sk(sk
);
1699 IRDA_DEBUG(4, "%s()\n", __func__
);
1701 poll_wait(file
, sk
->sk_sleep
, wait
);
1704 /* Exceptional events? */
1707 if (sk
->sk_shutdown
& RCV_SHUTDOWN
) {
1708 IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__
);
1713 if (!skb_queue_empty(&sk
->sk_receive_queue
)) {
1714 IRDA_DEBUG(4, "Socket is readable\n");
1715 mask
|= POLLIN
| POLLRDNORM
;
1718 /* Connection-based need to check for termination and startup */
1719 switch (sk
->sk_type
) {
1721 if (sk
->sk_state
== TCP_CLOSE
) {
1722 IRDA_DEBUG(0, "%s(), POLLHUP\n", __func__
);
1726 if (sk
->sk_state
== TCP_ESTABLISHED
) {
1727 if ((self
->tx_flow
== FLOW_START
) &&
1730 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1734 case SOCK_SEQPACKET
:
1735 if ((self
->tx_flow
== FLOW_START
) &&
1738 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1742 if (sock_writeable(sk
))
1743 mask
|= POLLOUT
| POLLWRNORM
| POLLWRBAND
;
1752 * Function irda_ioctl (sock, cmd, arg)
1754 static int irda_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1756 struct sock
*sk
= sock
->sk
;
1758 IRDA_DEBUG(4, "%s(), cmd=%#x\n", __func__
, cmd
);
1764 amount
= sk
->sk_sndbuf
- sk_wmem_alloc_get(sk
);
1767 if (put_user(amount
, (unsigned int __user
*)arg
))
1773 struct sk_buff
*skb
;
1775 /* These two are safe on a single CPU system as only user tasks fiddle here */
1776 if ((skb
= skb_peek(&sk
->sk_receive_queue
)) != NULL
)
1778 if (put_user(amount
, (unsigned int __user
*)arg
))
1785 return sock_get_timestamp(sk
, (struct timeval __user
*)arg
);
1790 case SIOCGIFDSTADDR
:
1791 case SIOCSIFDSTADDR
:
1792 case SIOCGIFBRDADDR
:
1793 case SIOCSIFBRDADDR
:
1794 case SIOCGIFNETMASK
:
1795 case SIOCSIFNETMASK
:
1800 IRDA_DEBUG(1, "%s(), doing device ioctl!\n", __func__
);
1801 return -ENOIOCTLCMD
;
1808 #ifdef CONFIG_COMPAT
1810 * Function irda_ioctl (sock, cmd, arg)
1812 static int irda_compat_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1815 * All IRDA's ioctl are standard ones.
1817 return -ENOIOCTLCMD
;
1822 * Function irda_setsockopt (sock, level, optname, optval, optlen)
1824 * Set some options for the socket
1827 static int irda_setsockopt(struct socket
*sock
, int level
, int optname
,
1828 char __user
*optval
, int optlen
)
1830 struct sock
*sk
= sock
->sk
;
1831 struct irda_sock
*self
= irda_sk(sk
);
1832 struct irda_ias_set
*ias_opt
;
1833 struct ias_object
*ias_obj
;
1834 struct ias_attrib
* ias_attr
; /* Attribute in IAS object */
1835 int opt
, free_ias
= 0;
1837 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
1839 if (level
!= SOL_IRLMP
)
1840 return -ENOPROTOOPT
;
1844 /* The user want to add an attribute to an existing IAS object
1845 * (in the IAS database) or to create a new object with this
1847 * We first query IAS to know if the object exist, and then
1848 * create the right attribute...
1851 if (optlen
!= sizeof(struct irda_ias_set
))
1854 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
1855 if (ias_opt
== NULL
)
1858 /* Copy query to the driver. */
1859 if (copy_from_user(ias_opt
, optval
, optlen
)) {
1864 /* Find the object we target.
1865 * If the user gives us an empty string, we use the object
1866 * associated with this socket. This will workaround
1867 * duplicated class name - Jean II */
1868 if(ias_opt
->irda_class_name
[0] == '\0') {
1869 if(self
->ias_obj
== NULL
) {
1873 ias_obj
= self
->ias_obj
;
1875 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
1877 /* Only ROOT can mess with the global IAS database.
1878 * Users can only add attributes to the object associated
1879 * with the socket they own - Jean II */
1880 if((!capable(CAP_NET_ADMIN
)) &&
1881 ((ias_obj
== NULL
) || (ias_obj
!= self
->ias_obj
))) {
1886 /* If the object doesn't exist, create it */
1887 if(ias_obj
== (struct ias_object
*) NULL
) {
1888 /* Create a new object */
1889 ias_obj
= irias_new_object(ias_opt
->irda_class_name
,
1891 if (ias_obj
== NULL
) {
1898 /* Do we have the attribute already ? */
1899 if(irias_find_attrib(ias_obj
, ias_opt
->irda_attrib_name
)) {
1902 kfree(ias_obj
->name
);
1908 /* Look at the type */
1909 switch(ias_opt
->irda_attrib_type
) {
1911 /* Add an integer attribute */
1912 irias_add_integer_attrib(
1914 ias_opt
->irda_attrib_name
,
1915 ias_opt
->attribute
.irda_attrib_int
,
1920 if(ias_opt
->attribute
.irda_attrib_octet_seq
.len
>
1921 IAS_MAX_OCTET_STRING
) {
1924 kfree(ias_obj
->name
);
1930 /* Add an octet sequence attribute */
1931 irias_add_octseq_attrib(
1933 ias_opt
->irda_attrib_name
,
1934 ias_opt
->attribute
.irda_attrib_octet_seq
.octet_seq
,
1935 ias_opt
->attribute
.irda_attrib_octet_seq
.len
,
1939 /* Should check charset & co */
1941 /* The length is encoded in a __u8, and
1942 * IAS_MAX_STRING == 256, so there is no way
1943 * userspace can pass us a string too large.
1945 /* NULL terminate the string (avoid troubles) */
1946 ias_opt
->attribute
.irda_attrib_string
.string
[ias_opt
->attribute
.irda_attrib_string
.len
] = '\0';
1947 /* Add a string attribute */
1948 irias_add_string_attrib(
1950 ias_opt
->irda_attrib_name
,
1951 ias_opt
->attribute
.irda_attrib_string
.string
,
1957 kfree(ias_obj
->name
);
1962 irias_insert_object(ias_obj
);
1966 /* The user want to delete an object from our local IAS
1967 * database. We just need to query the IAS, check is the
1968 * object is not owned by the kernel and delete it.
1971 if (optlen
!= sizeof(struct irda_ias_set
))
1974 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
1975 if (ias_opt
== NULL
)
1978 /* Copy query to the driver. */
1979 if (copy_from_user(ias_opt
, optval
, optlen
)) {
1984 /* Find the object we target.
1985 * If the user gives us an empty string, we use the object
1986 * associated with this socket. This will workaround
1987 * duplicated class name - Jean II */
1988 if(ias_opt
->irda_class_name
[0] == '\0')
1989 ias_obj
= self
->ias_obj
;
1991 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
1992 if(ias_obj
== (struct ias_object
*) NULL
) {
1997 /* Only ROOT can mess with the global IAS database.
1998 * Users can only del attributes from the object associated
1999 * with the socket they own - Jean II */
2000 if((!capable(CAP_NET_ADMIN
)) &&
2001 ((ias_obj
== NULL
) || (ias_obj
!= self
->ias_obj
))) {
2006 /* Find the attribute (in the object) we target */
2007 ias_attr
= irias_find_attrib(ias_obj
,
2008 ias_opt
->irda_attrib_name
);
2009 if(ias_attr
== (struct ias_attrib
*) NULL
) {
2014 /* Check is the user space own the object */
2015 if(ias_attr
->value
->owner
!= IAS_USER_ATTR
) {
2016 IRDA_DEBUG(1, "%s(), attempting to delete a kernel attribute\n", __func__
);
2021 /* Remove the attribute (and maybe the object) */
2022 irias_delete_attrib(ias_obj
, ias_attr
, 1);
2025 case IRLMP_MAX_SDU_SIZE
:
2026 if (optlen
< sizeof(int))
2029 if (get_user(opt
, (int __user
*)optval
))
2032 /* Only possible for a seqpacket service (TTP with SAR) */
2033 if (sk
->sk_type
!= SOCK_SEQPACKET
) {
2034 IRDA_DEBUG(2, "%s(), setting max_sdu_size = %d\n",
2036 self
->max_sdu_size_rx
= opt
;
2038 IRDA_WARNING("%s: not allowed to set MAXSDUSIZE for this socket type!\n",
2040 return -ENOPROTOOPT
;
2043 case IRLMP_HINTS_SET
:
2044 if (optlen
< sizeof(int))
2047 /* The input is really a (__u8 hints[2]), easier as an int */
2048 if (get_user(opt
, (int __user
*)optval
))
2051 /* Unregister any old registration */
2053 irlmp_unregister_service(self
->skey
);
2055 self
->skey
= irlmp_register_service((__u16
) opt
);
2057 case IRLMP_HINT_MASK_SET
:
2058 /* As opposed to the previous case which set the hint bits
2059 * that we advertise, this one set the filter we use when
2060 * making a discovery (nodes which don't match any hint
2061 * bit in the mask are not reported).
2063 if (optlen
< sizeof(int))
2066 /* The input is really a (__u8 hints[2]), easier as an int */
2067 if (get_user(opt
, (int __user
*)optval
))
2070 /* Set the new hint mask */
2071 self
->mask
.word
= (__u16
) opt
;
2072 /* Mask out extension bits */
2073 self
->mask
.word
&= 0x7f7f;
2074 /* Check if no bits */
2075 if(!self
->mask
.word
)
2076 self
->mask
.word
= 0xFFFF;
2080 return -ENOPROTOOPT
;
2086 * Function irda_extract_ias_value(ias_opt, ias_value)
2088 * Translate internal IAS value structure to the user space representation
2090 * The external representation of IAS values, as we exchange them with
2091 * user space program is quite different from the internal representation,
2092 * as stored in the IAS database (because we need a flat structure for
2093 * crossing kernel boundary).
2094 * This function transform the former in the latter. We also check
2095 * that the value type is valid.
2097 static int irda_extract_ias_value(struct irda_ias_set
*ias_opt
,
2098 struct ias_value
*ias_value
)
2100 /* Look at the type */
2101 switch (ias_value
->type
) {
2103 /* Copy the integer */
2104 ias_opt
->attribute
.irda_attrib_int
= ias_value
->t
.integer
;
2108 ias_opt
->attribute
.irda_attrib_octet_seq
.len
= ias_value
->len
;
2110 memcpy(ias_opt
->attribute
.irda_attrib_octet_seq
.octet_seq
,
2111 ias_value
->t
.oct_seq
, ias_value
->len
);
2115 ias_opt
->attribute
.irda_attrib_string
.len
= ias_value
->len
;
2116 ias_opt
->attribute
.irda_attrib_string
.charset
= ias_value
->charset
;
2118 memcpy(ias_opt
->attribute
.irda_attrib_string
.string
,
2119 ias_value
->t
.string
, ias_value
->len
);
2120 /* NULL terminate the string (avoid troubles) */
2121 ias_opt
->attribute
.irda_attrib_string
.string
[ias_value
->len
] = '\0';
2128 /* Copy type over */
2129 ias_opt
->irda_attrib_type
= ias_value
->type
;
2135 * Function irda_getsockopt (sock, level, optname, optval, optlen)
2137 static int irda_getsockopt(struct socket
*sock
, int level
, int optname
,
2138 char __user
*optval
, int __user
*optlen
)
2140 struct sock
*sk
= sock
->sk
;
2141 struct irda_sock
*self
= irda_sk(sk
);
2142 struct irda_device_list list
;
2143 struct irda_device_info
*discoveries
;
2144 struct irda_ias_set
* ias_opt
; /* IAS get/query params */
2145 struct ias_object
* ias_obj
; /* Object in IAS */
2146 struct ias_attrib
* ias_attr
; /* Attribute in IAS object */
2147 int daddr
= DEV_ADDR_ANY
; /* Dest address for IAS queries */
2153 IRDA_DEBUG(2, "%s(%p)\n", __func__
, self
);
2155 if (level
!= SOL_IRLMP
)
2156 return -ENOPROTOOPT
;
2158 if (get_user(len
, optlen
))
2165 case IRLMP_ENUMDEVICES
:
2166 /* Ask lmp for the current discovery log */
2167 discoveries
= irlmp_get_discoveries(&list
.len
, self
->mask
.word
,
2169 /* Check if the we got some results */
2170 if (discoveries
== NULL
)
2171 return -EAGAIN
; /* Didn't find any devices */
2174 /* Write total list length back to client */
2175 if (copy_to_user(optval
, &list
,
2176 sizeof(struct irda_device_list
) -
2177 sizeof(struct irda_device_info
)))
2180 /* Offset to first device entry */
2181 offset
= sizeof(struct irda_device_list
) -
2182 sizeof(struct irda_device_info
);
2184 /* Copy the list itself - watch for overflow */
2190 total
= offset
+ (list
.len
* sizeof(struct irda_device_info
));
2193 if (copy_to_user(optval
+offset
, discoveries
, total
- offset
))
2196 /* Write total number of bytes used back to client */
2197 if (put_user(total
, optlen
))
2200 /* Free up our buffer */
2205 case IRLMP_MAX_SDU_SIZE
:
2206 val
= self
->max_data_size
;
2208 if (put_user(len
, optlen
))
2211 if (copy_to_user(optval
, &val
, len
))
2215 /* The user want an object from our local IAS database.
2216 * We just need to query the IAS and return the value
2219 /* Check that the user has allocated the right space for us */
2220 if (len
!= sizeof(struct irda_ias_set
))
2223 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2224 if (ias_opt
== NULL
)
2227 /* Copy query to the driver. */
2228 if (copy_from_user(ias_opt
, optval
, len
)) {
2233 /* Find the object we target.
2234 * If the user gives us an empty string, we use the object
2235 * associated with this socket. This will workaround
2236 * duplicated class name - Jean II */
2237 if(ias_opt
->irda_class_name
[0] == '\0')
2238 ias_obj
= self
->ias_obj
;
2240 ias_obj
= irias_find_object(ias_opt
->irda_class_name
);
2241 if(ias_obj
== (struct ias_object
*) NULL
) {
2246 /* Find the attribute (in the object) we target */
2247 ias_attr
= irias_find_attrib(ias_obj
,
2248 ias_opt
->irda_attrib_name
);
2249 if(ias_attr
== (struct ias_attrib
*) NULL
) {
2254 /* Translate from internal to user structure */
2255 err
= irda_extract_ias_value(ias_opt
, ias_attr
->value
);
2261 /* Copy reply to the user */
2262 if (copy_to_user(optval
, ias_opt
,
2263 sizeof(struct irda_ias_set
))) {
2267 /* Note : don't need to put optlen, we checked it */
2270 case IRLMP_IAS_QUERY
:
2271 /* The user want an object from a remote IAS database.
2272 * We need to use IAP to query the remote database and
2273 * then wait for the answer to come back. */
2275 /* Check that the user has allocated the right space for us */
2276 if (len
!= sizeof(struct irda_ias_set
))
2279 ias_opt
= kmalloc(sizeof(struct irda_ias_set
), GFP_ATOMIC
);
2280 if (ias_opt
== NULL
)
2283 /* Copy query to the driver. */
2284 if (copy_from_user(ias_opt
, optval
, len
)) {
2289 /* At this point, there are two cases...
2290 * 1) the socket is connected - that's the easy case, we
2291 * just query the device we are connected to...
2292 * 2) the socket is not connected - the user doesn't want
2293 * to connect and/or may not have a valid service name
2294 * (so can't create a fake connection). In this case,
2295 * we assume that the user pass us a valid destination
2296 * address in the requesting structure...
2298 if(self
->daddr
!= DEV_ADDR_ANY
) {
2299 /* We are connected - reuse known daddr */
2300 daddr
= self
->daddr
;
2302 /* We are not connected, we must specify a valid
2303 * destination address */
2304 daddr
= ias_opt
->daddr
;
2305 if((!daddr
) || (daddr
== DEV_ADDR_ANY
)) {
2311 /* Check that we can proceed with IAP */
2313 IRDA_WARNING("%s: busy with a previous query\n",
2319 self
->iriap
= iriap_open(LSAP_ANY
, IAS_CLIENT
, self
,
2320 irda_getvalue_confirm
);
2322 if (self
->iriap
== NULL
) {
2327 /* Treat unexpected wakeup as disconnect */
2328 self
->errno
= -EHOSTUNREACH
;
2330 /* Query remote LM-IAS */
2331 iriap_getvaluebyclass_request(self
->iriap
,
2333 ias_opt
->irda_class_name
,
2334 ias_opt
->irda_attrib_name
);
2336 /* Wait for answer, if not yet finished (or failed) */
2337 if (wait_event_interruptible(self
->query_wait
,
2338 (self
->iriap
== NULL
))) {
2339 /* pending request uses copy of ias_opt-content
2340 * we can free it regardless! */
2342 /* Treat signals as disconnect */
2343 return -EHOSTUNREACH
;
2346 /* Check what happened */
2350 /* Requested object/attribute doesn't exist */
2351 if((self
->errno
== IAS_CLASS_UNKNOWN
) ||
2352 (self
->errno
== IAS_ATTRIB_UNKNOWN
))
2353 return (-EADDRNOTAVAIL
);
2355 return (-EHOSTUNREACH
);
2358 /* Translate from internal to user structure */
2359 err
= irda_extract_ias_value(ias_opt
, self
->ias_result
);
2360 if (self
->ias_result
)
2361 irias_delete_value(self
->ias_result
);
2367 /* Copy reply to the user */
2368 if (copy_to_user(optval
, ias_opt
,
2369 sizeof(struct irda_ias_set
))) {
2373 /* Note : don't need to put optlen, we checked it */
2376 case IRLMP_WAITDEVICE
:
2377 /* This function is just another way of seeing life ;-)
2378 * IRLMP_ENUMDEVICES assumes that you have a static network,
2379 * and that you just want to pick one of the devices present.
2380 * On the other hand, in here we assume that no device is
2381 * present and that at some point in the future a device will
2382 * come into range. When this device arrive, we just wake
2383 * up the caller, so that he has time to connect to it before
2384 * the device goes away...
2385 * Note : once the node has been discovered for more than a
2386 * few second, it won't trigger this function, unless it
2387 * goes away and come back changes its hint bits (so we
2388 * might call it IRLMP_WAITNEWDEVICE).
2391 /* Check that the user is passing us an int */
2392 if (len
!= sizeof(int))
2394 /* Get timeout in ms (max time we block the caller) */
2395 if (get_user(val
, (int __user
*)optval
))
2398 /* Tell IrLMP we want to be notified */
2399 irlmp_update_client(self
->ckey
, self
->mask
.word
,
2400 irda_selective_discovery_indication
,
2401 NULL
, (void *) self
);
2403 /* Do some discovery (and also return cached results) */
2404 irlmp_discovery_request(self
->nslots
);
2406 /* Wait until a node is discovered */
2407 if (!self
->cachedaddr
) {
2410 IRDA_DEBUG(1, "%s(), nothing discovered yet, going to sleep...\n", __func__
);
2412 /* Set watchdog timer to expire in <val> ms. */
2414 setup_timer(&self
->watchdog
, irda_discovery_timeout
,
2415 (unsigned long)self
);
2416 self
->watchdog
.expires
= jiffies
+ (val
* HZ
/1000);
2417 add_timer(&(self
->watchdog
));
2419 /* Wait for IR-LMP to call us back */
2420 __wait_event_interruptible(self
->query_wait
,
2421 (self
->cachedaddr
!= 0 || self
->errno
== -ETIME
),
2424 /* If watchdog is still activated, kill it! */
2425 if(timer_pending(&(self
->watchdog
)))
2426 del_timer(&(self
->watchdog
));
2428 IRDA_DEBUG(1, "%s(), ...waking up !\n", __func__
);
2434 IRDA_DEBUG(1, "%s(), found immediately !\n",
2437 /* Tell IrLMP that we have been notified */
2438 irlmp_update_client(self
->ckey
, self
->mask
.word
,
2441 /* Check if the we got some results */
2442 if (!self
->cachedaddr
)
2443 return -EAGAIN
; /* Didn't find any devices */
2444 daddr
= self
->cachedaddr
;
2446 self
->cachedaddr
= 0;
2448 /* We return the daddr of the device that trigger the
2449 * wakeup. As irlmp pass us only the new devices, we
2450 * are sure that it's not an old device.
2451 * If the user want more details, he should query
2452 * the whole discovery log and pick one device...
2454 if (put_user(daddr
, (int __user
*)optval
))
2459 return -ENOPROTOOPT
;
2465 static struct net_proto_family irda_family_ops
= {
2467 .create
= irda_create
,
2468 .owner
= THIS_MODULE
,
2471 static const struct proto_ops
SOCKOPS_WRAPPED(irda_stream_ops
) = {
2473 .owner
= THIS_MODULE
,
2474 .release
= irda_release
,
2476 .connect
= irda_connect
,
2477 .socketpair
= sock_no_socketpair
,
2478 .accept
= irda_accept
,
2479 .getname
= irda_getname
,
2481 .ioctl
= irda_ioctl
,
2482 #ifdef CONFIG_COMPAT
2483 .compat_ioctl
= irda_compat_ioctl
,
2485 .listen
= irda_listen
,
2486 .shutdown
= irda_shutdown
,
2487 .setsockopt
= irda_setsockopt
,
2488 .getsockopt
= irda_getsockopt
,
2489 .sendmsg
= irda_sendmsg
,
2490 .recvmsg
= irda_recvmsg_stream
,
2491 .mmap
= sock_no_mmap
,
2492 .sendpage
= sock_no_sendpage
,
2495 static const struct proto_ops
SOCKOPS_WRAPPED(irda_seqpacket_ops
) = {
2497 .owner
= THIS_MODULE
,
2498 .release
= irda_release
,
2500 .connect
= irda_connect
,
2501 .socketpair
= sock_no_socketpair
,
2502 .accept
= irda_accept
,
2503 .getname
= irda_getname
,
2504 .poll
= datagram_poll
,
2505 .ioctl
= irda_ioctl
,
2506 #ifdef CONFIG_COMPAT
2507 .compat_ioctl
= irda_compat_ioctl
,
2509 .listen
= irda_listen
,
2510 .shutdown
= irda_shutdown
,
2511 .setsockopt
= irda_setsockopt
,
2512 .getsockopt
= irda_getsockopt
,
2513 .sendmsg
= irda_sendmsg
,
2514 .recvmsg
= irda_recvmsg_dgram
,
2515 .mmap
= sock_no_mmap
,
2516 .sendpage
= sock_no_sendpage
,
2519 static const struct proto_ops
SOCKOPS_WRAPPED(irda_dgram_ops
) = {
2521 .owner
= THIS_MODULE
,
2522 .release
= irda_release
,
2524 .connect
= irda_connect
,
2525 .socketpair
= sock_no_socketpair
,
2526 .accept
= irda_accept
,
2527 .getname
= irda_getname
,
2528 .poll
= datagram_poll
,
2529 .ioctl
= irda_ioctl
,
2530 #ifdef CONFIG_COMPAT
2531 .compat_ioctl
= irda_compat_ioctl
,
2533 .listen
= irda_listen
,
2534 .shutdown
= irda_shutdown
,
2535 .setsockopt
= irda_setsockopt
,
2536 .getsockopt
= irda_getsockopt
,
2537 .sendmsg
= irda_sendmsg_dgram
,
2538 .recvmsg
= irda_recvmsg_dgram
,
2539 .mmap
= sock_no_mmap
,
2540 .sendpage
= sock_no_sendpage
,
2543 #ifdef CONFIG_IRDA_ULTRA
2544 static const struct proto_ops
SOCKOPS_WRAPPED(irda_ultra_ops
) = {
2546 .owner
= THIS_MODULE
,
2547 .release
= irda_release
,
2549 .connect
= sock_no_connect
,
2550 .socketpair
= sock_no_socketpair
,
2551 .accept
= sock_no_accept
,
2552 .getname
= irda_getname
,
2553 .poll
= datagram_poll
,
2554 .ioctl
= irda_ioctl
,
2555 #ifdef CONFIG_COMPAT
2556 .compat_ioctl
= irda_compat_ioctl
,
2558 .listen
= sock_no_listen
,
2559 .shutdown
= irda_shutdown
,
2560 .setsockopt
= irda_setsockopt
,
2561 .getsockopt
= irda_getsockopt
,
2562 .sendmsg
= irda_sendmsg_ultra
,
2563 .recvmsg
= irda_recvmsg_dgram
,
2564 .mmap
= sock_no_mmap
,
2565 .sendpage
= sock_no_sendpage
,
2567 #endif /* CONFIG_IRDA_ULTRA */
2569 SOCKOPS_WRAP(irda_stream
, PF_IRDA
);
2570 SOCKOPS_WRAP(irda_seqpacket
, PF_IRDA
);
2571 SOCKOPS_WRAP(irda_dgram
, PF_IRDA
);
2572 #ifdef CONFIG_IRDA_ULTRA
2573 SOCKOPS_WRAP(irda_ultra
, PF_IRDA
);
2574 #endif /* CONFIG_IRDA_ULTRA */
2577 * Function irsock_init (pro)
2579 * Initialize IrDA protocol
2582 int __init
irsock_init(void)
2584 int rc
= proto_register(&irda_proto
, 0);
2587 rc
= sock_register(&irda_family_ops
);
2593 * Function irsock_cleanup (void)
2595 * Remove IrDA protocol
2598 void irsock_cleanup(void)
2600 sock_unregister(PF_IRDA
);
2601 proto_unregister(&irda_proto
);