https://issues.shibboleth.net/jira/browse/SSPCPP-255
[shibboleth/cpp-sp.git] / apache / mod_apache.cpp
index e1fe35a..e6ca506 100644 (file)
@@ -1,4 +1,20 @@
 /*
+ *  Copyright 2001-2009 Internet2
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/*
  * mod_apache.cpp -- the core Apache Module code
  *
  * Created by: Derek Atkins <derek@ihtfp.com>
@@ -6,6 +22,10 @@
  * $Id$
  */
 
+#ifdef SOLARIS2
+#undef _XOPEN_SOURCE    // causes gethostname conflict in unistd.h
+#endif
+
 // SAML Runtime
 #include <saml/saml.h>
 #include <shib/shib.h>
@@ -23,9 +43,9 @@
 #define CORE_PRIVATE
 #include <http_core.h>
 #include <http_log.h>
+#include <http_request.h>
 
 #ifndef SHIB_APACHE_13
-#include <http_request.h>
 #include <apr_strings.h>
 #include <apr_pools.h>
 #endif
 #include <unistd.h>            // for getpid()
 #endif
 
-using namespace std;
-using namespace saml;
-using namespace shibboleth;
 using namespace shibtarget;
+using namespace shibboleth;
+using namespace saml;
+using namespace std;
 
 extern "C" module MODULE_VAR_EXPORT mod_shib;
-int shib_handler(request_rec* r, const IApplication* application, SHIRE& shire);
 
 namespace {
     char* g_szSHIBConfig = NULL;
     char* g_szSchemaDir = NULL;
     ShibTargetConfig* g_Config = NULL;
+    string g_unsetHeaderValue,g_spoofKey;
+    set<string> g_allowedSchemes;
+    bool g_checkSpoofing = true;
+    bool g_catchAll = true;
     static const char* g_UserDataKey = "_shib_check_user_";
 }
 
+/* Apache 2.2.x headers must be accumulated and set in the output filter.
+   Apache 2.0.49+ supports the filter method.
+   Apache 1.3.x and lesser 2.0.x must write the headers directly. */
+
+#if (defined(SHIB_APACHE_20) || defined(SHIB_APACHE_22)) && AP_MODULE_MAGIC_AT_LEAST(20020903,6)
+#define SHIB_DEFERRED_HEADERS
+#endif
+
+/********************************************************************************/
+// Basic Apache Configuration code.
+//
+
+// per-server module configuration structure
+struct shib_server_config
+{
+    char* szScheme;
+};
+
+// creates the per-server configuration
+extern "C" void* create_shib_server_config(SH_AP_POOL* p, server_rec* s)
+{
+    shib_server_config* sc=(shib_server_config*)ap_pcalloc(p,sizeof(shib_server_config));
+    sc->szScheme = NULL;
+    return sc;
+}
+
+// overrides server configuration in virtual servers
+extern "C" void* merge_shib_server_config (SH_AP_POOL* p, void* base, void* sub)
+{
+    shib_server_config* sc=(shib_server_config*)ap_pcalloc(p,sizeof(shib_server_config));
+    shib_server_config* parent=(shib_server_config*)base;
+    shib_server_config* child=(shib_server_config*)sub;
+
+    if (child->szScheme)
+        sc->szScheme=ap_pstrdup(p,child->szScheme);
+    else if (parent->szScheme)
+        sc->szScheme=ap_pstrdup(p,parent->szScheme);
+    else
+        sc->szScheme=NULL;
+
+    return sc;
+}
+
 // per-dir module configuration structure
 struct shib_dir_config
 {
@@ -59,21 +125,33 @@ struct shib_dir_config
     char* szAuthGrpFile;    // Auth GroupFile name
     int bRequireAll;        // all require directives must match, otherwise OR logic
 
-    // SHIRE Configuration
+    // Content Configuration
+    char* szApplicationId;  // Shib applicationId value
+    char* szRequireWith;    // require a session using a specific initiator?
+    char* szRedirectToSSL;  // redirect non-SSL requests to SSL port
+    int bOff;               // flat-out disable all Shib processing
     int bBasicHijack;       // activate for AuthType Basic?
     int bRequireSession;    // require a session?
     int bExportAssertion;   // export SAML assertion to the environment?
+    int bUseEnvVars;        // use environment variables?
+    int bUseHeaders;        // use HTTP headers?
 };
 
 // creates per-directory config structure
 extern "C" void* create_shib_dir_config (SH_AP_POOL* p, char* d)
 {
     shib_dir_config* dc=(shib_dir_config*)ap_pcalloc(p,sizeof(shib_dir_config));
+    dc->bOff = -1;
     dc->bBasicHijack = -1;
     dc->bRequireSession = -1;
     dc->bExportAssertion = -1;
     dc->bRequireAll = -1;
+    dc->szRedirectToSSL = NULL;
     dc->szAuthGrpFile = NULL;
+    dc->szApplicationId = NULL;
+    dc->szRequireWith = NULL;
+    dc->bUseEnvVars = -1;
+    dc->bUseHeaders = -1;
     return dc;
 }
 
@@ -91,13 +169,56 @@ extern "C" void* merge_shib_dir_config (SH_AP_POOL* p, void* base, void* sub)
     else
         dc->szAuthGrpFile=NULL;
 
+    if (child->szApplicationId)
+        dc->szApplicationId=ap_pstrdup(p,child->szApplicationId);
+    else if (parent->szApplicationId)
+        dc->szApplicationId=ap_pstrdup(p,parent->szApplicationId);
+    else
+        dc->szApplicationId=NULL;
+
+    if (child->szRequireWith)
+        dc->szRequireWith=ap_pstrdup(p,child->szRequireWith);
+    else if (parent->szRequireWith)
+        dc->szRequireWith=ap_pstrdup(p,parent->szRequireWith);
+    else
+        dc->szRequireWith=NULL;
+
+    if (child->szRedirectToSSL)
+        dc->szRedirectToSSL=ap_pstrdup(p,child->szRedirectToSSL);
+    else if (parent->szRedirectToSSL)
+        dc->szRedirectToSSL=ap_pstrdup(p,parent->szRedirectToSSL);
+    else
+        dc->szRedirectToSSL=NULL;
+
+    dc->bOff=((child->bOff==-1) ? parent->bOff : child->bOff);
     dc->bBasicHijack=((child->bBasicHijack==-1) ? parent->bBasicHijack : child->bBasicHijack);
     dc->bRequireSession=((child->bRequireSession==-1) ? parent->bRequireSession : child->bRequireSession);
     dc->bExportAssertion=((child->bExportAssertion==-1) ? parent->bExportAssertion : child->bExportAssertion);
     dc->bRequireAll=((child->bRequireAll==-1) ? parent->bRequireAll : child->bRequireAll);
+    dc->bUseEnvVars=((child->bUseEnvVars==-1) ? parent->bUseEnvVars : child->bUseEnvVars);
+    dc->bUseHeaders=((child->bUseHeaders==-1) ? parent->bUseHeaders : child->bUseHeaders);
     return dc;
 }
 
+// per-request module structure
+struct shib_request_config
+{
+    SH_AP_TABLE *env;        // environment vars
+#ifdef SHIB_DEFERRED_HEADERS
+    SH_AP_TABLE *hdr_out;    // headers to browser
+#endif
+};
+
+// create a request record
+static shib_request_config *init_request_config(request_rec *r)
+{
+    shib_request_config* rc=(shib_request_config*)ap_pcalloc(r->pool,sizeof(shib_request_config));
+    ap_set_module_config (r->request_config, &mod_shib, rc);
+    memset(rc, 0, sizeof(shib_request_config));
+    //ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_init_rc\n");
+    return rc;
+}
+
 // generic global slot handlers
 extern "C" const char* ap_set_global_string_slot(cmd_parms* parms, void*, const char* arg)
 {
@@ -105,540 +226,557 @@ extern "C" const char* ap_set_global_string_slot(cmd_parms* parms, void*, const
     return NULL;
 }
 
-typedef const char* (*config_fn_t)(void);
-
-static int shib_error_page(request_rec* r, const IApplication* app, const char* page, ShibMLP& mlp)
+extern "C" const char* shib_set_server_string_slot(cmd_parms* parms, void*, const char* arg)
 {
-    const IPropertySet* props=app->getPropertySet("Errors");
-    if (props) {
-        pair<bool,const char*> p=props->getString(page);
-        if (p.first) {
-            ifstream infile(p.second);
-            if (!infile.fail()) {
-                const char* res = mlp.run(infile,props);
-                if (res) {
-                    r->content_type = ap_psprintf(r->pool, "text/html");
-                    ap_send_http_header(r);
-                    ap_rprintf(r, res);
-                    return DONE;
-                }
-            }
-        }
-    }
-
-    ap_log_rerror(APLOG_MARK,APLOG_ERR,SH_AP_R(r),
-        "shib_error_page() could not process shire error template for application %s",app->getId());
-    return SERVER_ERROR;
+    char* base=(char*)ap_get_module_config(parms->server->module_config,&mod_shib);
+    long offset=(long)parms->info;
+    *((char**)(base + offset))=ap_pstrdup(parms->pool,arg);
+    return NULL;
 }
 
-extern "C" int shib_check_user(request_rec* r)
+extern "C" const char* shib_ap_set_file_slot(cmd_parms* parms,
+#ifdef SHIB_APACHE_13
+                                            char* arg1, char* arg2
+#else
+                                            void* arg1, const char* arg2
+#endif
+                                            )
 {
-    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_check_user: ENTER");
-    shib_dir_config* dc=(shib_dir_config*)ap_get_module_config(r->per_dir_config,&mod_shib);
-
-    ostringstream threadid;
-    threadid << "[" << getpid() << "] shib_check_user" << '\0';
-    saml::NDC ndc(threadid.str().c_str());
-
-    // This will always be normalized, because Apache uses ap_get_server_name in this API call.
-    const char* targeturl=ap_construct_url(r->pool,r->unparsed_uri,r);
-
-    // We lock the configuration system for the duration.
-    IConfig* conf=g_Config->getINI();
-    Locker locker(conf);
-    
-    // Map request to application and content settings.
-    IRequestMapper* mapper=conf->getRequestMapper();
-    Locker locker2(mapper);
-    IRequestMapper::Settings settings=mapper->getSettingsFromParsedURL(
-        ap_http_method(r), ap_get_server_name(r), ap_get_server_port(r), r->unparsed_uri
-        );
-    pair<bool,const char*> application_id=settings.first->getString("applicationId");
-    const IApplication* application=conf->getApplication(application_id.second);
-    if (!application) {
-        ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),
-           "shib_check_user: unable to map request to application settings, check configuration");
-        return SERVER_ERROR;
-    }
-    
-    // Declare SHIRE object for this request.
-    SHIRE shire(application);
-    
-    // Get location of this application's assertion consumer service and see if this is it.
-    if (strstr(targeturl,shire.getShireURL(targeturl))) {
-        return shib_handler(r,application,shire);
-    }
-
-    // We can short circuit the handler if we run this...
-    apr_pool_userdata_setn((const void*)42,g_UserDataKey,NULL,r->pool);
+  ap_set_file_slot(parms, arg1, arg2);
+  return DECLINE_CMD;
+}
 
-    // Regular access to arbitrary resource...check AuthType
-    const char *auth_type=ap_auth_type(r);
-    if (!auth_type)
-        return DECLINED;
+/********************************************************************************/
+// Apache ShibTarget subclass(es) here.
 
-    if (strcasecmp(auth_type,"shibboleth")) {
-        if (!strcasecmp(auth_type,"basic") && dc->bBasicHijack==1) {
-            core_dir_config* conf=
-                (core_dir_config*)ap_get_module_config(r->per_dir_config,
-                    ap_find_linked_module("http_core.c"));
-            conf->ap_auth_type="shibboleth";
+class ShibTargetApache : public ShibTarget
+{
+public:
+  ShibTargetApache(request_rec* req, bool handler, bool shib_check_user) : m_handler(handler), m_firsttime(true) {
+    m_sc = (shib_server_config*)ap_get_module_config(req->server->module_config, &mod_shib);
+    m_dc = (shib_dir_config*)ap_get_module_config(req->per_dir_config, &mod_shib);
+    m_rc = (shib_request_config*)ap_get_module_config(req->request_config, &mod_shib);
+    m_req = req;
+
+    if (shib_check_user && m_dc->bUseHeaders != 0) {
+        // Try and see if this request was already processed, to skip spoof checking.
+        if (!ap_is_initial_req(m_req)) {
+            m_firsttime = false;
         }
-        else
-            return DECLINED;
-    }
-
-    pair<bool,bool> requireSession = settings.first->getBool("requireSession");
-    if (!requireSession.first || !requireSession.second)
-        if (dc->bRequireSession==1)
-            requireSession.second=true;
-
-    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_check_user: session check for %s",targeturl);
-
-    pair<const char*,const char*> shib_cookie=shire.getCookieNameProps();   // always returns *something*
-
-    // We're in charge, so check for cookie.
-    const char* session_id=NULL;
-    const char* cookies=ap_table_get(r->headers_in,"Cookie");
-
-    if (cookies) {
-        ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_check_user: cookies found: %s",cookies);
-        if (session_id=strstr(cookies,shib_cookie.first)) {
-            // Yep, we found a cookie -- pull it out (our session_id)
-            session_id+=strlen(shib_cookie.first) + 1; /* Skip over the '=' */
-            char* cookiebuf = ap_pstrdup(r->pool,session_id);
-            char* cookieend = strchr(cookiebuf,';');
-            if (cookieend)
-                *cookieend = '\0';    /* Ignore anyting after a ; */
-            session_id=cookiebuf;
+        else if (!g_spoofKey.empty()) {
+            const char* hdr = ap_table_get(m_req->headers_in, "Shib-Spoof-Check");
+            if (hdr && g_spoofKey == hdr)
+                m_firsttime=false;
         }
-    }
-
-    if (!session_id || !*session_id) {
-        // If no session required, bail now.
-        if (!requireSession.second)
-            return OK;
 
-        // No acceptable cookie, and we require a session.  Generate an AuthnRequest.
-        ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_check_user: no cookie found -- redirecting to WAYF");
-        ap_table_setn(r->headers_out,"Location",ap_pstrdup(r->pool,shire.getAuthnRequest(targeturl)));
-        return REDIRECT;
+        if (!m_firsttime)
+            log(LogLevelDebug, "shib_check_user running more than once");
     }
 
-    // Make sure this session is still valid.
-    RPCError* status = NULL;
-    ShibMLP markupProcessor;
-    markupProcessor.insert("requestURL", targeturl);
+    init(
+        m_sc->szScheme ? m_sc->szScheme : ap_http_method(req),
+           ap_get_server_name(req),
+        (int)ap_get_server_port(req),
+           req->unparsed_uri,
+        ap_table_get(req->headers_in, "Content-type"),
+           req->connection->remote_ip,
+        req->method
+        );
+  }
+  ~ShibTargetApache() { }
 
-    try {
-        status = shire.sessionIsValid(session_id, r->connection->remote_ip);
-    }
-    catch (ShibTargetException &e) {
-        ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),"shib_check_user(): %s", e.what());
-        markupProcessor.insert("errorType", "Session Processing Error");
-        markupProcessor.insert("errorText", e.what());
-        markupProcessor.insert("errorDesc", "An error occurred while processing your request.");
-        return shib_error_page(r, application, "shire", markupProcessor);
+  virtual void log(ShibLogLevel level, const string &msg) {
+    ShibTarget::log(level,msg);
+#ifdef SHIB_APACHE_13
+    ap_log_rerror(APLOG_MARK,
+        (level == LogLevelDebug ? APLOG_DEBUG :
+            (level == LogLevelInfo ? APLOG_INFO :
+            (level == LogLevelWarn ? APLOG_WARNING : APLOG_ERR)))|APLOG_NOERRNO, SH_AP_R(m_req), msg.c_str());
+#else
+    if (level == LogLevelError)
+        ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(m_req), msg.c_str());
+#endif
+  }
+  virtual string getCookies(void) const {
+    const char *c = ap_table_get(m_req->headers_in, "Cookie");
+    return string(c ? c : "");
+  }
+  virtual void setCookie(const string &name, const string &value) {
+    char* val = ap_psprintf(m_req->pool, "%s=%s", name.c_str(), value.c_str());
+#ifdef SHIB_DEFERRED_HEADERS
+    if (!m_rc) {
+      // this happens on subrequests
+      ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(m_req), "shib_setheader: no_m_rc");
+      m_rc = init_request_config(m_req);
     }
-#ifndef _DEBUG
-    catch (...) {
-        ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),"shib_check_user(): caught unexpected error");
-        markupProcessor.insert("errorType", "Session Processing Error");
-        markupProcessor.insert("errorText", "Unexpected Exception");
-        markupProcessor.insert("errorDesc", "An error occurred while processing your request.");
-        return shib_error_page(r, application, "shire", markupProcessor);
+    if (m_handler) {
+        if (!m_rc->hdr_out)
+            m_rc->hdr_out = ap_make_table(m_req->pool, 5);
+        ap_table_addn(m_rc->hdr_out, "Set-Cookie", val);
     }
+    else
 #endif
+    ap_table_addn(m_req->err_headers_out, "Set-Cookie", val);
+  }
+  virtual string getArgs(void) { return string(m_req->args ? m_req->args : ""); }
+  virtual string getPostData(void) {
+    // Read the posted data
+#ifdef SHIB_APACHE_13
+    if (ap_setup_client_block(m_req, REQUEST_CHUNKED_DECHUNK))
+        throw FatalProfileException("Apache function (setup_client_block) failed while reading profile submission.");
+    if (!ap_should_client_block(m_req))
+        throw FatalProfileException("Apache function (should_client_block) failed while reading profile submission.");
+    if (m_req->remaining > 1024*1024)
+        throw FatalProfileException("Blocked too-large a submission to profile endpoint.");
+    int len;
+    string cgistr;
+    char buff[HUGE_STRING_LEN];
+    ap_hard_timeout("[mod_shib] getPostData", m_req);
+    while ((len=ap_get_client_block(m_req, buff, sizeof(buff))) > 0) {
+      ap_reset_timeout(m_req);
+      cgistr.append(buff, len);
+    }
+    ap_kill_timeout(m_req);
+    return cgistr;
+#else
+    string cgistr;
+    const char *data;
+    apr_size_t len;
+    int seen_eos = 0;
+    apr_bucket_brigade* bb = apr_brigade_create(m_req->pool, m_req->connection->bucket_alloc);
+    do {
+        apr_bucket *bucket;
+        apr_status_t rv = ap_get_brigade(m_req->input_filters, bb, AP_MODE_READBYTES, APR_BLOCK_READ, HUGE_STRING_LEN);
+        if (rv != APR_SUCCESS)
+            throw FatalProfileException("Apache function (ap_get_brigade) failed while reading profile submission.");
+
+        for (bucket = APR_BRIGADE_FIRST(bb); bucket != APR_BRIGADE_SENTINEL(bb); bucket = APR_BUCKET_NEXT(bucket)) {
+            if (APR_BUCKET_IS_EOS(bucket)) {
+                seen_eos = 1;
+                break;
+            }
 
-    // Check the status
-    if (status->isError()) {
-        ap_log_rerror(APLOG_MARK,APLOG_INFO|APLOG_NOERRNO,SH_AP_R(r),
-                     "shib_check_user() session invalid: %s", status->getText());
-
-        // If no session required, bail now.
-        if (!requireSession.second)
-            return OK; // XXX: Or should this be DECLINED?
-                        // Has to be OK because DECLINED will just cause Apache to fail when it can't locate
-                        // anything to process the AuthType. No session plus requireSession false means 
-                        // do not authenticate the user.
-        else if (status->isRetryable()) {
-            // Oops, session is invalid. Generate AuthnRequest.
-            ap_table_setn(r->headers_out,"Location",ap_pstrdup(r->pool,shire.getAuthnRequest(targeturl)));
-            delete status;
-            return REDIRECT;
-        }
-        else {
-            // return the error page to the user
-            markupProcessor.insert(*status);
-            delete status;
-            return shib_error_page(r, application, "shire", markupProcessor);
+            /* We can't do much with this. */
+            if (APR_BUCKET_IS_FLUSH(bucket))
+                continue;
+
+            /* read */
+            apr_bucket_read(bucket, &data, &len, APR_BLOCK_READ);
+            if (len > 0)
+                cgistr.append(data, len);
         }
+        apr_brigade_cleanup(bb);
+    } while (!seen_eos);
+    apr_brigade_destroy(bb);
+    return cgistr;
+#endif
+  }
+  virtual void clearHeader(const string &name) {
+    if (m_dc->bUseEnvVars == 1) {
+        // ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(m_req), "shib_clear_header: env");
+        if (m_rc && m_rc->env) ap_table_unset(m_rc->env, name.c_str());
     }
-
-    delete status;
-    // set the authtype
+    if (m_dc->bUseHeaders != 0) {
+        // ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(m_req), "shib_clear_header: hdr");
+        if (g_checkSpoofing && m_firsttime) {
+            if (m_allhttp.empty()) {
+                // First time, so populate set with "CGI" versions of client-supplied headers.
 #ifdef SHIB_APACHE_13
-    if (r->connection)
-        r->connection->ap_auth_type = "shibboleth";
+                array_header *hdrs_arr = ap_table_elts(m_req->headers_in);
+                table_entry *hdrs = (table_entry *) hdrs_arr->elts;
 #else
-    r->ap_auth_type = "shibboleth";
+                const apr_array_header_t *hdrs_arr = apr_table_elts(m_req->headers_in);
+                const apr_table_entry_t *hdrs = (const apr_table_entry_t *) hdrs_arr->elts;
 #endif
-    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_check_user: session successfully verified");
-
-    // This is code transferred in from the auth check to export the attributes.
-    // We could even combine the isSessionValid/getAssertions API...?
+                for (int i = 0; i < hdrs_arr->nelts; ++i) {
+                    if (!hdrs[i].key)
+                        continue;
+                    string cgiversion("HTTP_");
+                    const char* pch = hdrs[i].key;
+                    while (*pch) {
+                        cgiversion += (isalnum(*pch) ? toupper(*pch) : '_');
+                        pch++;
+                    }
+                    m_allhttp.insert(cgiversion);
+                }
+            }
 
-    RM rm(application);
-    vector<SAMLAssertion*> assertions;
-    SAMLAuthenticationStatement* sso_statement=NULL;
+            // Map to the expected CGI variable name.
+            string transformed("HTTP_");
+            const char* pch = name.c_str();
+            while (*pch) {
+                transformed += (isalnum(*pch) ? toupper(*pch) : '_');
+                pch++;
+            }
+            if (m_allhttp.count(transformed) > 0)
+                throw SAMLException("Attempt to spoof header ($1) was detected.", params(1, name.c_str()));
+        }
 
-    try {
-        status = rm.getAssertions(session_id, r->connection->remote_ip, assertions, &sso_statement);
+        ap_table_unset(m_req->headers_in, name.c_str());
+        ap_table_set(m_req->headers_in, name.c_str(), g_unsetHeaderValue.c_str());
     }
-    catch (ShibTargetException &e) {
-        ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),"shib_check_user(): %s", e.what());
-        markupProcessor.insert("errorType", "Attribute Processing Error");
-        markupProcessor.insert("errorText", e.what());
-        markupProcessor.insert("errorDesc", "An error occurred while processing your request.");
-        return shib_error_page(r, application, "rm", markupProcessor);
+  }
+  virtual void setHeader(const string &name, const string &value) {
+    if (m_dc->bUseEnvVars == 1) {
+       if (!m_rc) {
+          // this happens on subrequests
+          ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(m_req), "shib_setheader: no_m_rc");
+          m_rc = init_request_config(m_req);
+       }
+       if (!m_rc->env)
+           m_rc->env = ap_make_table(m_req->pool, 10);
+       //ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(m_req), "shib_set_env: %s=%s", name.c_str(), value.c_str()?value.c_str():"Null");
+       ap_table_set(m_rc->env, name.c_str(), value.c_str() ? value.c_str() : "");
     }
-#ifndef _DEBUG
-    catch (...) {
-        ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),"shib_check_user(): caught unexpected error");
-        markupProcessor.insert("errorType", "Attribute Processing Error");
-        markupProcessor.insert("errorText", "Unexpected Exception");
-        markupProcessor.insert("errorDesc", "An error occurred while processing your request.");
-        return shib_error_page(r, application, "rm", markupProcessor);
+    if (m_dc->bUseHeaders != 0) {
+       //ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(m_req), "shib_set_hdr: %s=%s", name.c_str(), value.c_str()?value.c_str():"Null");
+       ap_table_set(m_req->headers_in, name.c_str(), value.c_str() ? value.c_str() : "");
     }
-#endif
-
-    if (status->isError()) {
-        ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),
-            "shib_check_user() getAssertions failed: %s", status->getText());
-
-        markupProcessor.insert(*status);
-        delete status;
-        return shib_error_page(r, application, "rm", markupProcessor);
+  }
+  virtual string getHeader(const string &name) {
+    const char *hdr;
+    if (m_dc->bUseEnvVars == 1) {
+       if (m_rc && m_rc->env)
+           hdr = ap_table_get(m_rc->env, name.c_str());
+       else
+           hdr = NULL;
+       //ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(m_req), "shib_get_hdr_env: %s=%s", name.c_str(), hdr?hdr:"NULL");
     }
-    delete status;
-
-    // Do we have an access control plugin?
-    if (settings.second) {
-        Locker acllock(settings.second);
-        if (!settings.second->authorized(assertions)) {
-            for (int k = 0; k < assertions.size(); k++)
-                delete assertions[k];
-            delete sso_statement;
-            ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),"shib_check_user(): access control provider denied access");
-            return shib_error_page(r, application, "access", markupProcessor);
-        }
+    else {
+       hdr = ap_table_get(m_req->headers_in, name.c_str());
+       //ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(m_req), "shib_get_hdr: %s=%s", name.c_str(), hdr?hdr:"NULL");
     }
-
-    // Get the AAP providers, which contain the attribute policy info.
-    Iterator<IAAP*> provs=application->getAAPProviders();
-
-    // Clear out the list of mapped attributes
-    while (provs.hasNext()) {
-        IAAP* aap=provs.next();
-        aap->lock();
-        try {
-            Iterator<const IAttributeRule*> rules=aap->getAttributeRules();
-            while (rules.hasNext()) {
-                const char* header=rules.next()->getHeader();
-                if (header)
-                    ap_table_unset(r->headers_in,header);
-            }
-        }
-        catch(...) {
-            aap->unlock();
-            for (int k = 0; k < assertions.size(); k++)
-                delete assertions[k];
-            delete sso_statement;
-            ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),
-                "shib_check_user(): caught unexpected error while clearing headers");
-            markupProcessor.insert("errorType", "Attribute Processing Error");
-            markupProcessor.insert("errorText", "Unexpected Exception");
-            markupProcessor.insert("errorDesc", "An error occurred while processing your request.");
-            return shib_error_page(r, application, "rm", markupProcessor);
-        }
-        aap->unlock();
+    return string(hdr ? hdr : "");
+  }
+  virtual void setRemoteUser(const string &user) {
+    SH_AP_USER(m_req) = ap_pstrdup(m_req->pool, user.c_str());
+  }
+  virtual string getRemoteUser(void) {
+    return string(SH_AP_USER(m_req) ? SH_AP_USER(m_req) : "");
+  }
+  virtual void* sendPage(
+    const string& msg,
+    int code=200,
+    const string& content_type="text/html",
+       const Iterator<header_t>& headers=EMPTY(header_t)
+    ) {
+    checkString(content_type, "Detected control character in a response header.");
+    m_req->content_type = ap_psprintf(m_req->pool, content_type.c_str());
+    while (headers.hasNext()) {
+        const header_t& h=headers.next();
+        checkString(h.first, "Detected control character in a response header.");
+        checkString(h.second, "Detected control character in a response header.");
+        ap_table_set(m_req->headers_out, h.first.c_str(), h.second.c_str());
     }
-    provs.reset();
-    
-    // Maybe export the first assertion.
-    ap_table_unset(r->headers_in,"Shib-Attributes");
-    pair<bool,bool> exp=settings.first->getBool("exportAssertion");
-    if (!exp.first || !exp.second)
-        if (dc->bExportAssertion==1)
-            exp.second=true;
-    if (exp.second && assertions.size()) {
-        string assertion;
-        RM::serialize(*(assertions[0]), assertion);
-        ap_table_set(r->headers_in,"Shib-Attributes", assertion.c_str());
+    ap_send_http_header(m_req);
+    ap_rprintf(m_req, msg.c_str());
+    return (void*)((code==200) ? DONE : code);
+  }
+  virtual void* sendRedirect(const string& url) {
+    checkString(url, "Detected control character in an attempted redirect.");
+    if (g_allowedSchemes.find(url.substr(0, url.find(':'))) == g_allowedSchemes.end())
+        throw FatalProfileException("Invalid scheme in attempted redirect.");
+    ap_table_set(m_req->headers_out, "Location", url.c_str());
+    return (void*)REDIRECT;
+  }
+  virtual void* returnDecline(void) { return (void*)DECLINED; }
+  virtual void* returnOK(void) { return (void*)OK; }
+
+  bool m_handler,m_firsttime;;
+  request_rec* m_req;
+  shib_dir_config* m_dc;
+  shib_server_config* m_sc;
+  shib_request_config* m_rc;
+  set<string> m_allhttp;
+
+private:
+  void checkString(const string& s, const char* msg) {
+    string::const_iterator e = s.end();
+    for (string::const_iterator i=s.begin(); i!=e; ++i) {
+        if (iscntrl(*i))
+            throw FatalProfileException(msg);
     }
+  }
+};
 
-    // Export the SAML AuthnMethod and the origin site name, and possibly the NameIdentifier.
-    ap_table_unset(r->headers_in,"Shib-Origin-Site");
-    ap_table_unset(r->headers_in,"Shib-Authentication-Method");
-    ap_table_unset(r->headers_in,"Shib-NameIdentifier-Format");
-    if (sso_statement) {
-        auto_ptr_char os(sso_statement->getSubject()->getNameIdentifier()->getNameQualifier());
-        auto_ptr_char am(sso_statement->getAuthMethod());
-        ap_table_set(r->headers_in,"Shib-Origin-Site", os.get());
-        ap_table_set(r->headers_in,"Shib-Authentication-Method", am.get());
-        
-        // Export NameID?
-        AAP wrapper(provs,sso_statement->getSubject()->getNameIdentifier()->getFormat(),Constants::SHIB_ATTRIBUTE_NAMESPACE_URI);
-        if (!wrapper.fail() && wrapper->getHeader()) {
-            auto_ptr_char form(sso_statement->getSubject()->getNameIdentifier()->getFormat());
-            auto_ptr_char nameid(sso_statement->getSubject()->getNameIdentifier()->getName());
-            ap_table_set(r->headers_in,"Shib-NameIdentifier-Format",form.get());
-            if (!strcmp(wrapper->getHeader(),"REMOTE_USER"))
-                SH_AP_USER(r)=ap_pstrdup(r->pool,nameid.get());
-            else
-                ap_table_set(r->headers_in,wrapper->getHeader(),nameid.get());
-        }
+/********************************************************************************/
+// Apache handlers
+
+extern "C" int shib_check_user(request_rec* r)
+{
+    // Short-circuit entirely?
+    if (((shib_dir_config*)ap_get_module_config(r->per_dir_config, &mod_shib))->bOff==1)
+        return DECLINED;
+
+    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_check_user(%d): ENTER", (int)getpid());
+
+    ostringstream threadid;
+    threadid << "[" << getpid() << "] shib_check_user" << '\0';
+    saml::NDC ndc(threadid.str().c_str());
+
+    try {
+        ShibTargetApache sta(r, false, true);
+
+        // Check user authentication and export information, then set the handler bypass
+        pair<bool,void*> res = sta.doCheckAuthN(true);
+        apr_pool_userdata_setn((const void*)42,g_UserDataKey,NULL,r->pool);
+        // If directed, install a spoof key to recognize when we've already cleared headers.
+        if (!g_spoofKey.empty() && (((shib_dir_config*)ap_get_module_config(r->per_dir_config, &mod_shib))->bUseHeaders!=0))
+            ap_table_set(r->headers_in, "Shib-Spoof-Check", g_spoofKey.c_str());
+        if (res.first) return (int)(long)res.second;
+
+        // user auth was okay -- export the assertions now
+        res = sta.doExportAssertions();
+        if (res.first) return (int)(long)res.second;
+
+        // export happened successfully..  this user is ok.
+        return OK;
     }
-    
-    ap_table_unset(r->headers_in,"Shib-Application-ID");
-    ap_table_set(r->headers_in,"Shib-Application-ID",application_id.second);
-
-    // Export the attributes.
-    Iterator<SAMLAssertion*> a_iter(assertions);
-    while (a_iter.hasNext()) {
-        SAMLAssertion* assert=a_iter.next();
-        Iterator<SAMLStatement*> statements=assert->getStatements();
-        while (statements.hasNext()) {
-            SAMLAttributeStatement* astate=dynamic_cast<SAMLAttributeStatement*>(statements.next());
-            if (!astate)
-                continue;
-            Iterator<SAMLAttribute*> attrs=astate->getAttributes();
-            while (attrs.hasNext()) {
-                SAMLAttribute* attr=attrs.next();
-        
-                // Are we supposed to export it?
-                AAP wrapper(provs,attr->getName(),attr->getNamespace());
-                if (wrapper.fail() || !wrapper->getHeader())
-                    continue;
-                
-                Iterator<string> vals=attr->getSingleByteValues();
-                if (!strcmp(wrapper->getHeader(),"REMOTE_USER") && vals.hasNext())
-                    SH_AP_USER(r)=ap_pstrdup(r->pool,vals.next().c_str());
-                else {
-                    int it=0;
-                    char* header = (char*)ap_table_get(r->headers_in, wrapper->getHeader());
-                    if (header) {
-                        header=ap_pstrdup(r->pool, header);
-                        it++;
-                    }
-                    else
-                        header = ap_pstrdup(r->pool, "");
-                    for (; vals.hasNext(); it++) {
-                        string value = vals.next();
-                        for (string::size_type pos = value.find_first_of(";", string::size_type(0));
-                                pos != string::npos;
-                                pos = value.find_first_of(";", pos)) {
-                            value.insert(pos, "\\");
-                            pos += 2;
-                        }
-                        header=ap_pstrcat(r->pool, header, (it ? ";" : ""), value.c_str(), NULL);
-                    }
-                    ap_table_setn(r->headers_in, wrapper->getHeader(), header);
-               }
-            }
+    catch (exception& e) {
+        ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "shib_check_user threw an exception: %s", e.what());
+        return SERVER_ERROR;
+    }
+    catch (...) {
+        if (g_catchAll) {
+            ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "shib_check_user threw an uncaught exception!");
+            return SERVER_ERROR;
         }
+        throw;
     }
-
-    // clean up memory
-    for (int k = 0; k < assertions.size(); k++)
-        delete assertions[k];
-    delete sso_statement;
-
-    return OK;
 }
 
-extern "C" int shib_post_handler(request_rec* r)
+extern "C" int shib_handler(request_rec* r)
 {
-  ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),
-               "shib_post_handler(%d): ENTER", (int)getpid());
+    // Short-circuit entirely?
+    if (((shib_dir_config*)ap_get_module_config(r->per_dir_config, &mod_shib))->bOff==1)
+        return DECLINED;
+
+    ostringstream threadid;
+    threadid << "[" << getpid() << "] shib_handler" << '\0';
+    saml::NDC ndc(threadid.str().c_str());
 
 #ifndef SHIB_APACHE_13
     // With 2.x, this handler always runs, though last.
-    // We check if shib_check_user ran, because it will detect a SHIRE request
+    // We check if shib_check_user ran, because it will detect a handler request
     // and dispatch it directly.
     void* data;
     apr_pool_userdata_get(&data,g_UserDataKey,r->pool);
     if (data==(const void*)42) {
-        ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_post_handler skipped since check_user ran");
+        ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_handler skipped since check_user ran");
         return DECLINED;
     }
 #endif
-    
-    ostringstream threadid;
-    threadid << "[" << getpid() << "] shib_post_handler" << '\0';
-    saml::NDC ndc(threadid.str().c_str());
 
-    // We lock the configuration system for the duration.
-    IConfig* conf=g_Config->getINI();
-    Locker locker(conf);
-    
-    // Map request to application and content settings.
-    IRequestMapper* mapper=conf->getRequestMapper();
-    Locker locker2(mapper);
-    IRequestMapper::Settings settings=mapper->getSettingsFromParsedURL(
-        ap_http_method(r), ap_get_server_name(r), ap_get_server_port(r), r->unparsed_uri
-        );
-    pair<bool,const char*> application_id=settings.first->getString("applicationId");
-    const IApplication* application=conf->getApplication(application_id.second);
-    if (!application) {
-        ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),
-           "shib_post_handler: unable to map request to application settings, check configuration");
+    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_handler(%d): ENTER: %s", (int)getpid(), r->handler);
+
+    try {
+        ShibTargetApache sta(r, true, false);
+
+        pair<bool,void*> res = sta.doHandler();
+        if (res.first) return (int)(long)res.second;
+
+        ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "doHandler() did not do anything.");
+        return SERVER_ERROR;
+    }
+    catch (exception& e) {
+        ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "shib_handler threw an exception: %s", e.what());
         return SERVER_ERROR;
     }
-    
-    // Declare SHIRE object for this request.
-    SHIRE shire(application);
-    
-    return shib_handler(r, application, shire);
+    catch (...) {
+        if (g_catchAll) {
+            ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "shib_handler threw an uncaught exception!");
+            return SERVER_ERROR;
+        }
+        throw;
+    }
 }
 
-int shib_handler(request_rec* r, const IApplication* application, SHIRE& shire)
+/*
+ * shib_auth_checker() -- a simple resource manager to
+ * process the .htaccess settings
+ */
+extern "C" int shib_auth_checker(request_rec* r)
 {
-    // Prime the pump...
-    const char* targeturl = ap_construct_url(r->pool,r->unparsed_uri,r);
-
-    // Make sure we only process the SHIRE requests.
-    if (!strstr(targeturl,shire.getShireURL(targeturl)))
+    // Short-circuit entirely?
+    if (((shib_dir_config*)ap_get_module_config(r->per_dir_config, &mod_shib))->bOff==1)
         return DECLINED;
 
-    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_handler() running");
+    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_auth_checker(%d): ENTER", (int)getpid());
 
-    const IPropertySet* sessionProps=application->getPropertySet("Sessions");
-    if (!sessionProps) {
-        ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),
-           "shib_post_handler: unable to map request to application session settings, check configuration");
+    ostringstream threadid;
+    threadid << "[" << getpid() << "] shib_auth_checker" << '\0';
+    saml::NDC ndc(threadid.str().c_str());
+
+    try {
+        ShibTargetApache sta(r, false, false);
+
+        pair<bool,void*> res = sta.doCheckAuthZ();
+        if (res.first) return (int)(long)res.second;
+
+        // We're all okay.
+        return OK;
+    }
+    catch (exception& e) {
+        ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "shib_auth_checker threw an exception: %s", e.what());
         return SERVER_ERROR;
     }
+    catch (...) {
+        if (g_catchAll) {
+            ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "shib_auth_checker threw an uncaught exception!");
+            return SERVER_ERROR;
+        }
+        throw;
+    }
+}
 
-    pair<const char*,const char*> shib_cookie=shire.getCookieNameProps();   // always returns something
+// Access control plugin that enforces htaccess rules
+class htAccessControl : virtual public IAccessControl
+{
+public:
+    htAccessControl() {}
+    ~htAccessControl() {}
+    void lock() {}
+    void unlock() {}
+    bool authorized(
+        ShibTarget* st,
+        ISessionCacheEntry* entry
+    ) const;
+};
 
-    ShibMLP markupProcessor;
-    markupProcessor.insert("requestURL", targeturl);
+IPlugIn* htAccessFactory(const DOMElement* e)
+{
+    return new htAccessControl();
+}
 
-    // Process SHIRE request
-    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_handler() Beginning SHIRE processing");
-      
-    try {
-        pair<bool,bool> shireSSL=sessionProps->getBool("shireSSL");
-      
-        // Make sure this is SSL, if it should be
-        if ((!shireSSL.first || shireSSL.second) && strcmp(ap_http_method(r),"https"))
-            throw ShibTargetException(SHIBRPC_OK, "blocked non-SSL access to session creation service");
-
-        // If this is a GET, we manufacture an AuthnRequest.
-        if (!strcasecmp(r->method,"GET")) {
-            const char* areq=r->args ? shire.getLazyAuthnRequest(r->args) : NULL;
-            if (!areq)
-                throw ShibTargetException(SHIBRPC_OK, "malformed arguments to request a new session");
-            ap_table_setn(r->headers_out, "Location", ap_pstrdup(r->pool,areq));
-            return REDIRECT;
-        }
-        else if (strcasecmp(r->method,"POST")) {
-            throw ShibTargetException(SHIBRPC_OK, "blocked non-POST to SHIRE POST processor");
-        }
+class ApacheRequestMapper : public virtual IRequestMapper, public virtual IPropertySet
+{
+public:
+    ApacheRequestMapper(const DOMElement* e);
+    ~ApacheRequestMapper() { delete m_mapper; delete m_htaccess; delete m_staKey; delete m_propsKey; }
+    void lock() { m_mapper->lock(); }
+    void unlock() { m_staKey->setData(NULL); m_propsKey->setData(NULL); m_mapper->unlock(); }
+    Settings getSettings(ShibTarget* st) const;
+
+    pair<bool,bool> getBool(const char* name, const char* ns=NULL) const;
+    pair<bool,const char*> getString(const char* name, const char* ns=NULL) const;
+    pair<bool,const XMLCh*> getXMLString(const char* name, const char* ns=NULL) const;
+    pair<bool,unsigned int> getUnsignedInt(const char* name, const char* ns=NULL) const;
+    pair<bool,int> getInt(const char* name, const char* ns=NULL) const;
+    const IPropertySet* getPropertySet(const char* name, const char* ns="urn:mace:shibboleth:target:config:1.0") const;
+    const DOMElement* getElement() const;
+
+private:
+    IRequestMapper* m_mapper;
+    ThreadKey* m_staKey;
+    ThreadKey* m_propsKey;
+    IAccessControl* m_htaccess;
+};
 
-        // Sure sure this POST is an appropriate content type
-        const char *ct = ap_table_get(r->headers_in, "Content-type");
-        if (!ct || strcasecmp(ct, "application/x-www-form-urlencoded"))
-            throw ShibTargetException(SHIBRPC_OK,
-                                     ap_psprintf(r->pool, "blocked bad content-type to SHIRE POST processor: %s", (ct ? ct : "")));
-
-        // Read the posted data
-        if (ap_setup_client_block(r, REQUEST_CHUNKED_ERROR))
-            throw ShibTargetException(SHIBRPC_OK, "CGI setup_client_block failed");
-        if (!ap_should_client_block(r))
-            throw ShibTargetException(SHIBRPC_OK, "CGI should_client_block failed");
-        if (r->remaining > 1024*1024)
-            throw ShibTargetException (SHIBRPC_OK, "CGI length too long...");
-
-        string cgistr;
-        char buff[HUGE_STRING_LEN];
-        ap_hard_timeout("[mod_shib] CGI Parser", r);
-        memset(buff, 0, sizeof(buff));
-        while (ap_get_client_block(r, buff, sizeof(buff)-1) > 0) {
-            cgistr += buff;
-            memset(buff, 0, sizeof(buff));
-        }
-        ap_kill_timeout(r);
-
-        // Parse the submission.
-        pair<const char*,const char*> elements=shire.getFormSubmission(cgistr.c_str(),cgistr.length());
-    
-        // Make sure the SAML Response parameter exists
-        if (!elements.first || !*elements.first)
-            throw ShibTargetException(SHIBRPC_OK, "SHIRE POST failed to find SAMLResponse form element");
-    
-        // Make sure the target parameter exists
-        if (!elements.second || !*elements.second)
-            throw ShibTargetException(SHIBRPC_OK, "SHIRE POST failed to find TARGET form element");
-    
-        ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),
-            "shib_handler() Processing POST for target: %s", elements.second);
-
-        // process the post
-        string cookie;
-        RPCError* status = shire.sessionCreate(elements.first, r->connection->remote_ip, cookie);
-
-        if (status->isError()) {
-            ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),
-                   "shib_handler() POST process failed (%d): %s", status->getCode(), status->getText());
-
-            if (status->isRetryable()) {
-                delete status;
-                ap_log_rerror(APLOG_MARK,APLOG_INFO|APLOG_NOERRNO,SH_AP_R(r),
-                       "shib_handler() retryable error, generating new AuthnRequest");
-                ap_table_setn(r->headers_out,"Location",ap_pstrdup(r->pool,shire.getAuthnRequest(elements.second)));
-                return REDIRECT;
-            }
+IPlugIn* ApacheRequestMapFactory(const DOMElement* e)
+{
+    return new ApacheRequestMapper(e);
+}
 
-            // return this error to the user.
-            markupProcessor.insert(*status);
-            delete status;
-            return shib_error_page(r, application, "shire", markupProcessor);
-        }
-        delete status;
+ApacheRequestMapper::ApacheRequestMapper(const DOMElement* e) : m_mapper(NULL), m_staKey(NULL), m_propsKey(NULL), m_htaccess(NULL)
+{
+    IPlugIn* p=saml::SAMLConfig::getConfig().getPlugMgr().newPlugin(shibtarget::XML::XMLRequestMapType,e);
+    m_mapper=dynamic_cast<IRequestMapper*>(p);
+    if (!m_mapper) {
+        delete p;
+        throw UnsupportedExtensionException("Embedded request mapper plugin was not of correct type.");
+    }
+    m_htaccess=new htAccessControl();
+    m_staKey=ThreadKey::create(NULL);
+    m_propsKey=ThreadKey::create(NULL);
+}
 
-        ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),
-                 "shib_handler() POST process succeeded.  New session: %s", cookie.c_str());
+IRequestMapper::Settings ApacheRequestMapper::getSettings(ShibTarget* st) const
+{
+    Settings s=m_mapper->getSettings(st);
+    m_staKey->setData(dynamic_cast<ShibTargetApache*>(st));
+    m_propsKey->setData((void*)s.first);
+    return pair<const IPropertySet*,IAccessControl*>(this,s.second ? s.second : m_htaccess);
+}
 
-        // We've got a good session, set the cookie...
-        char* val = ap_psprintf(r->pool,"%s=%s%s",shib_cookie.first,cookie.c_str(),shib_cookie.second);
-        ap_table_setn(r->err_headers_out, "Set-Cookie", val);
-        ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_handler() setting cookie: %s", val);
+pair<bool,bool> ApacheRequestMapper::getBool(const char* name, const char* ns) const
+{
+    ShibTargetApache* sta=reinterpret_cast<ShibTargetApache*>(m_staKey->getData());
+    const IPropertySet* s=reinterpret_cast<const IPropertySet*>(m_propsKey->getData());
+    if (sta && !ns) {
+        // Override Apache-settable boolean properties.
+        if (name && !strcmp(name,"requireSession") && sta->m_dc->bRequireSession != -1)
+            return make_pair(true, sta->m_dc->bRequireSession==1);
+        else if (name && !strcmp(name,"exportAssertion") && sta->m_dc->bExportAssertion != -1)
+            return make_pair(true, sta->m_dc->bExportAssertion==1);
+    }
+    return s ? s->getBool(name,ns) : make_pair(false,false);
+}
 
-        // ... and redirect to the target
-        ap_table_setn(r->headers_out, "Location", ap_pstrdup(r->pool,elements.second));
-        return REDIRECT;
+pair<bool,const char*> ApacheRequestMapper::getString(const char* name, const char* ns) const
+{
+    ShibTargetApache* sta=reinterpret_cast<ShibTargetApache*>(m_staKey->getData());
+    const IPropertySet* s=reinterpret_cast<const IPropertySet*>(m_propsKey->getData());
+    if (sta && !ns) {
+        // Override Apache-settable string properties.
+        if (name && !strcmp(name,"authType")) {
+            const char *auth_type=ap_auth_type(sta->m_req);
+            if (auth_type) {
+                // Check for Basic Hijack
+                if (!strcasecmp(auth_type, "basic") && sta->m_dc->bBasicHijack == 1)
+                    auth_type = "shibboleth";
+                return make_pair(true,auth_type);
+            }
+        }
+        else if (name && !strcmp(name,"applicationId") && sta->m_dc->szApplicationId)
+            return pair<bool,const char*>(true,sta->m_dc->szApplicationId);
+        else if (name && !strcmp(name,"requireSessionWith") && sta->m_dc->szRequireWith)
+            return pair<bool,const char*>(true,sta->m_dc->szRequireWith);
+        else if (name && !strcmp(name,"redirectToSSL") && sta->m_dc->szRedirectToSSL)
+            return pair<bool,const char*>(true,sta->m_dc->szRedirectToSSL);
     }
-    catch (ShibTargetException &e) {
-        ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_handler() caught exception: %s", e.what());
-        markupProcessor.insert("errorType", "Session Creation Service Error");
-        markupProcessor.insert("errorText", e.what());
-        markupProcessor.insert("errorDesc", "An error occurred while processing your request.");
-        return shib_error_page(r, application, "shire", markupProcessor);
+    return s ? s->getString(name,ns) : pair<bool,const char*>(false,NULL);
+}
+
+pair<bool,const XMLCh*> ApacheRequestMapper::getXMLString(const char* name, const char* ns) const
+{
+    const IPropertySet* s=reinterpret_cast<const IPropertySet*>(m_propsKey->getData());
+    return s ? s->getXMLString(name,ns) : pair<bool,const XMLCh*>(false,NULL);
+}
+
+pair<bool,unsigned int> ApacheRequestMapper::getUnsignedInt(const char* name, const char* ns) const
+{
+    ShibTargetApache* sta=reinterpret_cast<ShibTargetApache*>(m_staKey->getData());
+    const IPropertySet* s=reinterpret_cast<const IPropertySet*>(m_propsKey->getData());
+    if (sta && !ns) {
+        // Override Apache-settable int properties.
+        if (name && !strcmp(name,"redirectToSSL") && sta->m_dc->szRedirectToSSL)
+            return pair<bool,unsigned int>(true,strtol(sta->m_dc->szRedirectToSSL,NULL,10));
     }
-#ifndef _DEBUG
-    catch (...) {
-        ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_handler(): unexpected exception");
-        markupProcessor.insert("errorType", "Session Creation Service Error");
-        markupProcessor.insert("errorText", "Unknown Exception");
-        markupProcessor.insert("errorDesc", "An error occurred while processing your request.");
-        return shib_error_page(r, application, "shire", markupProcessor);
+    return s ? s->getUnsignedInt(name,ns) : pair<bool,unsigned int>(false,0);
+}
+
+pair<bool,int> ApacheRequestMapper::getInt(const char* name, const char* ns) const
+{
+    ShibTargetApache* sta=reinterpret_cast<ShibTargetApache*>(m_staKey->getData());
+    const IPropertySet* s=reinterpret_cast<const IPropertySet*>(m_propsKey->getData());
+    if (sta && !ns) {
+        // Override Apache-settable int properties.
+        if (name && !strcmp(name,"redirectToSSL") && sta->m_dc->szRedirectToSSL)
+            return pair<bool,int>(true,atoi(sta->m_dc->szRedirectToSSL));
     }
-#endif
+    return s ? s->getInt(name,ns) : pair<bool,int>(false,0);
+}
+
+const IPropertySet* ApacheRequestMapper::getPropertySet(const char* name, const char* ns) const
+{
+    const IPropertySet* s=reinterpret_cast<const IPropertySet*>(m_propsKey->getData());
+    return s ? s->getPropertySet(name,ns) : NULL;
+}
 
-    ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),"shib_handler() server error");
-    return SERVER_ERROR;
+const DOMElement* ApacheRequestMapper::getElement() const
+{
+    const IPropertySet* s=reinterpret_cast<const IPropertySet*>(m_propsKey->getData());
+    return s ? s->getElement() : NULL;
 }
 
 static SH_AP_TABLE* groups_for_user(request_rec* r, const char* user, char* grpfile)
@@ -653,7 +791,7 @@ static SH_AP_TABLE* groups_for_user(request_rec* r, const char* user, char* grpf
 #else
     if (ap_pcfg_openfile(&f,r->pool,grpfile) != APR_SUCCESS) {
 #endif
-        ap_log_rerror(APLOG_MARK,APLOG_DEBUG,SH_AP_R(r),"groups_for_user() could not open group file: %s\n",grpfile);
+        ap_log_rerror(APLOG_MARK,APLOG_DEBUG,SH_AP_R(r),"groups_for_user() could not open group file: %s",grpfile);
         return NULL;
     }
 
@@ -689,58 +827,38 @@ static SH_AP_TABLE* groups_for_user(request_rec* r, const char* user, char* grpf
     return grps;
 }
 
-/*
- * shib_auth_checker() -- a simple resource manager to
- * process the .htaccess settings and copy attributes
- * into the HTTP headers.
- */
-extern "C" int shib_auth_checker(request_rec* r)
+bool htAccessControl::authorized(
+    ShibTarget* st,
+    ISessionCacheEntry* entry
+) const
 {
-    shib_dir_config* dc=
-        (shib_dir_config*)ap_get_module_config(r->per_dir_config,&mod_shib);
-
-    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_auth_checker() executing");
-
-    // Regular access to arbitrary resource...check AuthType
-    const char* auth_type=ap_auth_type(r);
-    if (!auth_type || strcasecmp(auth_type,"shibboleth"))
-        return DECLINED;
-
-    ostringstream threadid;
-    threadid << "[" << getpid() << "] shibrm" << '\0';
-    saml::NDC ndc(threadid.str().c_str());
-
-    // We lock the configuration system for the duration.
-    IConfig* conf=g_Config->getINI();
-    Locker locker(conf);
-    
-    const char* application_id=ap_table_get(r->headers_in,"Shib-Application-ID");
-    const IApplication* application=NULL;
-    if (application_id)
-        application = conf->getApplication(application_id);
+    // Make sure the object is our type.
+    ShibTargetApache* sta=dynamic_cast<ShibTargetApache*>(st);
+    if (!sta)
+        throw ConfigurationException("Request wrapper object was not of correct type.");
 
     // mod_auth clone
 
-    int m=r->method_number;
+    int m=sta->m_req->method_number;
     bool method_restricted=false;
     const char *t, *w;
-    
-    const array_header* reqs_arr=ap_requires(r);
+
+    const array_header* reqs_arr=ap_requires(sta->m_req);
     if (!reqs_arr)
-        return OK;
+        return true;
 
     require_line* reqs=(require_line*)reqs_arr->elts;
 
-    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"REQUIRE nelts: %d", reqs_arr->nelts);
-    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"REQUIRE all: %d", dc->bRequireAll);
+    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(sta->m_req),"REQUIRE nelts: %d", reqs_arr->nelts);
+    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(sta->m_req),"REQUIRE all: %d", sta->m_dc->bRequireAll);
 
     vector<bool> auth_OK(reqs_arr->nelts,false);
 
-#define SHIB_AP_CHECK_IS_OK {       \
-     if (dc->bRequireAll < 1)    \
-         return OK;      \
-     auth_OK[x] = true;      \
-     continue;           \
+#define SHIB_AP_CHECK_IS_OK {           \
+     if (sta->m_dc->bRequireAll < 1)    \
+         return true;                   \
+     auth_OK[x] = true;                 \
+     continue;                          \
 }
 
     for (int x=0; x<reqs_arr->nelts; x++) {
@@ -748,81 +866,95 @@ extern "C" int shib_auth_checker(request_rec* r)
         if (!(reqs[x].method_mask & (1 << m)))
             continue;
         method_restricted=true;
+        string remote_user = st->getRemoteUser();
 
         t = reqs[x].requirement;
-        w = ap_getword_white(r->pool, &t);
+        w = ap_getword_white(sta->m_req->pool, &t);
 
-        if (!strcasecmp(w,"Shibboleth")) {
+        if (!strcasecmp(w,"shibboleth")) {
             // This is a dummy rule needed because Apache conflates authn and authz.
             // Without some require rule, AuthType is ignored and no check_user hooks run.
             SHIB_AP_CHECK_IS_OK;
         }
-        else if (!strcmp(w,"valid-user") && application_id) {
-            ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_auth_checker() accepting valid-user");
-            SHIB_AP_CHECK_IS_OK;
+        else if (!strcmp(w,"valid-user")) {
+            if (entry) {
+                st->log(ShibTarget::LogLevelDebug,"htAccessControl plugin accepting valid-user based on active session");
+                SHIB_AP_CHECK_IS_OK;
+            }
+            else
+                st->log(ShibTarget::LogLevelError,"htAccessControl plugin rejecting access for valid-user rule, no session is active");
         }
-        else if (!strcmp(w,"user") && SH_AP_USER(r)) {
+        else if (!strcmp(w,"user") && !remote_user.empty()) {
             bool regexp=false;
             while (*t) {
-                w=ap_getword_conf(r->pool,&t);
+                w=ap_getword_conf(sta->m_req->pool,&t);
                 if (*w=='~') {
                     regexp=true;
                     continue;
                 }
-                
+
                 if (regexp) {
                     try {
                         // To do regex matching, we have to convert from UTF-8.
                         auto_ptr<XMLCh> trans(fromUTF8(w));
                         RegularExpression re(trans.get());
-                        auto_ptr<XMLCh> trans2(fromUTF8(SH_AP_USER(r)));
+                        auto_ptr<XMLCh> trans2(fromUTF8(remote_user.c_str()));
                         if (re.matches(trans2.get())) {
-                            ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_auth_checker() accepting user: %s",w);
+                            st->log(ShibTarget::LogLevelDebug, string("htAccessControl plugin accepting user (") + w + ")");
                             SHIB_AP_CHECK_IS_OK;
                         }
                     }
                     catch (XMLException& ex) {
                         auto_ptr_char tmp(ex.getMessage());
-                        ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),
-                                        "shib_auth_checker caught exception while parsing regular expression (%s): %s",w,tmp.get());
+                        st->log(ShibTarget::LogLevelError,
+                            string("htAccessControl plugin caught exception while parsing regular expression (") + w + "): " + tmp.get());
                     }
                 }
-                else if (!strcmp(SH_AP_USER(r),w)) {
-                    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_auth_checker() accepting user: %s",w);
+                else if (remote_user==w) {
+                    st->log(ShibTarget::LogLevelDebug, string("htAccessControl plugin accepting user (") + w + ")");
                     SHIB_AP_CHECK_IS_OK;
                 }
             }
         }
         else if (!strcmp(w,"group")) {
             SH_AP_TABLE* grpstatus=NULL;
-            if (dc->szAuthGrpFile && SH_AP_USER(r)) {
-                ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_auth_checker() using groups file: %s\n",dc->szAuthGrpFile);
-                grpstatus=groups_for_user(r,SH_AP_USER(r),dc->szAuthGrpFile);
+            if (sta->m_dc->szAuthGrpFile && !remote_user.empty()) {
+                st->log(ShibTarget::LogLevelDebug,string("htAccessControl plugin using groups file: ") + sta->m_dc->szAuthGrpFile);
+                grpstatus=groups_for_user(sta->m_req,remote_user.c_str(),sta->m_dc->szAuthGrpFile);
             }
             if (!grpstatus)
-                return DECLINED;
-    
+                return false;
+
             while (*t) {
-                w=ap_getword_conf(r->pool,&t);
+                w=ap_getword_conf(sta->m_req->pool,&t);
                 if (ap_table_get(grpstatus,w)) {
-                    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_auth_checker() accepting group: %s",w);
+                    st->log(ShibTarget::LogLevelDebug, string("htAccessControl plugin accepting group (") + w + ")");
                     SHIB_AP_CHECK_IS_OK;
                 }
             }
         }
         else {
-            Iterator<IAAP*> provs=application ? application->getAAPProviders() : EMPTY(IAAP*);
+            Iterator<IAAP*> provs=st->getApplication()->getAAPProviders();
             AAP wrapper(provs,w);
             if (wrapper.fail()) {
-                ap_log_rerror(APLOG_MARK,APLOG_WARNING|APLOG_NOERRNO,SH_AP_R(r),
-                    "shib_auth_checker() didn't recognize require rule: %s\n",w);
+                st->log(ShibTarget::LogLevelWarn, string("htAccessControl plugin didn't recognize require rule: ") + w);
                 continue;
             }
 
             bool regexp=false;
-            const char* vals=ap_table_get(r->headers_in,wrapper->getHeader());
-            while (*t && vals) {
-                w=ap_getword_conf(r->pool,&t);
+            const char* vals;
+            if (!strcmp(wrapper->getHeader(),"REMOTE_USER"))
+                vals=remote_user.c_str();
+            else
+                if (sta->m_dc->bUseEnvVars==1) {
+                   if (sta->m_rc && sta->m_rc->env) vals=ap_table_get(sta->m_rc->env,wrapper->getHeader());
+                   else vals = NULL;
+                } else {
+                   vals=ap_table_get(sta->m_req->headers_in,wrapper->getHeader());
+                }
+
+            while (*t && vals && *vals) {
+                w=ap_getword_conf(sta->m_req->pool,&t);
                 if (*w=='~') {
                     regexp=true;
                     continue;
@@ -836,15 +968,15 @@ extern "C" int shib_auth_checker(request_rec* r)
                         auto_ptr<RegularExpression> temp(new RegularExpression(trans.get()));
                         re=temp;
                     }
-                    
+
                     string vals_str(vals);
-                    int j = 0;
-                    for (int i = 0;  i < vals_str.length();  i++) {
+                    unsigned int j = 0;
+                    for (unsigned int i = 0;  i < vals_str.length();  i++) {
                         if (vals_str.at(i) == ';') {
                             if (i == 0) {
-                                ap_log_rerror(APLOG_MARK,APLOG_WARNING|APLOG_NOERRNO,SH_AP_R(r),
-                                                "shib_auth_checker() invalid header encoding %s: starts with semicolon", vals);
-                                return SERVER_ERROR;
+                                st->log(ShibTarget::LogLevelError, string("htAccessControl plugin found invalid header encoding (") +
+                                    vals + "): starts with a semicolon");
+                                throw SAMLException("Invalid information supplied to authorization plugin.");
                             }
 
                             if (vals_str.at(i-1) == '\\') {
@@ -858,46 +990,46 @@ extern "C" int shib_auth_checker(request_rec* r)
                             if (regexp) {
                                 auto_ptr<XMLCh> trans(fromUTF8(val.c_str()));
                                 if (re->matches(trans.get())) {
-                                    ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),
-                                                    "shib_auth_checker() expecting %s, got %s: authorization granted", w, val.c_str());
+                                    st->log(ShibTarget::LogLevelDebug, string("htAccessControl plugin expecting ") + w +
+                                       ", got " + val + ": authorization granted");
                                     SHIB_AP_CHECK_IS_OK;
                                 }
                             }
-                            else if (val==w) {
-                                ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),
-                                                "shib_auth_checker() expecting %s, got %s: authorization granted", w, val.c_str());
+                            else if ((wrapper->getCaseSensitive() && val==w) || (!wrapper->getCaseSensitive() && !strcasecmp(val.c_str(),w))) {
+                                st->log(ShibTarget::LogLevelDebug, string("htAccessControl plugin expecting ") + w +
+                                    ", got " + val + ": authorization granted.");
                                 SHIB_AP_CHECK_IS_OK;
                             }
                             else {
-                                ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),
-                                                "shib_auth_checker() expecting %s, got %s: authorization not granted", w, val.c_str());
+                                st->log(ShibTarget::LogLevelDebug, string("htAccessControl plugin expecting ") + w +
+                                    ", got " + val + ": authorization not granted.");
                             }
                         }
                     }
-    
+
                     string val = vals_str.substr(j, vals_str.length()-j);
                     if (regexp) {
                         auto_ptr<XMLCh> trans(fromUTF8(val.c_str()));
                         if (re->matches(trans.get())) {
-                            ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),
-                                            "shib_auth_checker() expecting %s, got %s: authorization granted", w, val.c_str());
+                            st->log(ShibTarget::LogLevelDebug, string("htAccessControl plugin expecting ") + w +
+                                ", got " + val + ": authorization granted.");
                             SHIB_AP_CHECK_IS_OK;
                         }
                     }
-                    else if (val==w) {
-                        ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),
-                                        "shib_auth_checker() expecting %s, got %s: authorization granted", w, val.c_str());
+                    else if ((wrapper->getCaseSensitive() && val==w) || (!wrapper->getCaseSensitive() && !strcasecmp(val.c_str(),w))) {
+                        st->log(ShibTarget::LogLevelDebug, string("htAccessControl plugin expecting ") + w +
+                            ", got " + val + ": authorization granted");
                         SHIB_AP_CHECK_IS_OK;
                     }
                     else {
-                        ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),
-                                        "shib_auth_checker() expecting %s, got %s: authorization not granted", w, val.c_str());
+                            st->log(ShibTarget::LogLevelDebug, string("htAccessControl plugin expecting ") + w +
+                                ", got " + val + ": authorization not granted");
                     }
                 }
                 catch (XMLException& ex) {
                     auto_ptr_char tmp(ex.getMessage());
-                    ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),
-                                    "shib_auth_checker caught exception while parsing regular expression (%s): %s",w,tmp.get());
+                    st->log(ShibTarget::LogLevelError, string("htAccessControl plugin caught exception while parsing regular expression (")
+                        + w + "): " + tmp.get());
                 }
             }
         }
@@ -908,71 +1040,71 @@ extern "C" int shib_auth_checker(request_rec* r)
     for (int i= 0; i<reqs_arr->nelts; i++) {
         auth_all_OK &= auth_OK[i];
     }
-    if (auth_all_OK)
-        return OK;
-
-    if (!method_restricted)
-        return OK;
-
-    if (!application_id) {
-        ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),
-           "shib_auth_checker: Shib-Application-ID header not found in request");
-        return HTTP_FORBIDDEN;
-    }
-    else if (!application) {
-        ap_log_rerror(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(r),
-           "shib_auth_checker: unable to map request to application settings, check configuration");
-        return HTTP_FORBIDDEN;
-    }
+    if (auth_all_OK || !method_restricted)
+        return true;
 
-    ShibMLP markupProcessor;
-    markupProcessor.insert("requestURL", ap_construct_url(r->pool,r->unparsed_uri,r));
-    return shib_error_page(r, application, "access", markupProcessor);
+    return false;
 }
 
-/*
- * shib_exit()
- *  Cleanup the (per-process) pool info.
- */
-#ifdef SHIB_APACHE_13
-extern "C" void shib_exit(server_rec* s, SH_AP_POOL* p)
+// Initial look at a request - create the per-request structure
+static int shib_post_read(request_rec *r)
 {
-#else
-extern "C" apr_status_t shib_exit(void* data)
+    shib_request_config* rc = init_request_config(r);
+    //ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_post_read");
+    return DECLINED;
+}
+
+// fixups: set environment vars
+
+extern "C" int shib_fixups(request_rec* r)
 {
-    server_rec* s = NULL;
-#endif
+  shib_request_config *rc = (shib_request_config*)ap_get_module_config(r->request_config, &mod_shib);
+  shib_dir_config *dc = (shib_dir_config*)ap_get_module_config(r->per_dir_config, &mod_shib);
+  if (dc->bOff==1 || dc->bUseEnvVars!=1)
+    return DECLINED;
 
-    ap_log_error(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(s),"shib_exit(%d) dealing with g_Config..", (int)getpid());
+  //ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_fixup(%d): ENTER", (int)getpid());
 
-    g_Config->shutdown();
-    g_Config = NULL;
+  if (rc==NULL || rc->env==NULL || ap_is_empty_table(rc->env))
+        return DECLINED;
 
-    ap_log_error(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(s),"shib_exit() done\n");
-#ifndef SHIB_APACHE_13
-    return OK;
-#endif
-}
+  ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_fixup adding %d vars", ap_table_elts(rc->env)->nelts);
+  r->subprocess_env = ap_overlay_tables(r->pool, r->subprocess_env, rc->env);
 
+  return OK;
+}
 
 #ifdef SHIB_APACHE_13
+/*
+ * shib_child_exit()
+ *  Cleanup the (per-process) pool info.
+ */
 extern "C" void shib_child_exit(server_rec* s, SH_AP_POOL* p)
 {
+    if (g_Config) {
+        ap_log_error(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(s),"shib_child_exit(%d) dealing with g_Config..", (int)getpid());
+        g_Config->shutdown();
+        g_Config = NULL;
+        ap_log_error(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(s),"shib_child_exit() done");
+    }
+}
 #else
-extern "C" apr_status_t shib_child_exit(void* data)
+/*
+ * shib_exit()
+ *  Apache 2.x doesn't allow for per-child cleanup, causes CGI forks to hang.
+ */
+extern "C" apr_status_t shib_exit(void* data)
 {
-  server_rec* s = NULL;
-#endif
-
-  ap_log_error(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(s),"shib_child_exit(%d)",
-              (int)getpid());
-
-#ifndef SHIB_APACHE_13
+    if (g_Config) {
+        g_Config->shutdown();
+        g_Config = NULL;
+    }
+    ap_log_error(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,0,NULL,"shib_exit() done");
     return OK;
-#endif
 }
+#endif
 
-/* 
+/*
  * shire_child_init()
  *  Things to do when the child process is initialized.
  *  (or after the configs are read in apache-2)
@@ -980,8 +1112,7 @@ extern "C" apr_status_t shib_child_exit(void* data)
 #ifdef SHIB_APACHE_13
 extern "C" void shib_child_init(server_rec* s, SH_AP_POOL* p)
 #else
-extern "C" int shib_post_config(apr_pool_t* pconf, apr_pool_t* plog,
-                               apr_pool_t* ptemp, server_rec* s)
+extern "C" void shib_child_init(apr_pool_t* p, server_rec* s)
 #endif
 {
     // Initialize runtime components.
@@ -990,11 +1121,7 @@ extern "C" int shib_post_config(apr_pool_t* pconf, apr_pool_t* plog,
 
     if (g_Config) {
         ap_log_error(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(s),"shib_child_init() already initialized!");
-#ifdef SHIB_APACHE_13
         exit(1);
-#else
-       return OK;
-#endif
     }
 
     try {
@@ -1004,28 +1131,123 @@ extern "C" int shib_post_config(apr_pool_t* pconf, apr_pool_t* plog,
             ShibTargetConfig::Metadata |
             ShibTargetConfig::AAP |
             ShibTargetConfig::RequestMapper |
-            ShibTargetConfig::SHIREExtensions |
+            ShibTargetConfig::LocalExtensions |
             ShibTargetConfig::Logging
             );
-        if (!g_Config->init(g_szSchemaDir,g_szSHIBConfig)) {
-            ap_log_error(APLOG_MARK,APLOG_CRIT|APLOG_NOERRNO,SH_AP_R(s),"shib_child_init() failed to initialize SHIB Target");
+        if (!g_Config->init(g_szSchemaDir)) {
+            ap_log_error(APLOG_MARK,APLOG_CRIT|APLOG_NOERRNO,SH_AP_R(s),"shib_child_init() failed to initialize libraries");
+            exit(1);
+        }
+        PlugManager& mgr = SAMLConfig::getConfig().getPlugMgr();
+        mgr.regFactory(shibtarget::XML::htAccessControlType,&htAccessFactory);
+        mgr.regFactory(shibtarget::XML::NativeRequestMapType,&ApacheRequestMapFactory);
+        // We hijack the legacy type so that 1.2 config files will load this plugin
+        mgr.regFactory(shibtarget::XML::LegacyRequestMapType,&ApacheRequestMapFactory);
+
+        if (!g_Config->load(g_szSHIBConfig)) {
+            ap_log_error(APLOG_MARK,APLOG_CRIT|APLOG_NOERRNO,SH_AP_R(s),"shib_child_init() failed to load configuration");
             exit(1);
         }
+
+        IConfig* conf=g_Config->getINI();
+        saml::Locker locker(conf);
+        const IPropertySet* props=conf->getPropertySet("Local");
+        if (props) {
+            pair<bool,const char*> str=props->getString("unsetHeaderValue");
+            if (str.first)
+                g_unsetHeaderValue = str.second;
+            str=props->getString("allowedSchemes");
+            if (str.first) {
+                string schemes=str.second;
+                unsigned int j=0;
+                for (unsigned int i=0;  i < schemes.length();  i++) {
+                    if (schemes.at(i)==' ') {
+                        g_allowedSchemes.insert(schemes.substr(j, i-j));
+                        j = i+1;
+                    }
+                }
+                g_allowedSchemes.insert(schemes.substr(j, schemes.length()-j));
+            }
+            pair<bool,bool> flag=props->getBool("checkSpoofing");
+            g_checkSpoofing = !flag.first || flag.second;
+            flag=props->getBool("catchAll");
+            g_catchAll = !flag.first || flag.second;
+        }
+        if (g_allowedSchemes.empty()) {
+            g_allowedSchemes.insert("https");
+            g_allowedSchemes.insert("http");
+        }
     }
-    catch (...) {
-        ap_log_error(APLOG_MARK,APLOG_CRIT|APLOG_NOERRNO,SH_AP_R(s),"shib_child_init() failed to initialize SHIB Target");
-        exit (1);
+    catch (exception&) {
+        ap_log_error(APLOG_MARK,APLOG_CRIT|APLOG_NOERRNO,SH_AP_R(s),"shib_child_init() failed to initialize system");
+        exit(1);
     }
 
     // Set the cleanup handler
-    apr_pool_cleanup_register(pconf, NULL, &shib_exit, &shib_child_exit);
+    apr_pool_cleanup_register(p, NULL, &shib_exit, apr_pool_cleanup_null);
 
     ap_log_error(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(s),"shib_child_init() done");
+}
 
-#ifndef SHIB_APACHE_13
-    return OK;
-#endif
+// Output filters
+#ifdef SHIB_DEFERRED_HEADERS
+static void set_output_filter(request_rec *r)
+{
+    ap_add_output_filter("SHIB_HEADERS_OUT", NULL, r, r->connection);
+}
+
+static void set_error_filter(request_rec *r)
+{
+    ap_add_output_filter("SHIB_HEADERS_ERR", NULL, r, r->connection);
+}
+
+static int _table_add(void *v, const char *key, const char *value)
+{
+    apr_table_addn((apr_table_t*)v, key, value);
+    return 1;
+}
+
+static apr_status_t do_output_filter(ap_filter_t *f, apr_bucket_brigade *in)
+{
+    request_rec *r = f->r;
+    shib_request_config *rc = (shib_request_config*) ap_get_module_config(r->request_config, &mod_shib);
+
+    if (rc && rc->hdr_out) {
+        ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_out_filter: merging %d headers", apr_table_elts(rc->hdr_out)->nelts);
+        // can't use overlap call because it will collapse Set-Cookie headers
+        // apr_table_overlap(r->headers_out, rc->hdr_out, APR_OVERLAP_TABLES_MERGE);
+        apr_table_do(_table_add,r->headers_out, rc->hdr_out,NULL);
+    }
+
+    /* remove ourselves from the filter chain */
+    ap_remove_output_filter(f);
+
+    /* send the data up the stack */
+    return ap_pass_brigade(f->next,in);
+}
+
+static apr_status_t do_error_filter(ap_filter_t *f, apr_bucket_brigade *in)
+{
+    request_rec *r = f->r;
+    shib_request_config *rc = (shib_request_config*) ap_get_module_config(r->request_config, &mod_shib);
+
+    if (rc && rc->hdr_out) {
+        ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_err_filter: merging %d headers", apr_table_elts(rc->hdr_out)->nelts);
+        // can't use overlap call because it will collapse Set-Cookie headers
+        // apr_table_overlap(r->err_headers_out, rc->hdr_err, APR_OVERLAP_TABLES_MERGE);
+        apr_table_do(_table_add,r->err_headers_out, rc->hdr_out,NULL);
+    }
+
+    /* remove ourselves from the filter chain */
+    ap_remove_output_filter(f);
+
+    /* send the data up the stack */
+    return ap_pass_brigade(f->next,in);
 }
+#endif // SHIB_DEFERRED_HEADERS
+
+
+typedef const char* (*config_fn_t)(void);
 
 #ifdef SHIB_APACHE_13
 
@@ -1033,34 +1255,56 @@ extern "C" int shib_post_config(apr_pool_t* pconf, apr_pool_t* plog,
 
 static command_rec shire_cmds[] = {
   {"SHIREConfig", (config_fn_t)ap_set_global_string_slot, &g_szSHIBConfig,
-   RSRC_CONF, TAKE1, "Path to shibboleth.xml config file."},
+   RSRC_CONF, TAKE1, "Path to shibboleth.xml config file"},
   {"ShibConfig", (config_fn_t)ap_set_global_string_slot, &g_szSHIBConfig,
-   RSRC_CONF, TAKE1, "Path to shibboleth.xml config file."},
+   RSRC_CONF, TAKE1, "Path to shibboleth.xml config file"},
   {"ShibSchemaDir", (config_fn_t)ap_set_global_string_slot, &g_szSchemaDir,
-   RSRC_CONF, TAKE1, "Path to Shibboleth XML schema directory."},
-
+   RSRC_CONF, TAKE1, "Path to Shibboleth XML schema directory"},
+
+  {"ShibURLScheme", (config_fn_t)shib_set_server_string_slot,
+   (void *) XtOffsetOf (shib_server_config, szScheme),
+   RSRC_CONF, TAKE1, "URL scheme to force into generated URLs for a vhost"},
+
+  {"ShibDisable", (config_fn_t)ap_set_flag_slot,
+   (void *) XtOffsetOf (shib_dir_config, bOff),
+   OR_AUTHCFG, FLAG, "Disable all Shib module activity here to save processing effort"},
+  {"ShibApplicationId", (config_fn_t)ap_set_string_slot,
+   (void *) XtOffsetOf (shib_dir_config, szApplicationId),
+   OR_AUTHCFG, TAKE1, "Set Shibboleth applicationId property for content"},
   {"ShibBasicHijack", (config_fn_t)ap_set_flag_slot,
    (void *) XtOffsetOf (shib_dir_config, bBasicHijack),
-   OR_AUTHCFG, FLAG, "Respond to AuthType Basic and convert to shib?"},
+   OR_AUTHCFG, FLAG, "Respond to AuthType Basic and convert to shibboleth"},
   {"ShibRequireSession", (config_fn_t)ap_set_flag_slot,
    (void *) XtOffsetOf (shib_dir_config, bRequireSession),
-   OR_AUTHCFG, FLAG, "Initiates a new session if one does not exist."},
+   OR_AUTHCFG, FLAG, "Initiates a new session if one does not exist"},
+  {"ShibRequireSessionWith", (config_fn_t)ap_set_string_slot,
+   (void *) XtOffsetOf (shib_dir_config, szRequireWith),
+   OR_AUTHCFG, TAKE1, "Initiates a new session if one does not exist using a specific SessionInitiator"},
   {"ShibExportAssertion", (config_fn_t)ap_set_flag_slot,
    (void *) XtOffsetOf (shib_dir_config, bExportAssertion),
-   OR_AUTHCFG, FLAG, "Export SAML assertion to Shibboleth-defined header?"},
-  {"AuthGroupFile", (config_fn_t)ap_set_file_slot,
+   OR_AUTHCFG, FLAG, "Export SAML attribute assertion(s) to Shib-Attributes header"},
+  {"ShibRedirectToSSL", (config_fn_t)ap_set_string_slot,
+   (void *) XtOffsetOf (shib_dir_config, szRedirectToSSL),
+   OR_AUTHCFG, TAKE1, "Redirect non-SSL requests to designated port" },
+  {"AuthGroupFile", (config_fn_t)shib_ap_set_file_slot,
    (void *) XtOffsetOf (shib_dir_config, szAuthGrpFile),
    OR_AUTHCFG, TAKE1, "text file containing group names and member user IDs"},
   {"ShibRequireAll", (config_fn_t)ap_set_flag_slot,
    (void *) XtOffsetOf (shib_dir_config, bRequireAll),
-   OR_AUTHCFG, FLAG, "All require directives must match!"},
+   OR_AUTHCFG, FLAG, "All require directives must match"},
+  {"ShibUseEnvironment", (config_fn_t)ap_set_flag_slot,
+   (void *) XtOffsetOf (shib_dir_config, bUseEnvVars),
+   OR_AUTHCFG, FLAG, "Export attributes using environment variables"},
+  {"ShibUseHeaders", (config_fn_t)ap_set_flag_slot,
+   (void *) XtOffsetOf (shib_dir_config, bUseHeaders),
+   OR_AUTHCFG, FLAG, "Export attributes using custom HTTP headers (default)"},
 
   {NULL}
 };
 
 extern "C"{
 handler_rec shib_handlers[] = {
-  { "shib-shire-post", shib_post_handler },
+  { "shib-handler", shib_handler },
   { NULL }
 };
 
@@ -1069,8 +1313,8 @@ module MODULE_VAR_EXPORT mod_shib = {
     NULL,                        /* initializer */
     create_shib_dir_config,    /* dir config creater */
     merge_shib_dir_config,     /* dir merger --- default is to override */
-    NULL,                      /* server config */
-    NULL,                      /* merge server config */
+    create_shib_server_config, /* server config */
+    merge_shib_server_config,   /* merge server config */
     shire_cmds,                        /* command table */
     shib_handlers,             /* handlers */
     NULL,                      /* filename translation */
@@ -1078,22 +1322,30 @@ module MODULE_VAR_EXPORT mod_shib = {
     shib_auth_checker,         /* check auth */
     NULL,                      /* check access */
     NULL,                      /* type_checker */
-    NULL,                      /* fixups */
+    shib_fixups,               /* fixups */
     NULL,                      /* logger */
     NULL,                      /* header parser */
     shib_child_init,           /* child_init */
-    shib_exit,                 /* child_exit */
-    NULL                       /* post read-request */
+    shib_child_exit,           /* child_exit */
+    shib_post_read             /* post read-request */
 };
 
-#elif defined(SHIB_APACHE_20)
+#elif defined(SHIB_APACHE_20) || defined(SHIB_APACHE_22)
 
 extern "C" void shib_register_hooks (apr_pool_t *p)
 {
-  ap_hook_post_config(shib_post_config, NULL, NULL, APR_HOOK_MIDDLE);
+#ifdef SHIB_DEFERRED_HEADERS
+  ap_register_output_filter("SHIB_HEADERS_OUT", do_output_filter, NULL, AP_FTYPE_CONTENT_SET);
+  ap_hook_insert_filter(set_output_filter, NULL, NULL, APR_HOOK_LAST);
+  ap_register_output_filter("SHIB_HEADERS_ERR", do_error_filter, NULL, AP_FTYPE_CONTENT_SET);
+  ap_hook_insert_error_filter(set_error_filter, NULL, NULL, APR_HOOK_LAST);
+  ap_hook_post_read_request(shib_post_read, NULL, NULL, APR_HOOK_MIDDLE);
+#endif
+  ap_hook_child_init(shib_child_init, NULL, NULL, APR_HOOK_MIDDLE);
   ap_hook_check_user_id(shib_check_user, NULL, NULL, APR_HOOK_MIDDLE);
   ap_hook_auth_checker(shib_auth_checker, NULL, NULL, APR_HOOK_FIRST);
-  ap_hook_handler(shib_post_handler, NULL, NULL, APR_HOOK_LAST);
+  ap_hook_handler(shib_handler, NULL, NULL, APR_HOOK_LAST);
+  ap_hook_fixups(shib_fixups, NULL, NULL, APR_HOOK_MIDDLE);
 }
 
 // SHIB Module commands
@@ -1102,38 +1354,61 @@ extern "C" {
 static command_rec shib_cmds[] = {
   AP_INIT_TAKE1("ShibConfig",
                (config_fn_t)ap_set_global_string_slot, &g_szSHIBConfig,
-               RSRC_CONF, "Path to shibboleth.xml config file."),
+               RSRC_CONF, "Path to shibboleth.xml config file"),
   AP_INIT_TAKE1("ShibSchemaDir",
      (config_fn_t)ap_set_global_string_slot, &g_szSchemaDir,
-      RSRC_CONF, "Path to Shibboleth XML schema directory."),
-
+      RSRC_CONF, "Path to Shibboleth XML schema directory"),
+
+  AP_INIT_TAKE1("ShibURLScheme",
+     (config_fn_t)shib_set_server_string_slot,
+     (void *) offsetof (shib_server_config, szScheme),
+      RSRC_CONF, "URL scheme to force into generated URLs for a vhost"),
+
+  AP_INIT_FLAG("ShibDisable", (config_fn_t)ap_set_flag_slot,
+        (void *) offsetof (shib_dir_config, bOff),
+        OR_AUTHCFG, "Disable all Shib module activity here to save processing effort"),
+  AP_INIT_TAKE1("ShibApplicationId", (config_fn_t)ap_set_string_slot,
+        (void *) offsetof (shib_dir_config, szApplicationId),
+        OR_AUTHCFG, "Set Shibboleth applicationId property for content"),
   AP_INIT_FLAG("ShibBasicHijack", (config_fn_t)ap_set_flag_slot,
-              (void *) offsetof (shib_dir_config, bBasicHijack),
-              OR_AUTHCFG, "Respond to AuthType Basic and convert to shib?"),
+        (void *) offsetof (shib_dir_config, bBasicHijack),
+        OR_AUTHCFG, "Respond to AuthType Basic and convert to shibboleth"),
   AP_INIT_FLAG("ShibRequireSession", (config_fn_t)ap_set_flag_slot,
-         (void *) offsetof (shib_dir_config, bRequireSession),
-        OR_AUTHCFG, "Initiates a new session if one does not exist."),
+        (void *) offsetof (shib_dir_config, bRequireSession),
+        OR_AUTHCFG, "Initiates a new session if one does not exist"),
+  AP_INIT_TAKE1("ShibRequireSessionWith", (config_fn_t)ap_set_string_slot,
+        (void *) offsetof (shib_dir_config, szRequireWith),
+        OR_AUTHCFG, "Initiates a new session if one does not exist using a specific SessionInitiator"),
   AP_INIT_FLAG("ShibExportAssertion", (config_fn_t)ap_set_flag_slot,
-         (void *) offsetof (shib_dir_config, bExportAssertion),
-        OR_AUTHCFG, "Export SAML assertion to Shibboleth-defined header?"),
-  AP_INIT_TAKE1("AuthGroupFile", (config_fn_t)ap_set_file_slot,
+        (void *) offsetof (shib_dir_config, bExportAssertion),
+        OR_AUTHCFG, "Export SAML attribute assertion(s) to Shib-Attributes header"),
+  AP_INIT_TAKE1("ShibRedirectToSSL", (config_fn_t)ap_set_string_slot,
+        (void *) offsetof (shib_dir_config, szRedirectToSSL),
+        OR_AUTHCFG, "Redirect non-SSL requests to designated port"),
+  AP_INIT_TAKE1("AuthGroupFile", (config_fn_t)shib_ap_set_file_slot,
                (void *) offsetof (shib_dir_config, szAuthGrpFile),
-               OR_AUTHCFG, "text file containing group names and member user IDs"),
+               OR_AUTHCFG, "Text file containing group names and member user IDs"),
   AP_INIT_FLAG("ShibRequireAll", (config_fn_t)ap_set_flag_slot,
-              (void *) offsetof (shib_dir_config, bRequireAll),
-              OR_AUTHCFG, "All require directives must match!"),
+        (void *) offsetof (shib_dir_config, bRequireAll),
+        OR_AUTHCFG, "All require directives must match"),
+  AP_INIT_FLAG("ShibUseEnvironment", (config_fn_t)ap_set_flag_slot,
+        (void *) offsetof (shib_dir_config, bUseEnvVars),
+        OR_AUTHCFG, "Export attributes using environment variables"),
+  AP_INIT_FLAG("ShibUseHeaders", (config_fn_t)ap_set_flag_slot,
+        (void *) offsetof (shib_dir_config, bUseHeaders),
+        OR_AUTHCFG, "Export attributes using custom HTTP headers (default)"),
 
   {NULL}
 };
 
 module AP_MODULE_DECLARE_DATA mod_shib = {
     STANDARD20_MODULE_STUFF,
-    create_shib_dir_config,    /* create dir config */
-    merge_shib_dir_config,     /* merge dir config --- default is to override */
-    NULL,                      /* create server config */
-    NULL,                      /* merge server config */
-    shib_cmds,                 /* command table */
-    shib_register_hooks                /* register hooks */
+    create_shib_dir_config,     /* create dir config */
+    merge_shib_dir_config,      /* merge dir config --- default is to override */
+    create_shib_server_config,  /* create server config */
+    merge_shib_server_config,   /* merge server config */
+    shib_cmds,                  /* command table */
+    shib_register_hooks         /* register hooks */
 };
 
 #else