2 * Copyright (c) 2014 Jiri Pirko <jiri@resnulli.us>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/kernel.h>
13 #include <linux/skbuff.h>
14 #include <linux/rtnetlink.h>
15 #include <linux/if_vlan.h>
16 #include <net/netlink.h>
17 #include <net/pkt_sched.h>
19 #include <linux/tc_act/tc_vlan.h>
20 #include <net/tc_act/tc_vlan.h>
22 #define VLAN_TAB_MASK 15
24 static int vlan_net_id
;
26 static int tcf_vlan(struct sk_buff
*skb
, const struct tc_action
*a
,
27 struct tcf_result
*res
)
29 struct tcf_vlan
*v
= a
->priv
;
33 spin_lock(&v
->tcf_lock
);
34 v
->tcf_tm
.lastuse
= jiffies
;
35 bstats_update(&v
->tcf_bstats
, skb
);
36 action
= v
->tcf_action
;
38 switch (v
->tcfv_action
) {
39 case TCA_VLAN_ACT_POP
:
40 err
= skb_vlan_pop(skb
);
44 case TCA_VLAN_ACT_PUSH
:
45 err
= skb_vlan_push(skb
, v
->tcfv_push_proto
, v
->tcfv_push_vid
);
57 v
->tcf_qstats
.drops
++;
59 spin_unlock(&v
->tcf_lock
);
63 static const struct nla_policy vlan_policy
[TCA_VLAN_MAX
+ 1] = {
64 [TCA_VLAN_PARMS
] = { .len
= sizeof(struct tc_vlan
) },
65 [TCA_VLAN_PUSH_VLAN_ID
] = { .type
= NLA_U16
},
66 [TCA_VLAN_PUSH_VLAN_PROTOCOL
] = { .type
= NLA_U16
},
69 static int tcf_vlan_init(struct net
*net
, struct nlattr
*nla
,
70 struct nlattr
*est
, struct tc_action
*a
,
73 struct tc_action_net
*tn
= net_generic(net
, vlan_net_id
);
74 struct nlattr
*tb
[TCA_VLAN_MAX
+ 1];
79 __be16 push_proto
= 0;
80 int ret
= 0, exists
= 0;
86 err
= nla_parse_nested(tb
, TCA_VLAN_MAX
, nla
, vlan_policy
);
90 if (!tb
[TCA_VLAN_PARMS
])
92 parm
= nla_data(tb
[TCA_VLAN_PARMS
]);
93 exists
= tcf_hash_check(tn
, parm
->index
, a
, bind
);
97 switch (parm
->v_action
) {
98 case TCA_VLAN_ACT_POP
:
100 case TCA_VLAN_ACT_PUSH
:
101 if (!tb
[TCA_VLAN_PUSH_VLAN_ID
]) {
103 tcf_hash_release(a
, bind
);
106 push_vid
= nla_get_u16(tb
[TCA_VLAN_PUSH_VLAN_ID
]);
107 if (push_vid
>= VLAN_VID_MASK
) {
109 tcf_hash_release(a
, bind
);
113 if (tb
[TCA_VLAN_PUSH_VLAN_PROTOCOL
]) {
114 push_proto
= nla_get_be16(tb
[TCA_VLAN_PUSH_VLAN_PROTOCOL
]);
115 switch (push_proto
) {
116 case htons(ETH_P_8021Q
):
117 case htons(ETH_P_8021AD
):
120 return -EPROTONOSUPPORT
;
123 push_proto
= htons(ETH_P_8021Q
);
128 tcf_hash_release(a
, bind
);
131 action
= parm
->v_action
;
134 ret
= tcf_hash_create(tn
, parm
->index
, est
, a
,
135 sizeof(*v
), bind
, false);
141 tcf_hash_release(a
, bind
);
148 spin_lock_bh(&v
->tcf_lock
);
150 v
->tcfv_action
= action
;
151 v
->tcfv_push_vid
= push_vid
;
152 v
->tcfv_push_proto
= push_proto
;
154 v
->tcf_action
= parm
->action
;
156 spin_unlock_bh(&v
->tcf_lock
);
158 if (ret
== ACT_P_CREATED
)
159 tcf_hash_insert(tn
, a
);
163 static int tcf_vlan_dump(struct sk_buff
*skb
, struct tc_action
*a
,
166 unsigned char *b
= skb_tail_pointer(skb
);
167 struct tcf_vlan
*v
= a
->priv
;
168 struct tc_vlan opt
= {
169 .index
= v
->tcf_index
,
170 .refcnt
= v
->tcf_refcnt
- ref
,
171 .bindcnt
= v
->tcf_bindcnt
- bind
,
172 .action
= v
->tcf_action
,
173 .v_action
= v
->tcfv_action
,
177 if (nla_put(skb
, TCA_VLAN_PARMS
, sizeof(opt
), &opt
))
178 goto nla_put_failure
;
180 if (v
->tcfv_action
== TCA_VLAN_ACT_PUSH
&&
181 (nla_put_u16(skb
, TCA_VLAN_PUSH_VLAN_ID
, v
->tcfv_push_vid
) ||
182 nla_put_be16(skb
, TCA_VLAN_PUSH_VLAN_PROTOCOL
, v
->tcfv_push_proto
)))
183 goto nla_put_failure
;
185 t
.install
= jiffies_to_clock_t(jiffies
- v
->tcf_tm
.install
);
186 t
.lastuse
= jiffies_to_clock_t(jiffies
- v
->tcf_tm
.lastuse
);
187 t
.expires
= jiffies_to_clock_t(v
->tcf_tm
.expires
);
188 if (nla_put_64bit(skb
, TCA_VLAN_TM
, sizeof(t
), &t
, TCA_VLAN_PAD
))
189 goto nla_put_failure
;
197 static int tcf_vlan_walker(struct net
*net
, struct sk_buff
*skb
,
198 struct netlink_callback
*cb
, int type
,
201 struct tc_action_net
*tn
= net_generic(net
, vlan_net_id
);
203 return tcf_generic_walker(tn
, skb
, cb
, type
, a
);
206 static int tcf_vlan_search(struct net
*net
, struct tc_action
*a
, u32 index
)
208 struct tc_action_net
*tn
= net_generic(net
, vlan_net_id
);
210 return tcf_hash_search(tn
, a
, index
);
213 static struct tc_action_ops act_vlan_ops
= {
215 .type
= TCA_ACT_VLAN
,
216 .owner
= THIS_MODULE
,
218 .dump
= tcf_vlan_dump
,
219 .init
= tcf_vlan_init
,
220 .walk
= tcf_vlan_walker
,
221 .lookup
= tcf_vlan_search
,
224 static __net_init
int vlan_init_net(struct net
*net
)
226 struct tc_action_net
*tn
= net_generic(net
, vlan_net_id
);
228 return tc_action_net_init(tn
, &act_vlan_ops
, VLAN_TAB_MASK
);
231 static void __net_exit
vlan_exit_net(struct net
*net
)
233 struct tc_action_net
*tn
= net_generic(net
, vlan_net_id
);
235 tc_action_net_exit(tn
);
238 static struct pernet_operations vlan_net_ops
= {
239 .init
= vlan_init_net
,
240 .exit
= vlan_exit_net
,
242 .size
= sizeof(struct tc_action_net
),
245 static int __init
vlan_init_module(void)
247 return tcf_register_action(&act_vlan_ops
, &vlan_net_ops
);
250 static void __exit
vlan_cleanup_module(void)
252 tcf_unregister_action(&act_vlan_ops
, &vlan_net_ops
);
255 module_init(vlan_init_module
);
256 module_exit(vlan_cleanup_module
);
258 MODULE_AUTHOR("Jiri Pirko <jiri@resnulli.us>");
259 MODULE_DESCRIPTION("vlan manipulation actions");
260 MODULE_LICENSE("GPL v2");