You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2003/02/16 05:42:24 UTC

cvs commit: apache-1.3/src/modules/experimental mod_auth_digest.c

nd          2003/02/15 20:42:24

  Modified:    src      CHANGES
               src/modules/experimental mod_auth_digest.c
  Log:
  drop the guess_domain function.
  
  Our docs say about AuthDigestDomain:
  This directive should always be specified and contain at least the (set of)
  root URI(s) for this space. Omitting to do so will cause the client to send
  the Authorization header for every request sent to this server.
  
  guessing the parameter is somewhat bogus. guess_domain() also resulted sometimes
  in relative URIs, non-URI strings or empty strings, which caused a lot of
  problems.
  According to the docs, the domain parameter will be omitted now,
  if not specified. This is exactly, what one would expect.
  
  PR: 16937 (related to)
  
  Revision  Changes    Path
  1.1877    +4 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1876
  retrieving revision 1.1877
  diff -u -r1.1876 -r1.1877
  --- CHANGES	12 Feb 2003 13:19:40 -0000	1.1876
  +++ CHANGES	16 Feb 2003 04:42:23 -0000	1.1877
  @@ -1,5 +1,9 @@
   Changes with Apache 1.3.28
   
  +  *) mod_auth_digest no longer tries to guess AuthDigestDomain, if it's
  +     not specified. Now it assumes "/" as already documented. PR 16937.
  +     [Andr� Malo]
  +
     *) In configure always assume suexec-umask to be an octal value by
        prepending a "0". PR 16984.  [Andr� Malo]
   
  
  
  
  1.28      +8 -77     apache-1.3/src/modules/experimental/mod_auth_digest.c
  
  Index: mod_auth_digest.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/modules/experimental/mod_auth_digest.c,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- mod_auth_digest.c	3 Feb 2003 17:13:25 -0000	1.27
  +++ mod_auth_digest.c	16 Feb 2003 04:42:24 -0000	1.28
  @@ -1172,76 +1172,10 @@
   	resp->client->ha1[0] = '\0';
   }
   
  -
   /*
    * Authorization challenge generation code (for WWW-Authenticate)
    */
   
  -static const char *guess_domain(pool *p, const char *uri, const char *filename,
  -				const char *dir)
  -{
  -    size_t u_len = strlen(uri), f_len = strlen(filename), d_len = strlen(dir);
  -    const char *u, *f;
  -
  -
  -    /* Because of things like mod_alias and mod_rewrite and the fact that
  -     * protection is often on a directory basis (not a location basis) it
  -     * is hard to determine the uri to put in the domain attribute.
  -     *
  -     * What we do is the following: first we see if the directory is
  -     * a prefix for the uri - if this is the case we assume that therefore
  -     * a <Location> directive was protecting this uri and we can use it
  -     * for the domain.
  -     */
  -    if (u_len >= d_len && !memcmp(uri, dir, d_len))
  -	return dir;
  -
  -    /* Now we check for <Files ...>, and if we find one we send back a
  -     * dummy uri - this is the only way to specify that the protection
  -     * space only covers a single uri.
  -     */
  -    if (dir[0] != '/')
  -	/* This doesn't work for Amaya (ok, it's of arguable validity in
  -	 * the first place), so just return the file name instead
  -	return "http://0.0.0.0/";
  -	 */
  -	return dir;
  -
  -    /* Next we find the largest common common suffix of the request-uri
  -     * and the final file name, ignoring any extensions; this gives us a
  -     * hint as to where any rewriting could've occured (assuming that some
  -     * prefix of the uri is rewritten, not a suffix).
  -     */
  -    u = uri + u_len - 1;	/* strip any extension */
  -    while (u > uri && *u != '/')  u--;
  -    while (*u && *u != '.')  u++;
  -    if (*u == '.')  u--;
  -    if (*u == '/')  u--;
  -
  -    f = filename + f_len - 1;	/* strip any extension */
  -    while (f > filename && *f != '/')  f--;
  -    while (*f && *f != '.')  f++;
  -    if (*f == '.')  f--;
  -    if (*f == '/')  f--;
  -
  -    while (*f == *u && f > filename && u > uri)  u--, f--;
  -    f++; u++;
  -
  -    while (*f && *f != '/')  f++, u++;	/* suffix must start with / */
  -
  -    /* Now, if the directory reaches into this common suffix then we can
  -     * take the uri with the same reach.
  -     */
  -    if ((unsigned long) (f-filename) < d_len) {
  -	char *tmp = ap_pstrdup(p, uri);
  -	tmp[(u-uri)+(d_len-(f-filename))] = '\0';
  -	return tmp;
  -    }
  -
  -    return "";	/* give up */
  -}
  -
  -
   static const char *ltox(pool *p, unsigned long num)
   {
       if (num != 0)
  @@ -1323,18 +1257,15 @@
        * unneccessarily (it's usually > 200 bytes!).
        */
   
  -    if (r->proxyreq != NOT_PROXY)
  -	domain = NULL;	/* don't send domain for proxy requests */
  -    else if (conf->uri_list)
  -	domain = conf->uri_list;
  +    /* don't send domain
  +     * - for proxy requests
  +     * - if it's no specified
  +     */
  +    if (r->proxyreq || !conf->uri_list) {
  +        domain = NULL;  
  +    }
       else {
  -	/* They didn't specify any domain, so let's guess at it */
  -	domain = guess_domain(r->pool, resp->psd_request_uri->path, r->filename,
  -			      conf->dir_name);
  -	if (domain[0] == '/' && domain[1] == '\0')
  -	    domain = NULL;	/* "/" is the default, so no need to send it */
  -	else
  -	    domain = ap_pstrcat(r->pool, ", domain=\"", domain, "\"", NULL);
  +        domain = conf->uri_list;
       }
   
       ap_table_mergen(r->err_headers_out,