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 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
|
/* MODULE HTAABrow.c
** BROWSER SIDE ACCESS AUTHORIZATION MODULE
**
** Containts the code for keeping track on server hostnames,
** port numbers, scheme names, usernames, passwords
** (and servers' public keys).
**
** IMPORTANT:
** Routines in this module use dynamic allocation, but free
** automatically all the memory reserved by them.
**
** Therefore the caller never has to (and never should)
** free() any object returned by these functions.
**
** Therefore also all the strings returned by this package
** are only valid until the next call to the same function
** is made. This approach is selected, because of the nature
** of access authorization: no string returned by the package
** needs to be valid longer than until the next call.
**
** This also makes it easy to plug the AA package in:
** you don't have to ponder whether to free() something
** here or is it done somewhere else (because it is always
** done somewhere else).
**
** The strings that the package needs to store are copied
** so the original strings given as parameters to AA
** functions may be freed or modified with no side effects.
**
** The AA package does not free() anything else than what
** it has itself allocated.
**
** AUTHORS:
** AL Ari Luotonen luotonen@dxcern.cern.ch
**
** HISTORY:
** Oct 17 AL Made corrections suggested by marca:
** Added if (!realm->username) return NULL;
** Changed some ""s to NULLs.
** Now doing calloc() to init uuencode source;
** otherwise HTUU_encode() reads uninitialized memory
** every now and then (not a real bug but not pretty).
** Corrected the formula for uuencode destination size.
** BUGS:
**
**
*/
#include <string.h> /* strchr() */
#include "HTUtils.h"
#include "HTString.h"
#include "HTParse.h" /* URL parsing function */
#include "HTList.h" /* HTList object */
#include "HTAlert.h" /* HTConfirm(), HTPrompt() */
#include "HTAAUtil.h" /* AA common to both sides */
#include "HTAssoc.h" /* Assoc list */
#include "HTAABrow.h" /* Implemented here */
#include "HTUU.h" /* Uuencoding and uudecoding */
#include "HTAccess.h" /* HTRequest structure */
/*
** Module-wide global variables
*/
PRIVATE HTList *server_table = NULL; /* Browser's info about servers */
/**************************** HTAAServer ***********************************/
/* PRIVATE HTAAServer_new()
** ALLOCATE A NEW NODE TO HOLD SERVER INFO
** AND ADD IT TO THE LIST OF SERVERS
** ON ENTRY:
** hostname is the name of the host that the server
** is running in.
** portnumber is the portnumber which the server listens.
**
** ON EXIT:
** returns the newly-allocated node with all the strings
** duplicated.
** Strings will be automatically freed by
** the function HTAAServer_delete(), which also
** frees the node itself.
*/
PRIVATE HTAAServer *HTAAServer_new ARGS2(CONST char*, hostname,
int, portnumber)
{
HTAAServer *server;
if (!(server = (HTAAServer *)malloc(sizeof(HTAAServer))))
outofmem(__FILE__, "HTAAServer_new");
server->hostname = NULL;
server->portnumber = (portnumber > 0 ? portnumber : 80);
server->setups = HTList_new();
server->realms = HTList_new();
if (hostname) StrAllocCopy(server->hostname, hostname);
if (!server_table) server_table = HTList_new();
HTList_addObject(server_table, (void*)server);
return server;
}
/* PRIVATE HTAAServer_delete()
**
** DELETE THE ENTRY FOR THE SERVER FROM THE HOST TABLE,
** AND FREE THE MEMORY USED BY IT.
**
** ON ENTRY:
** killme points to the HTAAServer to be freed.
**
** ON EXIT:
** returns nothing.
*/
#ifdef NOT_NEEDED_IT_SEEMS
PRIVATE void HTAASetup_delete(); /* Forward */
PRIVATE void HTAAServer_delete ARGS1(HTAAServer *, killme)
{
if (killme) {
HTList *cur1 = killme->setups;
HTList *cur2 = killme->realms;
HTAASetup *setup;
HTAARealm *realm;
while (NULL != (setup = (HTAASetup*)HTList_nextObject(cur1)))
HTAASetup_delete(setup);
HTList_delete(killme->setups);
while (NULL != (realm = (HTAARealm*)HTList_nextObject(cur2)))
; /* This sould free() the realm */
HTList_delete(killme->realms);
FREE(killme->hostname);
HTList_removeObject(server_table, (void*)killme);
free(killme);
}
}
#endif /*NOT_NEEDED_IT_SEEMS*/
/* PRIVATE HTAAServer_lookup()
** LOOK UP SERVER BY HOSTNAME AND PORTNUMBER
** ON ENTRY:
** hostname obvious.
** portnumber if non-positive defaults to 80.
**
** Looks up the server in the module-global server_table.
**
** ON EXIT:
** returns pointer to a HTAAServer structure
** representing the looked-up server.
** NULL, if not found.
*/
PRIVATE HTAAServer *HTAAServer_lookup ARGS2(CONST char *, hostname,
int, portnumber)
{
if (hostname) {
HTList *cur = server_table;
HTAAServer *server;
if (portnumber <= 0) portnumber = 80;
while (NULL != (server = (HTAAServer*)HTList_nextObject(cur))) {
if (server->portnumber == portnumber &&
0==strcmp(server->hostname, hostname))
return server;
}
}
return NULL; /* NULL parameter, or not found */
}
/*************************** HTAASetup *******************************/
/* PRIVATE HTAASetup_lookup()
** FIGURE OUT WHICH AUTHENTICATION SETUP THE SERVER
** IS USING FOR A GIVEN FILE ON A GIVEN HOST AND PORT
**
** ON ENTRY:
** hostname is the name of the server host machine.
** portnumber is the port that the server is running in.
** docname is the (URL-)pathname of the document we
** are trying to access.
**
** This function goes through the information known about
** all the setups of the server, and finds out if the given
** filename resides in one of the protected directories.
**
** ON EXIT:
** returns NULL if no match.
** Otherwise, a HTAASetup structure representing
** the protected server setup on the corresponding
** document tree.
**
*/
PRIVATE HTAASetup *HTAASetup_lookup ARGS3(CONST char *, hostname,
int, portnumber,
CONST char *, docname)
{
HTAAServer *server;
HTAASetup *setup;
if (portnumber <= 0) portnumber = 80;
if (hostname && docname && *hostname && *docname &&
NULL != (server = HTAAServer_lookup(hostname, portnumber))) {
HTList *cur = server->setups;
if (TRACE) fprintf(stderr, "%s (%s:%d:%s)\n",
"HTAASetup_lookup: resolving setup for",
hostname, portnumber, docname);
while (NULL != (setup = (HTAASetup*)HTList_nextObject(cur))) {
if (HTAA_templateMatch(setup->template, docname)) {
if (TRACE) fprintf(stderr, "%s `%s' %s `%s'\n",
"HTAASetup_lookup:", docname,
"matched template", setup->template);
return setup;
}
else if (TRACE) fprintf(stderr, "%s `%s' %s `%s'\n",
"HTAASetup_lookup:", docname,
"did NOT match template", setup->template);
} /* while setups remain */
} /* if valid parameters and server found */
if (TRACE) fprintf(stderr, "%s `%s' %s\n",
"HTAASetup_lookup: No template matched",
(docname ? docname : "(null)"),
"(so probably not protected)");
return NULL; /* NULL in parameters, or not found */
}
/* PRIVATE HTAASetup_new()
** CREATE A NEW SETUP NODE
** ON ENTRY:
** server is a pointer to a HTAAServer structure
** to which this setup belongs.
** template documents matching this template
** are protected according to this setup.
** valid_schemes a list containing all valid authentication
** schemes for this setup.
** If NULL, all schemes are disallowed.
** scheme_specifics is an array of assoc lists, which
** contain scheme specific parameters given
** by server in Authenticate: fields.
** If NULL, all scheme specifics are
** set to NULL.
** ON EXIT:
** returns a new HTAASetup node, and also adds it as
** part of the HTAAServer given as parameter.
*/
PRIVATE HTAASetup *HTAASetup_new ARGS4(HTAAServer *, server,
char *, template,
HTList *, valid_schemes,
HTAssocList **, scheme_specifics)
{
HTAASetup *setup;
if (!server || !template || !*template) return NULL;
if (!(setup = (HTAASetup*)malloc(sizeof(HTAASetup))))
outofmem(__FILE__, "HTAASetup_new");
setup->reprompt = NO;
setup->server = server;
setup->template = NULL;
if (template) StrAllocCopy(setup->template, template);
setup->valid_schemes = valid_schemes;
setup->scheme_specifics = scheme_specifics;
HTList_addObject(server->setups, (void*)setup);
return setup;
}
/* PRIVATE HTAASetup_delete()
** FREE A HTAASetup STRUCTURE
** ON ENTRY:
** killme is a pointer to the structure to free().
**
** ON EXIT:
** returns nothing.
*/
#ifdef NOT_NEEDED_IT_SEEMS
PRIVATE void HTAASetup_delete ARGS1(HTAASetup *, killme)
{
int scheme;
if (killme) {
if (killme->template) free(killme->template);
if (killme->valid_schemes)
HTList_delete(killme->valid_schemes);
for (scheme=0; scheme < HTAA_MAX_SCHEMES; scheme++)
if (killme->scheme_specifics[scheme])
HTAssocList_delete(killme->scheme_specifics[scheme]);
free(killme);
}
}
#endif /*NOT_NEEDED_IT_SEEMS*/
/* PRIVATE HTAASetup_updateSpecifics()
* COPY SCHEME SPECIFIC PARAMETERS
** TO HTAASetup STRUCTURE
** ON ENTRY:
** setup destination setup structure.
** specifics string array containing scheme
** specific parameters for each scheme.
** If NULL, all the scheme specific
** parameters are set to NULL.
**
** ON EXIT:
** returns nothing.
*/
PRIVATE void HTAASetup_updateSpecifics ARGS2(HTAASetup *, setup,
HTAssocList **, specifics)
{
int scheme;
if (setup) {
if (setup->scheme_specifics) {
for (scheme=0; scheme < HTAA_MAX_SCHEMES; scheme++) {
if (setup->scheme_specifics[scheme])
HTAssocList_delete(setup->scheme_specifics[scheme]);
}
free(setup->scheme_specifics);
}
setup->scheme_specifics = specifics;
}
}
/*************************** HTAARealm **********************************/
/* PRIVATE HTAARealm_lookup()
** LOOKUP HTAARealm STRUCTURE BY REALM NAME
** ON ENTRY:
** realm_table a list of realm objects.
** realmname is the name of realm to look for.
**
** ON EXIT:
** returns the realm. NULL, if not found.
*/
PRIVATE HTAARealm *HTAARealm_lookup ARGS2(HTList *, realm_table,
CONST char *, realmname)
{
if (realm_table && realmname) {
HTList *cur = realm_table;
HTAARealm *realm;
while (NULL != (realm = (HTAARealm*)HTList_nextObject(cur))) {
if (0==strcmp(realm->realmname, realmname))
return realm;
}
}
return NULL; /* No table, NULL param, or not found */
}
/* PRIVATE HTAARealm_new()
** CREATE A NODE CONTAINING USERNAME AND
** PASSWORD USED FOR THE GIVEN REALM.
** IF REALM ALREADY EXISTS, CHANGE
** USERNAME/PASSWORD.
** ON ENTRY:
** realm_table a list of realms to where to add
** the new one, too.
** realmname is the name of the password domain.
** username and
** password are what you can expect them to be.
**
** ON EXIT:
** returns the created realm.
*/
PRIVATE HTAARealm *HTAARealm_new ARGS4(HTList *, realm_table,
CONST char *, realmname,
CONST char *, username,
CONST char *, password)
{
HTAARealm *realm;
realm = HTAARealm_lookup(realm_table, realmname);
if (!realm) {
if (!(realm = (HTAARealm*)malloc(sizeof(HTAARealm))))
outofmem(__FILE__, "HTAARealm_new");
realm->realmname = NULL;
realm->username = NULL;
realm->password = NULL;
StrAllocCopy(realm->realmname, realmname);
if (realm_table) HTList_addObject(realm_table, (void*)realm);
}
if (username) StrAllocCopy(realm->username, username);
if (password) StrAllocCopy(realm->password, password);
return realm;
}
/***************** Basic and Pubkey Authentication ************************/
/* PRIVATE compose_Basic_auth()
**
** COMPOSE Basic SCHEME AUTHENTICATION STRING
**
** ON ENTRY:
** req request, where
** req->scheme == HTAA_BASIC
** req->realm contains username and password.
**
** ON EXIT:
** returns a newly composed authorization string,
** NULL, if something fails.
** NOTE:
** Like throughout the entire AA package, no string or structure
** returned by AA package needs to (or should) be freed.
**
*/
PRIVATE char *compose_Basic_auth ARGS1(HTRequest *, req)
{
static char *result = NULL; /* Uuencoded presentation, the result */
char *cleartext = NULL; /* Cleartext presentation */
int len;
FREE(result); /* From previous call */
if (!req || req->scheme != HTAA_BASIC || !req->setup ||
!req->setup->server)
return NULL;
if (!req->realm) {
char *realmname;
if (!req->setup || !req->setup->scheme_specifics ||
!(realmname =
HTAssocList_lookup(req->setup->scheme_specifics[HTAA_BASIC],
"realm")))
return NULL;
req->realm = HTAARealm_lookup(req->setup->server->realms, realmname);
if (!req->realm) {
req->realm = HTAARealm_new(req->setup->server->realms,
realmname, NULL, NULL);
return NULL;
}
}
len = strlen(req->realm->username ? req->realm->username : "") +
strlen(req->realm->password ? req->realm->password : "") + 3;
if (!(cleartext = (char*)calloc(len, 1)))
outofmem(__FILE__, "compose_Basic_auth");
if (req->realm->username) strcpy(cleartext, req->realm->username);
else *cleartext = (char)0;
strcat(cleartext, ":");
if (req->realm->password) strcat(cleartext, req->realm->password);
if (!(result = (char*)malloc(4 * ((len+2)/3) + 1)))
outofmem(__FILE__, "compose_Basic_auth");
HTUU_encode((unsigned char *)cleartext, strlen(cleartext), result);
free(cleartext);
return result;
}
/* BROWSER PRIVATE HTAA_selectScheme()
** SELECT THE AUTHENTICATION SCHEME TO USE
** ON ENTRY:
** setup is the server setup structure which can
** be used to make the decision about the
** used scheme.
**
** When new authentication methods are added to library
** this function makes the decision about which one to
** use at a given time. This can be done by inspecting
** environment variables etc.
**
** Currently only searches for the first valid scheme,
** and if nothing found suggests Basic scheme;
**
** ON EXIT:
** returns the authentication scheme to use.
*/
PRIVATE HTAAScheme HTAA_selectScheme ARGS1(HTAASetup *, setup)
{
HTAAScheme scheme;
if (setup && setup->valid_schemes) {
for (scheme=HTAA_BASIC; scheme < HTAA_MAX_SCHEMES; scheme++)
if (-1 < HTList_indexOf(setup->valid_schemes, (void*)scheme))
return scheme;
}
return HTAA_NONE;
}
/* BROWSER PUBLIC HTAA_composeAuth()
**
** COMPOSE Authorization: HEADER LINE CONTENTS
** IF WE ALREADY KNOW THAT THE HOST REQUIRES AUTHENTICATION
**
** ON ENTRY:
** req request, which contains
** req->setup protection setup info on browser.
** req->scheme selected authentication scheme.
** req->realm for Basic scheme the username and password.
**
** ON EXIT:
** returns NO, if no authorization seems to be needed, and
** req->authorization is NULL.
** YES, if it has composed Authorization field,
** in which case the result is in req->authorization,
** e.g.
**
** "Basic AkRDIhEF8sdEgs72F73bfaS=="
*/
PUBLIC BOOL HTAA_composeAuth ARGS1(HTRequest *, req)
{
char *auth_string = NULL;
static char *docname;
static char *hostname;
int portnumber;
char *colon;
char *gate = NULL; /* Obsolite? */
char *arg = NULL;
FREE(hostname); /* From previous call */
FREE(docname); /* - " - */
if (!req || !req->anchor)
return NO;
#ifdef OLD_CODE
if (req->authorization) {
CTRACE(stderr,
"HTAA_composeAuth: forwarding auth.info from client\nAuthorization: %s\n",
req->authorization);
return YES;
}
#endif
arg = HTAnchor_physical(req->anchor);
docname = HTParse(arg, "", PARSE_PATH);
hostname = HTParse((gate ? gate : arg), "", PARSE_HOST);
if (hostname &&
NULL != (colon = strchr(hostname, ':'))) {
*(colon++) = '\0'; /* Chop off port number */
portnumber = atoi(colon);
}
else portnumber = 80;
if (TRACE) fprintf(stderr,
"Composing Authorization for %s:%d/%s\n",
hostname, portnumber, docname);
#ifdef OLD_CODE
if (current_portnumber != portnumber ||
!current_hostname || !current_docname ||
!hostname || !docname ||
0 != strcmp(current_hostname, hostname) ||
0 != strcmp(current_docname, docname)) {
retry = NO;
current_portnumber = portnumber;
if (hostname) StrAllocCopy(current_hostname, hostname);
else FREE(current_hostname);
if (docname) StrAllocCopy(current_docname, docname);
else FREE(current_docname);
}
else retry = YES;
#endif /*OLD_CODE*/
if (!req->setup)
req->setup = HTAASetup_lookup(hostname, portnumber, docname);
if (!req->setup)
return NO;
if (req->scheme == HTAA_NONE || req->scheme == HTAA_UNKNOWN)
req->scheme = HTAA_selectScheme(req->setup);
switch (req->scheme) {
case HTAA_BASIC:
auth_string = compose_Basic_auth(req);
break;
case HTAA_PUBKEY:
case HTAA_KERBEROS_V4:
/* OTHER AUTHENTICATION ROUTINES ARE CALLED HERE */
default:
{
char msg[100];
sprintf(msg, "%s %s `%s'",
"This client doesn't know how to compose authentication",
"information for scheme", HTAAScheme_name(req->scheme));
HTAlert(msg);
auth_string = NULL;
}
} /* switch scheme */
req->setup->reprompt = NO;
/* Added by marca. */
if (!auth_string)
return NO;
FREE(req->authorization); /* Free from previous call, Henrik 14/03-94 */
if (!(req->authorization =
(char*)malloc(sizeof(char) * (strlen(auth_string)+40))))
outofmem(__FILE__, "HTAA_composeAuth");
strcpy(req->authorization, HTAAScheme_name(req->scheme));
strcat(req->authorization, " ");
strcat(req->authorization, auth_string);
return YES;
}
/* BROWSER OVERLOADED HTPasswordDialog()
**
** PROMPT USERNAME AND PASSWORD, AND MAKE A
** CALLBACK TO FUNCTION HTLoadHTTP().
**
** This function must be redifined by GUI clients, which
** call HTLoadHTTP(req) when user presses "Ok".
**
** ON ENTRY:
** req request.
** req->dialog_msg prompting message.
** req->setup information about protections of this request.
** req->realm structure describing one password realm.
** This function should only be called when
** server has replied with a 401 (Unauthorized)
** status code, and req structure has been filled
** up according to server reply, especially the
** req->valid_shemes list must have been set up
** according to WWW-Authenticate: headers.
** req->retry_callback
** function to call when username and password
** have been entered.
** ON EXIT:
**
** returns nothing.
** Calls (*req->retry_callback)(req).
**
*/
PUBLIC void HTPasswordDialog ARGS1(HTRequest *, req)
{
if (!req || !req->setup || !req->realm || !req->dialog_msg ||
!req->retry_callback) {
HTAlert("HTPasswordDialog() called with an illegal parameter");
return;
}
if (req->setup->reprompt &&
NO == HTConfirm("Authorization failed. Retry?")) {
return;
} /* HTConfirm(...) == NO */
else { /* re-ask username+password (if misspelled) */
char *username = req->realm->username;
char *password = NULL;
HTPromptUsernameAndPassword(req->dialog_msg, &username, &password);
if (req->realm->username) free(req->realm->username);
if (req->realm->password) free(req->realm->password);
req->realm->username = username;
req->realm->password = password;
if (!req->realm->username)
return; /* Suggested by marca; thanks! */
else
(*req->retry_callback)(req); /* Callback */
}
}
/* BROWSER PUBLIC HTAA_retryWithAuth()
**
** RETRY THE SERVER WITH AUTHORIZATION (OR IF
** ALREADY RETRIED, WITH A DIFFERENT USERNAME
** AND/OR PASSWORD (IF MISSPELLED)) OR CANCEL
** ON ENTRY:
** req request.
** req->valid_schemes
** This function should only be called when
** server has replied with a 401 (Unauthorized)
** status code, and req structure has been filled
** up according to server reply, especially the
** req->valid_shemes list must have been set up
** according to WWW-Authenticate: headers.
** ON EXIT:
** On GUI clients pops up a username/password dialog box
** with "Ok" and "Cancel".
** "Ok" button press should do a callback
**
** HTLoadHTTP(req);
**
** This actually done by function HTPasswordDialog(),
** which GUI clients redefine.
**
** returns YES, if dialog box was popped up.
** NO, on failure.
*/
PUBLIC BOOL HTAA_retryWithAuth ARGS2(HTRequest *, req,
HTRetryCallbackType, callback)
{
int len;
char *realmname;
char *arg = NULL;
if (!req || !req->anchor ||
!req->valid_schemes || HTList_count(req->valid_schemes) == 0) {
req->setup = NULL;
return NO;
}
arg = HTAnchor_physical(req->anchor);
if (req->setup && req->setup->server) {
/* So we have already tried with authorization. */
/* Either we don't have access or username or */
/* password was misspelled. */
/* Update scheme-specific parameters */
/* (in case they have expired by chance). */
HTAASetup_updateSpecifics(req->setup, req->scheme_specifics);
req->scheme = HTAA_selectScheme(req->setup);
req->setup->reprompt = YES;
}
else { /* current_setup == NULL, i.e. we have a */
/* first connection to a protected server or */
/* the server serves a wider set of documents */
/* than we expected so far. */
static char *hostname;
static char *docname;
int portnumber;
char *colon;
HTAAServer *server;
FREE(hostname); /* From previous call */
FREE(docname); /* - " - */
docname = HTParse(arg, "", PARSE_PATH);
hostname = HTParse(arg, "", PARSE_HOST);
if (hostname &&
NULL != (colon = strchr(hostname, ':'))) {
*(colon++) = '\0'; /* Chop off port number */
portnumber = atoi(colon);
}
else portnumber = 80;
if (TRACE) fprintf(stderr,
"HTAA_retryWithAuth: first retry of %s:%d/%s\n",
hostname, portnumber, docname);
if (!(server = HTAAServer_lookup(hostname, portnumber))) {
server = HTAAServer_new(hostname, portnumber);
}
else {
HTAlert("Access without authorization denied -- retrying");
}
if (!req->prot_template)
req->prot_template = HTAA_makeProtectionTemplate(docname);
req->setup = HTAASetup_new(server,
req->prot_template,
req->valid_schemes,
req->scheme_specifics);
req->setup->reprompt = NO;
req->scheme = HTAA_selectScheme(req->setup);
} /* else current_setup == NULL */
realmname = HTAssocList_lookup(req->setup->scheme_specifics[req->scheme],
"realm");
if (!realmname)
return NO;
req->realm = HTAARealm_lookup(req->setup->server->realms, realmname);
if (!req->realm)
req->realm = HTAARealm_new(req->setup->server->realms,
realmname, NULL, NULL);
len = strlen(realmname) + 100;
if (req->setup->server->hostname)
len += strlen(req->setup->server->hostname);
FREE(req->dialog_msg); /* Free from previous call, Henrik 14/03-94 */
if (!(req->dialog_msg = (char*)malloc(len)))
outofmem(__FILE__, "HTAA_retryWithAuth");
if (!req->realm->username)
sprintf(req->dialog_msg, "%s %s at %s",
"Document is protected. Enter username for",
req->realm->realmname,
req->setup->server->hostname
? req->setup->server->hostname : "??");
else sprintf(req->dialog_msg, "%s %s at %s",
"Authorization failed. Enter username for",
req->realm->realmname,
req->setup->server->hostname
? req->setup->server->hostname : "??");
req->retry_callback = callback; /* Set callback function */
HTPasswordDialog(req);
return YES;
}
/* PUPLIC HTAA_cleanup()
**
** Free the memory used by the entries concerning Access Authorization
** in the request structure and put all pointers to NULL
** Henrik 14/03-94.
**
** ON ENTRY:
** req the request structure
**
** ON EXIT:
** returns nothing.
*/
PUBLIC void HTAACleanup ARGS1(HTRequest *, req)
{
if (req) {
FREE(req->authorization);
FREE(req->prot_template);
FREE(req->dialog_msg);
#ifdef OLD_CODE
/* Should not be freed as they have become a part of a static
memory */
if (req->valid_schemes) {
HTList_delete(req->valid_schemes);
req->valid_schemes = NULL;
}
if (req->scheme_specifics) {
int cnt;
for (cnt=0; cnt<HTAA_MAX_SCHEMES; cnt++) {
if (req->scheme_specifics[cnt])
HTAssocList_delete(req->scheme_specifics[cnt]);
}
FREE(req->scheme_specifics);
}
#endif /* OLD_CODE */
}
return;
}
|