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 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
/*
* $Id$
*
* Diversion Header Field Support
*
* Copyright (C) 2004 FhG Fokus
*
* This file is part of Kamailio, a free SIP server.
*
* Kamailio 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
*
* Kamailio 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
*
*/
#include <stdio.h>
#include <string.h>
#include "../../sr_module.h"
#include "../../error.h"
#include "../../dprint.h"
#include "../../mem/mem.h"
#include "../../data_lump.h"
#include "../../mod_fix.h"
MODULE_VERSION
#define DIVERSION_HF "Diversion"
#define DIVERSION_HF_LEN (sizeof(DIVERSION_HF) - 1)
#define DIVERSION_PREFIX DIVERSION_HF ": <"
#define DIVERSION_PREFIX_LEN (sizeof(DIVERSION_PREFIX) - 1)
#define DIVERSION_SUFFIX ">;reason="
#define DIVERSION_SUFFIX_LEN (sizeof(DIVERSION_SUFFIX) - 1)
str suffix = {"", 0};
int add_diversion(struct sip_msg* msg, char* r, char* u);
/*
* Exported functions
*/
static cmd_export_t cmds[] = {
{"add_diversion", (cmd_function)add_diversion, 1, fixup_spve_null,
0, REQUEST_ROUTE|FAILURE_ROUTE|BRANCH_ROUTE},
{"add_diversion", (cmd_function)add_diversion, 2, fixup_spve_spve,
0, REQUEST_ROUTE|FAILURE_ROUTE|BRANCH_ROUTE},
{0, 0, 0, 0, 0, 0}
};
/*
* Exported parameters
*/
static param_export_t params[] = {
{"suffix", PARAM_STR, &suffix},
{0, 0, 0}
};
/*
* Module interface
*/
struct module_exports exports = {
"diversion",
DEFAULT_DLFLAGS, /* dlopen flags */
cmds, /* Exported functions */
params, /* Exported parameters */
0, /* exported statistics */
0, /* exported MI functions */
0, /* exported pseudo-variables */
0, /* extra processes */
0, /* module initialization function */
0, /* response function */
0, /* destroy function */
0 /* child initialization function */
};
static inline int add_diversion_helper(struct sip_msg* msg, str* s)
{
char *ptr;
int is_ref;
struct lump* anchor = 0;
if (!msg->diversion && parse_headers(msg, HDR_DIVERSION_F, 0) == -1) {
LM_ERR("header parsing failed\n");
return -1;
}
if (msg->diversion) {
/* Insert just before the topmost Diversion header */
ptr = msg->diversion->name.s;
} else {
/* Insert at the end */
ptr = msg->unparsed;
}
anchor = anchor_lump2(msg, ptr - msg->buf, 0, 0, &is_ref);
if (!anchor) {
LM_ERR("can't get anchor\n");
return -2;
}
if (!insert_new_lump_before(anchor, s->s, s->len, 0)) {
LM_ERR("can't insert lump\n");
return -3;
}
return 0;
}
int add_diversion(struct sip_msg* msg, char* r, char* u)
{
str div_hf;
char *at;
str uri;
str reason;
if(fixup_get_svalue(msg, (gparam_t*)r, &reason)<0)
{
LM_ERR("cannot get the script\n");
return -1;
}
if(u==NULL) {
uri = msg->first_line.u.request.uri;
} else {
if(fixup_get_svalue(msg, (gparam_t*)u, &uri)<0)
{
LM_ERR("cannot get the uri parameter\n");
return -1;
}
}
div_hf.len = DIVERSION_PREFIX_LEN + uri.len + DIVERSION_SUFFIX_LEN + reason.len + CRLF_LEN;
div_hf.s = pkg_malloc(div_hf.len);
if (!div_hf.s) {
LM_ERR("no pkg memory left\n");
return -1;
}
at = div_hf.s;
memcpy(at, DIVERSION_PREFIX, DIVERSION_PREFIX_LEN);
at += DIVERSION_PREFIX_LEN;
memcpy(at, uri.s, uri.len);
at += uri.len;
memcpy(at, DIVERSION_SUFFIX, DIVERSION_SUFFIX_LEN);
at += DIVERSION_SUFFIX_LEN;
memcpy(at, reason.s, reason.len);
at += reason.len;
memcpy(at, CRLF, CRLF_LEN);
if (add_diversion_helper(msg, &div_hf) < 0) {
pkg_free(div_hf.s);
return -1;
}
return 1;
}
|