/*
* $Id: route_struct.h 1781 2007-03-09 11:31:04Z miconda $
*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of openser, a free SIP server.
*
* openser 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
*
* openser is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* History:
* --------
*
* 2003-04-12 FORCE_RPORT_T added (andrei)
* 2003-04-22 strip_tail added (jiri)
* 2003-10-10 >,<,>=,<=, != and MSGLEN_O added (andrei)
* 2003-10-28 FORCE_TCP_ALIAS added (andrei)
* 2006-03-02 new field "line" in action struct - the cfg line (bogdan)
* 2006-12-22 support for script and branch flags added (bogdan)
*/
#ifndef route_struct_h
#define route_struct_h
#define EXPR_DROP -127 /* used only by the expression and if evaluator */
/*
* Other important values (no macros for them yet):
* expr true = 1
* expr false = 0 (used only inside the expression and if evaluator)
*
* action continue or if used in condition true = 1
* action drop/quit/stop script processing = 0
* action error or if used in condition false = -1 (<0 and !=EXPR_DROP)
*
*/
enum { EXP_T=1, ELEM_T };
enum { AND_OP=1, OR_OP, NOT_OP, EVAL_OP, PLUS_OP, MINUS_OP, DIV_OP, MULT_OP, MODULO_OP,
BAND_OP, BOR_OP, BXOR_OP, BNOT_OP };
enum { EQUAL_OP=20, MATCH_OP, NOTMATCH_OP, MATCHD_OP, NOTMATCHD_OP,
GT_OP, LT_OP, GTE_OP, LTE_OP, DIFF_OP, VALUE_OP, NO_OP };
enum { METHOD_O=1, URI_O, FROM_URI_O, TO_URI_O, SRCIP_O, SRCPORT_O,
DSTIP_O, DSTPORT_O, PROTO_O, AF_O, MSGLEN_O, DEFAULT_O, ACTION_O,
EXPR_O, NUMBER_O, NUMBERV_O, STRINGV_O, RETCODE_O, SCRIPTVAR_O};
enum { FORWARD_T=1, SEND_T, DROP_T, LOG_T, ERROR_T, ROUTE_T, EXEC_T,
SET_HOST_T, SET_HOSTPORT_T, SET_USER_T, SET_USERPASS_T,
SET_PORT_T, SET_URI_T, IF_T, MODULE_T,
SETFLAG_T, RESETFLAG_T, ISFLAGSET_T ,
SETSFLAG_T, RESETSFLAG_T, ISSFLAGSET_T ,
SETBFLAG_T, RESETBFLAG_T, ISBFLAGSET_T ,
LEN_GT_T, PREFIX_T, STRIP_T,STRIP_TAIL_T,
APPEND_BRANCH_T,
REVERT_URI_T,
FORCE_RPORT_T,
FORCE_LOCAL_RPORT_T,
SET_ADV_ADDR_T,
SET_ADV_PORT_T,
FORCE_TCP_ALIAS_T,
FORCE_SEND_SOCKET_T,
SERIALIZE_BRANCHES_T,
NEXT_BRANCHES_T,
RETURN_T,
EXIT_T,
SWITCH_T, CASE_T, DEFAULT_T, SBREAK_T,
SET_DSTURI_T, RESET_DSTURI_T, ISDSTURISET_T,
EQ_T, PLUSEQ_T, MINUSEQ_T, DIVEQ_T, MULTEQ_T, MODULOEQ_T, BANDEQ_T,
BOREQ_T, BXOREQ_T, USE_BLACKLIST_T, SET_TIME_STAMP_T,
RESET_TIME_STAMP_T, DIFF_TIME_STAMP_T
};
enum { NOSUBTYPE=0, STRING_ST, NET_ST, NUMBER_ST, IP_ST, RE_ST, PROXY_ST,
EXPR_ST, ACTIONS_ST, CMD_ST, MODFIXUP_ST,
MYSELF_ST, STR_ST, SOCKID_ST, SOCKETINFO_ST, SCRIPTVAR_ST, NULLV_ST,
BLACKLIST_ST};
struct expr;
#include "items.h"
typedef struct operand {
int type;
union operand_val {
struct expr* expr;
str s;
int n;
xl_spec_t* spec;
void* data;
} v;
} operand_t, *operand_p;
struct expr{
int type; /* exp, exp_elem */
int op; /* and, or, not | ==, =~ */
operand_t left;
operand_t right;
};
typedef struct action_elem_ {
int type;
union {
long number;
char* string;
void* data;
str s;
xl_spec_t* item;
} u;
} action_elem_t, *action_elem_p;
#define MAX_ACTION_ELEMS 5
struct action{
int type; /* forward, drop, log, send ...*/
int n;
action_elem_t elem[MAX_ACTION_ELEMS];
int line;
struct action* next;
};
struct expr* mk_exp(int op, struct expr* left, struct expr* right);
struct expr* mk_elem(int op, int leftt, void *leftd, int rightt, void *rightd);
struct action* mk_action(int type, int n, action_elem_t *elem, int line);
struct action* append_action(struct action* a, struct action* b);
void print_action(struct action* a);
void print_expr(struct expr* exp);
void print_actions(struct action* a);
#endif
syntax highlighted by Code2HTML, v. 0.9.1