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
|
/**
* $Id$
*
* Copyright (C) 2010 Daniel-Constantin Mierla (asipto.com)
*
* This file is part of Kamailio, a free SIP server.
*
* This file 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
*
*
* This file 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 <unistd.h>
#include <stdlib.h>
#include <string.h>
#include "../../sr_module.h"
#include "../../dprint.h"
#include "../../ut.h"
#include "../../pvar.h"
#include "../../mod_fix.h"
#include "geoip_pv.h"
MODULE_VERSION
static char *geoip_path = NULL;
static int mod_init(void);
static void mod_destroy(void);
static int w_geoip_match(struct sip_msg* msg, char* str1, char* str2);
static int geoip_match(struct sip_msg *msg, gparam_t *target, gparam_t *pvname);
static pv_export_t mod_pvs[] = {
{ {"gip", sizeof("git")-1}, PVT_OTHER, pv_get_geoip, 0,
pv_parse_geoip_name, 0, 0, 0 },
{ {0, 0}, 0, 0, 0, 0, 0, 0, 0 }
};
static cmd_export_t cmds[]={
{"geoip_match", (cmd_function)w_geoip_match, 2, fixup_spve_spve,
0, ANY_ROUTE},
{0, 0, 0, 0, 0, 0}
};
static param_export_t params[]={
{"path", PARAM_STRING, &geoip_path},
{0, 0, 0}
};
struct module_exports exports = {
"geoip",
DEFAULT_DLFLAGS, /* dlopen flags */
cmds,
params,
0,
0, /* exported MI functions */
mod_pvs, /* exported pseudo-variables */
0, /* extra processes */
mod_init, /* module initialization function */
0, /* response function */
mod_destroy, /* destroy function */
0 /* per child init function */
};
/**
* init module function
*/
static int mod_init(void)
{
if(geoip_path==NULL || strlen(geoip_path)==0)
{
LM_ERR("path to GeoIP database file not set\n");
return -1;
}
if(geoip_init_pv(geoip_path)!=0)
{
LM_ERR("cannot init for database file at: %s\n", geoip_path);
return -1;
}
return 0;
}
/**
* destroy module function
*/
static void mod_destroy(void)
{
geoip_destroy_pv();
}
static int w_geoip_match(struct sip_msg* msg, char* str1, char* str2)
{
return geoip_match(msg, (gparam_t*)str1, (gparam_t*)str2);
}
static int geoip_match(struct sip_msg *msg, gparam_t *target, gparam_t *pvname)
{
str tomatch;
str pvclass;
if(msg==NULL)
{
LM_ERR("received null msg\n");
return -1;
}
if(fixup_get_svalue(msg, target, &tomatch)<0)
{
LM_ERR("cannot get the address\n");
return -1;
}
if(fixup_get_svalue(msg, pvname, &pvclass)<0)
{
LM_ERR("cannot get the pv class\n");
return -1;
}
geoip_pv_reset(&pvclass);
return geoip_update_pv(&tomatch, &pvclass);
}
|