mpc.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:39k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

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