blob: 55c76d77d3223e3ca6248916a86c6b2011916daa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NET3: Token ring device handling subroutines
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +09003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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.
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090015 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
18#include <asm/uaccess.h>
19#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/module.h>
21#include <linux/types.h>
22#include <linux/kernel.h>
23#include <linux/jiffies.h>
24#include <linux/string.h>
25#include <linux/mm.h>
26#include <linux/socket.h>
27#include <linux/in.h>
28#include <linux/inet.h>
29#include <linux/netdevice.h>
30#include <linux/trdevice.h>
31#include <linux/skbuff.h>
32#include <linux/errno.h>
33#include <linux/timer.h>
34#include <linux/net.h>
35#include <linux/proc_fs.h>
36#include <linux/seq_file.h>
37#include <linux/init.h>
38#include <net/arp.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020039#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41static void tr_add_rif_info(struct trh_hdr *trh, struct net_device *dev);
42static void rif_check_expire(unsigned long dummy);
43
44#define TR_SR_DEBUG 0
45
46/*
47 * Each RIF entry we learn is kept this way
48 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090049
Alexey Dobriyanc8b35d22005-05-26 12:59:42 -070050struct rif_cache {
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 unsigned char addr[TR_ALEN];
52 int iface;
Alexey Dobriyanc6b33652005-05-26 12:59:05 -070053 __be16 rcf;
54 __be16 rseg[8];
Alexey Dobriyanc8b35d22005-05-26 12:59:42 -070055 struct rif_cache *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 unsigned long last_used;
57 unsigned char local_ring;
58};
59
60#define RIF_TABLE_SIZE 32
61
62/*
63 * We hash the RIF cache 32 ways. We do after all have to look it
64 * up a lot.
65 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090066
Alexey Dobriyanc8b35d22005-05-26 12:59:42 -070067static struct rif_cache *rif_table[RIF_TABLE_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69static DEFINE_SPINLOCK(rif_lock);
70
71
72/*
73 * Garbage disposal timer.
74 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +090075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static struct timer_list rif_timer;
77
78int sysctl_tr_rif_timeout = 60*10*HZ;
79
80static inline unsigned long rif_hash(const unsigned char *addr)
81{
82 unsigned long x;
83
84 x = addr[0];
85 x = (x << 2) ^ addr[1];
86 x = (x << 2) ^ addr[2];
87 x = (x << 2) ^ addr[3];
88 x = (x << 2) ^ addr[4];
89 x = (x << 2) ^ addr[5];
90
91 x ^= x >> 8;
92
93 return x & (RIF_TABLE_SIZE - 1);
94}
95
96/*
97 * Put the headers on a token ring packet. Token ring source routing
98 * makes this a little more exciting than on ethernet.
99 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101static int tr_header(struct sk_buff *skb, struct net_device *dev,
102 unsigned short type,
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900103 void *daddr, void *saddr, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 struct trh_hdr *trh;
106 int hdr_len;
107
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900108 /*
109 * Add the 802.2 SNAP header if IP as the IPv4/IPv6 code calls
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 * dev->hard_header directly.
111 */
112 if (type == ETH_P_IP || type == ETH_P_IPV6 || type == ETH_P_ARP)
113 {
114 struct trllc *trllc;
115
116 hdr_len = sizeof(struct trh_hdr) + sizeof(struct trllc);
117 trh = (struct trh_hdr *)skb_push(skb, hdr_len);
118 trllc = (struct trllc *)(trh+1);
119 trllc->dsap = trllc->ssap = EXTENDED_SAP;
120 trllc->llc = UI_CMD;
121 trllc->protid[0] = trllc->protid[1] = trllc->protid[2] = 0x00;
122 trllc->ethertype = htons(type);
123 }
124 else
125 {
126 hdr_len = sizeof(struct trh_hdr);
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900127 trh = (struct trh_hdr *)skb_push(skb, hdr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
129
130 trh->ac=AC;
131 trh->fc=LLC_FRAME;
132
133 if(saddr)
134 memcpy(trh->saddr,saddr,dev->addr_len);
135 else
136 memcpy(trh->saddr,dev->dev_addr,dev->addr_len);
137
138 /*
139 * Build the destination and then source route the frame
140 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900141
142 if(daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 {
144 memcpy(trh->daddr,daddr,dev->addr_len);
145 tr_source_route(skb,trh,dev);
146 return(hdr_len);
147 }
148
149 return -hdr_len;
150}
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
153 * A neighbour discovery of some species (eg arp) has completed. We
154 * can now send the packet.
155 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900156
157static int tr_rebuild_header(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
159 struct trh_hdr *trh=(struct trh_hdr *)skb->data;
160 struct trllc *trllc=(struct trllc *)(skb->data+sizeof(struct trh_hdr));
161 struct net_device *dev = skb->dev;
162
163 /*
164 * FIXME: We don't yet support IPv6 over token rings
165 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if(trllc->ethertype != htons(ETH_P_IP)) {
Al Viro0ac07602006-09-26 21:23:16 -0700168 printk("tr_rebuild_header: Don't know how to resolve type %04X addresses ?\n", ntohs(trllc->ethertype));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return 0;
170 }
171
172#ifdef CONFIG_INET
173 if(arp_find(trh->daddr, skb)) {
174 return 1;
175 }
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900176 else
177#endif
178 {
179 tr_source_route(skb,trh,dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return 0;
181 }
182}
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/*
185 * Some of this is a bit hackish. We intercept RIF information
186 * used for source routing. We also grab IP directly and don't feed
187 * it via SNAP.
188 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900189
Al Viro0ac07602006-09-26 21:23:16 -0700190__be16 tr_type_trans(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192
Arnaldo Carvalho de Meloc1a4b862007-03-19 15:27:07 -0700193 struct trh_hdr *trh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 struct trllc *trllc;
195 unsigned riflen=0;
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900196
Arnaldo Carvalho de Meloc8fb7942007-03-19 15:29:16 -0700197 skb->dev = dev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700198 skb_reset_mac_header(skb);
Arnaldo Carvalho de Meloc1a4b862007-03-19 15:27:07 -0700199 trh = tr_hdr(skb);
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900200
201 if(trh->saddr[0] & TR_RII)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 riflen = (ntohs(trh->rcf) & TR_RCF_LEN_MASK) >> 8;
203
204 trllc = (struct trllc *)(skb->data+sizeof(struct trh_hdr)-TR_MAXRIFLEN+riflen);
205
206 skb_pull(skb,sizeof(struct trh_hdr)-TR_MAXRIFLEN+riflen);
207
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900208 if(*trh->daddr & 0x80)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 {
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900210 if(!memcmp(trh->daddr,dev->broadcast,TR_ALEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 skb->pkt_type=PACKET_BROADCAST;
212 else
213 skb->pkt_type=PACKET_MULTICAST;
214 }
215 else if ( (trh->daddr[0] & 0x01) && (trh->daddr[1] & 0x00) && (trh->daddr[2] & 0x5E))
216 {
217 skb->pkt_type=PACKET_MULTICAST;
218 }
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900219 else if(dev->flags & IFF_PROMISC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 {
221 if(memcmp(trh->daddr, dev->dev_addr, TR_ALEN))
222 skb->pkt_type=PACKET_OTHERHOST;
223 }
224
225 if ((skb->pkt_type != PACKET_BROADCAST) &&
226 (skb->pkt_type != PACKET_MULTICAST))
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900227 tr_add_rif_info(trh,dev) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /*
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900230 * Strip the SNAP header from ARP packets since we don't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 * pass them through to the 802.2/SNAP layers.
232 */
233
234 if (trllc->dsap == EXTENDED_SAP &&
Al Viro0ac07602006-09-26 21:23:16 -0700235 (trllc->ethertype == htons(ETH_P_IP) ||
236 trllc->ethertype == htons(ETH_P_IPV6) ||
237 trllc->ethertype == htons(ETH_P_ARP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 {
239 skb_pull(skb, sizeof(struct trllc));
240 return trllc->ethertype;
241 }
242
Al Viro0ac07602006-09-26 21:23:16 -0700243 return htons(ETH_P_TR_802_2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
246/*
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900247 * We try to do source routing...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 */
249
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900250void tr_source_route(struct sk_buff *skb,struct trh_hdr *trh,struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
252 int slack;
253 unsigned int hash;
Alexey Dobriyanc8b35d22005-05-26 12:59:42 -0700254 struct rif_cache *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 unsigned char *olddata;
Jay Vosburgh001dd252005-08-18 14:04:51 -0700256 unsigned long flags;
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900257 static const unsigned char mcast_func_addr[]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 = {0xC0,0x00,0x00,0x04,0x00,0x00};
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900259
Jay Vosburgh001dd252005-08-18 14:04:51 -0700260 spin_lock_irqsave(&rif_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 /*
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900263 * Broadcasts are single route as stated in RFC 1042
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 */
265 if( (!memcmp(&(trh->daddr[0]),&(dev->broadcast[0]),TR_ALEN)) ||
266 (!memcmp(&(trh->daddr[0]),&(mcast_func_addr[0]), TR_ALEN)) )
267 {
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900268 trh->rcf=htons((((sizeof(trh->rcf)) << 8) & TR_RCF_LEN_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 | TR_RCF_FRAME2K | TR_RCF_LIMITED_BROADCAST);
270 trh->saddr[0]|=TR_RII;
271 }
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900272 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 {
274 hash = rif_hash(trh->daddr);
275 /*
276 * Walk the hash table and look for an entry
277 */
278 for(entry=rif_table[hash];entry && memcmp(&(entry->addr[0]),&(trh->daddr[0]),TR_ALEN);entry=entry->next);
279
280 /*
281 * If we found an entry we can route the frame.
282 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900283 if(entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 {
285#if TR_SR_DEBUG
286printk("source routing for %02X:%02X:%02X:%02X:%02X:%02X\n",trh->daddr[0],
287 trh->daddr[1],trh->daddr[2],trh->daddr[3],trh->daddr[4],trh->daddr[5]);
288#endif
289 if(!entry->local_ring && (ntohs(entry->rcf) & TR_RCF_LEN_MASK) >> 8)
290 {
291 trh->rcf=entry->rcf;
292 memcpy(&trh->rseg[0],&entry->rseg[0],8*sizeof(unsigned short));
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900293 trh->rcf^=htons(TR_RCF_DIR_BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 trh->rcf&=htons(0x1fff); /* Issam Chehab <ichehab@madge1.demon.co.uk> */
295
296 trh->saddr[0]|=TR_RII;
297#if TR_SR_DEBUG
298 printk("entry found with rcf %04x\n", entry->rcf);
299 }
300 else
301 {
302 printk("entry found but without rcf length, local=%02x\n", entry->local_ring);
303#endif
304 }
305 entry->last_used=jiffies;
306 }
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900307 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 {
309 /*
310 * Without the information we simply have to shout
311 * on the wire. The replies should rapidly clean this
312 * situation up.
313 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900314 trh->rcf=htons((((sizeof(trh->rcf)) << 8) & TR_RCF_LEN_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 | TR_RCF_FRAME2K | TR_RCF_LIMITED_BROADCAST);
316 trh->saddr[0]|=TR_RII;
317#if TR_SR_DEBUG
318 printk("no entry in rif table found - broadcasting frame\n");
319#endif
320 }
321 }
322
323 /* Compress the RIF here so we don't have to do it in the driver(s) */
324 if (!(trh->saddr[0] & 0x80))
325 slack = 18;
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900326 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 slack = 18 - ((ntohs(trh->rcf) & TR_RCF_LEN_MASK)>>8);
328 olddata = skb->data;
Jay Vosburgh001dd252005-08-18 14:04:51 -0700329 spin_unlock_irqrestore(&rif_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 skb_pull(skb, slack);
332 memmove(skb->data, olddata, sizeof(struct trh_hdr) - slack);
333}
334
335/*
336 * We have learned some new RIF information for our source
337 * routing.
338 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340static void tr_add_rif_info(struct trh_hdr *trh, struct net_device *dev)
341{
342 unsigned int hash, rii_p = 0;
Jay Vosburgh001dd252005-08-18 14:04:51 -0700343 unsigned long flags;
Alexey Dobriyanc8b35d22005-05-26 12:59:42 -0700344 struct rif_cache *entry;
Jochen Friedrich5ac660e2005-10-23 10:31:45 +0200345 unsigned char saddr0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Jay Vosburgh001dd252005-08-18 14:04:51 -0700347 spin_lock_irqsave(&rif_lock, flags);
Jochen Friedrich5ac660e2005-10-23 10:31:45 +0200348 saddr0 = trh->saddr[0];
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 /*
351 * Firstly see if the entry exists
352 */
353
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900354 if(trh->saddr[0] & TR_RII)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 {
356 trh->saddr[0]&=0x7f;
357 if (((ntohs(trh->rcf) & TR_RCF_LEN_MASK) >> 8) > 2)
358 {
359 rii_p = 1;
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362
363 hash = rif_hash(trh->saddr);
364 for(entry=rif_table[hash];entry && memcmp(&(entry->addr[0]),&(trh->saddr[0]),TR_ALEN);entry=entry->next);
365
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900366 if(entry==NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 {
368#if TR_SR_DEBUG
369printk("adding rif_entry: addr:%02X:%02X:%02X:%02X:%02X:%02X rcf:%04X\n",
370 trh->saddr[0],trh->saddr[1],trh->saddr[2],
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900371 trh->saddr[3],trh->saddr[4],trh->saddr[5],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 ntohs(trh->rcf));
373#endif
374 /*
375 * Allocate our new entry. A failure to allocate loses
376 * use the information. This is harmless.
377 *
378 * FIXME: We ought to keep some kind of cache size
379 * limiting and adjust the timers to suit.
380 */
Alexey Dobriyanc8b35d22005-05-26 12:59:42 -0700381 entry=kmalloc(sizeof(struct rif_cache),GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900383 if(!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 {
385 printk(KERN_DEBUG "tr.c: Couldn't malloc rif cache entry !\n");
Jay Vosburgh001dd252005-08-18 14:04:51 -0700386 spin_unlock_irqrestore(&rif_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return;
388 }
389
390 memcpy(&(entry->addr[0]),&(trh->saddr[0]),TR_ALEN);
391 entry->iface = dev->ifindex;
392 entry->next=rif_table[hash];
393 entry->last_used=jiffies;
394 rif_table[hash]=entry;
395
396 if (rii_p)
397 {
398 entry->rcf = trh->rcf & htons((unsigned short)~TR_RCF_BROADCAST_MASK);
399 memcpy(&(entry->rseg[0]),&(trh->rseg[0]),8*sizeof(unsigned short));
400 entry->local_ring = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402 else
403 {
404 entry->local_ring = 1;
405 }
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 else /* Y. Tahara added */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900408 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 /*
410 * Update existing entries
411 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900412 if (!entry->local_ring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (entry->rcf != (trh->rcf & htons((unsigned short)~TR_RCF_BROADCAST_MASK)) &&
414 !(trh->rcf & htons(TR_RCF_BROADCAST_MASK)))
415 {
416#if TR_SR_DEBUG
417printk("updating rif_entry: addr:%02X:%02X:%02X:%02X:%02X:%02X rcf:%04X\n",
418 trh->saddr[0],trh->saddr[1],trh->saddr[2],
419 trh->saddr[3],trh->saddr[4],trh->saddr[5],
420 ntohs(trh->rcf));
421#endif
422 entry->rcf = trh->rcf & htons((unsigned short)~TR_RCF_BROADCAST_MASK);
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900423 memcpy(&(entry->rseg[0]),&(trh->rseg[0]),8*sizeof(unsigned short));
424 }
425 entry->last_used=jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
Jochen Friedrich5ac660e2005-10-23 10:31:45 +0200427 trh->saddr[0]=saddr0; /* put the routing indicator back for tcpdump */
Jay Vosburgh001dd252005-08-18 14:04:51 -0700428 spin_unlock_irqrestore(&rif_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
431/*
432 * Scan the cache with a timer and see what we need to throw out.
433 */
434
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900435static void rif_check_expire(unsigned long dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 int i;
Jay Vosburgh001dd252005-08-18 14:04:51 -0700438 unsigned long flags, next_interval = jiffies + sysctl_tr_rif_timeout/2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Jay Vosburgh001dd252005-08-18 14:04:51 -0700440 spin_lock_irqsave(&rif_lock, flags);
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 for(i =0; i < RIF_TABLE_SIZE; i++) {
Alexey Dobriyanc8b35d22005-05-26 12:59:42 -0700443 struct rif_cache *entry, **pentry;
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 pentry = rif_table+i;
446 while((entry=*pentry) != NULL) {
447 unsigned long expires
448 = entry->last_used + sysctl_tr_rif_timeout;
449
450 if (time_before_eq(expires, jiffies)) {
451 *pentry = entry->next;
452 kfree(entry);
453 } else {
454 pentry = &entry->next;
455
456 if (time_before(expires, next_interval))
457 next_interval = expires;
458 }
459 }
460 }
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900461
Jay Vosburgh001dd252005-08-18 14:04:51 -0700462 spin_unlock_irqrestore(&rif_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464 mod_timer(&rif_timer, next_interval);
465
466}
467
468/*
469 * Generate the /proc/net information for the token ring RIF
470 * routing.
471 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473#ifdef CONFIG_PROC_FS
474
Alexey Dobriyanc8b35d22005-05-26 12:59:42 -0700475static struct rif_cache *rif_get_idx(loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 int i;
Alexey Dobriyanc8b35d22005-05-26 12:59:42 -0700478 struct rif_cache *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 loff_t off = 0;
480
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900481 for(i = 0; i < RIF_TABLE_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 for(entry = rif_table[i]; entry; entry = entry->next) {
483 if (off == pos)
484 return entry;
485 ++off;
486 }
487
488 return NULL;
489}
490
491static void *rif_seq_start(struct seq_file *seq, loff_t *pos)
492{
Jay Vosburgh001dd252005-08-18 14:04:51 -0700493 spin_lock_irq(&rif_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 return *pos ? rif_get_idx(*pos - 1) : SEQ_START_TOKEN;
496}
497
498static void *rif_seq_next(struct seq_file *seq, void *v, loff_t *pos)
499{
500 int i;
Alexey Dobriyanc8b35d22005-05-26 12:59:42 -0700501 struct rif_cache *ent = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 ++*pos;
504
505 if (v == SEQ_START_TOKEN) {
506 i = -1;
507 goto scan;
508 }
509
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900510 if (ent->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return ent->next;
512
513 i = rif_hash(ent->addr);
514 scan:
515 while (++i < RIF_TABLE_SIZE) {
516 if ((ent = rif_table[i]) != NULL)
517 return ent;
518 }
519 return NULL;
520}
521
522static void rif_seq_stop(struct seq_file *seq, void *v)
523{
Jay Vosburgh001dd252005-08-18 14:04:51 -0700524 spin_unlock_irq(&rif_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
527static int rif_seq_show(struct seq_file *seq, void *v)
528{
529 int j, rcf_len, segment, brdgnmb;
Alexey Dobriyanc8b35d22005-05-26 12:59:42 -0700530 struct rif_cache *entry = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 if (v == SEQ_START_TOKEN)
533 seq_puts(seq,
534 "if TR address TTL rcf routing segments\n");
535 else {
Eric W. Biederman881d9662007-09-17 11:56:21 -0700536 struct net_device *dev = dev_get_by_index(&init_net, entry->iface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 long ttl = (long) (entry->last_used + sysctl_tr_rif_timeout)
538 - (long) jiffies;
539
540 seq_printf(seq, "%s %02X:%02X:%02X:%02X:%02X:%02X %7li ",
541 dev?dev->name:"?",
542 entry->addr[0],entry->addr[1],entry->addr[2],
543 entry->addr[3],entry->addr[4],entry->addr[5],
544 ttl/HZ);
545
546 if (entry->local_ring)
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900547 seq_puts(seq, "local\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 else {
549
550 seq_printf(seq, "%04X", ntohs(entry->rcf));
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900551 rcf_len = ((ntohs(entry->rcf) & TR_RCF_LEN_MASK)>>8)-2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (rcf_len)
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900553 rcf_len >>= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 for(j = 1; j < rcf_len; j++) {
555 if(j==1) {
556 segment=ntohs(entry->rseg[j-1])>>4;
557 seq_printf(seq," %03X",segment);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700558 }
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 segment=ntohs(entry->rseg[j])>>4;
561 brdgnmb=ntohs(entry->rseg[j-1])&0x00f;
562 seq_printf(seq,"-%01X-%03X",brdgnmb,segment);
563 }
564 seq_putc(seq, '\n');
565 }
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return 0;
568}
569
570
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700571static const struct seq_operations rif_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 .start = rif_seq_start,
573 .next = rif_seq_next,
574 .stop = rif_seq_stop,
575 .show = rif_seq_show,
576};
577
578static int rif_seq_open(struct inode *inode, struct file *file)
579{
580 return seq_open(file, &rif_seq_ops);
581}
582
Arjan van de Ven9a321442007-02-12 00:55:35 -0800583static const struct file_operations rif_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 .owner = THIS_MODULE,
585 .open = rif_seq_open,
586 .read = seq_read,
587 .llseek = seq_lseek,
588 .release = seq_release,
589};
590
591#endif
592
593static void tr_setup(struct net_device *dev)
594{
595 /*
596 * Configure and register
597 */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 dev->hard_header = tr_header;
600 dev->rebuild_header = tr_rebuild_header;
601
602 dev->type = ARPHRD_IEEE802_TR;
603 dev->hard_header_len = TR_HLEN;
604 dev->mtu = 2000;
605 dev->addr_len = TR_ALEN;
606 dev->tx_queue_len = 100; /* Long queues on tr */
YOSHIFUJI Hideaki9afa0942007-02-09 23:24:24 +0900607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 memset(dev->broadcast,0xFF, TR_ALEN);
609
610 /* New-style flags. */
611 dev->flags = IFF_BROADCAST | IFF_MULTICAST ;
612}
613
614/**
615 * alloc_trdev - Register token ring device
616 * @sizeof_priv: Size of additional driver-private structure to be allocated
617 * for this token ring device
618 *
619 * Fill in the fields of the device structure with token ring-generic values.
620 *
621 * Constructs a new net device, complete with a private data area of
622 * size @sizeof_priv. A 32-byte (not bit) alignment is enforced for
623 * this private data area.
624 */
625struct net_device *alloc_trdev(int sizeof_priv)
626{
627 return alloc_netdev(sizeof_priv, "tr%d", tr_setup);
628}
629
630/*
631 * Called during bootup. We don't actually have to initialise
632 * too much for this.
633 */
634
635static int __init rif_init(void)
636{
637 init_timer(&rif_timer);
638 rif_timer.expires = sysctl_tr_rif_timeout;
639 rif_timer.data = 0L;
640 rif_timer.function = rif_check_expire;
641 add_timer(&rif_timer);
642
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200643 proc_net_fops_create(&init_net, "tr_rif", S_IRUGO, &rif_seq_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return 0;
645}
646
647module_init(rif_init);
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649EXPORT_SYMBOL(tr_type_trans);
650EXPORT_SYMBOL(alloc_trdev);