]> andersk Git - mod-vhost-ldap.git/commitdiff
Hard-code ~username for LDAP vhosts. scripts-rebased.r1589
authorGeoffrey Thomas <geofft@mit.edu>
Mon, 15 Oct 2007 10:46:21 +0000 (10:46 +0000)
committerAnders Kaseorg <andersk@mit.edu>
Sat, 17 Jul 2010 22:57:27 +0000 (18:57 -0400)
Signed-off-by: Geoffrey Thomas <geofft@mit.edu>
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
mod_vhost_ldap.c

index 022dda1ffc3086785ff45e17ccce17a626a2e2e4..d95b89eb002f81766fe224110143c062fd256c8b 100644 (file)
@@ -51,6 +51,7 @@
 
 #define MIN_UID 100
 #define MIN_GID 100
+const char USERDIR[] = "web_scripts";
 
 #define MAX_FAILURES 5
 
@@ -625,6 +626,28 @@ null:
          apr_table_setn(r->notes, "alias-forced-type", r->handler);
          ret = OK;
        }
+    } else if (strncmp(r->uri, "/~", 2) == 0) {
+        /* This is a quick, dirty hack. I should be shot for taking 6.170
+         * this term and being willing to write a quick, dirty hack. */    
+       char *username;
+       uid_t uid = (uid_t)atoll(reqc->uid);
+       if (apr_uid_name_get(&username, uid, r->pool) != APR_SUCCESS) {
+           ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, 0, r, 
+                         "could not get username for uid %d", uid);
+           return DECLINED;
+       }
+       if (strncmp(r->uri + 2, username, strlen(username)) == 0 &&
+           (r->uri[2 + strlen(username)] == '/' ||
+            r->uri[2 + strlen(username)] == '\0')) {
+           char *homedir;
+           if (apr_uid_homepath_get(&homedir, username, r->pool) != APR_SUCCESS) {
+               ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, 0, r, 
+                             "could not get home directory for user %s", username);
+               return DECLINED;
+           }
+           r->filename = apr_pstrcat(r->pool, homedir, "/", USERDIR, r->uri + 2 + strlen(username), NULL);
+           ret = OK;
+       }
     } else if (r->uri[0] == '/') {
         /* we don't set r->filename here, and let other modules do it
          * this allows other modules (mod_rewrite.c) to work as usual
This page took 0.208972 seconds and 5 git commands to generate.