[core] remove some unused header includes
[lighttpd.git] / src / mod_webdav.c
blobe298d82671b1bfa463f151400123fab2f6930837
1 #include "first.h"
3 #include "base.h"
4 #include "log.h"
5 #include "buffer.h"
6 #include "response.h"
7 #include "connections.h"
9 #include "plugin.h"
11 #include "stat_cache.h"
13 #include "sys-mmap.h"
15 #include <sys/types.h>
16 #include <sys/stat.h>
17 #include <stdlib.h>
18 #include <string.h>
19 #include <errno.h>
20 #include <fcntl.h>
22 #include <unistd.h>
23 #include <dirent.h>
25 #if defined(HAVE_LIBXML_H) && defined(HAVE_SQLITE3_H)
26 #define USE_PROPPATCH
27 #include <libxml/tree.h>
28 #include <libxml/parser.h>
30 #include <sqlite3.h>
31 #endif
33 #if defined(HAVE_LIBXML_H) && defined(HAVE_SQLITE3_H) && defined(HAVE_UUID_UUID_H)
34 #define USE_LOCKS
35 #include <uuid/uuid.h>
36 #endif
38 /**
39 * this is a webdav for a lighttpd plugin
41 * at least a very basic one.
42 * - for now it is read-only and we only support PROPFIND
46 #define WEBDAV_FILE_MODE S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH
47 #define WEBDAV_DIR_MODE S_IRWXU | S_IRWXG | S_IRWXO
49 /* plugin config for all request/connections */
51 typedef struct {
52 unsigned short enabled;
53 unsigned short is_readonly;
54 unsigned short log_xml;
56 buffer *sqlite_db_name;
57 #ifdef USE_PROPPATCH
58 sqlite3 *sql;
59 sqlite3_stmt *stmt_update_prop;
60 sqlite3_stmt *stmt_delete_prop;
61 sqlite3_stmt *stmt_select_prop;
62 sqlite3_stmt *stmt_select_propnames;
64 sqlite3_stmt *stmt_delete_uri;
65 sqlite3_stmt *stmt_move_uri;
66 sqlite3_stmt *stmt_copy_uri;
68 sqlite3_stmt *stmt_remove_lock;
69 sqlite3_stmt *stmt_create_lock;
70 sqlite3_stmt *stmt_read_lock;
71 sqlite3_stmt *stmt_read_lock_by_uri;
72 sqlite3_stmt *stmt_refresh_lock;
73 #endif
74 } plugin_config;
76 typedef struct {
77 PLUGIN_DATA;
79 buffer *tmp_buf;
80 request_uri uri;
81 physical physical;
83 plugin_config **config_storage;
85 plugin_config conf;
86 } plugin_data;
88 typedef struct {
89 plugin_config conf;
90 } handler_ctx;
92 /* init the plugin data */
93 INIT_FUNC(mod_webdav_init) {
94 plugin_data *p;
96 p = calloc(1, sizeof(*p));
98 p->tmp_buf = buffer_init();
100 p->uri.scheme = buffer_init();
101 p->uri.path_raw = buffer_init();
102 p->uri.path = buffer_init();
103 p->uri.authority = buffer_init();
105 p->physical.path = buffer_init();
106 p->physical.rel_path = buffer_init();
107 p->physical.doc_root = buffer_init();
108 p->physical.basedir = buffer_init();
110 return p;
113 /* detroy the plugin data */
114 FREE_FUNC(mod_webdav_free) {
115 plugin_data *p = p_d;
117 UNUSED(srv);
119 if (!p) return HANDLER_GO_ON;
121 if (p->config_storage) {
122 size_t i;
123 for (i = 0; i < srv->config_context->used; i++) {
124 plugin_config *s = p->config_storage[i];
126 if (NULL == s) continue;
128 buffer_free(s->sqlite_db_name);
129 #ifdef USE_PROPPATCH
130 if (s->sql) {
131 sqlite3_finalize(s->stmt_delete_prop);
132 sqlite3_finalize(s->stmt_delete_uri);
133 sqlite3_finalize(s->stmt_copy_uri);
134 sqlite3_finalize(s->stmt_move_uri);
135 sqlite3_finalize(s->stmt_update_prop);
136 sqlite3_finalize(s->stmt_select_prop);
137 sqlite3_finalize(s->stmt_select_propnames);
139 sqlite3_finalize(s->stmt_read_lock);
140 sqlite3_finalize(s->stmt_read_lock_by_uri);
141 sqlite3_finalize(s->stmt_create_lock);
142 sqlite3_finalize(s->stmt_remove_lock);
143 sqlite3_finalize(s->stmt_refresh_lock);
144 sqlite3_close(s->sql);
146 #endif
147 free(s);
149 free(p->config_storage);
152 buffer_free(p->uri.scheme);
153 buffer_free(p->uri.path_raw);
154 buffer_free(p->uri.path);
155 buffer_free(p->uri.authority);
157 buffer_free(p->physical.path);
158 buffer_free(p->physical.rel_path);
159 buffer_free(p->physical.doc_root);
160 buffer_free(p->physical.basedir);
162 buffer_free(p->tmp_buf);
164 free(p);
166 return HANDLER_GO_ON;
169 /* handle plugin config and check values */
171 SETDEFAULTS_FUNC(mod_webdav_set_defaults) {
172 plugin_data *p = p_d;
173 size_t i = 0;
175 config_values_t cv[] = {
176 { "webdav.activate", NULL, T_CONFIG_BOOLEAN, T_CONFIG_SCOPE_CONNECTION }, /* 0 */
177 { "webdav.is-readonly", NULL, T_CONFIG_BOOLEAN, T_CONFIG_SCOPE_CONNECTION }, /* 1 */
178 { "webdav.sqlite-db-name", NULL, T_CONFIG_STRING, T_CONFIG_SCOPE_CONNECTION }, /* 2 */
179 { "webdav.log-xml", NULL, T_CONFIG_BOOLEAN, T_CONFIG_SCOPE_CONNECTION }, /* 3 */
180 { NULL, NULL, T_CONFIG_UNSET, T_CONFIG_SCOPE_UNSET }
183 if (!p) return HANDLER_ERROR;
185 p->config_storage = calloc(1, srv->config_context->used * sizeof(plugin_config *));
187 for (i = 0; i < srv->config_context->used; i++) {
188 data_config const* config = (data_config const*)srv->config_context->data[i];
189 plugin_config *s;
191 s = calloc(1, sizeof(plugin_config));
192 s->sqlite_db_name = buffer_init();
194 cv[0].destination = &(s->enabled);
195 cv[1].destination = &(s->is_readonly);
196 cv[2].destination = s->sqlite_db_name;
197 cv[3].destination = &(s->log_xml);
199 p->config_storage[i] = s;
201 if (0 != config_insert_values_global(srv, config->value, cv, i == 0 ? T_CONFIG_SCOPE_SERVER : T_CONFIG_SCOPE_CONNECTION)) {
202 return HANDLER_ERROR;
205 if (!buffer_string_is_empty(s->sqlite_db_name)) {
206 #ifdef USE_PROPPATCH
207 const char *next_stmt;
208 char *err;
210 if (SQLITE_OK != sqlite3_open(s->sqlite_db_name->ptr, &(s->sql))) {
211 log_error_write(srv, __FILE__, __LINE__, "sbs", "sqlite3_open failed for",
212 s->sqlite_db_name,
213 sqlite3_errmsg(s->sql));
214 return HANDLER_ERROR;
217 if (SQLITE_OK != sqlite3_exec(s->sql,
218 "CREATE TABLE IF NOT EXISTS properties ("
219 " resource TEXT NOT NULL,"
220 " prop TEXT NOT NULL,"
221 " ns TEXT NOT NULL,"
222 " value TEXT NOT NULL,"
223 " PRIMARY KEY(resource, prop, ns))",
224 NULL, NULL, &err)) {
226 if (0 != strcmp(err, "table properties already exists")) {
227 log_error_write(srv, __FILE__, __LINE__, "ss", "can't open transaction:", err);
228 sqlite3_free(err);
230 return HANDLER_ERROR;
232 sqlite3_free(err);
235 if (SQLITE_OK != sqlite3_exec(s->sql,
236 "CREATE TABLE IF NOT EXISTS locks ("
237 " locktoken TEXT NOT NULL,"
238 " resource TEXT NOT NULL,"
239 " lockscope TEXT NOT NULL,"
240 " locktype TEXT NOT NULL,"
241 " owner TEXT NOT NULL,"
242 " depth INT NOT NULL,"
243 " timeout TIMESTAMP NOT NULL,"
244 " PRIMARY KEY(locktoken))",
245 NULL, NULL, &err)) {
247 if (0 != strcmp(err, "table locks already exists")) {
248 log_error_write(srv, __FILE__, __LINE__, "ss", "can't open transaction:", err);
249 sqlite3_free(err);
251 return HANDLER_ERROR;
253 sqlite3_free(err);
256 if (SQLITE_OK != sqlite3_prepare(s->sql,
257 CONST_STR_LEN("SELECT value FROM properties WHERE resource = ? AND prop = ? AND ns = ?"),
258 &(s->stmt_select_prop), &next_stmt)) {
259 /* prepare failed */
261 log_error_write(srv, __FILE__, __LINE__, "ss", "sqlite3_prepare failed:", sqlite3_errmsg(s->sql));
262 return HANDLER_ERROR;
265 if (SQLITE_OK != sqlite3_prepare(s->sql,
266 CONST_STR_LEN("SELECT ns, prop FROM properties WHERE resource = ?"),
267 &(s->stmt_select_propnames), &next_stmt)) {
268 /* prepare failed */
270 log_error_write(srv, __FILE__, __LINE__, "ss", "sqlite3_prepare failed:", sqlite3_errmsg(s->sql));
271 return HANDLER_ERROR;
275 if (SQLITE_OK != sqlite3_prepare(s->sql,
276 CONST_STR_LEN("REPLACE INTO properties (resource, prop, ns, value) VALUES (?, ?, ?, ?)"),
277 &(s->stmt_update_prop), &next_stmt)) {
278 /* prepare failed */
280 log_error_write(srv, __FILE__, __LINE__, "ss", "sqlite3_prepare failed:", sqlite3_errmsg(s->sql));
281 return HANDLER_ERROR;
284 if (SQLITE_OK != sqlite3_prepare(s->sql,
285 CONST_STR_LEN("DELETE FROM properties WHERE resource = ? AND prop = ? AND ns = ?"),
286 &(s->stmt_delete_prop), &next_stmt)) {
287 /* prepare failed */
288 log_error_write(srv, __FILE__, __LINE__, "ss", "sqlite3_prepare failed", sqlite3_errmsg(s->sql));
290 return HANDLER_ERROR;
293 if (SQLITE_OK != sqlite3_prepare(s->sql,
294 CONST_STR_LEN("DELETE FROM properties WHERE resource = ?"),
295 &(s->stmt_delete_uri), &next_stmt)) {
296 /* prepare failed */
297 log_error_write(srv, __FILE__, __LINE__, "ss", "sqlite3_prepare failed", sqlite3_errmsg(s->sql));
299 return HANDLER_ERROR;
302 if (SQLITE_OK != sqlite3_prepare(s->sql,
303 CONST_STR_LEN("INSERT INTO properties SELECT ?, prop, ns, value FROM properties WHERE resource = ?"),
304 &(s->stmt_copy_uri), &next_stmt)) {
305 /* prepare failed */
306 log_error_write(srv, __FILE__, __LINE__, "ss", "sqlite3_prepare failed", sqlite3_errmsg(s->sql));
308 return HANDLER_ERROR;
311 if (SQLITE_OK != sqlite3_prepare(s->sql,
312 CONST_STR_LEN("UPDATE OR REPLACE properties SET resource = ? WHERE resource = ?"),
313 &(s->stmt_move_uri), &next_stmt)) {
314 /* prepare failed */
315 log_error_write(srv, __FILE__, __LINE__, "ss", "sqlite3_prepare failed", sqlite3_errmsg(s->sql));
317 return HANDLER_ERROR;
320 /* LOCKS */
322 if (SQLITE_OK != sqlite3_prepare(s->sql,
323 CONST_STR_LEN("INSERT INTO locks (locktoken, resource, lockscope, locktype, owner, depth, timeout) VALUES (?,?,?,?,?,?, CURRENT_TIME + 600)"),
324 &(s->stmt_create_lock), &next_stmt)) {
325 /* prepare failed */
326 log_error_write(srv, __FILE__, __LINE__, "ss", "sqlite3_prepare failed", sqlite3_errmsg(s->sql));
328 return HANDLER_ERROR;
331 if (SQLITE_OK != sqlite3_prepare(s->sql,
332 CONST_STR_LEN("DELETE FROM locks WHERE locktoken = ?"),
333 &(s->stmt_remove_lock), &next_stmt)) {
334 /* prepare failed */
335 log_error_write(srv, __FILE__, __LINE__, "ss", "sqlite3_prepare failed", sqlite3_errmsg(s->sql));
337 return HANDLER_ERROR;
340 if (SQLITE_OK != sqlite3_prepare(s->sql,
341 CONST_STR_LEN("SELECT locktoken, resource, lockscope, locktype, owner, depth, timeout-CURRENT_TIME FROM locks WHERE locktoken = ?"),
342 &(s->stmt_read_lock), &next_stmt)) {
343 /* prepare failed */
344 log_error_write(srv, __FILE__, __LINE__, "ss", "sqlite3_prepare failed", sqlite3_errmsg(s->sql));
346 return HANDLER_ERROR;
349 if (SQLITE_OK != sqlite3_prepare(s->sql,
350 CONST_STR_LEN("SELECT locktoken, resource, lockscope, locktype, owner, depth, timeout-CURRENT_TIME FROM locks WHERE resource = ?"),
351 &(s->stmt_read_lock_by_uri), &next_stmt)) {
352 /* prepare failed */
353 log_error_write(srv, __FILE__, __LINE__, "ss", "sqlite3_prepare failed", sqlite3_errmsg(s->sql));
355 return HANDLER_ERROR;
358 if (SQLITE_OK != sqlite3_prepare(s->sql,
359 CONST_STR_LEN("UPDATE locks SET timeout = CURRENT_TIME + 600 WHERE locktoken = ?"),
360 &(s->stmt_refresh_lock), &next_stmt)) {
361 /* prepare failed */
362 log_error_write(srv, __FILE__, __LINE__, "ss", "sqlite3_prepare failed", sqlite3_errmsg(s->sql));
364 return HANDLER_ERROR;
368 #else
369 log_error_write(srv, __FILE__, __LINE__, "s", "Sorry, no sqlite3 and libxml2 support include, compile with --with-webdav-props");
370 return HANDLER_ERROR;
371 #endif
375 return HANDLER_GO_ON;
378 #define PATCH_OPTION(x) \
379 p->conf.x = s->x;
380 static int mod_webdav_patch_connection(server *srv, connection *con, plugin_data *p) {
381 size_t i, j;
382 plugin_config *s = p->config_storage[0];
384 PATCH_OPTION(enabled);
385 PATCH_OPTION(is_readonly);
386 PATCH_OPTION(log_xml);
388 #ifdef USE_PROPPATCH
389 PATCH_OPTION(sql);
390 PATCH_OPTION(stmt_update_prop);
391 PATCH_OPTION(stmt_delete_prop);
392 PATCH_OPTION(stmt_select_prop);
393 PATCH_OPTION(stmt_select_propnames);
395 PATCH_OPTION(stmt_delete_uri);
396 PATCH_OPTION(stmt_move_uri);
397 PATCH_OPTION(stmt_copy_uri);
399 PATCH_OPTION(stmt_remove_lock);
400 PATCH_OPTION(stmt_refresh_lock);
401 PATCH_OPTION(stmt_create_lock);
402 PATCH_OPTION(stmt_read_lock);
403 PATCH_OPTION(stmt_read_lock_by_uri);
404 #endif
405 /* skip the first, the global context */
406 for (i = 1; i < srv->config_context->used; i++) {
407 data_config *dc = (data_config *)srv->config_context->data[i];
408 s = p->config_storage[i];
410 /* condition didn't match */
411 if (!config_check_cond(srv, con, dc)) continue;
413 /* merge config */
414 for (j = 0; j < dc->value->used; j++) {
415 data_unset *du = dc->value->data[j];
417 if (buffer_is_equal_string(du->key, CONST_STR_LEN("webdav.activate"))) {
418 PATCH_OPTION(enabled);
419 } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("webdav.is-readonly"))) {
420 PATCH_OPTION(is_readonly);
421 } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("webdav.log-xml"))) {
422 PATCH_OPTION(log_xml);
423 } else if (buffer_is_equal_string(du->key, CONST_STR_LEN("webdav.sqlite-db-name"))) {
424 #ifdef USE_PROPPATCH
425 PATCH_OPTION(sql);
426 PATCH_OPTION(stmt_update_prop);
427 PATCH_OPTION(stmt_delete_prop);
428 PATCH_OPTION(stmt_select_prop);
429 PATCH_OPTION(stmt_select_propnames);
431 PATCH_OPTION(stmt_delete_uri);
432 PATCH_OPTION(stmt_move_uri);
433 PATCH_OPTION(stmt_copy_uri);
435 PATCH_OPTION(stmt_remove_lock);
436 PATCH_OPTION(stmt_refresh_lock);
437 PATCH_OPTION(stmt_create_lock);
438 PATCH_OPTION(stmt_read_lock);
439 PATCH_OPTION(stmt_read_lock_by_uri);
440 #endif
445 return 0;
448 URIHANDLER_FUNC(mod_webdav_uri_handler) {
449 plugin_data *p = p_d;
451 UNUSED(srv);
453 if (buffer_is_empty(con->uri.path)) return HANDLER_GO_ON;
455 mod_webdav_patch_connection(srv, con, p);
457 if (!p->conf.enabled) return HANDLER_GO_ON;
459 switch (con->request.http_method) {
460 case HTTP_METHOD_OPTIONS:
461 /* we fake a little bit but it makes MS W2k happy and it let's us mount the volume */
462 response_header_overwrite(srv, con, CONST_STR_LEN("DAV"), CONST_STR_LEN("1,2"));
463 response_header_overwrite(srv, con, CONST_STR_LEN("MS-Author-Via"), CONST_STR_LEN("DAV"));
465 if (p->conf.is_readonly) {
466 response_header_insert(srv, con, CONST_STR_LEN("Allow"), CONST_STR_LEN("PROPFIND"));
467 } else {
468 response_header_insert(srv, con, CONST_STR_LEN("Allow"), CONST_STR_LEN("PROPFIND, DELETE, MKCOL, PUT, MOVE, COPY, PROPPATCH, LOCK, UNLOCK"));
470 break;
471 default:
472 break;
475 /* not found */
476 return HANDLER_GO_ON;
478 static int webdav_gen_prop_tag(server *srv, connection *con,
479 char *prop_name,
480 char *prop_ns,
481 char *value,
482 buffer *b) {
484 UNUSED(srv);
485 UNUSED(con);
487 if (value) {
488 buffer_append_string_len(b,CONST_STR_LEN("<"));
489 buffer_append_string(b, prop_name);
490 buffer_append_string_len(b, CONST_STR_LEN(" xmlns=\""));
491 buffer_append_string(b, prop_ns);
492 buffer_append_string_len(b, CONST_STR_LEN("\">"));
494 buffer_append_string(b, value);
496 buffer_append_string_len(b,CONST_STR_LEN("</"));
497 buffer_append_string(b, prop_name);
498 buffer_append_string_len(b, CONST_STR_LEN(">"));
499 } else {
500 buffer_append_string_len(b,CONST_STR_LEN("<"));
501 buffer_append_string(b, prop_name);
502 buffer_append_string_len(b, CONST_STR_LEN(" xmlns=\""));
503 buffer_append_string(b, prop_ns);
504 buffer_append_string_len(b, CONST_STR_LEN("\"/>"));
507 return 0;
511 static int webdav_gen_response_status_tag(server *srv, connection *con, physical *dst, int status, buffer *b) {
512 UNUSED(srv);
514 buffer_append_string_len(b,CONST_STR_LEN("<D:response xmlns:ns0=\"urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/\">\n"));
516 buffer_append_string_len(b,CONST_STR_LEN("<D:href>\n"));
517 buffer_append_string_buffer(b, dst->rel_path);
518 buffer_append_string_len(b,CONST_STR_LEN("</D:href>\n"));
519 buffer_append_string_len(b,CONST_STR_LEN("<D:status>\n"));
521 if (con->request.http_version == HTTP_VERSION_1_1) {
522 buffer_copy_string_len(b, CONST_STR_LEN("HTTP/1.1 "));
523 } else {
524 buffer_copy_string_len(b, CONST_STR_LEN("HTTP/1.0 "));
526 buffer_append_int(b, status);
527 buffer_append_string_len(b, CONST_STR_LEN(" "));
528 buffer_append_string(b, get_http_status_name(status));
530 buffer_append_string_len(b,CONST_STR_LEN("</D:status>\n"));
531 buffer_append_string_len(b,CONST_STR_LEN("</D:response>\n"));
533 return 0;
536 static int webdav_delete_file(server *srv, connection *con, handler_ctx *hctx, physical *dst, buffer *b) {
537 int status = 0;
539 /* try to unlink it */
540 if (-1 == unlink(dst->path->ptr)) {
541 switch(errno) {
542 case EACCES:
543 case EPERM:
544 /* 403 */
545 status = 403;
546 break;
547 default:
548 status = 501;
549 break;
551 webdav_gen_response_status_tag(srv, con, dst, status, b);
552 } else {
553 #ifdef USE_PROPPATCH
554 sqlite3_stmt *stmt = hctx->conf.stmt_delete_uri;
556 if (!stmt) {
557 status = 403;
558 webdav_gen_response_status_tag(srv, con, dst, status, b);
559 } else {
560 sqlite3_reset(stmt);
562 /* bind the values to the insert */
564 sqlite3_bind_text(stmt, 1,
565 CONST_BUF_LEN(dst->rel_path),
566 SQLITE_TRANSIENT);
568 if (SQLITE_DONE != sqlite3_step(stmt)) {
569 /* */
572 #else
573 UNUSED(hctx);
574 #endif
577 return (status != 0);
580 static int webdav_delete_dir(server *srv, connection *con, handler_ctx *hctx, physical *dst, buffer *b) {
581 DIR *dir;
582 int have_multi_status = 0;
583 physical d;
585 d.path = buffer_init();
586 d.rel_path = buffer_init();
588 if (NULL != (dir = opendir(dst->path->ptr))) {
589 struct dirent *de;
591 while(NULL != (de = readdir(dir))) {
592 struct stat st;
594 if ((de->d_name[0] == '.' && de->d_name[1] == '\0') ||
595 (de->d_name[0] == '.' && de->d_name[1] == '.' && de->d_name[2] == '\0')) {
596 continue;
597 /* ignore the parent dir */
600 buffer_copy_buffer(d.path, dst->path);
601 buffer_append_slash(d.path);
602 buffer_append_string(d.path, de->d_name);
604 buffer_copy_buffer(d.rel_path, dst->rel_path);
605 buffer_append_slash(d.rel_path);
606 buffer_append_string(d.rel_path, de->d_name);
608 /* stat and unlink afterwards */
609 if (-1 == stat(d.path->ptr, &st)) {
610 /* don't about it yet, rmdir will fail too */
611 } else if (S_ISDIR(st.st_mode)) {
612 have_multi_status = webdav_delete_dir(srv, con, hctx, &d, b);
614 /* try to unlink it */
615 if (-1 == rmdir(d.path->ptr)) {
616 int status;
617 switch(errno) {
618 case EACCES:
619 case EPERM:
620 /* 403 */
621 status = 403;
622 break;
623 default:
624 status = 501;
625 break;
627 have_multi_status = 1;
629 webdav_gen_response_status_tag(srv, con, &d, status, b);
630 } else {
631 #ifdef USE_PROPPATCH
632 sqlite3_stmt *stmt = hctx->conf.stmt_delete_uri;
634 if (stmt) {
635 sqlite3_reset(stmt);
637 /* bind the values to the insert */
639 sqlite3_bind_text(stmt, 1,
640 CONST_BUF_LEN(d.rel_path),
641 SQLITE_TRANSIENT);
643 if (SQLITE_DONE != sqlite3_step(stmt)) {
644 /* */
647 #endif
649 } else {
650 have_multi_status = webdav_delete_file(srv, con, hctx, &d, b);
653 closedir(dir);
655 buffer_free(d.path);
656 buffer_free(d.rel_path);
659 return have_multi_status;
662 /* don't want to block when open()ing a fifo */
663 #if defined(O_NONBLOCK)
664 # define FIFO_NONBLOCK O_NONBLOCK
665 #else
666 # define FIFO_NONBLOCK 0
667 #endif
669 #ifndef O_BINARY
670 #define O_BINARY 0
671 #endif
673 static int webdav_copy_file(server *srv, connection *con, handler_ctx *hctx, physical *src, physical *dst, int overwrite) {
674 char *data;
675 ssize_t rd, wr, offset;
676 int status = 0, ifd, ofd;
677 UNUSED(srv);
678 UNUSED(con);
680 if (-1 == (ifd = open(src->path->ptr, O_RDONLY | O_BINARY | FIFO_NONBLOCK))) {
681 return 403;
684 if (-1 == (ofd = open(dst->path->ptr, O_WRONLY|O_TRUNC|O_CREAT|(overwrite ? 0 : O_EXCL), WEBDAV_FILE_MODE))) {
685 /* opening the destination failed for some reason */
686 switch(errno) {
687 case EEXIST:
688 status = 412;
689 break;
690 case EISDIR:
691 status = 409;
692 break;
693 case ENOENT:
694 /* at least one part in the middle wasn't existing */
695 status = 409;
696 break;
697 default:
698 status = 403;
699 break;
701 close(ifd);
702 return status;
705 data = malloc(131072);
706 force_assert(data);
708 while (0 < (rd = read(ifd, data, 131072))) {
709 offset = 0;
710 do {
711 wr = write(ofd, data+offset, (size_t)(rd-offset));
712 } while (wr >= 0 ? (offset += wr) != rd : (errno == EINTR));
713 if (-1 == wr) {
714 status = (errno == ENOSPC) ? 507 : 403;
715 break;
719 if (0 != rd && 0 == status) status = 403;
721 free(data);
722 close(ifd);
723 if (0 != close(ofd)) {
724 if (0 == status) status = (errno == ENOSPC) ? 507 : 403;
725 log_error_write(srv, __FILE__, __LINE__, "sbss",
726 "close ", dst->path, "failed: ", strerror(errno));
729 #ifdef USE_PROPPATCH
730 if (0 == status) {
731 /* copy worked fine, copy connected properties */
732 sqlite3_stmt *stmt = hctx->conf.stmt_copy_uri;
734 if (stmt) {
735 sqlite3_reset(stmt);
737 /* bind the values to the insert */
738 sqlite3_bind_text(stmt, 1,
739 CONST_BUF_LEN(dst->rel_path),
740 SQLITE_TRANSIENT);
742 sqlite3_bind_text(stmt, 2,
743 CONST_BUF_LEN(src->rel_path),
744 SQLITE_TRANSIENT);
746 if (SQLITE_DONE != sqlite3_step(stmt)) {
747 /* */
751 #else
752 UNUSED(hctx);
753 #endif
754 return status;
757 static int webdav_copy_dir(server *srv, connection *con, handler_ctx *hctx, physical *src, physical *dst, int overwrite) {
758 DIR *srcdir;
759 int status = 0;
761 if (NULL != (srcdir = opendir(src->path->ptr))) {
762 struct dirent *de;
763 physical s, d;
765 s.path = buffer_init();
766 s.rel_path = buffer_init();
768 d.path = buffer_init();
769 d.rel_path = buffer_init();
771 while (NULL != (de = readdir(srcdir))) {
772 struct stat st;
774 if ((de->d_name[0] == '.' && de->d_name[1] == '\0')
775 || (de->d_name[0] == '.' && de->d_name[1] == '.' && de->d_name[2] == '\0')) {
776 continue;
779 buffer_copy_buffer(s.path, src->path);
780 buffer_append_slash(s.path);
781 buffer_append_string(s.path, de->d_name);
783 buffer_copy_buffer(d.path, dst->path);
784 buffer_append_slash(d.path);
785 buffer_append_string(d.path, de->d_name);
787 buffer_copy_buffer(s.rel_path, src->rel_path);
788 buffer_append_slash(s.rel_path);
789 buffer_append_string(s.rel_path, de->d_name);
791 buffer_copy_buffer(d.rel_path, dst->rel_path);
792 buffer_append_slash(d.rel_path);
793 buffer_append_string(d.rel_path, de->d_name);
795 if (-1 == stat(s.path->ptr, &st)) {
796 /* why ? */
797 } else if (S_ISDIR(st.st_mode)) {
798 /* a directory */
799 if (-1 == mkdir(d.path->ptr, WEBDAV_DIR_MODE) &&
800 errno != EEXIST) {
801 /* WTH ? */
802 } else {
803 #ifdef USE_PROPPATCH
804 sqlite3_stmt *stmt = hctx->conf.stmt_copy_uri;
806 if (0 != (status = webdav_copy_dir(srv, con, hctx, &s, &d, overwrite))) {
807 break;
809 /* directory is copied, copy the properties too */
811 if (stmt) {
812 sqlite3_reset(stmt);
814 /* bind the values to the insert */
815 sqlite3_bind_text(stmt, 1,
816 CONST_BUF_LEN(dst->rel_path),
817 SQLITE_TRANSIENT);
819 sqlite3_bind_text(stmt, 2,
820 CONST_BUF_LEN(src->rel_path),
821 SQLITE_TRANSIENT);
823 if (SQLITE_DONE != sqlite3_step(stmt)) {
824 /* */
827 #endif
829 } else if (S_ISREG(st.st_mode)) {
830 /* a plain file */
831 if (0 != (status = webdav_copy_file(srv, con, hctx, &s, &d, overwrite))) {
832 break;
837 buffer_free(s.path);
838 buffer_free(s.rel_path);
839 buffer_free(d.path);
840 buffer_free(d.rel_path);
842 closedir(srcdir);
845 return status;
848 #ifdef USE_LOCKS
849 static void webdav_activelock(buffer *b,
850 const buffer *locktoken, const char *lockscope, const char *locktype, int depth, int timeout) {
851 buffer_append_string_len(b, CONST_STR_LEN("<D:activelock>\n"));
853 buffer_append_string_len(b, CONST_STR_LEN("<D:lockscope>"));
854 buffer_append_string_len(b, CONST_STR_LEN("<D:"));
855 buffer_append_string(b, lockscope);
856 buffer_append_string_len(b, CONST_STR_LEN("/>"));
857 buffer_append_string_len(b, CONST_STR_LEN("</D:lockscope>\n"));
859 buffer_append_string_len(b, CONST_STR_LEN("<D:locktype>"));
860 buffer_append_string_len(b, CONST_STR_LEN("<D:"));
861 buffer_append_string(b, locktype);
862 buffer_append_string_len(b, CONST_STR_LEN("/>"));
863 buffer_append_string_len(b, CONST_STR_LEN("</D:locktype>\n"));
865 buffer_append_string_len(b, CONST_STR_LEN("<D:depth>"));
866 buffer_append_string(b, depth == 0 ? "0" : "infinity");
867 buffer_append_string_len(b, CONST_STR_LEN("</D:depth>\n"));
869 buffer_append_string_len(b, CONST_STR_LEN("<D:timeout>"));
870 buffer_append_string_len(b, CONST_STR_LEN("Second-"));
871 buffer_append_int(b, timeout);
872 buffer_append_string_len(b, CONST_STR_LEN("</D:timeout>\n"));
874 buffer_append_string_len(b, CONST_STR_LEN("<D:owner>"));
875 buffer_append_string_len(b, CONST_STR_LEN("</D:owner>\n"));
877 buffer_append_string_len(b, CONST_STR_LEN("<D:locktoken>"));
878 buffer_append_string_len(b, CONST_STR_LEN("<D:href>"));
879 buffer_append_string_buffer(b, locktoken);
880 buffer_append_string_len(b, CONST_STR_LEN("</D:href>"));
881 buffer_append_string_len(b, CONST_STR_LEN("</D:locktoken>\n"));
883 buffer_append_string_len(b, CONST_STR_LEN("</D:activelock>\n"));
886 static void webdav_get_live_property_lockdiscovery(server *srv, connection *con, handler_ctx *hctx, physical *dst, buffer *b) {
888 sqlite3_stmt *stmt = hctx->conf.stmt_read_lock_by_uri;
889 if (!stmt) { /*(should not happen)*/
890 buffer_append_string_len(b, CONST_STR_LEN("<D:lockdiscovery>\n</D:lockdiscovery>\n"));
891 return;
893 UNUSED(srv);
894 UNUSED(con);
896 /* SELECT locktoken, resource, lockscope, locktype, owner, depth, timeout
897 * FROM locks
898 * WHERE resource = ? */
900 sqlite3_reset(stmt);
902 sqlite3_bind_text(stmt, 1,
903 CONST_BUF_LEN(dst->rel_path),
904 SQLITE_TRANSIENT);
906 buffer_append_string_len(b, CONST_STR_LEN("<D:lockdiscovery>\n"));
907 while (SQLITE_ROW == sqlite3_step(stmt)) {
908 const char *lockscope = (const char *)sqlite3_column_text(stmt, 2);
909 const char *locktype = (const char *)sqlite3_column_text(stmt, 3);
910 const int depth = sqlite3_column_int(stmt, 5);
911 const int timeout = sqlite3_column_int(stmt, 6);
912 buffer locktoken = { NULL, 0, 0 };
913 locktoken.ptr = (char *)sqlite3_column_text(stmt, 0);
914 locktoken.used = sqlite3_column_bytes(stmt, 0);
915 if (locktoken.used) ++locktoken.used;
916 locktoken.size = locktoken.used;
918 if (timeout > 0) {
919 webdav_activelock(b, &locktoken, lockscope, locktype, depth, timeout);
922 buffer_append_string_len(b, CONST_STR_LEN("</D:lockdiscovery>\n"));
924 #endif
926 static int webdav_get_live_property(server *srv, connection *con, handler_ctx *hctx, physical *dst, char *prop_name, buffer *b) {
927 stat_cache_entry *sce = NULL;
928 int found = 0;
930 UNUSED(hctx);
932 if (HANDLER_ERROR != (stat_cache_get_entry(srv, con, dst->path, &sce))) {
933 char ctime_buf[] = "2005-08-18T07:27:16Z";
934 char mtime_buf[] = "Thu, 18 Aug 2005 07:27:16 GMT";
935 size_t k;
937 if (0 == strcmp(prop_name, "resourcetype")) {
938 if (S_ISDIR(sce->st.st_mode)) {
939 buffer_append_string_len(b, CONST_STR_LEN("<D:resourcetype><D:collection/></D:resourcetype>"));
940 } else {
941 buffer_append_string_len(b, CONST_STR_LEN("<D:resourcetype/>"));
943 found = 1;
944 } else if (0 == strcmp(prop_name, "getcontenttype")) {
945 if (S_ISDIR(sce->st.st_mode)) {
946 buffer_append_string_len(b, CONST_STR_LEN("<D:getcontenttype>httpd/unix-directory</D:getcontenttype>"));
947 found = 1;
948 } else if(S_ISREG(sce->st.st_mode)) {
949 for (k = 0; k < con->conf.mimetypes->used; k++) {
950 data_string *ds = (data_string *)con->conf.mimetypes->data[k];
952 if (buffer_is_empty(ds->key)) continue;
954 if (buffer_is_equal_right_len(dst->path, ds->key, buffer_string_length(ds->key))) {
955 buffer_append_string_len(b,CONST_STR_LEN("<D:getcontenttype>"));
956 buffer_append_string_buffer(b, ds->value);
957 buffer_append_string_len(b, CONST_STR_LEN("</D:getcontenttype>"));
958 found = 1;
960 break;
964 } else if (0 == strcmp(prop_name, "creationdate")) {
965 buffer_append_string_len(b, CONST_STR_LEN("<D:creationdate ns0:dt=\"dateTime.tz\">"));
966 strftime(ctime_buf, sizeof(ctime_buf), "%Y-%m-%dT%H:%M:%SZ", gmtime(&(sce->st.st_ctime)));
967 buffer_append_string(b, ctime_buf);
968 buffer_append_string_len(b, CONST_STR_LEN("</D:creationdate>"));
969 found = 1;
970 } else if (0 == strcmp(prop_name, "getlastmodified")) {
971 buffer_append_string_len(b,CONST_STR_LEN("<D:getlastmodified ns0:dt=\"dateTime.rfc1123\">"));
972 strftime(mtime_buf, sizeof(mtime_buf), "%a, %d %b %Y %H:%M:%S GMT", gmtime(&(sce->st.st_mtime)));
973 buffer_append_string(b, mtime_buf);
974 buffer_append_string_len(b, CONST_STR_LEN("</D:getlastmodified>"));
975 found = 1;
976 } else if (0 == strcmp(prop_name, "getcontentlength")) {
977 buffer_append_string_len(b,CONST_STR_LEN("<D:getcontentlength>"));
978 buffer_append_int(b, sce->st.st_size);
979 buffer_append_string_len(b, CONST_STR_LEN("</D:getcontentlength>"));
980 found = 1;
981 } else if (0 == strcmp(prop_name, "getcontentlanguage")) {
982 buffer_append_string_len(b,CONST_STR_LEN("<D:getcontentlanguage>"));
983 buffer_append_string_len(b, CONST_STR_LEN("en"));
984 buffer_append_string_len(b, CONST_STR_LEN("</D:getcontentlanguage>"));
985 found = 1;
986 } else if (0 == strcmp(prop_name, "getetag")) {
987 etag_create(con->physical.etag, &sce->st, con->etag_flags);
988 buffer_append_string_len(b, CONST_STR_LEN("<D:getetag>"));
989 buffer_append_string_buffer(b, con->physical.etag);
990 buffer_append_string_len(b, CONST_STR_LEN("</D:getetag>"));
991 buffer_reset(con->physical.etag);
992 found = 1;
993 #ifdef USE_LOCKS
994 } else if (0 == strcmp(prop_name, "lockdiscovery")) {
995 webdav_get_live_property_lockdiscovery(srv, con, hctx, dst, b);
996 found = 1;
997 } else if (0 == strcmp(prop_name, "supportedlock")) {
998 buffer_append_string_len(b,CONST_STR_LEN("<D:supportedlock>"));
999 buffer_append_string_len(b,CONST_STR_LEN("<D:lockentry>"));
1000 buffer_append_string_len(b,CONST_STR_LEN("<D:lockscope><D:exclusive/></D:lockscope>"));
1001 buffer_append_string_len(b,CONST_STR_LEN("<D:locktype><D:write/></D:locktype>"));
1002 buffer_append_string_len(b,CONST_STR_LEN("</D:lockentry>"));
1003 buffer_append_string_len(b, CONST_STR_LEN("</D:supportedlock>"));
1004 found = 1;
1005 #endif
1009 return found ? 0 : -1;
1012 static int webdav_get_property(server *srv, connection *con, handler_ctx *hctx, physical *dst, char *prop_name, char *prop_ns, buffer *b) {
1013 if (0 == strcmp(prop_ns, "DAV:")) {
1014 /* a local 'live' property */
1015 return webdav_get_live_property(srv, con, hctx, dst, prop_name, b);
1016 } else {
1017 int found = 0;
1018 #ifdef USE_PROPPATCH
1019 sqlite3_stmt *stmt = hctx->conf.stmt_select_prop;
1021 if (stmt) {
1022 /* perhaps it is in sqlite3 */
1023 sqlite3_reset(stmt);
1025 /* bind the values to the insert */
1027 sqlite3_bind_text(stmt, 1,
1028 CONST_BUF_LEN(dst->rel_path),
1029 SQLITE_TRANSIENT);
1030 sqlite3_bind_text(stmt, 2,
1031 prop_name,
1032 strlen(prop_name),
1033 SQLITE_TRANSIENT);
1034 sqlite3_bind_text(stmt, 3,
1035 prop_ns,
1036 strlen(prop_ns),
1037 SQLITE_TRANSIENT);
1039 /* it is the PK */
1040 while (SQLITE_ROW == sqlite3_step(stmt)) {
1041 /* there is a row for us, we only expect a single col 'value' */
1042 webdav_gen_prop_tag(srv, con, prop_name, prop_ns, (char *)sqlite3_column_text(stmt, 0), b);
1043 found = 1;
1046 #endif
1047 return found ? 0 : -1;
1050 /* not found */
1051 return -1;
1054 typedef struct {
1055 char *ns;
1056 char *prop;
1057 } webdav_property;
1059 static webdav_property live_properties[] = {
1060 { "DAV:", "creationdate" },
1061 /*{ "DAV:", "displayname" },*//*(not implemented)*/
1062 { "DAV:", "getcontentlanguage" },
1063 { "DAV:", "getcontentlength" },
1064 { "DAV:", "getcontenttype" },
1065 { "DAV:", "getetag" },
1066 { "DAV:", "getlastmodified" },
1067 { "DAV:", "resourcetype" },
1068 /*{ "DAV:", "source" },*//*(not implemented)*/
1069 #ifdef USE_LOCKS
1070 { "DAV:", "lockdiscovery" },
1071 { "DAV:", "supportedlock" },
1072 #endif
1074 { NULL, NULL }
1077 typedef struct {
1078 webdav_property **ptr;
1080 size_t used;
1081 size_t size;
1082 } webdav_properties;
1084 static int webdav_get_props(server *srv, connection *con, handler_ctx *hctx, physical *dst, webdav_properties *props, buffer *b_200, buffer *b_404) {
1085 size_t i;
1087 if (props && props->used) {
1088 for (i = 0; i < props->used; i++) {
1089 webdav_property *prop;
1091 prop = props->ptr[i];
1093 if (0 != webdav_get_property(srv, con, hctx,
1094 dst, prop->prop, prop->ns, b_200)) {
1095 webdav_gen_prop_tag(srv, con, prop->prop, prop->ns, NULL, b_404);
1098 } else {
1099 for (i = 0; live_properties[i].prop; i++) {
1100 /* a local 'live' property */
1101 webdav_get_live_property(srv, con, hctx, dst, live_properties[i].prop, b_200);
1105 return 0;
1108 #ifdef USE_PROPPATCH
1109 static int webdav_parse_chunkqueue(server *srv, connection *con, handler_ctx *hctx, chunkqueue *cq, xmlDoc **ret_xml) {
1110 xmlParserCtxtPtr ctxt;
1111 xmlDoc *xml;
1112 int res;
1113 int err;
1115 chunk *c;
1117 UNUSED(con);
1119 /* read the chunks in to the XML document */
1120 ctxt = xmlCreatePushParserCtxt(NULL, NULL, NULL, 0, NULL);
1122 for (c = cq->first; cq->bytes_out != cq->bytes_in; c = cq->first) {
1123 size_t weWant = cq->bytes_out - cq->bytes_in;
1124 size_t weHave;
1125 int mapped;
1126 void *data;
1128 switch(c->type) {
1129 case FILE_CHUNK:
1130 weHave = c->file.length - c->offset;
1132 if (weHave > weWant) weHave = weWant;
1134 /* xml chunks are always memory, mmap() is our friend */
1135 mapped = (c->file.mmap.start != MAP_FAILED);
1136 if (mapped) {
1137 data = c->file.mmap.start + c->offset;
1138 } else {
1139 if (-1 == c->file.fd && /* open the file if not already open */
1140 -1 == (c->file.fd = open(c->file.name->ptr, O_RDONLY))) {
1141 log_error_write(srv, __FILE__, __LINE__, "ss", "open failed: ", strerror(errno));
1143 return -1;
1146 if (MAP_FAILED != (c->file.mmap.start = mmap(0, c->file.length, PROT_READ, MAP_PRIVATE, c->file.fd, 0))) {
1147 /* chunk_reset() or chunk_free() will cleanup for us */
1148 c->file.mmap.length = c->file.length;
1149 data = c->file.mmap.start + c->offset;
1150 mapped = 1;
1151 } else {
1152 ssize_t rd;
1153 if (weHave > 65536) weHave = 65536;
1154 data = malloc(weHave);
1155 force_assert(data);
1156 if (-1 == lseek(c->file.fd, c->file.start + c->offset, SEEK_SET)
1157 || 0 > (rd = read(c->file.fd, data, weHave))) {
1158 log_error_write(srv, __FILE__, __LINE__, "ssbd", "lseek/read failed: ",
1159 strerror(errno), c->file.name, c->file.fd);
1160 free(data);
1161 return -1;
1163 weHave = (size_t)rd;
1167 if (XML_ERR_OK != (err = xmlParseChunk(ctxt, data, weHave, 0))) {
1168 log_error_write(srv, __FILE__, __LINE__, "sodd", "xmlParseChunk failed at:", cq->bytes_out, weHave, err);
1171 chunkqueue_mark_written(cq, weHave);
1173 if (!mapped) free(data);
1174 break;
1175 case MEM_CHUNK:
1176 /* append to the buffer */
1177 weHave = buffer_string_length(c->mem) - c->offset;
1179 if (weHave > weWant) weHave = weWant;
1181 if (hctx->conf.log_xml) {
1182 log_error_write(srv, __FILE__, __LINE__, "ss", "XML-request-body:", c->mem->ptr + c->offset);
1185 if (XML_ERR_OK != (err = xmlParseChunk(ctxt, c->mem->ptr + c->offset, weHave, 0))) {
1186 log_error_write(srv, __FILE__, __LINE__, "sodd", "xmlParseChunk failed at:", cq->bytes_out, weHave, err);
1189 chunkqueue_mark_written(cq, weHave);
1191 break;
1195 switch ((err = xmlParseChunk(ctxt, 0, 0, 1))) {
1196 case XML_ERR_DOCUMENT_END:
1197 case XML_ERR_OK:
1198 break;
1199 default:
1200 log_error_write(srv, __FILE__, __LINE__, "sd", "xmlParseChunk failed at final packet:", err);
1201 break;
1204 xml = ctxt->myDoc;
1205 res = ctxt->wellFormed;
1206 xmlFreeParserCtxt(ctxt);
1208 if (res == 0) {
1209 xmlFreeDoc(xml);
1210 } else {
1211 *ret_xml = xml;
1214 return res;
1216 #endif
1218 #ifdef USE_LOCKS
1219 static int webdav_lockdiscovery(server *srv, connection *con,
1220 buffer *locktoken, const char *lockscope, const char *locktype, int depth) {
1222 buffer *b = buffer_init();
1224 response_header_overwrite(srv, con, CONST_STR_LEN("Lock-Token"), CONST_BUF_LEN(locktoken));
1226 response_header_overwrite(srv, con,
1227 CONST_STR_LEN("Content-Type"),
1228 CONST_STR_LEN("text/xml; charset=\"utf-8\""));
1230 buffer_copy_string_len(b, CONST_STR_LEN("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"));
1232 buffer_append_string_len(b,CONST_STR_LEN("<D:prop xmlns:D=\"DAV:\" xmlns:ns0=\"urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/\">\n"));
1233 buffer_append_string_len(b,CONST_STR_LEN("<D:lockdiscovery>\n"));
1234 webdav_activelock(b, locktoken, lockscope, locktype, depth, 600);
1235 buffer_append_string_len(b,CONST_STR_LEN("</D:lockdiscovery>\n"));
1236 buffer_append_string_len(b,CONST_STR_LEN("</D:prop>\n"));
1238 chunkqueue_append_buffer(con->write_queue, b);
1239 buffer_free(b);
1241 return 0;
1243 #endif
1246 * check if resource is having the right locks to access to resource
1251 static int webdav_has_lock(server *srv, connection *con, handler_ctx *hctx, buffer *uri) {
1252 int has_lock = 1;
1254 #ifdef USE_LOCKS
1255 data_string *ds;
1256 UNUSED(srv);
1259 * This implementation is more fake than real
1260 * we need a parser for the If: header to really handle the full scope
1262 * X-Litmus: locks: 11 (owner_modify)
1263 * If: <http://127.0.0.1:1025/dav/litmus/lockme> (<opaquelocktoken:2165478d-0611-49c4-be92-e790d68a38f1>)
1264 * - a tagged check:
1265 * if http://127.0.0.1:1025/dav/litmus/lockme is locked with
1266 * opaquelocktoken:2165478d-0611-49c4-be92-e790d68a38f1, go on
1268 * X-Litmus: locks: 16 (fail_cond_put)
1269 * If: (<DAV:no-lock> ["-1622396671"])
1270 * - untagged:
1271 * go on if the resource has the etag [...] and the lock
1273 if (NULL != (ds = (data_string *)array_get_element(con->request.headers, "If"))) {
1274 /* Ooh, ooh. A if tag, now the fun begins.
1276 * this can only work with a real parser
1278 } else {
1279 /* we didn't provided a lock-token -> */
1280 /* if the resource is locked -> 423 */
1282 sqlite3_stmt *stmt = hctx->conf.stmt_read_lock_by_uri;
1284 sqlite3_reset(stmt);
1286 sqlite3_bind_text(stmt, 1,
1287 CONST_BUF_LEN(uri),
1288 SQLITE_TRANSIENT);
1290 while (SQLITE_ROW == sqlite3_step(stmt)) {
1291 has_lock = 0;
1294 #else
1295 UNUSED(srv);
1296 UNUSED(con);
1297 UNUSED(hctx);
1298 UNUSED(uri);
1299 #endif
1301 return has_lock;
1305 SUBREQUEST_FUNC(mod_webdav_subrequest_handler_huge) {
1306 plugin_data *p = p_d;
1307 handler_ctx *hctx = con->plugin_ctx[p->id];
1308 buffer *b;
1309 DIR *dir;
1310 data_string *ds;
1311 int depth = -1; /* (Depth: infinity) */
1312 struct stat st;
1313 buffer *prop_200;
1314 buffer *prop_404;
1315 webdav_properties *req_props;
1316 stat_cache_entry *sce = NULL;
1318 UNUSED(srv);
1320 if (NULL == hctx) return HANDLER_GO_ON;
1321 if (!hctx->conf.enabled) return HANDLER_GO_ON;
1322 /* physical path is setup */
1323 if (buffer_is_empty(con->physical.path)) return HANDLER_GO_ON;
1325 /* PROPFIND need them */
1326 if (NULL != (ds = (data_string *)array_get_element(con->request.headers, "Depth")) && 1 == buffer_string_length(ds->value)) {
1327 if ('0' == *ds->value->ptr) {
1328 depth = 0;
1329 } else if ('1' == *ds->value->ptr) {
1330 depth = 1;
1332 } /* else treat as Depth: infinity */
1334 switch (con->request.http_method) {
1335 case HTTP_METHOD_PROPFIND:
1336 /* they want to know the properties of the directory */
1337 req_props = NULL;
1339 /* is there a content-body ? */
1341 switch (stat_cache_get_entry(srv, con, con->physical.path, &sce)) {
1342 case HANDLER_ERROR:
1343 if (errno == ENOENT) {
1344 con->http_status = 404;
1345 return HANDLER_FINISHED;
1347 break;
1348 default:
1349 break;
1352 if (S_ISDIR(sce->st.st_mode) && con->physical.path->ptr[buffer_string_length(con->physical.path)-1] != '/') {
1353 http_response_redirect_to_directory(srv, con);
1354 return HANDLER_FINISHED;
1357 #ifdef USE_PROPPATCH
1358 /* any special requests or just allprop ? */
1359 if (con->request.content_length) {
1360 xmlDocPtr xml;
1362 if (con->state == CON_STATE_READ_POST) {
1363 handler_t r = connection_handle_read_post_state(srv, con);
1364 if (r != HANDLER_GO_ON) return r;
1367 if (1 == webdav_parse_chunkqueue(srv, con, hctx, con->request_content_queue, &xml)) {
1368 xmlNode *rootnode = xmlDocGetRootElement(xml);
1370 force_assert(rootnode);
1372 if (0 == xmlStrcmp(rootnode->name, BAD_CAST "propfind")) {
1373 xmlNode *cmd;
1375 req_props = calloc(1, sizeof(*req_props));
1377 for (cmd = rootnode->children; cmd; cmd = cmd->next) {
1379 if (0 == xmlStrcmp(cmd->name, BAD_CAST "prop")) {
1380 /* get prop by name */
1381 xmlNode *prop;
1383 for (prop = cmd->children; prop; prop = prop->next) {
1384 if (prop->type == XML_TEXT_NODE) continue; /* ignore WS */
1386 if (prop->ns &&
1387 (0 == xmlStrcmp(prop->ns->href, BAD_CAST "")) &&
1388 (0 != xmlStrcmp(prop->ns->prefix, BAD_CAST ""))) {
1389 size_t i;
1390 log_error_write(srv, __FILE__, __LINE__, "ss",
1391 "no name space for:",
1392 prop->name);
1394 xmlFreeDoc(xml);
1396 for (i = 0; i < req_props->used; i++) {
1397 free(req_props->ptr[i]->ns);
1398 free(req_props->ptr[i]->prop);
1399 free(req_props->ptr[i]);
1401 free(req_props->ptr);
1402 free(req_props);
1404 con->http_status = 400;
1405 return HANDLER_FINISHED;
1408 /* add property to requested list */
1409 if (req_props->size == 0) {
1410 req_props->size = 16;
1411 req_props->ptr = malloc(sizeof(*(req_props->ptr)) * req_props->size);
1412 } else if (req_props->used == req_props->size) {
1413 req_props->size += 16;
1414 req_props->ptr = realloc(req_props->ptr, sizeof(*(req_props->ptr)) * req_props->size);
1417 req_props->ptr[req_props->used] = malloc(sizeof(webdav_property));
1418 req_props->ptr[req_props->used]->ns = (char *)xmlStrdup(prop->ns ? prop->ns->href : (xmlChar *)"");
1419 req_props->ptr[req_props->used]->prop = (char *)xmlStrdup(prop->name);
1420 req_props->used++;
1422 } else if (0 == xmlStrcmp(cmd->name, BAD_CAST "propname")) {
1423 sqlite3_stmt *stmt = p->conf.stmt_select_propnames;
1425 if (stmt) {
1426 /* get all property names (EMPTY) */
1427 sqlite3_reset(stmt);
1428 /* bind the values to the insert */
1430 sqlite3_bind_text(stmt, 1,
1431 CONST_BUF_LEN(con->uri.path),
1432 SQLITE_TRANSIENT);
1434 if (SQLITE_DONE != sqlite3_step(stmt)) {
1437 } else if (0 == xmlStrcmp(cmd->name, BAD_CAST "allprop")) {
1438 /* get all properties (EMPTY) */
1443 xmlFreeDoc(xml);
1444 } else {
1445 con->http_status = 400;
1446 return HANDLER_FINISHED;
1449 #endif
1450 con->http_status = 207;
1452 response_header_overwrite(srv, con, CONST_STR_LEN("Content-Type"), CONST_STR_LEN("text/xml; charset=\"utf-8\""));
1454 b = buffer_init();
1456 buffer_copy_string_len(b, CONST_STR_LEN("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"));
1458 buffer_append_string_len(b,CONST_STR_LEN("<D:multistatus xmlns:D=\"DAV:\" xmlns:ns0=\"urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/\">\n"));
1460 /* allprop */
1462 prop_200 = buffer_init();
1463 prop_404 = buffer_init();
1466 /* Depth: 0 or Depth: 1 */
1467 webdav_get_props(srv, con, hctx, &(con->physical), req_props, prop_200, prop_404);
1469 buffer_append_string_len(b,CONST_STR_LEN("<D:response>\n"));
1470 buffer_append_string_len(b,CONST_STR_LEN("<D:href>"));
1471 buffer_append_string_buffer(b, con->uri.scheme);
1472 buffer_append_string_len(b,CONST_STR_LEN("://"));
1473 buffer_append_string_buffer(b, con->uri.authority);
1474 buffer_append_string_encoded(b, CONST_BUF_LEN(con->uri.path), ENCODING_REL_URI);
1475 buffer_append_string_len(b,CONST_STR_LEN("</D:href>\n"));
1477 if (!buffer_string_is_empty(prop_200)) {
1478 buffer_append_string_len(b,CONST_STR_LEN("<D:propstat>\n"));
1479 buffer_append_string_len(b,CONST_STR_LEN("<D:prop>\n"));
1481 buffer_append_string_buffer(b, prop_200);
1483 buffer_append_string_len(b,CONST_STR_LEN("</D:prop>\n"));
1485 buffer_append_string_len(b,CONST_STR_LEN("<D:status>HTTP/1.1 200 OK</D:status>\n"));
1487 buffer_append_string_len(b,CONST_STR_LEN("</D:propstat>\n"));
1489 if (!buffer_string_is_empty(prop_404)) {
1490 buffer_append_string_len(b,CONST_STR_LEN("<D:propstat>\n"));
1491 buffer_append_string_len(b,CONST_STR_LEN("<D:prop>\n"));
1493 buffer_append_string_buffer(b, prop_404);
1495 buffer_append_string_len(b,CONST_STR_LEN("</D:prop>\n"));
1497 buffer_append_string_len(b,CONST_STR_LEN("<D:status>HTTP/1.1 404 Not Found</D:status>\n"));
1499 buffer_append_string_len(b,CONST_STR_LEN("</D:propstat>\n"));
1502 buffer_append_string_len(b,CONST_STR_LEN("</D:response>\n"));
1505 if (depth == 1) {
1507 if (NULL != (dir = opendir(con->physical.path->ptr))) {
1508 struct dirent *de;
1509 physical d;
1510 physical *dst = &(con->physical);
1512 d.path = buffer_init();
1513 d.rel_path = buffer_init();
1515 while(NULL != (de = readdir(dir))) {
1516 if (de->d_name[0] == '.' && (de->d_name[1] == '\0' || (de->d_name[1] == '.' && de->d_name[2] == '\0'))) {
1517 continue;
1518 /* ignore the parent and target dir */
1521 buffer_copy_buffer(d.path, dst->path);
1522 buffer_append_slash(d.path);
1524 buffer_copy_buffer(d.rel_path, dst->rel_path);
1525 buffer_append_slash(d.rel_path);
1527 buffer_append_string(d.path, de->d_name);
1528 buffer_append_string(d.rel_path, de->d_name);
1530 buffer_reset(prop_200);
1531 buffer_reset(prop_404);
1533 webdav_get_props(srv, con, hctx, &d, req_props, prop_200, prop_404);
1535 buffer_append_string_len(b,CONST_STR_LEN("<D:response>\n"));
1536 buffer_append_string_len(b,CONST_STR_LEN("<D:href>"));
1537 buffer_append_string_buffer(b, con->uri.scheme);
1538 buffer_append_string_len(b,CONST_STR_LEN("://"));
1539 buffer_append_string_buffer(b, con->uri.authority);
1540 buffer_append_string_encoded(b, CONST_BUF_LEN(d.rel_path), ENCODING_REL_URI);
1541 if (0 == stat(d.path->ptr, &st) && S_ISDIR(st.st_mode)) {
1542 /* Append a '/' on subdirectories */
1543 buffer_append_string_len(b,CONST_STR_LEN("/"));
1545 buffer_append_string_len(b,CONST_STR_LEN("</D:href>\n"));
1547 if (!buffer_string_is_empty(prop_200)) {
1548 buffer_append_string_len(b,CONST_STR_LEN("<D:propstat>\n"));
1549 buffer_append_string_len(b,CONST_STR_LEN("<D:prop>\n"));
1551 buffer_append_string_buffer(b, prop_200);
1553 buffer_append_string_len(b,CONST_STR_LEN("</D:prop>\n"));
1555 buffer_append_string_len(b,CONST_STR_LEN("<D:status>HTTP/1.1 200 OK</D:status>\n"));
1557 buffer_append_string_len(b,CONST_STR_LEN("</D:propstat>\n"));
1559 if (!buffer_string_is_empty(prop_404)) {
1560 buffer_append_string_len(b,CONST_STR_LEN("<D:propstat>\n"));
1561 buffer_append_string_len(b,CONST_STR_LEN("<D:prop>\n"));
1563 buffer_append_string_buffer(b, prop_404);
1565 buffer_append_string_len(b,CONST_STR_LEN("</D:prop>\n"));
1567 buffer_append_string_len(b,CONST_STR_LEN("<D:status>HTTP/1.1 404 Not Found</D:status>\n"));
1569 buffer_append_string_len(b,CONST_STR_LEN("</D:propstat>\n"));
1572 buffer_append_string_len(b,CONST_STR_LEN("</D:response>\n"));
1574 closedir(dir);
1575 buffer_free(d.path);
1576 buffer_free(d.rel_path);
1581 if (req_props) {
1582 size_t i;
1583 for (i = 0; i < req_props->used; i++) {
1584 free(req_props->ptr[i]->ns);
1585 free(req_props->ptr[i]->prop);
1586 free(req_props->ptr[i]);
1588 free(req_props->ptr);
1589 free(req_props);
1592 buffer_free(prop_200);
1593 buffer_free(prop_404);
1595 buffer_append_string_len(b,CONST_STR_LEN("</D:multistatus>\n"));
1597 if (p->conf.log_xml) {
1598 log_error_write(srv, __FILE__, __LINE__, "sb", "XML-response-body:", b);
1601 chunkqueue_append_buffer(con->write_queue, b);
1602 buffer_free(b);
1604 con->file_finished = 1;
1606 return HANDLER_FINISHED;
1607 case HTTP_METHOD_MKCOL:
1608 if (p->conf.is_readonly) {
1609 con->http_status = 403;
1610 return HANDLER_FINISHED;
1613 if (con->request.content_length != 0) {
1614 /* we don't support MKCOL with a body */
1615 con->http_status = 415;
1617 return HANDLER_FINISHED;
1620 /* let's create the directory */
1622 if (-1 == mkdir(con->physical.path->ptr, WEBDAV_DIR_MODE)) {
1623 switch(errno) {
1624 case EPERM:
1625 con->http_status = 403;
1626 break;
1627 case ENOENT:
1628 case ENOTDIR:
1629 con->http_status = 409;
1630 break;
1631 case EEXIST:
1632 default:
1633 con->http_status = 405; /* not allowed */
1634 break;
1636 } else {
1637 con->http_status = 201;
1638 con->file_finished = 1;
1641 return HANDLER_FINISHED;
1642 case HTTP_METHOD_DELETE:
1643 if (p->conf.is_readonly) {
1644 con->http_status = 403;
1645 return HANDLER_FINISHED;
1648 /* does the client have a lock for this connection ? */
1649 if (!webdav_has_lock(srv, con, hctx, con->uri.path)) {
1650 con->http_status = 423;
1651 return HANDLER_FINISHED;
1654 /* stat and unlink afterwards */
1655 if (-1 == stat(con->physical.path->ptr, &st)) {
1656 /* don't about it yet, unlink will fail too */
1657 switch(errno) {
1658 case ENOENT:
1659 con->http_status = 404;
1660 break;
1661 default:
1662 con->http_status = 403;
1663 break;
1665 } else if (S_ISDIR(st.st_mode)) {
1666 buffer *multi_status_resp;
1668 if (con->physical.path->ptr[buffer_string_length(con->physical.path)-1] != '/') {
1669 http_response_redirect_to_directory(srv, con);
1670 return HANDLER_FINISHED;
1673 multi_status_resp = buffer_init();
1675 if (webdav_delete_dir(srv, con, hctx, &(con->physical), multi_status_resp)) {
1676 /* we got an error somewhere in between, build a 207 */
1677 response_header_overwrite(srv, con, CONST_STR_LEN("Content-Type"), CONST_STR_LEN("text/xml; charset=\"utf-8\""));
1679 b = buffer_init();
1681 buffer_copy_string_len(b, CONST_STR_LEN("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"));
1683 buffer_append_string_len(b,CONST_STR_LEN("<D:multistatus xmlns:D=\"DAV:\">\n"));
1685 buffer_append_string_buffer(b, multi_status_resp);
1687 buffer_append_string_len(b,CONST_STR_LEN("</D:multistatus>\n"));
1689 if (p->conf.log_xml) {
1690 log_error_write(srv, __FILE__, __LINE__, "sb", "XML-response-body:", b);
1693 chunkqueue_append_buffer(con->write_queue, b);
1694 buffer_free(b);
1696 con->http_status = 207;
1697 con->file_finished = 1;
1698 } else {
1699 /* everything went fine, remove the directory */
1701 if (-1 == rmdir(con->physical.path->ptr)) {
1702 switch(errno) {
1703 case EPERM:
1704 con->http_status = 403;
1705 break;
1706 case ENOENT:
1707 con->http_status = 404;
1708 break;
1709 default:
1710 con->http_status = 501;
1711 break;
1713 } else {
1714 con->http_status = 204;
1718 buffer_free(multi_status_resp);
1719 } else if (-1 == unlink(con->physical.path->ptr)) {
1720 switch(errno) {
1721 case EPERM:
1722 con->http_status = 403;
1723 break;
1724 case ENOENT:
1725 con->http_status = 404;
1726 break;
1727 default:
1728 con->http_status = 501;
1729 break;
1731 } else {
1732 con->http_status = 204;
1734 return HANDLER_FINISHED;
1735 case HTTP_METHOD_PUT: {
1736 int fd;
1737 chunkqueue *cq = con->request_content_queue;
1738 chunk *c;
1739 data_string *ds_range;
1741 if (p->conf.is_readonly) {
1742 con->http_status = 403;
1743 return HANDLER_FINISHED;
1746 /* is a exclusive lock set on the source */
1747 /* (check for lock once before potentially reading large input) */
1748 if (0 == cq->bytes_in && !webdav_has_lock(srv, con, hctx, con->uri.path)) {
1749 con->http_status = 423;
1750 return HANDLER_FINISHED;
1753 if (con->state == CON_STATE_READ_POST) {
1754 handler_t r = connection_handle_read_post_state(srv, con);
1755 if (r != HANDLER_GO_ON) return r;
1758 /* RFC2616 Section 9.6 PUT requires us to send 501 on all Content-* we don't support
1759 * - most important Content-Range
1762 * Example: Content-Range: bytes 100-1037/1038 */
1764 if (NULL != (ds_range = (data_string *)array_get_element(con->request.headers, "Content-Range"))) {
1765 const char *num = ds_range->value->ptr;
1766 off_t offset;
1767 char *err = NULL;
1769 if (0 != strncmp(num, "bytes ", 6)) {
1770 con->http_status = 501; /* not implemented */
1772 return HANDLER_FINISHED;
1775 /* we only support <num>- ... */
1777 num += 6;
1779 /* skip WS */
1780 while (*num == ' ' || *num == '\t') num++;
1782 if (*num == '\0') {
1783 con->http_status = 501; /* not implemented */
1785 return HANDLER_FINISHED;
1788 offset = strtoll(num, &err, 10);
1790 if (*err != '-' || offset < 0) {
1791 con->http_status = 501; /* not implemented */
1793 return HANDLER_FINISHED;
1796 if (-1 == (fd = open(con->physical.path->ptr, O_WRONLY, WEBDAV_FILE_MODE))) {
1797 switch (errno) {
1798 case ENOENT:
1799 con->http_status = 404; /* not found */
1800 break;
1801 default:
1802 con->http_status = 403; /* not found */
1803 break;
1805 return HANDLER_FINISHED;
1808 if (-1 == lseek(fd, offset, SEEK_SET)) {
1809 con->http_status = 501; /* not implemented */
1811 close(fd);
1813 return HANDLER_FINISHED;
1815 con->http_status = 200; /* modified */
1816 } else {
1817 /* take what we have in the request-body and write it to a file */
1819 /* if the file doesn't exist, create it */
1820 if (-1 == (fd = open(con->physical.path->ptr, O_WRONLY|O_TRUNC, WEBDAV_FILE_MODE))) {
1821 if (errno != ENOENT ||
1822 -1 == (fd = open(con->physical.path->ptr, O_WRONLY|O_CREAT|O_TRUNC|O_EXCL, WEBDAV_FILE_MODE))) {
1823 /* we can't open the file */
1824 con->http_status = 403;
1826 return HANDLER_FINISHED;
1827 } else {
1828 con->http_status = 201; /* created */
1830 } else {
1831 con->http_status = 200; /* modified */
1835 con->file_finished = 1;
1837 for (c = cq->first; c; c = cq->first) {
1838 int r = 0;
1839 int mapped;
1840 void *data;
1841 size_t dlen;
1843 /* copy all chunks */
1844 switch(c->type) {
1845 case FILE_CHUNK:
1847 mapped = (c->file.mmap.start != MAP_FAILED);
1848 dlen = c->file.length - c->offset;
1849 if (mapped) {
1850 data = c->file.mmap.start + c->offset;
1851 } else {
1852 if (-1 == c->file.fd && /* open the file if not already open */
1853 -1 == (c->file.fd = open(c->file.name->ptr, O_RDONLY))) {
1854 log_error_write(srv, __FILE__, __LINE__, "ss", "open failed: ", strerror(errno));
1855 close(fd);
1856 return HANDLER_ERROR;
1859 if (MAP_FAILED != (c->file.mmap.start = mmap(NULL, c->file.length, PROT_READ, MAP_PRIVATE, c->file.fd, 0))) {
1860 /* chunk_reset() or chunk_free() will cleanup for us */
1861 c->file.mmap.length = c->file.length;
1862 data = c->file.mmap.start + c->offset;
1863 mapped = 1;
1864 } else {
1865 ssize_t rd;
1866 if (dlen > 65536) dlen = 65536;
1867 data = malloc(dlen);
1868 force_assert(data);
1869 if (-1 == lseek(c->file.fd, c->file.start + c->offset, SEEK_SET)
1870 || 0 > (rd = read(c->file.fd, data, dlen))) {
1871 log_error_write(srv, __FILE__, __LINE__, "ssbd", "lseek/read failed: ",
1872 strerror(errno), c->file.name, c->file.fd);
1873 free(data);
1874 close(fd);
1875 return HANDLER_ERROR;
1877 dlen = (size_t)rd;
1882 if ((r = write(fd, data, dlen)) < 0) {
1883 switch(errno) {
1884 case ENOSPC:
1885 con->http_status = 507;
1887 break;
1888 default:
1889 con->http_status = 403;
1890 break;
1894 if (!mapped) free(data);
1895 break;
1896 case MEM_CHUNK:
1897 if ((r = write(fd, c->mem->ptr + c->offset, buffer_string_length(c->mem) - c->offset)) < 0) {
1898 switch(errno) {
1899 case ENOSPC:
1900 con->http_status = 507;
1902 break;
1903 default:
1904 con->http_status = 403;
1905 break;
1908 break;
1911 if (r > 0) {
1912 chunkqueue_mark_written(cq, r);
1913 } else {
1914 break;
1917 if (0 != close(fd)) {
1918 log_error_write(srv, __FILE__, __LINE__, "sbss",
1919 "close ", con->physical.path, "failed: ", strerror(errno));
1920 return HANDLER_ERROR;
1923 return HANDLER_FINISHED;
1925 case HTTP_METHOD_MOVE:
1926 case HTTP_METHOD_COPY: {
1927 buffer *destination = NULL;
1928 char *sep, *sep2, *start;
1929 int overwrite = 1;
1931 if (p->conf.is_readonly) {
1932 con->http_status = 403;
1933 return HANDLER_FINISHED;
1936 /* is a exclusive lock set on the source */
1937 if (con->request.http_method == HTTP_METHOD_MOVE) {
1938 if (!webdav_has_lock(srv, con, hctx, con->uri.path)) {
1939 con->http_status = 423;
1940 return HANDLER_FINISHED;
1944 if (NULL != (ds = (data_string *)array_get_element(con->request.headers, "Destination"))) {
1945 destination = ds->value;
1946 } else {
1947 con->http_status = 400;
1948 return HANDLER_FINISHED;
1951 if (NULL != (ds = (data_string *)array_get_element(con->request.headers, "Overwrite"))) {
1952 if (buffer_string_length(ds->value) != 1 ||
1953 (ds->value->ptr[0] != 'F' &&
1954 ds->value->ptr[0] != 'T') ) {
1955 con->http_status = 400;
1956 return HANDLER_FINISHED;
1958 overwrite = (ds->value->ptr[0] == 'F' ? 0 : 1);
1960 /* let's parse the Destination
1962 * http://127.0.0.1:1025/dav/litmus/copydest
1964 * - host has to be the same as the Host: header we got
1965 * - we have to stay inside the document root
1966 * - the query string is thrown away
1967 * */
1969 buffer_reset(p->uri.scheme);
1970 buffer_reset(p->uri.path_raw);
1971 buffer_reset(p->uri.authority);
1973 start = destination->ptr;
1975 if (NULL == (sep = strstr(start, "://"))) {
1976 con->http_status = 400;
1977 return HANDLER_FINISHED;
1979 buffer_copy_string_len(p->uri.scheme, start, sep - start);
1981 start = sep + 3;
1983 if (NULL == (sep = strchr(start, '/'))) {
1984 con->http_status = 400;
1985 return HANDLER_FINISHED;
1987 if (NULL != (sep2 = memchr(start, '@', sep - start))) {
1988 /* skip login information */
1989 start = sep2 + 1;
1991 buffer_copy_string_len(p->uri.authority, start, sep - start);
1993 start = sep + 1;
1995 if (NULL == (sep = strchr(start, '?'))) {
1996 /* no query string, good */
1997 buffer_copy_string(p->uri.path_raw, start);
1998 } else {
1999 buffer_copy_string_len(p->uri.path_raw, start, sep - start);
2002 if (!buffer_is_equal(p->uri.authority, con->uri.authority)) {
2003 /* not the same host */
2004 con->http_status = 502;
2005 return HANDLER_FINISHED;
2008 buffer_copy_buffer(p->tmp_buf, p->uri.path_raw);
2009 buffer_urldecode_path(p->tmp_buf);
2010 buffer_path_simplify(p->uri.path, p->tmp_buf);
2012 /* we now have a URI which is clean. transform it into a physical path */
2013 buffer_copy_buffer(p->physical.doc_root, con->physical.doc_root);
2014 buffer_copy_buffer(p->physical.rel_path, p->uri.path);
2016 if (con->conf.force_lowercase_filenames) {
2017 buffer_to_lower(p->physical.rel_path);
2020 /* Destination physical path
2021 * src con->physical.path might have been remapped with mod_alias.
2022 * (but mod_alias does not modify con->physical.rel_path)
2023 * Find matching prefix to support use of mod_alias to remap webdav root.
2024 * Aliasing of paths underneath the webdav root might not work.
2025 * Likewise, mod_rewrite URL rewriting might thwart this comparison.
2026 * Use mod_redirect instead of mod_alias to remap paths *under* webdav root.
2027 * Use mod_redirect instead of mod_rewrite on *any* parts of path to webdav.
2028 * (Related, use mod_auth to protect webdav root, but avoid attempting to
2029 * use mod_auth on paths underneath webdav root, as Destination is not
2030 * validated with mod_auth)
2032 * tl;dr: webdav paths and webdav properties are managed by mod_webdav,
2033 * so do not modify paths externally or else undefined behavior
2034 * or corruption may occur
2037 /* find matching URI prefix
2038 * check if remaining con->physical.rel_path matches suffix
2039 * of con->physical.basedir so that we can use it to
2040 * remap Destination physical path */
2041 size_t i, remain;
2042 sep = con->uri.path->ptr;
2043 sep2 = p->uri.path->ptr;
2044 for (i = 0; sep[i] && sep[i] == sep2[i]; ++i) ;
2045 if (sep[i] == '\0' && (sep2[i] == '\0' || sep2[i] == '/' || (i > 0 && sep[i-1] == '/'))) {
2046 /* src and dst URI match or dst is nested inside src; invalid COPY or MOVE */
2047 con->http_status = 403;
2048 return HANDLER_FINISHED;
2050 while (i != 0 && sep[--i] != '/') ; /* find matching directory path */
2051 remain = buffer_string_length(con->uri.path) - i;
2052 if (!con->conf.force_lowercase_filenames
2053 ? buffer_is_equal_right_len(con->physical.path, con->physical.rel_path, remain)
2054 :(buffer_string_length(con->physical.path) >= remain
2055 && 0 == strncasecmp(con->physical.path->ptr+buffer_string_length(con->physical.path)-remain, con->physical.rel_path->ptr+i, remain))) {
2056 /* (at this point, p->physical.rel_path is identical to (or lowercased version of) p->uri.path) */
2057 buffer_copy_string_len(p->physical.path, con->physical.path->ptr, buffer_string_length(con->physical.path)-remain);
2058 buffer_append_string_len(p->physical.path, p->physical.rel_path->ptr+i, buffer_string_length(p->physical.rel_path)-i);
2060 buffer_copy_buffer(p->physical.basedir, con->physical.basedir);
2061 buffer_append_slash(p->physical.basedir);
2062 } else {
2063 /* unable to perform physical path remap here;
2064 * assume doc_root/rel_path and no remapping */
2065 buffer_copy_buffer(p->physical.path, p->physical.doc_root);
2066 buffer_append_slash(p->physical.path);
2067 buffer_copy_buffer(p->physical.basedir, p->physical.path);
2069 /* don't add a second / */
2070 if (p->physical.rel_path->ptr[0] == '/') {
2071 buffer_append_string_len(p->physical.path, p->physical.rel_path->ptr + 1, buffer_string_length(p->physical.rel_path) - 1);
2072 } else {
2073 buffer_append_string_buffer(p->physical.path, p->physical.rel_path);
2078 /* let's see if the source is a directory
2079 * if yes, we fail with 501 */
2081 if (-1 == stat(con->physical.path->ptr, &st)) {
2082 /* don't about it yet, unlink will fail too */
2083 switch(errno) {
2084 case ENOENT:
2085 con->http_status = 404;
2086 break;
2087 default:
2088 con->http_status = 403;
2089 break;
2091 } else if (S_ISDIR(st.st_mode)) {
2092 int r;
2093 int created = 0;
2094 /* src is a directory */
2096 if (con->physical.path->ptr[buffer_string_length(con->physical.path)-1] != '/') {
2097 http_response_redirect_to_directory(srv, con);
2098 return HANDLER_FINISHED;
2101 if (-1 == stat(p->physical.path->ptr, &st)) {
2102 if (-1 == mkdir(p->physical.path->ptr, WEBDAV_DIR_MODE)) {
2103 con->http_status = 403;
2104 return HANDLER_FINISHED;
2106 created = 1;
2107 } else if (!S_ISDIR(st.st_mode)) {
2108 if (overwrite == 0) {
2109 /* copying into a non-dir ? */
2110 con->http_status = 409;
2111 return HANDLER_FINISHED;
2112 } else {
2113 unlink(p->physical.path->ptr);
2114 if (-1 == mkdir(p->physical.path->ptr, WEBDAV_DIR_MODE)) {
2115 con->http_status = 403;
2116 return HANDLER_FINISHED;
2118 created = 1;
2122 /* copy the content of src to dest */
2123 if (0 != (r = webdav_copy_dir(srv, con, hctx, &(con->physical), &(p->physical), overwrite))) {
2124 con->http_status = r;
2125 return HANDLER_FINISHED;
2127 if (con->request.http_method == HTTP_METHOD_MOVE) {
2128 b = buffer_init();
2129 webdav_delete_dir(srv, con, hctx, &(con->physical), b); /* content */
2130 buffer_free(b);
2132 rmdir(con->physical.path->ptr);
2134 con->http_status = created ? 201 : 204;
2135 con->file_finished = 1;
2136 } else {
2137 /* it is just a file, good */
2138 int r;
2139 int destdir = 0;
2141 /* does the client have a lock for this connection ? */
2142 if (!webdav_has_lock(srv, con, hctx, p->uri.path)) {
2143 con->http_status = 423;
2144 return HANDLER_FINISHED;
2147 /* destination exists */
2148 if (0 == (r = stat(p->physical.path->ptr, &st))) {
2149 if (S_ISDIR(st.st_mode)) {
2150 /* file to dir/
2151 * append basename to physical path */
2152 destdir = 1;
2154 if (NULL != (sep = strrchr(con->physical.path->ptr, '/'))) {
2155 buffer_append_string(p->physical.path, sep);
2156 r = stat(p->physical.path->ptr, &st);
2161 if (-1 == r) {
2162 con->http_status = destdir ? 204 : 201; /* we will create a new one */
2163 con->file_finished = 1;
2165 switch(errno) {
2166 case ENOTDIR:
2167 con->http_status = 409;
2168 return HANDLER_FINISHED;
2170 } else if (overwrite == 0) {
2171 /* destination exists, but overwrite is not set */
2172 con->http_status = 412;
2173 return HANDLER_FINISHED;
2174 } else {
2175 con->http_status = 204; /* resource already existed */
2178 if (con->request.http_method == HTTP_METHOD_MOVE) {
2179 /* try a rename */
2181 if (0 == rename(con->physical.path->ptr, p->physical.path->ptr)) {
2182 #ifdef USE_PROPPATCH
2183 sqlite3_stmt *stmt;
2185 stmt = p->conf.stmt_move_uri;
2186 if (stmt) {
2188 sqlite3_reset(stmt);
2190 /* bind the values to the insert */
2191 sqlite3_bind_text(stmt, 1,
2192 CONST_BUF_LEN(p->uri.path),
2193 SQLITE_TRANSIENT);
2195 sqlite3_bind_text(stmt, 2,
2196 CONST_BUF_LEN(con->uri.path),
2197 SQLITE_TRANSIENT);
2199 if (SQLITE_DONE != sqlite3_step(stmt)) {
2200 log_error_write(srv, __FILE__, __LINE__, "ss", "sql-move failed:", sqlite3_errmsg(p->conf.sql));
2203 #endif
2204 return HANDLER_FINISHED;
2207 /* rename failed, fall back to COPY + DELETE */
2210 if (0 != (r = webdav_copy_file(srv, con, hctx, &(con->physical), &(p->physical), overwrite))) {
2211 con->http_status = r;
2213 return HANDLER_FINISHED;
2216 if (con->request.http_method == HTTP_METHOD_MOVE) {
2217 b = buffer_init();
2218 webdav_delete_file(srv, con, hctx, &(con->physical), b);
2219 buffer_free(b);
2223 return HANDLER_FINISHED;
2225 case HTTP_METHOD_PROPPATCH:
2226 if (p->conf.is_readonly) {
2227 con->http_status = 403;
2228 return HANDLER_FINISHED;
2231 if (!webdav_has_lock(srv, con, hctx, con->uri.path)) {
2232 con->http_status = 423;
2233 return HANDLER_FINISHED;
2236 /* check if destination exists */
2237 if (-1 == stat(con->physical.path->ptr, &st)) {
2238 switch(errno) {
2239 case ENOENT:
2240 con->http_status = 404;
2241 break;
2245 if (S_ISDIR(st.st_mode) && con->physical.path->ptr[buffer_string_length(con->physical.path)-1] != '/') {
2246 http_response_redirect_to_directory(srv, con);
2247 return HANDLER_FINISHED;
2250 #ifdef USE_PROPPATCH
2251 if (con->request.content_length) {
2252 xmlDocPtr xml;
2254 if (con->state == CON_STATE_READ_POST) {
2255 handler_t r = connection_handle_read_post_state(srv, con);
2256 if (r != HANDLER_GO_ON) return r;
2259 if (1 == webdav_parse_chunkqueue(srv, con, hctx, con->request_content_queue, &xml)) {
2260 xmlNode *rootnode = xmlDocGetRootElement(xml);
2262 if (0 == xmlStrcmp(rootnode->name, BAD_CAST "propertyupdate")) {
2263 xmlNode *cmd;
2264 char *err = NULL;
2265 int empty_ns = 0; /* send 400 on a empty namespace attribute */
2267 /* start response */
2269 if (SQLITE_OK != sqlite3_exec(p->conf.sql, "BEGIN TRANSACTION", NULL, NULL, &err)) {
2270 log_error_write(srv, __FILE__, __LINE__, "ss", "can't open transaction:", err);
2271 sqlite3_free(err);
2273 goto propmatch_cleanup;
2276 /* a UPDATE request, we know 'set' and 'remove' */
2277 for (cmd = rootnode->children; cmd; cmd = cmd->next) {
2278 xmlNode *props;
2279 /* either set or remove */
2281 if ((0 == xmlStrcmp(cmd->name, BAD_CAST "set")) ||
2282 (0 == xmlStrcmp(cmd->name, BAD_CAST "remove"))) {
2284 sqlite3_stmt *stmt;
2286 stmt = (0 == xmlStrcmp(cmd->name, BAD_CAST "remove")) ?
2287 p->conf.stmt_delete_prop : p->conf.stmt_update_prop;
2289 for (props = cmd->children; props; props = props->next) {
2290 if (0 == xmlStrcmp(props->name, BAD_CAST "prop")) {
2291 xmlNode *prop;
2292 char *propval = NULL;
2293 int r;
2295 prop = props->children;
2297 if (prop->ns &&
2298 (0 == xmlStrcmp(prop->ns->href, BAD_CAST "")) &&
2299 (0 != xmlStrcmp(prop->ns->prefix, BAD_CAST ""))) {
2300 log_error_write(srv, __FILE__, __LINE__, "ss",
2301 "no name space for:",
2302 prop->name);
2304 empty_ns = 1;
2305 break;
2308 sqlite3_reset(stmt);
2310 /* bind the values to the insert */
2312 sqlite3_bind_text(stmt, 1,
2313 CONST_BUF_LEN(con->uri.path),
2314 SQLITE_TRANSIENT);
2315 sqlite3_bind_text(stmt, 2,
2316 (char *)prop->name,
2317 strlen((char *)prop->name),
2318 SQLITE_TRANSIENT);
2319 if (prop->ns) {
2320 sqlite3_bind_text(stmt, 3,
2321 (char *)prop->ns->href,
2322 strlen((char *)prop->ns->href),
2323 SQLITE_TRANSIENT);
2324 } else {
2325 sqlite3_bind_text(stmt, 3,
2328 SQLITE_TRANSIENT);
2330 if (stmt == p->conf.stmt_update_prop) {
2331 propval = prop->children
2332 ? (char *)xmlNodeListGetString(xml, prop->children, 0)
2333 : NULL;
2335 sqlite3_bind_text(stmt, 4,
2336 propval ? propval : "",
2337 propval ? strlen(propval) : 0,
2338 SQLITE_TRANSIENT);
2341 if (SQLITE_DONE != (r = sqlite3_step(stmt))) {
2342 log_error_write(srv, __FILE__, __LINE__, "ss",
2343 "sql-set failed:", sqlite3_errmsg(p->conf.sql));
2346 if (propval) xmlFree(propval);
2349 if (empty_ns) break;
2353 if (empty_ns) {
2354 if (SQLITE_OK != sqlite3_exec(p->conf.sql, "ROLLBACK", NULL, NULL, &err)) {
2355 log_error_write(srv, __FILE__, __LINE__, "ss", "can't rollback transaction:", err);
2356 sqlite3_free(err);
2358 goto propmatch_cleanup;
2361 con->http_status = 400;
2362 } else {
2363 if (SQLITE_OK != sqlite3_exec(p->conf.sql, "COMMIT", NULL, NULL, &err)) {
2364 log_error_write(srv, __FILE__, __LINE__, "ss", "can't commit transaction:", err);
2365 sqlite3_free(err);
2367 goto propmatch_cleanup;
2369 con->http_status = 200;
2371 con->file_finished = 1;
2373 xmlFreeDoc(xml);
2374 return HANDLER_FINISHED;
2377 propmatch_cleanup:
2379 xmlFreeDoc(xml);
2380 } else {
2381 con->http_status = 400;
2382 return HANDLER_FINISHED;
2385 #endif
2386 con->http_status = 501;
2387 return HANDLER_FINISHED;
2388 case HTTP_METHOD_LOCK:
2390 * a mac wants to write
2392 * LOCK /dav/expire.txt HTTP/1.1\r\n
2393 * User-Agent: WebDAVFS/1.3 (01308000) Darwin/8.1.0 (Power Macintosh)\r\n
2394 * Accept: * / *\r\n
2395 * Depth: 0\r\n
2396 * Timeout: Second-600\r\n
2397 * Content-Type: text/xml; charset=\"utf-8\"\r\n
2398 * Content-Length: 229\r\n
2399 * Connection: keep-alive\r\n
2400 * Host: 192.168.178.23:1025\r\n
2401 * \r\n
2402 * <?xml version=\"1.0\" encoding=\"utf-8\"?>\n
2403 * <D:lockinfo xmlns:D=\"DAV:\">\n
2404 * <D:lockscope><D:exclusive/></D:lockscope>\n
2405 * <D:locktype><D:write/></D:locktype>\n
2406 * <D:owner>\n
2407 * <D:href>http://www.apple.com/webdav_fs/</D:href>\n
2408 * </D:owner>\n
2409 * </D:lockinfo>\n
2412 if (depth != 0 && depth != -1) {
2413 con->http_status = 400;
2415 return HANDLER_FINISHED;
2418 #ifdef USE_LOCKS
2419 if (con->request.content_length) {
2420 xmlDocPtr xml;
2421 buffer *hdr_if = NULL;
2422 int created = 0;
2424 if (con->state == CON_STATE_READ_POST) {
2425 handler_t r = connection_handle_read_post_state(srv, con);
2426 if (r != HANDLER_GO_ON) return r;
2429 if (NULL != (ds = (data_string *)array_get_element(con->request.headers, "If"))) {
2430 hdr_if = ds->value;
2433 if (0 != stat(con->physical.path->ptr, &st)) {
2434 if (errno == ENOENT) {
2435 int fd = open(con->physical.path->ptr, O_WRONLY|O_CREAT|O_APPEND|O_BINARY|FIFO_NONBLOCK, WEBDAV_FILE_MODE);
2436 if (fd >= 0) {
2437 close(fd);
2438 created = 1;
2439 } else {
2440 log_error_write(srv, __FILE__, __LINE__, "sBss",
2441 "create file", con->physical.path, ":", strerror(errno));
2442 con->http_status = 403; /* Forbidden */
2444 return HANDLER_FINISHED;
2447 } else if (hdr_if == NULL && depth == -1) {
2448 /* we don't support Depth: Infinity on directories */
2449 if (S_ISDIR(st.st_mode)) {
2450 con->http_status = 409; /* Conflict */
2452 return HANDLER_FINISHED;
2456 if (1 == webdav_parse_chunkqueue(srv, con, hctx, con->request_content_queue, &xml)) {
2457 xmlNode *rootnode = xmlDocGetRootElement(xml);
2459 force_assert(rootnode);
2461 if (0 == xmlStrcmp(rootnode->name, BAD_CAST "lockinfo")) {
2462 xmlNode *lockinfo;
2463 const xmlChar *lockscope = NULL, *locktype = NULL; /* TODO: compiler says unused: *owner = NULL; */
2465 for (lockinfo = rootnode->children; lockinfo; lockinfo = lockinfo->next) {
2466 if (0 == xmlStrcmp(lockinfo->name, BAD_CAST "lockscope")) {
2467 xmlNode *value;
2468 for (value = lockinfo->children; value; value = value->next) {
2469 if ((0 == xmlStrcmp(value->name, BAD_CAST "exclusive")) ||
2470 (0 == xmlStrcmp(value->name, BAD_CAST "shared"))) {
2471 lockscope = value->name;
2472 } else {
2473 con->http_status = 400;
2475 xmlFreeDoc(xml);
2476 return HANDLER_FINISHED;
2479 } else if (0 == xmlStrcmp(lockinfo->name, BAD_CAST "locktype")) {
2480 xmlNode *value;
2481 for (value = lockinfo->children; value; value = value->next) {
2482 if ((0 == xmlStrcmp(value->name, BAD_CAST "write"))) {
2483 locktype = value->name;
2484 } else {
2485 con->http_status = 400;
2487 xmlFreeDoc(xml);
2488 return HANDLER_FINISHED;
2492 } else if (0 == xmlStrcmp(lockinfo->name, BAD_CAST "owner")) {
2496 if (lockscope && locktype) {
2497 sqlite3_stmt *stmt = p->conf.stmt_read_lock_by_uri;
2499 /* is this resourse already locked ? */
2501 /* SELECT locktoken, resource, lockscope, locktype, owner, depth, timeout
2502 * FROM locks
2503 * WHERE resource = ? */
2505 if (stmt) {
2507 sqlite3_reset(stmt);
2509 sqlite3_bind_text(stmt, 1,
2510 CONST_BUF_LEN(p->uri.path),
2511 SQLITE_TRANSIENT);
2513 /* it is the PK */
2514 while (SQLITE_ROW == sqlite3_step(stmt)) {
2515 /* we found a lock
2516 * 1. is it compatible ?
2517 * 2. is it ours */
2518 char *sql_lockscope = (char *)sqlite3_column_text(stmt, 2);
2520 if (strcmp(sql_lockscope, "exclusive")) {
2521 con->http_status = 423;
2522 } else if (0 == xmlStrcmp(lockscope, BAD_CAST "exclusive")) {
2523 /* resourse is locked with a shared lock
2524 * client wants exclusive */
2525 con->http_status = 423;
2528 if (con->http_status == 423) {
2529 xmlFreeDoc(xml);
2530 return HANDLER_FINISHED;
2534 stmt = p->conf.stmt_create_lock;
2535 if (stmt) {
2536 /* create a lock-token */
2537 uuid_t id;
2538 char uuid[37] /* 36 + \0 */;
2540 uuid_generate(id);
2541 uuid_unparse(id, uuid);
2543 buffer_copy_string_len(p->tmp_buf, CONST_STR_LEN("opaquelocktoken:"));
2544 buffer_append_string(p->tmp_buf, uuid);
2546 /* "CREATE TABLE locks ("
2547 * " locktoken TEXT NOT NULL,"
2548 * " resource TEXT NOT NULL,"
2549 * " lockscope TEXT NOT NULL,"
2550 * " locktype TEXT NOT NULL,"
2551 * " owner TEXT NOT NULL,"
2552 * " depth INT NOT NULL,"
2555 sqlite3_reset(stmt);
2557 sqlite3_bind_text(stmt, 1,
2558 CONST_BUF_LEN(p->tmp_buf),
2559 SQLITE_TRANSIENT);
2561 sqlite3_bind_text(stmt, 2,
2562 CONST_BUF_LEN(con->uri.path),
2563 SQLITE_TRANSIENT);
2565 sqlite3_bind_text(stmt, 3,
2566 (const char *)lockscope,
2567 xmlStrlen(lockscope),
2568 SQLITE_TRANSIENT);
2570 sqlite3_bind_text(stmt, 4,
2571 (const char *)locktype,
2572 xmlStrlen(locktype),
2573 SQLITE_TRANSIENT);
2575 /* owner */
2576 sqlite3_bind_text(stmt, 5,
2579 SQLITE_TRANSIENT);
2581 /* depth */
2582 sqlite3_bind_int(stmt, 6,
2583 depth);
2586 if (SQLITE_DONE != sqlite3_step(stmt)) {
2587 log_error_write(srv, __FILE__, __LINE__, "ss",
2588 "create lock:", sqlite3_errmsg(p->conf.sql));
2591 /* looks like we survived */
2592 webdav_lockdiscovery(srv, con, p->tmp_buf, (const char *)lockscope, (const char *)locktype, depth);
2594 con->http_status = created ? 201 : 200;
2595 con->file_finished = 1;
2600 xmlFreeDoc(xml);
2601 return HANDLER_FINISHED;
2602 } else {
2603 con->http_status = 400;
2604 return HANDLER_FINISHED;
2606 } else {
2608 if (NULL != (ds = (data_string *)array_get_element(con->request.headers, "If"))) {
2609 buffer *locktoken = ds->value;
2610 sqlite3_stmt *stmt = p->conf.stmt_refresh_lock;
2612 /* remove the < > around the token */
2613 if (buffer_string_length(locktoken) < 5) {
2614 con->http_status = 400;
2616 return HANDLER_FINISHED;
2619 buffer_copy_string_len(p->tmp_buf, locktoken->ptr + 2, buffer_string_length(locktoken) - 4);
2621 sqlite3_reset(stmt);
2623 sqlite3_bind_text(stmt, 1,
2624 CONST_BUF_LEN(p->tmp_buf),
2625 SQLITE_TRANSIENT);
2627 if (SQLITE_DONE != sqlite3_step(stmt)) {
2628 log_error_write(srv, __FILE__, __LINE__, "ss",
2629 "refresh lock:", sqlite3_errmsg(p->conf.sql));
2632 webdav_lockdiscovery(srv, con, p->tmp_buf, "exclusive", "write", 0);
2634 con->http_status = 200;
2635 con->file_finished = 1;
2636 return HANDLER_FINISHED;
2637 } else {
2638 /* we need a lock-token to refresh */
2639 con->http_status = 400;
2641 return HANDLER_FINISHED;
2644 break;
2645 #else
2646 con->http_status = 501;
2647 return HANDLER_FINISHED;
2648 #endif
2649 case HTTP_METHOD_UNLOCK:
2650 #ifdef USE_LOCKS
2651 if (NULL != (ds = (data_string *)array_get_element(con->request.headers, "Lock-Token"))) {
2652 buffer *locktoken = ds->value;
2653 sqlite3_stmt *stmt = p->conf.stmt_remove_lock;
2655 /* remove the < > around the token */
2656 if (buffer_string_length(locktoken) < 3) {
2657 con->http_status = 400;
2659 return HANDLER_FINISHED;
2663 * FIXME:
2665 * if the resourse is locked:
2666 * - by us: unlock
2667 * - by someone else: 401
2668 * if the resource is not locked:
2669 * - 412
2670 * */
2672 buffer_copy_string_len(p->tmp_buf, locktoken->ptr + 1, buffer_string_length(locktoken) - 2);
2674 sqlite3_reset(stmt);
2676 sqlite3_bind_text(stmt, 1,
2677 CONST_BUF_LEN(p->tmp_buf),
2678 SQLITE_TRANSIENT);
2680 if (SQLITE_DONE != sqlite3_step(stmt)) {
2681 log_error_write(srv, __FILE__, __LINE__, "ss",
2682 "remove lock:", sqlite3_errmsg(p->conf.sql));
2685 if (0 == sqlite3_changes(p->conf.sql)) {
2686 con->http_status = 401;
2687 } else {
2688 con->http_status = 204;
2690 return HANDLER_FINISHED;
2691 } else {
2692 /* we need a lock-token to unlock */
2693 con->http_status = 400;
2695 return HANDLER_FINISHED;
2697 break;
2698 #else
2699 con->http_status = 501;
2700 return HANDLER_FINISHED;
2701 #endif
2702 default:
2703 break;
2706 /* not found */
2707 return HANDLER_GO_ON;
2711 SUBREQUEST_FUNC(mod_webdav_subrequest_handler) {
2712 handler_t r;
2713 plugin_data *p = p_d;
2714 if (con->mode != p->id) return HANDLER_GO_ON;
2716 r = mod_webdav_subrequest_handler_huge(srv, con, p_d);
2717 if (con->http_status >= 400) con->mode = DIRECT;
2718 return r;
2722 PHYSICALPATH_FUNC(mod_webdav_physical_handler) {
2723 plugin_data *p = p_d;
2724 if (!p->conf.enabled) return HANDLER_GO_ON;
2726 /* physical path is setup */
2727 if (buffer_is_empty(con->physical.path)) return HANDLER_GO_ON;
2729 UNUSED(srv);
2731 switch (con->request.http_method) {
2732 case HTTP_METHOD_PROPFIND:
2733 case HTTP_METHOD_PROPPATCH:
2734 case HTTP_METHOD_PUT:
2735 case HTTP_METHOD_COPY:
2736 case HTTP_METHOD_MOVE:
2737 case HTTP_METHOD_MKCOL:
2738 case HTTP_METHOD_DELETE:
2739 case HTTP_METHOD_LOCK:
2740 case HTTP_METHOD_UNLOCK: {
2741 handler_ctx *hctx = calloc(1, sizeof(*hctx));
2742 memcpy(&hctx->conf, &p->conf, sizeof(plugin_config));
2743 con->plugin_ctx[p->id] = hctx;
2744 con->conf.stream_request_body = 0;
2745 con->mode = p->id;
2746 break;
2748 default:
2749 break;
2752 return HANDLER_GO_ON;
2755 static handler_t mod_webdav_connection_reset(server *srv, connection *con, void *p_d) {
2756 plugin_data *p = p_d;
2757 handler_ctx *hctx = con->plugin_ctx[p->id];
2758 if (hctx) {
2759 free(hctx);
2760 con->plugin_ctx[p->id] = NULL;
2763 UNUSED(srv);
2764 return HANDLER_GO_ON;
2768 /* this function is called at dlopen() time and inits the callbacks */
2770 int mod_webdav_plugin_init(plugin *p);
2771 int mod_webdav_plugin_init(plugin *p) {
2772 p->version = LIGHTTPD_VERSION_ID;
2773 p->name = buffer_init_string("webdav");
2775 p->init = mod_webdav_init;
2776 p->handle_uri_clean = mod_webdav_uri_handler;
2777 p->handle_physical = mod_webdav_physical_handler;
2778 p->handle_subrequest = mod_webdav_subrequest_handler;
2779 p->connection_reset = mod_webdav_connection_reset;
2780 p->set_defaults = mod_webdav_set_defaults;
2781 p->cleanup = mod_webdav_free;
2783 p->data = NULL;
2785 return 0;