patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / net / atm / mpc.c
1 #include <linux/kernel.h>
2 #include <linux/string.h>
3 #include <linux/timer.h>
4 #include <linux/init.h>
5 #include <linux/bitops.h>
6
7 /* We are an ethernet device */
8 #include <linux/if_ether.h>
9 #include <linux/netdevice.h>
10 #include <linux/etherdevice.h>
11 #include <net/sock.h>
12 #include <linux/skbuff.h>
13 #include <linux/ip.h>
14 #include <asm/byteorder.h>
15 #include <asm/uaccess.h>
16 #include <net/checksum.h>   /* for ip_fast_csum() */
17 #include <net/arp.h>
18 #include <net/dst.h>
19 #include <linux/proc_fs.h>
20
21 /* And atm device */
22 #include <linux/atmdev.h>
23 #include <linux/atmlec.h>
24 #include <linux/atmmpc.h>
25 /* Modular too */
26 #include <linux/config.h>
27 #include <linux/module.h>
28
29 #include "lec.h"
30 #include "mpc.h"
31 #include "resources.h"
32
33 /*
34  * mpc.c: Implementation of MPOA client kernel part 
35  */
36
37 #if 0
38 #define dprintk printk   /* debug */
39 #else
40 #define dprintk(format,args...)
41 #endif
42
43 #if 0
44 #define ddprintk printk  /* more debug */
45 #else
46 #define ddprintk(format,args...)
47 #endif
48
49
50
51 #define MPOA_TAG_LEN 4
52
53 /* mpc_daemon -> kernel */
54 static void MPOA_trigger_rcvd (struct k_message *msg, struct mpoa_client *mpc);
55 static void MPOA_res_reply_rcvd(struct k_message *msg, struct mpoa_client *mpc);
56 static void ingress_purge_rcvd(struct k_message *msg, struct mpoa_client *mpc);
57 static void egress_purge_rcvd(struct k_message *msg, struct mpoa_client *mpc);
58 static void mps_death(struct k_message *msg, struct mpoa_client *mpc);
59 static void clean_up(struct k_message *msg, struct mpoa_client *mpc, int action);
60 static void MPOA_cache_impos_rcvd(struct k_message *msg, struct mpoa_client *mpc);
61 static void set_mpc_ctrl_addr_rcvd(struct k_message *mesg, struct mpoa_client *mpc);
62 static void set_mps_mac_addr_rcvd(struct k_message *mesg, struct mpoa_client *mpc);
63
64 static uint8_t *copy_macs(struct mpoa_client *mpc, uint8_t *router_mac,
65                           uint8_t *tlvs, uint8_t mps_macs, uint8_t device_type);
66 static void purge_egress_shortcut(struct atm_vcc *vcc, eg_cache_entry *entry);
67
68 static void send_set_mps_ctrl_addr(char *addr, struct mpoa_client *mpc);
69 static void mpoad_close(struct atm_vcc *vcc);
70 static int msg_from_mpoad(struct atm_vcc *vcc, struct sk_buff *skb);
71
72 static void mpc_push(struct atm_vcc *vcc, struct sk_buff *skb);
73 static int mpc_send_packet(struct sk_buff *skb, struct net_device *dev);
74 static int mpoa_event_listener(struct notifier_block *mpoa_notifier, unsigned long event, void *dev);
75 static void mpc_timer_refresh(void);
76 static void mpc_cache_check( unsigned long checking_time  );
77
78 static struct llc_snap_hdr llc_snap_mpoa_ctrl = {
79         0xaa, 0xaa, 0x03,
80         {0x00, 0x00, 0x5e},
81         {0x00, 0x03}         /* For MPOA control PDUs */
82 };        
83 static struct llc_snap_hdr llc_snap_mpoa_data = {
84         0xaa, 0xaa, 0x03,
85         {0x00, 0x00, 0x00},
86         {0x08, 0x00}         /* This is for IP PDUs only */
87 };        
88 static struct llc_snap_hdr llc_snap_mpoa_data_tagged = {
89         0xaa, 0xaa, 0x03,
90         {0x00, 0x00, 0x00},
91         {0x88, 0x4c}         /* This is for tagged data PDUs */
92 };        
93
94 static struct notifier_block mpoa_notifier = {
95         mpoa_event_listener,
96         NULL,
97         0
98 };
99
100 #ifdef CONFIG_PROC_FS
101 extern int mpc_proc_init(void);
102 extern void mpc_proc_clean(void);
103 #endif
104
105 struct mpoa_client *mpcs = NULL; /* FIXME */
106 static struct atm_mpoa_qos *qos_head = NULL;
107 static struct timer_list mpc_timer = TIMER_INITIALIZER(NULL, 0, 0);
108
109
110 static struct mpoa_client *find_mpc_by_itfnum(int itf)
111 {
112         struct mpoa_client *mpc;
113         
114         mpc = mpcs;  /* our global linked list */
115         while (mpc != NULL) {
116                 if (mpc->dev_num == itf)
117                         return mpc;
118                 mpc = mpc->next;    
119         }
120
121         return NULL;   /* not found */
122 }
123
124 static struct mpoa_client *find_mpc_by_vcc(struct atm_vcc *vcc)
125 {
126         struct mpoa_client *mpc;
127         
128         mpc = mpcs;  /* our global linked list */
129         while (mpc != NULL) {
130                 if (mpc->mpoad_vcc == vcc)
131                         return mpc;
132                 mpc = mpc->next;
133         }
134
135         return NULL;   /* not found */
136 }
137
138 static struct mpoa_client *find_mpc_by_lec(struct net_device *dev)
139 {
140         struct mpoa_client *mpc;
141         
142         mpc = mpcs;  /* our global linked list */
143         while (mpc != NULL) {
144                 if (mpc->dev == dev)
145                         return mpc;
146                 mpc = mpc->next;
147         }
148
149         return NULL;   /* not found */
150 }
151
152 /*
153  * Functions for managing QoS list
154  */
155
156 /*
157  * Overwrites the old entry or makes a new one.
158  */
159 struct atm_mpoa_qos *atm_mpoa_add_qos(uint32_t dst_ip, struct atm_qos *qos)
160 {
161         struct atm_mpoa_qos *entry;
162
163         entry = atm_mpoa_search_qos(dst_ip);
164         if (entry != NULL) {
165                 entry->qos = *qos;
166                 return entry;
167         }
168
169         entry = kmalloc(sizeof(struct atm_mpoa_qos), GFP_KERNEL);
170         if (entry == NULL) {
171                 printk("mpoa: atm_mpoa_add_qos: out of memory\n");
172                 return entry;
173         }
174
175         entry->ipaddr = dst_ip;
176         entry->qos = *qos;
177
178         entry->next = qos_head;
179         qos_head = entry;
180
181         return entry;
182 }
183
184 struct atm_mpoa_qos *atm_mpoa_search_qos(uint32_t dst_ip)
185 {
186         struct atm_mpoa_qos *qos;
187
188         qos = qos_head;
189         while( qos != NULL ){
190                 if(qos->ipaddr == dst_ip) {
191                         break;
192                 }
193                 qos = qos->next;
194         }
195
196         return qos;
197 }        
198
199 /*
200  * Returns 0 for failure
201  */
202 int atm_mpoa_delete_qos(struct atm_mpoa_qos *entry)
203 {
204
205         struct atm_mpoa_qos *curr;
206
207         if (entry == NULL) return 0;
208         if (entry == qos_head) {
209                 qos_head = qos_head->next;
210                 kfree(entry);
211                 return 1;
212         }
213
214         curr = qos_head;
215         while (curr != NULL) {
216                 if (curr->next == entry) {
217                         curr->next = entry->next;
218                         kfree(entry);
219                         return 1;
220                 }
221                 curr = curr->next;
222         }
223
224         return 0;
225 }
226
227 void atm_mpoa_disp_qos(char *page, ssize_t *len)
228 {
229
230         unsigned char *ip;
231         char ipaddr[16];
232         struct atm_mpoa_qos *qos;
233
234         qos = qos_head;
235         *len += sprintf(page + *len, "QoS entries for shortcuts:\n");
236         *len += sprintf(page + *len, "IP address\n  TX:max_pcr pcr     min_pcr max_cdv max_sdu\n  RX:max_pcr pcr     min_pcr max_cdv max_sdu\n");
237
238         ipaddr[sizeof(ipaddr)-1] = '\0';
239         while (qos != NULL) {
240                 ip = (unsigned char *)&qos->ipaddr;
241                 sprintf(ipaddr, "%u.%u.%u.%u", NIPQUAD(ip));
242                 *len += sprintf(page + *len, "%u.%u.%u.%u\n     %-7d %-7d %-7d %-7d %-7d\n     %-7d %-7d %-7d %-7d %-7d\n",
243                                 NIPQUAD(ipaddr),
244                                 qos->qos.txtp.max_pcr, qos->qos.txtp.pcr, qos->qos.txtp.min_pcr, qos->qos.txtp.max_cdv, qos->qos.txtp.max_sdu,
245                                 qos->qos.rxtp.max_pcr, qos->qos.rxtp.pcr, qos->qos.rxtp.min_pcr, qos->qos.rxtp.max_cdv, qos->qos.rxtp.max_sdu);
246                 qos = qos->next;
247         }
248         
249         return;
250 }
251
252 static struct net_device *find_lec_by_itfnum(int itf)
253 {
254         struct net_device *dev;
255         char name[IFNAMSIZ];
256
257         sprintf(name, "lec%d", itf);
258         dev = dev_get_by_name(name);
259         
260         return dev;
261 }
262
263 static struct mpoa_client *alloc_mpc(void)
264 {
265         struct mpoa_client *mpc;
266
267         mpc = kmalloc(sizeof (struct mpoa_client), GFP_KERNEL);
268         if (mpc == NULL)
269                 return NULL;
270         memset(mpc, 0, sizeof(struct mpoa_client));
271         mpc->ingress_lock = RW_LOCK_UNLOCKED;
272         mpc->egress_lock  = RW_LOCK_UNLOCKED;
273         mpc->next = mpcs;
274         atm_mpoa_init_cache(mpc);
275
276         mpc->parameters.mpc_p1 = MPC_P1;
277         mpc->parameters.mpc_p2 = MPC_P2;
278         memset(mpc->parameters.mpc_p3,0,sizeof(mpc->parameters.mpc_p3));
279         mpc->parameters.mpc_p4 = MPC_P4;
280         mpc->parameters.mpc_p5 = MPC_P5; 
281         mpc->parameters.mpc_p6 = MPC_P6;
282         
283         mpcs = mpc;
284         
285         return mpc;
286 }
287
288 /*
289  *
290  * start_mpc() puts the MPC on line. All the packets destined
291  * to the lec underneath us are now being monitored and 
292  * shortcuts will be established.
293  *
294  */
295 static void start_mpc(struct mpoa_client *mpc, struct net_device *dev)
296 {
297         
298         dprintk("mpoa: (%s) start_mpc:\n", mpc->dev->name); 
299         if (dev->hard_start_xmit == NULL) {
300                 printk("mpoa: (%s) start_mpc: dev->hard_start_xmit == NULL, not starting\n",
301                        dev->name);
302                 return;
303         }
304         mpc->old_hard_start_xmit = dev->hard_start_xmit;
305         dev->hard_start_xmit = mpc_send_packet;
306
307         return;
308 }
309
310 static void stop_mpc(struct mpoa_client *mpc)
311 {
312         
313         dprintk("mpoa: (%s) stop_mpc:", mpc->dev->name); 
314
315         /* Lets not nullify lec device's dev->hard_start_xmit */
316         if (mpc->dev->hard_start_xmit != mpc_send_packet) {
317                 dprintk(" mpc already stopped, not fatal\n");
318                 return;
319         }
320         dprintk("\n");
321         mpc->dev->hard_start_xmit = mpc->old_hard_start_xmit;
322         mpc->old_hard_start_xmit = NULL;
323         /* close_shortcuts(mpc);    ??? FIXME */
324         
325         return;
326 }
327
328 static const char *mpoa_device_type_string(char type) __attribute__ ((unused));
329
330 static const char *mpoa_device_type_string(char type)
331 {
332         switch(type) {
333         case NON_MPOA:
334                 return "non-MPOA device";
335                 break;
336         case MPS:
337                 return "MPS";
338                 break;
339         case MPC:
340                 return "MPC";
341                 break;
342         case MPS_AND_MPC:
343                 return "both MPS and MPC";
344                 break;
345         default:
346                 return "unspecified (non-MPOA) device";
347                 break;
348         }
349
350         return ""; /* not reached */
351 }
352
353 /*
354  * lec device calls this via its dev->priv->lane2_ops->associate_indicator()
355  * when it sees a TLV in LE_ARP packet.
356  * We fill in the pointer above when we see a LANE2 lec initializing
357  * See LANE2 spec 3.1.5
358  *
359  * Quite a big and ugly function but when you look at it
360  * all it does is to try to locate and parse MPOA Device
361  * Type TLV.
362  * We give our lec a pointer to this function and when the
363  * lec sees a TLV it uses the pointer to call this function.
364  *
365  */
366 static void lane2_assoc_ind(struct net_device *dev, uint8_t *mac_addr,
367                             uint8_t *tlvs, uint32_t sizeoftlvs)
368 {
369         uint32_t type;
370         uint8_t length, mpoa_device_type, number_of_mps_macs;
371         uint8_t *end_of_tlvs;
372         struct mpoa_client *mpc;
373         
374         mpoa_device_type = number_of_mps_macs = 0; /* silence gcc */
375         dprintk("mpoa: (%s) lane2_assoc_ind: received TLV(s), ", dev->name);
376         dprintk("total length of all TLVs %d\n", sizeoftlvs);
377         mpc = find_mpc_by_lec(dev); /* Sampo-Fix: moved here from below */
378         if (mpc == NULL) {
379                 printk("mpoa: (%s) lane2_assoc_ind: no mpc\n", dev->name);
380                 return;
381         }
382         end_of_tlvs = tlvs + sizeoftlvs;
383         while (end_of_tlvs - tlvs >= 5) {
384                 type = (tlvs[0] << 24) | (tlvs[1] << 16) | (tlvs[2] << 8) | tlvs[3];
385                 length = tlvs[4];
386                 tlvs += 5;
387                 dprintk("    type 0x%x length %02x\n", type, length);
388                 if (tlvs + length > end_of_tlvs) {
389                         printk("TLV value extends past its buffer, aborting parse\n");
390                         return;
391                 }
392                 
393                 if (type == 0) {
394                         printk("mpoa: (%s) lane2_assoc_ind: TLV type was 0, returning\n", dev->name);
395                         return;
396                 }
397
398                 if (type != TLV_MPOA_DEVICE_TYPE) {
399                         tlvs += length;
400                         continue;  /* skip other TLVs */
401                 }
402                 mpoa_device_type = *tlvs++;
403                 number_of_mps_macs = *tlvs++;
404                 dprintk("mpoa: (%s) MPOA device type '%s', ", dev->name, mpoa_device_type_string(mpoa_device_type));
405                 if (mpoa_device_type == MPS_AND_MPC &&
406                     length < (42 + number_of_mps_macs*ETH_ALEN)) { /* :) */
407                         printk("\nmpoa: (%s) lane2_assoc_ind: short MPOA Device Type TLV\n",
408                                dev->name);
409                         continue;
410                 }
411                 if ((mpoa_device_type == MPS || mpoa_device_type == MPC)
412                     && length < 22 + number_of_mps_macs*ETH_ALEN) {
413                         printk("\nmpoa: (%s) lane2_assoc_ind: short MPOA Device Type TLV\n",
414                                 dev->name);
415                         continue;
416                 }
417                 if (mpoa_device_type != MPS && mpoa_device_type != MPS_AND_MPC) {
418                         dprintk("ignoring non-MPS device\n");
419                         if (mpoa_device_type == MPC) tlvs += 20;
420                         continue;  /* we are only interested in MPSs */
421                 }
422                 if (number_of_mps_macs == 0 && mpoa_device_type == MPS_AND_MPC) {
423                         printk("\nmpoa: (%s) lane2_assoc_ind: MPS_AND_MPC has zero MACs\n", dev->name);
424                         continue;  /* someone should read the spec */
425                 }
426                 dprintk("this MPS has %d MAC addresses\n", number_of_mps_macs);
427                 
428                 /* ok, now we can go and tell our daemon the control address of MPS */
429                 send_set_mps_ctrl_addr(tlvs, mpc);
430                 
431                 tlvs = copy_macs(mpc, mac_addr, tlvs, number_of_mps_macs, mpoa_device_type);
432                 if (tlvs == NULL) return;
433         }
434         if (end_of_tlvs - tlvs != 0)
435                 printk("mpoa: (%s) lane2_assoc_ind: ignoring %Zd bytes of trailing TLV carbage\n",
436                        dev->name, end_of_tlvs - tlvs);
437         return;
438 }
439
440 /*
441  * Store at least advertizing router's MAC address
442  * plus the possible MAC address(es) to mpc->mps_macs.
443  * For a freshly allocated MPOA client mpc->mps_macs == 0.
444  */
445 static uint8_t *copy_macs(struct mpoa_client *mpc, uint8_t *router_mac,
446                           uint8_t *tlvs, uint8_t mps_macs, uint8_t device_type)
447 {
448         int num_macs;
449         num_macs = (mps_macs > 1) ? mps_macs : 1;
450
451         if (mpc->number_of_mps_macs != num_macs) { /* need to reallocate? */
452                 if (mpc->number_of_mps_macs != 0) kfree(mpc->mps_macs);
453                 mpc->number_of_mps_macs = 0;
454                 mpc->mps_macs = kmalloc(num_macs*ETH_ALEN, GFP_KERNEL);
455                 if (mpc->mps_macs == NULL) {
456                         printk("mpoa: (%s) copy_macs: out of mem\n", mpc->dev->name);
457                         return NULL;
458                 }
459         }
460         memcpy(mpc->mps_macs, router_mac, ETH_ALEN);
461         tlvs += 20; if (device_type == MPS_AND_MPC) tlvs += 20;
462         if (mps_macs > 0)
463                 memcpy(mpc->mps_macs, tlvs, mps_macs*ETH_ALEN);
464         tlvs += mps_macs*ETH_ALEN;
465         mpc->number_of_mps_macs = num_macs;
466
467         return tlvs;
468 }
469
470 static int send_via_shortcut(struct sk_buff *skb, struct mpoa_client *mpc)
471 {
472         in_cache_entry *entry;
473         struct iphdr *iph;
474         char *buff;
475         uint32_t ipaddr = 0;
476
477         static struct {
478                 struct llc_snap_hdr hdr;
479                 uint32_t tag;
480         } tagged_llc_snap_hdr = {
481                 {0xaa, 0xaa, 0x03, {0x00, 0x00, 0x00}, {0x88, 0x4c}},
482                 0
483         };
484
485         buff = skb->data + mpc->dev->hard_header_len;
486         iph = (struct iphdr *)buff;
487         ipaddr = iph->daddr;
488
489         ddprintk("mpoa: (%s) send_via_shortcut: ipaddr 0x%x\n", mpc->dev->name, ipaddr);        
490
491         entry = mpc->in_ops->get(ipaddr, mpc);
492         if (entry == NULL) {
493                 entry = mpc->in_ops->add_entry(ipaddr, mpc);
494                 if (entry != NULL) mpc->in_ops->put(entry);
495                 return 1;
496         }
497         if (mpc->in_ops->cache_hit(entry, mpc) != OPEN){   /* threshold not exceeded or VCC not ready */
498                 ddprintk("mpoa: (%s) send_via_shortcut: cache_hit: returns != OPEN\n", mpc->dev->name);        
499                 mpc->in_ops->put(entry);
500                 return 1;
501         }
502
503         ddprintk("mpoa: (%s) send_via_shortcut: using shortcut\n", mpc->dev->name);        
504         /* MPOA spec A.1.4, MPOA client must decrement IP ttl at least by one */
505         if (iph->ttl <= 1) {
506                 ddprintk("mpoa: (%s) send_via_shortcut: IP ttl = %u, using LANE\n", mpc->dev->name, iph->ttl);        
507                 mpc->in_ops->put(entry);
508                 return 1;
509         }
510         iph->ttl--;
511         iph->check = 0;
512         iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
513
514         if (entry->ctrl_info.tag != 0) {
515                 ddprintk("mpoa: (%s) send_via_shortcut: adding tag 0x%x\n", mpc->dev->name, entry->ctrl_info.tag);
516                 tagged_llc_snap_hdr.tag = entry->ctrl_info.tag;
517                 skb_pull(skb, ETH_HLEN);                       /* get rid of Eth header */
518                 skb_push(skb, sizeof(tagged_llc_snap_hdr));    /* add LLC/SNAP header   */
519                 memcpy(skb->data, &tagged_llc_snap_hdr, sizeof(tagged_llc_snap_hdr));
520         } else {
521                 skb_pull(skb, ETH_HLEN);                        /* get rid of Eth header */
522                 skb_push(skb, sizeof(struct llc_snap_hdr));     /* add LLC/SNAP header + tag  */
523                 memcpy(skb->data, &llc_snap_mpoa_data, sizeof(struct llc_snap_hdr));
524         }
525
526         atomic_add(skb->truesize, &entry->shortcut->sk->sk_wmem_alloc);
527         ATM_SKB(skb)->atm_options = entry->shortcut->atm_options;
528         entry->shortcut->send(entry->shortcut, skb);
529         entry->packets_fwded++;
530         mpc->in_ops->put(entry);
531
532         return 0;
533 }
534
535 /*
536  * Probably needs some error checks and locking, not sure...
537  */
538 static int mpc_send_packet(struct sk_buff *skb, struct net_device *dev)
539 {
540         int retval;
541         struct mpoa_client *mpc;
542         struct ethhdr *eth;
543         int i = 0;
544         
545         mpc = find_mpc_by_lec(dev); /* this should NEVER fail */
546         if(mpc == NULL) {
547                 printk("mpoa: (%s) mpc_send_packet: no MPC found\n", dev->name);
548                 goto non_ip;
549         }
550
551         eth = (struct ethhdr *)skb->data;
552         if (eth->h_proto != htons(ETH_P_IP))
553                 goto non_ip; /* Multi-Protocol Over ATM :-) */
554
555         while (i < mpc->number_of_mps_macs) {
556                 if (memcmp(eth->h_dest, (mpc->mps_macs + i*ETH_ALEN), ETH_ALEN) == 0)
557                         if ( send_via_shortcut(skb, mpc) == 0 )           /* try shortcut */
558                                 return 0;                                 /* success!     */
559                 i++;
560         }
561
562  non_ip:
563         retval = mpc->old_hard_start_xmit(skb,dev);
564         
565         return retval;
566 }
567
568 int atm_mpoa_vcc_attach(struct atm_vcc *vcc, void __user *arg)
569 {
570         int bytes_left;
571         struct mpoa_client *mpc;
572         struct atmmpc_ioc ioc_data;
573         in_cache_entry *in_entry;
574         uint32_t  ipaddr;
575         unsigned char *ip;
576
577         bytes_left = copy_from_user(&ioc_data, arg, sizeof(struct atmmpc_ioc));
578         if (bytes_left != 0) {
579                 printk("mpoa: mpc_vcc_attach: Short read (missed %d bytes) from userland\n", bytes_left);
580                 return -EFAULT;
581         }
582         ipaddr = ioc_data.ipaddr;
583         if (ioc_data.dev_num < 0 || ioc_data.dev_num >= MAX_LEC_ITF)
584                 return -EINVAL;
585         
586         mpc = find_mpc_by_itfnum(ioc_data.dev_num);
587         if (mpc == NULL)
588                 return -EINVAL;
589         
590         if (ioc_data.type == MPC_SOCKET_INGRESS) {
591                 in_entry = mpc->in_ops->get(ipaddr, mpc);
592                 if (in_entry == NULL || in_entry->entry_state < INGRESS_RESOLVED) {
593                         printk("mpoa: (%s) mpc_vcc_attach: did not find RESOLVED entry from ingress cache\n",
594                                 mpc->dev->name);
595                         if (in_entry != NULL) mpc->in_ops->put(in_entry);
596                         return -EINVAL;
597                 }
598                 ip = (unsigned char*)&in_entry->ctrl_info.in_dst_ip;
599                 printk("mpoa: (%s) mpc_vcc_attach: attaching ingress SVC, entry = %u.%u.%u.%u\n",
600                        mpc->dev->name, ip[0], ip[1], ip[2], ip[3]);
601                 in_entry->shortcut = vcc;
602                 mpc->in_ops->put(in_entry);
603         } else {
604                 printk("mpoa: (%s) mpc_vcc_attach: attaching egress SVC\n", mpc->dev->name);
605         }
606
607         vcc->proto_data = mpc->dev;
608         vcc->push = mpc_push;
609
610         return 0;
611 }
612
613 /*
614  *
615  */
616 static void mpc_vcc_close(struct atm_vcc *vcc, struct net_device *dev)
617 {
618         struct mpoa_client *mpc;
619         in_cache_entry *in_entry;
620         eg_cache_entry *eg_entry;
621         
622         mpc = find_mpc_by_lec(dev);
623         if (mpc == NULL) {
624                 printk("mpoa: (%s) mpc_vcc_close: close for unknown MPC\n", dev->name);
625                 return;
626         }
627
628         dprintk("mpoa: (%s) mpc_vcc_close:\n", dev->name);
629         in_entry = mpc->in_ops->get_by_vcc(vcc, mpc);
630         if (in_entry) {
631                 unsigned char *ip __attribute__ ((unused)) =
632                     (unsigned char *)&in_entry->ctrl_info.in_dst_ip;
633                 dprintk("mpoa: (%s) mpc_vcc_close: ingress SVC closed ip = %u.%u.%u.%u\n",
634                        mpc->dev->name, ip[0], ip[1], ip[2], ip[3]);
635                 in_entry->shortcut = NULL;
636                 mpc->in_ops->put(in_entry);
637         }
638         eg_entry = mpc->eg_ops->get_by_vcc(vcc, mpc);
639         if (eg_entry) {
640                 dprintk("mpoa: (%s) mpc_vcc_close: egress SVC closed\n", mpc->dev->name);
641                 eg_entry->shortcut = NULL;
642                 mpc->eg_ops->put(eg_entry);
643         }
644
645         if (in_entry == NULL && eg_entry == NULL)
646                 dprintk("mpoa: (%s) mpc_vcc_close:  unused vcc closed\n", dev->name);
647
648         return;
649 }
650
651 static void mpc_push(struct atm_vcc *vcc, struct sk_buff *skb)
652 {
653         struct net_device *dev = (struct net_device *)vcc->proto_data;
654         struct sk_buff *new_skb;
655         eg_cache_entry *eg;
656         struct mpoa_client *mpc;
657         uint32_t tag;
658         char *tmp;
659         
660         ddprintk("mpoa: (%s) mpc_push:\n", dev->name);
661         if (skb == NULL) {
662                 dprintk("mpoa: (%s) mpc_push: null skb, closing VCC\n", dev->name);
663                 mpc_vcc_close(vcc, dev);
664                 return;
665         }
666         
667         skb->dev = dev;
668         if (memcmp(skb->data, &llc_snap_mpoa_ctrl, sizeof(struct llc_snap_hdr)) == 0) {
669                 dprintk("mpoa: (%s) mpc_push: control packet arrived\n", dev->name);
670                 /* Pass control packets to daemon */
671                 skb_queue_tail(&vcc->sk->sk_receive_queue, skb);
672                 vcc->sk->sk_data_ready(vcc->sk, skb->len);
673                 return;
674         }
675
676         /* data coming over the shortcut */
677         atm_return(vcc, skb->truesize);
678
679         mpc = find_mpc_by_lec(dev);
680         if (mpc == NULL) {
681                 printk("mpoa: (%s) mpc_push: unknown MPC\n", dev->name);
682                 return;
683         }
684
685         if (memcmp(skb->data, &llc_snap_mpoa_data_tagged, sizeof(struct llc_snap_hdr)) == 0) { /* MPOA tagged data */
686                 ddprintk("mpoa: (%s) mpc_push: tagged data packet arrived\n", dev->name);
687
688         } else if (memcmp(skb->data, &llc_snap_mpoa_data, sizeof(struct llc_snap_hdr)) == 0) { /* MPOA data */
689                 printk("mpoa: (%s) mpc_push: non-tagged data packet arrived\n", dev->name);
690                 printk("           mpc_push: non-tagged data unsupported, purging\n");
691                 dev_kfree_skb_any(skb);
692                 return;
693         } else {
694                 printk("mpoa: (%s) mpc_push: garbage arrived, purging\n", dev->name);
695                 dev_kfree_skb_any(skb);
696                 return;
697         }
698
699         tmp = skb->data + sizeof(struct llc_snap_hdr);
700         tag = *(uint32_t *)tmp;
701
702         eg = mpc->eg_ops->get_by_tag(tag, mpc);
703         if (eg == NULL) {
704                 printk("mpoa: (%s) mpc_push: Didn't find egress cache entry, tag = %u\n",
705                        dev->name,tag);
706                 purge_egress_shortcut(vcc, NULL);
707                 dev_kfree_skb_any(skb);
708                 return;
709         }
710         
711         /*
712          * See if ingress MPC is using shortcut we opened as a return channel.
713          * This means we have a bi-directional vcc opened by us.
714          */ 
715         if (eg->shortcut == NULL) {
716                 eg->shortcut = vcc;
717                 printk("mpoa: (%s) mpc_push: egress SVC in use\n", dev->name);
718         }
719
720         skb_pull(skb, sizeof(struct llc_snap_hdr) + sizeof(tag)); /* get rid of LLC/SNAP header */
721         new_skb = skb_realloc_headroom(skb, eg->ctrl_info.DH_length); /* LLC/SNAP is shorter than MAC header :( */
722         dev_kfree_skb_any(skb);
723         if (new_skb == NULL){
724                 mpc->eg_ops->put(eg);
725                 return;
726         }
727         skb_push(new_skb, eg->ctrl_info.DH_length);     /* add MAC header */
728         memcpy(new_skb->data, eg->ctrl_info.DLL_header, eg->ctrl_info.DH_length);
729         new_skb->protocol = eth_type_trans(new_skb, dev);
730         new_skb->nh.raw = new_skb->data;
731
732         eg->latest_ip_addr = new_skb->nh.iph->saddr;
733         eg->packets_rcvd++;
734         mpc->eg_ops->put(eg);
735
736         memset(ATM_SKB(skb), 0, sizeof(struct atm_skb_data));
737         netif_rx(new_skb);
738
739         return;
740 }
741
742 static struct atmdev_ops mpc_ops = { /* only send is required */
743         .close  = mpoad_close,
744         .send   = msg_from_mpoad
745 };
746
747 static struct atm_dev mpc_dev = {
748         .ops    = &mpc_ops,
749         .type   = "mpc",
750         .number = 42,
751         .lock   = SPIN_LOCK_UNLOCKED
752         /* members not explicitly initialised will be 0 */
753 };
754
755 int atm_mpoa_mpoad_attach (struct atm_vcc *vcc, int arg)
756 {
757         struct mpoa_client *mpc;
758         struct lec_priv *priv;
759         
760         if (mpcs == NULL) {
761                 init_timer(&mpc_timer);
762                 mpc_timer_refresh();
763
764                 /* This lets us now how our LECs are doing */
765                 register_netdevice_notifier(&mpoa_notifier);
766         }
767         
768         mpc = find_mpc_by_itfnum(arg);
769         if (mpc == NULL) {
770                 dprintk("mpoa: mpoad_attach: allocating new mpc for itf %d\n", arg);
771                 mpc = alloc_mpc();
772                 if (mpc == NULL)
773                         return -ENOMEM;
774                 mpc->dev_num = arg;
775                 mpc->dev = find_lec_by_itfnum(arg); /* NULL if there was no lec */
776         }
777         if (mpc->mpoad_vcc) {
778                 printk("mpoa: mpoad_attach: mpoad is already present for itf %d\n", arg);
779                 return -EADDRINUSE;
780         }
781
782         if (mpc->dev) { /* check if the lec is LANE2 capable */
783                 priv = (struct lec_priv *)mpc->dev->priv;
784                 if (priv->lane_version < 2) {
785                         dev_put(mpc->dev);
786                         mpc->dev = NULL;
787                 } else
788                         priv->lane2_ops->associate_indicator = lane2_assoc_ind;  
789         }
790
791         mpc->mpoad_vcc = vcc;
792         vcc->dev = &mpc_dev;
793         vcc_insert_socket(vcc->sk);
794         set_bit(ATM_VF_META,&vcc->flags);
795         set_bit(ATM_VF_READY,&vcc->flags);
796
797         if (mpc->dev) {
798                 char empty[ATM_ESA_LEN];
799                 memset(empty, 0, ATM_ESA_LEN);
800                 
801                 start_mpc(mpc, mpc->dev);
802                 /* set address if mpcd e.g. gets killed and restarted.
803                  * If we do not do it now we have to wait for the next LE_ARP
804                  */
805                 if ( memcmp(mpc->mps_ctrl_addr, empty, ATM_ESA_LEN) != 0 )
806                         send_set_mps_ctrl_addr(mpc->mps_ctrl_addr, mpc);
807         }
808
809         __module_get(THIS_MODULE);
810         return arg;
811 }
812
813 static void send_set_mps_ctrl_addr(char *addr, struct mpoa_client *mpc)
814 {
815         struct k_message mesg;
816
817         memcpy (mpc->mps_ctrl_addr, addr, ATM_ESA_LEN);
818         
819         mesg.type = SET_MPS_CTRL_ADDR;
820         memcpy(mesg.MPS_ctrl, addr, ATM_ESA_LEN);
821         msg_to_mpoad(&mesg, mpc);
822
823         return;
824 }
825
826 static void mpoad_close(struct atm_vcc *vcc)
827 {
828         struct mpoa_client *mpc;
829         struct sk_buff *skb;
830
831         mpc = find_mpc_by_vcc(vcc);
832         if (mpc == NULL) {
833                 printk("mpoa: mpoad_close: did not find MPC\n");
834                 return;
835         }
836         if (!mpc->mpoad_vcc) {
837                 printk("mpoa: mpoad_close: close for non-present mpoad\n");
838                 return;
839         }
840         
841         mpc->mpoad_vcc = NULL;
842         if (mpc->dev) {
843                 struct lec_priv *priv = (struct lec_priv *)mpc->dev->priv;
844                 priv->lane2_ops->associate_indicator = NULL;
845                 stop_mpc(mpc);
846                 dev_put(mpc->dev);
847         }
848
849         mpc->in_ops->destroy_cache(mpc);
850         mpc->eg_ops->destroy_cache(mpc);
851
852         while ((skb = skb_dequeue(&vcc->sk->sk_receive_queue))) {
853                 atm_return(vcc, skb->truesize);
854                 kfree_skb(skb);
855         }
856         
857         printk("mpoa: (%s) going down\n",
858                 (mpc->dev) ? mpc->dev->name : "<unknown>");
859         module_put(THIS_MODULE);
860
861         return;
862 }
863
864 /*
865  *
866  */
867 static int msg_from_mpoad(struct atm_vcc *vcc, struct sk_buff *skb)
868 {
869         
870         struct mpoa_client *mpc = find_mpc_by_vcc(vcc);
871         struct k_message *mesg = (struct k_message*)skb->data;
872         atomic_sub(skb->truesize, &vcc->sk->sk_wmem_alloc);
873         
874         if (mpc == NULL) {
875                 printk("mpoa: msg_from_mpoad: no mpc found\n");
876                 return 0;
877         }
878         dprintk("mpoa: (%s) msg_from_mpoad:", (mpc->dev) ? mpc->dev->name : "<unknown>");
879         switch(mesg->type) {
880         case MPOA_RES_REPLY_RCVD:
881                 dprintk(" mpoa_res_reply_rcvd\n");
882                 MPOA_res_reply_rcvd(mesg, mpc);
883                 break;
884         case MPOA_TRIGGER_RCVD:
885                 dprintk(" mpoa_trigger_rcvd\n");
886                 MPOA_trigger_rcvd(mesg, mpc);
887                 break;
888         case INGRESS_PURGE_RCVD:
889                 dprintk(" nhrp_purge_rcvd\n");
890                 ingress_purge_rcvd(mesg, mpc);
891                 break;
892         case EGRESS_PURGE_RCVD:
893                 dprintk(" egress_purge_reply_rcvd\n");
894                 egress_purge_rcvd(mesg, mpc);
895                 break;
896         case MPS_DEATH:
897                 dprintk(" mps_death\n");
898                 mps_death(mesg, mpc);
899                 break;
900         case CACHE_IMPOS_RCVD:
901                 dprintk(" cache_impos_rcvd\n");
902                 MPOA_cache_impos_rcvd(mesg, mpc);
903                 break;
904         case SET_MPC_CTRL_ADDR:
905                 dprintk(" set_mpc_ctrl_addr\n");
906                 set_mpc_ctrl_addr_rcvd(mesg, mpc);
907                 break;
908         case SET_MPS_MAC_ADDR:
909                 dprintk(" set_mps_mac_addr\n");
910                 set_mps_mac_addr_rcvd(mesg, mpc);
911                 break;
912         case CLEAN_UP_AND_EXIT:
913                 dprintk(" clean_up_and_exit\n");
914                 clean_up(mesg, mpc, DIE);
915                 break;
916         case RELOAD:
917                 dprintk(" reload\n");
918                 clean_up(mesg, mpc, RELOAD);
919                 break;
920         case SET_MPC_PARAMS:
921                 dprintk(" set_mpc_params\n");
922                 mpc->parameters = mesg->content.params;
923                 break;
924         default:
925                 dprintk(" unknown message %d\n", mesg->type);
926                 break;
927         }
928         kfree_skb(skb);
929
930         return 0;
931 }
932
933 /* Remember that this function may not do things that sleep */
934 int msg_to_mpoad(struct k_message *mesg, struct mpoa_client *mpc)
935 {
936         struct sk_buff *skb;
937
938         if (mpc == NULL || !mpc->mpoad_vcc) {
939                 printk("mpoa: msg_to_mpoad: mesg %d to a non-existent mpoad\n", mesg->type);
940                 return -ENXIO;
941         }
942
943         skb = alloc_skb(sizeof(struct k_message), GFP_ATOMIC);
944         if (skb == NULL)
945                 return -ENOMEM;
946         skb_put(skb, sizeof(struct k_message));
947         memcpy(skb->data, mesg, sizeof(struct k_message));
948         atm_force_charge(mpc->mpoad_vcc, skb->truesize);
949         skb_queue_tail(&mpc->mpoad_vcc->sk->sk_receive_queue, skb);
950         mpc->mpoad_vcc->sk->sk_data_ready(mpc->mpoad_vcc->sk, skb->len);
951
952         return 0;
953 }
954
955 static int mpoa_event_listener(struct notifier_block *mpoa_notifier, unsigned long event, void *dev_ptr)
956 {
957         struct net_device *dev;
958         struct mpoa_client *mpc;
959         struct lec_priv *priv;
960
961         dev = (struct net_device *)dev_ptr;
962         if (dev->name == NULL || strncmp(dev->name, "lec", 3))
963                 return NOTIFY_DONE; /* we are only interested in lec:s */
964         
965         switch (event) {
966         case NETDEV_REGISTER:       /* a new lec device was allocated */
967                 priv = (struct lec_priv *)dev->priv;
968                 if (priv->lane_version < 2)
969                         break;
970                 priv->lane2_ops->associate_indicator = lane2_assoc_ind;
971                 mpc = find_mpc_by_itfnum(priv->itfnum);
972                 if (mpc == NULL) {
973                         dprintk("mpoa: mpoa_event_listener: allocating new mpc for %s\n",
974                                dev->name);
975                         mpc = alloc_mpc();
976                         if (mpc == NULL) {
977                                 printk("mpoa: mpoa_event_listener: no new mpc");
978                                 break;
979                         }
980                 }
981                 mpc->dev_num = priv->itfnum;
982                 mpc->dev = dev;
983                 dev_hold(dev);
984                 dprintk("mpoa: (%s) was initialized\n", dev->name);
985                 break;
986         case NETDEV_UNREGISTER:
987                 /* the lec device was deallocated */
988                 mpc = find_mpc_by_lec(dev);
989                 if (mpc == NULL)
990                         break;
991                 dprintk("mpoa: device (%s) was deallocated\n", dev->name);
992                 stop_mpc(mpc);
993                 dev_put(mpc->dev);
994                 mpc->dev = NULL;
995                 break;
996         case NETDEV_UP:
997                 /* the dev was ifconfig'ed up */
998                 mpc = find_mpc_by_lec(dev);
999                 if (mpc == NULL)
1000                         break;
1001                 if (mpc->mpoad_vcc != NULL) {
1002                         start_mpc(mpc, dev);
1003                 }
1004                 break;
1005         case NETDEV_DOWN:
1006                 /* the dev was ifconfig'ed down */
1007                 /* this means that the flow of packets from the
1008                  * upper layer stops
1009                  */
1010                 mpc = find_mpc_by_lec(dev);
1011                 if (mpc == NULL)
1012                         break;
1013                 if (mpc->mpoad_vcc != NULL) {
1014                         stop_mpc(mpc);
1015                 }
1016                 break;
1017         case NETDEV_REBOOT:
1018         case NETDEV_CHANGE:
1019         case NETDEV_CHANGEMTU:
1020         case NETDEV_CHANGEADDR:
1021         case NETDEV_GOING_DOWN:
1022                 break;
1023         default:
1024                 break;
1025         }
1026
1027         return NOTIFY_DONE;
1028 }
1029
1030 /*
1031  * Functions which are called after a message is received from mpcd.
1032  * Msg is reused on purpose.
1033  */
1034
1035
1036 static void MPOA_trigger_rcvd(struct k_message *msg, struct mpoa_client *mpc)
1037 {
1038         uint32_t dst_ip = msg->content.in_info.in_dst_ip;
1039         in_cache_entry *entry;
1040
1041         entry = mpc->in_ops->get(dst_ip, mpc);
1042         if(entry == NULL){
1043                 entry = mpc->in_ops->add_entry(dst_ip, mpc);
1044                 entry->entry_state = INGRESS_RESOLVING;
1045                 msg->type = SND_MPOA_RES_RQST;
1046                 msg->content.in_info = entry->ctrl_info;
1047                 msg_to_mpoad(msg, mpc);
1048                 do_gettimeofday(&(entry->reply_wait));
1049                 mpc->in_ops->put(entry);
1050                 return;
1051         }
1052         
1053         if(entry->entry_state == INGRESS_INVALID){
1054                 entry->entry_state = INGRESS_RESOLVING;
1055                 msg->type = SND_MPOA_RES_RQST;
1056                 msg->content.in_info = entry->ctrl_info;
1057                 msg_to_mpoad(msg, mpc);
1058                 do_gettimeofday(&(entry->reply_wait));
1059                 mpc->in_ops->put(entry);
1060                 return;
1061         }
1062         
1063         printk("mpoa: (%s) MPOA_trigger_rcvd: entry already in resolving state\n",
1064                 (mpc->dev) ? mpc->dev->name : "<unknown>");
1065         mpc->in_ops->put(entry);
1066         return;
1067 }
1068
1069 /*
1070  * Things get complicated because we have to check if there's an egress
1071  * shortcut with suitable traffic parameters we could use. 
1072  */
1073 static void check_qos_and_open_shortcut(struct k_message *msg, struct mpoa_client *client, in_cache_entry *entry)
1074 {
1075         uint32_t dst_ip = msg->content.in_info.in_dst_ip;
1076         unsigned char *ip __attribute__ ((unused)) = (unsigned char *)&dst_ip;
1077         struct atm_mpoa_qos *qos = atm_mpoa_search_qos(dst_ip);
1078         eg_cache_entry *eg_entry = client->eg_ops->get_by_src_ip(dst_ip, client);
1079
1080         if(eg_entry && eg_entry->shortcut){
1081                 if(eg_entry->shortcut->qos.txtp.traffic_class &
1082                    msg->qos.txtp.traffic_class &
1083                    (qos ? qos->qos.txtp.traffic_class : ATM_UBR | ATM_CBR)){
1084                             if(eg_entry->shortcut->qos.txtp.traffic_class == ATM_UBR)
1085                                     entry->shortcut = eg_entry->shortcut;
1086                             else if(eg_entry->shortcut->qos.txtp.max_pcr > 0)
1087                                     entry->shortcut = eg_entry->shortcut;
1088                 }
1089                 if(entry->shortcut){
1090                         dprintk("mpoa: (%s) using egress SVC to reach %u.%u.%u.%u\n",client->dev->name, NIPQUAD(ip));
1091                         client->eg_ops->put(eg_entry);
1092                         return;
1093                 }
1094         }
1095         if (eg_entry != NULL)
1096                 client->eg_ops->put(eg_entry);
1097
1098         /* No luck in the egress cache we must open an ingress SVC */
1099         msg->type = OPEN_INGRESS_SVC;
1100         if (qos && (qos->qos.txtp.traffic_class == msg->qos.txtp.traffic_class))
1101         {
1102                 msg->qos = qos->qos;
1103                 printk("mpoa: (%s) trying to get a CBR shortcut\n",client->dev->name);
1104         }
1105         else memset(&msg->qos,0,sizeof(struct atm_qos));
1106         msg_to_mpoad(msg, client);
1107         return;
1108 }
1109
1110 static void MPOA_res_reply_rcvd(struct k_message *msg, struct mpoa_client *mpc)
1111 {
1112         unsigned char *ip;
1113
1114         uint32_t dst_ip = msg->content.in_info.in_dst_ip;
1115         in_cache_entry *entry = mpc->in_ops->get(dst_ip, mpc);
1116         ip = (unsigned char *)&dst_ip;
1117         dprintk("mpoa: (%s) MPOA_res_reply_rcvd: ip %u.%u.%u.%u\n", mpc->dev->name, NIPQUAD(ip));
1118         ddprintk("mpoa: (%s) MPOA_res_reply_rcvd() entry = %p", mpc->dev->name, entry);
1119         if(entry == NULL){
1120                 printk("\nmpoa: (%s) ARGH, received res. reply for an entry that doesn't exist.\n", mpc->dev->name);
1121                 return;
1122         }
1123         ddprintk(" entry_state = %d ", entry->entry_state);     
1124
1125         if (entry->entry_state == INGRESS_RESOLVED) {
1126                 printk("\nmpoa: (%s) MPOA_res_reply_rcvd for RESOLVED entry!\n", mpc->dev->name);
1127                 mpc->in_ops->put(entry);
1128                 return;
1129         }
1130
1131         entry->ctrl_info = msg->content.in_info;
1132         do_gettimeofday(&(entry->tv));
1133         do_gettimeofday(&(entry->reply_wait)); /* Used in refreshing func from now on */
1134         entry->refresh_time = 0;
1135         ddprintk("entry->shortcut = %p\n", entry->shortcut);
1136
1137         if(entry->entry_state == INGRESS_RESOLVING && entry->shortcut != NULL){
1138                 entry->entry_state = INGRESS_RESOLVED; 
1139                 mpc->in_ops->put(entry);
1140                 return; /* Shortcut already open... */
1141         }
1142
1143         if (entry->shortcut != NULL) {
1144                 printk("mpoa: (%s) MPOA_res_reply_rcvd: entry->shortcut != NULL, impossible!\n",
1145                        mpc->dev->name);
1146                 mpc->in_ops->put(entry);
1147                 return;
1148         }
1149         
1150         check_qos_and_open_shortcut(msg, mpc, entry);
1151         entry->entry_state = INGRESS_RESOLVED;
1152         mpc->in_ops->put(entry);
1153
1154         return;
1155
1156 }
1157
1158 static void ingress_purge_rcvd(struct k_message *msg, struct mpoa_client *mpc)
1159 {
1160         uint32_t dst_ip = msg->content.in_info.in_dst_ip;
1161         uint32_t mask = msg->ip_mask;
1162         unsigned char *ip = (unsigned char *)&dst_ip;
1163         in_cache_entry *entry = mpc->in_ops->get_with_mask(dst_ip, mpc, mask);
1164
1165         if(entry == NULL){
1166                 printk("mpoa: (%s) ingress_purge_rcvd: purge for a non-existing entry, ", mpc->dev->name);
1167                 printk("ip = %u.%u.%u.%u\n", ip[0], ip[1], ip[2], ip[3]);
1168                 return;
1169         }
1170
1171         do {
1172                 dprintk("mpoa: (%s) ingress_purge_rcvd: removing an ingress entry, ip = %u.%u.%u.%u\n" ,
1173                         mpc->dev->name, ip[0], ip[1], ip[2], ip[3]);
1174                 write_lock_bh(&mpc->ingress_lock);
1175                 mpc->in_ops->remove_entry(entry, mpc);
1176                 write_unlock_bh(&mpc->ingress_lock);
1177                 mpc->in_ops->put(entry);
1178                 entry = mpc->in_ops->get_with_mask(dst_ip, mpc, mask);
1179         } while (entry != NULL);
1180
1181         return;
1182
1183
1184 static void egress_purge_rcvd(struct k_message *msg, struct mpoa_client *mpc)
1185 {
1186         uint32_t cache_id = msg->content.eg_info.cache_id;
1187         eg_cache_entry *entry = mpc->eg_ops->get_by_cache_id(cache_id, mpc);
1188         
1189         if (entry == NULL) {
1190                 dprintk("mpoa: (%s) egress_purge_rcvd: purge for a non-existing entry\n", mpc->dev->name);
1191                 return;
1192         }
1193
1194         write_lock_irq(&mpc->egress_lock);
1195         mpc->eg_ops->remove_entry(entry, mpc);
1196         write_unlock_irq(&mpc->egress_lock);
1197
1198         mpc->eg_ops->put(entry);
1199
1200         return;
1201
1202
1203 static void purge_egress_shortcut(struct atm_vcc *vcc, eg_cache_entry *entry)
1204 {
1205         struct k_message *purge_msg;
1206         struct sk_buff *skb;
1207
1208         dprintk("mpoa: purge_egress_shortcut: entering\n");
1209         if (vcc == NULL) {
1210                 printk("mpoa: purge_egress_shortcut: vcc == NULL\n");
1211                 return;
1212         }
1213
1214         skb = alloc_skb(sizeof(struct k_message), GFP_ATOMIC);
1215         if (skb == NULL) {
1216                  printk("mpoa: purge_egress_shortcut: out of memory\n");
1217                 return;
1218         }
1219
1220         skb_put(skb, sizeof(struct k_message));
1221         memset(skb->data, 0, sizeof(struct k_message));
1222         purge_msg = (struct k_message *)skb->data;
1223         purge_msg->type = DATA_PLANE_PURGE;
1224         if (entry != NULL)
1225                 purge_msg->content.eg_info = entry->ctrl_info;
1226
1227         atm_force_charge(vcc, skb->truesize);
1228         skb_queue_tail(&vcc->sk->sk_receive_queue, skb);
1229         vcc->sk->sk_data_ready(vcc->sk, skb->len);
1230         dprintk("mpoa: purge_egress_shortcut: exiting:\n");
1231
1232         return;
1233 }
1234
1235 /*
1236  * Our MPS died. Tell our daemon to send NHRP data plane purge to each
1237  * of the egress shortcuts we have.
1238  */
1239 static void mps_death( struct k_message * msg, struct mpoa_client * mpc )
1240 {
1241         eg_cache_entry *entry;
1242
1243         dprintk("mpoa: (%s) mps_death:\n", mpc->dev->name);
1244
1245         if(memcmp(msg->MPS_ctrl, mpc->mps_ctrl_addr, ATM_ESA_LEN)){
1246                 printk("mpoa: (%s) mps_death: wrong MPS\n", mpc->dev->name);
1247                 return;
1248         }
1249
1250         /* FIXME: This knows too much of the cache structure */
1251         read_lock_irq(&mpc->egress_lock);
1252         entry = mpc->eg_cache;
1253         while (entry != NULL) {
1254                 purge_egress_shortcut(entry->shortcut, entry);
1255                 entry = entry->next;
1256         }
1257         read_unlock_irq(&mpc->egress_lock);
1258
1259         mpc->in_ops->destroy_cache(mpc);
1260         mpc->eg_ops->destroy_cache(mpc);
1261
1262         return;
1263 }
1264
1265 static void MPOA_cache_impos_rcvd( struct k_message * msg, struct mpoa_client * mpc)
1266 {
1267         uint16_t holding_time;
1268         eg_cache_entry *entry = mpc->eg_ops->get_by_cache_id(msg->content.eg_info.cache_id, mpc);
1269         
1270         holding_time = msg->content.eg_info.holding_time;
1271         dprintk("mpoa: (%s) MPOA_cache_impos_rcvd: entry = %p, holding_time = %u\n",
1272                mpc->dev->name, entry, holding_time);
1273         if(entry == NULL && holding_time) {
1274                 entry = mpc->eg_ops->add_entry(msg, mpc);
1275                 mpc->eg_ops->put(entry);
1276                 return;
1277         }
1278         if(holding_time){
1279                 mpc->eg_ops->update(entry, holding_time);
1280                 return;
1281         }
1282         
1283         write_lock_irq(&mpc->egress_lock);
1284         mpc->eg_ops->remove_entry(entry, mpc);
1285         write_unlock_irq(&mpc->egress_lock);
1286
1287         mpc->eg_ops->put(entry);
1288         
1289         return;
1290 }
1291
1292 static void set_mpc_ctrl_addr_rcvd(struct k_message *mesg, struct mpoa_client *mpc)
1293 {
1294         struct lec_priv *priv;
1295         int i, retval ;
1296
1297         uint8_t tlv[4 + 1 + 1 + 1 + ATM_ESA_LEN];
1298
1299         tlv[0] = 00; tlv[1] = 0xa0; tlv[2] = 0x3e; tlv[3] = 0x2a; /* type  */
1300         tlv[4] = 1 + 1 + ATM_ESA_LEN;  /* length                           */
1301         tlv[5] = 0x02;                 /* MPOA client                      */
1302         tlv[6] = 0x00;                 /* number of MPS MAC addresses      */
1303
1304         memcpy(&tlv[7], mesg->MPS_ctrl, ATM_ESA_LEN); /* MPC ctrl ATM addr */
1305         memcpy(mpc->our_ctrl_addr, mesg->MPS_ctrl, ATM_ESA_LEN);
1306
1307         dprintk("mpoa: (%s) setting MPC ctrl ATM address to ",
1308                (mpc->dev) ? mpc->dev->name : "<unknown>");
1309         for (i = 7; i < sizeof(tlv); i++)
1310                 dprintk("%02x ", tlv[i]);
1311         dprintk("\n");
1312
1313         if (mpc->dev) {
1314                 priv = (struct lec_priv *)mpc->dev->priv;
1315                 retval = priv->lane2_ops->associate_req(mpc->dev, mpc->dev->dev_addr, tlv, sizeof(tlv));
1316                 if (retval == 0)
1317                         printk("mpoa: (%s) MPOA device type TLV association failed\n", mpc->dev->name);
1318                 retval = priv->lane2_ops->resolve(mpc->dev, NULL, 1, NULL, NULL);
1319                 if (retval < 0)
1320                         printk("mpoa: (%s) targetless LE_ARP request failed\n", mpc->dev->name);
1321         }
1322
1323         return;
1324 }
1325
1326 static void set_mps_mac_addr_rcvd(struct k_message *msg, struct mpoa_client *client)
1327 {
1328
1329         if(client->number_of_mps_macs)
1330                 kfree(client->mps_macs);
1331         client->number_of_mps_macs = 0;
1332         client->mps_macs = kmalloc(ETH_ALEN,GFP_KERNEL);
1333         if (client->mps_macs == NULL) {
1334                 printk("mpoa: set_mps_mac_addr_rcvd: out of memory\n");
1335                 return;
1336         }
1337         client->number_of_mps_macs = 1;
1338         memcpy(client->mps_macs, msg->MPS_ctrl, ETH_ALEN);
1339         
1340         return;
1341 }
1342
1343 /*
1344  * purge egress cache and tell daemon to 'action' (DIE, RELOAD)
1345  */
1346 static void clean_up(struct k_message *msg, struct mpoa_client *mpc, int action)
1347 {
1348
1349         eg_cache_entry *entry;
1350         msg->type = SND_EGRESS_PURGE;
1351
1352
1353         /* FIXME: This knows too much of the cache structure */
1354         read_lock_irq(&mpc->egress_lock);
1355         entry = mpc->eg_cache;
1356         while (entry != NULL){
1357                     msg->content.eg_info = entry->ctrl_info;
1358                     dprintk("mpoa: cache_id %u\n", entry->ctrl_info.cache_id);
1359                     msg_to_mpoad(msg, mpc);
1360                     entry = entry->next;
1361         }
1362         read_unlock_irq(&mpc->egress_lock);
1363
1364         msg->type = action;
1365         msg_to_mpoad(msg, mpc);
1366         return;
1367 }
1368
1369 static void mpc_timer_refresh(void)
1370 {
1371         mpc_timer.expires = jiffies + (MPC_P2 * HZ);
1372         mpc_timer.data = mpc_timer.expires;
1373         mpc_timer.function = mpc_cache_check;
1374         add_timer(&mpc_timer);
1375         
1376         return;
1377 }
1378
1379 static void mpc_cache_check( unsigned long checking_time  )
1380 {
1381         struct mpoa_client *mpc = mpcs;
1382         static unsigned long previous_resolving_check_time;
1383         static unsigned long previous_refresh_time;
1384         
1385         while( mpc != NULL ){
1386                 mpc->in_ops->clear_count(mpc);
1387                 mpc->eg_ops->clear_expired(mpc);
1388                 if(checking_time - previous_resolving_check_time > mpc->parameters.mpc_p4 * HZ ){
1389                         mpc->in_ops->check_resolving(mpc);
1390                         previous_resolving_check_time = checking_time;
1391                 }
1392                 if(checking_time - previous_refresh_time > mpc->parameters.mpc_p5 * HZ ){
1393                         mpc->in_ops->refresh(mpc);
1394                         previous_refresh_time = checking_time;
1395                 }
1396                 mpc = mpc->next;
1397         }
1398         mpc_timer_refresh();
1399         
1400         return;
1401 }
1402
1403 static int atm_mpoa_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1404 {
1405         int err = 0;
1406         struct atm_vcc *vcc = ATM_SD(sock);
1407
1408         if (cmd != ATMMPC_CTRL && cmd != ATMMPC_DATA)
1409                 return -ENOIOCTLCMD;
1410
1411         if (!capable(CAP_NET_ADMIN))
1412                 return -EPERM;
1413
1414         switch (cmd) {
1415                 case ATMMPC_CTRL:
1416                         err = atm_mpoa_mpoad_attach(vcc, (int)arg);
1417                         if (err >= 0)
1418                                 sock->state = SS_CONNECTED;
1419                         break;
1420                 case ATMMPC_DATA:
1421                         err = atm_mpoa_vcc_attach(vcc, (void __user *)arg);
1422                         break;
1423                 default:
1424                         break;
1425         }
1426         return err;
1427 }
1428
1429
1430 static struct atm_ioctl atm_ioctl_ops = {
1431         .owner  = THIS_MODULE,
1432         .ioctl  = atm_mpoa_ioctl,
1433 };
1434
1435 static __init int atm_mpoa_init(void)
1436 {
1437         register_atm_ioctl(&atm_ioctl_ops);
1438
1439 #ifdef CONFIG_PROC_FS
1440         if (mpc_proc_init() != 0)
1441                 printk(KERN_INFO "mpoa: failed to initialize /proc/mpoa\n");
1442         else
1443                 printk(KERN_INFO "mpoa: /proc/mpoa initialized\n");
1444 #endif
1445
1446         printk("mpc.c: " __DATE__ " " __TIME__ " initialized\n");
1447
1448         return 0;
1449 }
1450
1451 void __exit atm_mpoa_cleanup(void)
1452 {
1453         struct mpoa_client *mpc, *tmp;
1454         struct atm_mpoa_qos *qos, *nextqos;
1455         struct lec_priv *priv;
1456
1457 #ifdef CONFIG_PROC_FS
1458         mpc_proc_clean();
1459 #endif
1460
1461         del_timer(&mpc_timer);
1462         unregister_netdevice_notifier(&mpoa_notifier);
1463         deregister_atm_ioctl(&atm_ioctl_ops);
1464
1465         mpc = mpcs;
1466         mpcs = NULL;
1467         while (mpc != NULL) {
1468                 tmp = mpc->next;
1469                 if (mpc->dev != NULL) {
1470                         stop_mpc(mpc);
1471                         priv = (struct lec_priv *)mpc->dev->priv;
1472                         if (priv->lane2_ops != NULL)
1473                                 priv->lane2_ops->associate_indicator = NULL;
1474                 }
1475                 ddprintk("mpoa: cleanup_module: about to clear caches\n");
1476                 mpc->in_ops->destroy_cache(mpc);
1477                 mpc->eg_ops->destroy_cache(mpc);
1478                 ddprintk("mpoa: cleanup_module: caches cleared\n");
1479                 kfree(mpc->mps_macs);
1480                 memset(mpc, 0, sizeof(struct mpoa_client));
1481                 ddprintk("mpoa: cleanup_module: about to kfree %p\n", mpc);
1482                 kfree(mpc);
1483                 ddprintk("mpoa: cleanup_module: next mpc is at %p\n", tmp);
1484                 mpc = tmp;
1485         }
1486
1487         qos = qos_head;
1488         qos_head = NULL;
1489         while (qos != NULL) {
1490                 nextqos = qos->next;
1491                 dprintk("mpoa: cleanup_module: freeing qos entry %p\n", qos);
1492                 kfree(qos);
1493                 qos = nextqos;
1494         }
1495
1496         return;
1497 }
1498
1499 module_init(atm_mpoa_init);
1500 module_exit(atm_mpoa_cleanup);
1501
1502 MODULE_LICENSE("GPL");