8335b1
Index: modules/aaa/mod_authz_owner.c
8335b1
===================================================================
8335b1
--- a/modules/aaa/mod_authz_owner.c	(revision 1420183)
8335b1
+++ b/modules/aaa/mod_authz_owner.c	(revision 1420184)
8335b1
@@ -28,9 +28,8 @@
8335b1
 #include "http_request.h"
8335b1
 
8335b1
 #include "mod_auth.h"
8335b1
+#include "mod_authz_owner.h"
8335b1
 
8335b1
-APR_DECLARE_OPTIONAL_FN(char*, authz_owner_get_file_group, (request_rec *r));
8335b1
-
8335b1
 static const command_rec authz_owner_cmds[] =
8335b1
 {
8335b1
     {NULL}
8335b1
Index: modules/aaa/mod_authz_owner.h
8335b1
===================================================================
8335b1
--- a/modules/aaa/mod_authz_owner.h	(revision 0)
8335b1
+++ b/modules/aaa/mod_authz_owner.h	(revision 1420184)
8335b1
@@ -0,0 +1,27 @@
8335b1
+/* Licensed to the Apache Software Foundation (ASF) under one or more
8335b1
+ * contributor license agreements.  See the NOTICE file distributed with
8335b1
+ * this work for additional information regarding copyright ownership.
8335b1
+ * The ASF licenses this file to You under the Apache License, Version 2.0
8335b1
+ * (the "License"); you may not use this file except in compliance with
8335b1
+ * the License.  You may obtain a copy of the License at
8335b1
+ *
8335b1
+ *     http://www.apache.org/licenses/LICENSE-2.0
8335b1
+ *
8335b1
+ * Unless required by applicable law or agreed to in writing, software
8335b1
+ * distributed under the License is distributed on an "AS IS" BASIS,
8335b1
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
8335b1
+ * See the License for the specific language governing permissions and
8335b1
+ * limitations under the License.
8335b1
+ */
8335b1
+
8335b1
+#ifndef MOD_AUTHZ_OWNER_H
8335b1
+#define MOD_AUTHZ_OWNER_H
8335b1
+
8335b1
+#include "http_request.h"
8335b1
+
8335b1
+/* mod_authz_owner exports an optional function which retrieves the
8335b1
+ * group name of the file identified by r->filename, if available, or
8335b1
+ * else returns NULL. */
8335b1
+APR_DECLARE_OPTIONAL_FN(char*, authz_owner_get_file_group, (request_rec *r));
8335b1
+
8335b1
+#endif /* MOD_AUTHZ_OWNER_H */
8335b1
Index: modules/aaa/mod_authz_groupfile.c
8335b1
===================================================================
8335b1
--- a/modules/aaa/mod_authz_groupfile.c	(revision 1420183)
8335b1
+++ b/modules/aaa/mod_authz_groupfile.c	(revision 1420184)
8335b1
@@ -55,13 +55,12 @@
8335b1
 #include "util_varbuf.h"
8335b1
 
8335b1
 #include "mod_auth.h"
8335b1
+#include "mod_authz_owner.h"
8335b1
 
8335b1
 typedef struct {
8335b1
     char *groupfile;
8335b1
 } authz_groupfile_config_rec;
8335b1
 
8335b1
-APR_DECLARE_OPTIONAL_FN(char*, authz_owner_get_file_group, (request_rec *r));
8335b1
-
8335b1
 static void *create_authz_groupfile_dir_config(apr_pool_t *p, char *d)
8335b1
 {
8335b1
     authz_groupfile_config_rec *conf = apr_palloc(p, sizeof(*conf));
8335b1
@@ -200,7 +199,7 @@
8335b1
     return AUTHZ_DENIED;
8335b1
 }
8335b1
 
8335b1
-APR_OPTIONAL_FN_TYPE(authz_owner_get_file_group) *authz_owner_get_file_group;
8335b1
+static APR_OPTIONAL_FN_TYPE(authz_owner_get_file_group) *authz_owner_get_file_group;
8335b1
 
8335b1
 static authz_status filegroup_check_authorization(request_rec *r,
8335b1
                                                   const char *require_args,
8335b1
@@ -279,10 +278,14 @@
8335b1
     NULL,
8335b1
 };
8335b1
 
8335b1
-static void register_hooks(apr_pool_t *p)
8335b1
+
8335b1
+static void authz_groupfile_getfns(void)
8335b1
 {
8335b1
     authz_owner_get_file_group = APR_RETRIEVE_OPTIONAL_FN(authz_owner_get_file_group);
8335b1
+}
8335b1
 
8335b1
+static void register_hooks(apr_pool_t *p)
8335b1
+{
8335b1
     ap_register_auth_provider(p, AUTHZ_PROVIDER_GROUP, "group",
8335b1
                               AUTHZ_PROVIDER_VERSION,
8335b1
                               &authz_group_provider,
8335b1
@@ -291,6 +294,7 @@
8335b1
                               AUTHZ_PROVIDER_VERSION,
8335b1
                               &authz_filegroup_provider,
8335b1
                               AP_AUTH_INTERNAL_PER_CONF);
8335b1
+    ap_hook_optional_fn_retrieve(authz_groupfile_getfns, NULL, NULL, APR_HOOK_MIDDLE);
8335b1
 }
8335b1
 
8335b1
 AP_DECLARE_MODULE(authz_groupfile) =
8335b1
Index: modules/aaa/mod_authz_dbm.c
8335b1
===================================================================
8335b1
--- a/modules/aaa/mod_authz_dbm.c	(revision 1420183)
8335b1
+++ b/modules/aaa/mod_authz_dbm.c	(revision 1420184)
8335b1
@@ -29,6 +29,7 @@
8335b1
 #include "http_request.h"   /* for ap_hook_(check_user_id | auth_checker)*/
8335b1
 
8335b1
 #include "mod_auth.h"
8335b1
+#include "mod_authz_owner.h"
8335b1
 
8335b1
 typedef struct {
8335b1
     const char *grpfile;
8335b1
@@ -35,9 +36,7 @@
8335b1
     const char *dbmtype;
8335b1
 } authz_dbm_config_rec;
8335b1
 
8335b1
-APR_DECLARE_OPTIONAL_FN(char*, authz_owner_get_file_group, (request_rec *r));
8335b1
 
8335b1
-
8335b1
 /* This should go into APR; perhaps with some nice
8335b1
  * caching/locking/flocking of the open dbm file.
8335b1
  */
8335b1
@@ -199,7 +198,7 @@
8335b1
     return AUTHZ_DENIED;
8335b1
 }
8335b1
 
8335b1
-APR_OPTIONAL_FN_TYPE(authz_owner_get_file_group) *authz_owner_get_file_group;
8335b1
+static APR_OPTIONAL_FN_TYPE(authz_owner_get_file_group) *authz_owner_get_file_group;
8335b1
 
8335b1
 static authz_status dbmfilegroup_check_authorization(request_rec *r,
8335b1
                                                      const char *require_args,
8335b1
@@ -279,11 +278,13 @@
8335b1
     NULL,
8335b1
 };
8335b1
 
8335b1
+static void authz_dbm_getfns(void)
8335b1
+{
8335b1
+    authz_owner_get_file_group = APR_RETRIEVE_OPTIONAL_FN(authz_owner_get_file_group);
8335b1
+}
8335b1
 
8335b1
 static void register_hooks(apr_pool_t *p)
8335b1
 {
8335b1
-    authz_owner_get_file_group = APR_RETRIEVE_OPTIONAL_FN(authz_owner_get_file_group);
8335b1
-
8335b1
     ap_register_auth_provider(p, AUTHZ_PROVIDER_GROUP, "dbm-group",
8335b1
                               AUTHZ_PROVIDER_VERSION,
8335b1
                               &authz_dbmgroup_provider,
8335b1
@@ -292,6 +293,7 @@
8335b1
                               AUTHZ_PROVIDER_VERSION,
8335b1
                               &authz_dbmfilegroup_provider,
8335b1
                               AP_AUTH_INTERNAL_PER_CONF);
8335b1
+    ap_hook_optional_fn_retrieve(authz_dbm_getfns, NULL, NULL, APR_HOOK_MIDDLE);
8335b1
 }
8335b1
 
8335b1
 AP_DECLARE_MODULE(authz_dbm) =