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 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
/*
* $Id: authrad_mod.c,v 1.7 2006/03/01 18:07:37 bogdan_iancu Exp $
*
* Digest Authentication - Radius support
*
* 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-03-09: Based on auth_mod.c from radius_auth (janakj)
* 2003-03-11: New module interface (janakj)
* 2003-03-16: flags export parameter added (janakj)
* 2003-03-19: all mallocs/frees replaced w/ pkg_malloc/pkg_free (andrei)
* 2006-03-01: pseudo variables support for domain name (bogdan)
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <radiusclient-ng.h>
#include "../../sr_module.h"
#include "../../error.h"
#include "../../dprint.h"
#include "../../config.h"
#include "../../items.h"
#include "../../mem/mem.h"
#include "../acc/dict.h"
#include "authrad_mod.h"
#include "authorize.h"
MODULE_VERSION
struct attr attrs[A_MAX];
struct val vals[V_MAX];
void *rh;
auth_api_t auth_api;
static int mod_init(void); /* Module initialization function */
static int auth_fixup(void** param, int param_no); /* char* -> str* */
/*
* Module parameter variables
*/
static char* radius_config = DEFAULT_RADIUSCLEINT_CONF;
static int service_type = -1;
/*
* Exported functions
*/
static cmd_export_t cmds[] = {
{"radius_www_authorize", radius_www_authorize, 1, auth_fixup,
REQUEST_ROUTE},
{"radius_proxy_authorize", radius_proxy_authorize, 1, auth_fixup,
REQUEST_ROUTE},
{0, 0, 0, 0, 0}
};
/*
* Exported parameters
*/
static param_export_t params[] = {
{"radius_config", STR_PARAM, &radius_config },
{"service_type", INT_PARAM, &service_type },
{0, 0, 0}
};
/*
* Module interface
*/
struct module_exports exports = {
"auth_radius",
cmds, /* Exported functions */
params, /* Exported parameters */
0, /* exported statistics */
mod_init, /* module initialization function */
0, /* response function */
0, /* destroy function */
0 /* child initialization function */
};
/*
* Module initialization function
*/
static int mod_init(void)
{
DICT_VENDOR *vend;
bind_auth_t bind_auth;
DBG("auth_radius - Initializing\n");
memset(attrs, 0, sizeof(attrs));
memset(vals, 0, sizeof(vals));
attrs[A_SERVICE_TYPE].n = "Service-Type";
attrs[A_SIP_URI_USER].n = "Sip-URI-User";
attrs[A_DIGEST_RESPONSE].n = "Digest-Response";
attrs[A_DIGEST_ALGORITHM].n = "Digest-Algorithm";
attrs[A_DIGEST_BODY_DIGEST].n = "Digest-Body-Digest";
attrs[A_DIGEST_CNONCE].n = "Digest-CNonce";
attrs[A_DIGEST_NONCE_COUNT].n = "Digest-Nonce-Count";
attrs[A_DIGEST_QOP].n = "Digest-QOP";
attrs[A_DIGEST_METHOD].n = "Digest-Method";
attrs[A_DIGEST_URI].n = "Digest-URI";
attrs[A_DIGEST_NONCE].n = "Digest-Nonce";
attrs[A_DIGEST_REALM].n = "Digest-Realm";
attrs[A_DIGEST_USER_NAME].n = "Digest-User-Name";
attrs[A_USER_NAME].n = "User-Name";
attrs[A_CISCO_AVPAIR].n = "Cisco-AVPair";
attrs[A_SIP_AVP].n = "SIP-AVP";
vals[V_SIP_SESSION].n = "Sip-Session";
if ((rh = rc_read_config(radius_config)) == NULL) {
LOG(L_ERR, "auth_radius: Error opening configuration file \n");
return -1;
}
if (rc_read_dictionary(rh, rc_conf_str(rh, "dictionary")) != 0) {
LOG(L_ERR, "auth_radius: Error opening dictionary file \n");
return -2;
}
vend = rc_dict_findvend(rh, "Cisco");
if (vend == NULL) {
DBG("auth_radius: No `Cisco' vendor in Radius "
"dictionary\n");
attrs[A_CISCO_AVPAIR].n = NULL;
}
bind_auth = (bind_auth_t)find_export("bind_auth", 0, 0);
if (!bind_auth) {
LOG(L_ERR, "auth_radius: Unable to find bind_auth function\n");
return -1;
}
if (bind_auth(&auth_api) < 0) {
LOG(L_ERR, "auth_radius: Cannot bind to auth module\n");
return -4;
}
INIT_AV(rh, attrs, A_MAX, vals, "auth_radius", -5, -6);
if (service_type != -1) {
vals[V_SIP_SESSION].v = service_type;
}
return 0;
}
/*
* Convert char* parameter to xl_elem_t* parameter
*/
static int auth_fixup(void** param, int param_no)
{
xl_elem_t *model;
char* s;
if (param_no == 1) {
s = (char*)*param;
if (s==0 || s[0]==0) {
model = 0;
} else {
if (xl_parse_format(s,&model,XL_DISABLE_COLORS)<0) {
LOG(L_ERR, "ERROR:auth_radius:auth_fixup: xl_parse_format "
"failed\n");
return E_OUT_OF_MEM;
}
}
*param = (void*)model;
}
return 0;
}
|