cregit-Linux how code gets into the kernel

Release 4.14 net/sched/sch_dsmark.c

Directory: net/sched
/* net/sched/sch_dsmark.c - Differentiated Services field marker */

/* Written 1998-2000 by Werner Almesberger, EPFL ICA */


#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/skbuff.h>
#include <linux/rtnetlink.h>
#include <linux/bitops.h>
#include <net/pkt_sched.h>
#include <net/pkt_cls.h>
#include <net/dsfield.h>
#include <net/inet_ecn.h>
#include <asm/byteorder.h>

/*
 * classid      class           marking
 * -------      -----           -------
 *   n/a          0             n/a
 *   x:0          1             use entry [0]
 *   ...         ...            ...
 *   x:y y>0     y+1            use entry [y]
 *   ...         ...            ...
 * x:indices-1  indices         use entry [indices-1]
 *   ...         ...            ...
 *   x:y         y+1            use entry [y & (indices-1)]
 *   ...         ...            ...
 * 0xffff       0x10000         use entry [indices-1]
 */



#define NO_DEFAULT_INDEX	(1 << 16)


struct mask_value {
	
u8			mask;
	
u8			value;
};


struct dsmark_qdisc_data {
	
struct Qdisc		*q;
	
struct tcf_proto __rcu	*filter_list;
	
struct tcf_block	*block;
	
struct mask_value	*mv;
	
u16			indices;
	
u8			set_tc_index;
	
u32			default_index;	/* index range is 0...0xffff */

#define DSMARK_EMBEDDED_SZ	16
	
struct mask_value	embedded[DSMARK_EMBEDDED_SZ];
};


static inline int dsmark_valid_index(struct dsmark_qdisc_data *p, u16 index) { return index <= p->indices && index > 0; }

Contributors

PersonTokensPropCommitsCommitProp
Thomas Graf26100.00%1100.00%
Total26100.00%1100.00%

/* ------------------------- Class/flow operations ------------------------- */
static int dsmark_graft(struct Qdisc *sch, unsigned long arg, struct Qdisc *new, struct Qdisc **old) { struct dsmark_qdisc_data *p = qdisc_priv(sch); pr_debug("%s(sch %p,[qdisc %p],new %p,old %p)\n", __func__, sch, p, new, old); if (new == NULL) { new = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops, sch->handle); if (new == NULL) new = &noop_qdisc; } *old = qdisc_replace(sch, new, &p->q); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)6461.54%111.11%
Thomas Graf1817.31%111.11%
Patrick McHardy76.73%333.33%
Américo Wang65.77%111.11%
David S. Miller43.85%111.11%
Yang Yingliang32.88%111.11%
Stephen Hemminger21.92%111.11%
Total104100.00%9100.00%


static struct Qdisc *dsmark_leaf(struct Qdisc *sch, unsigned long arg) { struct dsmark_qdisc_data *p = qdisc_priv(sch); return p->q; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1856.25%133.33%
Stephen Hemminger928.12%133.33%
Linus Torvalds515.62%133.33%
Total32100.00%3100.00%


static unsigned long dsmark_find(struct Qdisc *sch, u32 classid) { return TC_H_MIN(classid) + 1; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)2295.65%150.00%
Américo Wang14.35%150.00%
Total23100.00%2100.00%


static unsigned long dsmark_bind_filter(struct Qdisc *sch, unsigned long parent, u32 classid) { pr_debug("%s(sch %p,[qdisc %p],classid %x)\n", __func__, sch, qdisc_priv(sch), classid); return dsmark_find(sch, classid); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)2660.47%150.00%
Américo Wang1739.53%150.00%
Total43100.00%2100.00%


static void dsmark_unbind_filter(struct Qdisc *sch, unsigned long cl) { }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1392.86%150.00%
Américo Wang17.14%150.00%
Total14100.00%2100.00%

static const struct nla_policy dsmark_policy[TCA_DSMARK_MAX + 1] = { [TCA_DSMARK_INDICES] = { .type = NLA_U16 }, [TCA_DSMARK_DEFAULT_INDEX] = { .type = NLA_U16 }, [TCA_DSMARK_SET_TC_INDEX] = { .type = NLA_FLAG }, [TCA_DSMARK_MASK] = { .type = NLA_U8 }, [TCA_DSMARK_VALUE] = { .type = NLA_U8 }, };
static int dsmark_change(struct Qdisc *sch, u32 classid, u32 parent, struct nlattr **tca, unsigned long *arg) { struct dsmark_qdisc_data *p = qdisc_priv(sch); struct nlattr *opt = tca[TCA_OPTIONS]; struct nlattr *tb[TCA_DSMARK_MAX + 1]; int err = -EINVAL; pr_debug("%s(sch %p,[qdisc %p],classid %x,parent %x), arg 0x%lx\n", __func__, sch, p, classid, parent, *arg); if (!dsmark_valid_index(p, *arg)) { err = -ENOENT; goto errout; } if (!opt) goto errout; err = nla_parse_nested(tb, TCA_DSMARK_MAX, opt, dsmark_policy, NULL); if (err < 0) goto errout; if (tb[TCA_DSMARK_VALUE]) p->mv[*arg - 1].value = nla_get_u8(tb[TCA_DSMARK_VALUE]); if (tb[TCA_DSMARK_MASK]) p->mv[*arg - 1].mask = nla_get_u8(tb[TCA_DSMARK_MASK]); err = 0; errout: return err; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)11759.09%111.11%
Patrick McHardy3316.67%333.33%
Thomas Graf2814.14%111.11%
Eric Dumazet136.57%111.11%
Yang Yingliang31.52%111.11%
Johannes Berg21.01%111.11%
Stephen Hemminger21.01%111.11%
Total198100.00%9100.00%


static int dsmark_delete(struct Qdisc *sch, unsigned long arg) { struct dsmark_qdisc_data *p = qdisc_priv(sch); if (!dsmark_valid_index(p, arg)) return -EINVAL; p->mv[arg - 1].mask = 0xff; p->mv[arg - 1].value = 0; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)5682.35%125.00%
Eric Dumazet68.82%125.00%
Thomas Graf57.35%125.00%
Stephen Hemminger11.47%125.00%
Total68100.00%4100.00%


static void dsmark_walk(struct Qdisc *sch, struct qdisc_walker *walker) { struct dsmark_qdisc_data *p = qdisc_priv(sch); int i; pr_debug("%s(sch %p,[qdisc %p],walker %p)\n", __func__, sch, p, walker); if (walker->stop) return; for (i = 0; i < p->indices; i++) { if (p->mv[i].mask == 0xff && !p->mv[i].value) goto ignore; if (walker->count >= walker->skip) { if (walker->fn(sch, i + 1, walker) < 0) { walker->stop = 1; break; } } ignore: walker->count++; } }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)12188.32%120.00%
Eric Dumazet64.38%120.00%
Thomas Graf53.65%120.00%
Yang Yingliang32.19%120.00%
Stephen Hemminger21.46%120.00%
Total137100.00%5100.00%


static struct tcf_block *dsmark_tcf_block(struct Qdisc *sch, unsigned long cl) { struct dsmark_qdisc_data *p = qdisc_priv(sch); return p->block; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)2062.50%133.33%
Stephen Hemminger928.12%133.33%
Jiri Pirko39.38%133.33%
Total32100.00%3100.00%

/* --------------------------- Qdisc operations ---------------------------- */
static int dsmark_enqueue(struct sk_buff *skb, struct Qdisc *sch, struct sk_buff **to_free) { struct dsmark_qdisc_data *p = qdisc_priv(sch); int err; pr_debug("%s(skb %p,sch %p,[qdisc %p])\n", __func__, skb, sch, p); if (p->set_tc_index) { int wlen = skb_network_offset(skb); switch (tc_skb_protocol(skb)) { case htons(ETH_P_IP): wlen += sizeof(struct iphdr); if (!pskb_may_pull(skb, wlen) || skb_try_make_writable(skb, wlen)) goto drop; skb->tc_index = ipv4_get_dsfield(ip_hdr(skb)) & ~INET_ECN_MASK; break; case htons(ETH_P_IPV6): wlen += sizeof(struct ipv6hdr); if (!pskb_may_pull(skb, wlen) || skb_try_make_writable(skb, wlen)) goto drop; skb->tc_index = ipv6_get_dsfield(ipv6_hdr(skb)) & ~INET_ECN_MASK; break; default: skb->tc_index = 0; break; } } if (TC_H_MAJ(skb->priority) == sch->handle) skb->tc_index = TC_H_MIN(skb->priority); else { struct tcf_result res; struct tcf_proto *fl = rcu_dereference_bh(p->filter_list); int result = tcf_classify(skb, fl, &res, false); pr_debug("result %d class 0x%04x\n", result, res.classid); switch (result) { #ifdef CONFIG_NET_CLS_ACT case TC_ACT_QUEUED: case TC_ACT_STOLEN: case TC_ACT_TRAP: __qdisc_drop(skb, to_free); return NET_XMIT_SUCCESS | __NET_XMIT_STOLEN; case TC_ACT_SHOT: goto drop; #endif case TC_ACT_OK: skb->tc_index = TC_H_MIN(res.classid); break; default: if (p->default_index != NO_DEFAULT_INDEX) skb->tc_index = p->default_index; break; } } err = qdisc_enqueue(skb, p->q, to_free); if (err != NET_XMIT_SUCCESS) { if (net_xmit_drop_count(err)) qdisc_qstats_drop(sch); return err; } qdisc_qstats_backlog_inc(sch, skb); sch->q.qlen++; return NET_XMIT_SUCCESS; drop: qdisc_drop(skb, sch, to_free); return NET_XMIT_SUCCESS | __NET_XMIT_BYPASS; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)19850.77%14.00%
Eric Dumazet5814.87%312.00%
Stephen Hemminger369.23%28.00%
Thomas Graf225.64%28.00%
Patrick McHardy184.62%28.00%
John Fastabend164.10%28.00%
Jarek Poplawski123.08%28.00%
Arnaldo Carvalho de Melo82.05%312.00%
Jiri Pirko71.79%312.00%
Américo Wang71.79%14.00%
Yang Yingliang30.77%14.00%
Linus Torvalds20.51%14.00%
Daniel Borkmann20.51%14.00%
Jussi Kivilinna10.26%14.00%
Total390100.00%25100.00%


static struct sk_buff *dsmark_dequeue(struct Qdisc *sch) { struct dsmark_qdisc_data *p = qdisc_priv(sch); struct sk_buff *skb; u32 index; pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p); skb = qdisc_dequeue_peeked(p->q); if (skb == NULL) return NULL; qdisc_bstats_update(sch, skb); qdisc_qstats_backlog_dec(sch, skb); sch->q.qlen--; index = skb->tc_index & (p->indices - 1); pr_debug("index %d->%d\n", skb->tc_index, index); switch (tc_skb_protocol(skb)) { case htons(ETH_P_IP): ipv4_change_dsfield(ip_hdr(skb), p->mv[index].mask, p->mv[index].value); break; case htons(ETH_P_IPV6): ipv6_change_dsfield(ipv6_hdr(skb), p->mv[index].mask, p->mv[index].value); break; default: /* * Only complain if a change was actually attempted. * This way, we can send non-IP traffic through dsmark * and don't need yet another qdisc as a bypass. */ if (p->mv[index].mask != 0xff || p->mv[index].value) pr_warn("%s: unsupported protocol %d\n", __func__, ntohs(tc_skb_protocol(skb))); break; } return skb; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)16272.32%16.67%
Eric Dumazet2511.16%213.33%
Arnaldo Carvalho de Melo83.57%320.00%
Yang Yingliang73.12%213.33%
Américo Wang73.12%16.67%
Jiri Pirko62.68%16.67%
Stephen Hemminger41.79%213.33%
Thomas Graf31.34%16.67%
Al Viro10.45%16.67%
Kyeong Yoo10.45%16.67%
Total224100.00%15100.00%


static struct sk_buff *dsmark_peek(struct Qdisc *sch) { struct dsmark_qdisc_data *p = qdisc_priv(sch); pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p); return p->q->ops->peek(p->q); }

Contributors

PersonTokensPropCommitsCommitProp
Jarek Poplawski4593.75%150.00%
Yang Yingliang36.25%150.00%
Total48100.00%2100.00%


static int dsmark_init(struct Qdisc *sch, struct nlattr *opt) { struct dsmark_qdisc_data *p = qdisc_priv(sch); struct nlattr *tb[TCA_DSMARK_MAX + 1]; int err = -EINVAL; u32 default_index = NO_DEFAULT_INDEX; u16 indices; int i; pr_debug("%s(sch %p,[qdisc %p],opt %p)\n", __func__, sch, p, opt); if (!opt) goto errout; err = tcf_block_get(&p->block, &p->filter_list); if (err) return err; err = nla_parse_nested(tb, TCA_DSMARK_MAX, opt, dsmark_policy, NULL); if (err < 0) goto errout; err = -EINVAL; indices = nla_get_u16(tb[TCA_DSMARK_INDICES]); if (hweight32(indices) != 1) goto errout; if (tb[TCA_DSMARK_DEFAULT_INDEX]) default_index = nla_get_u16(tb[TCA_DSMARK_DEFAULT_INDEX]); if (indices <= DSMARK_EMBEDDED_SZ) p->mv = p->embedded; else p->mv = kmalloc_array(indices, sizeof(*p->mv), GFP_KERNEL); if (!p->mv) { err = -ENOMEM; goto errout; } for (i = 0; i < indices; i++) { p->mv[i].mask = 0xff; p->mv[i].value = 0; } p->indices = indices; p->default_index = default_index; p->set_tc_index = nla_get_flag(tb[TCA_DSMARK_SET_TC_INDEX]); p->q = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops, sch->handle); if (p->q == NULL) p->q = &noop_qdisc; else qdisc_hash_add(p->q, true); pr_debug("%s: qdisc %p\n", __func__, p->q); err = 0; errout: return err; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)13138.64%15.88%
Thomas Graf6619.47%15.88%
Eric Dumazet5716.81%15.88%
Patrick McHardy298.55%423.53%
Jiri Pirko226.49%15.88%
Jiri Kosina102.95%15.88%
David S. Miller102.95%317.65%
Yang Yingliang61.77%15.88%
Stephen Hemminger30.88%15.88%
Johannes Berg20.59%15.88%
Jamal Hadi Salim20.59%15.88%
Adrian Bunk10.29%15.88%
Total339100.00%17100.00%


static void dsmark_reset(struct Qdisc *sch) { struct dsmark_qdisc_data *p = qdisc_priv(sch); pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p); qdisc_reset(p->q); sch->qstats.backlog = 0; sch->q.qlen = 0; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)4276.36%125.00%
Américo Wang814.55%125.00%
Yang Yingliang35.45%125.00%
Stephen Hemminger23.64%125.00%
Total55100.00%4100.00%


static void dsmark_destroy(struct Qdisc *sch) { struct dsmark_qdisc_data *p = qdisc_priv(sch); pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p); tcf_block_put(p->block); qdisc_destroy(p->q); if (p->mv != p->embedded) kfree(p->mv); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)4469.84%116.67%
Eric Dumazet1117.46%116.67%
Yang Yingliang34.76%116.67%
Stephen Hemminger23.17%116.67%
Jiri Pirko23.17%116.67%
Patrick McHardy11.59%116.67%
Total63100.00%6100.00%


static int dsmark_dump_class(struct Qdisc *sch, unsigned long cl, struct sk_buff *skb, struct tcmsg *tcm) { struct dsmark_qdisc_data *p = qdisc_priv(sch); struct nlattr *opts = NULL; pr_debug("%s(sch %p,[qdisc %p],class %ld\n", __func__, sch, p, cl); if (!dsmark_valid_index(p, cl)) return -EINVAL; tcm->tcm_handle = TC_H_MAKE(TC_H_MAJ(sch->handle), cl - 1); tcm->tcm_info = p->q->handle; opts = nla_nest_start(skb, TCA_OPTIONS); if (opts == NULL) goto nla_put_failure; if (nla_put_u8(skb, TCA_DSMARK_MASK, p->mv[cl - 1].mask) || nla_put_u8(skb, TCA_DSMARK_VALUE, p->mv[cl - 1].value)) goto nla_put_failure; return nla_nest_end(skb, opts); nla_put_failure: nla_nest_cancel(skb, opts); return -EMSGSIZE; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)11564.97%111.11%
Patrick McHardy2413.56%222.22%
Thomas Graf1810.17%222.22%
David S. Miller95.08%111.11%
Eric Dumazet63.39%111.11%
Yang Yingliang31.69%111.11%
Stephen Hemminger21.13%111.11%
Total177100.00%9100.00%


static int dsmark_dump(struct Qdisc *sch, struct sk_buff *skb) { struct dsmark_qdisc_data *p = qdisc_priv(sch); struct nlattr *opts = NULL; opts = nla_nest_start(skb, TCA_OPTIONS); if (opts == NULL) goto nla_put_failure; if (nla_put_u16(skb, TCA_DSMARK_INDICES, p->indices)) goto nla_put_failure; if (p->default_index != NO_DEFAULT_INDEX && nla_put_u16(skb, TCA_DSMARK_DEFAULT_INDEX, p->default_index)) goto nla_put_failure; if (p->set_tc_index && nla_put_flag(skb, TCA_DSMARK_SET_TC_INDEX)) goto nla_put_failure; return nla_nest_end(skb, opts); nla_put_failure: nla_nest_cancel(skb, opts); return -EMSGSIZE; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)7458.73%114.29%
David S. Miller1915.08%114.29%
Thomas Graf1612.70%228.57%
Patrick McHardy1411.11%114.29%
Linus Torvalds21.59%114.29%
Stephen Hemminger10.79%114.29%
Total126100.00%7100.00%

static const struct Qdisc_class_ops dsmark_class_ops = { .graft = dsmark_graft, .leaf = dsmark_leaf, .find = dsmark_find, .change = dsmark_change, .delete = dsmark_delete, .walk = dsmark_walk, .tcf_block = dsmark_tcf_block, .bind_tcf = dsmark_bind_filter, .unbind_tcf = dsmark_unbind_filter, .dump = dsmark_dump_class, }; static struct Qdisc_ops dsmark_qdisc_ops __read_mostly = { .next = NULL, .cl_ops = &dsmark_class_ops, .id = "dsmark", .priv_size = sizeof(struct dsmark_qdisc_data), .enqueue = dsmark_enqueue, .dequeue = dsmark_dequeue, .peek = dsmark_peek, .init = dsmark_init, .reset = dsmark_reset, .destroy = dsmark_destroy, .change = NULL, .dump = dsmark_dump, .owner = THIS_MODULE, };
static int __init dsmark_module_init(void) { return register_qdisc(&dsmark_qdisc_ops); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1381.25%150.00%
Al Viro318.75%150.00%
Total16100.00%2100.00%


static void __exit dsmark_module_exit(void) { unregister_qdisc(&dsmark_qdisc_ops); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1280.00%150.00%
Al Viro320.00%150.00%
Total15100.00%2100.00%

module_init(dsmark_module_init) module_exit(dsmark_module_exit) MODULE_LICENSE("GPL");

Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)135054.97%22.99%
Thomas Graf2128.63%710.45%
Eric Dumazet2118.59%68.96%
Patrick McHardy1947.90%1014.93%
Stephen Hemminger753.05%34.48%
Dave Jones622.52%11.49%
Jarek Poplawski622.52%34.48%
David S. Miller542.20%68.96%
Jiri Pirko502.04%57.46%
Américo Wang502.04%34.48%
Yang Yingliang371.51%22.99%
Linus Torvalds261.06%45.97%
John Fastabend170.69%22.99%
Al Viro160.65%22.99%
Arnaldo Carvalho de Melo160.65%34.48%
Jiri Kosina100.41%11.49%
Johannes Berg40.16%11.49%
Tejun Heo30.12%11.49%
Daniel Borkmann20.08%11.49%
Jamal Hadi Salim20.08%11.49%
Jussi Kivilinna10.04%11.49%
Kyeong Yoo10.04%11.49%
Adrian Bunk10.04%11.49%
Total2456100.00%67100.00%
Directory: net/sched
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.