]> git.ipfire.org Git - thirdparty/squid.git/blame - src/auth/basic/auth_basic.cc
Reduce application abort to using max level IFF level given is >max
[thirdparty/squid.git] / src / auth / basic / auth_basic.cc
CommitLineData
94439e4e 1/*
76f142cd 2 * $Id: auth_basic.cc,v 1.48 2007/05/09 07:36:26 wessels Exp $
94439e4e 3 *
4 * DEBUG: section 29 Authenticator
5 * AUTHOR: Duane Wessels
6 *
2b6662ba 7 * SQUID Web Proxy Cache http://www.squid-cache.org/
94439e4e 8 * ----------------------------------------------------------
9 *
2b6662ba 10 * Squid is the result of efforts by numerous individuals from
11 * the Internet community; see the CONTRIBUTORS file for full
12 * details. Many organizations have provided support for Squid's
13 * development; see the SPONSORS file for full details. Squid is
14 * Copyrighted (C) 2001 by the Regents of the University of
15 * California; see the COPYRIGHT file for full details. Squid
16 * incorporates software developed and/or copyrighted by other
17 * sources; see the CREDITS file for full details.
94439e4e 18 *
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
32 *
33 */
34
35/* The functions in this file handle authentication.
36 * They DO NOT perform access control or auditing.
37 * See acl.c for access control and client_side.c for auditing */
38
39
40#include "squid.h"
41#include "auth_basic.h"
e6ccf245 42#include "authenticate.h"
62ee09ca 43#include "CacheManager.h"
e6ccf245 44#include "Store.h"
924f73bc 45#include "HttpReply.h"
f5691f9c 46#include "basicScheme.h"
d295d770 47#include "wordlist.h"
985c86bc 48#include "SquidTime.h"
94439e4e 49
50static void
e6ccf245 51authenticateStateFree(AuthenticateStateData * r)
94439e4e 52{
53 cbdataFree(r);
54}
55
56/* Basic Scheme */
57
58static HLPCB authenticateBasicHandleReply;
94439e4e 59static AUTHSSTATS authenticateBasicStats;
94439e4e 60
61static helper *basicauthenticators = NULL;
62
f5691f9c 63static AuthBasicConfig basicConfig;
94439e4e 64
65static int authbasic_initialised = 0;
94439e4e 66
2d72d4fd 67
94439e4e 68/*
69 *
2d72d4fd 70 * Public Functions
94439e4e 71 *
72 */
73
2d72d4fd 74/* internal functions */
75
f5691f9c 76/* TODO: move to basicScheme.cc - after all per request and user functions are moved out */
77void
78basicScheme::done()
2d72d4fd 79{
f5691f9c 80 /* TODO: this should be a Config call. */
81
2d72d4fd 82 if (basicauthenticators)
62e76326 83 helperShutdown(basicauthenticators);
84
2d72d4fd 85 authbasic_initialised = 0;
62e76326 86
2d72d4fd 87 if (!shutting_down)
62e76326 88 return;
89
2d72d4fd 90 if (basicauthenticators)
62e76326 91 helperFree(basicauthenticators);
92
2d72d4fd 93 basicauthenticators = NULL;
62e76326 94
f5691f9c 95 /* XXX Reinstate auth shutdown for dynamic schemes? */
bf8fe701 96 debugs(29, 2, "authBasicDone: Basic authentication Shutdown.");
2d72d4fd 97}
98
f5691f9c 99bool
100AuthBasicConfig::active() const
2d70df72 101{
f5691f9c 102 return authbasic_initialised == 1;
2d70df72 103}
104
f5691f9c 105bool
106AuthBasicConfig::configured() const
94439e4e 107{
f5691f9c 108 if ((authenticate != NULL) && (authenticateChildren != 0) &&
109 (basicAuthRealm != NULL)) {
bf8fe701 110 debugs(29, 9, "authBasicConfigured: returning configured");
f5691f9c 111 return true;
2d70df72 112 }
62e76326 113
bf8fe701 114 debugs(29, 9, "authBasicConfigured: returning unconfigured");
f5691f9c 115 return false;
94439e4e 116}
117
f5691f9c 118const char *
119AuthBasicConfig::type() const
94439e4e 120{
f5691f9c 121 return basicScheme::GetInstance().type();
122}
62e76326 123
f5691f9c 124AuthBasicUserRequest::AuthBasicUserRequest() : _theUser(NULL)
125{}
126
127AuthBasicUserRequest::~AuthBasicUserRequest()
128{}
129
130
131bool
132BasicUser::authenticated() const
94439e4e 133{
f5691f9c 134 if ((flags.credentials_ok == 1) && (credentials_checkedtime + basicConfig.credentialsTTL > squid_curtime))
135 return true;
136
bf8fe701 137 debugs(29, 4, "User not authenticated or credentials need rechecking.");
f5691f9c 138
139 return false;
94439e4e 140}
62e76326 141
f5691f9c 142int
143AuthBasicUserRequest::authenticated() const
144{
145 BasicUser const *basic_auth = dynamic_cast<BasicUser const *>(user());
146 assert (user());
147
148 if (basic_auth->authenticated())
149 return 1;
150
151 return 0;
152}
94439e4e 153
154/* log a basic user in
155 */
f5691f9c 156void
157AuthBasicUserRequest::authenticate(HttpRequest * request, ConnStateData::Pointer conn, http_hdr_type type)
94439e4e 158{
f5691f9c 159 assert(user() != NULL);
94439e4e 160
f5691f9c 161 basic_data *basic_auth = dynamic_cast<BasicUser *>(user());
9bea1d5b 162
bd507204 163 /* if the password is not ok, do an identity */
62e76326 164
bd507204 165 if (basic_auth->flags.credentials_ok != 1)
62e76326 166 return;
94439e4e 167
168 /* are we about to recheck the credentials externally? */
f5691f9c 169 if ((basic_auth->credentials_checkedtime + basicConfig.credentialsTTL) <= squid_curtime) {
bf8fe701 170 debugs(29, 4, "authBasicAuthenticate: credentials expired - rechecking");
62e76326 171 return;
94439e4e 172 }
62e76326 173
94439e4e 174 /* we have been through the external helper, and the credentials haven't expired */
bf8fe701 175 debugs(29, 9, "authenticateBasicAuthenticateuser: user '" << basic_auth->username() << "' authenticated");
94439e4e 176
f5691f9c 177 /* Decode now takes care of finding the AuthUser struct in the cache */
94439e4e 178 /* after external auth occurs anyway */
f5691f9c 179 basic_auth->expiretime = current_time.tv_sec;
62e76326 180
94439e4e 181 return;
182}
183
184int
f5691f9c 185AuthBasicUserRequest::module_direction()
94439e4e 186{
62e76326 187 /* null auth_user is checked for by authenticateDirection */
f5691f9c 188 basic_data *basic_auth = dynamic_cast<BasicUser *>(user());
189 assert (basic_auth);
62e76326 190
bd507204 191 switch (basic_auth->flags.credentials_ok) {
62e76326 192
94439e4e 193 case 0: /* not checked */
62e76326 194 return -1;
195
94439e4e 196 case 1: /* checked & ok */
62e76326 197
f5691f9c 198 if (basic_auth->credentials_checkedtime + basicConfig.credentialsTTL <= squid_curtime)
62e76326 199 return -1;
200
201 return 0;
202
94439e4e 203 case 2: /* paused while waiting for a username:password check on another request */
62e76326 204 return -1;
205
94439e4e 206 case 3: /* authentication process failed. */
88d3f890 207 return 0;
94439e4e 208 }
62e76326 209
94439e4e 210 return -2;
211}
212
213void
76f142cd 214AuthBasicConfig::fixHeader(AuthUserRequest *auth_user_request, HttpReply *rep, http_hdr_type type, HttpRequest * request)
94439e4e 215{
f5691f9c 216 if (authenticate) {
bf8fe701 217 debugs(29, 9, "authenticateFixErrorHeader: Sending type:" << type << " header: 'Basic realm=\"" << basicAuthRealm << "\"'");
f5691f9c 218 httpHeaderPutStrf(&rep->header, type, "Basic realm=\"%s\"", basicAuthRealm);
94439e4e 219 }
220}
221
222/* free any allocated configuration details */
223void
f5691f9c 224AuthBasicConfig::done()
94439e4e 225{
f5691f9c 226 if (authenticate)
227 wordlistDestroy(&authenticate);
62e76326 228
f5691f9c 229 if (basicAuthRealm)
230 safe_free(basicAuthRealm);
94439e4e 231}
232
f5691f9c 233BasicUser::~BasicUser()
94439e4e 234{
f5691f9c 235 if (passwd)
236 xfree(passwd);
62e76326 237
f5691f9c 238 safe_free (cleartext);
94439e4e 239}
240
241static void
242authenticateBasicHandleReply(void *data, char *reply)
243{
e6ccf245 244 AuthenticateStateData *r = static_cast<AuthenticateStateData *>(data);
e6ccf245 245 BasicAuthQueueNode *tmpnode;
94439e4e 246 char *t = NULL;
fa80a8ef 247 void *cbdata;
bf8fe701 248 debugs(29, 9, "authenticateBasicHandleReply: {" << (reply ? reply : "<NULL>") << "}");
62e76326 249
94439e4e 250 if (reply) {
62e76326 251 if ((t = strchr(reply, ' ')))
0a0c70cd 252 *t++ = '\0';
62e76326 253
254 if (*reply == '\0')
255 reply = NULL;
94439e4e 256 }
62e76326 257
94439e4e 258 assert(r->auth_user_request != NULL);
f5691f9c 259 assert(r->auth_user_request->user()->auth_type == AUTH_BASIC);
260 basic_data *basic_auth = dynamic_cast<basic_data *>(r->auth_user_request->user());
62e76326 261
94439e4e 262 if (reply && (strncasecmp(reply, "OK", 2) == 0))
62e76326 263 basic_auth->flags.credentials_ok = 1;
0a0c70cd 264 else {
62e76326 265 basic_auth->flags.credentials_ok = 3;
266
0a0c70cd 267 if (t && *t)
268 r->auth_user_request->setDenyMessage(t);
269 }
270
94439e4e 271 basic_auth->credentials_checkedtime = squid_curtime;
62e76326 272
fa80a8ef 273 if (cbdataReferenceValidDone(r->data, &cbdata))
62e76326 274 r->handler(cbdata, NULL);
275
fa80a8ef 276 cbdataReferenceDone(r->data);
62e76326 277
f2afa96a 278 while (basic_auth->auth_queue) {
62e76326 279 tmpnode = basic_auth->auth_queue->next;
280
281 if (cbdataReferenceValidDone(basic_auth->auth_queue->data, &cbdata))
282 basic_auth->auth_queue->handler(cbdata, NULL);
283
284 xfree(basic_auth->auth_queue);
285
286 basic_auth->auth_queue = tmpnode;
94439e4e 287 }
62e76326 288
94439e4e 289 authenticateStateFree(r);
290}
291
f5691f9c 292void
293AuthBasicConfig::dump(StoreEntry * entry, const char *name, AuthConfig * scheme)
94439e4e 294{
f5691f9c 295 wordlist *list = authenticate;
94439e4e 296 storeAppendPrintf(entry, "%s %s", name, "basic");
62e76326 297
94439e4e 298 while (list != NULL) {
62e76326 299 storeAppendPrintf(entry, " %s", list->key);
300 list = list->next;
94439e4e 301 }
62e76326 302
07eca7e0 303 storeAppendPrintf(entry, "\n");
304
f5691f9c 305 storeAppendPrintf(entry, "%s basic realm %s\n", name, basicAuthRealm);
306 storeAppendPrintf(entry, "%s basic children %d\n", name, authenticateChildren);
307 storeAppendPrintf(entry, "%s basic concurrency %d\n", name, authenticateConcurrency);
308 storeAppendPrintf(entry, "%s basic credentialsttl %d seconds\n", name, (int) credentialsTTL);
64658378 309 storeAppendPrintf(entry, "%s basic casesensitive %s\n", name, casesensitive ? "on" : "off");
94439e4e 310
311}
312
f5691f9c 313AuthBasicConfig::AuthBasicConfig()
314{
315 /* TODO: move into initialisation list */
316 authenticateChildren = 5;
317 credentialsTTL = 2 * 60 * 60; /* two hours */
75126633 318 basicAuthRealm = xstrdup("Squid proxy-caching web server");
f5691f9c 319}
62e76326 320
f5691f9c 321void
322AuthBasicConfig::parse(AuthConfig * scheme, int n_configured, char *param_str)
323{
94439e4e 324 if (strcasecmp(param_str, "program") == 0) {
f5691f9c 325 if (authenticate)
326 wordlistDestroy(&authenticate);
62e76326 327
f5691f9c 328 parse_wordlist(&authenticate);
62e76326 329
f5691f9c 330 requirePathnameExists("authparam basic program", authenticate->key);
94439e4e 331 } else if (strcasecmp(param_str, "children") == 0) {
f5691f9c 332 parse_int(&authenticateChildren);
07eca7e0 333 } else if (strcasecmp(param_str, "concurrency") == 0) {
f5691f9c 334 parse_int(&authenticateConcurrency);
94439e4e 335 } else if (strcasecmp(param_str, "realm") == 0) {
f5691f9c 336 parse_eol(&basicAuthRealm);
94439e4e 337 } else if (strcasecmp(param_str, "credentialsttl") == 0) {
f5691f9c 338 parse_time_t(&credentialsTTL);
64658378 339 } else if (strcasecmp(param_str, "casesensitive") == 0) {
340 parse_onoff(&casesensitive);
94439e4e 341 } else {
bf8fe701 342 debugs(29, 0, "unrecognised basic auth scheme parameter '" << param_str << "'");
94439e4e 343 }
344}
345
346static void
347authenticateBasicStats(StoreEntry * sentry)
348{
9522b380 349 helperStats(sentry, basicauthenticators, "Basic Authenticator Statistics");
94439e4e 350}
351
e6ccf245 352CBDATA_TYPE(AuthenticateStateData);
94439e4e 353
2d72d4fd 354static auth_user_t *
94439e4e 355authBasicAuthUserFindUsername(const char *username)
356{
e6ccf245 357 AuthUserHashPointer *usernamehash;
bf8fe701 358 debugs(29, 9, "authBasicAuthUserFindUsername: Looking for user '" << username << "'");
62e76326 359
e6ccf245 360 if (username && (usernamehash = static_cast<AuthUserHashPointer *>(hash_lookup(proxy_auth_username_cache, username)))) {
62e76326 361 while (usernamehash) {
f5691f9c 362 if ((usernamehash->user()->auth_type == AUTH_BASIC) &&
62e76326 363 !strcmp(username, (char const *)usernamehash->key))
f5691f9c 364 return usernamehash->user();
62e76326 365
366 usernamehash = static_cast<AuthUserHashPointer *>(usernamehash->next);
367 }
94439e4e 368 }
62e76326 369
94439e4e 370 return NULL;
371}
372
f5691f9c 373void
374BasicUser::deleteSelf() const
375{
376 delete this;
377}
94439e4e 378
f5691f9c 379BasicUser::BasicUser(AuthConfig *config) : AuthUser (config) , passwd (NULL), credentials_checkedtime(0), auth_queue(NULL), cleartext (NULL), currentRequest (NULL), httpAuthHeader (NULL)
380{
381 flags.credentials_ok = 0;
382}
62e76326 383
35b3bc89 384bool
f5691f9c 385BasicUser::decodeCleartext()
386{
387 char *sent_auth;
94439e4e 388 /* username and password */
f5691f9c 389 sent_auth = xstrdup(httpAuthHeader);
94439e4e 390 /* Trim trailing \n before decoding */
391 strtok(sent_auth, "\n");
62e76326 392
94439e4e 393 cleartext = uudecode(sent_auth);
62e76326 394
94439e4e 395 xfree(sent_auth);
62e76326 396
94439e4e 397 /*
398 * Don't allow NL or CR in the credentials.
399 * Oezguer Kesim <oec@codeblau.de>
400 */
bf8fe701 401 debugs(29, 9, "BasicUser::decodeCleartext: '" << cleartext << "'");
62e76326 402
36a04c15 403 if (strcspn(cleartext, "\r\n") != strlen(cleartext)) {
bf8fe701 404 debugs(29, 1, "BasicUser::decodeCleartext: bad characters in authorization header '" << httpAuthHeader << "'");
147c7544 405 safe_free(cleartext);
406 return false;
36a04c15 407 }
35b3bc89 408 return true;
409}
36a04c15 410
35b3bc89 411void
412BasicUser::extractUsername()
413{
36a04c15 414 char * tempusername = cleartext;
f5691f9c 415 /* terminate the username string */
62e76326 416
411c6ea3 417 if ((cleartext = strchr(tempusername, ':')) != NULL)
62e76326 418 *(cleartext)++ = '\0';
64658378 419
411c6ea3 420 username (tempusername);
421
64658378 422 if (!basicConfig.casesensitive)
423 Tolower((char *)username());
f5691f9c 424}
62e76326 425
f5691f9c 426void
427BasicUser::extractPassword()
428{
429 passwd = cleartext;
62e76326 430
94439e4e 431 if (cleartext == NULL) {
bf8fe701 432 debugs(29, 4, "authenticateBasicDecodeAuth: no password in proxy authorization header '" << httpAuthHeader << "'");
f5691f9c 433 passwd = NULL;
434 currentRequest->setDenyMessage ("no password was present in the HTTP [proxy-]authorization header. This is most likely a browser bug");
94439e4e 435 } else if (*cleartext == '\0') {
bf8fe701 436 debugs(29, 4, "authenticateBasicDecodeAuth: Disallowing empty password,user is '" << username() << "'");
f5691f9c 437 passwd = NULL;
438 currentRequest->setDenyMessage ("Request denied because you provided an empty password. Users MUST have a password.");
94439e4e 439 }
62e76326 440
f5691f9c 441 if (passwd)
442 passwd = xstrndup(cleartext, USER_IDENT_SZ);
62e76326 443
f5691f9c 444 cleartext = NULL;
445}
94439e4e 446
f5691f9c 447void
448BasicUser::decode(char const *proxy_auth, AuthUserRequest *auth_user_request)
449{
450 currentRequest = auth_user_request;
451 httpAuthHeader = proxy_auth;
35b3bc89 452 if (decodeCleartext ()) {
453 extractUsername();
147c7544 454 extractPassword();
35b3bc89 455 }
f5691f9c 456 currentRequest = NULL;
457 httpAuthHeader = NULL;
458}
459
460bool
461BasicUser::valid() const
462{
147c7544 463 if (username() == NULL)
464 return false;
465 if (passwd == NULL)
466 return false;
467 return true;
f5691f9c 468}
94439e4e 469
f5691f9c 470void
471BasicUser::makeLoggingInstance(AuthBasicUserRequest *auth_user_request)
472{
473 if (username()) {
474 /* log the username */
bf8fe701 475 debugs(29, 9, "authBasicDecodeAuth: Creating new user for logging '" << username() << "'");
62e76326 476 /* new scheme data */
f5691f9c 477 BasicUser *basic_auth = new BasicUser(& basicConfig);
478 auth_user_request->user(basic_auth);
62e76326 479 /* save the credentials */
f5691f9c 480 basic_auth->username(username());
481 username(NULL);
62e76326 482 /* set the auth_user type */
f5691f9c 483 basic_auth->auth_type = AUTH_BROKEN;
484 /* link the request to the user */
485 basic_auth->addRequest(auth_user_request);
486 }
487}
488
489AuthUser *
490BasicUser::makeCachedFrom()
491{
492 /* the user doesn't exist in the username cache yet */
bf8fe701 493 debugs(29, 9, "authBasicDecodeAuth: Creating new user '" << username() << "'");
f5691f9c 494 BasicUser *basic_user = new BasicUser(&basicConfig);
495 /* save the credentials */
496 basic_user->username(username());
497 username(NULL);
498 basic_user->passwd = passwd;
499 passwd = NULL;
500 /* set the auth_user type */
501 basic_user->auth_type = AUTH_BASIC;
502 /* current time for timeouts */
503 basic_user->expiretime = current_time.tv_sec;
504
505 /* this basic_user struct is the 'lucky one' to get added to the username cache */
506 /* the requests after this link to the basic_user */
507 /* store user in hash */
508 basic_user->addToNameCache();
509 return basic_user;
510}
511
512void
513BasicUser::updateCached(BasicUser *from)
514{
bf8fe701 515 debugs(29, 9, "authBasicDecodeAuth: Found user '" << from->username() << "' in the user cache as '" << this << "'");
f5691f9c 516
517 if (strcmp(from->passwd, passwd)) {
bf8fe701 518 debugs(29, 4, "authBasicDecodeAuth: new password found. Updating in user master record and resetting auth state to unchecked");
f5691f9c 519 flags.credentials_ok = 0;
520 xfree(passwd);
521 passwd = from->passwd;
522 from->passwd = NULL;
523 }
524
525 if (flags.credentials_ok == 3) {
bf8fe701 526 debugs(29, 4, "authBasicDecodeAuth: last attempt to authenticate this user failed, resetting auth state to unchecked");
f5691f9c 527 flags.credentials_ok = 0;
528 }
529}
530
531/*
532 * Decode a Basic [Proxy-]Auth string, linking the passed
533 * auth_user_request structure to any existing user structure or creating one
534 * if needed. Note that just returning will be treated as
535 * "cannot decode credentials". Use the message field to return a
536 * descriptive message to the user.
537 */
538AuthUserRequest *
539AuthBasicConfig::decode(char const *proxy_auth)
540{
541 AuthBasicUserRequest *auth_user_request = new AuthBasicUserRequest();
542 /* decode the username */
543 /* trim BASIC from string */
544
ba53f4b8 545 while (xisgraph(*proxy_auth))
f5691f9c 546 proxy_auth++;
547
548 BasicUser *basic_auth, local_basic(&basicConfig);
549
550 /* Trim leading whitespace before decoding */
551 while (xisspace(*proxy_auth))
552 proxy_auth++;
553
554 local_basic.decode(proxy_auth, auth_user_request);
555
556 if (!local_basic.valid()) {
557 local_basic.makeLoggingInstance(auth_user_request);
558 return auth_user_request;
94439e4e 559 }
62e76326 560
f5691f9c 561 /* now lookup and see if we have a matching auth_user structure in
562 * memory. */
62e76326 563
f5691f9c 564 auth_user_t *auth_user;
62e76326 565
f5691f9c 566 if ((auth_user = authBasicAuthUserFindUsername(local_basic.username())) == NULL) {
567 auth_user = local_basic.makeCachedFrom();
568 basic_auth = dynamic_cast<BasicUser *>(auth_user);
569 assert (basic_auth);
570 } else {
571 basic_auth = dynamic_cast<BasicUser *>(auth_user);
572 assert (basic_auth);
573 basic_auth->updateCached (&local_basic);
574 }
62e76326 575
f5691f9c 576 /* link the request to the in-cache user */
577 auth_user_request->user(basic_auth);
62e76326 578
f5691f9c 579 basic_auth->addRequest(auth_user_request);
580
581 return auth_user_request;
94439e4e 582}
583
584/* Initialize helpers and the like for this auth scheme. Called AFTER parsing the
585 * config file */
f5691f9c 586void
587AuthBasicConfig::init(AuthConfig * scheme)
94439e4e 588{
f5691f9c 589 if (authenticate) {
62e76326 590 authbasic_initialised = 1;
591
592 if (basicauthenticators == NULL)
593 basicauthenticators = helperCreate("basicauthenticator");
594
f5691f9c 595 basicauthenticators->cmdline = authenticate;
62e76326 596
f5691f9c 597 basicauthenticators->n_to_start = authenticateChildren;
62e76326 598
f5691f9c 599 basicauthenticators->concurrency = authenticateConcurrency;
07eca7e0 600
62e76326 601 basicauthenticators->ipc_type = IPC_STREAM;
602
603 helperOpenServers(basicauthenticators);
604
62e76326 605 CBDATA_INIT_TYPE(AuthenticateStateData);
94439e4e 606 }
607}
608
62ee09ca 609void
610AuthBasicConfig::registerWithCacheManager(CacheManager & manager)
611{
612 manager.registerAction("basicauthenticator",
613 "Basic User Authenticator Stats",
614 authenticateBasicStats, 0, 1);
615}
616
f5691f9c 617void
76f142cd 618BasicUser::queueRequest(AuthUserRequest * auth_user_request, RH * handler, void *data)
f5691f9c 619{
620 BasicAuthQueueNode *node;
621 node = static_cast<BasicAuthQueueNode *>(xmalloc(sizeof(BasicAuthQueueNode)));
622 assert(node);
623 /* save the details */
624 node->next = auth_queue;
625 auth_queue = node;
626 node->auth_user_request = auth_user_request;
627 node->handler = handler;
628 node->data = cbdataReference(data);
629}
630
94439e4e 631/* send the initial data to a basic authenticator module */
f5691f9c 632void
633AuthBasicUserRequest::module_start(RH * handler, void *data)
94439e4e 634{
94439e4e 635 basic_data *basic_auth;
f5691f9c 636 assert(user()->auth_type == AUTH_BASIC);
637 basic_auth = dynamic_cast<basic_data *>(user());
bf8fe701 638 debugs(29, 9, "AuthBasicUserRequest::start: '" << basic_auth->username() << ":" << basic_auth->passwd << "'");
62e76326 639
f5691f9c 640 if (basicConfig.authenticate == NULL) {
62e76326 641 handler(data, NULL);
642 return;
94439e4e 643 }
62e76326 644
94439e4e 645 /* check to see if the auth_user already has a request outstanding */
bd507204 646 if (basic_auth->flags.credentials_ok == 2) {
62e76326 647 /* there is a request with the same credentials already being verified */
f5691f9c 648 basic_auth->queueRequest(this, handler, data);
62e76326 649 return;
94439e4e 650 }
f5691f9c 651
652 basic_auth->submitRequest (this, handler, data);
94439e4e 653}
f5691f9c 654
655void
76f142cd 656BasicUser::submitRequest (AuthUserRequest * auth_user_request, RH * handler, void *data)
f5691f9c 657{
658 /* mark the user as haveing verification in progress */
659 flags.credentials_ok = 2;
660 AuthenticateStateData *r = NULL;
661 char buf[8192];
662 char user[1024], pass[1024];
663 r = cbdataAlloc(AuthenticateStateData);
664 r->handler = handler;
665 r->data = cbdataReference(data);
666 r->auth_user_request = auth_user_request;
667 xstrncpy(user, rfc1738_escape(username()), sizeof(user));
668 xstrncpy(pass, rfc1738_escape(passwd), sizeof(pass));
669 snprintf(buf, sizeof(buf), "%s %s\n", user, pass);
670 helperSubmit(basicauthenticators, buf, authenticateBasicHandleReply, r);
671}
672
673AuthConfig *
674basicScheme::createConfig()
675{
676 return &basicConfig;
677}
678