]> git.ipfire.org Git - thirdparty/squid.git/blob - src/auth/digest/auth_digest.cc
Merged from trunk
[thirdparty/squid.git] / src / auth / digest / auth_digest.cc
1 /*
2 * $Id$
3 *
4 * DEBUG: section 29 Authenticator
5 * AUTHOR: Robert Collins
6 *
7 * SQUID Internet Object Cache http://squid.nlanr.net/Squid/
8 * ----------------------------------------------------------
9 *
10 * Squid is the result of efforts by numerous individuals from the
11 * Internet community. Development is led by Duane Wessels of the
12 * National Laboratory for Applied Network Research and funded by the
13 * National Science Foundation. Squid is Copyrighted (C) 1998 by
14 * the Regents of the University of California. Please see the
15 * COPYRIGHT file for full details. Squid incorporates software
16 * developed and/or copyrighted by other sources. Please see the
17 * CREDITS file for full details.
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 "rfc2617.h"
42 #include "auth/digest/auth_digest.h"
43 #include "auth/Gadgets.h"
44 #include "event.h"
45 #include "CacheManager.h"
46 #include "Store.h"
47 #include "HttpRequest.h"
48 #include "HttpReply.h"
49 #include "wordlist.h"
50 #include "SquidTime.h"
51 /* TODO don't include this */
52 #include "auth/digest/digestScheme.h"
53 #include "auth/digest/digestUserRequest.h"
54
55 /* Digest Scheme */
56
57 static AUTHSSTATS authenticateDigestStats;
58
59 helper *digestauthenticators = NULL;
60
61 static hash_table *digest_nonce_cache;
62
63 static int authdigest_initialised = 0;
64 static MemAllocator *digest_nonce_pool = NULL;
65
66 // CBDATA_TYPE(DigestAuthenticateStateData);
67
68 enum http_digest_attr_type {
69 DIGEST_USERNAME,
70 DIGEST_REALM,
71 DIGEST_QOP,
72 DIGEST_ALGORITHM,
73 DIGEST_URI,
74 DIGEST_NONCE,
75 DIGEST_NC,
76 DIGEST_CNONCE,
77 DIGEST_RESPONSE,
78 DIGEST_ENUM_END
79 };
80
81 static const HttpHeaderFieldAttrs DigestAttrs[DIGEST_ENUM_END] = {
82 {"username", (http_hdr_type)DIGEST_USERNAME},
83 {"realm", (http_hdr_type)DIGEST_REALM},
84 {"qop", (http_hdr_type)DIGEST_QOP},
85 {"algorithm", (http_hdr_type)DIGEST_ALGORITHM},
86 {"uri", (http_hdr_type)DIGEST_URI},
87 {"nonce", (http_hdr_type)DIGEST_NONCE},
88 {"nc", (http_hdr_type)DIGEST_NC},
89 {"cnonce", (http_hdr_type)DIGEST_CNONCE},
90 {"response", (http_hdr_type)DIGEST_RESPONSE},
91 };
92
93 static HttpHeaderFieldInfo *DigestFieldsInfo = NULL;
94
95 /*
96 *
97 * Nonce Functions
98 *
99 */
100
101 static void authenticateDigestNonceCacheCleanup(void *data);
102 static digest_nonce_h *authenticateDigestNonceFindNonce(const char *nonceb64);
103 static digest_nonce_h *authenticateDigestNonceNew(void);
104 static void authenticateDigestNonceDelete(digest_nonce_h * nonce);
105 static void authenticateDigestNonceSetup(void);
106 static void authenticateDigestNonceShutdown(void);
107 static void authenticateDigestNonceReconfigure(void);
108 static int authDigestNonceIsStale(digest_nonce_h * nonce);
109 static void authDigestNonceEncode(digest_nonce_h * nonce);
110 static void authDigestNonceLink(digest_nonce_h * nonce);
111 #if NOT_USED
112 static int authDigestNonceLinks(digest_nonce_h * nonce);
113 #endif
114 static void authDigestNonceUserUnlink(digest_nonce_h * nonce);
115 static void authDigestNoncePurge(digest_nonce_h * nonce);
116
117 static void
118 authDigestNonceEncode(digest_nonce_h * nonce)
119 {
120 if (!nonce)
121 return;
122
123 if (nonce->key)
124 xfree(nonce->key);
125
126 nonce->key = xstrdup(base64_encode_bin((char *) &(nonce->noncedata), sizeof(digest_nonce_data)));
127 }
128
129 static digest_nonce_h *
130 authenticateDigestNonceNew(void)
131 {
132 digest_nonce_h *newnonce = static_cast < digest_nonce_h * >(digest_nonce_pool->alloc());
133 digest_nonce_h *temp;
134
135 /* NONCE CREATION - NOTES AND REASONING. RBC 20010108
136 * === EXCERPT FROM RFC 2617 ===
137 * The contents of the nonce are implementation dependent. The quality
138 * of the implementation depends on a good choice. A nonce might, for
139 * example, be constructed as the base 64 encoding of
140 *
141 * time-stamp H(time-stamp ":" ETag ":" private-key)
142 *
143 * where time-stamp is a server-generated time or other non-repeating
144 * value, ETag is the value of the HTTP ETag header associated with
145 * the requested entity, and private-key is data known only to the
146 * server. With a nonce of this form a server would recalculate the
147 * hash portion after receiving the client authentication header and
148 * reject the request if it did not match the nonce from that header
149 * or if the time-stamp value is not recent enough. In this way the
150 * server can limit the time of the nonce's validity. The inclusion of
151 * the ETag prevents a replay request for an updated version of the
152 * resource. (Note: including the IP address of the client in the
153 * nonce would appear to offer the server the ability to limit the
154 * reuse of the nonce to the same client that originally got it.
155 * However, that would break proxy farms, where requests from a single
156 * user often go through different proxies in the farm. Also, IP
157 * address spoofing is not that hard.)
158 * ====
159 *
160 * Now for my reasoning:
161 * We will not accept a unrecognised nonce->we have all recognisable
162 * nonces stored. If we send out unique base64 encodings we guarantee
163 * that a given nonce applies to only one user (barring attacks or
164 * really bad timing with expiry and creation). Using a random
165 * component in the nonce allows us to loop to find a unique nonce.
166 * We use H(nonce_data) so the nonce is meaningless to the reciever.
167 * So our nonce looks like base64(H(timestamp,pointertohash,randomdata))
168 * And even if our randomness is not very random (probably due to
169 * bad coding on my part) we don't really care - the timestamp and
170 * memory pointer also guarantee local uniqueness in the input to the hash
171 * function.
172 */
173
174 /* create a new nonce */
175 newnonce->nc = 0;
176 newnonce->flags.valid = 1;
177 newnonce->noncedata.self = newnonce;
178 newnonce->noncedata.creationtime = current_time.tv_sec;
179 newnonce->noncedata.randomdata = squid_random();
180
181 authDigestNonceEncode(newnonce);
182 /*
183 * loop until we get a unique nonce. The nonce creation must
184 * have a random factor
185 */
186
187 while ((temp = authenticateDigestNonceFindNonce((char const *) (newnonce->key)))) {
188 /* create a new nonce */
189 newnonce->noncedata.randomdata = squid_random();
190 authDigestNonceEncode(newnonce);
191 }
192
193 hash_join(digest_nonce_cache, newnonce);
194 /* the cache's link */
195 authDigestNonceLink(newnonce);
196 newnonce->flags.incache = 1;
197 debugs(29, 5, "authenticateDigestNonceNew: created nonce " << newnonce << " at " << newnonce->noncedata.creationtime);
198 return newnonce;
199 }
200
201 static void
202 authenticateDigestNonceDelete(digest_nonce_h * nonce)
203 {
204 if (nonce) {
205 assert(nonce->references == 0);
206 #if UNREACHABLECODE
207
208 if (nonce->flags.incache)
209 hash_remove_link(digest_nonce_cache, nonce);
210
211 #endif
212
213 assert(nonce->flags.incache == 0);
214
215 safe_free(nonce->key);
216
217 digest_nonce_pool->freeOne(nonce);
218 }
219 }
220
221 static void
222 authenticateDigestNonceSetup(void)
223 {
224 if (!digest_nonce_pool)
225 digest_nonce_pool = memPoolCreate("Digest Scheme nonce's", sizeof(digest_nonce_h));
226
227 if (!digest_nonce_cache) {
228 digest_nonce_cache = hash_create((HASHCMP *) strcmp, 7921, hash_string);
229 assert(digest_nonce_cache);
230 eventAdd("Digest none cache maintenance", authenticateDigestNonceCacheCleanup, NULL, static_cast<AuthDigestConfig*>(AuthConfig::Find("digest"))->nonceGCInterval, 1);
231 }
232 }
233
234 static void
235 authenticateDigestNonceShutdown(void)
236 {
237 /*
238 * We empty the cache of any nonces left in there.
239 */
240 digest_nonce_h *nonce;
241
242 if (digest_nonce_cache) {
243 debugs(29, 2, "authenticateDigestNonceShutdown: Shutting down nonce cache ");
244 hash_first(digest_nonce_cache);
245
246 while ((nonce = ((digest_nonce_h *) hash_next(digest_nonce_cache)))) {
247 assert(nonce->flags.incache);
248 authDigestNoncePurge(nonce);
249 }
250 }
251
252 #if DEBUGSHUTDOWN
253 if (digest_nonce_pool) {
254 delete digest_nonce_pool;
255 digest_nonce_pool = NULL;
256 }
257
258 #endif
259 debugs(29, 2, "authenticateDigestNonceShutdown: Nonce cache shutdown");
260 }
261
262 static void
263 authenticateDigestNonceReconfigure(void)
264 {}
265
266 static void
267 authenticateDigestNonceCacheCleanup(void *data)
268 {
269 /*
270 * We walk the hash by nonceb64 as that is the unique key we
271 * use. For big hash tables we could consider stepping through
272 * the cache, 100/200 entries at a time. Lets see how it flies
273 * first.
274 */
275 digest_nonce_h *nonce;
276 debugs(29, 3, "authenticateDigestNonceCacheCleanup: Cleaning the nonce cache now");
277 debugs(29, 3, "authenticateDigestNonceCacheCleanup: Current time: " << current_time.tv_sec);
278 hash_first(digest_nonce_cache);
279
280 while ((nonce = ((digest_nonce_h *) hash_next(digest_nonce_cache)))) {
281 debugs(29, 3, "authenticateDigestNonceCacheCleanup: nonce entry : " << nonce << " '" << (char *) nonce->key << "'");
282 debugs(29, 4, "authenticateDigestNonceCacheCleanup: Creation time: " << nonce->noncedata.creationtime);
283
284 if (authDigestNonceIsStale(nonce)) {
285 debugs(29, 4, "authenticateDigestNonceCacheCleanup: Removing nonce " << (char *) nonce->key << " from cache due to timeout.");
286 assert(nonce->flags.incache);
287 /* invalidate nonce so future requests fail */
288 nonce->flags.valid = 0;
289 /* if it is tied to a auth_user, remove the tie */
290 authDigestNonceUserUnlink(nonce);
291 authDigestNoncePurge(nonce);
292 }
293 }
294
295 debugs(29, 3, "authenticateDigestNonceCacheCleanup: Finished cleaning the nonce cache.");
296
297 if (static_cast<AuthDigestConfig*>(AuthConfig::Find("digest"))->active())
298 eventAdd("Digest none cache maintenance", authenticateDigestNonceCacheCleanup, NULL, static_cast<AuthDigestConfig*>(AuthConfig::Find("digest"))->nonceGCInterval, 1);
299 }
300
301 static void
302 authDigestNonceLink(digest_nonce_h * nonce)
303 {
304 assert(nonce != NULL);
305 nonce->references++;
306 debugs(29, 9, "authDigestNonceLink: nonce '" << nonce << "' now at '" << nonce->references << "'.");
307 }
308
309 #if NOT_USED
310 static int
311 authDigestNonceLinks(digest_nonce_h * nonce)
312 {
313 if (!nonce)
314 return -1;
315
316 return nonce->references;
317 }
318
319 #endif
320
321 void
322 authDigestNonceUnlink(digest_nonce_h * nonce)
323 {
324 assert(nonce != NULL);
325
326 if (nonce->references > 0) {
327 nonce->references--;
328 } else {
329 debugs(29, 1, "authDigestNonceUnlink; Attempt to lower nonce " << nonce << " refcount below 0!");
330 }
331
332 debugs(29, 9, "authDigestNonceUnlink: nonce '" << nonce << "' now at '" << nonce->references << "'.");
333
334 if (nonce->references == 0)
335 authenticateDigestNonceDelete(nonce);
336 }
337
338 const char *
339 authenticateDigestNonceNonceb64(const digest_nonce_h * nonce)
340 {
341 if (!nonce)
342 return NULL;
343
344 return (char const *) nonce->key;
345 }
346
347 static digest_nonce_h *
348 authenticateDigestNonceFindNonce(const char *nonceb64)
349 {
350 digest_nonce_h *nonce = NULL;
351
352 if (nonceb64 == NULL)
353 return NULL;
354
355 debugs(29, 9, "authDigestNonceFindNonce:looking for nonceb64 '" << nonceb64 << "' in the nonce cache.");
356
357 nonce = static_cast < digest_nonce_h * >(hash_lookup(digest_nonce_cache, nonceb64));
358
359 if ((nonce == NULL) || (strcmp(authenticateDigestNonceNonceb64(nonce), nonceb64)))
360 return NULL;
361
362 debugs(29, 9, "authDigestNonceFindNonce: Found nonce '" << nonce << "'");
363
364 return nonce;
365 }
366
367 int
368 authDigestNonceIsValid(digest_nonce_h * nonce, char nc[9])
369 {
370 unsigned long intnc;
371 /* do we have a nonce ? */
372
373 if (!nonce)
374 return 0;
375
376 intnc = strtol(nc, NULL, 16);
377
378 /* has it already been invalidated ? */
379 if (!nonce->flags.valid) {
380 debugs(29, 4, "authDigestNonceIsValid: Nonce already invalidated");
381 return 0;
382 }
383
384 /* is the nonce-count ok ? */
385 if (!static_cast<AuthDigestConfig*>(AuthConfig::Find("digest"))->CheckNonceCount) {
386 nonce->nc++;
387 return -1; /* forced OK by configuration */
388 }
389
390 if ((static_cast<AuthDigestConfig*>(AuthConfig::Find("digest"))->NonceStrictness && intnc != nonce->nc + 1) ||
391 intnc < nonce->nc + 1) {
392 debugs(29, 4, "authDigestNonceIsValid: Nonce count doesn't match");
393 nonce->flags.valid = 0;
394 return 0;
395 }
396
397 /* seems ok */
398 /* increment the nonce count - we've already checked that intnc is a
399 * valid representation for us, so we don't need the test here.
400 */
401 nonce->nc = intnc;
402
403 return -1;
404 }
405
406 static int
407 authDigestNonceIsStale(digest_nonce_h * nonce)
408 {
409 /* do we have a nonce ? */
410
411 if (!nonce)
412 return -1;
413
414 /* has it's max duration expired? */
415 if (nonce->noncedata.creationtime + static_cast<AuthDigestConfig*>(AuthConfig::Find("digest"))->noncemaxduration < current_time.tv_sec) {
416 debugs(29, 4, "authDigestNonceIsStale: Nonce is too old. " <<
417 nonce->noncedata.creationtime << " " <<
418 static_cast<AuthDigestConfig*>(AuthConfig::Find("digest"))->noncemaxduration << " " <<
419 current_time.tv_sec);
420
421 nonce->flags.valid = 0;
422 return -1;
423 }
424
425 if (nonce->nc > 99999998) {
426 debugs(29, 4, "authDigestNonceIsStale: Nonce count overflow");
427 nonce->flags.valid = 0;
428 return -1;
429 }
430
431 if (nonce->nc > static_cast<AuthDigestConfig*>(AuthConfig::Find("digest"))->noncemaxuses) {
432 debugs(29, 4, "authDigestNoncelastRequest: Nonce count over user limit");
433 nonce->flags.valid = 0;
434 return -1;
435 }
436
437 /* seems ok */
438 return 0;
439 }
440
441 /**
442 * \retval 0 the digest is not stale yet
443 * \retval -1 the digest will be stale on the next request
444 */
445 const int
446 authDigestNonceLastRequest(digest_nonce_h * nonce)
447 {
448 if (!nonce)
449 return -1;
450
451 if (nonce->nc == 99999997) {
452 debugs(29, 4, "authDigestNoncelastRequest: Nonce count about to overflow");
453 return -1;
454 }
455
456 if (nonce->nc >= static_cast<AuthDigestConfig*>(AuthConfig::Find("digest"))->noncemaxuses - 1) {
457 debugs(29, 4, "authDigestNoncelastRequest: Nonce count about to hit user limit");
458 return -1;
459 }
460
461 /* and other tests are possible. */
462 return 0;
463 }
464
465 static void
466 authDigestNoncePurge(digest_nonce_h * nonce)
467 {
468 if (!nonce)
469 return;
470
471 if (!nonce->flags.incache)
472 return;
473
474 hash_remove_link(digest_nonce_cache, nonce);
475
476 nonce->flags.incache = 0;
477
478 /* the cache's link */
479 authDigestNonceUnlink(nonce);
480 }
481
482 /* USER related functions */
483 static AuthUser *
484 authDigestUserFindUsername(const char *username)
485 {
486 AuthUserHashPointer *usernamehash;
487 AuthUser *auth_user;
488 debugs(29, 9, HERE << "Looking for user '" << username << "'");
489
490 if (username && (usernamehash = static_cast < auth_user_hash_pointer * >(hash_lookup(proxy_auth_username_cache, username)))) {
491 while ((usernamehash->user()->auth_type != AUTH_DIGEST) &&
492 (usernamehash->next))
493 usernamehash = static_cast < auth_user_hash_pointer * >(usernamehash->next);
494
495 auth_user = NULL;
496
497 if (usernamehash->user()->auth_type == AUTH_DIGEST) {
498 auth_user = usernamehash->user();
499 }
500
501 return auth_user;
502 }
503
504 return NULL;
505 }
506
507 static void
508 authDigestUserShutdown(void)
509 {
510 /** \todo Future work: the auth framework could flush it's cache */
511 AuthUserHashPointer *usernamehash;
512 AuthUser *auth_user;
513 hash_first(proxy_auth_username_cache);
514
515 while ((usernamehash = ((auth_user_hash_pointer *) hash_next(proxy_auth_username_cache)))) {
516 auth_user = usernamehash->user();
517
518 if (strcmp(auth_user->config->type(), "digest") == 0)
519 auth_user->unlock();
520 }
521 }
522
523 /** delete the digest request structure. Does NOT delete related structures */
524 void
525 digestScheme::done()
526 {
527 /** \todo this should be a Config call. */
528
529 if (digestauthenticators)
530 helperShutdown(digestauthenticators);
531
532 if (DigestFieldsInfo) {
533 httpHeaderDestroyFieldsInfo(DigestFieldsInfo, DIGEST_ENUM_END);
534 DigestFieldsInfo = NULL;
535 }
536
537 authdigest_initialised = 0;
538
539 if (!shutting_down) {
540 authenticateDigestNonceReconfigure();
541 return;
542 }
543
544 delete digestauthenticators;
545 digestauthenticators = NULL;
546
547 authDigestUserShutdown();
548 authenticateDigestNonceShutdown();
549 debugs(29, 2, "authenticateDigestDone: Digest authentication shut down.");
550
551 /* clear the global handle to this scheme. */
552 _instance = NULL;
553 }
554
555 void
556 AuthDigestConfig::dump(StoreEntry * entry, const char *name, AuthConfig * scheme)
557 {
558 wordlist *list = authenticate;
559 debugs(29, 9, "authDigestCfgDump: Dumping configuration");
560 storeAppendPrintf(entry, "%s %s", name, "digest");
561
562 while (list != NULL) {
563 storeAppendPrintf(entry, " %s", list->key);
564 list = list->next;
565 }
566
567 storeAppendPrintf(entry, "\n%s %s realm %s\n%s %s children %d startup=%d idle=%d concurrency=%d\n%s %s nonce_max_count %d\n%s %s nonce_max_duration %d seconds\n%s %s nonce_garbage_interval %d seconds\n",
568 name, "digest", digestAuthRealm,
569 name, "digest", authenticateChildren.n_max, authenticateChildren.n_startup, authenticateChildren.n_idle, authenticateChildren.concurrency,
570 name, "digest", noncemaxuses,
571 name, "digest", (int) noncemaxduration,
572 name, "digest", (int) nonceGCInterval);
573 }
574
575 bool
576 AuthDigestConfig::active() const
577 {
578 return authdigest_initialised == 1;
579 }
580
581 bool
582 AuthDigestConfig::configured() const
583 {
584 if ((authenticate != NULL) &&
585 (authenticateChildren.n_max != 0) &&
586 (digestAuthRealm != NULL) && (noncemaxduration > -1))
587 return true;
588
589 return false;
590 }
591
592 /* add the [www-|Proxy-]authenticate header on a 407 or 401 reply */
593 void
594 AuthDigestConfig::fixHeader(AuthUserRequest::Pointer auth_user_request, HttpReply *rep, http_hdr_type hdrType, HttpRequest * request)
595 {
596 if (!authenticate)
597 return;
598
599 int stale = 0;
600
601 if (auth_user_request != NULL) {
602 AuthDigestUserRequest *digest_request;
603 digest_request = dynamic_cast<AuthDigestUserRequest*>(auth_user_request.getRaw());
604 assert (digest_request != NULL);
605
606 stale = !digest_request->flags.invalid_password;
607 }
608
609 /* on a 407 or 401 we always use a new nonce */
610 digest_nonce_h *nonce = authenticateDigestNonceNew();
611
612 debugs(29, 9, "authenticateFixHeader: Sending type:" << hdrType <<
613 " header: 'Digest realm=\"" << digestAuthRealm << "\", nonce=\"" <<
614 authenticateDigestNonceNonceb64(nonce) << "\", qop=\"" << QOP_AUTH <<
615 "\", stale=" << (stale ? "true" : "false"));
616
617 /* in the future, for WWW auth we may want to support the domain entry */
618 httpHeaderPutStrf(&rep->header, hdrType, "Digest realm=\"%s\", nonce=\"%s\", qop=\"%s\", stale=%s", digestAuthRealm, authenticateDigestNonceNonceb64(nonce), QOP_AUTH, stale ? "true" : "false");
619 }
620
621 DigestUser::~DigestUser()
622 {
623
624 dlink_node *link, *tmplink;
625 link = nonces.head;
626
627 while (link) {
628 tmplink = link;
629 link = link->next;
630 dlinkDelete(tmplink, &nonces);
631 authDigestNoncePurge(static_cast < digest_nonce_h * >(tmplink->data));
632 authDigestNonceUnlink(static_cast < digest_nonce_h * >(tmplink->data));
633 dlinkNodeDelete(tmplink);
634 }
635 }
636
637 /* Initialize helpers and the like for this auth scheme. Called AFTER parsing the
638 * config file */
639 void
640 AuthDigestConfig::init(AuthConfig * scheme)
641 {
642 if (authenticate) {
643 DigestFieldsInfo = httpHeaderBuildFieldsInfo(DigestAttrs, DIGEST_ENUM_END);
644 authenticateDigestNonceSetup();
645 authdigest_initialised = 1;
646
647 if (digestauthenticators == NULL)
648 digestauthenticators = new helper("digestauthenticator");
649
650 digestauthenticators->cmdline = authenticate;
651
652 digestauthenticators->childs = authenticateChildren;
653
654 digestauthenticators->ipc_type = IPC_STREAM;
655
656 helperOpenServers(digestauthenticators);
657
658 CBDATA_INIT_TYPE(authenticateStateData);
659 }
660 }
661
662 void
663 AuthDigestConfig::registerWithCacheManager(void)
664 {
665 CacheManager::GetInstance()->
666 registerAction("digestauthenticator",
667 "Digest User Authenticator Stats",
668 authenticateDigestStats, 0, 1);
669 }
670
671 /* free any allocated configuration details */
672 void
673 AuthDigestConfig::done()
674 {
675 if (authenticate)
676 wordlistDestroy(&authenticate);
677
678 safe_free(digestAuthRealm);
679 }
680
681 AuthDigestConfig::AuthDigestConfig()
682 {
683 /* TODO: move into initialisation list */
684 /* 5 minutes */
685 nonceGCInterval = 5 * 60;
686 /* 30 minutes */
687 noncemaxduration = 30 * 60;
688 /* 50 requests */
689 noncemaxuses = 50;
690 /* Not strict nonce count behaviour */
691 NonceStrictness = 0;
692 /* Verify nonce count */
693 CheckNonceCount = 1;
694 }
695
696 void
697 AuthDigestConfig::parse(AuthConfig * scheme, int n_configured, char *param_str)
698 {
699 if (strcasecmp(param_str, "program") == 0) {
700 if (authenticate)
701 wordlistDestroy(&authenticate);
702
703 parse_wordlist(&authenticate);
704
705 requirePathnameExists("auth_param digest program", authenticate->key);
706 } else if (strcasecmp(param_str, "children") == 0) {
707 authenticateChildren.parseConfig();
708 } else if (strcasecmp(param_str, "realm") == 0) {
709 parse_eol(&digestAuthRealm);
710 } else if (strcasecmp(param_str, "nonce_garbage_interval") == 0) {
711 parse_time_t(&nonceGCInterval);
712 } else if (strcasecmp(param_str, "nonce_max_duration") == 0) {
713 parse_time_t(&noncemaxduration);
714 } else if (strcasecmp(param_str, "nonce_max_count") == 0) {
715 parse_int((int *) &noncemaxuses);
716 } else if (strcasecmp(param_str, "nonce_strictness") == 0) {
717 parse_onoff(&NonceStrictness);
718 } else if (strcasecmp(param_str, "check_nonce_count") == 0) {
719 parse_onoff(&CheckNonceCount);
720 } else if (strcasecmp(param_str, "post_workaround") == 0) {
721 parse_onoff(&PostWorkaround);
722 } else if (strcasecmp(param_str, "utf8") == 0) {
723 parse_onoff(&utf8);
724 } else {
725 debugs(29, 0, "unrecognised digest auth scheme parameter '" << param_str << "'");
726 }
727 }
728
729 const char *
730 AuthDigestConfig::type() const
731 {
732 return digestScheme::GetInstance()->type();
733 }
734
735
736 static void
737 authenticateDigestStats(StoreEntry * sentry)
738 {
739 helperStats(sentry, digestauthenticators, "Digest Authenticator Statistics");
740 }
741
742 /* NonceUserUnlink: remove the reference to auth_user and unlink the node from the list */
743
744 static void
745 authDigestNonceUserUnlink(digest_nonce_h * nonce)
746 {
747 digest_user_h *digest_user;
748 dlink_node *link, *tmplink;
749
750 if (!nonce)
751 return;
752
753 if (!nonce->user)
754 return;
755
756 digest_user = nonce->user;
757
758 /* unlink from the user list. Yes we're crossing structures but this is the only
759 * time this code is needed
760 */
761 link = digest_user->nonces.head;
762
763 while (link) {
764 tmplink = link;
765 link = link->next;
766
767 if (tmplink->data == nonce) {
768 dlinkDelete(tmplink, &digest_user->nonces);
769 authDigestNonceUnlink(static_cast < digest_nonce_h * >(tmplink->data));
770 dlinkNodeDelete(tmplink);
771 link = NULL;
772 }
773 }
774
775 /* this reference to user was not locked because freeeing the user frees
776 * the nonce too.
777 */
778 nonce->user = NULL;
779 }
780
781 /* authDigestUserLinkNonce: add a nonce to a given user's struct */
782
783 static void
784 authDigestUserLinkNonce(DigestUser * user, digest_nonce_h * nonce)
785 {
786 dlink_node *node;
787 digest_user_h *digest_user;
788
789 if (!user || !nonce)
790 return;
791
792 digest_user = user;
793
794 node = digest_user->nonces.head;
795
796 while (node && (node->data != nonce))
797 node = node->next;
798
799 if (node)
800 return;
801
802 node = dlinkNodeNew();
803
804 dlinkAddTail(nonce, node, &digest_user->nonces);
805
806 authDigestNonceLink(nonce);
807
808 /* ping this nonce to this auth user */
809 assert((nonce->user == NULL) || (nonce->user == user));
810
811 /* we don't lock this reference because removing the user removes the
812 * hash too. Of course if that changes we're stuffed so read the code huh?
813 */
814 nonce->user = user;
815 }
816
817 /* setup the necessary info to log the username */
818 static AuthUserRequest::Pointer
819 authDigestLogUsername(char *username, AuthUserRequest::Pointer auth_user_request)
820 {
821 assert(auth_user_request != NULL);
822
823 /* log the username */
824 debugs(29, 9, "authDigestLogUsername: Creating new user for logging '" << username << "'");
825 digest_user_h *digest_user = new DigestUser(static_cast<AuthDigestConfig*>(AuthConfig::Find("digest")));
826 /* save the credentials */
827 digest_user->username(username);
828 /* set the auth_user type */
829 digest_user->auth_type = AUTH_BROKEN;
830 /* link the request to the user */
831 auth_user_request->user(digest_user);
832 digest_user->lock();
833 #if USER_REQUEST_LOOP_DEAD
834 digest_user->addRequest(auth_user_request);
835 #endif
836 return auth_user_request;
837 }
838
839 /*
840 * Decode a Digest [Proxy-]Auth string, placing the results in the passed
841 * Auth_user structure.
842 */
843 AuthUserRequest::Pointer
844 AuthDigestConfig::decode(char const *proxy_auth)
845 {
846 const char *item;
847 const char *p;
848 const char *pos = NULL;
849 char *username = NULL;
850 digest_nonce_h *nonce;
851 int ilen;
852
853 debugs(29, 9, "authenticateDigestDecodeAuth: beginning");
854
855 AuthDigestUserRequest *digest_request = new AuthDigestUserRequest();
856
857 /* trim DIGEST from string */
858
859 while (xisgraph(*proxy_auth))
860 proxy_auth++;
861
862 /* Trim leading whitespace before decoding */
863 while (xisspace(*proxy_auth))
864 proxy_auth++;
865
866 String temp(proxy_auth);
867
868 while (strListGetItem(&temp, ',', &item, &ilen, &pos)) {
869 /* isolate directive name & value */
870 size_t nlen;
871 size_t vlen;
872 if ((p = (const char *)memchr(item, '=', ilen)) && (p - item < ilen)) {
873 nlen = p++ - item;
874 vlen = ilen - (p - item);
875 } else {
876 nlen = ilen;
877 vlen = 0;
878 }
879
880 /* parse value. auth-param = token "=" ( token | quoted-string ) */
881 String value;
882 if (vlen > 0) {
883 if (*p == '"') {
884 if (!httpHeaderParseQuotedString(p, &value)) {
885 debugs(29, 9, "authDigestDecodeAuth: Failed to parse attribute '" << item << "' in '" << temp << "'");
886 continue;
887 }
888 } else {
889 value.limitInit(p, vlen);
890 }
891 } else {
892 debugs(29, 9, "authDigestDecodeAuth: Failed to parse attribute '" << item << "' in '" << temp << "'");
893 continue;
894 }
895
896 /* find type */
897 http_digest_attr_type type = (http_digest_attr_type)httpHeaderIdByName(item, nlen, DigestFieldsInfo, DIGEST_ENUM_END);
898
899 switch (type) {
900 case DIGEST_USERNAME:
901 safe_free(username);
902 username = xstrndup(value.rawBuf(), value.size() + 1);
903 debugs(29, 9, "authDigestDecodeAuth: Found Username '" << username << "'");
904 break;
905
906 case DIGEST_REALM:
907 safe_free(digest_request->realm);
908 digest_request->realm = xstrndup(value.rawBuf(), value.size() + 1);
909 debugs(29, 9, "authDigestDecodeAuth: Found realm '" << digest_request->realm << "'");
910 break;
911
912 case DIGEST_QOP:
913 safe_free(digest_request->qop);
914 digest_request->qop = xstrndup(value.rawBuf(), value.size() + 1);
915 debugs(29, 9, "authDigestDecodeAuth: Found qop '" << digest_request->qop << "'");
916 break;
917
918 case DIGEST_ALGORITHM:
919 safe_free(digest_request->algorithm);
920 digest_request->algorithm = xstrndup(value.rawBuf(), value.size() + 1);
921 debugs(29, 9, "authDigestDecodeAuth: Found algorithm '" << digest_request->algorithm << "'");
922 break;
923
924 case DIGEST_URI:
925 safe_free(digest_request->uri);
926 digest_request->uri = xstrndup(value.rawBuf(), value.size() + 1);
927 debugs(29, 9, "authDigestDecodeAuth: Found uri '" << digest_request->uri << "'");
928 break;
929
930 case DIGEST_NONCE:
931 safe_free(digest_request->nonceb64);
932 digest_request->nonceb64 = xstrndup(value.rawBuf(), value.size() + 1);
933 debugs(29, 9, "authDigestDecodeAuth: Found nonce '" << digest_request->nonceb64 << "'");
934 break;
935
936 case DIGEST_NC:
937 if (value.size() != 8) {
938 debugs(29, 9, "authDigestDecodeAuth: Invalid nc '" << value << "' in '" << temp << "'");
939 }
940 xstrncpy(digest_request->nc, value.rawBuf(), value.size() + 1);
941 debugs(29, 9, "authDigestDecodeAuth: Found noncecount '" << digest_request->nc << "'");
942 break;
943
944 case DIGEST_CNONCE:
945 safe_free(digest_request->cnonce);
946 digest_request->cnonce = xstrndup(value.rawBuf(), value.size() + 1);
947 debugs(29, 9, "authDigestDecodeAuth: Found cnonce '" << digest_request->cnonce << "'");
948 break;
949
950 case DIGEST_RESPONSE:
951 safe_free(digest_request->response);
952 digest_request->response = xstrndup(value.rawBuf(), value.size() + 1);
953 debugs(29, 9, "authDigestDecodeAuth: Found response '" << digest_request->response << "'");
954 break;
955
956 default:
957 debugs(29, 3, "authDigestDecodeAuth: Unknown attribute '" << item << "' in '" << temp << "'");
958 break;
959 }
960 }
961
962 temp.clean();
963
964
965 /* now we validate the data given to us */
966
967 /*
968 * TODO: on invalid parameters we should return 400, not 407.
969 * Find some clean way of doing this. perhaps return a valid
970 * struct, and set the direction to clientwards combined with
971 * a change to the clientwards handling code (ie let the
972 * clientwards call set the error type (but limited to known
973 * correct values - 400/401/407
974 */
975
976 /* 2069 requirements */
977
978 /* do we have a username ? */
979 if (!username || username[0] == '\0') {
980 debugs(29, 2, "authenticateDigestDecode: Empty or not present username");
981 return authDigestLogUsername(username, digest_request);
982 }
983
984 /* Sanity check of the username.
985 * " can not be allowed in usernames until * the digest helper protocol
986 * have been redone
987 */
988 if (strchr(username, '"')) {
989 debugs(29, 2, "authenticateDigestDecode: Unacceptable username '" << username << "'");
990 return authDigestLogUsername(username, digest_request);
991 }
992
993 /* do we have a realm ? */
994 if (!digest_request->realm || digest_request->realm[0] == '\0') {
995 debugs(29, 2, "authenticateDigestDecode: Empty or not present realm");
996 return authDigestLogUsername(username, digest_request);
997 }
998
999 /* and a nonce? */
1000 if (!digest_request->nonceb64 || digest_request->nonceb64[0] == '\0') {
1001 debugs(29, 2, "authenticateDigestDecode: Empty or not present nonce");
1002 return authDigestLogUsername(username, digest_request);
1003 }
1004
1005 /* we can't check the URI just yet. We'll check it in the
1006 * authenticate phase, but needs to be given */
1007 if (!digest_request->uri || digest_request->uri[0] == '\0') {
1008 debugs(29, 2, "authenticateDigestDecode: Missing URI field");
1009 return authDigestLogUsername(username, digest_request);
1010 }
1011
1012 /* is the response the correct length? */
1013 if (!digest_request->response || strlen(digest_request->response) != 32) {
1014 debugs(29, 2, "authenticateDigestDecode: Response length invalid");
1015 return authDigestLogUsername(username, digest_request);
1016 }
1017
1018 /* check the algorithm is present and supported */
1019 if (!digest_request->algorithm)
1020 digest_request->algorithm = xstrndup("MD5", 4);
1021 else if (strcmp(digest_request->algorithm, "MD5")
1022 && strcmp(digest_request->algorithm, "MD5-sess")) {
1023 debugs(29, 2, "authenticateDigestDecode: invalid algorithm specified!");
1024 return authDigestLogUsername(username, digest_request);
1025 }
1026
1027 /* 2617 requirements, indicated by qop */
1028 if (digest_request->qop) {
1029
1030 /* check the qop is what we expected. */
1031 if (strcmp(digest_request->qop, QOP_AUTH) != 0) {
1032 /* we received a qop option we didn't send */
1033 debugs(29, 2, "authenticateDigestDecode: Invalid qop option received");
1034 return authDigestLogUsername(username, digest_request);
1035 }
1036
1037 /* check cnonce */
1038 if (!digest_request->cnonce || digest_request->cnonce[0] == '\0') {
1039 debugs(29, 2, "authenticateDigestDecode: Missing cnonce field");
1040 return authDigestLogUsername(username, digest_request);
1041 }
1042
1043 /* check nc */
1044 if (strlen(digest_request->nc) != 8 || strspn(digest_request->nc, "0123456789abcdefABCDEF") != 8) {
1045 debugs(29, 2, "authenticateDigestDecode: invalid nonce count");
1046 return authDigestLogUsername(username, digest_request);
1047 }
1048 } else {
1049 /* cnonce and nc both require qop */
1050 if (digest_request->cnonce || digest_request->nc) {
1051 debugs(29, 2, "authenticateDigestDecode: missing qop!");
1052 return authDigestLogUsername(username, digest_request);
1053 }
1054 }
1055
1056 /** below nonce state dependent **/
1057
1058 /* now the nonce */
1059 nonce = authenticateDigestNonceFindNonce(digest_request->nonceb64);
1060 if (!nonce) {
1061 /* we couldn't find a matching nonce! */
1062 debugs(29, 2, "authenticateDigestDecode: Unexpected or invalid nonce received");
1063 digest_request->credentials(AuthDigestUserRequest::Failed);
1064 return authDigestLogUsername(username, digest_request);
1065 }
1066
1067 digest_request->nonce = nonce;
1068 authDigestNonceLink(nonce);
1069
1070 /* check that we're not being hacked / the username hasn't changed */
1071 if (nonce->user && strcmp(username, nonce->user->username())) {
1072 debugs(29, 2, "authenticateDigestDecode: Username for the nonce does not equal the username for the request");
1073 return authDigestLogUsername(username, digest_request);
1074 }
1075
1076 /* the method we'll check at the authenticate step as well */
1077
1078
1079 /* we don't send or parse opaques. Ok so we're flexable ... */
1080
1081 /* find the user */
1082 digest_user_h *digest_user;
1083
1084 AuthUser *auth_user;
1085
1086 if ((auth_user = authDigestUserFindUsername(username)) == NULL) {
1087 /* the user doesn't exist in the username cache yet */
1088 debugs(29, 9, "authDigestDecodeAuth: Creating new digest user '" << username << "'");
1089 digest_user = new DigestUser(this);
1090 /* auth_user is a parent */
1091 auth_user = digest_user;
1092 /* save the username */
1093 digest_user->username(username);
1094 /* set the user type */
1095 digest_user->auth_type = AUTH_DIGEST;
1096 /* this auth_user struct is the one to get added to the
1097 * username cache */
1098 /* store user in hash's */
1099 digest_user->addToNameCache();
1100
1101 /*
1102 * Add the digest to the user so we can tell if a hacking
1103 * or spoofing attack is taking place. We do this by assuming
1104 * the user agent won't change user name without warning.
1105 */
1106 authDigestUserLinkNonce(digest_user, nonce);
1107 } else {
1108 debugs(29, 9, "authDigestDecodeAuth: Found user '" << username << "' in the user cache as '" << auth_user << "'");
1109 digest_user = static_cast < digest_user_h * >(auth_user);
1110 xfree(username);
1111 }
1112
1113 /*link the request and the user */
1114 assert(digest_request != NULL);
1115
1116 digest_user->lock();
1117 digest_request->user(digest_user);
1118 #if USER_REQUEST_LOOP_DEAD
1119 digest_user->addRequest(digest_request);
1120 #endif
1121
1122 debugs(29, 9, "username = '" << digest_user->username() << "'\nrealm = '" <<
1123 digest_request->realm << "'\nqop = '" << digest_request->qop <<
1124 "'\nalgorithm = '" << digest_request->algorithm << "'\nuri = '" <<
1125 digest_request->uri << "'\nnonce = '" << digest_request->nonceb64 <<
1126 "'\nnc = '" << digest_request->nc << "'\ncnonce = '" <<
1127 digest_request->cnonce << "'\nresponse = '" <<
1128 digest_request->response << "'\ndigestnonce = '" << nonce << "'");
1129
1130 return digest_request;
1131 }
1132
1133 DigestUser::DigestUser (AuthConfig *aConfig) : AuthUser (aConfig), HA1created (0)
1134 {}