1ca9b0e27SAlexander Duyck /* 2ca9b0e27SAlexander Duyck * Copyright (c) 2008, Intel Corporation. 3ca9b0e27SAlexander Duyck * 4ca9b0e27SAlexander Duyck * This program is free software; you can redistribute it and/or modify it 5ca9b0e27SAlexander Duyck * under the terms and conditions of the GNU General Public License, 6ca9b0e27SAlexander Duyck * version 2, as published by the Free Software Foundation. 7ca9b0e27SAlexander Duyck * 8ca9b0e27SAlexander Duyck * This program is distributed in the hope it will be useful, but WITHOUT 9ca9b0e27SAlexander Duyck * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 10ca9b0e27SAlexander Duyck * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 11ca9b0e27SAlexander Duyck * more details. 12ca9b0e27SAlexander Duyck * 13ca9b0e27SAlexander Duyck * You should have received a copy of the GNU General Public License along with 14c057b190SJeff Kirsher * this program; if not, see <http://www.gnu.org/licenses/>. 15ca9b0e27SAlexander Duyck * 16ca9b0e27SAlexander Duyck * Author: Alexander Duyck <alexander.h.duyck@intel.com> 17ca9b0e27SAlexander Duyck */ 18ca9b0e27SAlexander Duyck 19ca9b0e27SAlexander Duyck #include <linux/module.h> 20ca9b0e27SAlexander Duyck #include <linux/init.h> 21ca9b0e27SAlexander Duyck #include <linux/kernel.h> 22ca9b0e27SAlexander Duyck #include <linux/skbuff.h> 23ca9b0e27SAlexander Duyck #include <linux/rtnetlink.h> 24ca9b0e27SAlexander Duyck #include <net/netlink.h> 25ca9b0e27SAlexander Duyck #include <net/pkt_sched.h> 26ca9b0e27SAlexander Duyck 27ca9b0e27SAlexander Duyck #include <linux/tc_act/tc_skbedit.h> 28ca9b0e27SAlexander Duyck #include <net/tc_act/tc_skbedit.h> 29ca9b0e27SAlexander Duyck 30c7d03a00SAlexey Dobriyan static unsigned int skbedit_net_id; 31a85a970aSWANG Cong static struct tc_action_ops act_skbedit_ops; 32ddf97ccdSWANG Cong 33dc7f9f6eSEric Dumazet static int tcf_skbedit(struct sk_buff *skb, const struct tc_action *a, 34ca9b0e27SAlexander Duyck struct tcf_result *res) 35ca9b0e27SAlexander Duyck { 36a85a970aSWANG Cong struct tcf_skbedit *d = to_skbedit(a); 37ca9b0e27SAlexander Duyck 38ca9b0e27SAlexander Duyck spin_lock(&d->tcf_lock); 399c4a4e48SJamal Hadi Salim tcf_lastuse_update(&d->tcf_tm); 40bfe0d029SEric Dumazet bstats_update(&d->tcf_bstats, skb); 41ca9b0e27SAlexander Duyck 42ca9b0e27SAlexander Duyck if (d->flags & SKBEDIT_F_PRIORITY) 43ca9b0e27SAlexander Duyck skb->priority = d->priority; 44ca9b0e27SAlexander Duyck if (d->flags & SKBEDIT_F_QUEUE_MAPPING && 45ca9b0e27SAlexander Duyck skb->dev->real_num_tx_queues > d->queue_mapping) 46ca9b0e27SAlexander Duyck skb_set_queue_mapping(skb, d->queue_mapping); 474fe77d82SAntonio Quartulli if (d->flags & SKBEDIT_F_MARK) { 484fe77d82SAntonio Quartulli skb->mark &= ~d->mask; 494fe77d82SAntonio Quartulli skb->mark |= d->mark & d->mask; 504fe77d82SAntonio Quartulli } 51ff202ee1SJamal Hadi Salim if (d->flags & SKBEDIT_F_PTYPE) 52ff202ee1SJamal Hadi Salim skb->pkt_type = d->ptype; 53ca9b0e27SAlexander Duyck 54ca9b0e27SAlexander Duyck spin_unlock(&d->tcf_lock); 55ca9b0e27SAlexander Duyck return d->tcf_action; 56ca9b0e27SAlexander Duyck } 57ca9b0e27SAlexander Duyck 58ca9b0e27SAlexander Duyck static const struct nla_policy skbedit_policy[TCA_SKBEDIT_MAX + 1] = { 59ca9b0e27SAlexander Duyck [TCA_SKBEDIT_PARMS] = { .len = sizeof(struct tc_skbedit) }, 60ca9b0e27SAlexander Duyck [TCA_SKBEDIT_PRIORITY] = { .len = sizeof(u32) }, 61ca9b0e27SAlexander Duyck [TCA_SKBEDIT_QUEUE_MAPPING] = { .len = sizeof(u16) }, 621c55d62eSjamal [TCA_SKBEDIT_MARK] = { .len = sizeof(u32) }, 63ff202ee1SJamal Hadi Salim [TCA_SKBEDIT_PTYPE] = { .len = sizeof(u16) }, 644fe77d82SAntonio Quartulli [TCA_SKBEDIT_MASK] = { .len = sizeof(u32) }, 65ca9b0e27SAlexander Duyck }; 66ca9b0e27SAlexander Duyck 67c1b52739SBenjamin LaHaise static int tcf_skbedit_init(struct net *net, struct nlattr *nla, 68a85a970aSWANG Cong struct nlattr *est, struct tc_action **a, 69589dad6dSAlexander Aring int ovr, int bind, struct netlink_ext_ack *extack) 70ca9b0e27SAlexander Duyck { 71ddf97ccdSWANG Cong struct tc_action_net *tn = net_generic(net, skbedit_net_id); 72ca9b0e27SAlexander Duyck struct nlattr *tb[TCA_SKBEDIT_MAX + 1]; 73ca9b0e27SAlexander Duyck struct tc_skbedit *parm; 74ca9b0e27SAlexander Duyck struct tcf_skbedit *d; 754fe77d82SAntonio Quartulli u32 flags = 0, *priority = NULL, *mark = NULL, *mask = NULL; 76ff202ee1SJamal Hadi Salim u16 *queue_mapping = NULL, *ptype = NULL; 77b2313077SWANG Cong bool exists = false; 78b2313077SWANG Cong int ret = 0, err; 79ca9b0e27SAlexander Duyck 80ca9b0e27SAlexander Duyck if (nla == NULL) 81ca9b0e27SAlexander Duyck return -EINVAL; 82ca9b0e27SAlexander Duyck 83fceb6435SJohannes Berg err = nla_parse_nested(tb, TCA_SKBEDIT_MAX, nla, skbedit_policy, NULL); 84ca9b0e27SAlexander Duyck if (err < 0) 85ca9b0e27SAlexander Duyck return err; 86ca9b0e27SAlexander Duyck 87ca9b0e27SAlexander Duyck if (tb[TCA_SKBEDIT_PARMS] == NULL) 88ca9b0e27SAlexander Duyck return -EINVAL; 89ca9b0e27SAlexander Duyck 90ca9b0e27SAlexander Duyck if (tb[TCA_SKBEDIT_PRIORITY] != NULL) { 91ca9b0e27SAlexander Duyck flags |= SKBEDIT_F_PRIORITY; 92ca9b0e27SAlexander Duyck priority = nla_data(tb[TCA_SKBEDIT_PRIORITY]); 93ca9b0e27SAlexander Duyck } 94ca9b0e27SAlexander Duyck 95ca9b0e27SAlexander Duyck if (tb[TCA_SKBEDIT_QUEUE_MAPPING] != NULL) { 96ca9b0e27SAlexander Duyck flags |= SKBEDIT_F_QUEUE_MAPPING; 97ca9b0e27SAlexander Duyck queue_mapping = nla_data(tb[TCA_SKBEDIT_QUEUE_MAPPING]); 98ca9b0e27SAlexander Duyck } 991c55d62eSjamal 100ff202ee1SJamal Hadi Salim if (tb[TCA_SKBEDIT_PTYPE] != NULL) { 101ff202ee1SJamal Hadi Salim ptype = nla_data(tb[TCA_SKBEDIT_PTYPE]); 102ff202ee1SJamal Hadi Salim if (!skb_pkt_type_ok(*ptype)) 103ff202ee1SJamal Hadi Salim return -EINVAL; 104ff202ee1SJamal Hadi Salim flags |= SKBEDIT_F_PTYPE; 105ff202ee1SJamal Hadi Salim } 106ff202ee1SJamal Hadi Salim 1071c55d62eSjamal if (tb[TCA_SKBEDIT_MARK] != NULL) { 1081c55d62eSjamal flags |= SKBEDIT_F_MARK; 1091c55d62eSjamal mark = nla_data(tb[TCA_SKBEDIT_MARK]); 1101c55d62eSjamal } 1111c55d62eSjamal 1124fe77d82SAntonio Quartulli if (tb[TCA_SKBEDIT_MASK] != NULL) { 1134fe77d82SAntonio Quartulli flags |= SKBEDIT_F_MASK; 1144fe77d82SAntonio Quartulli mask = nla_data(tb[TCA_SKBEDIT_MASK]); 1154fe77d82SAntonio Quartulli } 1164fe77d82SAntonio Quartulli 117ca9b0e27SAlexander Duyck parm = nla_data(tb[TCA_SKBEDIT_PARMS]); 118ca9b0e27SAlexander Duyck 11965a206c0SChris Mi exists = tcf_idr_check(tn, parm->index, a, bind); 1205e1567aeSJamal Hadi Salim if (exists && bind) 1215e1567aeSJamal Hadi Salim return 0; 1225e1567aeSJamal Hadi Salim 1235e1567aeSJamal Hadi Salim if (!flags) { 124*af5d0184SRoman Mashak if (exists) 12565a206c0SChris Mi tcf_idr_release(*a, bind); 1265e1567aeSJamal Hadi Salim return -EINVAL; 1275e1567aeSJamal Hadi Salim } 1285e1567aeSJamal Hadi Salim 1295e1567aeSJamal Hadi Salim if (!exists) { 13065a206c0SChris Mi ret = tcf_idr_create(tn, parm->index, est, a, 131a85a970aSWANG Cong &act_skbedit_ops, bind, false); 13286062033SWANG Cong if (ret) 13386062033SWANG Cong return ret; 134ca9b0e27SAlexander Duyck 135a85a970aSWANG Cong d = to_skbedit(*a); 136ca9b0e27SAlexander Duyck ret = ACT_P_CREATED; 137ca9b0e27SAlexander Duyck } else { 138a85a970aSWANG Cong d = to_skbedit(*a); 13965a206c0SChris Mi tcf_idr_release(*a, bind); 1401a29321eSJamal Hadi Salim if (!ovr) 141ca9b0e27SAlexander Duyck return -EEXIST; 142ca9b0e27SAlexander Duyck } 143ca9b0e27SAlexander Duyck 144ca9b0e27SAlexander Duyck spin_lock_bh(&d->tcf_lock); 145ca9b0e27SAlexander Duyck 146ca9b0e27SAlexander Duyck d->flags = flags; 147ca9b0e27SAlexander Duyck if (flags & SKBEDIT_F_PRIORITY) 148ca9b0e27SAlexander Duyck d->priority = *priority; 149ca9b0e27SAlexander Duyck if (flags & SKBEDIT_F_QUEUE_MAPPING) 150ca9b0e27SAlexander Duyck d->queue_mapping = *queue_mapping; 1511c55d62eSjamal if (flags & SKBEDIT_F_MARK) 1521c55d62eSjamal d->mark = *mark; 153ff202ee1SJamal Hadi Salim if (flags & SKBEDIT_F_PTYPE) 154ff202ee1SJamal Hadi Salim d->ptype = *ptype; 1554fe77d82SAntonio Quartulli /* default behaviour is to use all the bits */ 1564fe77d82SAntonio Quartulli d->mask = 0xffffffff; 1574fe77d82SAntonio Quartulli if (flags & SKBEDIT_F_MASK) 1584fe77d82SAntonio Quartulli d->mask = *mask; 1591c55d62eSjamal 160ca9b0e27SAlexander Duyck d->tcf_action = parm->action; 161ca9b0e27SAlexander Duyck 162ca9b0e27SAlexander Duyck spin_unlock_bh(&d->tcf_lock); 163ca9b0e27SAlexander Duyck 164ca9b0e27SAlexander Duyck if (ret == ACT_P_CREATED) 16565a206c0SChris Mi tcf_idr_insert(tn, *a); 166ca9b0e27SAlexander Duyck return ret; 167ca9b0e27SAlexander Duyck } 168ca9b0e27SAlexander Duyck 169cc7ec456SEric Dumazet static int tcf_skbedit_dump(struct sk_buff *skb, struct tc_action *a, 170ca9b0e27SAlexander Duyck int bind, int ref) 171ca9b0e27SAlexander Duyck { 172ca9b0e27SAlexander Duyck unsigned char *b = skb_tail_pointer(skb); 173a85a970aSWANG Cong struct tcf_skbedit *d = to_skbedit(a); 1741c40be12SEric Dumazet struct tc_skbedit opt = { 1751c40be12SEric Dumazet .index = d->tcf_index, 1761c40be12SEric Dumazet .refcnt = d->tcf_refcnt - ref, 1771c40be12SEric Dumazet .bindcnt = d->tcf_bindcnt - bind, 1781c40be12SEric Dumazet .action = d->tcf_action, 1791c40be12SEric Dumazet }; 180ca9b0e27SAlexander Duyck struct tcf_t t; 181ca9b0e27SAlexander Duyck 1821b34ec43SDavid S. Miller if (nla_put(skb, TCA_SKBEDIT_PARMS, sizeof(opt), &opt)) 1831b34ec43SDavid S. Miller goto nla_put_failure; 1841b34ec43SDavid S. Miller if ((d->flags & SKBEDIT_F_PRIORITY) && 18561cc535dSJamal Hadi Salim nla_put_u32(skb, TCA_SKBEDIT_PRIORITY, d->priority)) 1861b34ec43SDavid S. Miller goto nla_put_failure; 1871b34ec43SDavid S. Miller if ((d->flags & SKBEDIT_F_QUEUE_MAPPING) && 18861cc535dSJamal Hadi Salim nla_put_u16(skb, TCA_SKBEDIT_QUEUE_MAPPING, d->queue_mapping)) 1891b34ec43SDavid S. Miller goto nla_put_failure; 1901b34ec43SDavid S. Miller if ((d->flags & SKBEDIT_F_MARK) && 19161cc535dSJamal Hadi Salim nla_put_u32(skb, TCA_SKBEDIT_MARK, d->mark)) 1921b34ec43SDavid S. Miller goto nla_put_failure; 193ff202ee1SJamal Hadi Salim if ((d->flags & SKBEDIT_F_PTYPE) && 19461cc535dSJamal Hadi Salim nla_put_u16(skb, TCA_SKBEDIT_PTYPE, d->ptype)) 195ff202ee1SJamal Hadi Salim goto nla_put_failure; 1964fe77d82SAntonio Quartulli if ((d->flags & SKBEDIT_F_MASK) && 1974fe77d82SAntonio Quartulli nla_put_u32(skb, TCA_SKBEDIT_MASK, d->mask)) 1984fe77d82SAntonio Quartulli goto nla_put_failure; 19948d8ee16SJamal Hadi Salim 20048d8ee16SJamal Hadi Salim tcf_tm_dump(&t, &d->tcf_tm); 2019854518eSNicolas Dichtel if (nla_put_64bit(skb, TCA_SKBEDIT_TM, sizeof(t), &t, TCA_SKBEDIT_PAD)) 2021b34ec43SDavid S. Miller goto nla_put_failure; 203ca9b0e27SAlexander Duyck return skb->len; 204ca9b0e27SAlexander Duyck 205ca9b0e27SAlexander Duyck nla_put_failure: 206ca9b0e27SAlexander Duyck nlmsg_trim(skb, b); 207ca9b0e27SAlexander Duyck return -1; 208ca9b0e27SAlexander Duyck } 209ca9b0e27SAlexander Duyck 210ddf97ccdSWANG Cong static int tcf_skbedit_walker(struct net *net, struct sk_buff *skb, 211ddf97ccdSWANG Cong struct netlink_callback *cb, int type, 21241780105SAlexander Aring const struct tc_action_ops *ops, 21341780105SAlexander Aring struct netlink_ext_ack *extack) 214ddf97ccdSWANG Cong { 215ddf97ccdSWANG Cong struct tc_action_net *tn = net_generic(net, skbedit_net_id); 216ddf97ccdSWANG Cong 217b3620145SAlexander Aring return tcf_generic_walker(tn, skb, cb, type, ops, extack); 218ddf97ccdSWANG Cong } 219ddf97ccdSWANG Cong 220331a9295SAlexander Aring static int tcf_skbedit_search(struct net *net, struct tc_action **a, u32 index, 221331a9295SAlexander Aring struct netlink_ext_ack *extack) 222ddf97ccdSWANG Cong { 223ddf97ccdSWANG Cong struct tc_action_net *tn = net_generic(net, skbedit_net_id); 224ddf97ccdSWANG Cong 22565a206c0SChris Mi return tcf_idr_search(tn, a, index); 226ddf97ccdSWANG Cong } 227ddf97ccdSWANG Cong 228ca9b0e27SAlexander Duyck static struct tc_action_ops act_skbedit_ops = { 229ca9b0e27SAlexander Duyck .kind = "skbedit", 230ca9b0e27SAlexander Duyck .type = TCA_ACT_SKBEDIT, 231ca9b0e27SAlexander Duyck .owner = THIS_MODULE, 232ca9b0e27SAlexander Duyck .act = tcf_skbedit, 233ca9b0e27SAlexander Duyck .dump = tcf_skbedit_dump, 234ca9b0e27SAlexander Duyck .init = tcf_skbedit_init, 235ddf97ccdSWANG Cong .walk = tcf_skbedit_walker, 236ddf97ccdSWANG Cong .lookup = tcf_skbedit_search, 237a85a970aSWANG Cong .size = sizeof(struct tcf_skbedit), 238ddf97ccdSWANG Cong }; 239ddf97ccdSWANG Cong 240ddf97ccdSWANG Cong static __net_init int skbedit_init_net(struct net *net) 241ddf97ccdSWANG Cong { 242ddf97ccdSWANG Cong struct tc_action_net *tn = net_generic(net, skbedit_net_id); 243ddf97ccdSWANG Cong 244c7e460ceSCong Wang return tc_action_net_init(tn, &act_skbedit_ops); 245ddf97ccdSWANG Cong } 246ddf97ccdSWANG Cong 247039af9c6SCong Wang static void __net_exit skbedit_exit_net(struct list_head *net_list) 248ddf97ccdSWANG Cong { 249039af9c6SCong Wang tc_action_net_exit(net_list, skbedit_net_id); 250ddf97ccdSWANG Cong } 251ddf97ccdSWANG Cong 252ddf97ccdSWANG Cong static struct pernet_operations skbedit_net_ops = { 253ddf97ccdSWANG Cong .init = skbedit_init_net, 254039af9c6SCong Wang .exit_batch = skbedit_exit_net, 255ddf97ccdSWANG Cong .id = &skbedit_net_id, 256ddf97ccdSWANG Cong .size = sizeof(struct tc_action_net), 257ca9b0e27SAlexander Duyck }; 258ca9b0e27SAlexander Duyck 259ca9b0e27SAlexander Duyck MODULE_AUTHOR("Alexander Duyck, <alexander.h.duyck@intel.com>"); 260ca9b0e27SAlexander Duyck MODULE_DESCRIPTION("SKB Editing"); 261ca9b0e27SAlexander Duyck MODULE_LICENSE("GPL"); 262ca9b0e27SAlexander Duyck 263ca9b0e27SAlexander Duyck static int __init skbedit_init_module(void) 264ca9b0e27SAlexander Duyck { 265ddf97ccdSWANG Cong return tcf_register_action(&act_skbedit_ops, &skbedit_net_ops); 266ca9b0e27SAlexander Duyck } 267ca9b0e27SAlexander Duyck 268ca9b0e27SAlexander Duyck static void __exit skbedit_cleanup_module(void) 269ca9b0e27SAlexander Duyck { 270ddf97ccdSWANG Cong tcf_unregister_action(&act_skbedit_ops, &skbedit_net_ops); 271ca9b0e27SAlexander Duyck } 272ca9b0e27SAlexander Duyck 273ca9b0e27SAlexander Duyck module_init(skbedit_init_module); 274ca9b0e27SAlexander Duyck module_exit(skbedit_cleanup_module); 275