rfc1201.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:16k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Linux ARCnet driver - RFC1201 (standard) packet encapsulation
  3.  * 
  4.  * Written 1994-1999 by Avery Pennarun.
  5.  * Derived from skeleton.c by Donald Becker.
  6.  *
  7.  * Special thanks to Contemporary Controls, Inc. (www.ccontrols.com)
  8.  *  for sponsoring the further development of this driver.
  9.  *
  10.  * **********************
  11.  *
  12.  * The original copyright of skeleton.c was as follows:
  13.  *
  14.  * skeleton.c Written 1993 by Donald Becker.
  15.  * Copyright 1993 United States Government as represented by the
  16.  * Director, National Security Agency.  This software may only be used
  17.  * and distributed according to the terms of the GNU General Public License as
  18.  * modified by SRC, incorporated herein by reference.
  19.  *
  20.  * **********************
  21.  *
  22.  * For more details, see drivers/net/arcnet.c
  23.  *
  24.  * **********************
  25.  */
  26. #include <linux/module.h>
  27. #include <linux/init.h>
  28. #include <linux/if_arp.h>
  29. #include <linux/netdevice.h>
  30. #include <linux/skbuff.h>
  31. #include <linux/arcdevice.h>
  32. #define VERSION "arcnet: RFC1201 "standard" (`a') encapsulation support loaded.n"
  33. static unsigned short type_trans(struct sk_buff *skb, struct net_device *dev);
  34. static void rx(struct net_device *dev, int bufnum,
  35.        struct archdr *pkthdr, int length);
  36. static int build_header(struct sk_buff *skb, unsigned short type,
  37. uint8_t daddr);
  38. static int prepare_tx(struct net_device *dev, struct archdr *pkt, int length,
  39.       int bufnum);
  40. static int continue_tx(struct net_device *dev, int bufnum);
  41. struct ArcProto rfc1201_proto =
  42. {
  43. 'a',
  44. 1500, /* could be more, but some receivers can't handle it... */
  45. rx,
  46. build_header,
  47. prepare_tx,
  48. continue_tx
  49. };
  50. void __init arcnet_rfc1201_init(void)
  51. {
  52. arc_proto_map[ARC_P_IP]
  53.     = arc_proto_map[ARC_P_ARP]
  54.     = arc_proto_map[ARC_P_RARP]
  55.     = arc_proto_map[ARC_P_IPX]
  56.     = arc_proto_map[ARC_P_NOVELL_EC]
  57.     = &rfc1201_proto;
  58. /* if someone else already owns the broadcast, we won't take it */
  59. if (arc_bcast_proto == arc_proto_default)
  60. arc_bcast_proto = &rfc1201_proto;
  61. }
  62. #ifdef MODULE
  63. int __init init_module(void)
  64. {
  65. printk(VERSION);
  66. arcnet_rfc1201_init();
  67. return 0;
  68. }
  69. void cleanup_module(void)
  70. {
  71. arcnet_unregister_proto(&rfc1201_proto);
  72. }
  73. #endif /* MODULE */
  74. /*
  75.  * Determine a packet's protocol ID.
  76.  * 
  77.  * With ARCnet we have to convert everything to Ethernet-style stuff.
  78.  */
  79. static unsigned short type_trans(struct sk_buff *skb, struct net_device *dev)
  80. {
  81. struct archdr *pkt = (struct archdr *) skb->data;
  82. struct arc_rfc1201 *soft = &pkt->soft.rfc1201;
  83. struct arcnet_local *lp = (struct arcnet_local *) dev->priv;
  84. int hdr_size = ARC_HDR_SIZE + RFC1201_HDR_SIZE;
  85. /* Pull off the arcnet header. */
  86. skb->mac.raw = skb->data;
  87. skb_pull(skb, hdr_size);
  88. if (pkt->hard.dest == 0)
  89. skb->pkt_type = PACKET_BROADCAST;
  90. else if (dev->flags & IFF_PROMISC) {
  91. /* if we're not sending to ourselves :) */
  92. if (pkt->hard.dest != dev->dev_addr[0])
  93. skb->pkt_type = PACKET_OTHERHOST;
  94. }
  95. /* now return the protocol number */
  96. switch (soft->proto) {
  97. case ARC_P_IP:
  98. return htons(ETH_P_IP);
  99. case ARC_P_ARP:
  100. return htons(ETH_P_ARP);
  101. case ARC_P_RARP:
  102. return htons(ETH_P_RARP);
  103. case ARC_P_IPX:
  104. case ARC_P_NOVELL_EC:
  105. return htons(ETH_P_802_3);
  106. default:
  107. lp->stats.rx_errors++;
  108. lp->stats.rx_crc_errors++;
  109. return 0;
  110. }
  111. return htons(ETH_P_IP);
  112. }
  113. /* packet receiver */
  114. static void rx(struct net_device *dev, int bufnum,
  115.        struct archdr *pkthdr, int length)
  116. {
  117. struct arcnet_local *lp = (struct arcnet_local *) dev->priv;
  118. struct sk_buff *skb;
  119. struct archdr *pkt = pkthdr;
  120. struct arc_rfc1201 *soft = &pkthdr->soft.rfc1201;
  121. int saddr = pkt->hard.source, ofs;
  122. struct Incoming *in = &lp->rfc1201.incoming[saddr];
  123. BUGMSG(D_DURING, "it's an RFC1201 packet (length=%d)n", length);
  124. if (length >= MinTU)
  125. ofs = 512 - length;
  126. else
  127. ofs = 256 - length;
  128. if (soft->split_flag == 0xFF) { /* Exception Packet */
  129. if (length >= 4 + RFC1201_HDR_SIZE)
  130. BUGMSG(D_DURING, "compensating for exception packetn");
  131. else {
  132. BUGMSG(D_EXTRA, "short RFC1201 exception packet from %02Xh",
  133.        saddr);
  134. return;
  135. }
  136. /* skip over 4-byte junkola */
  137. length -= 4;
  138. ofs += 4;
  139. lp->hw.copy_from_card(dev, bufnum, 512 - length,
  140.       soft, sizeof(pkt->soft));
  141. }
  142. if (!soft->split_flag) { /* not split */
  143. BUGMSG(D_RX, "incoming is not split (splitflag=%d)n",
  144.        soft->split_flag);
  145. if (in->skb) { /* already assembling one! */
  146. BUGMSG(D_EXTRA, "aborting assembly (seq=%d) for unsplit packet (splitflag=%d, seq=%d)n",
  147.  in->sequence, soft->split_flag, soft->sequence);
  148. lp->rfc1201.aborted_seq = soft->sequence;
  149. dev_kfree_skb_irq(in->skb);
  150. lp->stats.rx_errors++;
  151. lp->stats.rx_missed_errors++;
  152. in->skb = NULL;
  153. }
  154. in->sequence = soft->sequence;
  155. skb = alloc_skb(length + ARC_HDR_SIZE, GFP_ATOMIC);
  156. if (skb == NULL) {
  157. BUGMSG(D_NORMAL, "Memory squeeze, dropping packet.n");
  158. lp->stats.rx_dropped++;
  159. return;
  160. }
  161. skb_put(skb, length + ARC_HDR_SIZE);
  162. skb->dev = dev;
  163. pkt = (struct archdr *) skb->data;
  164. soft = &pkt->soft.rfc1201;
  165. /* up to sizeof(pkt->soft) has already been copied from the card */
  166. memcpy(pkt, pkthdr, sizeof(struct archdr));
  167. if (length > sizeof(pkt->soft))
  168. lp->hw.copy_from_card(dev, bufnum, ofs + sizeof(pkt->soft),
  169.        pkt->soft.raw + sizeof(pkt->soft),
  170.       length - sizeof(pkt->soft));
  171. /*
  172.  * ARP packets have problems when sent from some DOS systems: the
  173.  * source address is always 0!  So we take the hardware source addr
  174.  * (which is impossible to fumble) and insert it ourselves.
  175.  */
  176. if (soft->proto == ARC_P_ARP) {
  177. struct arphdr *arp = (struct arphdr *) soft->payload;
  178. /* make sure addresses are the right length */
  179. if (arp->ar_hln == 1 && arp->ar_pln == 4) {
  180. uint8_t *cptr = (uint8_t *) arp + sizeof(struct arphdr);
  181. if (!*cptr) { /* is saddr = 00? */
  182. BUGMSG(D_EXTRA,
  183.        "ARP source address was 00h, set to %02Xh.n",
  184.        saddr);
  185. lp->stats.rx_crc_errors++;
  186. *cptr = saddr;
  187. } else {
  188. BUGMSG(D_DURING, "ARP source address (%Xh) is fine.n",
  189.        *cptr);
  190. }
  191. } else {
  192. BUGMSG(D_NORMAL, "funny-shaped ARP packet. (%Xh, %Xh)n",
  193.        arp->ar_hln, arp->ar_pln);
  194. lp->stats.rx_errors++;
  195. lp->stats.rx_crc_errors++;
  196. }
  197. }
  198. BUGLVL(D_SKB) arcnet_dump_skb(dev, skb, "rx");
  199. skb->protocol = type_trans(skb, dev);
  200. netif_rx(skb);
  201. dev->last_rx = jiffies;
  202. } else { /* split packet */
  203. /*
  204.  * NOTE: MSDOS ARP packet correction should only need to apply to
  205.  * unsplit packets, since ARP packets are so short.
  206.  *
  207.  * My interpretation of the RFC1201 document is that if a packet is
  208.  * received out of order, the entire assembly process should be
  209.  * aborted.
  210.  *
  211.  * The RFC also mentions "it is possible for successfully received
  212.  * packets to be retransmitted." As of 0.40 all previously received
  213.  * packets are allowed, not just the most recent one.
  214.  *
  215.  * We allow multiple assembly processes, one for each ARCnet card
  216.  * possible on the network.  Seems rather like a waste of memory,
  217.  * but there's no other way to be reliable.
  218.  */
  219. BUGMSG(D_RX, "packet is split (splitflag=%d, seq=%d)n",
  220.        soft->split_flag, in->sequence);
  221. if (in->skb && in->sequence != soft->sequence) {
  222. BUGMSG(D_EXTRA, "wrong seq number (saddr=%d, expected=%d, seq=%d, splitflag=%d)n",
  223.        saddr, in->sequence, soft->sequence,
  224.        soft->split_flag);
  225. dev_kfree_skb_irq(in->skb);
  226. in->skb = NULL;
  227. lp->stats.rx_errors++;
  228. lp->stats.rx_missed_errors++;
  229. in->lastpacket = in->numpackets = 0;
  230. }
  231. if (soft->split_flag & 1) { /* first packet in split */
  232. BUGMSG(D_RX, "brand new splitpacket (splitflag=%d)n",
  233.        soft->split_flag);
  234. if (in->skb) { /* already assembling one! */
  235. BUGMSG(D_EXTRA, "aborting previous (seq=%d) assembly "
  236.        "(splitflag=%d, seq=%d)n",
  237.        in->sequence, soft->split_flag,
  238.        soft->sequence);
  239. lp->stats.rx_errors++;
  240. lp->stats.rx_missed_errors++;
  241. dev_kfree_skb_irq(in->skb);
  242. }
  243. in->sequence = soft->sequence;
  244. in->numpackets = ((unsigned) soft->split_flag >> 1) + 2;
  245. in->lastpacket = 1;
  246. if (in->numpackets > 16) {
  247. BUGMSG(D_EXTRA, "incoming packet more than 16 segments; dropping. (splitflag=%d)n",
  248.        soft->split_flag);
  249. lp->rfc1201.aborted_seq = soft->sequence;
  250. lp->stats.rx_errors++;
  251. lp->stats.rx_length_errors++;
  252. return;
  253. }
  254. in->skb = skb = alloc_skb(508 * in->numpackets + ARC_HDR_SIZE,
  255.   GFP_ATOMIC);
  256. if (skb == NULL) {
  257. BUGMSG(D_NORMAL, "(split) memory squeeze, dropping packet.n");
  258. lp->rfc1201.aborted_seq = soft->sequence;
  259. lp->stats.rx_dropped++;
  260. return;
  261. }
  262. skb->dev = dev;
  263. pkt = (struct archdr *) skb->data;
  264. soft = &pkt->soft.rfc1201;
  265. memcpy(pkt, pkthdr, ARC_HDR_SIZE + RFC1201_HDR_SIZE);
  266. skb_put(skb, ARC_HDR_SIZE + RFC1201_HDR_SIZE);
  267. soft->split_flag = 0; /* end result won't be split */
  268. } else { /* not first packet */
  269. int packetnum = ((unsigned) soft->split_flag >> 1) + 1;
  270. /*
  271.  * if we're not assembling, there's no point trying to
  272.  * continue.
  273.  */
  274. if (!in->skb) {
  275. if (lp->rfc1201.aborted_seq != soft->sequence) {
  276. BUGMSG(D_EXTRA, "can't continue split without starting "
  277.        "first! (splitflag=%d, seq=%d, aborted=%d)n",
  278. soft->split_flag, soft->sequence,
  279.        lp->rfc1201.aborted_seq);
  280. lp->stats.rx_errors++;
  281. lp->stats.rx_missed_errors++;
  282. }
  283. return;
  284. }
  285. in->lastpacket++;
  286. if (packetnum != in->lastpacket) { /* not the right flag! */
  287. /* harmless duplicate? ignore. */
  288. if (packetnum <= in->lastpacket - 1) {
  289. BUGMSG(D_EXTRA, "duplicate splitpacket ignored! (splitflag=%d)n",
  290.        soft->split_flag);
  291. lp->stats.rx_errors++;
  292. lp->stats.rx_frame_errors++;
  293. return;
  294. }
  295. /* "bad" duplicate, kill reassembly */
  296. BUGMSG(D_EXTRA, "out-of-order splitpacket, reassembly "
  297.        "(seq=%d) aborted (splitflag=%d, seq=%d)n",
  298.        in->sequence, soft->split_flag, soft->sequence);
  299. lp->rfc1201.aborted_seq = soft->sequence;
  300. dev_kfree_skb_irq(in->skb);
  301. in->skb = NULL;
  302. lp->stats.rx_errors++;
  303. lp->stats.rx_missed_errors++;
  304. in->lastpacket = in->numpackets = 0;
  305. return;
  306. }
  307. pkt = (struct archdr *) in->skb->data;
  308. soft = &pkt->soft.rfc1201;
  309. }
  310. skb = in->skb;
  311. lp->hw.copy_from_card(dev, bufnum, ofs + RFC1201_HDR_SIZE,
  312.       skb->data + skb->len,
  313.       length - RFC1201_HDR_SIZE);
  314. skb_put(skb, length - RFC1201_HDR_SIZE);
  315. /* are we done? */
  316. if (in->lastpacket == in->numpackets) {
  317. in->skb = NULL;
  318. in->lastpacket = in->numpackets = 0;
  319.     BUGMSG(D_SKB_SIZE, "skb: received %d bytes from %02X (unsplit)n",
  320.      skb->len, pkt->hard.source);
  321.     BUGMSG(D_SKB_SIZE, "skb: received %d bytes from %02X (split)n",
  322.      skb->len, pkt->hard.source);
  323. BUGLVL(D_SKB) arcnet_dump_skb(dev, skb, "rx");
  324. skb->protocol = type_trans(skb, dev);
  325. netif_rx(skb);
  326. dev->last_rx = jiffies;
  327. }
  328. }
  329. }
  330. /* Create the ARCnet hard/soft headers for RFC1201. */
  331. static int build_header(struct sk_buff *skb, unsigned short type,
  332. uint8_t daddr)
  333. {
  334. struct net_device *dev = skb->dev;
  335. struct arcnet_local *lp = (struct arcnet_local *) dev->priv;
  336. int hdr_size = ARC_HDR_SIZE + RFC1201_HDR_SIZE;
  337. struct archdr *pkt = (struct archdr *) skb_push(skb, hdr_size);
  338. struct arc_rfc1201 *soft = &pkt->soft.rfc1201;
  339. /* set the protocol ID according to RFC1201 */
  340. switch (type) {
  341. case ETH_P_IP:
  342. soft->proto = ARC_P_IP;
  343. break;
  344. case ETH_P_ARP:
  345. soft->proto = ARC_P_ARP;
  346. break;
  347. case ETH_P_RARP:
  348. soft->proto = ARC_P_RARP;
  349. break;
  350. case ETH_P_IPX:
  351. case ETH_P_802_3:
  352. case ETH_P_802_2:
  353. soft->proto = ARC_P_IPX;
  354. break;
  355. case ETH_P_ATALK:
  356. soft->proto = ARC_P_ATALK;
  357. break;
  358. default:
  359. BUGMSG(D_NORMAL, "RFC1201: I don't understand protocol %d (%Xh)n",
  360.        type, type);
  361. lp->stats.tx_errors++;
  362. lp->stats.tx_aborted_errors++;
  363. return 0;
  364. }
  365. /*
  366.  * Set the source hardware address.
  367.  *
  368.  * This is pretty pointless for most purposes, but it can help in
  369.  * debugging.  ARCnet does not allow us to change the source address in
  370.  * the actual packet sent)
  371.  */
  372. pkt->hard.source = *dev->dev_addr;
  373. soft->sequence = htons(lp->rfc1201.sequence++);
  374. soft->split_flag = 0; /* split packets are done elsewhere */
  375. /* see linux/net/ethernet/eth.c to see where I got the following */
  376. if (dev->flags & (IFF_LOOPBACK | IFF_NOARP)) {
  377. /* 
  378.  * FIXME: fill in the last byte of the dest ipaddr here to better
  379.  * comply with RFC1051 in "noarp" mode.  For now, always broadcasting
  380.  * will probably at least get packets sent out :)
  381.  */
  382. pkt->hard.dest = 0;
  383. return hdr_size;
  384. }
  385. /* otherwise, drop in the dest address */
  386. pkt->hard.dest = daddr;
  387. return hdr_size;
  388. }
  389. static void load_pkt(struct net_device *dev, struct arc_hardware *hard,
  390.      struct arc_rfc1201 *soft, int softlen, int bufnum)
  391. {
  392. struct arcnet_local *lp = (struct arcnet_local *) dev->priv;
  393. int ofs;
  394. /* assume length <= XMTU: someone should have handled that by now. */
  395. if (softlen > MinTU) {
  396. hard->offset[0] = 0;
  397. hard->offset[1] = ofs = 512 - softlen;
  398. } else if (softlen > MTU) { /* exception packet - add an extra header */
  399. struct arc_rfc1201 excsoft;
  400. excsoft.proto = soft->proto;
  401. excsoft.split_flag = 0xff;
  402. excsoft.sequence = 0xffff;
  403. hard->offset[0] = 0;
  404. ofs = 512 - softlen;
  405. hard->offset[1] = ofs - RFC1201_HDR_SIZE;
  406. lp->hw.copy_to_card(dev, bufnum, ofs - RFC1201_HDR_SIZE,
  407.     &excsoft, RFC1201_HDR_SIZE);
  408. } else
  409. hard->offset[0] = ofs = 256 - softlen;
  410. lp->hw.copy_to_card(dev, bufnum, 0, hard, ARC_HDR_SIZE);
  411. lp->hw.copy_to_card(dev, bufnum, ofs, soft, softlen);
  412. lp->lastload_dest = hard->dest;
  413. }
  414. static int prepare_tx(struct net_device *dev, struct archdr *pkt, int length,
  415.       int bufnum)
  416. {
  417. struct arcnet_local *lp = (struct arcnet_local *) dev->priv;
  418. const int maxsegsize = XMTU - RFC1201_HDR_SIZE;
  419. struct Outgoing *out;
  420. BUGMSG(D_DURING, "prepare_tx: txbufs=%d/%d/%dn",
  421.        lp->next_tx, lp->cur_tx, bufnum);
  422. length -= ARC_HDR_SIZE; /* hard header is not included in packet length */
  423. pkt->soft.rfc1201.split_flag = 0;
  424. /* need to do a split packet? */
  425. if (length > XMTU) {
  426. out = &lp->outgoing;
  427. out->length = length - RFC1201_HDR_SIZE;
  428. out->dataleft = lp->outgoing.length;
  429. out->numsegs = (out->dataleft + maxsegsize - 1) / maxsegsize;
  430. out->segnum = 0;
  431. BUGMSG(D_DURING, "rfc1201 prep_tx: ready for %d-segment split "
  432.        "(%d bytes, seq=%d)n", out->numsegs, out->length,
  433.        pkt->soft.rfc1201.sequence);
  434. return 0; /* not done */
  435. }
  436. /* just load the packet into the buffers and send it off */
  437. load_pkt(dev, &pkt->hard, &pkt->soft.rfc1201, length, bufnum);
  438. return 1; /* done */
  439. }
  440. static int continue_tx(struct net_device *dev, int bufnum)
  441. {
  442. struct arcnet_local *lp = (struct arcnet_local *) dev->priv;
  443. struct Outgoing *out = &lp->outgoing;
  444. struct arc_hardware *hard = &out->pkt->hard;
  445. struct arc_rfc1201 *soft = &out->pkt->soft.rfc1201, *newsoft;
  446. int maxsegsize = XMTU - RFC1201_HDR_SIZE;
  447. int seglen;
  448. BUGMSG(D_DURING,
  449.   "rfc1201 continue_tx: loading segment %d(+1) of %d (seq=%d)n",
  450.        out->segnum, out->numsegs, soft->sequence);
  451. /* the "new" soft header comes right before the data chunk */
  452. newsoft = (struct arc_rfc1201 *)
  453.     (out->pkt->soft.raw + out->length - out->dataleft);
  454. if (!out->segnum) /* first packet; newsoft == soft */
  455. newsoft->split_flag = ((out->numsegs - 2) << 1) | 1;
  456. else {
  457. newsoft->split_flag = out->segnum << 1;
  458. newsoft->proto = soft->proto;
  459. newsoft->sequence = soft->sequence;
  460. }
  461. seglen = maxsegsize;
  462. if (seglen > out->dataleft)
  463. seglen = out->dataleft;
  464. out->dataleft -= seglen;
  465. load_pkt(dev, hard, newsoft, seglen + RFC1201_HDR_SIZE, bufnum);
  466. out->segnum++;
  467. if (out->segnum >= out->numsegs)
  468. return 1;
  469. else
  470. return 0;
  471. }