]> granicus.if.org Git - apache/blob - modules/dav/fs/mod_dav_fs.c
9d32c081f54d98014b3bbff021b422a4c166b1a2
[apache] / modules / dav / fs / mod_dav_fs.c
1 /* ====================================================================
2  * The Apache Software License, Version 1.1
3  *
4  * Copyright (c) 2000 The Apache Software Foundation.  All rights
5  * reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  *
19  * 3. The end-user documentation included with the redistribution,
20  *    if any, must include the following acknowledgment:
21  *       "This product includes software developed by the
22  *        Apache Software Foundation (http://www.apache.org/)."
23  *    Alternately, this acknowledgment may appear in the software itself,
24  *    if and wherever such third-party acknowledgments normally appear.
25  *
26  * 4. The names "Apache" and "Apache Software Foundation" must
27  *    not be used to endorse or promote products derived from this
28  *    software without prior written permission. For written
29  *    permission, please contact apache@apache.org.
30  *
31  * 5. Products derived from this software may not be called "Apache",
32  *    nor may "Apache" appear in their name, without prior written
33  *    permission of the Apache Software Foundation.
34  *
35  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
36  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
37  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
38  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
39  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
42  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
43  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
44  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
45  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46  * SUCH DAMAGE.
47  * ====================================================================
48  *
49  * This software consists of voluntary contributions made by many
50  * individuals on behalf of the Apache Software Foundation.  For more
51  * information on the Apache Software Foundation, please see
52  * <http://www.apache.org/>.
53  */
54
55 #include "httpd.h"
56 #include "http_config.h"
57
58 #include "mod_dav.h"
59 #include "repos.h"
60
61 /* per-server configuration */
62 typedef struct {
63     const char *lockdb_path;
64
65 } dav_fs_server_conf;
66
67 extern module AP_MODULE_DECLARE_DATA dav_fs_module;
68
69 const char *dav_get_lockdb_path(const request_rec *r)
70 {
71     dav_fs_server_conf *conf;
72
73     conf = ap_get_module_config(r->server->module_config, &dav_fs_module);
74     return conf->lockdb_path;
75 }
76
77 static void *dav_fs_create_server_config(apr_pool_t *p, server_rec *s)
78 {
79     return apr_pcalloc(p, sizeof(dav_fs_server_conf));
80 }
81
82 static void *dav_fs_merge_server_config(apr_pool_t *p,
83                                         void *base, void *overrides)
84 {
85     dav_fs_server_conf *parent = base;
86     dav_fs_server_conf *child = overrides;
87     dav_fs_server_conf *newconf;
88
89     newconf = apr_pcalloc(p, sizeof(*newconf));
90
91     newconf->lockdb_path =
92         child->lockdb_path ? child->lockdb_path : parent->lockdb_path;
93
94     return newconf;
95 }
96
97 /*
98  * Command handler for the DAVLockDB directive, which is TAKE1
99  */
100 static const char *dav_fs_cmd_davlockdb(cmd_parms *cmd, void *config,
101                                         const char *arg1)
102 {
103     dav_fs_server_conf *conf;
104
105     conf = ap_get_module_config(cmd->server->module_config,
106                                 &dav_fs_module);
107     arg1 = ap_os_canonical_filename(cmd->pool, arg1);
108     conf->lockdb_path = ap_server_root_relative(cmd->pool, arg1);
109
110     return NULL;
111 }
112
113 static const command_rec dav_fs_cmds[] =
114 {
115     /* per server */
116     AP_INIT_TAKE1("DAVLockDB", dav_fs_cmd_davlockdb, NULL, RSRC_CONF,
117                   "specify a lock database"),
118
119     { NULL }
120 };
121
122 static void register_hooks(void)
123 {
124     ap_hook_gather_propsets(dav_fs_gather_propsets, NULL, NULL,
125                             AP_HOOK_MIDDLE);
126     ap_hook_find_liveprop(dav_fs_find_liveprop, NULL, NULL, AP_HOOK_MIDDLE);
127     ap_hook_insert_all_liveprops(dav_fs_insert_all_liveprops, NULL, NULL,
128                                  AP_HOOK_MIDDLE);
129
130     dav_fs_register(NULL /* ### pconf */);
131 }
132
133 module AP_MODULE_DECLARE_DATA dav_fs_module =
134 {
135     STANDARD20_MODULE_STUFF,
136     NULL,                       /* dir config creater */
137     NULL,                       /* dir merger --- default is to override */
138     dav_fs_create_server_config,        /* server config */
139     dav_fs_merge_server_config, /* merge server config */
140     dav_fs_cmds,                /* command table */
141     NULL,                       /* handlers */
142     register_hooks,             /* register hooks */
143 };