2005-04-16 15:20:36 -07:00
/*
2014-11-05 20:51:51 +01:00
* net / sched / act_gact . c Generic actions
2005-04-16 15:20:36 -07:00
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation ; either version
* 2 of the License , or ( at your option ) any later version .
*
* copyright Jamal Hadi Salim ( 2002 - 4 )
*
*/
# include <linux/types.h>
# include <linux/kernel.h>
# include <linux/string.h>
# include <linux/errno.h>
# include <linux/skbuff.h>
# include <linux/rtnetlink.h>
# include <linux/module.h>
# include <linux/init.h>
2007-03-25 23:06:12 -07:00
# include <net/netlink.h>
2005-04-16 15:20:36 -07:00
# include <net/pkt_sched.h>
# include <linux/tc_act/tc_gact.h>
# include <net/tc_act/tc_gact.h>
2006-08-21 23:54:55 -07:00
# define GACT_TAB_MASK 15
2005-04-16 15:20:36 -07:00
# ifdef CONFIG_GACT_PROB
2006-08-21 23:54:55 -07:00
static int gact_net_rand ( struct tcf_gact * gact )
2005-04-16 15:20:36 -07:00
{
2015-07-06 05:18:05 -07:00
smp_rmb ( ) ; /* coupled with smp_wmb() in tcf_gact_init() */
if ( prandom_u32 ( ) % gact - > tcfg_pval )
2006-08-21 23:54:55 -07:00
return gact - > tcf_action ;
return gact - > tcfg_paction ;
2005-04-16 15:20:36 -07:00
}
2006-08-21 23:54:55 -07:00
static int gact_determ ( struct tcf_gact * gact )
2005-04-16 15:20:36 -07:00
{
2015-07-06 05:18:06 -07:00
u32 pack = atomic_inc_return ( & gact - > packets ) ;
2015-07-06 05:18:05 -07:00
smp_rmb ( ) ; /* coupled with smp_wmb() in tcf_gact_init() */
2015-07-06 05:18:06 -07:00
if ( pack % gact - > tcfg_pval )
2006-08-21 23:54:55 -07:00
return gact - > tcf_action ;
return gact - > tcfg_paction ;
2005-04-16 15:20:36 -07:00
}
2006-08-21 23:54:55 -07:00
typedef int ( * g_rand ) ( struct tcf_gact * gact ) ;
2011-01-19 19:26:56 +00:00
static g_rand gact_rand [ MAX_RAND ] = { NULL , gact_net_rand , gact_determ } ;
2006-08-21 23:54:55 -07:00
# endif /* CONFIG_GACT_PROB */
2005-04-16 15:20:36 -07:00
2008-01-23 20:36:30 -08:00
static const struct nla_policy gact_policy [ TCA_GACT_MAX + 1 ] = {
[ TCA_GACT_PARMS ] = { . len = sizeof ( struct tc_gact ) } ,
[ TCA_GACT_PROB ] = { . len = sizeof ( struct tc_gact_p ) } ,
} ;
2013-01-14 05:15:39 +00:00
static int tcf_gact_init ( struct net * net , struct nlattr * nla ,
struct nlattr * est , struct tc_action * a ,
int ovr , int bind )
2005-04-16 15:20:36 -07:00
{
2008-01-22 22:11:50 -08:00
struct nlattr * tb [ TCA_GACT_MAX + 1 ] ;
2005-04-16 15:20:36 -07:00
struct tc_gact * parm ;
2006-08-21 23:54:55 -07:00
struct tcf_gact * gact ;
2005-04-16 15:20:36 -07:00
int ret = 0 ;
2008-01-23 20:33:32 -08:00
int err ;
2012-08-03 19:57:52 +09:00
# ifdef CONFIG_GACT_PROB
struct tc_gact_p * p_parm = NULL ;
# endif
2005-04-16 15:20:36 -07:00
2008-01-23 20:33:32 -08:00
if ( nla = = NULL )
2005-04-16 15:20:36 -07:00
return - EINVAL ;
2008-01-23 20:36:30 -08:00
err = nla_parse_nested ( tb , TCA_GACT_MAX , nla , gact_policy ) ;
2008-01-23 20:33:32 -08:00
if ( err < 0 )
return err ;
2008-01-23 20:36:30 -08:00
if ( tb [ TCA_GACT_PARMS ] = = NULL )
2005-04-16 15:20:36 -07:00
return - EINVAL ;
2008-01-22 22:11:50 -08:00
parm = nla_data ( tb [ TCA_GACT_PARMS ] ) ;
2005-04-16 15:20:36 -07:00
2008-01-23 20:36:30 -08:00
# ifndef CONFIG_GACT_PROB
2008-01-22 22:11:50 -08:00
if ( tb [ TCA_GACT_PROB ] ! = NULL )
2005-04-16 15:20:36 -07:00
return - EOPNOTSUPP ;
2012-08-03 19:57:52 +09:00
# else
if ( tb [ TCA_GACT_PROB ] ) {
p_parm = nla_data ( tb [ TCA_GACT_PROB ] ) ;
if ( p_parm - > ptype > = MAX_RAND )
return - EINVAL ;
}
2005-04-16 15:20:36 -07:00
# endif
2014-02-11 17:07:31 -08:00
if ( ! tcf_hash_check ( parm - > index , a , bind ) ) {
2015-07-06 05:18:04 -07:00
ret = tcf_hash_create ( parm - > index , est , a , sizeof ( * gact ) ,
2015-07-06 05:18:08 -07:00
bind , true ) ;
2014-02-11 17:07:31 -08:00
if ( ret )
return ret ;
2005-04-16 15:20:36 -07:00
ret = ACT_P_CREATED ;
} else {
2013-12-23 08:02:11 -05:00
if ( bind ) /* dont override defaults */
return 0 ;
2014-02-11 17:07:31 -08:00
tcf_hash_release ( a , bind ) ;
2013-12-23 08:02:11 -05:00
if ( ! ovr )
2005-04-16 15:20:36 -07:00
return - EEXIST ;
}
2014-02-11 17:07:31 -08:00
gact = to_gact ( a ) ;
2006-08-21 23:54:55 -07:00
2015-07-06 05:18:08 -07:00
ASSERT_RTNL ( ) ;
2006-08-21 23:54:55 -07:00
gact - > tcf_action = parm - > action ;
2005-04-16 15:20:36 -07:00
# ifdef CONFIG_GACT_PROB
2012-08-03 19:57:52 +09:00
if ( p_parm ) {
2006-08-21 23:54:55 -07:00
gact - > tcfg_paction = p_parm - > paction ;
2015-07-06 05:18:05 -07:00
gact - > tcfg_pval = max_t ( u16 , 1 , p_parm - > pval ) ;
/* Make sure tcfg_pval is written before tcfg_ptype
* coupled with smp_rmb ( ) in gact_net_rand ( ) & gact_determ ( )
*/
smp_wmb ( ) ;
2006-08-21 23:54:55 -07:00
gact - > tcfg_ptype = p_parm - > ptype ;
2005-04-16 15:20:36 -07:00
}
# endif
if ( ret = = ACT_P_CREATED )
2014-02-11 17:07:31 -08:00
tcf_hash_insert ( a ) ;
2005-04-16 15:20:36 -07:00
return ret ;
}
2011-07-05 23:25:42 +00:00
static int tcf_gact ( struct sk_buff * skb , const struct tc_action * a ,
struct tcf_result * res )
2005-04-16 15:20:36 -07:00
{
2006-08-21 23:54:55 -07:00
struct tcf_gact * gact = a - > priv ;
2015-07-06 05:18:08 -07:00
int action = READ_ONCE ( gact - > tcf_action ) ;
2005-04-16 15:20:36 -07:00
# ifdef CONFIG_GACT_PROB
2015-07-06 05:18:07 -07:00
{
u32 ptype = READ_ONCE ( gact - > tcfg_ptype ) ;
if ( ptype )
action = gact_rand [ ptype ] ( gact ) ;
}
2005-04-16 15:20:36 -07:00
# endif
2015-07-06 05:18:08 -07:00
bstats_cpu_update ( this_cpu_ptr ( gact - > common . cpu_bstats ) , skb ) ;
2005-04-16 15:20:36 -07:00
if ( action = = TC_ACT_SHOT )
2015-07-06 05:18:08 -07:00
qstats_drop_inc ( this_cpu_ptr ( gact - > common . cpu_qstats ) ) ;
tcf_lastuse_update ( & gact - > tcf_tm ) ;
2005-04-16 15:20:36 -07:00
return action ;
}
2006-08-21 23:54:55 -07:00
static int tcf_gact_dump ( struct sk_buff * skb , struct tc_action * a , int bind , int ref )
2005-04-16 15:20:36 -07:00
{
2007-04-19 20:29:13 -07:00
unsigned char * b = skb_tail_pointer ( skb ) ;
2006-08-21 23:54:55 -07:00
struct tcf_gact * gact = a - > priv ;
2010-08-16 20:04:22 +00:00
struct tc_gact opt = {
. index = gact - > tcf_index ,
. refcnt = gact - > tcf_refcnt - ref ,
. bindcnt = gact - > tcf_bindcnt - bind ,
. action = gact - > tcf_action ,
} ;
2005-04-16 15:20:36 -07:00
struct tcf_t t ;
2012-03-29 05:11:39 -04:00
if ( nla_put ( skb , TCA_GACT_PARMS , sizeof ( opt ) , & opt ) )
goto nla_put_failure ;
2005-04-16 15:20:36 -07:00
# ifdef CONFIG_GACT_PROB
2006-08-21 23:54:55 -07:00
if ( gact - > tcfg_ptype ) {
2010-08-16 20:04:22 +00:00
struct tc_gact_p p_opt = {
. paction = gact - > tcfg_paction ,
. pval = gact - > tcfg_pval ,
. ptype = gact - > tcfg_ptype ,
} ;
2012-03-29 05:11:39 -04:00
if ( nla_put ( skb , TCA_GACT_PROB , sizeof ( p_opt ) , & p_opt ) )
goto nla_put_failure ;
2005-04-16 15:20:36 -07:00
}
# endif
2006-08-21 23:54:55 -07:00
t . install = jiffies_to_clock_t ( jiffies - gact - > tcf_tm . install ) ;
t . lastuse = jiffies_to_clock_t ( jiffies - gact - > tcf_tm . lastuse ) ;
t . expires = jiffies_to_clock_t ( gact - > tcf_tm . expires ) ;
2012-03-29 05:11:39 -04:00
if ( nla_put ( skb , TCA_GACT_TM , sizeof ( t ) , & t ) )
goto nla_put_failure ;
2005-04-16 15:20:36 -07:00
return skb - > len ;
2008-01-22 22:11:50 -08:00
nla_put_failure :
2007-03-25 23:06:12 -07:00
nlmsg_trim ( skb , b ) ;
2005-04-16 15:20:36 -07:00
return - 1 ;
}
static struct tc_action_ops act_gact_ops = {
. kind = " gact " ,
. type = TCA_ACT_GACT ,
. owner = THIS_MODULE ,
. act = tcf_gact ,
. dump = tcf_gact_dump ,
. init = tcf_gact_init ,
} ;
MODULE_AUTHOR ( " Jamal Hadi Salim(2002-4) " ) ;
MODULE_DESCRIPTION ( " Generic Classifier actions " ) ;
MODULE_LICENSE ( " GPL " ) ;
2006-08-21 23:54:55 -07:00
static int __init gact_init_module ( void )
2005-04-16 15:20:36 -07:00
{
# ifdef CONFIG_GACT_PROB
2011-01-19 19:26:56 +00:00
pr_info ( " GACT probability on \n " ) ;
2005-04-16 15:20:36 -07:00
# else
2011-01-19 19:26:56 +00:00
pr_info ( " GACT probability NOT on \n " ) ;
2005-04-16 15:20:36 -07:00
# endif
2014-02-11 17:07:33 -08:00
return tcf_register_action ( & act_gact_ops , GACT_TAB_MASK ) ;
2005-04-16 15:20:36 -07:00
}
2006-08-21 23:54:55 -07:00
static void __exit gact_cleanup_module ( void )
2005-04-16 15:20:36 -07:00
{
tcf_unregister_action ( & act_gact_ops ) ;
}
module_init ( gact_init_module ) ;
module_exit ( gact_cleanup_module ) ;