forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 1
/
lump_struct.h
128 lines (110 loc) · 4.24 KB
/
lump_struct.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of opensips, a free SIP server.
*
* opensips 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
*
* opensips 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*!
* \file lump_struct.h
* \brief Data structures for adding or removing data chunks from messages.
*/
#ifndef lump_struct_h
#define lump_struct_h
#include "./parser/hf.h"
/*! \brief
* Operations on lumps.
*/
enum lump_op { LUMP_NOP=0, LUMP_DEL, LUMP_ADD, LUMP_ADD_SUBST,
LUMP_ADD_OPT , LUMP_SKIP };
/*! \brief
* Substitutions for lumps.
* Where:
* SND = sending, e.g the src ip of the outgoing message
* RCV = received e.g the dst ip of the original incoming msg,
* or the ip of the socket on which the msg was received.
* For SUBST_{RCV,SND}_ALL, :port is added only if port!=5060
* and transport=proto only if proto!=udp is specified.
*/
enum lump_subst{ SUBST_NOP=0, /*!< do nothing */
SUBST_RCV_IP, SUBST_SND_IP, /*!< add ip address */
SUBST_RCV_PORT, SUBST_SND_PORT, /*!< add port no */
SUBST_RCV_PROTO, SUBST_SND_PROTO,/*!< add protocol(udp,tcp,tls)*/
SUBST_RCV_ALL, SUBST_SND_ALL /*!< ip:port;transport=proto */
};
/*! \brief
* Conditions for lumps.
* Where:
* REALM= ip_addr:port:proto
* af = address family (ipv4 or ipv6)
* proto = protocol (tcp, udp, tls)
*/
enum lump_conditions { COND_FALSE, /*!< always false */
COND_TRUE, /*!< always true */
COND_IF_DIFF_REALMS,/*!< true if RCV realm != SND realm */
COND_IF_DIFF_AF, /*!< true if RCV af != SND af */
COND_IF_DIFF_PROTO, /*!< true if RCV proto != SND proto */
COND_IF_DIFF_PORT, /*!< true if RCV port != SND port */
COND_IF_DIFF_IP, /*!< true if RCV ip != SND ip */
};
/*! \brief
* Flags for lumps, mainly used from the tm module.
*/
enum lump_flag { LUMPFLAG_NONE=0,
LUMPFLAG_SHMEM=2 , LUMPFLAG_BRANCH=4, LUMPFLAG_COND_TRUE=8,
LUMPFLAG_CODEC=16};
/*! \brief
* Main lump structure.
*/
struct lump{
enum _hdr_types_t type; /*!< HDR_VIA_T, HDR_OTHER_T (0), ... */
enum lump_op op; /*!< DEL, ADD, NOP, UNSPEC(=0) */
union{
unsigned int offset; /*!< used for DEL, MODIFY */
enum lump_subst subst; /*!< what to subst: ip addr, port, proto*/
enum lump_conditions cond; /*!< condition for LUMP_ADD_OPT */
char * value; /*!< used for ADD */
}u;
unsigned int len; /*!< length of this header field */
struct lump* before; /*!< list of headers to be inserted in front of the
current one */
struct lump* after; /*!< list of headers to be inserted immediately after
the current one */
struct lump* next;
enum lump_flag flags; /*!< additional hints for use from TM's shmem */
};
/*
* hdrs must be kept sorted after their offset (DEL, NOP, UNSPEC)
* and/or their position (ADD). E.g.:
* - to delete header Z insert it in to the list according to its offset
* and with op=DELETE
* - if you want to add a new header X after a header Y, insert Y in the list
* with op NOP and after it X (op ADD).
* - if you want X before Y, insert X in Y's before list.
* - if you want X to be the first header just put it first in hdr_lst.
* -if you want to replace Y with X, insert Y with op=DELETE and then X with
* op=ADD.
* before and after must contain only ADD ops!
*
* Difference between "after" & "next" when Adding:
* "after" forces the new header immediately after the current one while
* "next" means another header can be inserted between them.
*
*/
/*! \brief frees the content of a lump struct */
void free_lump(struct lump* l);
/*! \brief frees an entire lump list, recursively */
void free_lump_list(struct lump* lump_list);
#endif