1 /*********************************************************************
3 * Filename: irlap_frame.c
5 * Description: Build and transmit IrLAP frames
7 * Author: Dag Brattli <dagb@cs.uit.no>
8 * Created at: Tue Aug 19 10:27:26 1997
9 * Modified at: Wed Jan 5 08:59:04 2000
10 * Modified by: Dag Brattli <dagb@cs.uit.no>
12 * Copyright (c) 1998-2000 Dag Brattli <dagb@cs.uit.no>,
13 * All Rights Reserved.
14 * Copyright (c) 2000-2003 Jean Tourrilhes <jt@hpl.hp.com>
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation; either version 2 of
19 * the License, or (at your option) any later version.
21 * Neither Dag Brattli nor University of Tromsø admit liability nor
22 * provide warranty for any of this software. This material is
23 * provided "AS-IS" and at no charge.
25 ********************************************************************/
27 #include <linux/skbuff.h>
29 #include <linux/if_ether.h>
30 #include <linux/netdevice.h>
31 #include <linux/irda.h>
33 #include <net/pkt_sched.h>
36 #include <asm/byteorder.h>
38 #include <net/irda/irda.h>
39 #include <net/irda/irda_device.h>
40 #include <net/irda/irlap.h>
41 #include <net/irda/wrapper.h>
42 #include <net/irda/timer.h>
43 #include <net/irda/irlap_frame.h>
44 #include <net/irda/qos.h>
46 static void irlap_send_i_frame(struct irlap_cb
*self
, struct sk_buff
*skb
,
50 * Function irlap_insert_info (self, skb)
52 * Insert minimum turnaround time and speed information into the skb. We
53 * need to do this since it's per packet relevant information. Safe to
54 * have this function inlined since it's only called from one place
56 static inline void irlap_insert_info(struct irlap_cb
*self
,
59 struct irda_skb_cb
*cb
= (struct irda_skb_cb
*) skb
->cb
;
62 * Insert MTT (min. turn time) and speed into skb, so that the
63 * device driver knows which settings to use
65 cb
->magic
= LAP_MAGIC
;
66 cb
->mtt
= self
->mtt_required
;
67 cb
->next_speed
= self
->speed
;
70 self
->mtt_required
= 0;
73 * Delay equals negotiated BOFs count, plus the number of BOFs to
74 * force the negotiated minimum turnaround time
76 cb
->xbofs
= self
->bofs_count
;
77 cb
->next_xbofs
= self
->next_bofs
;
78 cb
->xbofs_delay
= self
->xbofs_delay
;
80 /* Reset XBOF's delay (used only for getting min turn time) */
81 self
->xbofs_delay
= 0;
82 /* Put the correct xbofs value for the next packet */
83 self
->bofs_count
= self
->next_bofs
;
87 * Function irlap_queue_xmit (self, skb)
89 * A little wrapper for dev_queue_xmit, so we can insert some common
92 void irlap_queue_xmit(struct irlap_cb
*self
, struct sk_buff
*skb
)
94 /* Some common init stuff */
95 skb
->dev
= self
->netdev
;
96 skb_reset_mac_header(skb
);
97 skb_reset_network_header(skb
);
98 skb_reset_transport_header(skb
);
99 skb
->protocol
= htons(ETH_P_IRDA
);
100 skb
->priority
= TC_PRIO_BESTEFFORT
;
102 irlap_insert_info(self
, skb
);
108 * Function irlap_send_snrm_cmd (void)
110 * Transmits a connect SNRM command frame
112 void irlap_send_snrm_frame(struct irlap_cb
*self
, struct qos_info
*qos
)
114 struct sk_buff
*tx_skb
;
115 struct snrm_frame
*frame
;
118 IRDA_ASSERT(self
!= NULL
, return;);
119 IRDA_ASSERT(self
->magic
== LAP_MAGIC
, return;);
122 tx_skb
= alloc_skb(sizeof(struct snrm_frame
) +
123 IRLAP_NEGOCIATION_PARAMS_LEN
,
128 frame
= (struct snrm_frame
*) skb_put(tx_skb
, 2);
130 /* Insert connection address field */
132 frame
->caddr
= CMD_FRAME
| CBROADCAST
;
134 frame
->caddr
= CMD_FRAME
| self
->caddr
;
136 /* Insert control field */
137 frame
->control
= SNRM_CMD
| PF_BIT
;
140 * If we are establishing a connection then insert QoS paramerters
143 skb_put(tx_skb
, 9); /* 25 left */
144 frame
->saddr
= cpu_to_le32(self
->saddr
);
145 frame
->daddr
= cpu_to_le32(self
->daddr
);
147 frame
->ncaddr
= self
->caddr
;
149 ret
= irlap_insert_qos_negotiation_params(self
, tx_skb
);
151 dev_kfree_skb(tx_skb
);
155 irlap_queue_xmit(self
, tx_skb
);
159 * Function irlap_recv_snrm_cmd (skb, info)
161 * Received SNRM (Set Normal Response Mode) command frame
164 static void irlap_recv_snrm_cmd(struct irlap_cb
*self
, struct sk_buff
*skb
,
165 struct irlap_info
*info
)
167 struct snrm_frame
*frame
;
169 if (pskb_may_pull(skb
,sizeof(struct snrm_frame
))) {
170 frame
= (struct snrm_frame
*) skb
->data
;
172 /* Copy the new connection address ignoring the C/R bit */
173 info
->caddr
= frame
->ncaddr
& 0xFE;
175 /* Check if the new connection address is valid */
176 if ((info
->caddr
== 0x00) || (info
->caddr
== 0xfe)) {
177 IRDA_DEBUG(3, "%s(), invalid connection address!\n",
182 /* Copy peer device address */
183 info
->daddr
= le32_to_cpu(frame
->saddr
);
184 info
->saddr
= le32_to_cpu(frame
->daddr
);
186 /* Only accept if addressed directly to us */
187 if (info
->saddr
!= self
->saddr
) {
188 IRDA_DEBUG(2, "%s(), not addressed to us!\n",
192 irlap_do_event(self
, RECV_SNRM_CMD
, skb
, info
);
194 /* Signal that this SNRM frame does not contain and I-field */
195 irlap_do_event(self
, RECV_SNRM_CMD
, skb
, NULL
);
200 * Function irlap_send_ua_response_frame (qos)
202 * Send UA (Unnumbered Acknowledgement) frame
205 void irlap_send_ua_response_frame(struct irlap_cb
*self
, struct qos_info
*qos
)
207 struct sk_buff
*tx_skb
;
208 struct ua_frame
*frame
;
211 IRDA_DEBUG(2, "%s() <%ld>\n", __FUNCTION__
, jiffies
);
213 IRDA_ASSERT(self
!= NULL
, return;);
214 IRDA_ASSERT(self
->magic
== LAP_MAGIC
, return;);
217 tx_skb
= alloc_skb(sizeof(struct ua_frame
) +
218 IRLAP_NEGOCIATION_PARAMS_LEN
,
223 frame
= (struct ua_frame
*) skb_put(tx_skb
, 10);
225 /* Build UA response */
226 frame
->caddr
= self
->caddr
;
227 frame
->control
= UA_RSP
| PF_BIT
;
229 frame
->saddr
= cpu_to_le32(self
->saddr
);
230 frame
->daddr
= cpu_to_le32(self
->daddr
);
232 /* Should we send QoS negotiation parameters? */
234 ret
= irlap_insert_qos_negotiation_params(self
, tx_skb
);
236 dev_kfree_skb(tx_skb
);
241 irlap_queue_xmit(self
, tx_skb
);
246 * Function irlap_send_dm_frame (void)
248 * Send disconnected mode (DM) frame
251 void irlap_send_dm_frame( struct irlap_cb
*self
)
253 struct sk_buff
*tx_skb
= NULL
;
254 struct dm_frame
*frame
;
256 IRDA_ASSERT(self
!= NULL
, return;);
257 IRDA_ASSERT(self
->magic
== LAP_MAGIC
, return;);
259 tx_skb
= alloc_skb(sizeof(struct dm_frame
), GFP_ATOMIC
);
263 frame
= (struct dm_frame
*)skb_put(tx_skb
, 2);
265 if (self
->state
== LAP_NDM
)
266 frame
->caddr
= CBROADCAST
;
268 frame
->caddr
= self
->caddr
;
270 frame
->control
= DM_RSP
| PF_BIT
;
272 irlap_queue_xmit(self
, tx_skb
);
276 * Function irlap_send_disc_frame (void)
278 * Send disconnect (DISC) frame
281 void irlap_send_disc_frame(struct irlap_cb
*self
)
283 struct sk_buff
*tx_skb
= NULL
;
284 struct disc_frame
*frame
;
286 IRDA_DEBUG(3, "%s()\n", __FUNCTION__
);
288 IRDA_ASSERT(self
!= NULL
, return;);
289 IRDA_ASSERT(self
->magic
== LAP_MAGIC
, return;);
291 tx_skb
= alloc_skb(sizeof(struct disc_frame
), GFP_ATOMIC
);
295 frame
= (struct disc_frame
*)skb_put(tx_skb
, 2);
297 frame
->caddr
= self
->caddr
| CMD_FRAME
;
298 frame
->control
= DISC_CMD
| PF_BIT
;
300 irlap_queue_xmit(self
, tx_skb
);
304 * Function irlap_send_discovery_xid_frame (S, s, command)
306 * Build and transmit a XID (eXchange station IDentifier) discovery
309 void irlap_send_discovery_xid_frame(struct irlap_cb
*self
, int S
, __u8 s
,
310 __u8 command
, discovery_t
*discovery
)
312 struct sk_buff
*tx_skb
= NULL
;
313 struct xid_frame
*frame
;
314 __u32 bcast
= BROADCAST
;
317 IRDA_DEBUG(4, "%s(), s=%d, S=%d, command=%d\n", __FUNCTION__
,
320 IRDA_ASSERT(self
!= NULL
, return;);
321 IRDA_ASSERT(self
->magic
== LAP_MAGIC
, return;);
322 IRDA_ASSERT(discovery
!= NULL
, return;);
324 tx_skb
= alloc_skb(sizeof(struct xid_frame
) + IRLAP_DISCOVERY_INFO_LEN
,
330 frame
= (struct xid_frame
*) tx_skb
->data
;
333 frame
->caddr
= CBROADCAST
| CMD_FRAME
;
334 frame
->control
= XID_CMD
| PF_BIT
;
336 frame
->caddr
= CBROADCAST
;
337 frame
->control
= XID_RSP
| PF_BIT
;
339 frame
->ident
= XID_FORMAT
;
341 frame
->saddr
= cpu_to_le32(self
->saddr
);
344 frame
->daddr
= cpu_to_le32(bcast
);
346 frame
->daddr
= cpu_to_le32(discovery
->data
.daddr
);
367 frame
->version
= 0x00;
370 * Provide info for final slot only in commands, and for all
371 * responses. Send the second byte of the hint only if the
372 * EXTENSION bit is set in the first byte.
374 if (!command
|| (frame
->slotnr
== 0xff)) {
377 if (discovery
->data
.hints
[0] & HINT_EXTENSION
) {
378 info
= skb_put(tx_skb
, 2);
379 info
[0] = discovery
->data
.hints
[0];
380 info
[1] = discovery
->data
.hints
[1];
382 info
= skb_put(tx_skb
, 1);
383 info
[0] = discovery
->data
.hints
[0];
385 info
= skb_put(tx_skb
, 1);
386 info
[0] = discovery
->data
.charset
;
388 len
= IRDA_MIN(discovery
->name_len
, skb_tailroom(tx_skb
));
389 info
= skb_put(tx_skb
, len
);
390 memcpy(info
, discovery
->data
.info
, len
);
392 irlap_queue_xmit(self
, tx_skb
);
396 * Function irlap_recv_discovery_xid_rsp (skb, info)
398 * Received a XID discovery response
401 static void irlap_recv_discovery_xid_rsp(struct irlap_cb
*self
,
403 struct irlap_info
*info
)
405 struct xid_frame
*xid
;
406 discovery_t
*discovery
= NULL
;
407 __u8
*discovery_info
;
410 IRDA_DEBUG(4, "%s()\n", __FUNCTION__
);
412 IRDA_ASSERT(self
!= NULL
, return;);
413 IRDA_ASSERT(self
->magic
== LAP_MAGIC
, return;);
415 if (!pskb_may_pull(skb
, sizeof(struct xid_frame
))) {
416 IRDA_ERROR("%s: frame too short!\n", __FUNCTION__
);
420 xid
= (struct xid_frame
*) skb
->data
;
422 info
->daddr
= le32_to_cpu(xid
->saddr
);
423 info
->saddr
= le32_to_cpu(xid
->daddr
);
425 /* Make sure frame is addressed to us */
426 if ((info
->saddr
!= self
->saddr
) && (info
->saddr
!= BROADCAST
)) {
427 IRDA_DEBUG(0, "%s(), frame is not addressed to us!\n",
432 if ((discovery
= kzalloc(sizeof(discovery_t
), GFP_ATOMIC
)) == NULL
) {
433 IRDA_WARNING("%s: kmalloc failed!\n", __FUNCTION__
);
437 discovery
->data
.daddr
= info
->daddr
;
438 discovery
->data
.saddr
= self
->saddr
;
439 discovery
->timestamp
= jiffies
;
441 IRDA_DEBUG(4, "%s(), daddr=%08x\n", __FUNCTION__
,
442 discovery
->data
.daddr
);
444 discovery_info
= skb_pull(skb
, sizeof(struct xid_frame
));
446 /* Get info returned from peer */
447 discovery
->data
.hints
[0] = discovery_info
[0];
448 if (discovery_info
[0] & HINT_EXTENSION
) {
449 IRDA_DEBUG(4, "EXTENSION\n");
450 discovery
->data
.hints
[1] = discovery_info
[1];
451 discovery
->data
.charset
= discovery_info
[2];
452 text
= (char *) &discovery_info
[3];
454 discovery
->data
.hints
[1] = 0;
455 discovery
->data
.charset
= discovery_info
[1];
456 text
= (char *) &discovery_info
[2];
459 * Terminate info string, should be safe since this is where the
462 skb
->data
[skb
->len
] = '\0';
463 strncpy(discovery
->data
.info
, text
, NICKNAME_MAX_LEN
);
464 discovery
->name_len
= strlen(discovery
->data
.info
);
466 info
->discovery
= discovery
;
468 irlap_do_event(self
, RECV_DISCOVERY_XID_RSP
, skb
, info
);
472 * Function irlap_recv_discovery_xid_cmd (skb, info)
474 * Received a XID discovery command
477 static void irlap_recv_discovery_xid_cmd(struct irlap_cb
*self
,
479 struct irlap_info
*info
)
481 struct xid_frame
*xid
;
482 discovery_t
*discovery
= NULL
;
483 __u8
*discovery_info
;
486 if (!pskb_may_pull(skb
, sizeof(struct xid_frame
))) {
487 IRDA_ERROR("%s: frame too short!\n", __FUNCTION__
);
491 xid
= (struct xid_frame
*) skb
->data
;
493 info
->daddr
= le32_to_cpu(xid
->saddr
);
494 info
->saddr
= le32_to_cpu(xid
->daddr
);
496 /* Make sure frame is addressed to us */
497 if ((info
->saddr
!= self
->saddr
) && (info
->saddr
!= BROADCAST
)) {
498 IRDA_DEBUG(0, "%s(), frame is not addressed to us!\n",
503 switch (xid
->flags
& 0x03) {
520 info
->s
= xid
->slotnr
;
522 discovery_info
= skb_pull(skb
, sizeof(struct xid_frame
));
525 * Check if last frame
527 if (info
->s
== 0xff) {
528 /* Check if things are sane at this point... */
529 if((discovery_info
== NULL
) ||
530 !pskb_may_pull(skb
, 3)) {
531 IRDA_ERROR("%s: discovery frame too short!\n",
537 * We now have some discovery info to deliver!
539 discovery
= kmalloc(sizeof(discovery_t
), GFP_ATOMIC
);
541 IRDA_WARNING("%s: unable to malloc!\n", __FUNCTION__
);
545 discovery
->data
.daddr
= info
->daddr
;
546 discovery
->data
.saddr
= self
->saddr
;
547 discovery
->timestamp
= jiffies
;
549 discovery
->data
.hints
[0] = discovery_info
[0];
550 if (discovery_info
[0] & HINT_EXTENSION
) {
551 discovery
->data
.hints
[1] = discovery_info
[1];
552 discovery
->data
.charset
= discovery_info
[2];
553 text
= (char *) &discovery_info
[3];
555 discovery
->data
.hints
[1] = 0;
556 discovery
->data
.charset
= discovery_info
[1];
557 text
= (char *) &discovery_info
[2];
560 * Terminate string, should be safe since this is where the
563 skb
->data
[skb
->len
] = '\0';
564 strncpy(discovery
->data
.info
, text
, NICKNAME_MAX_LEN
);
565 discovery
->name_len
= strlen(discovery
->data
.info
);
567 info
->discovery
= discovery
;
569 info
->discovery
= NULL
;
571 irlap_do_event(self
, RECV_DISCOVERY_XID_CMD
, skb
, info
);
575 * Function irlap_send_rr_frame (self, command)
577 * Build and transmit RR (Receive Ready) frame. Notice that it is currently
578 * only possible to send RR frames with the poll bit set.
580 void irlap_send_rr_frame(struct irlap_cb
*self
, int command
)
582 struct sk_buff
*tx_skb
;
583 struct rr_frame
*frame
;
585 tx_skb
= alloc_skb(sizeof(struct rr_frame
), GFP_ATOMIC
);
589 frame
= (struct rr_frame
*)skb_put(tx_skb
, 2);
591 frame
->caddr
= self
->caddr
;
592 frame
->caddr
|= (command
) ? CMD_FRAME
: 0;
594 frame
->control
= RR
| PF_BIT
| (self
->vr
<< 5);
596 irlap_queue_xmit(self
, tx_skb
);
600 * Function irlap_send_rd_frame (self)
602 * Request disconnect. Used by a secondary station to request the
603 * disconnection of the link.
605 void irlap_send_rd_frame(struct irlap_cb
*self
)
607 struct sk_buff
*tx_skb
;
608 struct rd_frame
*frame
;
610 tx_skb
= alloc_skb(sizeof(struct rd_frame
), GFP_ATOMIC
);
614 frame
= (struct rd_frame
*)skb_put(tx_skb
, 2);
616 frame
->caddr
= self
->caddr
;
617 frame
->caddr
= RD_RSP
| PF_BIT
;
619 irlap_queue_xmit(self
, tx_skb
);
623 * Function irlap_recv_rr_frame (skb, info)
625 * Received RR (Receive Ready) frame from peer station, no harm in
626 * making it inline since its called only from one single place
627 * (irlap_driver_rcv).
629 static inline void irlap_recv_rr_frame(struct irlap_cb
*self
,
631 struct irlap_info
*info
, int command
)
633 info
->nr
= skb
->data
[1] >> 5;
635 /* Check if this is a command or a response frame */
637 irlap_do_event(self
, RECV_RR_CMD
, skb
, info
);
639 irlap_do_event(self
, RECV_RR_RSP
, skb
, info
);
643 * Function irlap_recv_rnr_frame (self, skb, info)
645 * Received RNR (Receive Not Ready) frame from peer station
648 static void irlap_recv_rnr_frame(struct irlap_cb
*self
, struct sk_buff
*skb
,
649 struct irlap_info
*info
, int command
)
651 info
->nr
= skb
->data
[1] >> 5;
653 IRDA_DEBUG(4, "%s(), nr=%d, %ld\n", __FUNCTION__
, info
->nr
, jiffies
);
656 irlap_do_event(self
, RECV_RNR_CMD
, skb
, info
);
658 irlap_do_event(self
, RECV_RNR_RSP
, skb
, info
);
661 static void irlap_recv_rej_frame(struct irlap_cb
*self
, struct sk_buff
*skb
,
662 struct irlap_info
*info
, int command
)
664 IRDA_DEBUG(0, "%s()\n", __FUNCTION__
);
666 info
->nr
= skb
->data
[1] >> 5;
668 /* Check if this is a command or a response frame */
670 irlap_do_event(self
, RECV_REJ_CMD
, skb
, info
);
672 irlap_do_event(self
, RECV_REJ_RSP
, skb
, info
);
675 static void irlap_recv_srej_frame(struct irlap_cb
*self
, struct sk_buff
*skb
,
676 struct irlap_info
*info
, int command
)
678 IRDA_DEBUG(0, "%s()\n", __FUNCTION__
);
680 info
->nr
= skb
->data
[1] >> 5;
682 /* Check if this is a command or a response frame */
684 irlap_do_event(self
, RECV_SREJ_CMD
, skb
, info
);
686 irlap_do_event(self
, RECV_SREJ_RSP
, skb
, info
);
689 static void irlap_recv_disc_frame(struct irlap_cb
*self
, struct sk_buff
*skb
,
690 struct irlap_info
*info
, int command
)
692 IRDA_DEBUG(2, "%s()\n", __FUNCTION__
);
694 /* Check if this is a command or a response frame */
696 irlap_do_event(self
, RECV_DISC_CMD
, skb
, info
);
698 irlap_do_event(self
, RECV_RD_RSP
, skb
, info
);
702 * Function irlap_recv_ua_frame (skb, frame)
704 * Received UA (Unnumbered Acknowledgement) frame
707 static inline void irlap_recv_ua_frame(struct irlap_cb
*self
,
709 struct irlap_info
*info
)
711 irlap_do_event(self
, RECV_UA_RSP
, skb
, info
);
715 * Function irlap_send_data_primary(self, skb)
717 * Send I-frames as the primary station but without the poll bit set
720 void irlap_send_data_primary(struct irlap_cb
*self
, struct sk_buff
*skb
)
722 struct sk_buff
*tx_skb
;
724 if (skb
->data
[1] == I_FRAME
) {
727 * Insert frame sequence number (Vs) in control field before
728 * inserting into transmit window queue.
730 skb
->data
[1] = I_FRAME
| (self
->vs
<< 1);
733 * Insert frame in store, in case of retransmissions
734 * Increase skb reference count, see irlap_do_event()
737 skb_queue_tail(&self
->wx_list
, skb
);
740 tx_skb
= skb_clone(skb
, GFP_ATOMIC
);
741 if (tx_skb
== NULL
) {
745 self
->vs
= (self
->vs
+ 1) % 8;
746 self
->ack_required
= FALSE
;
749 irlap_send_i_frame( self
, tx_skb
, CMD_FRAME
);
751 IRDA_DEBUG(4, "%s(), sending unreliable frame\n", __FUNCTION__
);
752 irlap_send_ui_frame(self
, skb_get(skb
), self
->caddr
, CMD_FRAME
);
757 * Function irlap_send_data_primary_poll (self, skb)
759 * Send I(nformation) frame as primary with poll bit set
761 void irlap_send_data_primary_poll(struct irlap_cb
*self
, struct sk_buff
*skb
)
763 struct sk_buff
*tx_skb
;
764 int transmission_time
;
767 del_timer(&self
->poll_timer
);
769 /* Is this reliable or unreliable data? */
770 if (skb
->data
[1] == I_FRAME
) {
773 * Insert frame sequence number (Vs) in control field before
774 * inserting into transmit window queue.
776 skb
->data
[1] = I_FRAME
| (self
->vs
<< 1);
779 * Insert frame in store, in case of retransmissions
780 * Increase skb reference count, see irlap_do_event()
783 skb_queue_tail(&self
->wx_list
, skb
);
786 tx_skb
= skb_clone(skb
, GFP_ATOMIC
);
787 if (tx_skb
== NULL
) {
792 * Set poll bit if necessary. We do this to the copied
793 * skb, since retransmitted need to set or clear the poll
794 * bit depending on when they are sent.
796 tx_skb
->data
[1] |= PF_BIT
;
798 self
->vs
= (self
->vs
+ 1) % 8;
799 self
->ack_required
= FALSE
;
801 irlap_next_state(self
, LAP_NRM_P
);
802 irlap_send_i_frame(self
, tx_skb
, CMD_FRAME
);
804 IRDA_DEBUG(4, "%s(), sending unreliable frame\n", __FUNCTION__
);
806 if (self
->ack_required
) {
807 irlap_send_ui_frame(self
, skb_get(skb
), self
->caddr
, CMD_FRAME
);
808 irlap_next_state(self
, LAP_NRM_P
);
809 irlap_send_rr_frame(self
, CMD_FRAME
);
810 self
->ack_required
= FALSE
;
812 skb
->data
[1] |= PF_BIT
;
813 irlap_next_state(self
, LAP_NRM_P
);
814 irlap_send_ui_frame(self
, skb_get(skb
), self
->caddr
, CMD_FRAME
);
818 /* How much time we took for transmission of all frames.
819 * We don't know, so let assume we used the full window. Jean II */
820 transmission_time
= self
->final_timeout
;
822 /* Reset parameter so that we can fill next window */
823 self
->window
= self
->window_size
;
825 #ifdef CONFIG_IRDA_DYNAMIC_WINDOW
826 /* Remove what we have not used. Just do a prorata of the
827 * bytes left in window to window capacity.
828 * See max_line_capacities[][] in qos.c for details. Jean II */
829 transmission_time
-= (self
->final_timeout
* self
->bytes_left
830 / self
->line_capacity
);
831 IRDA_DEBUG(4, "%s() adjusting transmission_time : ft=%d, bl=%d, lc=%d -> tt=%d\n", __FUNCTION__
, self
->final_timeout
, self
->bytes_left
, self
->line_capacity
, transmission_time
);
833 /* We are allowed to transmit a maximum number of bytes again. */
834 self
->bytes_left
= self
->line_capacity
;
835 #endif /* CONFIG_IRDA_DYNAMIC_WINDOW */
838 * The network layer has a intermediate buffer between IrLAP
839 * and the IrDA driver which can contain 8 frames. So, even
840 * though IrLAP is currently sending the *last* frame of the
841 * tx-window, the driver most likely has only just started
842 * sending the *first* frame of the same tx-window.
843 * I.e. we are always at the very begining of or Tx window.
844 * Now, we are supposed to set the final timer from the end
845 * of our tx-window to let the other peer reply. So, we need
846 * to add extra time to compensate for the fact that we
847 * are really at the start of tx-window, otherwise the final timer
848 * might expire before he can answer...
851 irlap_start_final_timer(self
, self
->final_timeout
+ transmission_time
);
854 * The clever amongst you might ask why we do this adjustement
855 * only here, and not in all the other cases in irlap_event.c.
856 * In all those other case, we only send a very short management
857 * frame (few bytes), so the adjustement would be lost in the
859 * The exception of course is irlap_resend_rejected_frame().
864 * Function irlap_send_data_secondary_final (self, skb)
866 * Send I(nformation) frame as secondary with final bit set
869 void irlap_send_data_secondary_final(struct irlap_cb
*self
,
872 struct sk_buff
*tx_skb
= NULL
;
874 IRDA_ASSERT(self
!= NULL
, return;);
875 IRDA_ASSERT(self
->magic
== LAP_MAGIC
, return;);
876 IRDA_ASSERT(skb
!= NULL
, return;);
878 /* Is this reliable or unreliable data? */
879 if (skb
->data
[1] == I_FRAME
) {
882 * Insert frame sequence number (Vs) in control field before
883 * inserting into transmit window queue.
885 skb
->data
[1] = I_FRAME
| (self
->vs
<< 1);
888 * Insert frame in store, in case of retransmissions
889 * Increase skb reference count, see irlap_do_event()
892 skb_queue_tail(&self
->wx_list
, skb
);
894 tx_skb
= skb_clone(skb
, GFP_ATOMIC
);
895 if (tx_skb
== NULL
) {
899 tx_skb
->data
[1] |= PF_BIT
;
901 self
->vs
= (self
->vs
+ 1) % 8;
902 self
->ack_required
= FALSE
;
904 irlap_send_i_frame(self
, tx_skb
, RSP_FRAME
);
906 if (self
->ack_required
) {
907 irlap_send_ui_frame(self
, skb_get(skb
), self
->caddr
, RSP_FRAME
);
908 irlap_send_rr_frame(self
, RSP_FRAME
);
909 self
->ack_required
= FALSE
;
911 skb
->data
[1] |= PF_BIT
;
912 irlap_send_ui_frame(self
, skb_get(skb
), self
->caddr
, RSP_FRAME
);
916 self
->window
= self
->window_size
;
917 #ifdef CONFIG_IRDA_DYNAMIC_WINDOW
918 /* We are allowed to transmit a maximum number of bytes again. */
919 self
->bytes_left
= self
->line_capacity
;
920 #endif /* CONFIG_IRDA_DYNAMIC_WINDOW */
922 irlap_start_wd_timer(self
, self
->wd_timeout
);
926 * Function irlap_send_data_secondary (self, skb)
928 * Send I(nformation) frame as secondary without final bit set
931 void irlap_send_data_secondary(struct irlap_cb
*self
, struct sk_buff
*skb
)
933 struct sk_buff
*tx_skb
= NULL
;
935 /* Is this reliable or unreliable data? */
936 if (skb
->data
[1] == I_FRAME
) {
939 * Insert frame sequence number (Vs) in control field before
940 * inserting into transmit window queue.
942 skb
->data
[1] = I_FRAME
| (self
->vs
<< 1);
945 * Insert frame in store, in case of retransmissions
946 * Increase skb reference count, see irlap_do_event()
949 skb_queue_tail(&self
->wx_list
, skb
);
951 tx_skb
= skb_clone(skb
, GFP_ATOMIC
);
952 if (tx_skb
== NULL
) {
956 self
->vs
= (self
->vs
+ 1) % 8;
957 self
->ack_required
= FALSE
;
960 irlap_send_i_frame(self
, tx_skb
, RSP_FRAME
);
962 irlap_send_ui_frame(self
, skb_get(skb
), self
->caddr
, RSP_FRAME
);
968 * Function irlap_resend_rejected_frames (nr)
970 * Resend frames which has not been acknowledged. Should be safe to
971 * traverse the list without locking it since this function will only be
972 * called from interrupt context (BH)
974 void irlap_resend_rejected_frames(struct irlap_cb
*self
, int command
)
976 struct sk_buff
*tx_skb
;
980 IRDA_ASSERT(self
!= NULL
, return;);
981 IRDA_ASSERT(self
->magic
== LAP_MAGIC
, return;);
983 /* Initialize variables */
984 count
= skb_queue_len(&self
->wx_list
);
986 /* Resend unacknowledged frame(s) */
987 skb
= skb_peek(&self
->wx_list
);
988 while (skb
!= NULL
) {
989 irlap_wait_min_turn_around(self
, &self
->qos_tx
);
991 /* We copy the skb to be retransmitted since we will have to
992 * modify it. Cloning will confuse packet sniffers
994 /* tx_skb = skb_clone( skb, GFP_ATOMIC); */
995 tx_skb
= skb_copy(skb
, GFP_ATOMIC
);
997 IRDA_DEBUG(0, "%s(), unable to copy\n", __FUNCTION__
);
1001 /* Clear old Nr field + poll bit */
1002 tx_skb
->data
[1] &= 0x0f;
1005 * Set poll bit on the last frame retransmitted
1008 tx_skb
->data
[1] |= PF_BIT
; /* Set p/f bit */
1010 tx_skb
->data
[1] &= ~PF_BIT
; /* Clear p/f bit */
1012 irlap_send_i_frame(self
, tx_skb
, command
);
1015 * If our skb is the last buffer in the list, then
1016 * we are finished, if not, move to the next sk-buffer
1018 if (skb
== skb_peek_tail(&self
->wx_list
))
1025 * We can now fill the window with additional data frames
1027 while (!skb_queue_empty(&self
->txq
)) {
1029 IRDA_DEBUG(0, "%s(), sending additional frames!\n", __FUNCTION__
);
1030 if (self
->window
> 0) {
1031 skb
= skb_dequeue( &self
->txq
);
1032 IRDA_ASSERT(skb
!= NULL
, return;);
1035 * If send window > 1 then send frame with pf
1038 if ((self
->window
> 1) &&
1039 !skb_queue_empty(&self
->txq
)) {
1040 irlap_send_data_primary(self
, skb
);
1042 irlap_send_data_primary_poll(self
, skb
);
1050 void irlap_resend_rejected_frame(struct irlap_cb
*self
, int command
)
1052 struct sk_buff
*tx_skb
;
1053 struct sk_buff
*skb
;
1055 IRDA_ASSERT(self
!= NULL
, return;);
1056 IRDA_ASSERT(self
->magic
== LAP_MAGIC
, return;);
1058 /* Resend unacknowledged frame(s) */
1059 skb
= skb_peek(&self
->wx_list
);
1061 irlap_wait_min_turn_around(self
, &self
->qos_tx
);
1063 /* We copy the skb to be retransmitted since we will have to
1064 * modify it. Cloning will confuse packet sniffers
1066 /* tx_skb = skb_clone( skb, GFP_ATOMIC); */
1067 tx_skb
= skb_copy(skb
, GFP_ATOMIC
);
1069 IRDA_DEBUG(0, "%s(), unable to copy\n", __FUNCTION__
);
1073 /* Clear old Nr field + poll bit */
1074 tx_skb
->data
[1] &= 0x0f;
1076 /* Set poll/final bit */
1077 tx_skb
->data
[1] |= PF_BIT
; /* Set p/f bit */
1079 irlap_send_i_frame(self
, tx_skb
, command
);
1084 * Function irlap_send_ui_frame (self, skb, command)
1086 * Contruct and transmit an Unnumbered Information (UI) frame
1089 void irlap_send_ui_frame(struct irlap_cb
*self
, struct sk_buff
*skb
,
1090 __u8 caddr
, int command
)
1092 IRDA_DEBUG(4, "%s()\n", __FUNCTION__
);
1094 IRDA_ASSERT(self
!= NULL
, return;);
1095 IRDA_ASSERT(self
->magic
== LAP_MAGIC
, return;);
1096 IRDA_ASSERT(skb
!= NULL
, return;);
1098 /* Insert connection address */
1099 skb
->data
[0] = caddr
| ((command
) ? CMD_FRAME
: 0);
1101 irlap_queue_xmit(self
, skb
);
1105 * Function irlap_send_i_frame (skb)
1107 * Contruct and transmit Information (I) frame
1109 static void irlap_send_i_frame(struct irlap_cb
*self
, struct sk_buff
*skb
,
1112 /* Insert connection address */
1113 skb
->data
[0] = self
->caddr
;
1114 skb
->data
[0] |= (command
) ? CMD_FRAME
: 0;
1116 /* Insert next to receive (Vr) */
1117 skb
->data
[1] |= (self
->vr
<< 5); /* insert nr */
1119 irlap_queue_xmit(self
, skb
);
1123 * Function irlap_recv_i_frame (skb, frame)
1125 * Receive and parse an I (Information) frame, no harm in making it inline
1126 * since it's called only from one single place (irlap_driver_rcv).
1128 static inline void irlap_recv_i_frame(struct irlap_cb
*self
,
1129 struct sk_buff
*skb
,
1130 struct irlap_info
*info
, int command
)
1132 info
->nr
= skb
->data
[1] >> 5; /* Next to receive */
1133 info
->pf
= skb
->data
[1] & PF_BIT
; /* Final bit */
1134 info
->ns
= (skb
->data
[1] >> 1) & 0x07; /* Next to send */
1136 /* Check if this is a command or a response frame */
1138 irlap_do_event(self
, RECV_I_CMD
, skb
, info
);
1140 irlap_do_event(self
, RECV_I_RSP
, skb
, info
);
1144 * Function irlap_recv_ui_frame (self, skb, info)
1146 * Receive and parse an Unnumbered Information (UI) frame
1149 static void irlap_recv_ui_frame(struct irlap_cb
*self
, struct sk_buff
*skb
,
1150 struct irlap_info
*info
)
1152 IRDA_DEBUG( 4, "%s()\n", __FUNCTION__
);
1154 info
->pf
= skb
->data
[1] & PF_BIT
; /* Final bit */
1156 irlap_do_event(self
, RECV_UI_FRAME
, skb
, info
);
1160 * Function irlap_recv_frmr_frame (skb, frame)
1162 * Received Frame Reject response.
1165 static void irlap_recv_frmr_frame(struct irlap_cb
*self
, struct sk_buff
*skb
,
1166 struct irlap_info
*info
)
1171 IRDA_DEBUG(0, "%s()\n", __FUNCTION__
);
1173 IRDA_ASSERT(self
!= NULL
, return;);
1174 IRDA_ASSERT(self
->magic
== LAP_MAGIC
, return;);
1175 IRDA_ASSERT(skb
!= NULL
, return;);
1176 IRDA_ASSERT(info
!= NULL
, return;);
1178 if (!pskb_may_pull(skb
, 4)) {
1179 IRDA_ERROR("%s: frame too short!\n", __FUNCTION__
);
1185 info
->nr
= frame
[2] >> 5; /* Next to receive */
1186 info
->pf
= frame
[2] & PF_BIT
; /* Final bit */
1187 info
->ns
= (frame
[2] >> 1) & 0x07; /* Next to send */
1189 w
= frame
[3] & 0x01;
1190 x
= frame
[3] & 0x02;
1191 y
= frame
[3] & 0x04;
1192 z
= frame
[3] & 0x08;
1195 IRDA_DEBUG(0, "Rejected control field is undefined or not "
1199 IRDA_DEBUG(0, "Rejected control field was invalid because it "
1200 "contained a non permitted I field.\n");
1203 IRDA_DEBUG(0, "Received I field exceeded the maximum negotiated "
1204 "for the existing connection or exceeded the maximum "
1205 "this station supports if no connection exists.\n");
1208 IRDA_DEBUG(0, "Rejected control field control field contained an "
1209 "invalid Nr count.\n");
1211 irlap_do_event(self
, RECV_FRMR_RSP
, skb
, info
);
1215 * Function irlap_send_test_frame (self, daddr)
1217 * Send a test frame response
1220 void irlap_send_test_frame(struct irlap_cb
*self
, __u8 caddr
, __u32 daddr
,
1221 struct sk_buff
*cmd
)
1223 struct sk_buff
*tx_skb
;
1224 struct test_frame
*frame
;
1227 tx_skb
= alloc_skb(cmd
->len
+ sizeof(struct test_frame
), GFP_ATOMIC
);
1231 /* Broadcast frames must include saddr and daddr fields */
1232 if (caddr
== CBROADCAST
) {
1233 frame
= (struct test_frame
*)
1234 skb_put(tx_skb
, sizeof(struct test_frame
));
1236 /* Insert the swapped addresses */
1237 frame
->saddr
= cpu_to_le32(self
->saddr
);
1238 frame
->daddr
= cpu_to_le32(daddr
);
1240 frame
= (struct test_frame
*) skb_put(tx_skb
, LAP_ADDR_HEADER
+ LAP_CTRL_HEADER
);
1242 frame
->caddr
= caddr
;
1243 frame
->control
= TEST_RSP
| PF_BIT
;
1246 info
= skb_put(tx_skb
, cmd
->len
);
1247 memcpy(info
, cmd
->data
, cmd
->len
);
1249 /* Return to sender */
1250 irlap_wait_min_turn_around(self
, &self
->qos_tx
);
1251 irlap_queue_xmit(self
, tx_skb
);
1255 * Function irlap_recv_test_frame (self, skb)
1257 * Receive a test frame
1260 static void irlap_recv_test_frame(struct irlap_cb
*self
, struct sk_buff
*skb
,
1261 struct irlap_info
*info
, int command
)
1263 struct test_frame
*frame
;
1265 IRDA_DEBUG(2, "%s()\n", __FUNCTION__
);
1267 if (!pskb_may_pull(skb
, sizeof(*frame
))) {
1268 IRDA_ERROR("%s: frame too short!\n", __FUNCTION__
);
1271 frame
= (struct test_frame
*) skb
->data
;
1273 /* Broadcast frames must carry saddr and daddr fields */
1274 if (info
->caddr
== CBROADCAST
) {
1275 if (skb
->len
< sizeof(struct test_frame
)) {
1276 IRDA_DEBUG(0, "%s() test frame too short!\n",
1281 /* Read and swap addresses */
1282 info
->daddr
= le32_to_cpu(frame
->saddr
);
1283 info
->saddr
= le32_to_cpu(frame
->daddr
);
1285 /* Make sure frame is addressed to us */
1286 if ((info
->saddr
!= self
->saddr
) &&
1287 (info
->saddr
!= BROADCAST
)) {
1293 irlap_do_event(self
, RECV_TEST_CMD
, skb
, info
);
1295 irlap_do_event(self
, RECV_TEST_RSP
, skb
, info
);
1299 * Function irlap_driver_rcv (skb, netdev, ptype)
1301 * Called when a frame is received. Dispatches the right receive function
1302 * for processing of the frame.
1304 * Note on skb management :
1305 * After calling the higher layers of the IrDA stack, we always
1306 * kfree() the skb, which drop the reference count (and potentially
1308 * If a higher layer of the stack want to keep the skb around (to put
1309 * in a queue or pass it to the higher layer), it will need to use
1310 * skb_get() to keep a reference on it. This is usually done at the
1311 * LMP level in irlmp.c.
1314 int irlap_driver_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
1315 struct packet_type
*ptype
, struct net_device
*orig_dev
)
1317 struct irlap_info info
;
1318 struct irlap_cb
*self
;
1322 /* FIXME: should we get our own field? */
1323 self
= (struct irlap_cb
*) dev
->atalk_ptr
;
1325 /* If the net device is down, then IrLAP is gone! */
1326 if (!self
|| self
->magic
!= LAP_MAGIC
) {
1331 /* We are no longer an "old" protocol, so we need to handle
1332 * share and non linear skbs. This should never happen, so
1333 * we don't need to be clever about it. Jean II */
1334 if ((skb
= skb_share_check(skb
, GFP_ATOMIC
)) == NULL
) {
1335 IRDA_ERROR("%s: can't clone shared skb!\n", __FUNCTION__
);
1340 /* Check if frame is large enough for parsing */
1341 if (!pskb_may_pull(skb
, 2)) {
1342 IRDA_ERROR("%s: frame too short!\n", __FUNCTION__
);
1347 command
= skb
->data
[0] & CMD_FRAME
;
1348 info
.caddr
= skb
->data
[0] & CBROADCAST
;
1350 info
.pf
= skb
->data
[1] & PF_BIT
;
1351 info
.control
= skb
->data
[1] & ~PF_BIT
; /* Mask away poll/final bit */
1353 control
= info
.control
;
1355 /* First we check if this frame has a valid connection address */
1356 if ((info
.caddr
!= self
->caddr
) && (info
.caddr
!= CBROADCAST
)) {
1357 IRDA_DEBUG(0, "%s(), wrong connection address!\n",
1362 * Optimize for the common case and check if the frame is an
1363 * I(nformation) frame. Only I-frames have bit 0 set to 0
1365 if (~control
& 0x01) {
1366 irlap_recv_i_frame(self
, skb
, &info
, command
);
1370 * We now check is the frame is an S(upervisory) frame. Only
1371 * S-frames have bit 0 set to 1 and bit 1 set to 0
1373 if (~control
& 0x02) {
1375 * Received S(upervisory) frame, check which frame type it is
1376 * only the first nibble is of interest
1378 switch (control
& 0x0f) {
1380 irlap_recv_rr_frame(self
, skb
, &info
, command
);
1383 irlap_recv_rnr_frame(self
, skb
, &info
, command
);
1386 irlap_recv_rej_frame(self
, skb
, &info
, command
);
1389 irlap_recv_srej_frame(self
, skb
, &info
, command
);
1392 IRDA_WARNING("%s: Unknown S-frame %02x received!\n",
1393 __FUNCTION__
, info
.control
);
1399 * This must be a C(ontrol) frame
1403 irlap_recv_discovery_xid_rsp(self
, skb
, &info
);
1406 irlap_recv_discovery_xid_cmd(self
, skb
, &info
);
1409 irlap_recv_snrm_cmd(self
, skb
, &info
);
1412 irlap_do_event(self
, RECV_DM_RSP
, skb
, &info
);
1414 case DISC_CMD
: /* And RD_RSP since they have the same value */
1415 irlap_recv_disc_frame(self
, skb
, &info
, command
);
1418 irlap_recv_test_frame(self
, skb
, &info
, command
);
1421 irlap_recv_ua_frame(self
, skb
, &info
);
1424 irlap_recv_frmr_frame(self
, skb
, &info
);
1427 irlap_recv_ui_frame(self
, skb
, &info
);
1430 IRDA_WARNING("%s: Unknown frame %02x received!\n",
1431 __FUNCTION__
, info
.control
);
1435 /* Always drop our reference on the skb */