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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
|
/*
* $Id: auth.c,v 1.5 2006/05/19 09:45:49 bogdan_iancu Exp $
*
* Copyright (C) 2005 Voice Sistem SRL
*
* This file is part of openser, a free SIP server.
*
* UAC OpenSER-module 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.
*
* UAC OpenSER-module 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:
* ---------
* 2005-01-31 first version (ramona)
* 2006-03-02 UAC authentication looks first in AVPs for credential (bogdan)
*/
#include <ctype.h>
#include <string.h>
#include "../../str.h"
#include "../../dprint.h"
#include "../../items.h"
#include "../../data_lump.h"
#include "../../mem/mem.h"
#include "../tm/tm_load.h"
#include "auth.h"
#include "auth_alg.h"
#include "auth_hdr.h"
extern struct tm_binds uac_tmb;
extern xl_spec_t auth_username_spec;
extern xl_spec_t auth_realm_spec;
extern xl_spec_t auth_password_spec;
static struct uac_credential *crd_list = 0;
#define duplicate_str(_strd, _strs, _error) \
do { \
_strd.s = (char*)pkg_malloc(_strs.len); \
if (_strd.s==0) \
{ \
LOG(L_ERR,"ERROR:uac:add_credential: " \
"no more pkg memory\n");\
goto _error; \
} \
memcpy( _strd.s, _strs.s, _strs.len); \
_strd.len = _strs.len; \
}while(0)
#define WWW_AUTH_CODE 401
#define WWW_AUTH_HDR "WWW-Authenticate"
#define WWW_AUTH_HDR_LEN (sizeof(WWW_AUTH_HDR)-1)
#define PROXY_AUTH_CODE 407
#define PROXY_AUTH_HDR "Proxy-Authenticate"
#define PROXY_AUTH_HDR_LEN (sizeof(PROXY_AUTH_HDR)-1)
int has_credentials()
{
return (crd_list!=0)?1:0;
}
void free_credential(struct uac_credential *crd)
{
if (crd)
{
if (crd->realm.s)
pkg_free(crd->realm.s);
if (crd->user.s)
pkg_free(crd->user.s);
if (crd->passwd.s)
pkg_free(crd->passwd.s);
pkg_free(crd);
}
}
int add_credential( unsigned int type, void *val)
{
struct uac_credential *crd;
char *p;
str foo;
p = (char*)val;
crd = 0;
if (p==0 || *p==0)
goto error;
crd = (struct uac_credential*)pkg_malloc(sizeof(struct uac_credential));
if (crd==0)
{
LOG(L_ERR,"ERROR:uac:add_credential: no more pkg mem\n");
goto error;
}
memset( crd, 0, sizeof(struct uac_credential));
/*parse the user */
while (*p && isspace((int)*p)) p++;
foo.s = p;
while (*p && *p!=':' && !isspace((int)*p)) p++;
if (foo.s==p || *p==0)
/* missing or empty user */
goto parse_error;
foo.len = p - foo.s;
/* dulicate it */
duplicate_str( crd->user, foo, error);
/* parse the ':' separator */
while (*p && isspace((int)*p)) p++;
if (*p!=':')
goto parse_error;
p++;
while (*p && isspace((int)*p)) p++;
if (*p==0)
goto parse_error;
/*parse the realm */
while (*p && isspace((int)*p)) p++;
foo.s = p;
while (*p && *p!=':' && !isspace((int)*p)) p++;
if (foo.s==p || *p==0)
/* missing or empty realm */
goto parse_error;
foo.len = p - foo.s;
/* dulicate it */
duplicate_str( crd->realm, foo, error);
/* parse the ':' separator */
while (*p && isspace((int)*p)) p++;
if (*p!=':')
goto parse_error;
p++;
while (*p && isspace((int)*p)) p++;
if (*p==0)
goto parse_error;
/*parse the passwd */
while (*p && isspace((int)*p)) p++;
foo.s = p;
while (*p && !isspace((int)*p)) p++;
if (foo.s==p)
/* missing or empty passwd */
goto parse_error;
foo.len = p - foo.s;
/* dulicate it */
duplicate_str( crd->passwd, foo, error);
/* end of string */
while (*p && isspace((int)*p)) p++;
if (*p!=0)
goto parse_error;
/* link the new cred struct */
crd->next = crd_list;
crd_list = crd;
pkg_free(val);
return 0;
parse_error:
LOG(L_ERR,"ERROR:uac:add_credential: parse error in <%s> "
"around %ld\n", (char*)val, (long)(p-(char*)val));
error:
if (crd)
free_credential(crd);
return -1;
}
void destroy_credentials()
{
struct uac_credential *foo;
while (crd_list)
{
foo = crd_list;
crd_list = crd_list->next;
free_credential(foo);
}
crd_list = 0;
}
static inline struct hdr_field *get_autenticate_hdr(struct sip_msg *rpl,
int rpl_code)
{
struct hdr_field *hdr;
str hdr_name;
/* what hdr should we look for */
if (rpl_code==WWW_AUTH_CODE)
{
hdr_name.s = WWW_AUTH_HDR;
hdr_name.len = WWW_AUTH_HDR_LEN;
} else if (rpl_code==PROXY_AUTH_CODE) {
hdr_name.s = PROXY_AUTH_HDR;
hdr_name.len = PROXY_AUTH_HDR_LEN;
} else {
LOG( L_ERR,"ERROR:uac:get_autenticate_hdr: reply is not an "
"auth request\n");
goto error;
}
DBG("DEBUG:uac:get_autenticate_hdr: looking for header \"%.*s\"\n",
hdr_name.len, hdr_name.s);
/* search the auth hdr, but first parse them all */
if (parse_headers( rpl, HDR_EOH_F, 0)<0)
{
LOG( L_ERR,"ERROR:uac:get_autenticate_hdr: failed to parse reply\n");
goto error;
}
for( hdr=rpl->headers ; hdr ; hdr=hdr->next )
{
if ( hdr->type!=HDR_OTHER_T )
continue;
if (hdr->name.len==hdr_name.len &&
strncasecmp(hdr->name.s,hdr_name.s, hdr_name.len)==0 )
return hdr;
}
LOG( L_ERR,"ERROR:uac:get_autenticate_hdr: reply has no "
"auth hdr (%.*s)\n", hdr_name.len, hdr_name.s);
error:
return 0;
}
static inline struct uac_credential *lookup_realm( str *realm)
{
struct uac_credential *crd;
for( crd=crd_list ; crd ; crd=crd->next )
if (realm->len==crd->realm.len &&
strncmp( realm->s, crd->realm.s, realm->len)==0 )
return crd;
return 0;
}
static inline struct uac_credential *get_avp_credential(struct sip_msg *msg,
str *realm)
{
static struct uac_credential crd;
xl_value_t xl_val;
if(xl_get_spec_value( msg, &auth_realm_spec, &xl_val, 0)!=0
|| xl_val.flags&XL_VAL_NULL || xl_val.rs.len<=0)
return 0;
crd.realm = xl_val.rs;
/* is it the domain we are looking for? */
if (realm->len!=crd.realm.len ||
strncmp( realm->s, crd.realm.s, realm->len)!=0 )
return 0;
/* get username and password */
if(xl_get_spec_value( msg, &auth_username_spec, &xl_val, 0)!=0
|| xl_val.flags&XL_VAL_NULL || xl_val.rs.len<=0)
return 0;
crd.user = xl_val.rs;
if(xl_get_spec_value( msg, &auth_password_spec, &xl_val, 0)!=0
|| xl_val.flags&XL_VAL_NULL || xl_val.rs.len<=0)
return 0;
crd.passwd = xl_val.rs;
return &crd;
}
static inline void do_uac_auth(struct sip_msg *req, str *uri,
struct uac_credential *crd, struct authenticate_body *auth,
HASHHEX response)
{
HASHHEX ha1;
HASHHEX ha2;
/* do authentication */
uac_calc_HA1( crd, auth, 0/*cnonce*/, ha1);
uac_calc_HA2( &req->first_line.u.request.method, uri,
auth, 0/*hentity*/, ha2 );
uac_calc_response( ha1, ha2, auth, 0/*nc*/, 0/*cnonce*/, response);
}
static inline int apply_urihdr_changes( struct sip_msg *req,
str *uri, str *hdr)
{
struct lump* anchor;
/* add the uri - move it to branch directly FIXME (bogdan)*/
if (req->new_uri.s)
{
pkg_free(req->new_uri.s);
req->new_uri.len=0;
}
req->parsed_uri_ok=0;
req->new_uri.s = (char*)pkg_malloc(uri->len+1);
if (req->new_uri.s==0)
{
LOG(L_ERR,"ERROR:uac:apply_urihdr_changes: no more pkg\n");
goto error;
}
memcpy( req->new_uri.s, uri->s, uri->len);
req->new_uri.s[uri->len]=0;
req->new_uri.len=uri->len;
/* add the header */
if (parse_headers(req, HDR_EOH_F, 0) == -1)
{
LOG(L_ERR,"ERROR:uac:apply_urihdr_changes: failed to parse message\n");
goto error;
}
anchor = anchor_lump(req, req->unparsed - req->buf, 0, 0);
if (anchor==0)
{
LOG(L_ERR,"ERROR:uac:apply_urihdr_changes: failed to get anchor\n");
goto error;
}
if (insert_new_lump_before(anchor, hdr->s, hdr->len, 0) == 0)
{
LOG(L_ERR,"ERROR:uac:apply_urihdr_changes: faield to insert lump\n");
goto error;
}
return 0;
error:
pkg_free( hdr->s );
return -1;
}
int uac_auth( struct sip_msg *msg)
{
static struct authenticate_body auth;
struct uac_credential *crd;
int code, branch;
struct sip_msg *rpl;
struct cell *t;
struct hdr_field *hdr;
HASHHEX response;
str *new_hdr;
/* get transaction */
t = uac_tmb.t_gett();
if (t==T_UNDEFINED || t==T_NULL_CELL)
{
LOG(LOG_CRIT,"BUG:uac:uac_auth: no current transaction found\n");
goto error;
}
/* get the selected branch */
branch = uac_tmb.t_get_picked();
if (branch<0) {
LOG(L_CRIT,"BUG:uac:uac_auth: no picked branch (%d)\n",branch);
goto error;
}
rpl = t->uac[branch].reply;
code = t->uac[branch].last_received;
DBG("DEBUG:uac:uac_auth: picked reply is %p, code %d\n",rpl,code);
if (rpl==0)
{
LOG(L_CRIT,"BUG:uac:uac_auth: empty reply on picked branch\n");
goto error;
}
if (rpl==FAKED_REPLY)
{
LOG(L_ERR,"ERROR:uac:uac_auth: cannot process a FAKED reply\n");
goto error;
}
hdr = get_autenticate_hdr( rpl, code);
if (hdr==0)
{
LOG( L_ERR,"ERROR:uac:uac_auth: failed to extract authenticate hdr\n");
goto error;
}
DBG("DEBUG:uac:uac_auth: header found; body=<%.*s>\n",
hdr->body.len, hdr->body.s);
if (parse_authenticate_body( &hdr->body, &auth)<0)
{
LOG(L_ERR,"ERROR:uac:uac_auth: failed to parse auth hdr body\n");
goto error;
}
/* can we authenticate this realm? */
crd = 0;
/* first look into AVP, if set */
if ( auth_realm_spec.type==XL_AVP )
crd = get_avp_credential( msg, &auth.realm );
/* if not found, look into predefined credentials */
if (crd==0)
crd = lookup_realm( &auth.realm );
/* found? */
if (crd==0)
{
DBG("DEBUG:uac:uac_auth: no credential for realm \"%.*s\"\n",
auth.realm.len, auth.realm.s);
goto error;
}
/* do authentication */
do_uac_auth( msg, &t->uac[branch].uri, crd, &auth, response);
/* build the authorization header */
new_hdr = build_authorization_hdr( code, &t->uac[branch].uri,
crd, &auth, response);
if (new_hdr==0)
{
LOG(L_ERR,"ERROR:uac:uac_auth: failed to build authorization hdr\n");
goto error;
}
/* so far, so good -> add the header and set the proper RURI */
if ( apply_urihdr_changes( msg, &t->uac[branch].uri, new_hdr)<0 )
{
LOG(L_ERR,"ERROR:uac:uac_auth: failed to apply changes\n");
goto error;
}
/* increas the Cseq nr */
return 0;
error:
return -1;
}
|