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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * NET3: Token ring device handling subroutines
  3.  * 
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version
  7.  * 2 of the License, or (at your option) any later version.
  8.  *
  9.  * Fixes:       3 Feb 97 Paul Norton <pnorton@cts.com> Minor routing fixes.
  10.  *              Added rif table to /proc/net/tr_rif and rif timeout to
  11.  *              /proc/sys/net/token-ring/rif_timeout.
  12.  *              22 Jun 98 Paul Norton <p.norton@computer.org> Rearranged
  13.  *              tr_header and tr_type_trans to handle passing IPX SNAP and
  14.  *              802.2 through the correct layers. Eliminated tr_reformat.
  15.  *        
  16.  */
  17. #include <asm/uaccess.h>
  18. #include <asm/system.h>
  19. #include <linux/config.h>
  20. #include <linux/types.h>
  21. #include <linux/kernel.h>
  22. #include <linux/sched.h>
  23. #include <linux/string.h>
  24. #include <linux/mm.h>
  25. #include <linux/socket.h>
  26. #include <linux/in.h>
  27. #include <linux/inet.h>
  28. #include <linux/netdevice.h>
  29. #include <linux/trdevice.h>
  30. #include <linux/skbuff.h>
  31. #include <linux/errno.h>
  32. #include <linux/timer.h>
  33. #include <linux/net.h>
  34. #include <linux/proc_fs.h>
  35. #include <linux/init.h>
  36. #include <net/arp.h>
  37. static void tr_source_route(struct sk_buff *skb, struct trh_hdr *trh, struct net_device *dev);
  38. static void tr_add_rif_info(struct trh_hdr *trh, struct net_device *dev);
  39. static void rif_check_expire(unsigned long dummy);
  40. #define TR_SR_DEBUG 0
  41. typedef struct rif_cache_s *rif_cache;
  42. /*
  43.  * Each RIF entry we learn is kept this way
  44.  */
  45.  
  46. struct rif_cache_s {
  47. unsigned char addr[TR_ALEN];
  48. int iface;
  49. __u16 rcf;
  50. __u16 rseg[8];
  51. rif_cache next;
  52. unsigned long last_used;
  53. unsigned char local_ring;
  54. };
  55. #define RIF_TABLE_SIZE 32
  56. /*
  57.  * We hash the RIF cache 32 ways. We do after all have to look it
  58.  * up a lot.
  59.  */
  60.  
  61. rif_cache rif_table[RIF_TABLE_SIZE]={ NULL, };
  62. static spinlock_t rif_lock = SPIN_LOCK_UNLOCKED;
  63. #define RIF_TIMEOUT 60*10*HZ
  64. #define RIF_CHECK_INTERVAL 60*HZ
  65. /*
  66.  * Garbage disposal timer.
  67.  */
  68.  
  69. static struct timer_list rif_timer;
  70. int sysctl_tr_rif_timeout = RIF_TIMEOUT;
  71. /*
  72.  * Put the headers on a token ring packet. Token ring source routing
  73.  * makes this a little more exciting than on ethernet.
  74.  */
  75.  
  76. int tr_header(struct sk_buff *skb, struct net_device *dev, unsigned short type,
  77.               void *daddr, void *saddr, unsigned len) 
  78. {
  79. struct trh_hdr *trh;
  80. int hdr_len;
  81. /* 
  82.  * Add the 802.2 SNAP header if IP as the IPv4 code calls  
  83.  * dev->hard_header directly.
  84.  */
  85. if (type == ETH_P_IP || type == ETH_P_ARP)
  86. {
  87. struct trllc *trllc=(struct trllc *)(trh+1);
  88. hdr_len = sizeof(struct trh_hdr) + sizeof(struct trllc);
  89. trh = (struct trh_hdr *)skb_push(skb, hdr_len);
  90. trllc = (struct trllc *)(trh+1);
  91. trllc->dsap = trllc->ssap = EXTENDED_SAP;
  92. trllc->llc = UI_CMD;
  93. trllc->protid[0] = trllc->protid[1] = trllc->protid[2] = 0x00;
  94. trllc->ethertype = htons(type);
  95. }
  96. else
  97. {
  98. hdr_len = sizeof(struct trh_hdr);
  99. trh = (struct trh_hdr *)skb_push(skb, hdr_len);
  100. }
  101. trh->ac=AC;
  102. trh->fc=LLC_FRAME;
  103. if(saddr)
  104. memcpy(trh->saddr,saddr,dev->addr_len);
  105. else
  106. memcpy(trh->saddr,dev->dev_addr,dev->addr_len);
  107. /*
  108.  * Build the destination and then source route the frame
  109.  */
  110.  
  111. if(daddr) 
  112. {
  113. memcpy(trh->daddr,daddr,dev->addr_len);
  114. tr_source_route(skb,trh,dev);
  115. return(hdr_len);
  116. }
  117. return -hdr_len;
  118. }
  119. /*
  120.  * A neighbour discovery of some species (eg arp) has completed. We
  121.  * can now send the packet.
  122.  */
  123.  
  124. int tr_rebuild_header(struct sk_buff *skb) 
  125. {
  126. struct trh_hdr *trh=(struct trh_hdr *)skb->data;
  127. struct trllc *trllc=(struct trllc *)(skb->data+sizeof(struct trh_hdr));
  128. struct net_device *dev = skb->dev;
  129. /*
  130.  * FIXME: We don't yet support IPv6 over token rings
  131.  */
  132.  
  133. if(trllc->ethertype != htons(ETH_P_IP)) {
  134. printk("tr_rebuild_header: Don't know how to resolve type %04X addresses ?n",(unsigned int)htons(trllc->ethertype));
  135. return 0;
  136. }
  137. #ifdef CONFIG_INET
  138. if(arp_find(trh->daddr, skb)) {
  139. return 1;
  140. }
  141. else 
  142. #endif
  143. {
  144. tr_source_route(skb,trh,dev); 
  145. return 0;
  146. }
  147. }
  148. /*
  149.  * Some of this is a bit hackish. We intercept RIF information
  150.  * used for source routing. We also grab IP directly and don't feed
  151.  * it via SNAP.
  152.  */
  153.  
  154. unsigned short tr_type_trans(struct sk_buff *skb, struct net_device *dev) 
  155. {
  156. struct trh_hdr *trh=(struct trh_hdr *)skb->data;
  157. struct trllc *trllc;
  158. unsigned riflen=0;
  159. skb->mac.raw = skb->data;
  160.         if(trh->saddr[0] & TR_RII)
  161. riflen = (ntohs(trh->rcf) & TR_RCF_LEN_MASK) >> 8;
  162. trllc = (struct trllc *)(skb->data+sizeof(struct trh_hdr)-TR_MAXRIFLEN+riflen);
  163. skb_pull(skb,sizeof(struct trh_hdr)-TR_MAXRIFLEN+riflen);
  164. if(*trh->daddr & 0x80) 
  165. {
  166. if(!memcmp(trh->daddr,dev->broadcast,TR_ALEN)) 
  167. skb->pkt_type=PACKET_BROADCAST;
  168. else
  169. skb->pkt_type=PACKET_MULTICAST;
  170. }
  171. else if ( (trh->daddr[0] & 0x01) && (trh->daddr[1] & 0x00) && (trh->daddr[2] & 0x5E))
  172. {
  173. skb->pkt_type=PACKET_MULTICAST;
  174. }
  175. else if(dev->flags & IFF_PROMISC) 
  176. {
  177. if(memcmp(trh->daddr, dev->dev_addr, TR_ALEN))
  178. skb->pkt_type=PACKET_OTHERHOST;
  179. }
  180. if ((skb->pkt_type != PACKET_BROADCAST) &&
  181.     (skb->pkt_type != PACKET_MULTICAST))
  182. tr_add_rif_info(trh,dev) ; 
  183. /*
  184.  * Strip the SNAP header from ARP packets since we don't 
  185.  * pass them through to the 802.2/SNAP layers.
  186.  */
  187. if (trllc->dsap == EXTENDED_SAP &&
  188.     (trllc->ethertype == ntohs(ETH_P_IP) ||
  189.      trllc->ethertype == ntohs(ETH_P_ARP)))
  190. {
  191. skb_pull(skb, sizeof(struct trllc));
  192. return trllc->ethertype;
  193. }
  194. return ntohs(ETH_P_802_2);
  195. }
  196. /*
  197.  * We try to do source routing... 
  198.  */
  199. static void tr_source_route(struct sk_buff *skb,struct trh_hdr *trh,struct net_device *dev) 
  200. {
  201. int i, slack;
  202. unsigned int hash;
  203. rif_cache entry;
  204. unsigned char *olddata;
  205. unsigned char mcast_func_addr[] = {0xC0,0x00,0x00,0x04,0x00,0x00};
  206. unsigned long flags ; 
  207. spin_lock_irqsave(&rif_lock,flags);
  208. /*
  209.  * Broadcasts are single route as stated in RFC 1042 
  210.  */
  211. if( (!memcmp(&(trh->daddr[0]),&(dev->broadcast[0]),TR_ALEN)) ||
  212.     (!memcmp(&(trh->daddr[0]),&(mcast_func_addr[0]), TR_ALEN))  )
  213. {
  214. trh->rcf=htons((((sizeof(trh->rcf)) << 8) & TR_RCF_LEN_MASK)  
  215.        | TR_RCF_FRAME2K | TR_RCF_LIMITED_BROADCAST);
  216. trh->saddr[0]|=TR_RII;
  217. }
  218. else 
  219. {
  220. for(i=0,hash=0;i<TR_ALEN;hash+=trh->daddr[i++]);
  221. hash&=RIF_TABLE_SIZE-1;
  222. /*
  223.  * Walk the hash table and look for an entry
  224.  */
  225. for(entry=rif_table[hash];entry && memcmp(&(entry->addr[0]),&(trh->daddr[0]),TR_ALEN);entry=entry->next);
  226. /*
  227.  * If we found an entry we can route the frame.
  228.  */
  229. if(entry) 
  230. {
  231. #if TR_SR_DEBUG
  232. printk("source routing for %02X:%02X:%02X:%02X:%02X:%02Xn",trh->daddr[0],
  233.   trh->daddr[1],trh->daddr[2],trh->daddr[3],trh->daddr[4],trh->daddr[5]);
  234. #endif
  235. if(!entry->local_ring && (ntohs(entry->rcf) & TR_RCF_LEN_MASK) >> 8)
  236. {
  237. trh->rcf=entry->rcf;
  238. memcpy(&trh->rseg[0],&entry->rseg[0],8*sizeof(unsigned short));
  239. trh->rcf^=htons(TR_RCF_DIR_BIT);
  240. trh->rcf&=htons(0x1fff); /* Issam Chehab <ichehab@madge1.demon.co.uk> */
  241. trh->saddr[0]|=TR_RII;
  242. #if TR_SR_DEBUG
  243. printk("entry found with rcf %04xn", entry->rcf);
  244. }
  245. else
  246. {
  247. printk("entry found but without rcf length, local=%02xn", entry->local_ring);
  248. #endif
  249. }
  250. entry->last_used=jiffies;
  251. }
  252. else 
  253. {
  254. /*
  255.  * Without the information we simply have to shout
  256.  * on the wire. The replies should rapidly clean this
  257.  * situation up.
  258.  */
  259. trh->rcf=htons((((sizeof(trh->rcf)) << 8) & TR_RCF_LEN_MASK)  
  260.        | TR_RCF_FRAME2K | TR_RCF_LIMITED_BROADCAST);
  261. trh->saddr[0]|=TR_RII;
  262. #if TR_SR_DEBUG
  263. printk("no entry in rif table found - broadcasting framen");
  264. #endif
  265. }
  266. }
  267. /* Compress the RIF here so we don't have to do it in the driver(s) */
  268. if (!(trh->saddr[0] & 0x80))
  269. slack = 18;
  270. else 
  271. slack = 18 - ((ntohs(trh->rcf) & TR_RCF_LEN_MASK)>>8);
  272. olddata = skb->data;
  273. spin_unlock_irqrestore(&rif_lock,flags);
  274. skb_pull(skb, slack);
  275. memmove(skb->data, olddata, sizeof(struct trh_hdr) - slack);
  276. }
  277. /*
  278.  * We have learned some new RIF information for our source
  279.  * routing.
  280.  */
  281.  
  282. static void tr_add_rif_info(struct trh_hdr *trh, struct net_device *dev)
  283. {
  284. int i;
  285. unsigned int hash, rii_p = 0;
  286. rif_cache entry;
  287. spin_lock_bh(&rif_lock);
  288. /*
  289.  * Firstly see if the entry exists
  290.  */
  291.         if(trh->saddr[0] & TR_RII)
  292. {
  293. trh->saddr[0]&=0x7f;
  294. if (((ntohs(trh->rcf) & TR_RCF_LEN_MASK) >> 8) > 2)
  295. {
  296. rii_p = 1;
  297.         }
  298. }
  299. for(i=0,hash=0;i<TR_ALEN;hash+=trh->saddr[i++]);
  300. hash&=RIF_TABLE_SIZE-1;
  301. for(entry=rif_table[hash];entry && memcmp(&(entry->addr[0]),&(trh->saddr[0]),TR_ALEN);entry=entry->next);
  302. if(entry==NULL) 
  303. {
  304. #if TR_SR_DEBUG
  305. printk("adding rif_entry: addr:%02X:%02X:%02X:%02X:%02X:%02X rcf:%04Xn",
  306. trh->saddr[0],trh->saddr[1],trh->saddr[2],
  307.         trh->saddr[3],trh->saddr[4],trh->saddr[5],
  308. ntohs(trh->rcf));
  309. #endif
  310. /*
  311.  * Allocate our new entry. A failure to allocate loses
  312.  * use the information. This is harmless.
  313.  *
  314.  * FIXME: We ought to keep some kind of cache size
  315.  * limiting and adjust the timers to suit.
  316.  */
  317. entry=kmalloc(sizeof(struct rif_cache_s),GFP_ATOMIC);
  318. if(!entry) 
  319. {
  320. printk(KERN_DEBUG "tr.c: Couldn't malloc rif cache entry !n");
  321. spin_unlock_bh(&rif_lock);
  322. return;
  323. }
  324. memcpy(&(entry->addr[0]),&(trh->saddr[0]),TR_ALEN);
  325. entry->iface = dev->ifindex;
  326. entry->next=rif_table[hash];
  327. entry->last_used=jiffies;
  328. rif_table[hash]=entry;
  329. if (rii_p)
  330. {
  331. entry->rcf = trh->rcf & htons((unsigned short)~TR_RCF_BROADCAST_MASK);
  332. memcpy(&(entry->rseg[0]),&(trh->rseg[0]),8*sizeof(unsigned short));
  333. entry->local_ring = 0;
  334. trh->saddr[0]|=TR_RII; /* put the routing indicator back for tcpdump */
  335. }
  336. else
  337. {
  338. entry->local_ring = 1;
  339. }
  340. else /* Y. Tahara added */
  341. /*
  342.  * Update existing entries
  343.  */
  344. if (!entry->local_ring) 
  345.     if (entry->rcf != (trh->rcf & htons((unsigned short)~TR_RCF_BROADCAST_MASK)) &&
  346.  !(trh->rcf & htons(TR_RCF_BROADCAST_MASK)))
  347.     {
  348. #if TR_SR_DEBUG
  349. printk("updating rif_entry: addr:%02X:%02X:%02X:%02X:%02X:%02X rcf:%04Xn",
  350. trh->saddr[0],trh->saddr[1],trh->saddr[2],
  351. trh->saddr[3],trh->saddr[4],trh->saddr[5],
  352. ntohs(trh->rcf));
  353. #endif
  354.     entry->rcf = trh->rcf & htons((unsigned short)~TR_RCF_BROADCAST_MASK);
  355.              memcpy(&(entry->rseg[0]),&(trh->rseg[0]),8*sizeof(unsigned short));
  356.     }                                         
  357.             entry->last_used=jiffies;               
  358. }
  359. spin_unlock_bh(&rif_lock);
  360. }
  361. /*
  362.  * Scan the cache with a timer and see what we need to throw out.
  363.  */
  364. static void rif_check_expire(unsigned long dummy) 
  365. {
  366. int i;
  367. unsigned long now=jiffies;
  368. unsigned long flags ; 
  369. spin_lock_irqsave(&rif_lock,flags);
  370. for(i=0; i < RIF_TABLE_SIZE;i++) 
  371. {
  372. rif_cache entry, *pentry=rif_table+i;
  373. while((entry=*pentry)) 
  374. {
  375. /*
  376.  * Out it goes
  377.  */
  378. if((now-entry->last_used) > sysctl_tr_rif_timeout) 
  379. {
  380. *pentry=entry->next;
  381. kfree(entry);
  382. }
  383. else
  384. pentry=&entry->next;
  385. }
  386. }
  387. spin_unlock_irqrestore(&rif_lock,flags);
  388. /*
  389.  * Reset the timer
  390.  */
  391.  
  392. mod_timer(&rif_timer, jiffies+sysctl_tr_rif_timeout);
  393. }
  394. /*
  395.  * Generate the /proc/net information for the token ring RIF
  396.  * routing.
  397.  */
  398.  
  399. #ifndef CONFIG_PROC_FS
  400. static int rif_get_info(char *buffer,char **start, off_t offset, int length)  { return 0;}
  401. #else
  402. static int rif_get_info(char *buffer,char **start, off_t offset, int length) 
  403. {
  404. int len=0;
  405. off_t begin=0;
  406. off_t pos=0;
  407. int size,i,j,rcf_len,segment,brdgnmb;
  408. unsigned long now=jiffies;
  409. rif_cache entry;
  410. size=sprintf(buffer,
  411.      "if     TR address       TTL   rcf   routing segmentsn");
  412. pos+=size;
  413. len+=size;
  414. spin_lock_bh(&rif_lock);
  415. for(i=0;i < RIF_TABLE_SIZE;i++) 
  416. {
  417. for(entry=rif_table[i];entry;entry=entry->next) {
  418. struct net_device *dev = __dev_get_by_index(entry->iface);
  419. size=sprintf(buffer+len,"%s %02X:%02X:%02X:%02X:%02X:%02X %7li ",
  420.      dev?dev->name:"?",entry->addr[0],entry->addr[1],entry->addr[2],entry->addr[3],entry->addr[4],entry->addr[5],
  421.      sysctl_tr_rif_timeout-(now-entry->last_used));
  422. len+=size;
  423. pos=begin+len;
  424. if (entry->local_ring)
  425.         size=sprintf(buffer+len,"localn");
  426. else {
  427.         size=sprintf(buffer+len,"%04X", ntohs(entry->rcf));
  428. rcf_len = ((ntohs(entry->rcf) & TR_RCF_LEN_MASK)>>8)-2; 
  429. if (rcf_len)
  430.         rcf_len >>= 1;
  431. for(j = 1; j < rcf_len; j++) {
  432. if(j==1) {
  433. segment=ntohs(entry->rseg[j-1])>>4;
  434. len+=size;
  435. pos=begin+len;
  436. size=sprintf(buffer+len,"  %03X",segment);
  437. };
  438. segment=ntohs(entry->rseg[j])>>4;
  439. brdgnmb=ntohs(entry->rseg[j-1])&0x00f;
  440. len+=size;
  441. pos=begin+len;
  442. size=sprintf(buffer+len,"-%01X-%03X",brdgnmb,segment);
  443. }
  444. len+=size;
  445. pos=begin+len;
  446.         size=sprintf(buffer+len,"n");
  447. }
  448. len+=size;
  449. pos=begin+len;
  450. if(pos<offset) 
  451. {
  452. len=0;
  453. begin=pos;
  454. }
  455. if(pos>offset+length)
  456. break;
  457.     }
  458. if(pos>offset+length)
  459. break;
  460. }
  461. spin_unlock_bh(&rif_lock);
  462. *start=buffer+(offset-begin); /* Start of wanted data */
  463. len-=(offset-begin);    /* Start slop */
  464. if(len>length)
  465. len=length;    /* Ending slop */
  466. if (len<0)
  467. len=0;
  468. return len;
  469. }
  470. #endif
  471. /*
  472.  * Called during bootup.  We don't actually have to initialise
  473.  * too much for this.
  474.  */
  475. static int __init rif_init(void)
  476. {
  477. rif_timer.expires  = RIF_TIMEOUT;
  478. rif_timer.data     = 0L;
  479. rif_timer.function = rif_check_expire;
  480. init_timer(&rif_timer);
  481. add_timer(&rif_timer);
  482. proc_net_create("tr_rif",0,rif_get_info);
  483. return 0;
  484. }
  485. module_init(rif_init);