6 #include "stat_cache.h"
19 buffer
*document_root
;
21 buffer
*docroot_cache_key
;
22 buffer
*docroot_cache_value
;
23 buffer
*docroot_cache_servername
;
33 plugin_config
**config_storage
;
37 INIT_FUNC(mod_simple_vhost_init
) {
40 p
= calloc(1, sizeof(*p
));
42 p
->doc_root
= buffer_init();
47 FREE_FUNC(mod_simple_vhost_free
) {
52 if (!p
) return HANDLER_GO_ON
;
54 if (p
->config_storage
) {
56 for (i
= 0; i
< srv
->config_context
->used
; i
++) {
57 plugin_config
*s
= p
->config_storage
[i
];
59 buffer_free(s
->document_root
);
60 buffer_free(s
->default_host
);
61 buffer_free(s
->server_root
);
63 buffer_free(s
->docroot_cache_key
);
64 buffer_free(s
->docroot_cache_value
);
65 buffer_free(s
->docroot_cache_servername
);
70 free(p
->config_storage
);
73 buffer_free(p
->doc_root
);
80 SETDEFAULTS_FUNC(mod_simple_vhost_set_defaults
) {
84 config_values_t cv
[] = {
85 { "simple-vhost.server-root", NULL
, T_CONFIG_STRING
, T_CONFIG_SCOPE_CONNECTION
},
86 { "simple-vhost.default-host", NULL
, T_CONFIG_STRING
, T_CONFIG_SCOPE_CONNECTION
},
87 { "simple-vhost.document-root", NULL
, T_CONFIG_STRING
, T_CONFIG_SCOPE_CONNECTION
},
88 { "simple-vhost.debug", NULL
, T_CONFIG_SHORT
, T_CONFIG_SCOPE_CONNECTION
},
89 { NULL
, NULL
, T_CONFIG_UNSET
, T_CONFIG_SCOPE_UNSET
}
92 if (!p
) return HANDLER_ERROR
;
94 p
->config_storage
= calloc(1, srv
->config_context
->used
* sizeof(plugin_config
*));
96 for (i
= 0; i
< srv
->config_context
->used
; i
++) {
97 data_config
const* config
= (data_config
const*)srv
->config_context
->data
[i
];
100 s
= calloc(1, sizeof(plugin_config
));
102 s
->server_root
= buffer_init();
103 s
->default_host
= buffer_init();
104 s
->document_root
= buffer_init();
106 s
->docroot_cache_key
= buffer_init();
107 s
->docroot_cache_value
= buffer_init();
108 s
->docroot_cache_servername
= buffer_init();
112 cv
[0].destination
= s
->server_root
;
113 cv
[1].destination
= s
->default_host
;
114 cv
[2].destination
= s
->document_root
;
115 cv
[3].destination
= &(s
->debug
);
118 p
->config_storage
[i
] = s
;
120 if (0 != config_insert_values_global(srv
, config
->value
, cv
, i
== 0 ? T_CONFIG_SCOPE_SERVER
: T_CONFIG_SCOPE_CONNECTION
)) {
121 return HANDLER_ERROR
;
125 return HANDLER_GO_ON
;
128 static int build_doc_root(server
*srv
, connection
*con
, plugin_data
*p
, buffer
*out
, buffer
*host
) {
129 stat_cache_entry
*sce
= NULL
;
130 force_assert(!buffer_string_is_empty(p
->conf
.server_root
));
132 buffer_string_prepare_copy(out
, 127);
133 buffer_copy_buffer(out
, p
->conf
.server_root
);
135 if (!buffer_string_is_empty(host
)) {
136 /* a hostname has to start with a alpha-numerical character
137 * and must not contain a slash "/"
141 buffer_append_slash(out
);
143 if (NULL
== (dp
= strchr(host
->ptr
, ':'))) {
144 buffer_append_string_buffer(out
, host
);
146 buffer_append_string_len(out
, host
->ptr
, dp
- host
->ptr
);
149 buffer_append_slash(out
);
151 if (buffer_string_length(p
->conf
.document_root
) > 1 && p
->conf
.document_root
->ptr
[0] == '/') {
152 buffer_append_string_len(out
, p
->conf
.document_root
->ptr
+ 1, buffer_string_length(p
->conf
.document_root
) - 1);
154 buffer_append_string_buffer(out
, p
->conf
.document_root
);
155 buffer_append_slash(out
);
158 if (HANDLER_ERROR
== stat_cache_get_entry(srv
, con
, out
, &sce
)) {
160 log_error_write(srv
, __FILE__
, __LINE__
, "sb",
161 strerror(errno
), out
);
164 } else if (!S_ISDIR(sce
->st
.st_mode
)) {
174 static int mod_simple_vhost_patch_connection(server
*srv
, connection
*con
, plugin_data
*p
) {
176 plugin_config
*s
= p
->config_storage
[0];
180 PATCH(document_root
);
182 PATCH(docroot_cache_key
);
183 PATCH(docroot_cache_value
);
184 PATCH(docroot_cache_servername
);
188 /* skip the first, the global context */
189 for (i
= 1; i
< srv
->config_context
->used
; i
++) {
190 data_config
*dc
= (data_config
*)srv
->config_context
->data
[i
];
191 s
= p
->config_storage
[i
];
193 /* condition didn't match */
194 if (!config_check_cond(srv
, con
, dc
)) continue;
197 for (j
= 0; j
< dc
->value
->used
; j
++) {
198 data_unset
*du
= dc
->value
->data
[j
];
200 if (buffer_is_equal_string(du
->key
, CONST_STR_LEN("simple-vhost.server-root"))) {
202 PATCH(docroot_cache_key
);
203 PATCH(docroot_cache_value
);
204 PATCH(docroot_cache_servername
);
205 } else if (buffer_is_equal_string(du
->key
, CONST_STR_LEN("simple-vhost.default-host"))) {
207 } else if (buffer_is_equal_string(du
->key
, CONST_STR_LEN("simple-vhost.document-root"))) {
208 PATCH(document_root
);
209 } else if (buffer_is_equal_string(du
->key
, CONST_STR_LEN("simple-vhost.debug"))) {
219 static handler_t
mod_simple_vhost_docroot(server
*srv
, connection
*con
, void *p_data
) {
220 plugin_data
*p
= p_data
;
223 * cache the last successfull translation from hostname (authority) to docroot
224 * - this saves us a stat() call
228 mod_simple_vhost_patch_connection(srv
, con
, p
);
230 /* build_doc_root() requires a server_root; skip module if simple-vhost.server-root is not set
231 * or set to an empty string (especially don't cache any results!)
233 if (buffer_string_is_empty(p
->conf
.server_root
)) return HANDLER_GO_ON
;
235 if (!buffer_string_is_empty(p
->conf
.docroot_cache_key
) &&
236 !buffer_string_is_empty(con
->uri
.authority
) &&
237 buffer_is_equal(p
->conf
.docroot_cache_key
, con
->uri
.authority
)) {
239 buffer_copy_buffer(con
->server_name
, p
->conf
.docroot_cache_servername
);
240 buffer_copy_buffer(con
->physical
.doc_root
, p
->conf
.docroot_cache_value
);
242 /* build document-root */
243 if (buffer_string_is_empty(con
->uri
.authority
) ||
244 build_doc_root(srv
, con
, p
, p
->doc_root
, con
->uri
.authority
)) {
245 /* not found, fallback the default-host */
246 if (0 == build_doc_root(srv
, con
, p
,
248 p
->conf
.default_host
)) {
249 /* default host worked */
250 buffer_copy_buffer(con
->server_name
, p
->conf
.default_host
);
251 buffer_copy_buffer(con
->physical
.doc_root
, p
->doc_root
);
252 /* do not cache default host */
254 return HANDLER_GO_ON
;
258 buffer_copy_buffer(con
->server_name
, con
->uri
.authority
);
259 buffer_copy_buffer(con
->physical
.doc_root
, p
->doc_root
);
262 buffer_copy_buffer(p
->conf
.docroot_cache_key
, con
->uri
.authority
);
263 buffer_copy_buffer(p
->conf
.docroot_cache_value
, p
->doc_root
);
264 buffer_copy_buffer(p
->conf
.docroot_cache_servername
, con
->server_name
);
267 return HANDLER_GO_ON
;
271 int mod_simple_vhost_plugin_init(plugin
*p
);
272 int mod_simple_vhost_plugin_init(plugin
*p
) {
273 p
->version
= LIGHTTPD_VERSION_ID
;
274 p
->name
= buffer_init_string("simple_vhost");
276 p
->init
= mod_simple_vhost_init
;
277 p
->set_defaults
= mod_simple_vhost_set_defaults
;
278 p
->handle_docroot
= mod_simple_vhost_docroot
;
279 p
->cleanup
= mod_simple_vhost_free
;