Renamed shar project, some Makefile fixes.
[shibboleth/cpp-sp.git] / apache / mod_apache.cpp
1 /*
2  *  Copyright 2001-2007 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /*
18  * mod_apache.cpp -- the core Apache Module code
19  *
20  * Created by:  Derek Atkins <derek@ihtfp.com>
21  *
22  * $Id$
23  */
24
25 #ifdef SOLARIS2
26 #undef _XOPEN_SOURCE    // causes gethostname conflict in unistd.h
27 #endif
28
29 #ifdef WIN32
30 # define _CRT_NONSTDC_NO_DEPRECATE 1
31 # define _CRT_SECURE_NO_DEPRECATE 1
32 #endif
33
34 #include <shibsp/AbstractSPRequest.h>
35 #include <shibsp/AccessControl.h>
36 #include <shibsp/exceptions.h>
37 #include <shibsp/RequestMapper.h>
38 #include <shibsp/SPConfig.h>
39 #include <shibsp/ServiceProvider.h>
40 #include <shibsp/SessionCache.h>
41 #include <shibsp/attribute/Attribute.h>
42
43 #include <xercesc/util/regx/RegularExpression.hpp>
44 #include <xmltooling/XMLToolingConfig.h>
45 #include <xmltooling/util/NDC.h>
46 #include <xmltooling/util/Threads.h>
47 #include <xmltooling/util/XMLHelper.h>
48
49 #ifdef WIN32
50 # include <winsock.h>
51 #endif
52
53 #undef _XPG4_2
54
55 // Apache specific header files
56 #include <httpd.h>
57 #include <http_config.h>
58 #include <http_protocol.h>
59 #include <http_main.h>
60 #define CORE_PRIVATE
61 #include <http_core.h>
62 #include <http_log.h>
63
64 #ifndef SHIB_APACHE_13
65 #include <http_request.h>
66 #include <apr_strings.h>
67 #include <apr_pools.h>
68 #endif
69
70 #include <fstream>
71 #include <sstream>
72
73 #ifdef HAVE_UNISTD_H
74 #include <unistd.h>             // for getpid()
75 #endif
76
77 using namespace shibsp;
78 using namespace xmltooling;
79 using namespace std;
80
81 extern "C" module MODULE_VAR_EXPORT mod_shib;
82
83 namespace {
84     char* g_szSHIBConfig = SHIBSP_CONFIG;
85     char* g_szSchemaDir = SHIBSP_SCHEMAS;
86     SPConfig* g_Config = NULL;
87     string g_unsetHeaderValue;
88     static const char* g_UserDataKey = "_shib_check_user_";
89     static const XMLCh path[] = UNICODE_LITERAL_4(p,a,t,h);
90     static const XMLCh validate[] = UNICODE_LITERAL_8(v,a,l,i,d,a,t,e);
91 }
92
93 /* Apache 2.2.x headers must be accumulated and set in the output filter.
94    Apache 2.0.49+ supports the filter method.
95    Apache 1.3.x and lesser 2.0.x must write the headers directly. */
96
97 #if (defined(SHIB_APACHE_20) || defined(SHIB_APACHE_22)) && AP_MODULE_MAGIC_AT_LEAST(20020903,6)
98 #define SHIB_DEFERRED_HEADERS
99 #endif
100
101 /********************************************************************************/
102 // Basic Apache Configuration code.
103 //
104
105 // per-server module configuration structure
106 struct shib_server_config
107 {
108     char* szScheme;
109 };
110
111 // creates the per-server configuration
112 extern "C" void* create_shib_server_config(SH_AP_POOL* p, server_rec* s)
113 {
114     shib_server_config* sc=(shib_server_config*)ap_pcalloc(p,sizeof(shib_server_config));
115     sc->szScheme = NULL;
116     return sc;
117 }
118
119 // overrides server configuration in virtual servers
120 extern "C" void* merge_shib_server_config (SH_AP_POOL* p, void* base, void* sub)
121 {
122     shib_server_config* sc=(shib_server_config*)ap_pcalloc(p,sizeof(shib_server_config));
123     shib_server_config* parent=(shib_server_config*)base;
124     shib_server_config* child=(shib_server_config*)sub;
125
126     if (child->szScheme)
127         sc->szScheme=ap_pstrdup(p,child->szScheme);
128     else if (parent->szScheme)
129         sc->szScheme=ap_pstrdup(p,parent->szScheme);
130     else
131         sc->szScheme=NULL;
132
133     return sc;
134 }
135
136 // per-dir module configuration structure
137 struct shib_dir_config
138 {
139     // RM Configuration
140     char* szAuthGrpFile;    // Auth GroupFile name
141     int bRequireAll;        // all require directives must match, otherwise OR logic
142
143     // Content Configuration
144     char* szApplicationId;  // Shib applicationId value
145     char* szRequireWith;    // require a session using a specific initiator?
146     char* szRedirectToSSL;  // redirect non-SSL requests to SSL port
147     int bOff;               // flat-out disable all Shib processing
148     int bBasicHijack;       // activate for AuthType Basic?
149     int bRequireSession;    // require a session?
150     int bExportAssertion;   // export SAML assertion to the environment?
151     int bUseEnvVars;        // use environment instead of headers?
152 };
153
154 // creates per-directory config structure
155 extern "C" void* create_shib_dir_config (SH_AP_POOL* p, char* d)
156 {
157     shib_dir_config* dc=(shib_dir_config*)ap_pcalloc(p,sizeof(shib_dir_config));
158     dc->bOff = -1;
159     dc->bBasicHijack = -1;
160     dc->bRequireSession = -1;
161     dc->bExportAssertion = -1;
162     dc->bRequireAll = -1;
163     dc->szRedirectToSSL = NULL;
164     dc->szAuthGrpFile = NULL;
165     dc->szApplicationId = NULL;
166     dc->szRequireWith = NULL;
167     dc->bUseEnvVars = -1;
168     return dc;
169 }
170
171 // overrides server configuration in directories
172 extern "C" void* merge_shib_dir_config (SH_AP_POOL* p, void* base, void* sub)
173 {
174     shib_dir_config* dc=(shib_dir_config*)ap_pcalloc(p,sizeof(shib_dir_config));
175     shib_dir_config* parent=(shib_dir_config*)base;
176     shib_dir_config* child=(shib_dir_config*)sub;
177
178     if (child->szAuthGrpFile)
179         dc->szAuthGrpFile=ap_pstrdup(p,child->szAuthGrpFile);
180     else if (parent->szAuthGrpFile)
181         dc->szAuthGrpFile=ap_pstrdup(p,parent->szAuthGrpFile);
182     else
183         dc->szAuthGrpFile=NULL;
184
185     if (child->szApplicationId)
186         dc->szApplicationId=ap_pstrdup(p,child->szApplicationId);
187     else if (parent->szApplicationId)
188         dc->szApplicationId=ap_pstrdup(p,parent->szApplicationId);
189     else
190         dc->szApplicationId=NULL;
191
192     if (child->szRequireWith)
193         dc->szRequireWith=ap_pstrdup(p,child->szRequireWith);
194     else if (parent->szRequireWith)
195         dc->szRequireWith=ap_pstrdup(p,parent->szRequireWith);
196     else
197         dc->szRequireWith=NULL;
198
199     if (child->szRedirectToSSL)
200         dc->szRedirectToSSL=ap_pstrdup(p,child->szRedirectToSSL);
201     else if (parent->szRedirectToSSL)
202         dc->szRedirectToSSL=ap_pstrdup(p,parent->szRedirectToSSL);
203     else
204         dc->szRedirectToSSL=NULL;
205
206     dc->bOff=((child->bOff==-1) ? parent->bOff : child->bOff);
207     dc->bBasicHijack=((child->bBasicHijack==-1) ? parent->bBasicHijack : child->bBasicHijack);
208     dc->bRequireSession=((child->bRequireSession==-1) ? parent->bRequireSession : child->bRequireSession);
209     dc->bExportAssertion=((child->bExportAssertion==-1) ? parent->bExportAssertion : child->bExportAssertion);
210     dc->bRequireAll=((child->bRequireAll==-1) ? parent->bRequireAll : child->bRequireAll);
211     dc->bUseEnvVars=((child->bUseEnvVars==-1) ? parent->bUseEnvVars : child->bUseEnvVars);
212     return dc;
213 }
214
215 // per-request module structure
216 struct shib_request_config
217 {
218     SH_AP_TABLE *env;        // environment vars
219 #ifdef SHIB_DEFERRED_HEADERS
220     SH_AP_TABLE *hdr_out;    // headers to browser
221     SH_AP_TABLE *hdr_err;    // err headers to browser
222 #endif
223 };
224
225 // create a request record
226 static shib_request_config *init_request_config(request_rec *r)
227 {
228     shib_request_config* rc=(shib_request_config*)ap_pcalloc(r->pool,sizeof(shib_request_config));
229     ap_set_module_config (r->request_config, &mod_shib, rc);
230     memset(rc, 0, sizeof(shib_request_config));
231     ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_init_rc");
232     return rc;
233 }
234
235 // generic global slot handlers
236 extern "C" const char* ap_set_global_string_slot(cmd_parms* parms, void*, const char* arg)
237 {
238     *((char**)(parms->info))=ap_pstrdup(parms->pool,arg);
239     return NULL;
240 }
241
242 extern "C" const char* shib_set_server_string_slot(cmd_parms* parms, void*, const char* arg)
243 {
244     char* base=(char*)ap_get_module_config(parms->server->module_config,&mod_shib);
245     size_t offset=(size_t)parms->info;
246     *((char**)(base + offset))=ap_pstrdup(parms->pool,arg);
247     return NULL;
248 }
249
250 extern "C" const char* shib_ap_set_file_slot(cmd_parms* parms,
251 #ifdef SHIB_APACHE_13
252                                              char* arg1, char* arg2
253 #else
254                                              void* arg1, const char* arg2
255 #endif
256                                              )
257 {
258   ap_set_file_slot(parms, arg1, arg2);
259   return DECLINE_CMD;
260 }
261
262 /********************************************************************************/
263 // Apache ShibTarget subclass(es) here.
264
265 class ShibTargetApache : public AbstractSPRequest
266 {
267   mutable string m_body;
268   mutable bool m_gotBody;
269   vector<XSECCryptoX509*> m_certs;
270
271 public:
272   request_rec* m_req;
273   shib_dir_config* m_dc;
274   shib_server_config* m_sc;
275   shib_request_config* m_rc;
276
277   ShibTargetApache(request_rec* req) : m_gotBody(false) {
278     m_sc = (shib_server_config*)ap_get_module_config(req->server->module_config, &mod_shib);
279     m_dc = (shib_dir_config*)ap_get_module_config(req->per_dir_config, &mod_shib);
280     m_rc = (shib_request_config*)ap_get_module_config(req->request_config, &mod_shib);
281     m_req = req;
282   }
283   virtual ~ShibTargetApache() {}
284
285   const char* getScheme() const {
286     return m_sc->szScheme ? m_sc->szScheme : ap_http_method(m_req);
287   }
288   const char* getHostname() const {
289     return ap_get_server_name(m_req);
290   }
291   int getPort() const {
292     return ap_get_server_port(m_req);
293   }
294   const char* getRequestURI() const {
295     return m_req->unparsed_uri;
296   }
297   const char* getMethod() const {
298     return m_req->method;
299   }
300   string getContentType() const {
301     const char* type = ap_table_get(m_req->headers_in, "Content-Type");
302     return type ? type : "";
303   }
304   long getContentLength() const {
305       return m_gotBody ? m_body.length() : m_req->remaining;
306   }
307   string getRemoteAddr() const {
308     return m_req->connection->remote_ip;
309   }
310   void log(SPLogLevel level, const string& msg) const {
311     AbstractSPRequest::log(level,msg);
312     ap_log_rerror(
313         APLOG_MARK,
314         (level == SPDebug ? APLOG_DEBUG :
315         (level == SPInfo ? APLOG_INFO :
316         (level == SPWarn ? APLOG_WARNING :
317         (level == SPError ? APLOG_ERR : APLOG_CRIT))))|APLOG_NOERRNO,
318         SH_AP_R(m_req),
319         msg.c_str()
320         );
321   }
322   const char* getQueryString() const { return m_req->args; }
323   const char* getRequestBody() const {
324     if (m_gotBody)
325         return m_body.c_str();
326     // Read the posted data
327     if (ap_setup_client_block(m_req, REQUEST_CHUNKED_ERROR))
328         throw opensaml::BindingException("Apache function (setup_client_block) failed while reading POST request body.");
329     if (!ap_should_client_block(m_req))
330         throw opensaml::BindingException("Apache function (should_client_block) failed while reading POST request body.");
331     if (m_req->remaining > 1024*1024)
332         throw opensaml::BindingException("Blocked POST request body larger than size limit.");
333     m_gotBody=true;
334     char buff[HUGE_STRING_LEN];
335     ap_hard_timeout("[mod_shib] getRequestBody", m_req);
336     memset(buff, 0, sizeof(buff));
337     while (ap_get_client_block(m_req, buff, sizeof(buff)-1) > 0) {
338       ap_reset_timeout(m_req);
339       m_body += buff;
340       memset(buff, 0, sizeof(buff));
341     }
342     ap_kill_timeout(m_req);
343     return m_body.c_str();
344   }
345   void clearHeader(const char* name) {
346     if (m_dc->bUseEnvVars!=0) {
347        // ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(m_req), "shib_clear_header: env\n");
348        if (m_rc && m_rc->env) ap_table_unset(m_rc->env, name);
349     } else {
350        // ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(m_req), "shib_clear_header: hdr\n");
351        ap_table_unset(m_req->headers_in, name);
352        ap_table_set(m_req->headers_in, name, g_unsetHeaderValue.c_str());
353     }
354   }
355   void setHeader(const char* name, const char* value) {
356     if (m_dc->bUseEnvVars!=0) {
357        if (!m_rc) {
358           // this happens on subrequests
359           // ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(m_req), "shib_setheader: no_m_rc\n");
360           m_rc = init_request_config(m_req);
361        }
362        if (!m_rc->env) m_rc->env = ap_make_table(m_req->pool, 10);
363        // ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(m_req), "shib_set_env: %s=%s\n", name, value?value:"Null");
364        ap_table_set(m_rc->env, name, value?value:"");
365     }
366     else {
367        ap_table_set(m_req->headers_in, name, value);
368     }
369   }
370   string getHeader(const char* name) const {
371     const char* hdr = ap_table_get(m_req->headers_in, name);
372     return string(hdr ? hdr : "");
373   }
374   string getSecureHeader(const char* name) const {
375     if (m_dc->bUseEnvVars!=0) {
376        const char *hdr;
377        if (m_rc && m_rc->env)
378            hdr = ap_table_get(m_rc->env, name);
379        else
380            hdr = NULL;
381        return string(hdr ? hdr : "");
382     }
383     return getHeader(name);
384   }
385   void setRemoteUser(const char* user) {
386       SH_AP_USER(m_req) = user ? ap_pstrdup(m_req->pool, user) : NULL;
387   }
388   string getRemoteUser() const {
389     return string(SH_AP_USER(m_req) ? SH_AP_USER(m_req) : "");
390   }
391   void setContentType(const char* type) {
392       m_req->content_type = ap_psprintf(m_req->pool, type);
393   }
394   void setResponseHeader(const char* name, const char* value) {
395 #ifdef SHIB_DEFERRED_HEADERS
396    if (!m_rc)
397       // this happens on subrequests
398       m_rc = init_request_config(m_req);
399     ap_table_add(m_rc->hdr_err, name, value);
400     ap_table_add(m_rc->hdr_out, name, value);
401 #else
402     ap_table_add(m_req->err_headers_out, name, value);
403 #endif
404   }
405   long sendResponse(istream& in, long status) {
406     ap_send_http_header(m_req);
407     char buf[1024];
408     while (in) {
409         in.read(buf,1024);
410         ap_rwrite(buf,in.gcount(),m_req);
411     }
412     return ((status==SAML_HTTP_STATUS_OK) ? DONE : status);
413   }
414   long sendRedirect(const char* url) {
415     ap_table_set(m_req->headers_out, "Location", url);
416     return REDIRECT;
417   }
418   const vector<XSECCryptoX509*>& getClientCertificates() const {
419       return m_certs;
420   }
421   long returnDecline(void) { return DECLINED; }
422   long returnOK(void) { return OK; }
423 };
424
425 /********************************************************************************/
426 // Apache handlers
427
428 extern "C" int shib_check_user(request_rec* r)
429 {
430   // Short-circuit entirely?
431   if (((shib_dir_config*)ap_get_module_config(r->per_dir_config, &mod_shib))->bOff==1)
432     return DECLINED;
433     
434   ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_check_user(%d): ENTER\n", (int)getpid());
435
436   ostringstream threadid;
437   threadid << "[" << getpid() << "] shib_check_user" << '\0';
438   xmltooling::NDC ndc(threadid.str().c_str());
439
440   try {
441     ShibTargetApache sta(r);
442
443     // Check user authentication and export information, then set the handler bypass
444     pair<bool,long> res = sta.getServiceProvider().doAuthentication(sta,true);
445     apr_pool_userdata_setn((const void*)42,g_UserDataKey,NULL,r->pool);
446     if (res.first) return res.second;
447
448     // user auth was okay -- export the assertions now
449     res = sta.getServiceProvider().doExport(sta);
450     if (res.first) return res.second;
451
452     // export happened successfully..  this user is ok.
453     return OK;
454   }
455   catch (exception& e) {
456     ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "shib_check_user threw an exception: %s", e.what());
457     return SERVER_ERROR;
458   }
459 #ifndef _DEBUG
460   catch (...) {
461     ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "shib_check_user threw an uncaught exception!");
462     return SERVER_ERROR;
463   }
464 #endif
465 }
466
467 extern "C" int shib_handler(request_rec* r)
468 {
469   // Short-circuit entirely?
470   if (((shib_dir_config*)ap_get_module_config(r->per_dir_config, &mod_shib))->bOff==1)
471     return DECLINED;
472
473   ostringstream threadid;
474   threadid << "[" << getpid() << "] shib_handler" << '\0';
475   xmltooling::NDC ndc(threadid.str().c_str());
476
477 #ifndef SHIB_APACHE_13
478   // With 2.x, this handler always runs, though last.
479   // We check if shib_check_user ran, because it will detect a handler request
480   // and dispatch it directly.
481   void* data;
482   apr_pool_userdata_get(&data,g_UserDataKey,r->pool);
483   if (data==(const void*)42) {
484     ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_handler skipped since check_user ran");
485     return DECLINED;
486   }
487 #endif
488
489   ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_handler(%d): ENTER: %s", (int)getpid(), r->handler);
490
491   try {
492     ShibTargetApache sta(r);
493
494     pair<bool,long> res = sta.getServiceProvider().doHandler(sta);
495     if (res.first) return res.second;
496
497     ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "doHandler() did not do anything.");
498     return SERVER_ERROR;
499   }
500   catch (exception& e) {
501     ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "shib_handler threw an exception: %s", e.what());
502     return SERVER_ERROR;
503   }
504 #ifndef _DEBUG
505   catch (...) {
506     ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "shib_handler threw an uncaught exception!");
507     return SERVER_ERROR;
508   }
509 #endif
510 }
511
512 /*
513  * shib_auth_checker() -- a simple resource manager to
514  * process the .htaccess settings
515  */
516 extern "C" int shib_auth_checker(request_rec* r)
517 {
518   // Short-circuit entirely?
519   if (((shib_dir_config*)ap_get_module_config(r->per_dir_config, &mod_shib))->bOff==1)
520     return DECLINED;
521
522   ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_auth_checker(%d): ENTER", (int)getpid());
523
524   ostringstream threadid;
525   threadid << "[" << getpid() << "] shib_auth_checker" << '\0';
526   xmltooling::NDC ndc(threadid.str().c_str());
527
528   try {
529     ShibTargetApache sta(r);
530
531     pair<bool,long> res = sta.getServiceProvider().doAuthorization(sta);
532     if (res.first) return res.second;
533
534     // We're all okay.
535     return OK;
536   }
537   catch (exception& e) {
538     ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "shib_auth_checker threw an exception: %s", e.what());
539     return SERVER_ERROR;
540   }
541 #ifndef _DEBUG
542   catch (...) {
543     ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, SH_AP_R(r), "shib_auth_checker threw an uncaught exception!");
544     return SERVER_ERROR;
545   }
546 #endif
547 }
548
549 // Access control plugin that enforces htaccess rules
550 class htAccessControl : virtual public AccessControl
551 {
552 public:
553     htAccessControl() {}
554     ~htAccessControl() {}
555     Lockable* lock() {return this;}
556     void unlock() {}
557     bool authorized(const SPRequest& request, const Session* session) const;
558 };
559
560 AccessControl* htAccessFactory(const DOMElement* const & e)
561 {
562     return new htAccessControl();
563 }
564
565 class ApacheRequestMapper : public virtual RequestMapper, public virtual PropertySet
566 {
567 public:
568     ApacheRequestMapper(const DOMElement* e);
569     ~ApacheRequestMapper() { delete m_mapper; delete m_htaccess; delete m_staKey; delete m_propsKey; }
570     Lockable* lock() { return m_mapper->lock(); }
571     void unlock() { m_staKey->setData(NULL); m_propsKey->setData(NULL); m_mapper->unlock(); }
572     Settings getSettings(const SPRequest& request) const;
573     
574     pair<bool,bool> getBool(const char* name, const char* ns=NULL) const;
575     pair<bool,const char*> getString(const char* name, const char* ns=NULL) const;
576     pair<bool,const XMLCh*> getXMLString(const char* name, const char* ns=NULL) const;
577     pair<bool,unsigned int> getUnsignedInt(const char* name, const char* ns=NULL) const;
578     pair<bool,int> getInt(const char* name, const char* ns=NULL) const;
579     const PropertySet* getPropertySet(const char* name, const char* ns="urn:mace:shibboleth:target:config:1.0") const;
580     const DOMElement* getElement() const;
581
582 private:
583     RequestMapper* m_mapper;
584     ThreadKey* m_staKey;
585     ThreadKey* m_propsKey;
586     AccessControl* m_htaccess;
587 };
588
589 RequestMapper* ApacheRequestMapFactory(const DOMElement* const & e)
590 {
591     return new ApacheRequestMapper(e);
592 }
593
594 ApacheRequestMapper::ApacheRequestMapper(const DOMElement* e) : m_mapper(NULL), m_staKey(NULL), m_propsKey(NULL), m_htaccess(NULL)
595 {
596     m_mapper=SPConfig::getConfig().RequestMapperManager.newPlugin(XML_REQUEST_MAPPER,e);
597     m_htaccess=new htAccessControl();
598     m_staKey=ThreadKey::create(NULL);
599     m_propsKey=ThreadKey::create(NULL);
600 }
601
602 RequestMapper::Settings ApacheRequestMapper::getSettings(const SPRequest& request) const
603 {
604     Settings s=m_mapper->getSettings(request);
605     m_staKey->setData((void*)dynamic_cast<const ShibTargetApache*>(&request));
606     m_propsKey->setData((void*)s.first);
607     return pair<const PropertySet*,AccessControl*>(this,s.second ? s.second : m_htaccess);
608 }
609
610 pair<bool,bool> ApacheRequestMapper::getBool(const char* name, const char* ns) const
611 {
612     const ShibTargetApache* sta=reinterpret_cast<const ShibTargetApache*>(m_staKey->getData());
613     const PropertySet* s=reinterpret_cast<const PropertySet*>(m_propsKey->getData());
614     if (sta && !ns) {
615         // Override Apache-settable boolean properties.
616         if (name && !strcmp(name,"requireSession") && sta->m_dc->bRequireSession==1)
617             return make_pair(true,true);
618         else if (name && !strcmp(name,"exportAssertion") && sta->m_dc->bExportAssertion==1)
619             return make_pair(true,true);
620     }
621     return s ? s->getBool(name,ns) : make_pair(false,false);
622 }
623
624 pair<bool,const char*> ApacheRequestMapper::getString(const char* name, const char* ns) const
625 {
626     const ShibTargetApache* sta=reinterpret_cast<const ShibTargetApache*>(m_staKey->getData());
627     const PropertySet* s=reinterpret_cast<const PropertySet*>(m_propsKey->getData());
628     if (sta && !ns) {
629         // Override Apache-settable string properties.
630         if (name && !strcmp(name,"authType")) {
631             const char *auth_type=ap_auth_type(sta->m_req);
632             if (auth_type) {
633                 // Check for Basic Hijack
634                 if (!strcasecmp(auth_type, "basic") && sta->m_dc->bBasicHijack == 1)
635                     auth_type = "shibboleth";
636                 return make_pair(true,auth_type);
637             }
638         }
639         else if (name && !strcmp(name,"applicationId") && sta->m_dc->szApplicationId)
640             return pair<bool,const char*>(true,sta->m_dc->szApplicationId);
641         else if (name && !strcmp(name,"requireSessionWith") && sta->m_dc->szRequireWith)
642             return pair<bool,const char*>(true,sta->m_dc->szRequireWith);
643         else if (name && !strcmp(name,"redirectToSSL") && sta->m_dc->szRedirectToSSL)
644             return pair<bool,const char*>(true,sta->m_dc->szRedirectToSSL);
645     }
646     return s ? s->getString(name,ns) : pair<bool,const char*>(false,NULL);
647 }
648
649 pair<bool,const XMLCh*> ApacheRequestMapper::getXMLString(const char* name, const char* ns) const
650 {
651     const PropertySet* s=reinterpret_cast<const PropertySet*>(m_propsKey->getData());
652     return s ? s->getXMLString(name,ns) : pair<bool,const XMLCh*>(false,NULL);
653 }
654
655 pair<bool,unsigned int> ApacheRequestMapper::getUnsignedInt(const char* name, const char* ns) const
656 {
657     const ShibTargetApache* sta=reinterpret_cast<const ShibTargetApache*>(m_staKey->getData());
658     const PropertySet* s=reinterpret_cast<const PropertySet*>(m_propsKey->getData());
659     if (sta && !ns) {
660         // Override Apache-settable int properties.
661         if (name && !strcmp(name,"redirectToSSL") && sta->m_dc->szRedirectToSSL)
662             return pair<bool,unsigned int>(true,strtol(sta->m_dc->szRedirectToSSL,NULL,10));
663     }
664     return s ? s->getUnsignedInt(name,ns) : pair<bool,unsigned int>(false,0);
665 }
666
667 pair<bool,int> ApacheRequestMapper::getInt(const char* name, const char* ns) const
668 {
669     const ShibTargetApache* sta=reinterpret_cast<const ShibTargetApache*>(m_staKey->getData());
670     const PropertySet* s=reinterpret_cast<const PropertySet*>(m_propsKey->getData());
671     if (sta && !ns) {
672         // Override Apache-settable int properties.
673         if (name && !strcmp(name,"redirectToSSL") && sta->m_dc->szRedirectToSSL)
674             return pair<bool,int>(true,atoi(sta->m_dc->szRedirectToSSL));
675     }
676     return s ? s->getInt(name,ns) : pair<bool,int>(false,0);
677 }
678
679 const PropertySet* ApacheRequestMapper::getPropertySet(const char* name, const char* ns) const
680 {
681     const PropertySet* s=reinterpret_cast<const PropertySet*>(m_propsKey->getData());
682     return s ? s->getPropertySet(name,ns) : NULL;
683 }
684
685 const DOMElement* ApacheRequestMapper::getElement() const
686 {
687     const PropertySet* s=reinterpret_cast<const PropertySet*>(m_propsKey->getData());
688     return s ? s->getElement() : NULL;
689 }
690
691 static SH_AP_TABLE* groups_for_user(request_rec* r, const char* user, char* grpfile)
692 {
693     SH_AP_CONFIGFILE* f;
694     SH_AP_TABLE* grps=ap_make_table(r->pool,15);
695     char l[MAX_STRING_LEN];
696     const char *group_name, *ll, *w;
697
698 #ifdef SHIB_APACHE_13
699     if (!(f=ap_pcfg_openfile(r->pool,grpfile))) {
700 #else
701     if (ap_pcfg_openfile(&f,r->pool,grpfile) != APR_SUCCESS) {
702 #endif
703         ap_log_rerror(APLOG_MARK,APLOG_DEBUG,SH_AP_R(r),"groups_for_user() could not open group file: %s\n",grpfile);
704         return NULL;
705     }
706
707     SH_AP_POOL* sp;
708 #ifdef SHIB_APACHE_13
709     sp=ap_make_sub_pool(r->pool);
710 #else
711     if (apr_pool_create(&sp,r->pool) != APR_SUCCESS) {
712         ap_log_rerror(APLOG_MARK,APLOG_ERR,0,r,
713             "groups_for_user() could not create a subpool");
714         return NULL;
715     }
716 #endif
717
718     while (!(ap_cfg_getline(l,MAX_STRING_LEN,f))) {
719         if ((*l=='#') || (!*l))
720             continue;
721         ll = l;
722         ap_clear_pool(sp);
723
724         group_name=ap_getword(sp,&ll,':');
725
726         while (*ll) {
727             w=ap_getword_conf(sp,&ll);
728             if (!strcmp(w,user)) {
729                 ap_table_setn(grps,ap_pstrdup(r->pool,group_name),"in");
730                 break;
731             }
732         }
733     }
734     ap_cfg_closefile(f);
735     ap_destroy_pool(sp);
736     return grps;
737 }
738
739 bool htAccessControl::authorized(const SPRequest& request, const Session* session) const
740 {
741     // Make sure the object is our type.
742     const ShibTargetApache* sta=dynamic_cast<const ShibTargetApache*>(&request);
743     if (!sta)
744         throw ConfigurationException("Request wrapper object was not of correct type.");
745
746     // mod_auth clone
747
748     int m=sta->m_req->method_number;
749     bool method_restricted=false;
750     const char *t, *w;
751     
752     const array_header* reqs_arr=ap_requires(sta->m_req);
753     if (!reqs_arr)
754         return true;
755
756     require_line* reqs=(require_line*)reqs_arr->elts;
757     
758     ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(sta->m_req),"REQUIRE nelts: %d", reqs_arr->nelts);
759     ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(sta->m_req),"REQUIRE all: %d", sta->m_dc->bRequireAll);
760
761     vector<bool> auth_OK(reqs_arr->nelts,false);
762
763 #define SHIB_AP_CHECK_IS_OK {           \
764      if (sta->m_dc->bRequireAll < 1)    \
765          return true;                   \
766      auth_OK[x] = true;                 \
767      continue;                          \
768 }
769
770     for (int x=0; x<reqs_arr->nelts; x++) {
771         auth_OK[x] = false;
772         if (!(reqs[x].method_mask & (1 << m)))
773             continue;
774         method_restricted=true;
775         string remote_user = request.getRemoteUser();
776
777         t = reqs[x].requirement;
778         w = ap_getword_white(sta->m_req->pool, &t);
779
780         if (!strcasecmp(w,"shibboleth")) {
781             // This is a dummy rule needed because Apache conflates authn and authz.
782             // Without some require rule, AuthType is ignored and no check_user hooks run.
783             SHIB_AP_CHECK_IS_OK;
784         }
785         else if (!strcmp(w,"valid-user")) {
786             if (session) {
787                 request.log(SPRequest::SPDebug,"htAccessControl plugin accepting valid-user based on active session");
788                 SHIB_AP_CHECK_IS_OK;
789             }
790             else
791                 request.log(SPRequest::SPError,"htAccessControl plugin rejecting access for valid-user rule, no session is active");
792         }
793         else if (!strcmp(w,"user") && !remote_user.empty()) {
794             bool regexp=false;
795             while (*t) {
796                 w=ap_getword_conf(sta->m_req->pool,&t);
797                 if (*w=='~') {
798                     regexp=true;
799                     continue;
800                 }
801                 
802                 if (regexp) {
803                     try {
804                         // To do regex matching, we have to convert from UTF-8.
805                         auto_ptr<XMLCh> trans(fromUTF8(w));
806                         RegularExpression re(trans.get());
807                         auto_ptr<XMLCh> trans2(fromUTF8(remote_user.c_str()));
808                         if (re.matches(trans2.get())) {
809                             request.log(SPRequest::SPDebug, string("htAccessControl plugin accepting user (") + w + ")");
810                             SHIB_AP_CHECK_IS_OK;
811                         }
812                     }
813                     catch (XMLException& ex) {
814                         auto_ptr_char tmp(ex.getMessage());
815                         request.log(SPRequest::SPError,
816                             string("htAccessControl plugin caught exception while parsing regular expression (") + w + "): " + tmp.get());
817                     }
818                 }
819                 else if (remote_user==w) {
820                     request.log(SPRequest::SPDebug, string("htAccessControl plugin accepting user (") + w + ")");
821                     SHIB_AP_CHECK_IS_OK;
822                 }
823             }
824         }
825         else if (!strcmp(w,"group")) {
826             SH_AP_TABLE* grpstatus=NULL;
827             if (sta->m_dc->szAuthGrpFile && !remote_user.empty()) {
828                 request.log(SPRequest::SPDebug,string("htAccessControl plugin using groups file: ") + sta->m_dc->szAuthGrpFile);
829                 grpstatus=groups_for_user(sta->m_req,remote_user.c_str(),sta->m_dc->szAuthGrpFile);
830             }
831             if (!grpstatus)
832                 continue;
833     
834             while (*t) {
835                 w=ap_getword_conf(sta->m_req->pool,&t);
836                 if (ap_table_get(grpstatus,w)) {
837                     request.log(SPRequest::SPDebug, string("htAccessControl plugin accepting group (") + w + ")");
838                     SHIB_AP_CHECK_IS_OK;
839                 }
840             }
841         }
842         else {
843             // Map alias in rule to the attribute.
844             if (!session) {
845                 request.log(SPRequest::SPError, "htAccessControl plugin not given a valid session to evaluate, are you using lazy sessions?");
846                 continue;
847             }
848             
849             // Find the attribute matching the require rule.
850             map<string,const Attribute*>::const_iterator attr = session->getAttributes().find(w);
851             if (attr == session->getAttributes().end()) {
852                 request.log(SPRequest::SPWarn, string("htAccessControl rule requires attribute (") + w + "), not found in session");
853                 continue;
854             }
855
856             bool regexp=false;
857             bool caseSensitive = attr->second->isCaseSensitive();
858             const vector<string>& vals = attr->second->getSerializedValues();
859
860             while (!auth_OK[x] && *t) {
861                 w=ap_getword_conf(sta->m_req->pool,&t);
862                 if (*w=='~') {
863                     regexp=true;
864                     continue;
865                 }
866
867                 try {
868                     auto_ptr<RegularExpression> re;
869                     if (regexp) {
870                         delete re.release();
871                         auto_ptr<XMLCh> trans(fromUTF8(w));
872                         auto_ptr<RegularExpression> temp(new RegularExpression(trans.get()));
873                         re=temp;
874                     }
875                     
876                     for (vector<string>::const_iterator v=vals.begin(); !auth_OK[x] && v!=vals.end(); ++v) {
877                         if (regexp) {
878                             auto_ptr<XMLCh> trans(fromUTF8(v->c_str()));
879                             if (re->matches(trans.get())) {
880                                 request.log(SPRequest::SPDebug,
881                                     string("htAccessControl plugin expecting ") + w + ", got " + *v + ": authorization granted"
882                                     );
883                                 SHIB_AP_CHECK_IS_OK;
884                             }
885                         }
886                         else if ((caseSensitive && *v == w) || (!caseSensitive && !strcasecmp(v->c_str(),w))) {
887                             request.log(SPRequest::SPDebug,
888                                 string("htAccessControl plugin expecting ") + w + ", got " + *v + ": authorization granted."
889                                 );
890                             SHIB_AP_CHECK_IS_OK;
891                         }
892                         else {
893                             request.log(SPRequest::SPDebug,
894                                 string("htAccessControl plugin expecting ") + w + ", got " + *v + ": authorization not granted."
895                                 );
896                         }
897                     }
898                 }
899                 catch (XMLException& ex) {
900                     auto_ptr_char tmp(ex.getMessage());
901                     request.log(SPRequest::SPError,
902                         string("htAccessControl plugin caught exception while parsing regular expression (") + w + "): " + tmp.get()
903                         );
904                 }
905             }
906         }
907     }
908
909     // check if all require directives are true
910     bool auth_all_OK = true;
911     for (int i= 0; i<reqs_arr->nelts; i++) {
912         auth_all_OK &= auth_OK[i];
913     }
914     if (auth_all_OK || !method_restricted)
915         return true;
916
917     return false;
918 }
919
920 #ifndef SHIB_APACHE_13
921 /*
922  * shib_exit()
923  *  Empty cleanup hook, Apache 2.x doesn't check NULL very well...
924  */
925 extern "C" apr_status_t shib_exit(void* data)
926 {
927     if (g_Config) {
928         g_Config->term();
929         g_Config = NULL;
930     }
931     ap_log_error(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,0,NULL,"shib_exit() done");
932     return OK;
933 }
934 #endif
935
936
937 // Initial look at a request - create the per-request structure
938 static int shib_post_read(request_rec *r)
939 {
940     shib_request_config* rc = init_request_config(r);
941
942     ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_post_read: E=%s", rc->env?"env":"hdr");
943
944 #ifdef SHIB_DEFERRED_HEADERS
945     rc->hdr_out = ap_make_table(r->pool, 5);
946     rc->hdr_err = ap_make_table(r->pool, 5);
947 #endif
948     return DECLINED;
949 }
950
951 // fixups: set environment vars
952
953 extern "C" int shib_fixups(request_rec* r)
954 {
955   shib_request_config *rc = (shib_request_config*)ap_get_module_config(r->request_config, &mod_shib);
956   shib_dir_config *dc = (shib_dir_config*)ap_get_module_config(r->per_dir_config, &mod_shib);
957   if (dc->bOff==1 || dc->bUseEnvVars==0)
958     return DECLINED;
959
960   ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_fixup(%d): ENTER", (int)getpid());
961
962   if (rc==NULL || rc->env==NULL || ap_is_empty_table(rc->env))
963         return DECLINED;
964
965   ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r), "shib_fixup adding %d vars", ap_table_elts(rc->env)->nelts);
966   r->subprocess_env = ap_overlay_tables(r->pool, r->subprocess_env, rc->env);
967
968   return OK;
969 }
970
971 /*
972  * shib_child_exit()
973  *  Cleanup the (per-process) pool info.
974  */
975 #ifdef SHIB_APACHE_13
976 extern "C" void shib_child_exit(server_rec* s, SH_AP_POOL* p)
977 {
978 #else
979 extern "C" apr_status_t shib_child_exit(void* data)
980 {
981   server_rec* s = NULL;
982 #endif
983
984     ap_log_error(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(s),"shib_child_exit(%d) dealing with g_Config..", (int)getpid());
985     g_Config->term();
986     g_Config = NULL;
987     ap_log_error(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(s),"shib_child_exit() done");
988
989 #ifndef SHIB_APACHE_13
990     return OK;
991 #endif
992 }
993
994 /* 
995  * shire_child_init()
996  *  Things to do when the child process is initialized.
997  *  (or after the configs are read in apache-2)
998  */
999 #ifdef SHIB_APACHE_13
1000 extern "C" void shib_child_init(server_rec* s, SH_AP_POOL* p)
1001 #else
1002 extern "C" void shib_child_init(apr_pool_t* p, server_rec* s)
1003 #endif
1004 {
1005     // Initialize runtime components.
1006
1007     ap_log_error(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(s),"shib_child_init(%d) starting", (int)getpid());
1008
1009     if (g_Config) {
1010         ap_log_error(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO,SH_AP_R(s),"shib_child_init() already initialized!");
1011         exit(1);
1012     }
1013
1014     g_Config=&SPConfig::getConfig();
1015     g_Config->setFeatures(
1016         SPConfig::Listener |
1017         SPConfig::Metadata |
1018         SPConfig::RequestMapping |
1019         SPConfig::InProcess |
1020         SPConfig::Logging
1021         );
1022     if (!g_Config->init(g_szSchemaDir)) {
1023         ap_log_error(APLOG_MARK,APLOG_CRIT|APLOG_NOERRNO,SH_AP_R(s),"shib_child_init() failed to initialize libraries");
1024         exit(1);
1025     }
1026     g_Config->AccessControlManager.registerFactory(HT_ACCESS_CONTROL,&htAccessFactory);
1027     g_Config->RequestMapperManager.registerFactory(NATIVE_REQUEST_MAPPER,&ApacheRequestMapFactory);
1028     
1029     try {
1030         DOMDocument* dummydoc=XMLToolingConfig::getConfig().getParser().newDocument();
1031         XercesJanitor<DOMDocument> docjanitor(dummydoc);
1032         DOMElement* dummy = dummydoc->createElementNS(NULL,path);
1033         auto_ptr_XMLCh src(g_szSHIBConfig);
1034         dummy->setAttributeNS(NULL,path,src.get());
1035         dummy->setAttributeNS(NULL,validate,xmlconstants::XML_ONE);
1036
1037         g_Config->setServiceProvider(g_Config->ServiceProviderManager.newPlugin(XML_SERVICE_PROVIDER,dummy));
1038         g_Config->getServiceProvider()->init();
1039     }
1040     catch (exception& ex) {
1041         ap_log_error(APLOG_MARK,APLOG_CRIT|APLOG_NOERRNO,SH_AP_R(s),ex.what());
1042         ap_log_error(APLOG_MARK,APLOG_CRIT|APLOG_NOERRNO,SH_AP_R(s),"shib_child_init() failed to load configuration");
1043         exit(1);
1044     }
1045
1046     ServiceProvider* sp=g_Config->getServiceProvider();
1047     xmltooling::Locker locker(sp);
1048     const PropertySet* props=sp->getPropertySet("Local");
1049     if (props) {
1050         pair<bool,const char*> unsetValue=props->getString("unsetHeaderValue");
1051         if (unsetValue.first)
1052             g_unsetHeaderValue = unsetValue.second;
1053     }
1054
1055     // Set the cleanup handler
1056     apr_pool_cleanup_register(p, NULL, &shib_exit, &shib_child_exit);
1057
1058     ap_log_error(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(s),"shib_child_init() done");
1059 }
1060
1061 // Output filters
1062 #ifdef SHIB_DEFERRED_HEADERS
1063 static void set_output_filter(request_rec *r)
1064 {
1065    ap_add_output_filter("SHIB_HEADERS_OUT", NULL, r, r->connection);
1066 }
1067
1068 static void set_error_filter(request_rec *r)
1069 {
1070    ap_add_output_filter("SHIB_HEADERS_ERR", NULL, r, r->connection);
1071 }
1072
1073 static apr_status_t do_output_filter(ap_filter_t *f, apr_bucket_brigade *in)
1074 {
1075     request_rec *r = f->r;
1076     shib_request_config *rc = (shib_request_config*) ap_get_module_config(r->request_config, &mod_shib);
1077
1078     if (rc) {
1079         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);
1080         apr_table_overlap(r->headers_out, rc->hdr_out, APR_OVERLAP_TABLES_MERGE);
1081     }
1082
1083     /* remove ourselves from the filter chain */
1084     ap_remove_output_filter(f);
1085
1086     /* send the data up the stack */
1087     return ap_pass_brigade(f->next,in);
1088 }
1089
1090 static apr_status_t do_error_filter(ap_filter_t *f, apr_bucket_brigade *in)
1091 {
1092     request_rec *r = f->r;
1093     shib_request_config *rc = (shib_request_config*) ap_get_module_config(r->request_config, &mod_shib);
1094
1095     if (rc) {
1096         ap_log_rerror(APLOG_MARK,APLOG_DEBUG|APLOG_NOERRNO,SH_AP_R(r),"shib_err_filter: merging %d headers", apr_table_elts(rc->hdr_err)->nelts);
1097         apr_table_overlap(r->err_headers_out, rc->hdr_err, APR_OVERLAP_TABLES_MERGE);
1098     }
1099
1100     /* remove ourselves from the filter chain */
1101     ap_remove_output_filter(f);
1102
1103     /* send the data up the stack */
1104     return ap_pass_brigade(f->next,in);
1105 }
1106 #endif // SHIB_DEFERRED_HEADERS
1107
1108 typedef const char* (*config_fn_t)(void);
1109
1110 #ifdef SHIB_APACHE_13
1111
1112 // SHIB Module commands
1113
1114 static command_rec shire_cmds[] = {
1115   {"ShibConfig", (config_fn_t)ap_set_global_string_slot, &g_szSHIBConfig,
1116    RSRC_CONF, TAKE1, "Path to shibboleth.xml config file"},
1117   {"ShibSchemaDir", (config_fn_t)ap_set_global_string_slot, &g_szSchemaDir,
1118    RSRC_CONF, TAKE1, "Path to Shibboleth XML schema directory"},
1119
1120   {"ShibURLScheme", (config_fn_t)shib_set_server_string_slot,
1121    (void *) XtOffsetOf (shib_server_config, szScheme),
1122    RSRC_CONF, TAKE1, "URL scheme to force into generated URLs for a vhost"},
1123    
1124   {"ShibDisable", (config_fn_t)ap_set_flag_slot,
1125    (void *) XtOffsetOf (shib_dir_config, bOff),
1126    OR_AUTHCFG, FLAG, "Disable all Shib module activity here to save processing effort"},
1127   {"ShibApplicationId", (config_fn_t)ap_set_string_slot,
1128    (void *) XtOffsetOf (shib_dir_config, szApplicationId),
1129    OR_AUTHCFG, TAKE1, "Set Shibboleth applicationId property for content"},
1130   {"ShibBasicHijack", (config_fn_t)ap_set_flag_slot,
1131    (void *) XtOffsetOf (shib_dir_config, bBasicHijack),
1132    OR_AUTHCFG, FLAG, "Respond to AuthType Basic and convert to shibboleth"},
1133   {"ShibRequireSession", (config_fn_t)ap_set_flag_slot,
1134    (void *) XtOffsetOf (shib_dir_config, bRequireSession),
1135    OR_AUTHCFG, FLAG, "Initiates a new session if one does not exist"},
1136   {"ShibRequireSessionWith", (config_fn_t)ap_set_string_slot,
1137    (void *) XtOffsetOf (shib_dir_config, szRequireWith),
1138    OR_AUTHCFG, TAKE1, "Initiates a new session if one does not exist using a specific SessionInitiator"},
1139   {"ShibExportAssertion", (config_fn_t)ap_set_flag_slot,
1140    (void *) XtOffsetOf (shib_dir_config, bExportAssertion),
1141    OR_AUTHCFG, FLAG, "Export SAML attribute assertion(s) to Shib-Attributes header"},
1142   {"ShibRedirectToSSL", (config_fn_t)ap_set_string_slot,
1143    (void *) XtOffsetOf (shib_dir_config, szRedirectToSSL),
1144    OR_AUTHCFG, TAKE1, "Redirect non-SSL requests to designated port" },
1145   {"AuthGroupFile", (config_fn_t)shib_ap_set_file_slot,
1146    (void *) XtOffsetOf (shib_dir_config, szAuthGrpFile),
1147    OR_AUTHCFG, TAKE1, "text file containing group names and member user IDs"},
1148   {"ShibRequireAll", (config_fn_t)ap_set_flag_slot,
1149    (void *) XtOffsetOf (shib_dir_config, bRequireAll),
1150    OR_AUTHCFG, FLAG, "All require directives must match"},
1151   {"ShibUseEnvironment", (config_fn_t)ap_set_flag_slot,
1152    (void *) XtOffsetOf (shib_dir_config, bUseEnvVars),
1153    OR_AUTHCFG, FLAG, "Export data in environment instead of headers (default)"},
1154
1155   {NULL}
1156 };
1157
1158 extern "C"{
1159 handler_rec shib_handlers[] = {
1160   { "shib-handler", shib_handler },
1161   { NULL }
1162 };
1163
1164 module MODULE_VAR_EXPORT mod_shib = {
1165     STANDARD_MODULE_STUFF,
1166     NULL,                        /* initializer */
1167     create_shib_dir_config,     /* dir config creater */
1168     merge_shib_dir_config,      /* dir merger --- default is to override */
1169     create_shib_server_config, /* server config */
1170     merge_shib_server_config,   /* merge server config */
1171     shire_cmds,                 /* command table */
1172     shib_handlers,              /* handlers */
1173     NULL,                       /* filename translation */
1174     shib_check_user,            /* check_user_id */
1175     shib_auth_checker,          /* check auth */
1176     NULL,                       /* check access */
1177     NULL,                       /* type_checker */
1178     shib_fixups,                /* fixups */
1179     NULL,                       /* logger */
1180     NULL,                       /* header parser */
1181     shib_child_init,            /* child_init */
1182     shib_child_exit,            /* child_exit */
1183     shib_post_read              /* post read-request */
1184 };
1185
1186 #elif defined(SHIB_APACHE_20) || defined(SHIB_APACHE_22)
1187
1188 extern "C" void shib_register_hooks (apr_pool_t *p)
1189 {
1190 #ifdef SHIB_DEFERRED_HEADERS
1191   ap_register_output_filter("SHIB_HEADERS_OUT", do_output_filter, NULL, AP_FTYPE_CONTENT_SET);
1192   ap_hook_insert_filter(set_output_filter, NULL, NULL, APR_HOOK_LAST);
1193   ap_register_output_filter("SHIB_HEADERS_ERR", do_error_filter, NULL, AP_FTYPE_CONTENT_SET);
1194   ap_hook_insert_error_filter(set_error_filter, NULL, NULL, APR_HOOK_LAST);
1195   ap_hook_post_read_request(shib_post_read, NULL, NULL, APR_HOOK_MIDDLE);
1196 #endif
1197   ap_hook_child_init(shib_child_init, NULL, NULL, APR_HOOK_MIDDLE);
1198   ap_hook_check_user_id(shib_check_user, NULL, NULL, APR_HOOK_MIDDLE);
1199   ap_hook_auth_checker(shib_auth_checker, NULL, NULL, APR_HOOK_FIRST);
1200   ap_hook_handler(shib_handler, NULL, NULL, APR_HOOK_LAST);
1201   ap_hook_fixups(shib_fixups, NULL, NULL, APR_HOOK_MIDDLE);
1202 }
1203
1204 // SHIB Module commands
1205
1206 extern "C" {
1207 static command_rec shib_cmds[] = {
1208   AP_INIT_TAKE1("ShibConfig",
1209                 (config_fn_t)ap_set_global_string_slot, &g_szSHIBConfig,
1210                 RSRC_CONF, "Path to shibboleth.xml config file"),
1211   AP_INIT_TAKE1("ShibSchemaDir",
1212      (config_fn_t)ap_set_global_string_slot, &g_szSchemaDir,
1213       RSRC_CONF, "Path to Shibboleth XML schema directory"),
1214
1215   AP_INIT_TAKE1("ShibURLScheme",
1216      (config_fn_t)shib_set_server_string_slot,
1217      (void *) offsetof (shib_server_config, szScheme),
1218       RSRC_CONF, "URL scheme to force into generated URLs for a vhost"),
1219
1220   AP_INIT_FLAG("ShibDisable", (config_fn_t)ap_set_flag_slot,
1221         (void *) offsetof (shib_dir_config, bOff),
1222         OR_AUTHCFG, "Disable all Shib module activity here to save processing effort"),
1223   AP_INIT_TAKE1("ShibApplicationId", (config_fn_t)ap_set_string_slot,
1224         (void *) offsetof (shib_dir_config, szApplicationId),
1225         OR_AUTHCFG, "Set Shibboleth applicationId property for content"),
1226   AP_INIT_FLAG("ShibBasicHijack", (config_fn_t)ap_set_flag_slot,
1227         (void *) offsetof (shib_dir_config, bBasicHijack),
1228         OR_AUTHCFG, "Respond to AuthType Basic and convert to shibboleth"),
1229   AP_INIT_FLAG("ShibRequireSession", (config_fn_t)ap_set_flag_slot,
1230         (void *) offsetof (shib_dir_config, bRequireSession),
1231         OR_AUTHCFG, "Initiates a new session if one does not exist"),
1232   AP_INIT_TAKE1("ShibRequireSessionWith", (config_fn_t)ap_set_string_slot,
1233         (void *) offsetof (shib_dir_config, szRequireWith),
1234         OR_AUTHCFG, "Initiates a new session if one does not exist using a specific SessionInitiator"),
1235   AP_INIT_FLAG("ShibExportAssertion", (config_fn_t)ap_set_flag_slot,
1236         (void *) offsetof (shib_dir_config, bExportAssertion),
1237         OR_AUTHCFG, "Export SAML attribute assertion(s) to Shib-Attributes header"),
1238   AP_INIT_TAKE1("ShibRedirectToSSL", (config_fn_t)ap_set_string_slot,
1239         (void *) offsetof (shib_dir_config, szRedirectToSSL),
1240         OR_AUTHCFG, "Redirect non-SSL requests to designated port"),
1241   AP_INIT_TAKE1("AuthGroupFile", (config_fn_t)shib_ap_set_file_slot,
1242                 (void *) offsetof (shib_dir_config, szAuthGrpFile),
1243                 OR_AUTHCFG, "Text file containing group names and member user IDs"),
1244   AP_INIT_FLAG("ShibRequireAll", (config_fn_t)ap_set_flag_slot,
1245         (void *) offsetof (shib_dir_config, bRequireAll),
1246         OR_AUTHCFG, "All require directives must match"),
1247   AP_INIT_FLAG("ShibUseEnvironment", (config_fn_t)ap_set_flag_slot,
1248         (void *) offsetof (shib_dir_config, bUseEnvVars),
1249         OR_AUTHCFG, "Export data in environment instead of headers (default)"),
1250
1251   {NULL}
1252 };
1253
1254 module AP_MODULE_DECLARE_DATA mod_shib = {
1255     STANDARD20_MODULE_STUFF,
1256     create_shib_dir_config,     /* create dir config */
1257     merge_shib_dir_config,      /* merge dir config --- default is to override */
1258     create_shib_server_config,  /* create server config */
1259     merge_shib_server_config,   /* merge server config */
1260     shib_cmds,                  /* command table */
1261     shib_register_hooks         /* register hooks */
1262 };
1263
1264 #else
1265 #error "undefined APACHE version"
1266 #endif
1267
1268 }