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 #include <linux/capability.h>
7 #include <linux/seq_file.h>
9 /* We are an ethernet device */
10 #include <linux/if_ether.h>
11 #include <linux/netdevice.h>
12 #include <linux/etherdevice.h>
14 #include <linux/skbuff.h>
16 #include <asm/byteorder.h>
17 #include <asm/uaccess.h>
18 #include <net/checksum.h> /* for ip_fast_csum() */
21 #include <linux/proc_fs.h>
24 #include <linux/atmdev.h>
25 #include <linux/atmlec.h>
26 #include <linux/atmmpc.h>
28 #include <linux/config.h>
29 #include <linux/module.h>
33 #include "resources.h"
36 * mpc.c: Implementation of MPOA client kernel part
40 #define dprintk printk /* debug */
42 #define dprintk(format,args...)
46 #define ddprintk printk /* more debug */
48 #define ddprintk(format,args...)
53 #define MPOA_TAG_LEN 4
55 /* mpc_daemon -> kernel */
56 static void MPOA_trigger_rcvd (struct k_message
*msg
, struct mpoa_client
*mpc
);
57 static void MPOA_res_reply_rcvd(struct k_message
*msg
, struct mpoa_client
*mpc
);
58 static void ingress_purge_rcvd(struct k_message
*msg
, struct mpoa_client
*mpc
);
59 static void egress_purge_rcvd(struct k_message
*msg
, struct mpoa_client
*mpc
);
60 static void mps_death(struct k_message
*msg
, struct mpoa_client
*mpc
);
61 static void clean_up(struct k_message
*msg
, struct mpoa_client
*mpc
, int action
);
62 static void MPOA_cache_impos_rcvd(struct k_message
*msg
, struct mpoa_client
*mpc
);
63 static void set_mpc_ctrl_addr_rcvd(struct k_message
*mesg
, struct mpoa_client
*mpc
);
64 static void set_mps_mac_addr_rcvd(struct k_message
*mesg
, struct mpoa_client
*mpc
);
66 static uint8_t *copy_macs(struct mpoa_client
*mpc
, uint8_t *router_mac
,
67 uint8_t *tlvs
, uint8_t mps_macs
, uint8_t device_type
);
68 static void purge_egress_shortcut(struct atm_vcc
*vcc
, eg_cache_entry
*entry
);
70 static void send_set_mps_ctrl_addr(char *addr
, struct mpoa_client
*mpc
);
71 static void mpoad_close(struct atm_vcc
*vcc
);
72 static int msg_from_mpoad(struct atm_vcc
*vcc
, struct sk_buff
*skb
);
74 static void mpc_push(struct atm_vcc
*vcc
, struct sk_buff
*skb
);
75 static int mpc_send_packet(struct sk_buff
*skb
, struct net_device
*dev
);
76 static int mpoa_event_listener(struct notifier_block
*mpoa_notifier
, unsigned long event
, void *dev
);
77 static void mpc_timer_refresh(void);
78 static void mpc_cache_check( unsigned long checking_time
);
80 static struct llc_snap_hdr llc_snap_mpoa_ctrl
= {
83 {0x00, 0x03} /* For MPOA control PDUs */
85 static struct llc_snap_hdr llc_snap_mpoa_data
= {
88 {0x08, 0x00} /* This is for IP PDUs only */
90 static struct llc_snap_hdr llc_snap_mpoa_data_tagged
= {
93 {0x88, 0x4c} /* This is for tagged data PDUs */
96 static struct notifier_block mpoa_notifier
= {
102 #ifdef CONFIG_PROC_FS
103 extern int mpc_proc_init(void);
104 extern void mpc_proc_clean(void);
107 struct mpoa_client
*mpcs
= NULL
; /* FIXME */
108 static struct atm_mpoa_qos
*qos_head
= NULL
;
109 static DEFINE_TIMER(mpc_timer
, NULL
, 0, 0);
112 static struct mpoa_client
*find_mpc_by_itfnum(int itf
)
114 struct mpoa_client
*mpc
;
116 mpc
= mpcs
; /* our global linked list */
117 while (mpc
!= NULL
) {
118 if (mpc
->dev_num
== itf
)
123 return NULL
; /* not found */
126 static struct mpoa_client
*find_mpc_by_vcc(struct atm_vcc
*vcc
)
128 struct mpoa_client
*mpc
;
130 mpc
= mpcs
; /* our global linked list */
131 while (mpc
!= NULL
) {
132 if (mpc
->mpoad_vcc
== vcc
)
137 return NULL
; /* not found */
140 static struct mpoa_client
*find_mpc_by_lec(struct net_device
*dev
)
142 struct mpoa_client
*mpc
;
144 mpc
= mpcs
; /* our global linked list */
145 while (mpc
!= NULL
) {
151 return NULL
; /* not found */
155 * Functions for managing QoS list
159 * Overwrites the old entry or makes a new one.
161 struct atm_mpoa_qos
*atm_mpoa_add_qos(uint32_t dst_ip
, struct atm_qos
*qos
)
163 struct atm_mpoa_qos
*entry
;
165 entry
= atm_mpoa_search_qos(dst_ip
);
171 entry
= kmalloc(sizeof(struct atm_mpoa_qos
), GFP_KERNEL
);
173 printk("mpoa: atm_mpoa_add_qos: out of memory\n");
177 entry
->ipaddr
= dst_ip
;
180 entry
->next
= qos_head
;
186 struct atm_mpoa_qos
*atm_mpoa_search_qos(uint32_t dst_ip
)
188 struct atm_mpoa_qos
*qos
;
191 while( qos
!= NULL
){
192 if(qos
->ipaddr
== dst_ip
) {
202 * Returns 0 for failure
204 int atm_mpoa_delete_qos(struct atm_mpoa_qos
*entry
)
207 struct atm_mpoa_qos
*curr
;
209 if (entry
== NULL
) return 0;
210 if (entry
== qos_head
) {
211 qos_head
= qos_head
->next
;
217 while (curr
!= NULL
) {
218 if (curr
->next
== entry
) {
219 curr
->next
= entry
->next
;
229 /* this is buggered - we need locking for qos_head */
230 void atm_mpoa_disp_qos(struct seq_file
*m
)
234 struct atm_mpoa_qos
*qos
;
237 seq_printf(m
, "QoS entries for shortcuts:\n");
238 seq_printf(m
, "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");
240 ipaddr
[sizeof(ipaddr
)-1] = '\0';
241 while (qos
!= NULL
) {
242 ip
= (unsigned char *)&qos
->ipaddr
;
243 sprintf(ipaddr
, "%u.%u.%u.%u", NIPQUAD(ip
));
244 seq_printf(m
, "%u.%u.%u.%u\n %-7d %-7d %-7d %-7d %-7d\n %-7d %-7d %-7d %-7d %-7d\n",
246 qos
->qos
.txtp
.max_pcr
, qos
->qos
.txtp
.pcr
, qos
->qos
.txtp
.min_pcr
, qos
->qos
.txtp
.max_cdv
, qos
->qos
.txtp
.max_sdu
,
247 qos
->qos
.rxtp
.max_pcr
, qos
->qos
.rxtp
.pcr
, qos
->qos
.rxtp
.min_pcr
, qos
->qos
.rxtp
.max_cdv
, qos
->qos
.rxtp
.max_sdu
);
252 static struct net_device
*find_lec_by_itfnum(int itf
)
254 struct net_device
*dev
;
257 sprintf(name
, "lec%d", itf
);
258 dev
= dev_get_by_name(name
);
263 static struct mpoa_client
*alloc_mpc(void)
265 struct mpoa_client
*mpc
;
267 mpc
= kmalloc(sizeof (struct mpoa_client
), GFP_KERNEL
);
270 memset(mpc
, 0, sizeof(struct mpoa_client
));
271 rwlock_init(&mpc
->ingress_lock
);
272 rwlock_init(&mpc
->egress_lock
);
274 atm_mpoa_init_cache(mpc
);
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
;
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.
295 static void start_mpc(struct mpoa_client
*mpc
, struct net_device
*dev
)
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",
304 mpc
->old_hard_start_xmit
= dev
->hard_start_xmit
;
305 dev
->hard_start_xmit
= mpc_send_packet
;
310 static void stop_mpc(struct mpoa_client
*mpc
)
313 dprintk("mpoa: (%s) stop_mpc:", mpc
->dev
->name
);
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");
321 mpc
->dev
->hard_start_xmit
= mpc
->old_hard_start_xmit
;
322 mpc
->old_hard_start_xmit
= NULL
;
323 /* close_shortcuts(mpc); ??? FIXME */
328 static const char *mpoa_device_type_string(char type
) __attribute__ ((unused
));
330 static const char *mpoa_device_type_string(char type
)
334 return "non-MPOA device";
343 return "both MPS and MPC";
346 return "unspecified (non-MPOA) device";
350 return ""; /* not reached */
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
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
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.
366 static void lane2_assoc_ind(struct net_device
*dev
, uint8_t *mac_addr
,
367 uint8_t *tlvs
, uint32_t sizeoftlvs
)
370 uint8_t length
, mpoa_device_type
, number_of_mps_macs
;
371 uint8_t *end_of_tlvs
;
372 struct mpoa_client
*mpc
;
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 */
379 printk("mpoa: (%s) lane2_assoc_ind: no mpc\n", dev
->name
);
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];
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");
394 printk("mpoa: (%s) lane2_assoc_ind: TLV type was 0, returning\n", dev
->name
);
398 if (type
!= TLV_MPOA_DEVICE_TYPE
) {
400 continue; /* skip other TLVs */
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",
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",
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 */
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 */
426 dprintk("this MPS has %d MAC addresses\n", number_of_mps_macs
);
428 /* ok, now we can go and tell our daemon the control address of MPS */
429 send_set_mps_ctrl_addr(tlvs
, mpc
);
431 tlvs
= copy_macs(mpc
, mac_addr
, tlvs
, number_of_mps_macs
, mpoa_device_type
);
432 if (tlvs
== NULL
) return;
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
);
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.
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
)
449 num_macs
= (mps_macs
> 1) ? mps_macs
: 1;
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
);
460 memcpy(mpc
->mps_macs
, router_mac
, ETH_ALEN
);
461 tlvs
+= 20; if (device_type
== MPS_AND_MPC
) tlvs
+= 20;
463 memcpy(mpc
->mps_macs
, tlvs
, mps_macs
*ETH_ALEN
);
464 tlvs
+= mps_macs
*ETH_ALEN
;
465 mpc
->number_of_mps_macs
= num_macs
;
470 static int send_via_shortcut(struct sk_buff
*skb
, struct mpoa_client
*mpc
)
472 in_cache_entry
*entry
;
478 struct llc_snap_hdr hdr
;
480 } tagged_llc_snap_hdr
= {
481 {0xaa, 0xaa, 0x03, {0x00, 0x00, 0x00}, {0x88, 0x4c}},
485 buff
= skb
->data
+ mpc
->dev
->hard_header_len
;
486 iph
= (struct iphdr
*)buff
;
489 ddprintk("mpoa: (%s) send_via_shortcut: ipaddr 0x%x\n", mpc
->dev
->name
, ipaddr
);
491 entry
= mpc
->in_ops
->get(ipaddr
, mpc
);
493 entry
= mpc
->in_ops
->add_entry(ipaddr
, mpc
);
494 if (entry
!= NULL
) mpc
->in_ops
->put(entry
);
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
);
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 */
506 ddprintk("mpoa: (%s) send_via_shortcut: IP ttl = %u, using LANE\n", mpc
->dev
->name
, iph
->ttl
);
507 mpc
->in_ops
->put(entry
);
512 iph
->check
= ip_fast_csum((unsigned char *)iph
, iph
->ihl
);
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
));
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
));
526 atomic_add(skb
->truesize
, &sk_atm(entry
->shortcut
)->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
);
536 * Probably needs some error checks and locking, not sure...
538 static int mpc_send_packet(struct sk_buff
*skb
, struct net_device
*dev
)
541 struct mpoa_client
*mpc
;
545 mpc
= find_mpc_by_lec(dev
); /* this should NEVER fail */
547 printk("mpoa: (%s) mpc_send_packet: no MPC found\n", dev
->name
);
551 eth
= (struct ethhdr
*)skb
->data
;
552 if (eth
->h_proto
!= htons(ETH_P_IP
))
553 goto non_ip
; /* Multi-Protocol Over ATM :-) */
555 while (i
< mpc
->number_of_mps_macs
) {
556 if (!compare_ether_addr(eth
->h_dest
, (mpc
->mps_macs
+ i
*ETH_ALEN
)))
557 if ( send_via_shortcut(skb
, mpc
) == 0 ) /* try shortcut */
558 return 0; /* success! */
563 retval
= mpc
->old_hard_start_xmit(skb
,dev
);
568 static int atm_mpoa_vcc_attach(struct atm_vcc
*vcc
, void __user
*arg
)
571 struct mpoa_client
*mpc
;
572 struct atmmpc_ioc ioc_data
;
573 in_cache_entry
*in_entry
;
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
);
582 ipaddr
= ioc_data
.ipaddr
;
583 if (ioc_data
.dev_num
< 0 || ioc_data
.dev_num
>= MAX_LEC_ITF
)
586 mpc
= find_mpc_by_itfnum(ioc_data
.dev_num
);
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",
595 if (in_entry
!= NULL
) mpc
->in_ops
->put(in_entry
);
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
);
604 printk("mpoa: (%s) mpc_vcc_attach: attaching egress SVC\n", mpc
->dev
->name
);
607 vcc
->proto_data
= mpc
->dev
;
608 vcc
->push
= mpc_push
;
616 static void mpc_vcc_close(struct atm_vcc
*vcc
, struct net_device
*dev
)
618 struct mpoa_client
*mpc
;
619 in_cache_entry
*in_entry
;
620 eg_cache_entry
*eg_entry
;
622 mpc
= find_mpc_by_lec(dev
);
624 printk("mpoa: (%s) mpc_vcc_close: close for unknown MPC\n", dev
->name
);
628 dprintk("mpoa: (%s) mpc_vcc_close:\n", dev
->name
);
629 in_entry
= mpc
->in_ops
->get_by_vcc(vcc
, mpc
);
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
);
638 eg_entry
= mpc
->eg_ops
->get_by_vcc(vcc
, mpc
);
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
);
645 if (in_entry
== NULL
&& eg_entry
== NULL
)
646 dprintk("mpoa: (%s) mpc_vcc_close: unused vcc closed\n", dev
->name
);
651 static void mpc_push(struct atm_vcc
*vcc
, struct sk_buff
*skb
)
653 struct net_device
*dev
= (struct net_device
*)vcc
->proto_data
;
654 struct sk_buff
*new_skb
;
656 struct mpoa_client
*mpc
;
660 ddprintk("mpoa: (%s) mpc_push:\n", dev
->name
);
662 dprintk("mpoa: (%s) mpc_push: null skb, closing VCC\n", dev
->name
);
663 mpc_vcc_close(vcc
, dev
);
668 if (memcmp(skb
->data
, &llc_snap_mpoa_ctrl
, sizeof(struct llc_snap_hdr
)) == 0) {
669 struct sock
*sk
= sk_atm(vcc
);
671 dprintk("mpoa: (%s) mpc_push: control packet arrived\n", dev
->name
);
672 /* Pass control packets to daemon */
673 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
674 sk
->sk_data_ready(sk
, skb
->len
);
678 /* data coming over the shortcut */
679 atm_return(vcc
, skb
->truesize
);
681 mpc
= find_mpc_by_lec(dev
);
683 printk("mpoa: (%s) mpc_push: unknown MPC\n", dev
->name
);
687 if (memcmp(skb
->data
, &llc_snap_mpoa_data_tagged
, sizeof(struct llc_snap_hdr
)) == 0) { /* MPOA tagged data */
688 ddprintk("mpoa: (%s) mpc_push: tagged data packet arrived\n", dev
->name
);
690 } else if (memcmp(skb
->data
, &llc_snap_mpoa_data
, sizeof(struct llc_snap_hdr
)) == 0) { /* MPOA data */
691 printk("mpoa: (%s) mpc_push: non-tagged data packet arrived\n", dev
->name
);
692 printk(" mpc_push: non-tagged data unsupported, purging\n");
693 dev_kfree_skb_any(skb
);
696 printk("mpoa: (%s) mpc_push: garbage arrived, purging\n", dev
->name
);
697 dev_kfree_skb_any(skb
);
701 tmp
= skb
->data
+ sizeof(struct llc_snap_hdr
);
702 tag
= *(uint32_t *)tmp
;
704 eg
= mpc
->eg_ops
->get_by_tag(tag
, mpc
);
706 printk("mpoa: (%s) mpc_push: Didn't find egress cache entry, tag = %u\n",
708 purge_egress_shortcut(vcc
, NULL
);
709 dev_kfree_skb_any(skb
);
714 * See if ingress MPC is using shortcut we opened as a return channel.
715 * This means we have a bi-directional vcc opened by us.
717 if (eg
->shortcut
== NULL
) {
719 printk("mpoa: (%s) mpc_push: egress SVC in use\n", dev
->name
);
722 skb_pull(skb
, sizeof(struct llc_snap_hdr
) + sizeof(tag
)); /* get rid of LLC/SNAP header */
723 new_skb
= skb_realloc_headroom(skb
, eg
->ctrl_info
.DH_length
); /* LLC/SNAP is shorter than MAC header :( */
724 dev_kfree_skb_any(skb
);
725 if (new_skb
== NULL
){
726 mpc
->eg_ops
->put(eg
);
729 skb_push(new_skb
, eg
->ctrl_info
.DH_length
); /* add MAC header */
730 memcpy(new_skb
->data
, eg
->ctrl_info
.DLL_header
, eg
->ctrl_info
.DH_length
);
731 new_skb
->protocol
= eth_type_trans(new_skb
, dev
);
732 new_skb
->nh
.raw
= new_skb
->data
;
734 eg
->latest_ip_addr
= new_skb
->nh
.iph
->saddr
;
736 mpc
->eg_ops
->put(eg
);
738 memset(ATM_SKB(skb
), 0, sizeof(struct atm_skb_data
));
744 static struct atmdev_ops mpc_ops
= { /* only send is required */
745 .close
= mpoad_close
,
746 .send
= msg_from_mpoad
749 static struct atm_dev mpc_dev
= {
753 .lock
= SPIN_LOCK_UNLOCKED
754 /* members not explicitly initialised will be 0 */
757 static int atm_mpoa_mpoad_attach (struct atm_vcc
*vcc
, int arg
)
759 struct mpoa_client
*mpc
;
760 struct lec_priv
*priv
;
764 init_timer(&mpc_timer
);
767 /* This lets us now how our LECs are doing */
768 err
= register_netdevice_notifier(&mpoa_notifier
);
770 del_timer(&mpc_timer
);
775 mpc
= find_mpc_by_itfnum(arg
);
777 dprintk("mpoa: mpoad_attach: allocating new mpc for itf %d\n", arg
);
782 mpc
->dev
= find_lec_by_itfnum(arg
); /* NULL if there was no lec */
784 if (mpc
->mpoad_vcc
) {
785 printk("mpoa: mpoad_attach: mpoad is already present for itf %d\n", arg
);
789 if (mpc
->dev
) { /* check if the lec is LANE2 capable */
790 priv
= (struct lec_priv
*)mpc
->dev
->priv
;
791 if (priv
->lane_version
< 2) {
795 priv
->lane2_ops
->associate_indicator
= lane2_assoc_ind
;
798 mpc
->mpoad_vcc
= vcc
;
800 vcc_insert_socket(sk_atm(vcc
));
801 set_bit(ATM_VF_META
,&vcc
->flags
);
802 set_bit(ATM_VF_READY
,&vcc
->flags
);
805 char empty
[ATM_ESA_LEN
];
806 memset(empty
, 0, ATM_ESA_LEN
);
808 start_mpc(mpc
, mpc
->dev
);
809 /* set address if mpcd e.g. gets killed and restarted.
810 * If we do not do it now we have to wait for the next LE_ARP
812 if ( memcmp(mpc
->mps_ctrl_addr
, empty
, ATM_ESA_LEN
) != 0 )
813 send_set_mps_ctrl_addr(mpc
->mps_ctrl_addr
, mpc
);
816 __module_get(THIS_MODULE
);
820 static void send_set_mps_ctrl_addr(char *addr
, struct mpoa_client
*mpc
)
822 struct k_message mesg
;
824 memcpy (mpc
->mps_ctrl_addr
, addr
, ATM_ESA_LEN
);
826 mesg
.type
= SET_MPS_CTRL_ADDR
;
827 memcpy(mesg
.MPS_ctrl
, addr
, ATM_ESA_LEN
);
828 msg_to_mpoad(&mesg
, mpc
);
833 static void mpoad_close(struct atm_vcc
*vcc
)
835 struct mpoa_client
*mpc
;
838 mpc
= find_mpc_by_vcc(vcc
);
840 printk("mpoa: mpoad_close: did not find MPC\n");
843 if (!mpc
->mpoad_vcc
) {
844 printk("mpoa: mpoad_close: close for non-present mpoad\n");
848 mpc
->mpoad_vcc
= NULL
;
850 struct lec_priv
*priv
= (struct lec_priv
*)mpc
->dev
->priv
;
851 priv
->lane2_ops
->associate_indicator
= NULL
;
856 mpc
->in_ops
->destroy_cache(mpc
);
857 mpc
->eg_ops
->destroy_cache(mpc
);
859 while ((skb
= skb_dequeue(&sk_atm(vcc
)->sk_receive_queue
))) {
860 atm_return(vcc
, skb
->truesize
);
864 printk("mpoa: (%s) going down\n",
865 (mpc
->dev
) ? mpc
->dev
->name
: "<unknown>");
866 module_put(THIS_MODULE
);
874 static int msg_from_mpoad(struct atm_vcc
*vcc
, struct sk_buff
*skb
)
877 struct mpoa_client
*mpc
= find_mpc_by_vcc(vcc
);
878 struct k_message
*mesg
= (struct k_message
*)skb
->data
;
879 atomic_sub(skb
->truesize
, &sk_atm(vcc
)->sk_wmem_alloc
);
882 printk("mpoa: msg_from_mpoad: no mpc found\n");
885 dprintk("mpoa: (%s) msg_from_mpoad:", (mpc
->dev
) ? mpc
->dev
->name
: "<unknown>");
887 case MPOA_RES_REPLY_RCVD
:
888 dprintk(" mpoa_res_reply_rcvd\n");
889 MPOA_res_reply_rcvd(mesg
, mpc
);
891 case MPOA_TRIGGER_RCVD
:
892 dprintk(" mpoa_trigger_rcvd\n");
893 MPOA_trigger_rcvd(mesg
, mpc
);
895 case INGRESS_PURGE_RCVD
:
896 dprintk(" nhrp_purge_rcvd\n");
897 ingress_purge_rcvd(mesg
, mpc
);
899 case EGRESS_PURGE_RCVD
:
900 dprintk(" egress_purge_reply_rcvd\n");
901 egress_purge_rcvd(mesg
, mpc
);
904 dprintk(" mps_death\n");
905 mps_death(mesg
, mpc
);
907 case CACHE_IMPOS_RCVD
:
908 dprintk(" cache_impos_rcvd\n");
909 MPOA_cache_impos_rcvd(mesg
, mpc
);
911 case SET_MPC_CTRL_ADDR
:
912 dprintk(" set_mpc_ctrl_addr\n");
913 set_mpc_ctrl_addr_rcvd(mesg
, mpc
);
915 case SET_MPS_MAC_ADDR
:
916 dprintk(" set_mps_mac_addr\n");
917 set_mps_mac_addr_rcvd(mesg
, mpc
);
919 case CLEAN_UP_AND_EXIT
:
920 dprintk(" clean_up_and_exit\n");
921 clean_up(mesg
, mpc
, DIE
);
924 dprintk(" reload\n");
925 clean_up(mesg
, mpc
, RELOAD
);
928 dprintk(" set_mpc_params\n");
929 mpc
->parameters
= mesg
->content
.params
;
932 dprintk(" unknown message %d\n", mesg
->type
);
940 /* Remember that this function may not do things that sleep */
941 int msg_to_mpoad(struct k_message
*mesg
, struct mpoa_client
*mpc
)
946 if (mpc
== NULL
|| !mpc
->mpoad_vcc
) {
947 printk("mpoa: msg_to_mpoad: mesg %d to a non-existent mpoad\n", mesg
->type
);
951 skb
= alloc_skb(sizeof(struct k_message
), GFP_ATOMIC
);
954 skb_put(skb
, sizeof(struct k_message
));
955 memcpy(skb
->data
, mesg
, sizeof(struct k_message
));
956 atm_force_charge(mpc
->mpoad_vcc
, skb
->truesize
);
958 sk
= sk_atm(mpc
->mpoad_vcc
);
959 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
960 sk
->sk_data_ready(sk
, skb
->len
);
965 static int mpoa_event_listener(struct notifier_block
*mpoa_notifier
, unsigned long event
, void *dev_ptr
)
967 struct net_device
*dev
;
968 struct mpoa_client
*mpc
;
969 struct lec_priv
*priv
;
971 dev
= (struct net_device
*)dev_ptr
;
972 if (dev
->name
== NULL
|| strncmp(dev
->name
, "lec", 3))
973 return NOTIFY_DONE
; /* we are only interested in lec:s */
976 case NETDEV_REGISTER
: /* a new lec device was allocated */
977 priv
= (struct lec_priv
*)dev
->priv
;
978 if (priv
->lane_version
< 2)
980 priv
->lane2_ops
->associate_indicator
= lane2_assoc_ind
;
981 mpc
= find_mpc_by_itfnum(priv
->itfnum
);
983 dprintk("mpoa: mpoa_event_listener: allocating new mpc for %s\n",
987 printk("mpoa: mpoa_event_listener: no new mpc");
991 mpc
->dev_num
= priv
->itfnum
;
994 dprintk("mpoa: (%s) was initialized\n", dev
->name
);
996 case NETDEV_UNREGISTER
:
997 /* the lec device was deallocated */
998 mpc
= find_mpc_by_lec(dev
);
1001 dprintk("mpoa: device (%s) was deallocated\n", dev
->name
);
1007 /* the dev was ifconfig'ed up */
1008 mpc
= find_mpc_by_lec(dev
);
1011 if (mpc
->mpoad_vcc
!= NULL
) {
1012 start_mpc(mpc
, dev
);
1016 /* the dev was ifconfig'ed down */
1017 /* this means that the flow of packets from the
1020 mpc
= find_mpc_by_lec(dev
);
1023 if (mpc
->mpoad_vcc
!= NULL
) {
1029 case NETDEV_CHANGEMTU
:
1030 case NETDEV_CHANGEADDR
:
1031 case NETDEV_GOING_DOWN
:
1041 * Functions which are called after a message is received from mpcd.
1042 * Msg is reused on purpose.
1046 static void MPOA_trigger_rcvd(struct k_message
*msg
, struct mpoa_client
*mpc
)
1048 uint32_t dst_ip
= msg
->content
.in_info
.in_dst_ip
;
1049 in_cache_entry
*entry
;
1051 entry
= mpc
->in_ops
->get(dst_ip
, mpc
);
1053 entry
= mpc
->in_ops
->add_entry(dst_ip
, mpc
);
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
);
1063 if(entry
->entry_state
== INGRESS_INVALID
){
1064 entry
->entry_state
= INGRESS_RESOLVING
;
1065 msg
->type
= SND_MPOA_RES_RQST
;
1066 msg
->content
.in_info
= entry
->ctrl_info
;
1067 msg_to_mpoad(msg
, mpc
);
1068 do_gettimeofday(&(entry
->reply_wait
));
1069 mpc
->in_ops
->put(entry
);
1073 printk("mpoa: (%s) MPOA_trigger_rcvd: entry already in resolving state\n",
1074 (mpc
->dev
) ? mpc
->dev
->name
: "<unknown>");
1075 mpc
->in_ops
->put(entry
);
1080 * Things get complicated because we have to check if there's an egress
1081 * shortcut with suitable traffic parameters we could use.
1083 static void check_qos_and_open_shortcut(struct k_message
*msg
, struct mpoa_client
*client
, in_cache_entry
*entry
)
1085 uint32_t dst_ip
= msg
->content
.in_info
.in_dst_ip
;
1086 unsigned char *ip
__attribute__ ((unused
)) = (unsigned char *)&dst_ip
;
1087 struct atm_mpoa_qos
*qos
= atm_mpoa_search_qos(dst_ip
);
1088 eg_cache_entry
*eg_entry
= client
->eg_ops
->get_by_src_ip(dst_ip
, client
);
1090 if(eg_entry
&& eg_entry
->shortcut
){
1091 if(eg_entry
->shortcut
->qos
.txtp
.traffic_class
&
1092 msg
->qos
.txtp
.traffic_class
&
1093 (qos
? qos
->qos
.txtp
.traffic_class
: ATM_UBR
| ATM_CBR
)){
1094 if(eg_entry
->shortcut
->qos
.txtp
.traffic_class
== ATM_UBR
)
1095 entry
->shortcut
= eg_entry
->shortcut
;
1096 else if(eg_entry
->shortcut
->qos
.txtp
.max_pcr
> 0)
1097 entry
->shortcut
= eg_entry
->shortcut
;
1099 if(entry
->shortcut
){
1100 dprintk("mpoa: (%s) using egress SVC to reach %u.%u.%u.%u\n",client
->dev
->name
, NIPQUAD(ip
));
1101 client
->eg_ops
->put(eg_entry
);
1105 if (eg_entry
!= NULL
)
1106 client
->eg_ops
->put(eg_entry
);
1108 /* No luck in the egress cache we must open an ingress SVC */
1109 msg
->type
= OPEN_INGRESS_SVC
;
1110 if (qos
&& (qos
->qos
.txtp
.traffic_class
== msg
->qos
.txtp
.traffic_class
))
1112 msg
->qos
= qos
->qos
;
1113 printk("mpoa: (%s) trying to get a CBR shortcut\n",client
->dev
->name
);
1115 else memset(&msg
->qos
,0,sizeof(struct atm_qos
));
1116 msg_to_mpoad(msg
, client
);
1120 static void MPOA_res_reply_rcvd(struct k_message
*msg
, struct mpoa_client
*mpc
)
1124 uint32_t dst_ip
= msg
->content
.in_info
.in_dst_ip
;
1125 in_cache_entry
*entry
= mpc
->in_ops
->get(dst_ip
, mpc
);
1126 ip
= (unsigned char *)&dst_ip
;
1127 dprintk("mpoa: (%s) MPOA_res_reply_rcvd: ip %u.%u.%u.%u\n", mpc
->dev
->name
, NIPQUAD(ip
));
1128 ddprintk("mpoa: (%s) MPOA_res_reply_rcvd() entry = %p", mpc
->dev
->name
, entry
);
1130 printk("\nmpoa: (%s) ARGH, received res. reply for an entry that doesn't exist.\n", mpc
->dev
->name
);
1133 ddprintk(" entry_state = %d ", entry
->entry_state
);
1135 if (entry
->entry_state
== INGRESS_RESOLVED
) {
1136 printk("\nmpoa: (%s) MPOA_res_reply_rcvd for RESOLVED entry!\n", mpc
->dev
->name
);
1137 mpc
->in_ops
->put(entry
);
1141 entry
->ctrl_info
= msg
->content
.in_info
;
1142 do_gettimeofday(&(entry
->tv
));
1143 do_gettimeofday(&(entry
->reply_wait
)); /* Used in refreshing func from now on */
1144 entry
->refresh_time
= 0;
1145 ddprintk("entry->shortcut = %p\n", entry
->shortcut
);
1147 if(entry
->entry_state
== INGRESS_RESOLVING
&& entry
->shortcut
!= NULL
){
1148 entry
->entry_state
= INGRESS_RESOLVED
;
1149 mpc
->in_ops
->put(entry
);
1150 return; /* Shortcut already open... */
1153 if (entry
->shortcut
!= NULL
) {
1154 printk("mpoa: (%s) MPOA_res_reply_rcvd: entry->shortcut != NULL, impossible!\n",
1156 mpc
->in_ops
->put(entry
);
1160 check_qos_and_open_shortcut(msg
, mpc
, entry
);
1161 entry
->entry_state
= INGRESS_RESOLVED
;
1162 mpc
->in_ops
->put(entry
);
1168 static void ingress_purge_rcvd(struct k_message
*msg
, struct mpoa_client
*mpc
)
1170 uint32_t dst_ip
= msg
->content
.in_info
.in_dst_ip
;
1171 uint32_t mask
= msg
->ip_mask
;
1172 unsigned char *ip
= (unsigned char *)&dst_ip
;
1173 in_cache_entry
*entry
= mpc
->in_ops
->get_with_mask(dst_ip
, mpc
, mask
);
1176 printk("mpoa: (%s) ingress_purge_rcvd: purge for a non-existing entry, ", mpc
->dev
->name
);
1177 printk("ip = %u.%u.%u.%u\n", ip
[0], ip
[1], ip
[2], ip
[3]);
1182 dprintk("mpoa: (%s) ingress_purge_rcvd: removing an ingress entry, ip = %u.%u.%u.%u\n" ,
1183 mpc
->dev
->name
, ip
[0], ip
[1], ip
[2], ip
[3]);
1184 write_lock_bh(&mpc
->ingress_lock
);
1185 mpc
->in_ops
->remove_entry(entry
, mpc
);
1186 write_unlock_bh(&mpc
->ingress_lock
);
1187 mpc
->in_ops
->put(entry
);
1188 entry
= mpc
->in_ops
->get_with_mask(dst_ip
, mpc
, mask
);
1189 } while (entry
!= NULL
);
1194 static void egress_purge_rcvd(struct k_message
*msg
, struct mpoa_client
*mpc
)
1196 uint32_t cache_id
= msg
->content
.eg_info
.cache_id
;
1197 eg_cache_entry
*entry
= mpc
->eg_ops
->get_by_cache_id(cache_id
, mpc
);
1199 if (entry
== NULL
) {
1200 dprintk("mpoa: (%s) egress_purge_rcvd: purge for a non-existing entry\n", mpc
->dev
->name
);
1204 write_lock_irq(&mpc
->egress_lock
);
1205 mpc
->eg_ops
->remove_entry(entry
, mpc
);
1206 write_unlock_irq(&mpc
->egress_lock
);
1208 mpc
->eg_ops
->put(entry
);
1213 static void purge_egress_shortcut(struct atm_vcc
*vcc
, eg_cache_entry
*entry
)
1216 struct k_message
*purge_msg
;
1217 struct sk_buff
*skb
;
1219 dprintk("mpoa: purge_egress_shortcut: entering\n");
1221 printk("mpoa: purge_egress_shortcut: vcc == NULL\n");
1225 skb
= alloc_skb(sizeof(struct k_message
), GFP_ATOMIC
);
1227 printk("mpoa: purge_egress_shortcut: out of memory\n");
1231 skb_put(skb
, sizeof(struct k_message
));
1232 memset(skb
->data
, 0, sizeof(struct k_message
));
1233 purge_msg
= (struct k_message
*)skb
->data
;
1234 purge_msg
->type
= DATA_PLANE_PURGE
;
1236 purge_msg
->content
.eg_info
= entry
->ctrl_info
;
1238 atm_force_charge(vcc
, skb
->truesize
);
1241 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
1242 sk
->sk_data_ready(sk
, skb
->len
);
1243 dprintk("mpoa: purge_egress_shortcut: exiting:\n");
1249 * Our MPS died. Tell our daemon to send NHRP data plane purge to each
1250 * of the egress shortcuts we have.
1252 static void mps_death( struct k_message
* msg
, struct mpoa_client
* mpc
)
1254 eg_cache_entry
*entry
;
1256 dprintk("mpoa: (%s) mps_death:\n", mpc
->dev
->name
);
1258 if(memcmp(msg
->MPS_ctrl
, mpc
->mps_ctrl_addr
, ATM_ESA_LEN
)){
1259 printk("mpoa: (%s) mps_death: wrong MPS\n", mpc
->dev
->name
);
1263 /* FIXME: This knows too much of the cache structure */
1264 read_lock_irq(&mpc
->egress_lock
);
1265 entry
= mpc
->eg_cache
;
1266 while (entry
!= NULL
) {
1267 purge_egress_shortcut(entry
->shortcut
, entry
);
1268 entry
= entry
->next
;
1270 read_unlock_irq(&mpc
->egress_lock
);
1272 mpc
->in_ops
->destroy_cache(mpc
);
1273 mpc
->eg_ops
->destroy_cache(mpc
);
1278 static void MPOA_cache_impos_rcvd( struct k_message
* msg
, struct mpoa_client
* mpc
)
1280 uint16_t holding_time
;
1281 eg_cache_entry
*entry
= mpc
->eg_ops
->get_by_cache_id(msg
->content
.eg_info
.cache_id
, mpc
);
1283 holding_time
= msg
->content
.eg_info
.holding_time
;
1284 dprintk("mpoa: (%s) MPOA_cache_impos_rcvd: entry = %p, holding_time = %u\n",
1285 mpc
->dev
->name
, entry
, holding_time
);
1286 if(entry
== NULL
&& holding_time
) {
1287 entry
= mpc
->eg_ops
->add_entry(msg
, mpc
);
1288 mpc
->eg_ops
->put(entry
);
1292 mpc
->eg_ops
->update(entry
, holding_time
);
1296 write_lock_irq(&mpc
->egress_lock
);
1297 mpc
->eg_ops
->remove_entry(entry
, mpc
);
1298 write_unlock_irq(&mpc
->egress_lock
);
1300 mpc
->eg_ops
->put(entry
);
1305 static void set_mpc_ctrl_addr_rcvd(struct k_message
*mesg
, struct mpoa_client
*mpc
)
1307 struct lec_priv
*priv
;
1310 uint8_t tlv
[4 + 1 + 1 + 1 + ATM_ESA_LEN
];
1312 tlv
[0] = 00; tlv
[1] = 0xa0; tlv
[2] = 0x3e; tlv
[3] = 0x2a; /* type */
1313 tlv
[4] = 1 + 1 + ATM_ESA_LEN
; /* length */
1314 tlv
[5] = 0x02; /* MPOA client */
1315 tlv
[6] = 0x00; /* number of MPS MAC addresses */
1317 memcpy(&tlv
[7], mesg
->MPS_ctrl
, ATM_ESA_LEN
); /* MPC ctrl ATM addr */
1318 memcpy(mpc
->our_ctrl_addr
, mesg
->MPS_ctrl
, ATM_ESA_LEN
);
1320 dprintk("mpoa: (%s) setting MPC ctrl ATM address to ",
1321 (mpc
->dev
) ? mpc
->dev
->name
: "<unknown>");
1322 for (i
= 7; i
< sizeof(tlv
); i
++)
1323 dprintk("%02x ", tlv
[i
]);
1327 priv
= (struct lec_priv
*)mpc
->dev
->priv
;
1328 retval
= priv
->lane2_ops
->associate_req(mpc
->dev
, mpc
->dev
->dev_addr
, tlv
, sizeof(tlv
));
1330 printk("mpoa: (%s) MPOA device type TLV association failed\n", mpc
->dev
->name
);
1331 retval
= priv
->lane2_ops
->resolve(mpc
->dev
, NULL
, 1, NULL
, NULL
);
1333 printk("mpoa: (%s) targetless LE_ARP request failed\n", mpc
->dev
->name
);
1339 static void set_mps_mac_addr_rcvd(struct k_message
*msg
, struct mpoa_client
*client
)
1342 if(client
->number_of_mps_macs
)
1343 kfree(client
->mps_macs
);
1344 client
->number_of_mps_macs
= 0;
1345 client
->mps_macs
= kmalloc(ETH_ALEN
,GFP_KERNEL
);
1346 if (client
->mps_macs
== NULL
) {
1347 printk("mpoa: set_mps_mac_addr_rcvd: out of memory\n");
1350 client
->number_of_mps_macs
= 1;
1351 memcpy(client
->mps_macs
, msg
->MPS_ctrl
, ETH_ALEN
);
1357 * purge egress cache and tell daemon to 'action' (DIE, RELOAD)
1359 static void clean_up(struct k_message
*msg
, struct mpoa_client
*mpc
, int action
)
1362 eg_cache_entry
*entry
;
1363 msg
->type
= SND_EGRESS_PURGE
;
1366 /* FIXME: This knows too much of the cache structure */
1367 read_lock_irq(&mpc
->egress_lock
);
1368 entry
= mpc
->eg_cache
;
1369 while (entry
!= NULL
){
1370 msg
->content
.eg_info
= entry
->ctrl_info
;
1371 dprintk("mpoa: cache_id %u\n", entry
->ctrl_info
.cache_id
);
1372 msg_to_mpoad(msg
, mpc
);
1373 entry
= entry
->next
;
1375 read_unlock_irq(&mpc
->egress_lock
);
1378 msg_to_mpoad(msg
, mpc
);
1382 static void mpc_timer_refresh(void)
1384 mpc_timer
.expires
= jiffies
+ (MPC_P2
* HZ
);
1385 mpc_timer
.data
= mpc_timer
.expires
;
1386 mpc_timer
.function
= mpc_cache_check
;
1387 add_timer(&mpc_timer
);
1392 static void mpc_cache_check( unsigned long checking_time
)
1394 struct mpoa_client
*mpc
= mpcs
;
1395 static unsigned long previous_resolving_check_time
;
1396 static unsigned long previous_refresh_time
;
1398 while( mpc
!= NULL
){
1399 mpc
->in_ops
->clear_count(mpc
);
1400 mpc
->eg_ops
->clear_expired(mpc
);
1401 if(checking_time
- previous_resolving_check_time
> mpc
->parameters
.mpc_p4
* HZ
){
1402 mpc
->in_ops
->check_resolving(mpc
);
1403 previous_resolving_check_time
= checking_time
;
1405 if(checking_time
- previous_refresh_time
> mpc
->parameters
.mpc_p5
* HZ
){
1406 mpc
->in_ops
->refresh(mpc
);
1407 previous_refresh_time
= checking_time
;
1411 mpc_timer_refresh();
1416 static int atm_mpoa_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1419 struct atm_vcc
*vcc
= ATM_SD(sock
);
1421 if (cmd
!= ATMMPC_CTRL
&& cmd
!= ATMMPC_DATA
)
1422 return -ENOIOCTLCMD
;
1424 if (!capable(CAP_NET_ADMIN
))
1429 err
= atm_mpoa_mpoad_attach(vcc
, (int)arg
);
1431 sock
->state
= SS_CONNECTED
;
1434 err
= atm_mpoa_vcc_attach(vcc
, (void __user
*)arg
);
1443 static struct atm_ioctl atm_ioctl_ops
= {
1444 .owner
= THIS_MODULE
,
1445 .ioctl
= atm_mpoa_ioctl
,
1448 static __init
int atm_mpoa_init(void)
1450 register_atm_ioctl(&atm_ioctl_ops
);
1452 #ifdef CONFIG_PROC_FS
1453 if (mpc_proc_init() != 0)
1454 printk(KERN_INFO
"mpoa: failed to initialize /proc/mpoa\n");
1456 printk(KERN_INFO
"mpoa: /proc/mpoa initialized\n");
1459 printk("mpc.c: " __DATE__
" " __TIME__
" initialized\n");
1464 static void __exit
atm_mpoa_cleanup(void)
1466 struct mpoa_client
*mpc
, *tmp
;
1467 struct atm_mpoa_qos
*qos
, *nextqos
;
1468 struct lec_priv
*priv
;
1470 #ifdef CONFIG_PROC_FS
1474 del_timer(&mpc_timer
);
1475 unregister_netdevice_notifier(&mpoa_notifier
);
1476 deregister_atm_ioctl(&atm_ioctl_ops
);
1480 while (mpc
!= NULL
) {
1482 if (mpc
->dev
!= NULL
) {
1484 priv
= (struct lec_priv
*)mpc
->dev
->priv
;
1485 if (priv
->lane2_ops
!= NULL
)
1486 priv
->lane2_ops
->associate_indicator
= NULL
;
1488 ddprintk("mpoa: cleanup_module: about to clear caches\n");
1489 mpc
->in_ops
->destroy_cache(mpc
);
1490 mpc
->eg_ops
->destroy_cache(mpc
);
1491 ddprintk("mpoa: cleanup_module: caches cleared\n");
1492 kfree(mpc
->mps_macs
);
1493 memset(mpc
, 0, sizeof(struct mpoa_client
));
1494 ddprintk("mpoa: cleanup_module: about to kfree %p\n", mpc
);
1496 ddprintk("mpoa: cleanup_module: next mpc is at %p\n", tmp
);
1502 while (qos
!= NULL
) {
1503 nextqos
= qos
->next
;
1504 dprintk("mpoa: cleanup_module: freeing qos entry %p\n", qos
);
1512 module_init(atm_mpoa_init
);
1513 module_exit(atm_mpoa_cleanup
);
1515 MODULE_LICENSE("GPL");