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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* net/sched/sch_atm.c - ATM VC selection "queueing discipline" */
  2. /* Written 1998-2000 by Werner Almesberger, EPFL ICA */
  3. #include <linux/config.h>
  4. #include <linux/module.h>
  5. #include <linux/string.h>
  6. #include <linux/errno.h>
  7. #include <linux/skbuff.h>
  8. #include <linux/interrupt.h>
  9. #include <linux/atmdev.h>
  10. #include <linux/atmclip.h>
  11. #include <linux/netdevice.h>
  12. #include <linux/rtnetlink.h>
  13. #include <linux/file.h> /* for fput */
  14. #include <net/pkt_sched.h>
  15. #include <net/sock.h>
  16. extern struct socket *sockfd_lookup(int fd, int *err); /* @@@ fix this */
  17. #define sockfd_put(sock) fput((sock)->file) /* @@@ copied because it's
  18.    __inline__ in socket.c */
  19. #if 0 /* control */
  20. #define DPRINTK(format,args...) printk(KERN_DEBUG format,##args)
  21. #else
  22. #define DPRINTK(format,args...)
  23. #endif
  24. #if 0 /* data */
  25. #define D2PRINTK(format,args...) printk(KERN_DEBUG format,##args)
  26. #else
  27. #define D2PRINTK(format,args...)
  28. #endif
  29. /*
  30.  * The ATM queuing discipline provides a framework for invoking classifiers
  31.  * (aka "filters"), which in turn select classes of this queuing discipline.
  32.  * Each class maps the flow(s) it is handling to a given VC. Multiple classes
  33.  * may share the same VC.
  34.  *
  35.  * When creating a class, VCs are specified by passing the number of the open
  36.  * socket descriptor by which the calling process references the VC. The kernel
  37.  * keeps the VC open at least until all classes using it are removed.
  38.  *
  39.  * In this file, most functions are named atm_tc_* to avoid confusion with all
  40.  * the atm_* in net/atm. This naming convention differs from what's used in the
  41.  * rest of net/sched.
  42.  *
  43.  * Known bugs:
  44.  *  - sometimes messes up the IP stack
  45.  *  - any manipulations besides the few operations described in the README, are
  46.  *    untested and likely to crash the system
  47.  *  - should lock the flow while there is data in the queue (?)
  48.  */
  49. #define PRIV(sch) ((struct atm_qdisc_data *) (sch)->data)
  50. #define VCC2FLOW(vcc) ((struct atm_flow_data *) ((vcc)->user_back))
  51. struct atm_flow_data {
  52. struct Qdisc *q; /* FIFO, TBF, etc. */
  53. struct tcf_proto *filter_list;
  54. struct atm_vcc *vcc; /* VCC; NULL if VCC is closed */
  55. void (*old_pop)(struct atm_vcc *vcc,struct sk_buff *skb); /* chaining */
  56. struct atm_qdisc_data *parent; /* parent qdisc */
  57. struct socket *sock; /* for closing */
  58. u32 classid; /* x:y type ID */
  59. int ref; /* reference count */
  60. struct tc_stats stats;
  61. struct atm_flow_data *next;
  62. struct atm_flow_data *excess; /* flow for excess traffic;
  63.    NULL to set CLP instead */
  64. int hdr_len;
  65. unsigned char hdr[0]; /* header data; MUST BE LAST */
  66. };
  67. struct atm_qdisc_data {
  68. struct atm_flow_data link; /* unclassified skbs go here */
  69. struct atm_flow_data *flows; /* NB: "link" is also on this
  70.    list */
  71. struct tasklet_struct task; /* requeue tasklet */
  72. };
  73. /* ------------------------- Class/flow operations ------------------------- */
  74. static int find_flow(struct atm_qdisc_data *qdisc,struct atm_flow_data *flow)
  75. {
  76. struct atm_flow_data *walk;
  77. DPRINTK("find_flow(qdisc %p,flow %p)n",qdisc,flow);
  78. for (walk = qdisc->flows; walk; walk = walk->next)
  79. if (walk == flow) return 1;
  80. DPRINTK("find_flow: not foundn");
  81. return 0;
  82. }
  83. static __inline__ struct atm_flow_data *lookup_flow(struct Qdisc *sch,
  84.     u32 classid)
  85. {
  86. struct atm_flow_data *flow;
  87.         for (flow = PRIV(sch)->flows; flow; flow = flow->next)
  88. if (flow->classid == classid) break;
  89. return flow;
  90. }
  91. static int atm_tc_graft(struct Qdisc *sch,unsigned long arg,
  92.     struct Qdisc *new,struct Qdisc **old)
  93. {
  94. struct atm_qdisc_data *p = PRIV(sch);
  95. struct atm_flow_data *flow = (struct atm_flow_data *) arg;
  96. DPRINTK("atm_tc_graft(sch %p,[qdisc %p],flow %p,new %p,old %p)n",sch,
  97.     p,flow,new,old);
  98. if (!find_flow(p,flow)) return -EINVAL;
  99. if (!new) new = &noop_qdisc;
  100. *old = xchg(&flow->q,new);
  101. if (*old) qdisc_reset(*old);
  102.         return 0;
  103. }
  104. static struct Qdisc *atm_tc_leaf(struct Qdisc *sch,unsigned long cl)
  105. {
  106. struct atm_flow_data *flow = (struct atm_flow_data *) cl;
  107. DPRINTK("atm_tc_leaf(sch %p,flow %p)n",sch,flow);
  108. return flow ? flow->q : NULL;
  109. }
  110. static unsigned long atm_tc_get(struct Qdisc *sch,u32 classid)
  111. {
  112. struct atm_qdisc_data *p __attribute__((unused)) = PRIV(sch);
  113. struct atm_flow_data *flow;
  114. DPRINTK("atm_tc_get(sch %p,[qdisc %p],classid %x)n",sch,p,classid);
  115. flow = lookup_flow(sch,classid);
  116.         if (flow) flow->ref++;
  117. DPRINTK("atm_tc_get: flow %pn",flow);
  118. return (unsigned long) flow;
  119. }
  120. static unsigned long atm_tc_bind_filter(struct Qdisc *sch,
  121.     unsigned long parent, u32 classid)
  122. {
  123. return atm_tc_get(sch,classid);
  124. }
  125. static void destroy_filters(struct atm_flow_data *flow)
  126. {
  127. struct tcf_proto *filter;
  128. while ((filter = flow->filter_list)) {
  129. DPRINTK("destroy_filters: destroying filter %pn",filter);
  130. flow->filter_list = filter->next;
  131. filter->ops->destroy(filter);
  132. }
  133. }
  134. /*
  135.  * atm_tc_put handles all destructions, including the ones that are explicitly
  136.  * requested (atm_tc_destroy, etc.). The assumption here is that we never drop
  137.  * anything that still seems to be in use.
  138.  */
  139. static void atm_tc_put(struct Qdisc *sch, unsigned long cl)
  140. {
  141. struct atm_qdisc_data *p = PRIV(sch);
  142. struct atm_flow_data *flow = (struct atm_flow_data *) cl;
  143. struct atm_flow_data **prev;
  144. DPRINTK("atm_tc_put(sch %p,[qdisc %p],flow %p)n",sch,p,flow);
  145. if (--flow->ref) return;
  146. DPRINTK("atm_tc_put: destroyingn");
  147. for (prev = &p->flows; *prev; prev = &(*prev)->next)
  148. if (*prev == flow) break;
  149. if (!*prev) {
  150. printk(KERN_CRIT "atm_tc_put: class %p not foundn",flow);
  151. return;
  152. }
  153. *prev = flow->next;
  154. DPRINTK("atm_tc_put: qdisc %pn",flow->q);
  155. qdisc_destroy(flow->q);
  156. destroy_filters(flow);
  157. if (flow->sock) {
  158. DPRINTK("atm_tc_put: f_count %dn",
  159.     file_count(flow->sock->file));
  160. flow->vcc->pop = flow->old_pop;
  161. sockfd_put(flow->sock);
  162. }
  163. if (flow->excess) atm_tc_put(sch,(unsigned long) flow->excess);
  164. if (flow != &p->link) kfree(flow);
  165. /*
  166.  * If flow == &p->link, the qdisc no longer works at this point and
  167.  * needs to be removed. (By the caller of atm_tc_put.)
  168.  */
  169. }
  170. static void sch_atm_pop(struct atm_vcc *vcc,struct sk_buff *skb)
  171. {
  172. struct atm_qdisc_data *p = VCC2FLOW(vcc)->parent;
  173. D2PRINTK("sch_atm_pop(vcc %p,skb %p,[qdisc %p])n",vcc,skb,p);
  174. VCC2FLOW(vcc)->old_pop(vcc,skb);
  175. tasklet_schedule(&p->task);
  176. }
  177. static int atm_tc_change(struct Qdisc *sch, u32 classid, u32 parent,
  178.     struct rtattr **tca, unsigned long *arg)
  179. {
  180. struct atm_qdisc_data *p = PRIV(sch);
  181. struct atm_flow_data *flow = (struct atm_flow_data *) *arg;
  182. struct atm_flow_data *excess = NULL;
  183. struct rtattr *opt = tca[TCA_OPTIONS-1];
  184. struct rtattr *tb[TCA_ATM_MAX];
  185. struct socket *sock;
  186. int fd,error,hdr_len;
  187. void *hdr;
  188. DPRINTK("atm_tc_change(sch %p,[qdisc %p],classid %x,parent %x,"
  189.     "flow %p,opt %p)n",sch,p,classid,parent,flow,opt);
  190. /*
  191.  * The concept of parents doesn't apply for this qdisc.
  192.  */
  193. if (parent && parent != TC_H_ROOT && parent != sch->handle)
  194. return -EINVAL;
  195. /*
  196.  * ATM classes cannot be changed. In order to change properties of the
  197.  * ATM connection, that socket needs to be modified directly (via the
  198.  * native ATM API. In order to send a flow to a different VC, the old
  199.  * class needs to be removed and a new one added. (This may be changed
  200.  * later.)
  201.  */
  202. if (flow) return -EBUSY;
  203. if (opt == NULL || rtattr_parse(tb,TCA_ATM_MAX,RTA_DATA(opt),
  204.     RTA_PAYLOAD(opt))) return -EINVAL;
  205. if (!tb[TCA_ATM_FD-1] || RTA_PAYLOAD(tb[TCA_ATM_FD-1]) < sizeof(fd))
  206. return -EINVAL;
  207. fd = *(int *) RTA_DATA(tb[TCA_ATM_FD-1]);
  208. DPRINTK("atm_tc_change: fd %dn",fd);
  209. if (tb[TCA_ATM_HDR-1]) {
  210. hdr_len = RTA_PAYLOAD(tb[TCA_ATM_HDR-1]);
  211. hdr = RTA_DATA(tb[TCA_ATM_HDR-1]);
  212. }
  213. else {
  214. hdr_len = RFC1483LLC_LEN;
  215. hdr = NULL; /* default LLC/SNAP for IP */
  216. }
  217. if (!tb[TCA_ATM_EXCESS-1]) excess = NULL;
  218. else {
  219. if (RTA_PAYLOAD(tb[TCA_ATM_EXCESS-1]) != sizeof(u32))
  220. return -EINVAL;
  221. excess = (struct atm_flow_data *) atm_tc_get(sch,
  222.     *(u32 *) RTA_DATA(tb[TCA_ATM_EXCESS-1]));
  223. if (!excess) return -ENOENT;
  224. }
  225. DPRINTK("atm_tc_change: type %d, payload %d, hdr_len %dn",
  226.     opt->rta_type,RTA_PAYLOAD(opt),hdr_len);
  227. if (!(sock = sockfd_lookup(fd,&error))) return error; /* f_count++ */
  228. DPRINTK("atm_tc_change: f_count %dn",file_count(sock->file));
  229.         if (sock->ops->family != PF_ATMSVC && sock->ops->family != PF_ATMPVC) {
  230. error = -EPROTOTYPE;
  231.                 goto err_out;
  232. }
  233. /* @@@ should check if the socket is really operational or we'll crash
  234.    on vcc->send */
  235. if (classid) {
  236. if (TC_H_MAJ(classid ^ sch->handle)) {
  237. DPRINTK("atm_tc_change: classid mismatchn");
  238. error = -EINVAL;
  239. goto err_out;
  240. }
  241. if (find_flow(p,flow)) {
  242. error = -EEXIST;
  243. goto err_out;
  244. }
  245. }
  246. else {
  247. int i;
  248. unsigned long cl;
  249. for (i = 1; i < 0x8000; i++) {
  250. classid = TC_H_MAKE(sch->handle,0x8000 | i);
  251. if (!(cl = atm_tc_get(sch,classid))) break;
  252. atm_tc_put(sch,cl);
  253. }
  254. }
  255. DPRINTK("atm_tc_change: new id %xn",classid);
  256. flow = kmalloc(sizeof(struct atm_flow_data)+hdr_len,GFP_KERNEL);
  257. DPRINTK("atm_tc_change: flow %pn",flow);
  258. if (!flow) {
  259. error = -ENOBUFS;
  260. goto err_out;
  261. }
  262. memset(flow,0,sizeof(*flow));
  263. flow->filter_list = NULL;
  264. if (!(flow->q = qdisc_create_dflt(sch->dev,&pfifo_qdisc_ops)))
  265. flow->q = &noop_qdisc;
  266. DPRINTK("atm_tc_change: qdisc %pn",flow->q);
  267. flow->sock = sock;
  268.         flow->vcc = ATM_SD(sock); /* speedup */
  269. flow->vcc->user_back = flow;
  270.         DPRINTK("atm_tc_change: vcc %pn",flow->vcc);
  271. flow->old_pop = flow->vcc->pop;
  272. flow->parent = p;
  273. flow->vcc->pop = sch_atm_pop;
  274. flow->classid = classid;
  275. flow->ref = 1;
  276. flow->excess = excess;
  277. flow->next = p->link.next;
  278. p->link.next = flow;
  279. flow->hdr_len = hdr_len;
  280. if (hdr) memcpy(flow->hdr,hdr,hdr_len);
  281. else {
  282. memcpy(flow->hdr,llc_oui,sizeof(llc_oui));
  283. ((u16 *) flow->hdr)[3] = htons(ETH_P_IP);
  284. }
  285. *arg = (unsigned long) flow;
  286. return 0;
  287. err_out:
  288. if (excess) atm_tc_put(sch,(unsigned long) excess);
  289. sockfd_put(sock);
  290. return error;
  291. }
  292. static int atm_tc_delete(struct Qdisc *sch,unsigned long arg)
  293. {
  294. struct atm_qdisc_data *p = PRIV(sch);
  295. struct atm_flow_data *flow = (struct atm_flow_data *) arg;
  296. DPRINTK("atm_tc_delete(sch %p,[qdisc %p],flow %p)n",sch,p,flow);
  297. if (!find_flow(PRIV(sch),flow)) return -EINVAL;
  298. if (flow->filter_list || flow == &p->link) return -EBUSY;
  299. /*
  300.  * Reference count must be 2: one for "keepalive" (set at class
  301.  * creation), and one for the reference held when calling delete.
  302.  */
  303. if (flow->ref < 2) {
  304. printk(KERN_ERR "atm_tc_delete: flow->ref == %dn",flow->ref);
  305. return -EINVAL;
  306. }
  307. if (flow->ref > 2) return -EBUSY; /* catch references via excess, etc.*/
  308. atm_tc_put(sch,arg);
  309. return 0;
  310. }
  311. static void atm_tc_walk(struct Qdisc *sch,struct qdisc_walker *walker)
  312. {
  313. struct atm_qdisc_data *p = PRIV(sch);
  314. struct atm_flow_data *flow;
  315. DPRINTK("atm_tc_walk(sch %p,[qdisc %p],walker %p)n",sch,p,walker);
  316. if (walker->stop) return;
  317. for (flow = p->flows; flow; flow = flow->next) {
  318. if (walker->count >= walker->skip)
  319. if (walker->fn(sch,(unsigned long) flow,walker) < 0) {
  320. walker->stop = 1;
  321. break;
  322. }
  323. walker->count++;
  324. }
  325. }
  326. static struct tcf_proto **atm_tc_find_tcf(struct Qdisc *sch,unsigned long cl)
  327. {
  328. struct atm_qdisc_data *p = PRIV(sch);
  329. struct atm_flow_data *flow = (struct atm_flow_data *) cl;
  330. DPRINTK("atm_tc_find_tcf(sch %p,[qdisc %p],flow %p)n",sch,p,flow);
  331.         return flow ? &flow->filter_list : &p->link.filter_list;
  332. }
  333. /* --------------------------- Qdisc operations ---------------------------- */
  334. static int atm_tc_enqueue(struct sk_buff *skb,struct Qdisc *sch)
  335. {
  336. struct atm_qdisc_data *p = PRIV(sch);
  337. struct atm_flow_data *flow = NULL ; /* @@@ */
  338. struct tcf_result res;
  339. int result;
  340. int ret = NET_XMIT_POLICED;
  341. D2PRINTK("atm_tc_enqueue(skb %p,sch %p,[qdisc %p])n",skb,sch,p);
  342. result = TC_POLICE_OK; /* be nice to gcc */
  343. if (TC_H_MAJ(skb->priority) != sch->handle ||
  344.     !(flow = (struct atm_flow_data *) atm_tc_get(sch,skb->priority)))
  345. for (flow = p->flows; flow; flow = flow->next)
  346. if (flow->filter_list) {
  347. result = tc_classify(skb,flow->filter_list,
  348.     &res);
  349. if (result < 0) continue;
  350. flow = (struct atm_flow_data *) res.class;
  351. if (!flow) flow = lookup_flow(sch,res.classid);
  352. break;
  353. }
  354. if (!flow) flow = &p->link;
  355. else {
  356. if (flow->vcc)
  357. ATM_SKB(skb)->atm_options = flow->vcc->atm_options;
  358. /*@@@ looks good ... but it's not supposed to work :-)*/
  359. #ifdef CONFIG_NET_CLS_POLICE
  360. switch (result) {
  361. case TC_POLICE_SHOT:
  362. kfree_skb(skb);
  363. break;
  364. case TC_POLICE_RECLASSIFY:
  365. if (flow->excess) flow = flow->excess;
  366. else {
  367. ATM_SKB(skb)->atm_options |=
  368.     ATM_ATMOPT_CLP;
  369. break;
  370. }
  371. /* fall through */
  372. case TC_POLICE_OK:
  373. /* fall through */
  374. default:
  375. break;
  376. }
  377. #endif
  378. }
  379. if (
  380. #ifdef CONFIG_NET_CLS_POLICE
  381.     result == TC_POLICE_SHOT ||
  382. #endif
  383.     (ret = flow->q->enqueue(skb,flow->q)) != 0) {
  384. sch->stats.drops++;
  385. if (flow) flow->stats.drops++;
  386. return ret;
  387. }
  388. sch->stats.bytes += skb->len;
  389. sch->stats.packets++;
  390. flow->stats.bytes += skb->len;
  391. flow->stats.packets++;
  392. /*
  393.  * Okay, this may seem weird. We pretend we've dropped the packet if
  394.  * it goes via ATM. The reason for this is that the outer qdisc
  395.  * expects to be able to q->dequeue the packet later on if we return
  396.  * success at this place. Also, sch->q.qdisc needs to reflect whether
  397.  * there is a packet egligible for dequeuing or not. Note that the
  398.  * statistics of the outer qdisc are necessarily wrong because of all
  399.  * this. There's currently no correct solution for this.
  400.  */
  401. if (flow == &p->link) {
  402. sch->q.qlen++;
  403. return 0;
  404. }
  405. tasklet_schedule(&p->task);
  406. return NET_XMIT_BYPASS;
  407. }
  408. /*
  409.  * Dequeue packets and send them over ATM. Note that we quite deliberately
  410.  * avoid checking net_device's flow control here, simply because sch_atm
  411.  * uses its own channels, which have nothing to do with any CLIP/LANE/or
  412.  * non-ATM interfaces.
  413.  */
  414. static void sch_atm_dequeue(unsigned long data)
  415. {
  416. struct Qdisc *sch = (struct Qdisc *) data;
  417. struct atm_qdisc_data *p = PRIV(sch);
  418. struct atm_flow_data *flow;
  419. struct sk_buff *skb;
  420. D2PRINTK("sch_atm_dequeue(sch %p,[qdisc %p])n",sch,p);
  421. for (flow = p->link.next; flow; flow = flow->next)
  422. /*
  423.  * If traffic is properly shaped, this won't generate nasty
  424.  * little bursts. Otherwise, it may ... (but that's okay)
  425.  */
  426. while ((skb = flow->q->dequeue(flow->q))) {
  427. if (!atm_may_send(flow->vcc,skb->truesize)) {
  428. (void) flow->q->ops->requeue(skb,flow->q);
  429. break;
  430. }
  431. D2PRINTK("atm_tc_deqeueue: sending on class %pn",flow);
  432. /* remove any LL header somebody else has attached */
  433. skb_pull(skb,(char *) skb->nh.iph-(char *) skb->data);
  434. if (skb_headroom(skb) < flow->hdr_len) {
  435. struct sk_buff *new;
  436. new = skb_realloc_headroom(skb,flow->hdr_len);
  437. dev_kfree_skb(skb);
  438. if (!new) continue;
  439. skb = new;
  440. }
  441. D2PRINTK("sch_atm_dequeue: ip %p, data %pn",
  442.     skb->nh.iph,skb->data);
  443. ATM_SKB(skb)->vcc = flow->vcc;
  444. memcpy(skb_push(skb,flow->hdr_len),flow->hdr,
  445.     flow->hdr_len);
  446. atomic_add(skb->truesize,&flow->vcc->tx_inuse);
  447. ATM_SKB(skb)->iovcnt = 0;
  448. /* atm.atm_options are already set by atm_tc_enqueue */
  449. (void) flow->vcc->send(flow->vcc,skb);
  450. }
  451. }
  452. static struct sk_buff *atm_tc_dequeue(struct Qdisc *sch)
  453. {
  454. struct atm_qdisc_data *p = PRIV(sch);
  455. struct sk_buff *skb;
  456. D2PRINTK("atm_tc_dequeue(sch %p,[qdisc %p])n",sch,p);
  457. tasklet_schedule(&p->task);
  458. skb = p->link.q->dequeue(p->link.q);
  459. if (skb) sch->q.qlen--;
  460. return skb;
  461. }
  462. static int atm_tc_requeue(struct sk_buff *skb,struct Qdisc *sch)
  463. {
  464. struct atm_qdisc_data *p = PRIV(sch);
  465. int ret;
  466. D2PRINTK("atm_tc_requeue(skb %p,sch %p,[qdisc %p])n",skb,sch,p);
  467. ret = p->link.q->ops->requeue(skb,p->link.q);
  468. if (!ret) sch->q.qlen++;
  469. else {
  470. sch->stats.drops++;
  471. p->link.stats.drops++;
  472. }
  473. return ret;
  474. }
  475. static int atm_tc_drop(struct Qdisc *sch)
  476. {
  477. struct atm_qdisc_data *p = PRIV(sch);
  478. struct atm_flow_data *flow;
  479. DPRINTK("atm_tc_drop(sch %p,[qdisc %p])n",sch,p);
  480. for (flow = p->flows; flow; flow = flow->next)
  481. if (flow->q->ops->drop && flow->q->ops->drop(flow->q))
  482. return 1;
  483. return 0;
  484. }
  485. static int atm_tc_init(struct Qdisc *sch,struct rtattr *opt)
  486. {
  487. struct atm_qdisc_data *p = PRIV(sch);
  488. DPRINTK("atm_tc_init(sch %p,[qdisc %p],opt %p)n",sch,p,opt);
  489. memset(p,0,sizeof(*p));
  490. p->flows = &p->link;
  491. if(!(p->link.q = qdisc_create_dflt(sch->dev,&pfifo_qdisc_ops)))
  492. p->link.q = &noop_qdisc;
  493. DPRINTK("atm_tc_init: link (%p) qdisc %pn",&p->link,p->link.q);
  494. p->link.filter_list = NULL;
  495. p->link.vcc = NULL;
  496. p->link.sock = NULL;
  497. p->link.classid = sch->handle;
  498. p->link.ref = 1;
  499. p->link.next = NULL;
  500. tasklet_init(&p->task,sch_atm_dequeue,(unsigned long) sch);
  501. MOD_INC_USE_COUNT;
  502. return 0;
  503. }
  504. static void atm_tc_reset(struct Qdisc *sch)
  505. {
  506. struct atm_qdisc_data *p = PRIV(sch);
  507. struct atm_flow_data *flow;
  508. DPRINTK("atm_tc_reset(sch %p,[qdisc %p])n",sch,p);
  509. for (flow = p->flows; flow; flow = flow->next) qdisc_reset(flow->q);
  510. sch->q.qlen = 0;
  511. }
  512. static void atm_tc_destroy(struct Qdisc *sch)
  513. {
  514. struct atm_qdisc_data *p = PRIV(sch);
  515. struct atm_flow_data *flow;
  516. DPRINTK("atm_tc_destroy(sch %p,[qdisc %p])n",sch,p);
  517. /* races ? */
  518. while ((flow = p->flows)) {
  519. destroy_filters(flow);
  520. if (flow->ref > 1)
  521. printk(KERN_ERR "atm_destroy: %p->ref = %dn",flow,
  522.     flow->ref);
  523. atm_tc_put(sch,(unsigned long) flow);
  524. if (p->flows == flow) {
  525. printk(KERN_ERR "atm_destroy: putting flow %p didn't "
  526.     "kill itn",flow);
  527. p->flows = flow->next; /* brute force */
  528. break;
  529. }
  530. }
  531. tasklet_kill(&p->task);
  532. MOD_DEC_USE_COUNT;
  533. }
  534. static int atm_tc_dump_class(struct Qdisc *sch, unsigned long cl,
  535.     struct sk_buff *skb, struct tcmsg *tcm)
  536. {
  537. struct atm_qdisc_data *p = PRIV(sch);
  538. struct atm_flow_data *flow = (struct atm_flow_data *) cl;
  539. unsigned char *b = skb->tail;
  540. struct rtattr *rta;
  541. DPRINTK("atm_tc_dump_class(sch %p,[qdisc %p],flow %p,skb %p,tcm %p)n",
  542.     sch,p,flow,skb,tcm);
  543. if (!find_flow(p,flow)) return -EINVAL;
  544. tcm->tcm_handle = flow->classid;
  545. rta = (struct rtattr *) b;
  546. RTA_PUT(skb,TCA_OPTIONS,0,NULL);
  547. RTA_PUT(skb,TCA_ATM_HDR,flow->hdr_len,flow->hdr);
  548. if (flow->vcc) {
  549. struct sockaddr_atmpvc pvc;
  550. int state;
  551. pvc.sap_family = AF_ATMPVC;
  552. pvc.sap_addr.itf = flow->vcc->dev ? flow->vcc->dev->number : -1;
  553. pvc.sap_addr.vpi = flow->vcc->vpi;
  554. pvc.sap_addr.vci = flow->vcc->vci;
  555. RTA_PUT(skb,TCA_ATM_ADDR,sizeof(pvc),&pvc);
  556. state = ATM_VF2VS(flow->vcc->flags);
  557. RTA_PUT(skb,TCA_ATM_STATE,sizeof(state),&state);
  558. }
  559. if (flow->excess)
  560. RTA_PUT(skb,TCA_ATM_EXCESS,sizeof(u32),&flow->classid);
  561. else {
  562. static u32 zero = 0;
  563. RTA_PUT(skb,TCA_ATM_EXCESS,sizeof(zero),&zero);
  564. }
  565. rta->rta_len = skb->tail-b;
  566. return skb->len;
  567. rtattr_failure:
  568. skb_trim(skb,b-skb->data);
  569. return -1;
  570. }
  571. static int atm_tc_dump(struct Qdisc *sch, struct sk_buff *skb)
  572. {
  573. return 0;
  574. }
  575. static struct Qdisc_class_ops atm_class_ops =
  576. {
  577. atm_tc_graft, /* graft */
  578. atm_tc_leaf, /* leaf */
  579. atm_tc_get, /* get */
  580. atm_tc_put, /* put */
  581. atm_tc_change, /* change */
  582. atm_tc_delete, /* delete */
  583. atm_tc_walk, /* walk */
  584. atm_tc_find_tcf, /* tcf_chain */
  585. atm_tc_bind_filter, /* bind_tcf */
  586. atm_tc_put, /* unbind_tcf */
  587. atm_tc_dump_class, /* dump */
  588. };
  589. struct Qdisc_ops atm_qdisc_ops =
  590. {
  591. NULL, /* next */
  592. &atm_class_ops, /* cl_ops */
  593. "atm",
  594. sizeof(struct atm_qdisc_data),
  595. atm_tc_enqueue, /* enqueue */
  596. atm_tc_dequeue, /* dequeue */
  597. atm_tc_requeue, /* requeue */
  598. atm_tc_drop, /* drop */
  599. atm_tc_init, /* init */
  600. atm_tc_reset, /* reset */
  601. atm_tc_destroy, /* destroy */
  602. NULL, /* change */
  603. atm_tc_dump /* dump */
  604. };
  605. #ifdef MODULE
  606. int init_module(void)
  607. {
  608. return register_qdisc(&atm_qdisc_ops);
  609. }
  610. void cleanup_module(void) 
  611. {
  612. unregister_qdisc(&atm_qdisc_ops);
  613. }
  614. #endif