Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 | /* * NET An implementation of the IEEE 802.2 LLC protocol for the * LINUX operating system. LLC is implemented as a set of * state machines and callbacks for higher networking layers. * * llc_sendpdu(), llc_sendipdu(), resend() + queue handling code * * Written by Tim Alpaerts, Tim_Alpaerts@toyota-motor-europe.com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. * * Changes * Alan Cox : Chainsawed into Linux format, style * Added llc_ to function names */ #include <linux/types.h> #include <linux/kernel.h> #include <linux/malloc.h> #include <linux/netdevice.h> #include <linux/skbuff.h> #include <net/p8022.h> #include <linux/stat.h> #include <asm/byteorder.h> #include <net/llc_frame.h> #include <net/llc.h> static unsigned char cntl_byte_encode[] = { 0x00, /* I_CMD */ 0x01, /* RR_CMD */ 0x05, /* RNR_CMD */ 0x09, /* REJ_CMD */ 0x43, /* DISC_CMD */ 0x7F, /* SABME_CMD */ 0x00, /* I_RSP */ 0x01, /* RR_RSP */ 0x05, /* RNR_RSP */ 0x09, /* REJ_RSP */ 0x63, /* UA_RSP */ 0x0F, /* DM_RSP */ 0x87, /* FRMR_RSP */ 0xFF, /* BAD_FRAME */ 0x03, /* UI_CMD */ 0xBF, /* XID_CMD */ 0xE3, /* TEST_CMD */ 0xBF, /* XID_RSP */ 0xE3 /* TEST_RSP */ }; static unsigned char fr_length_encode[] = { 0x04, /* I_CMD */ 0x04, /* RR_CMD */ 0x04, /* RNR_CMD */ 0x04, /* REJ_CMD */ 0x03, /* DISC_CMD */ 0x03, /* SABME_CMD */ 0x04, /* I_RSP */ 0x04, /* RR_RSP */ 0x04, /* RNR_RSP */ 0x04, /* REJ_RSP */ 0x03, /* UA_RSP */ 0x03, /* DM_RSP */ 0x03, /* FRMR_RSP */ 0x00, /* BAD_FRAME */ 0x03, /* UI_CMD */ 0x03, /* XID_CMD */ 0x03, /* TEST_CMD */ 0x03, /* XID_RSP */ 0x03 /* TEST_RSP */ }; static unsigned char cr_bit_encode[] = { 0x00, /* I_CMD */ 0x00, /* RR_CMD */ 0x00, /* RNR_CMD */ 0x00, /* REJ_CMD */ 0x00, /* DISC_CMD */ 0x00, /* SABME_CMD */ 0x01, /* I_RSP */ 0x01, /* RR_RSP */ 0x01, /* RNR_RSP */ 0x01, /* REJ_RSP */ 0x01, /* UA_RSP */ 0x01, /* DM_RSP */ 0x01, /* FRMR_RSP */ 0x00, /* BAD_FRAME */ 0x00, /* UI_CMD */ 0x00, /* XID_CMD */ 0x00, /* TEST_CMD */ 0x01, /* XID_RSP */ 0x01 /* TEST_RSP */ }; /* * Sendpdu() constructs an output frame in a new skb and * gives it to the MAC layer for transmision. * This function is not used to send I pdus. * No queues are updated here, nothing is saved for retransmission. * * Parameter pf controls both the poll/final bit and dsap * fields in the output pdu. * The dsap trick was needed to implement XID_CMD send with * zero dsap field as described in doc 6.6 item 1 of enum. */ void llc_sendpdu(llcptr lp, char type, char pf, int data_len, char *pdu_data) { frameptr fr; /* ptr to output pdu buffer */ unsigned short int fl; /* frame length == 802.3 "length" value */ struct sk_buff *skb; fl = data_len + fr_length_encode[(int)type]; skb = alloc_skb(16 + fl, GFP_ATOMIC); if (skb != NULL) { skb->dev = lp->dev; skb_reserve(skb, 16); fr = (frameptr) skb_put(skb, fl); memset(fr, 0, fl); /* * Construct 802.2 header */ if (pf & 0x02) fr->pdu_hdr.dsap = 0; else fr->pdu_hdr.dsap = lp->remote_sap; fr->pdu_hdr.ssap = lp->local_sap + cr_bit_encode[(int)type]; fr->pdu_cntl.byte1 = cntl_byte_encode[(int)type]; /* * Fill in pflag and seq nbrs: */ if (IS_SFRAME(fr)) { /* case S-frames */ if (pf & 0x01) fr->i_hdr.i_pflag = 1; fr->i_hdr.nr = lp->vr; } else { /* case U frames */ if (pf & 0x01) fr->u_hdr.u_pflag = 1; } if (data_len > 0) { /* append data if any */ if (IS_UFRAME(fr)) { memcpy(fr->u_hdr.u_info, pdu_data, data_len); } else { memcpy(fr->i_hdr.is_info, pdu_data, data_len); } } lp->dev->hard_header(skb, lp->dev, ETH_P_802_3, lp->remote_mac, NULL, fl); skb->dev=lp->dev; dev_queue_xmit(skb); } else printk(KERN_DEBUG "cl2llc: skb_alloc() in llc_sendpdu() failed\n"); } void llc_xid_request(llcptr lp, char opt, int ll, char * data) { llc_sendpdu(lp, XID_CMD, opt, ll, data); } void llc_test_request(llcptr lp, int ll, char * data) { llc_sendpdu(lp, TEST_CMD, 0, ll, data); } void llc_unit_data_request(llcptr lp, int ll, char * data) { llc_sendpdu(lp, UI_CMD, 0, ll, data); } /* * llc_sendipdu() Completes an I pdu in an existing skb and gives it * to the MAC layer for transmision. * Parameter "type" must be either I_CMD or I_RSP. * The skb is not freed after xmit, it is kept in case a retransmission * is requested. If needed it can be picked up again from the rtq. */ void llc_sendipdu(llcptr lp, char type, char pf, struct sk_buff *skb) { frameptr fr; /* ptr to output pdu buffer */ struct sk_buff *tmp; fr = (frameptr) skb->data; fr->pdu_hdr.dsap = lp->remote_sap; fr->pdu_hdr.ssap = lp->local_sap + cr_bit_encode[(int)type]; fr->pdu_cntl.byte1 = cntl_byte_encode[(int)type]; if (pf) fr->i_hdr.i_pflag = 1; /* p/f and seq numbers */ fr->i_hdr.nr = lp->vr; fr->i_hdr.ns = lp->vs; lp->vs++; if (lp->vs > 127) lp->vs = 0; lp->dev->hard_header(skb, lp->dev, ETH_P_802_3, lp->remote_mac, NULL, skb->len); ADD_TO_RTQ(skb); /* add skb to the retransmit queue */ tmp=skb_clone(skb, GFP_ATOMIC); if(tmp!=NULL) { tmp->dev=lp->dev; dev_queue_xmit(tmp); } } /* * Resend_ipdu() will resend the pdus in the retransmit queue (rtq) * the return value is the number of pdus resend. * ack_nr is N(R) of 1st pdu to resent. * Type is I_CMD or I_RSP for 1st pdu resent. * p is p/f flag 0 or 1 for 1st pdu resent. * All subsequent pdus will be sent as I_CMDs with p/f set to 0 */ int llc_resend_ipdu(llcptr lp, unsigned char ack_nr, unsigned char type, char p) { struct sk_buff *skb,*tmp; int resend_count; frameptr fr; unsigned long flags; resend_count = 0; save_flags(flags); cli(); skb = skb_peek(&lp->rtq); while(skb && skb != (struct sk_buff *)&lp->rtq) { fr = (frameptr) (skb->data + lp->dev->hard_header_len); if (resend_count == 0) { /* * Resending 1st pdu: */ if (p) fr->i_hdr.i_pflag = 1; else fr->i_hdr.i_pflag = 0; if (type == I_CMD) fr->pdu_hdr.ssap = fr->pdu_hdr.ssap & 0xfe; else fr->pdu_hdr.ssap = fr->pdu_hdr.ssap | 0x01; } else { /* * Resending pdu 2...n */ fr->pdu_hdr.ssap = fr->pdu_hdr.ssap & 0xfe; fr->i_hdr.i_pflag = 0; } fr->i_hdr.nr = lp->vr; fr->i_hdr.ns = lp->vs; lp->vs++; if (lp->vs > 127) lp->vs = 0; tmp=skb_clone(skb, GFP_ATOMIC); if(tmp!=NULL) { tmp->dev = lp->dev; dev_queue_xmit(skb); } resend_count++; skb = skb->next; } restore_flags(flags); return resend_count; } /* ************** internal queue management code ****************** */ /* * Remove one skb from the front of the awaiting transmit queue * (this is the skb longest on the queue) and return a pointer to * that skb. */ struct sk_buff *llc_pull_from_atq(llcptr lp) { return skb_dequeue(&lp->atq); } /* * Free_acknowledged_skbs(), remove from retransmit queue (rtq) * and free all skbs with an N(S) chronologicaly before 'pdu_ack'. * The return value is the number of pdus acknowledged. */ int llc_free_acknowledged_skbs(llcptr lp, unsigned char pdu_ack) { struct sk_buff *pp; frameptr fr; int ack_count; unsigned char ack; /* N(S) of most recently ack'ed pdu */ unsigned char ns_save; unsigned long flags; if (pdu_ack > 0) ack = pdu_ack -1; else ack = 127; ack_count = 0; save_flags(flags); cli(); pp = skb_dequeue(&lp->rtq); while (pp != NULL) { /* * Locate skb with N(S) == ack */ /* * BUG: FIXME - use skb->h.* */ fr = (frameptr) (pp->data + lp->dev->hard_header_len); ns_save = fr->i_hdr.ns; kfree_skb(pp); ack_count++; if (ns_save == ack) break; pp = skb_dequeue(&lp->rtq); } restore_flags(flags); return ack_count; } |