Copyright © 2013 VoIPEmbedded Inc.
Copyright © 2010 Asipto.com
Copyright © 2006 Freenet Cityline GmbH
Table of Contents
List of Examples
db_url
parameterplp_table_name
parameterplp_pipeid_column
parameterplp_limit_column
parameterplp_algorithm_column
parametertimer_interval
parameterreply_code
parameterreply_code
parameter at runtime reply_reason
parameterreply_reason
parameter at runtime rl_check
usagepl_drop
usageTable of Contents
This module implements traffic limiting for SIP requests.
The module defines in an abstract mode the notion of 'pipe', which can be a link to an IP address, to a network or a trunk. The associtiation of traffic to a pipe is done in the config file, therefore, a pipe could represent SIP traffic coming from a user or the flow of specific SIP requests such as INVITE or REGISTER.
Pipelimit started from ratelimit module, adding support for definition of pipes limits in database and dynamic names. Complexity of keeping everything in a module and make it dual mode functional resulted in a new module which is focused on just traffic shaping policies. For description of the algorithms see the README of ratelimit.
The following modules must be loaded before this module:
database connection module.
URL of the database server to be used.
Default value is “mysql://kamailio:kamailiorw@localhost/kamailio”.
Example 1.1. Set db_url
parameter
... modparam("pipelimit", "db_url", "dbdriver://username:password@dbhost/dbname") ...
Name of DB table where data definition for pipes is stores.
Default value is “pl_pipes”.
Example 1.2. Set plp_table_name
parameter
... modparam("pipelimit", "plp_table_name", "mypipes") ...
Name of 'pipeid' column.
Default value is “pipeid”.
Example 1.3. Set plp_pipeid_column
parameter
... modparam("pipelimit", "plp_pipeid_column", "name") ...
Name of 'limit' column.
Default value is “limit”.
Example 1.4. Set plp_limit_column
parameter
... modparam("pipelimit", "plp_limit_column", "name") ...
Name of 'algorithm' column.
Default value is “algorithm”.
Example 1.5. Set plp_algorithm_column
parameter
... modparam("pipelimit", "plp_algorithm_column", "name") ...
The initial length of a timer interval in seconds. All amounts of messages have to be divided by this timer to get a messages per second value.
IMPORTANT: A too small value may lead to performance penalties due to timer process overloading.
Default value is 10.
The code of the reply sent by Kamailio while limiting.
Default value is 503.
This value can be modified at runtime using kamcmd
Check the current request against the 'name' pipe. The pipe name can be provided via a pseudo variabile.
The method will return:
-2 if no pipe was found
-1 if pipe limit was reached
1 if pipe limit was NOT reached
2 if pipe has NOP algorithm
Meaning of the parameters is as follows:
name - the pseudovariable holding the pipe name.
This function can be used from REQUEST_ROUTE.
Example 1.11. rl_check
usage
... # perform pipe match for current method if (!pl_check("one")) { pl_drop(); exit; } ... # use pipe 'one' for the current method via PV $var(p) = "one"; $var(check_result) = pl_check("$var(p)"); switch($var(check_result)) { case -2: xlog("L_ALERT","pl_check(\"$var(p)\") drop -pipe NOT found\n"); pl_drop(); exit; break; case -1: xlog("L_ALERT","pl_check(\"$var(p)\") drop\n"); pl_drop(); exit; break; case 1: xlog("L_INFO", "pl_check(\"$var(p)\") pass\n"); break; case 2: xlog("L_ALERT","pl_check(\"$var(p)\") pass -NOP algorithm\n"); break; default: xlog("L_ERR","pl_check(\"$var(p)\") dropping \ with unexpected retcode=$var(check_result)\n"); pl_drop(); exit; } ...
For the current request, a "503 - Server Unavailable" reply is sent back. The reply may or may not have a "Retry-After" header. If no parameter is given, there will be no "Retry-After" header. If only the max parameter is given, the reply will contain a "Retry-After: max" header. If both min and max params are given, the reply will contain a "Retry-After: random" header with random being a random value between the given min and max.
Meaning of the parameters is as follows:
min - the minimum value of "Retry-After" header.
max - the maximum value of "Retry-After" header.
This function can be used from REQUEST_ROUTE.
Example 1.12. pl_drop
usage
... if (!pl_check("one")) { # send back a "503 - Server Unavailable" # with a "Retry-After: 5" pl_drop("5"); exit; } ...
Lists the parameters and variabiles in the pipelimit module.
Name: pl_stats
Parameters: none
MI FIFO Command Format:
:pl_stats:_reply_fifo_file_ _empty_line_
Sets the pipe parameters for the given pipe id.
Name: pl_set_pipe
Parameters:
pipe_id - pipe id.
pipe_algorithm - the algorithm assigned to the given pipe id.
pipe_limit - the limit assigned to the given pipe id.
MI FIFO Command Format:
:pl_set_pipe:_reply_fifo_file_ 2 RED 10 _empty_line_
Gets the list of in use pipes.
Name: pl_get_pipes
Parameters: none
MI FIFO Command Format:
:pl_get_pipes:_reply_fifo_file_ _empty_line_
Sets the PID Controller parameters for the Feedback Algorithm.
Name: pl_set_pid
Parameters:
ki - the integral parameter.
kp - the proportional parameter.
kd - the derivative parameter.
MI FIFO Command Format:
:pl_set_pid:_reply_fifo_file_ 0.5 0.5 0.5 _empty_line_
Gets the list of in use PID Controller parameters.
Name: pl_get_pid
Parameters: none
MI FIFO Command Format:
:pl_get_pid:_reply_fifo_file_ _empty_line_
Force the value of the load parameter. This command is useful for testing the Feedback algorithm.
Name: pl_push_load
Parameters:
load - the forced value of load (it must be greater then 0.0 and smaller then 1.0).
MI FIFO Command Format:
:pl_push_load:_reply_fifo_file_ 0.85 _empty_line_
Lists the parameters and variabiles in the pipelimit module: pipe id, pipe load and pipe couter.
Name: pl.stats
Parameters: none
RPC Command Format:
kamcmd pl.stats
Sets the pipe parameters for the given pipe id.
Name: pl.set_pipe
Parameters:
pipe_id - pipe id.
pipe_algorithm - the algorithm assigned to the given pipe id.
pipe_limit - the limit assigned to the given pipe id.
RPC Command Format:
kamcmd pl.set_pipe 2 RED 10
Gets the list of in use pipes.
Name: pl.get_pipes
Parameters: none
RPC Command Format:
kamcmd pl.get_pipes
Sets the PID Controller parameters for the Feedback Algorithm.
Name: pl.set_pid
Parameters:
ki - the integral parameter.
kp - the proportional parameter.
kd - the derivative parameter.
RPC Command Format:
kamcmd pl.set_pid 0.5 0.5 0.5
Gets the list of in use PID Controller parameters.
Name: pl.get_pid
Parameters: none
RPC Command Format:
kamcmd pl.get_pid