home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277271_mod_dav.h < prev    next >
C/C++ Source or Header  |  2004-09-23  |  91KB  |  2,405 lines

  1. /* Copyright 2000-2004 The Apache Software Foundation
  2.  *
  3.  * Licensed under the Apache License, Version 2.0 (the "License");
  4.  * you may not use this file except in compliance with the License.
  5.  * You may obtain a copy of the License at
  6.  *
  7.  *     http://www.apache.org/licenses/LICENSE-2.0
  8.  *
  9.  * Unless required by applicable law or agreed to in writing, software
  10.  * distributed under the License is distributed on an "AS IS" BASIS,
  11.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.  * See the License for the specific language governing permissions and
  13.  * limitations under the License.
  14.  */
  15.  
  16. /*
  17. ** DAV extension module for Apache 2.0.*
  18. */
  19.  
  20. #ifndef _MOD_DAV_H_
  21. #define _MOD_DAV_H_
  22.  
  23. #include "apr_hooks.h"
  24. #include "apr_hash.h"
  25. #include "apr_dbm.h"
  26. #include "apr_tables.h"
  27.  
  28. #include "httpd.h"
  29. #include "util_filter.h"
  30. #include "util_xml.h"
  31.  
  32. #include <limits.h>     /* for INT_MAX */
  33. #include <time.h>       /* for time_t */
  34.  
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38.  
  39.  
  40. #define DAV_VERSION             AP_SERVER_BASEREVISION
  41.  
  42. #define DAV_XML_HEADER          "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
  43. #define DAV_XML_CONTENT_TYPE    "text/xml; charset=\"utf-8\""
  44.  
  45. #define DAV_READ_BLOCKSIZE      2048    /* used for reading input blocks */
  46.  
  47. #define DAV_RESPONSE_BODY_1     "<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\n<html><head>\n<title>"
  48. #define DAV_RESPONSE_BODY_2     "</title>\n</head><body>\n<h1>"
  49. #define DAV_RESPONSE_BODY_3     "</h1>\n<p>"
  50. #define DAV_RESPONSE_BODY_4     "</p>\n"
  51. #define DAV_RESPONSE_BODY_5     "</body></html>\n"
  52.  
  53. #define DAV_DO_COPY             0
  54. #define DAV_DO_MOVE             1
  55.  
  56.  
  57. #if 1
  58. #define DAV_DEBUG        1
  59. #define DEBUG_CR         "\n"
  60. #define DBG0(f)          ap_log_error(APLOG_MARK, \
  61.                                 APLOG_ERR, 0, NULL, (f))
  62. #define DBG1(f,a1)       ap_log_error(APLOG_MARK, \
  63.                                 APLOG_ERR, 0, NULL, f, a1)
  64. #define DBG2(f,a1,a2)    ap_log_error(APLOG_MARK, \
  65.                                 APLOG_ERR, 0, NULL, f, a1, a2)
  66. #define DBG3(f,a1,a2,a3) ap_log_error(APLOG_MARK, \
  67.                                 APLOG_ERR, 0, NULL, f, a1, a2, a3)
  68. #else
  69. #undef DAV_DEBUG
  70. #define DEBUG_CR        ""
  71. #endif
  72.  
  73. #define DAV_INFINITY    INT_MAX    /* for the Depth: header */
  74.  
  75. /* Create a set of DAV_DECLARE(type), DAV_DECLARE_NONSTD(type) and 
  76.  * DAV_DECLARE_DATA with appropriate export and import tags for the platform
  77.  */
  78. #if !defined(WIN32)
  79. #define DAV_DECLARE(type)            type
  80. #define DAV_DECLARE_NONSTD(type)     type
  81. #define DAV_DECLARE_DATA
  82. #elif defined(DAV_DECLARE_STATIC)
  83. #define DAV_DECLARE(type)            type __stdcall
  84. #define DAV_DECLARE_NONSTD(type)     type
  85. #define DAV_DECLARE_DATA
  86. #elif defined(DAV_DECLARE_EXPORT)
  87. #define DAV_DECLARE(type)            __declspec(dllexport) type __stdcall
  88. #define DAV_DECLARE_NONSTD(type)     __declspec(dllexport) type
  89. #define DAV_DECLARE_DATA             __declspec(dllexport)
  90. #else
  91. #define DAV_DECLARE(type)            __declspec(dllimport) type __stdcall
  92. #define DAV_DECLARE_NONSTD(type)     __declspec(dllimport) type
  93. #define DAV_DECLARE_DATA             __declspec(dllimport)
  94. #endif
  95.  
  96. /* --------------------------------------------------------------------
  97. **
  98. ** ERROR MANAGEMENT
  99. */
  100.  
  101. /*
  102. ** dav_error structure.
  103. **
  104. ** In most cases, mod_dav uses a pointer to a dav_error structure. If the
  105. ** pointer is NULL, then no error has occurred.
  106. **
  107. ** In certain cases, a dav_error structure is directly used. In these cases,
  108. ** a status value of 0 means that an error has not occurred.
  109. **
  110. ** Note: this implies that status != 0 whenever an error occurs.
  111. **
  112. ** The desc field is optional (it may be NULL). When NULL, it typically
  113. ** implies that Apache has a proper description for the specified status.
  114. */
  115. typedef struct dav_error {
  116.     int status;                 /* suggested HTTP status (0 for no error) */
  117.     int error_id;               /* DAV-specific error ID */
  118.     const char *desc;           /* DAV:responsedescription and error log */
  119.  
  120.     int save_errno;             /* copy of errno causing the error */
  121.  
  122.     const char *namespace;      /* [optional] namespace of error */
  123.     const char *tagname;        /* name of error-tag */
  124.  
  125.     struct dav_error *prev;     /* previous error (in stack) */
  126.  
  127. } dav_error;
  128.  
  129. /*
  130. ** Create a new error structure. save_errno will be filled with the current
  131. ** errno value.
  132. */
  133. DAV_DECLARE(dav_error*) dav_new_error(apr_pool_t *p, int status, 
  134.                                       int error_id, const char *desc);
  135.  
  136.  
  137. /*
  138. ** Create a new error structure with tagname and (optional) namespace;
  139. ** namespace may be NULL, which means "DAV:". save_errno will be
  140. ** filled with the current errno value.
  141. */
  142. DAV_DECLARE(dav_error*) dav_new_error_tag(apr_pool_t *p, int status, 
  143.                                           int error_id, const char *desc,
  144.                                           const char *namespace,
  145.                                           const char *tagname);
  146.  
  147.  
  148. /*
  149. ** Push a new error description onto the stack of errors.
  150. **
  151. ** This function is used to provide an additional description to an existing
  152. ** error.
  153. **
  154. ** <status> should contain the caller's view of what the current status is,
  155. ** given the underlying error. If it doesn't have a better idea, then the
  156. ** caller should pass prev->status.
  157. **
  158. ** <error_id> can specify a new error_id since the topmost description has
  159. ** changed.
  160. */
  161. DAV_DECLARE(dav_error*) dav_push_error(apr_pool_t *p, int status, int error_id,
  162.                                        const char *desc, dav_error *prev);
  163.  
  164.  
  165. /* error ID values... */
  166.  
  167. /* IF: header errors */
  168. #define DAV_ERR_IF_PARSE                100    /* general parsing error */
  169. #define DAV_ERR_IF_MULTIPLE_NOT         101    /* multiple "Not" found */
  170. #define DAV_ERR_IF_UNK_CHAR             102    /* unknown char in header */
  171. #define DAV_ERR_IF_ABSENT               103    /* no locktokens given */
  172. #define DAV_ERR_IF_TAGGED               104    /* in parsing tagged-list */
  173. #define DAV_ERR_IF_UNCLOSED_PAREN       105    /* in no-tagged-list */
  174.  
  175. /* Prop DB errors */
  176. #define DAV_ERR_PROP_BAD_MAJOR          200    /* major version was wrong */
  177. #define DAV_ERR_PROP_READONLY           201    /* prop is read-only */
  178. #define DAV_ERR_PROP_NO_DATABASE        202    /* writable db not avail */
  179. #define DAV_ERR_PROP_NOT_FOUND          203    /* prop not found */
  180. #define DAV_ERR_PROP_BAD_LOCKDB         204    /* could not open lockdb */
  181. #define DAV_ERR_PROP_OPENING            205    /* problem opening propdb */
  182. #define DAV_ERR_PROP_EXEC               206    /* problem exec'ing patch */
  183.  
  184. /* Predefined DB errors */
  185. /* ### any to define?? */
  186.  
  187. /* Predefined locking system errors */
  188. #define DAV_ERR_LOCK_OPENDB             400    /* could not open lockdb */
  189. #define DAV_ERR_LOCK_NO_DB              401    /* no database defined */
  190. #define DAV_ERR_LOCK_CORRUPT_DB         402    /* DB is corrupt */
  191. #define DAV_ERR_LOCK_UNK_STATE_TOKEN    403    /* unknown State-token */
  192. #define DAV_ERR_LOCK_PARSE_TOKEN        404    /* bad opaquelocktoken */
  193. #define DAV_ERR_LOCK_SAVE_LOCK          405    /* err saving locks */
  194.  
  195. /*
  196. ** Some comments on Error ID values:
  197. **
  198. ** The numbers do not necessarily need to be unique. Uniqueness simply means
  199. ** that two errors that have not been predefined above can be distinguished
  200. ** from each other. At the moment, mod_dav does not use this distinguishing
  201. ** feature, but it could be used in the future to collapse <response> elements
  202. ** into groups based on the error ID (and associated responsedescription).
  203. **
  204. ** If a compute_desc is provided, then the error ID should be unique within
  205. ** the context of the compute_desc function (so the function can figure out
  206. ** what to filled into the desc).
  207. **
  208. ** Basically, subsystems can ignore defining new error ID values if they want
  209. ** to. The subsystems *do* need to return the predefined errors when
  210. ** appropriate, so that mod_dav can figure out what to do. Subsystems can
  211. ** simply leave the error ID field unfilled (zero) if there isn't an error
  212. ** that must be placed there.
  213. */
  214.  
  215.  
  216. /* --------------------------------------------------------------------
  217. **
  218. ** HOOK STRUCTURES
  219. **
  220. ** These are here for forward-declaration purposes. For more info, see
  221. ** the section title "HOOK HANDLING" for more information, plus each
  222. ** structure definition.
  223. */
  224.  
  225. /* forward-declare this structure */
  226. typedef struct dav_hooks_propdb dav_hooks_propdb;
  227. typedef struct dav_hooks_locks dav_hooks_locks;
  228. typedef struct dav_hooks_vsn dav_hooks_vsn;
  229. typedef struct dav_hooks_repository dav_hooks_repository;
  230. typedef struct dav_hooks_liveprop dav_hooks_liveprop;
  231. typedef struct dav_hooks_binding dav_hooks_binding;
  232. typedef struct dav_hooks_search dav_hooks_search;
  233.  
  234. /* ### deprecated name */
  235. typedef dav_hooks_propdb dav_hooks_db;
  236.  
  237.  
  238. /* --------------------------------------------------------------------
  239. **
  240. ** RESOURCE HANDLING
  241. */
  242.  
  243. /*
  244. ** Resource Types:
  245. ** The base protocol defines only file and collection resources.
  246. ** The versioning protocol defines several additional resource types
  247. ** to represent artifacts of a version control system.
  248. **
  249. ** This enumeration identifies the type of URL used to identify the
  250. ** resource. Since the same resource may have more than one type of
  251. ** URL which can identify it, dav_resource_type cannot be used
  252. ** alone to determine the type of the resource; attributes of the
  253. ** dav_resource object must also be consulted.
  254. */
  255. typedef enum {
  256.     DAV_RESOURCE_TYPE_UNKNOWN,
  257.  
  258.     DAV_RESOURCE_TYPE_REGULAR,          /* file or collection; could be
  259.                                          * unversioned, or version selector,
  260.                                          * or baseline selector */
  261.  
  262.     DAV_RESOURCE_TYPE_VERSION,          /* version or baseline URL */
  263.  
  264.     DAV_RESOURCE_TYPE_HISTORY,          /* version or baseline history URL */
  265.  
  266.     DAV_RESOURCE_TYPE_WORKING,          /* working resource URL */
  267.  
  268.     DAV_RESOURCE_TYPE_WORKSPACE,        /* workspace URL */
  269.  
  270.     DAV_RESOURCE_TYPE_ACTIVITY,         /* activity URL */
  271.  
  272.     DAV_RESOURCE_TYPE_PRIVATE           /* repository-private type */
  273.  
  274. } dav_resource_type;
  275.  
  276. /*
  277. ** Opaque, repository-specific information for a resource.
  278. */
  279. typedef struct dav_resource_private dav_resource_private;
  280.  
  281. /*
  282. ** Resource descriptor, generated by a repository provider.
  283. **
  284. ** Note: the lock-null state is not explicitly represented here,
  285. ** since it may be expensive to compute. Use dav_get_resource_state()
  286. ** to determine whether a non-existent resource is a lock-null resource.
  287. **
  288. ** A quick explanation of how the flags can apply to different resources:
  289. **
  290. ** unversioned file or collection:
  291. **     type       = DAV_RESOURCE_TYPE_REGULAR
  292. **     exists     = ? (1 if exists)
  293. **     collection = ? (1 if collection)
  294. **     versioned  = 0
  295. **     baselined  = 0
  296. **     working    = 0
  297. **
  298. ** version-controlled resource or configuration:
  299. **     type       = DAV_RESOURCE_TYPE_REGULAR
  300. **     exists     = 1
  301. **     collection = ? (1 if collection)
  302. **     versioned  = 1
  303. **     baselined  = ? (1 if configuration)
  304. **     working    = ? (1 if checked out)
  305. **
  306. ** version/baseline history:
  307. **     type       = DAV_RESOURCE_TYPE_HISTORY
  308. **     exists     = 1
  309. **     collection = 0
  310. **     versioned  = 0
  311. **     baselined  = 0
  312. **     working    = 0
  313. **
  314. ** version/baseline:
  315. **     type       = DAV_RESOURCE_TYPE_VERSION
  316. **     exists     = 1
  317. **     collection = ? (1 if collection)
  318. **     versioned  = 1
  319. **     baselined  = ? (1 if baseline)
  320. **     working    = 0
  321. **
  322. ** working resource:
  323. **     type       = DAV_RESOURCE_TYPE_WORKING
  324. **     exists     = 1
  325. **     collection = ? (1 if collection)
  326. **     versioned  = 1
  327. **     baselined  = 0
  328. **     working    = 1
  329. **
  330. ** workspace:
  331. **     type       = DAV_RESOURCE_TYPE_WORKSPACE
  332. **     exists     = ? (1 if exists)
  333. **     collection = 1
  334. **     versioned  = ? (1 if version-controlled)
  335. **     baselined  = ? (1 if baseline-controlled)
  336. **     working    = ? (1 if checked out)
  337. **
  338. ** activity:
  339. **     type       = DAV_RESOURCE_TYPE_ACTIVITY
  340. **     exists     = ? (1 if exists)
  341. **     collection = 0
  342. **     versioned  = 0
  343. **     baselined  = 0
  344. **     working    = 0
  345. */
  346. typedef struct dav_resource {
  347.     dav_resource_type type;
  348.  
  349.     int exists;         /* 0 => null resource */
  350.  
  351.     int collection;     /* 0 => file; can be 1 for
  352.                          * REGULAR, VERSION, and WORKING resources,
  353.                          * and is always 1 for WORKSPACE */
  354.  
  355.     int versioned;      /* 0 => unversioned; can be 1 for
  356.                          * REGULAR and WORKSPACE resources,
  357.                          * and is always 1 for VERSION and WORKING */
  358.  
  359.     int baselined;      /* 0 => not baselined; can be 1 for
  360.                          * REGULAR, VERSION, and WORKSPACE resources;
  361.                          * versioned == 1 when baselined == 1 */
  362.  
  363.     int working;        /* 0 => not checked out; can be 1 for
  364.                          * REGULAR and WORKSPACE resources,
  365.                          * and is always 1 for WORKING */
  366.  
  367.     const char *uri;    /* the URI for this resource */
  368.  
  369.     dav_resource_private *info;         /* the provider's private info */
  370.  
  371.     const dav_hooks_repository *hooks;  /* hooks used for this resource */
  372.  
  373.     /* When allocating items related specifically to this resource, the
  374.        following pool should be used. Its lifetime will be at least as
  375.        long as the dav_resource structure. */
  376.     apr_pool_t *pool;
  377.  
  378. } dav_resource;
  379.  
  380. /*
  381. ** Lock token type. Lock providers define the details of a lock token.
  382. ** However, all providers are expected to at least be able to parse
  383. ** the "opaquelocktoken" scheme, which is represented by a uuid_t.
  384. */
  385. typedef struct dav_locktoken dav_locktoken;
  386.  
  387.  
  388. /* --------------------------------------------------------------------
  389. **
  390. ** BUFFER HANDLING
  391. **
  392. ** These buffers are used as a lightweight buffer reuse mechanism. Apache
  393. ** provides sub-pool creation and destruction to much the same effect, but
  394. ** the sub-pools are a bit more general and heavyweight than these buffers.
  395. */
  396.  
  397. /* buffer for reuse; can grow to accomodate needed size */
  398. typedef struct
  399. {
  400.     apr_size_t alloc_len;       /* how much has been allocated */
  401.     apr_size_t cur_len;         /* how much is currently being used */
  402.     char *buf;                  /* buffer contents */
  403. } dav_buffer;
  404. #define DAV_BUFFER_MINSIZE      256    /* minimum size for buffer */
  405. #define DAV_BUFFER_PAD          64     /* amount of pad when growing */
  406.  
  407. /* set the cur_len to the given size and ensure space is available */
  408. DAV_DECLARE(void) dav_set_bufsize(apr_pool_t *p, dav_buffer *pbuf, 
  409.                                   apr_size_t size);
  410.  
  411. /* initialize a buffer and copy the specified (null-term'd) string into it */
  412. DAV_DECLARE(void) dav_buffer_init(apr_pool_t *p, dav_buffer *pbuf, 
  413.                                   const char *str);
  414.  
  415. /* check that the buffer can accomodate <extra_needed> more bytes */
  416. DAV_DECLARE(void) dav_check_bufsize(apr_pool_t *p, dav_buffer *pbuf, 
  417.                                     apr_size_t extra_needed);
  418.  
  419. /* append a string to the end of the buffer, adjust length */
  420. DAV_DECLARE(void) dav_buffer_append(apr_pool_t *p, dav_buffer *pbuf, 
  421.                                     const char *str);
  422.  
  423. /* place a string on the end of the buffer, do NOT adjust length */
  424. DAV_DECLARE(void) dav_buffer_place(apr_pool_t *p, dav_buffer *pbuf, 
  425.                                    const char *str);
  426.  
  427. /* place some memory on the end of a buffer; do NOT adjust length */
  428. DAV_DECLARE(void) dav_buffer_place_mem(apr_pool_t *p, dav_buffer *pbuf, 
  429.                                        const void *mem, apr_size_t amt, 
  430.                                        apr_size_t pad);
  431.  
  432.  
  433. /* --------------------------------------------------------------------
  434. **
  435. ** HANDY UTILITIES
  436. */
  437.  
  438. /* contains results from one of the getprop functions */
  439. typedef struct
  440. {
  441.     apr_text * propstats;       /* <propstat> element text */
  442.     apr_text * xmlns;           /* namespace decls for <response> elem */
  443. } dav_get_props_result;
  444.  
  445. /* holds the contents of a <response> element */
  446. typedef struct dav_response
  447. {
  448.     const char *href;           /* always */
  449.     const char *desc;           /* optional description at <response> level */
  450.  
  451.     /* use status if propresult.propstats is NULL. */
  452.     dav_get_props_result propresult;
  453.  
  454.     int status;
  455.  
  456.     struct dav_response *next;
  457. } dav_response;
  458.  
  459. typedef struct
  460. {
  461.     request_rec *rnew;          /* new subrequest */
  462.     dav_error err;              /* potential error response */
  463. } dav_lookup_result;
  464.  
  465.  
  466. dav_lookup_result dav_lookup_uri(const char *uri, request_rec *r,
  467.                                  int must_be_absolute);
  468.  
  469. /* defines type of property info a provider is to return */
  470. typedef enum {
  471.     DAV_PROP_INSERT_NOTDEF,     /* property is defined by this provider,
  472.                                    but nothing was inserted because the
  473.                                    (live) property is not defined for this
  474.                                    resource (it may be present as a dead
  475.                                    property). */
  476.     DAV_PROP_INSERT_NOTSUPP,    /* property is recognized by this provider,
  477.                                    but it is not supported, and cannot be
  478.                                    treated as a dead property */
  479.     DAV_PROP_INSERT_NAME,       /* a property name (empty elem) was
  480.                                    inserted into the text block */
  481.     DAV_PROP_INSERT_VALUE,      /* a property name/value pair was inserted
  482.                                    into the text block */
  483.     DAV_PROP_INSERT_SUPPORTED   /* a supported live property was added to
  484.                                    the text block as a
  485.                                    <DAV:supported-live-property> element */
  486. } dav_prop_insert;
  487.  
  488. /* ### this stuff is private to dav/fs/repos.c; move it... */
  489. /* format a time string (buf must be at least DAV_TIMEBUF_SIZE chars) */
  490. #define DAV_STYLE_ISO8601       1
  491. #define DAV_STYLE_RFC822        2
  492. #define DAV_TIMEBUF_SIZE        30
  493.  
  494. int dav_get_depth(request_rec *r, int def_depth);
  495.  
  496. int dav_validate_root(const apr_xml_doc *doc, const char *tagname);
  497. apr_xml_elem *dav_find_child(const apr_xml_elem *elem, const char *tagname);
  498.  
  499. /* gather up all the CDATA into a single string */
  500. DAV_DECLARE(const char *) dav_xml_get_cdata(const apr_xml_elem *elem, apr_pool_t *pool,
  501.                               int strip_white);
  502.  
  503. /*
  504. ** XML namespace handling
  505. **
  506. ** This structure tracks namespace declarations (xmlns:prefix="URI").
  507. ** It maintains a one-to-many relationship of URIs-to-prefixes. In other
  508. ** words, one URI may be defined by many prefixes, but any specific
  509. ** prefix will specify only one URI.
  510. **
  511. ** Prefixes using the "g###" pattern can be generated automatically if
  512. ** the caller does not have specific prefix requirements.
  513. */
  514. typedef struct {
  515.     apr_pool_t *pool;
  516.     apr_hash_t *uri_prefix;     /* map URIs to an available prefix */
  517.     apr_hash_t *prefix_uri;     /* map all prefixes to their URIs */
  518.     int count;                  /* counter for "g###" prefixes */
  519. } dav_xmlns_info;
  520.  
  521. /* create an empty dav_xmlns_info structure */
  522. DAV_DECLARE(dav_xmlns_info *) dav_xmlns_create(apr_pool_t *pool);
  523.  
  524. /* add a specific prefix/URI pair. the prefix/uri should have a lifetime
  525.    at least that of xmlns->pool */
  526. DAV_DECLARE(void) dav_xmlns_add(dav_xmlns_info *xi,
  527.                                 const char *prefix, const char *uri);
  528.  
  529. /* add a URI (if not present); any prefix is acceptable and is returned.
  530.    the uri should have a lifetime at least that xmlns->pool */
  531. DAV_DECLARE(const char *) dav_xmlns_add_uri(dav_xmlns_info *xi,
  532.                                             const char *uri);
  533.  
  534. /* return the URI for a specified prefix (or NULL if the prefix is unknown) */
  535. DAV_DECLARE(const char *) dav_xmlns_get_uri(dav_xmlns_info *xi,
  536.                                             const char *prefix);
  537.  
  538. /* return an available prefix for a specified URI (or NULL if the URI
  539.    is unknown) */
  540. DAV_DECLARE(const char *) dav_xmlns_get_prefix(dav_xmlns_info *xi,
  541.                                                const char *uri);
  542.  
  543. /* generate xmlns declarations (appending into the given text) */
  544. DAV_DECLARE(void) dav_xmlns_generate(dav_xmlns_info *xi,
  545.                                      apr_text_header *phdr);
  546.  
  547. /* --------------------------------------------------------------------
  548. **
  549. ** DAV PLUGINS
  550. */
  551.  
  552. /* ### docco ... */
  553.  
  554. /*
  555. ** dav_provider
  556. **
  557. ** This structure wraps up all of the hooks that a mod_dav provider can
  558. ** supply. The provider MUST supply <repos> and <propdb>. The rest are
  559. ** optional and should contain NULL if that feature is not supplied.
  560. **
  561. ** Note that a provider cannot pick and choose portions from various
  562. ** underlying implementations (which was theoretically possible in
  563. ** mod_dav 1.0). There are too many dependencies between a dav_resource
  564. ** (defined by <repos>) and the other functionality.
  565. **
  566. ** Live properties are not part of the dav_provider structure because they
  567. ** are handled through the APR_HOOK interface (to allow for multiple liveprop
  568. ** providers). The core always provides some properties, and then a given
  569. ** provider will add more properties.
  570. **
  571. ** Some providers may need to associate a context with the dav_provider
  572. ** structure -- the ctx field is available for storing this context. Just
  573. ** leave it NULL if it isn't required.
  574. */
  575. typedef struct {
  576.     const dav_hooks_repository *repos;
  577.     const dav_hooks_propdb *propdb;
  578.     const dav_hooks_locks *locks;
  579.     const dav_hooks_vsn *vsn;
  580.     const dav_hooks_binding *binding;
  581.     const dav_hooks_search *search;
  582.  
  583.     void *ctx;
  584. } dav_provider;
  585.  
  586. /*
  587. ** gather_propsets: gather all live property propset-URIs
  588. **
  589. ** The hook implementor should push one or more URIs into the specified
  590. ** array. These URIs are returned in the DAV: header to let clients know
  591. ** what sets of live properties are supported by the installation. mod_dav
  592. ** will place open/close angle brackets around each value (much like
  593. ** a Coded-URL); quotes and brackets should not be in the value.
  594. **
  595. ** Example:    http://apache.org/dav/props/
  596. **
  597. ** (of course, use your own domain to ensure a unique value)
  598. */
  599. APR_DECLARE_EXTERNAL_HOOK(dav, DAV, void, gather_propsets, 
  600.                          (apr_array_header_t *uris))
  601.  
  602. /*
  603. ** find_liveprop: find a live property, returning a non-zero, unique,
  604. **                opaque identifier.
  605. **
  606. ** If the hook implementor determines the specified URI/name refers to
  607. ** one of its properties, then it should fill in HOOKS and return a
  608. ** non-zero value. The returned value is the "property ID" and will
  609. ** be passed to the various liveprop hook functions.
  610. **
  611. ** Return 0 if the property is not defined by the hook implementor.
  612. */
  613. APR_DECLARE_EXTERNAL_HOOK(dav, DAV, int, find_liveprop,
  614.                          (const dav_resource *resource,
  615.                           const char *ns_uri, const char *name,
  616.                           const dav_hooks_liveprop **hooks))
  617.  
  618. /*
  619. ** insert_all_liveprops: insert all (known) live property names/values.
  620. **
  621. ** The hook implementor should append XML text to PHDR, containing liveprop
  622. ** names. If INSVALUE is true, then the property values should also be
  623. ** inserted into the output XML stream.
  624. **
  625. ** The liveprop provider should insert *all* known and *defined* live
  626. ** properties on the specified resource. If a particular liveprop is
  627. ** not defined for this resource, then it should not be inserted.
  628. */
  629. APR_DECLARE_EXTERNAL_HOOK(dav, DAV, void, insert_all_liveprops, 
  630.                          (request_rec *r, const dav_resource *resource,
  631.                           dav_prop_insert what, apr_text_header *phdr))
  632.  
  633. const dav_hooks_locks *dav_get_lock_hooks(request_rec *r);
  634. const dav_hooks_propdb *dav_get_propdb_hooks(request_rec *r);
  635. const dav_hooks_vsn *dav_get_vsn_hooks(request_rec *r);
  636. const dav_hooks_binding *dav_get_binding_hooks(request_rec *r);
  637. const dav_hooks_search *dav_get_search_hooks(request_rec *r);
  638.  
  639. DAV_DECLARE(void) dav_register_provider(apr_pool_t *p, const char *name,
  640.                                         const dav_provider *hooks);
  641. const dav_provider * dav_lookup_provider(const char *name);
  642.  
  643.  
  644. /* ### deprecated */
  645. #define DAV_GET_HOOKS_PROPDB(r)         dav_get_propdb_hooks(r)
  646. #define DAV_GET_HOOKS_LOCKS(r)          dav_get_lock_hooks(r)
  647. #define DAV_GET_HOOKS_VSN(r)            dav_get_vsn_hooks(r)
  648. #define DAV_GET_HOOKS_BINDING(r)        dav_get_binding_hooks(r)
  649. #define DAV_GET_HOOKS_SEARCH(r)         dav_get_search_hooks(r)
  650.  
  651.  
  652. /* --------------------------------------------------------------------
  653. **
  654. ** IF HEADER PROCESSING
  655. **
  656. ** Here is the definition of the If: header from RFC 2518, S9.4:
  657. **
  658. **    If = "If" ":" (1*No-tag-list | 1*Tagged-list)
  659. **    No-tag-list = List
  660. **    Tagged-list = Resource 1*List
  661. **    Resource = Coded-URL
  662. **    List = "(" 1*(["Not"](State-token | "[" entity-tag "]")) ")"
  663. **    State-token = Coded-URL
  664. **    Coded-URL = "<" absoluteURI ">"        ; absoluteURI from RFC 2616
  665. **
  666. ** List corresponds to dav_if_state_list. No-tag-list corresponds to
  667. ** dav_if_header with uri==NULL. Tagged-list corresponds to a sequence of
  668. ** dav_if_header structures with (duplicate) uri==Resource -- one
  669. ** dav_if_header per state_list. A second Tagged-list will start a new
  670. ** sequence of dav_if_header structures with the new URI.
  671. **
  672. ** A summary of the semantics, mapped into our structures:
  673. **    - Chained dav_if_headers: OR
  674. **    - Chained dav_if_state_lists: AND
  675. **    - NULL uri matches all resources
  676. */
  677.  
  678. typedef enum
  679. {
  680.     dav_if_etag,
  681.     dav_if_opaquelock
  682. } dav_if_state_type;
  683.  
  684. typedef struct dav_if_state_list
  685. {
  686.     dav_if_state_type type;
  687.  
  688.     int condition;
  689. #define DAV_IF_COND_NORMAL      0
  690. #define DAV_IF_COND_NOT         1    /* "Not" was applied */
  691.  
  692.     const char *etag;
  693.     dav_locktoken *locktoken;
  694.  
  695.     struct dav_if_state_list *next;
  696. } dav_if_state_list;
  697.  
  698. typedef struct dav_if_header
  699. {
  700.     const char *uri;
  701.     apr_size_t uri_len;
  702.     struct dav_if_state_list *state;
  703.     struct dav_if_header *next;
  704.  
  705.     int dummy_header;   /* used internally by the lock/etag validation */
  706. } dav_if_header;
  707.  
  708. typedef struct dav_locktoken_list 
  709. {
  710.     dav_locktoken *locktoken;
  711.     struct dav_locktoken_list *next;
  712. } dav_locktoken_list;
  713.  
  714. dav_error * dav_get_locktoken_list(request_rec *r, dav_locktoken_list **ltl);
  715.  
  716.  
  717. /* --------------------------------------------------------------------
  718. **
  719. ** LIVE PROPERTY HANDLING
  720. */
  721.  
  722. /* opaque type for PROPPATCH rollback information */
  723. typedef struct dav_liveprop_rollback dav_liveprop_rollback;
  724.  
  725. struct dav_hooks_liveprop
  726. {
  727.     /*
  728.     ** Insert property information into a text block. The property to
  729.     ** insert is identified by the propid value. The information to insert
  730.     ** is identified by the "what" argument, as follows:
  731.     **   DAV_PROP_INSERT_NAME
  732.     **      property name, as an empty XML element
  733.     **   DAV_PROP_INSERT_VALUE
  734.     **      property name/value, as an XML element
  735.     **   DAV_PROP_INSERT_SUPPORTED
  736.     **      if the property is defined on the resource, then
  737.     **      a DAV:supported-live-property element, as defined
  738.     **      by the DeltaV extensions to RFC2518.
  739.     **                      
  740.     ** Providers should return DAV_PROP_INSERT_NOTDEF if the property is
  741.     ** known and not defined for this resource, so should be handled as a
  742.     ** dead property. If a provider recognizes, but does not support, a
  743.     ** property, and does not want it handled as a dead property, it should
  744.     ** return DAV_PROP_INSERT_NOTSUPP.
  745.     **
  746.     ** Returns one of DAV_PROP_INSERT_* based on what happened.
  747.     **
  748.     ** ### we may need more context... ie. the lock database
  749.     */
  750.     dav_prop_insert (*insert_prop)(const dav_resource *resource,
  751.                                    int propid, dav_prop_insert what,
  752.                                    apr_text_header *phdr);
  753.  
  754.     /*
  755.     ** Determine whether a given property is writable.
  756.     **
  757.     ** ### we may want a different semantic. i.e. maybe it should be
  758.     ** ### "can we write <value> into this property?"
  759.     **
  760.     ** Returns 1 if the live property can be written, 0 if read-only.
  761.     */
  762.     int (*is_writable)(const dav_resource *resource, int propid);
  763.  
  764.     /*
  765.     ** This member defines the set of namespace URIs that the provider
  766.     ** uses for its properties. When insert_all is called, it will be
  767.     ** passed a list of integers that map from indices into this list
  768.     ** to namespace IDs for output generation.
  769.     **
  770.     ** The last entry in this list should be a NULL value (sentinel).
  771.     */
  772.     const char * const * namespace_uris;
  773.  
  774.     /*
  775.     ** ### this is not the final design. we want an open-ended way for
  776.     ** ### liveprop providers to attach *new* properties. To this end,
  777.     ** ### we'll have a "give me a list of the props you define", a way
  778.     ** ### to check for a prop's existence, a way to validate a set/remove
  779.     ** ### of a prop, and a way to execute/commit/rollback that change.
  780.     */
  781.  
  782.     /*
  783.     ** Validate that the live property can be assigned a value, and that
  784.     ** the provided value is valid.
  785.     **
  786.     ** elem will point to the XML element that names the property. For
  787.     ** example:
  788.     **     <lp1:executable>T</lp1:executable>
  789.     **
  790.     ** The provider can access the cdata fields and the child elements
  791.     ** to extract the relevant pieces.
  792.     **
  793.     ** operation is one of DAV_PROP_OP_SET or _DELETE.
  794.     **
  795.     ** The provider may return a value in *context which will be passed
  796.     ** to each of the exec/commit/rollback functions. For example, this
  797.     ** may contain an internal value which has been processed from the
  798.     ** input element.
  799.     **
  800.     ** The provider must set defer_to_dead to true (non-zero) or false.
  801.     ** If true, then the set/remove is deferred to the dead property
  802.     ** database. Note: it will be set to zero on entry.
  803.     */
  804.     dav_error * (*patch_validate)(const dav_resource *resource,
  805.                                   const apr_xml_elem *elem,
  806.                                   int operation,
  807.                                   void **context,
  808.                                   int *defer_to_dead);
  809.  
  810.     /* ### doc... */
  811.     dav_error * (*patch_exec)(const dav_resource *resource,
  812.                               const apr_xml_elem *elem,
  813.                               int operation,
  814.                               void *context,
  815.                               dav_liveprop_rollback **rollback_ctx);
  816.  
  817.     /* ### doc... */
  818.     void (*patch_commit)(const dav_resource *resource,
  819.                          int operation,
  820.                          void *context,
  821.                          dav_liveprop_rollback *rollback_ctx);
  822.  
  823.     /* ### doc... */
  824.     dav_error * (*patch_rollback)(const dav_resource *resource,
  825.                                   int operation,
  826.                                   void *context,
  827.                                   dav_liveprop_rollback *rollback_ctx);
  828.  
  829.     /*
  830.     ** If a provider needs a context to associate with this hooks structure,
  831.     ** then this field may be used. In most cases, it will just be NULL.
  832.     */
  833.     void *ctx;
  834. };
  835.  
  836. /*
  837. ** dav_liveprop_spec: specify a live property
  838. **
  839. ** This structure is used as a standard way to determine if a particular
  840. ** property is a live property. Its use is not part of the mandated liveprop
  841. ** interface, but can be used by liveprop providers in conjuction with the
  842. ** utility routines below.
  843. **
  844. ** spec->name == NULL is the defined end-sentinel for a list of specs.
  845. */
  846. typedef struct {
  847.     int ns;             /* provider-local namespace index */
  848.     const char *name;   /* name of the property */
  849.  
  850.     int propid;         /* provider-local property ID */
  851.  
  852.     int is_writable;    /* is the property writable? */
  853.  
  854. } dav_liveprop_spec;
  855.  
  856. /*
  857. ** dav_liveprop_group: specify a group of liveprops
  858. **
  859. ** This structure specifies a group of live properties, their namespaces,
  860. ** and how to handle them.
  861. */
  862. typedef struct {
  863.     const dav_liveprop_spec *specs;
  864.     const char * const *namespace_uris;
  865.     const dav_hooks_liveprop *hooks;
  866.  
  867. } dav_liveprop_group;
  868.  
  869. /* ### docco */
  870. DAV_DECLARE(int) dav_do_find_liveprop(const char *ns_uri, const char *name,
  871.                                       const dav_liveprop_group *group,
  872.                                       const dav_hooks_liveprop **hooks);
  873.  
  874. /* ### docco */
  875. DAV_DECLARE(int) dav_get_liveprop_info(int propid,
  876.                                        const dav_liveprop_group *group,
  877.                                        const dav_liveprop_spec **info);
  878.  
  879. /* ### docco */
  880. DAV_DECLARE(void) dav_register_liveprop_group(apr_pool_t *pool, 
  881.                                               const dav_liveprop_group *group);
  882.  
  883. /* ### docco */
  884. DAV_DECLARE(int) dav_get_liveprop_ns_index(const char *uri);
  885.  
  886. /* ### docco */
  887. int dav_get_liveprop_ns_count(void);
  888.  
  889. /* ### docco */
  890. void dav_add_all_liveprop_xmlns(apr_pool_t *p, apr_text_header *phdr);
  891.  
  892. /*
  893. ** The following three functions are part of mod_dav's internal handling
  894. ** for the core WebDAV properties. They are not part of mod_dav's API.
  895. */
  896. int dav_core_find_liveprop(const dav_resource *resource,
  897.                            const char *ns_uri, const char *name,
  898.                            const dav_hooks_liveprop **hooks);
  899. void dav_core_insert_all_liveprops(request_rec *r,
  900.                                    const dav_resource *resource,
  901.                                    dav_prop_insert what, apr_text_header *phdr);
  902. void dav_core_register_uris(apr_pool_t *p);
  903.  
  904.  
  905. /*
  906. ** Standard WebDAV Property Identifiers
  907. **
  908. ** A live property provider does not need to use these; they are simply
  909. ** provided for convenience.
  910. **
  911. ** Property identifiers need to be unique within a given provider, but not
  912. ** *across* providers (note: this uniqueness constraint was different in
  913. ** older versions of mod_dav).
  914. **
  915. ** The identifiers start at 20000 to make it easier for providers to avoid
  916. ** conflicts with the standard properties. The properties are arranged
  917. ** alphabetically, and may be reordered from time to time (as properties
  918. ** are introduced).
  919. **
  920. ** NOTE: there is no problem with reordering (e.g. binary compat) since the
  921. ** identifiers are only used within a given provider, which would pick up
  922. ** the entire set of changes upon a recompile.
  923. */
  924. enum {
  925.     DAV_PROPID_BEGIN = 20000,
  926.  
  927.     /* Standard WebDAV properties (RFC 2518) */
  928.     DAV_PROPID_creationdate,
  929.     DAV_PROPID_displayname,
  930.     DAV_PROPID_getcontentlanguage,
  931.     DAV_PROPID_getcontentlength,
  932.     DAV_PROPID_getcontenttype,
  933.     DAV_PROPID_getetag,
  934.     DAV_PROPID_getlastmodified,
  935.     DAV_PROPID_lockdiscovery,
  936.     DAV_PROPID_resourcetype,
  937.     DAV_PROPID_source,
  938.     DAV_PROPID_supportedlock,
  939.  
  940.     /* DeltaV properties (from the I-D (#14)) */
  941.     DAV_PROPID_activity_checkout_set,
  942.     DAV_PROPID_activity_set,
  943.     DAV_PROPID_activity_version_set,
  944.     DAV_PROPID_auto_merge_set,
  945.     DAV_PROPID_auto_version,
  946.     DAV_PROPID_baseline_collection,
  947.     DAV_PROPID_baseline_controlled_collection,
  948.     DAV_PROPID_baseline_controlled_collection_set,
  949.     DAV_PROPID_checked_in,
  950.     DAV_PROPID_checked_out,
  951.     DAV_PROPID_checkin_fork,
  952.     DAV_PROPID_checkout_fork,
  953.     DAV_PROPID_checkout_set,
  954.     DAV_PROPID_comment,
  955.     DAV_PROPID_creator_displayname,
  956.     DAV_PROPID_current_activity_set,
  957.     DAV_PROPID_current_workspace_set,
  958.     DAV_PROPID_default_variant,
  959.     DAV_PROPID_eclipsed_set,
  960.     DAV_PROPID_label_name_set,
  961.     DAV_PROPID_merge_set,
  962.     DAV_PROPID_precursor_set,
  963.     DAV_PROPID_predecessor_set,
  964.     DAV_PROPID_root_version,
  965.     DAV_PROPID_subactivity_set,
  966.     DAV_PROPID_subbaseline_set,
  967.     DAV_PROPID_successor_set,
  968.     DAV_PROPID_supported_method_set,
  969.     DAV_PROPID_supported_live_property_set,
  970.     DAV_PROPID_supported_report_set,
  971.     DAV_PROPID_unreserved,
  972.     DAV_PROPID_variant_set,
  973.     DAV_PROPID_version_controlled_binding_set,
  974.     DAV_PROPID_version_controlled_configuration,
  975.     DAV_PROPID_version_history,
  976.     DAV_PROPID_version_name,
  977.     DAV_PROPID_workspace,
  978.     DAV_PROPID_workspace_checkout_set,
  979.  
  980.     DAV_PROPID_END
  981. };
  982.  
  983. /*
  984. ** Property Identifier Registration
  985. **
  986. ** At the moment, mod_dav requires live property providers to ensure that
  987. ** each property returned has a unique value. For now, this is done through
  988. ** central registration (there are no known providers other than the default,
  989. ** so this remains manageable).
  990. **
  991. ** WARNING: the TEST ranges should never be "shipped".
  992. */
  993. #define DAV_PROPID_CORE         10000   /* ..10099. defined by mod_dav */
  994. #define DAV_PROPID_FS           10100   /* ..10299.
  995.                                            mod_dav filesystem provider. */
  996. #define DAV_PROPID_TEST1        10300   /* ..10399 */
  997. #define DAV_PROPID_TEST2        10400   /* ..10499 */
  998. #define DAV_PROPID_TEST3        10500   /* ..10599 */
  999. /* Next: 10600 */
  1000.  
  1001.  
  1002. /* --------------------------------------------------------------------
  1003. **
  1004. ** DATABASE FUNCTIONS
  1005. */
  1006.  
  1007. typedef struct dav_db dav_db;
  1008. typedef struct dav_namespace_map dav_namespace_map;
  1009. typedef struct dav_deadprop_rollback dav_deadprop_rollback;
  1010.  
  1011. typedef struct {
  1012.     const char *ns;     /* "" signals "no namespace" */
  1013.     const char *name;
  1014. } dav_prop_name;
  1015.  
  1016. /* hook functions to enable pluggable databases */
  1017. struct dav_hooks_propdb
  1018. {
  1019.     dav_error * (*open)(apr_pool_t *p, const dav_resource *resource, int ro,
  1020.                         dav_db **pdb);
  1021.     void (*close)(dav_db *db);
  1022.  
  1023.     /*
  1024.     ** In bulk, define any namespaces that the values and their name
  1025.     ** elements may need.
  1026.     **
  1027.     ** Note: sometimes mod_dav will defer calling this until output_value
  1028.     ** returns found==1. If the output process needs the dav_xmlns_info
  1029.     ** filled for its work, then it will need to fill it on demand rather
  1030.     ** than depending upon this hook to fill in the structure.
  1031.     **
  1032.     ** Note: this will *always* be called during an output sequence. Thus,
  1033.     ** the provider may rely solely on using this to fill the xmlns info.
  1034.     */
  1035.     dav_error * (*define_namespaces)(dav_db *db, dav_xmlns_info *xi);
  1036.  
  1037.     /*
  1038.     ** Output the value from the database (i.e. add an element name and
  1039.     ** the value into *phdr). Set *found based on whether the name/value
  1040.     ** was found in the propdb.
  1041.     **
  1042.     ** Note: it is NOT an error for the key/value pair to not exist.
  1043.     **
  1044.     ** The dav_xmlns_info passed to define_namespaces() is also passed to
  1045.     ** each output_value() call so that namespaces can be added on-demand.
  1046.     ** It can also be used to look up prefixes or URIs during the output
  1047.     ** process.
  1048.     */
  1049.     dav_error * (*output_value)(dav_db *db, const dav_prop_name *name,
  1050.                                 dav_xmlns_info *xi,
  1051.                                 apr_text_header *phdr, int *found);
  1052.  
  1053.     /*
  1054.     ** Build a mapping from "global" namespaces (stored in apr_xml_*)
  1055.     ** into provider-local namespace identifiers.
  1056.     **
  1057.     ** This mapping should be done once per set of namespaces, and the
  1058.     ** resulting mapping should be passed into the store() hook function.
  1059.     **
  1060.     ** Note: usually, there is just a single document/namespaces for all
  1061.     ** elements passed. However, the generality of creating multiple
  1062.     ** mappings and passing them to store() is provided here.
  1063.     **
  1064.     ** Note: this is only in preparation for a series of store() calls.
  1065.     ** As a result, the propdb must be open for read/write access when
  1066.     ** this function is called.
  1067.     */
  1068.     dav_error * (*map_namespaces)(dav_db *db,
  1069.                                   const apr_array_header_t *namespaces,
  1070.                                   dav_namespace_map **mapping);
  1071.     
  1072.     /*
  1073.     ** Store a property value for a given name. The value->combined field
  1074.     ** MUST be set for this call.
  1075.     **
  1076.     ** ### WARNING: current providers will quote the text within ELEM.
  1077.     ** ### this implies you can call this function only once with a given
  1078.     ** ### element structure (a second time will quote it again).
  1079.     */
  1080.     dav_error * (*store)(dav_db *db, const dav_prop_name *name,
  1081.                          const apr_xml_elem *elem,
  1082.                          dav_namespace_map *mapping);
  1083.  
  1084.     /* remove a given property */
  1085.     dav_error * (*remove)(dav_db *db, const dav_prop_name *name);
  1086.  
  1087.     /* returns 1 if the record specified by "key" exists; 0 otherwise */
  1088.     int (*exists)(dav_db *db, const dav_prop_name *name);
  1089.  
  1090.     /*
  1091.     ** Iterate over the property names in the database.
  1092.     **
  1093.     ** iter->name.ns == iter->name.name == NULL when there are no more names.
  1094.     **
  1095.     ** Note: only one iteration may occur over the propdb at a time.
  1096.     */
  1097.     dav_error * (*first_name)(dav_db *db, dav_prop_name *pname);
  1098.     dav_error * (*next_name)(dav_db *db, dav_prop_name *pname);
  1099.  
  1100.     /*
  1101.     ** Rollback support: get rollback context, and apply it.
  1102.     **
  1103.     ** struct dav_deadprop_rollback is a provider-private structure; it
  1104.     ** should remember the name, and the name's old value (or the fact that
  1105.     ** the value was not present, and should be deleted if a rollback occurs).
  1106.     */
  1107.     dav_error * (*get_rollback)(dav_db *db, const dav_prop_name *name,
  1108.                                 dav_deadprop_rollback **prollback);
  1109.     dav_error * (*apply_rollback)(dav_db *db,
  1110.                                   dav_deadprop_rollback *rollback);
  1111.  
  1112.     /*
  1113.     ** If a provider needs a context to associate with this hooks structure,
  1114.     ** then this field may be used. In most cases, it will just be NULL.
  1115.     */
  1116.     void *ctx;
  1117. };
  1118.  
  1119.  
  1120. /* --------------------------------------------------------------------
  1121. **
  1122. ** LOCK FUNCTIONS
  1123. */
  1124.  
  1125. /* Used to represent a Timeout header of "Infinity" */
  1126. #define DAV_TIMEOUT_INFINITE 0
  1127.  
  1128. time_t dav_get_timeout(request_rec *r);
  1129.  
  1130. /*
  1131. ** Opaque, provider-specific information for a lock database.
  1132. */
  1133. typedef struct dav_lockdb_private dav_lockdb_private;
  1134.  
  1135. /*
  1136. ** Opaque, provider-specific information for a lock record.
  1137. */
  1138. typedef struct dav_lock_private dav_lock_private;
  1139.  
  1140. /*
  1141. ** Lock database type. Lock providers are urged to implement a "lazy" open, so
  1142. ** doing an "open" is cheap until something is actually needed from the DB.
  1143. */
  1144. typedef struct
  1145. {
  1146.     const dav_hooks_locks *hooks;   /* the hooks used for this lockdb */
  1147.     int ro;                         /* was it opened readonly? */
  1148.  
  1149.     dav_lockdb_private *info;
  1150.  
  1151. } dav_lockdb;
  1152.  
  1153. typedef enum {
  1154.     DAV_LOCKSCOPE_UNKNOWN,
  1155.     DAV_LOCKSCOPE_EXCLUSIVE,
  1156.     DAV_LOCKSCOPE_SHARED
  1157. } dav_lock_scope;
  1158.  
  1159. typedef enum {
  1160.     DAV_LOCKTYPE_UNKNOWN,
  1161.     DAV_LOCKTYPE_WRITE
  1162. } dav_lock_type;
  1163.  
  1164. typedef enum {
  1165.     DAV_LOCKREC_DIRECT,             /* lock asserted on this resource */
  1166.     DAV_LOCKREC_INDIRECT,           /* lock inherited from a parent */
  1167.     DAV_LOCKREC_INDIRECT_PARTIAL    /* most info is not filled in */
  1168. } dav_lock_rectype;
  1169.  
  1170. /*
  1171. ** dav_lock: hold information about a lock on a resource.
  1172. **
  1173. ** This structure is used for both direct and indirect locks. A direct lock
  1174. ** is a lock applied to a specific resource by the client. An indirect lock
  1175. ** is one that is inherited from a parent resource by virtue of a non-zero
  1176. ** Depth: header when the lock was applied.
  1177. **
  1178. ** mod_dav records both types of locks in the lock database, managing their
  1179. ** addition/removal as resources are moved about the namespace.
  1180. **
  1181. ** Note that the lockdb is free to marshal this structure in any form that
  1182. ** it likes.
  1183. **
  1184. ** For a "partial" lock, the <rectype> and <locktoken> fields must be filled
  1185. ** in. All other (user) fields should be zeroed. The lock provider will
  1186. ** usually fill in the <info> field, and the <next> field may be used to
  1187. ** construct a list of partial locks.
  1188. **
  1189. ** The lock provider MUST use the info field to store a value such that a
  1190. ** dav_lock structure can locate itself in the underlying lock database.
  1191. ** This requirement is needed for refreshing: when an indirect dav_lock is
  1192. ** refreshed, its reference to the direct lock does not specify the direct's
  1193. ** resource, so the only way to locate the (refreshed, direct) lock in the
  1194. ** database is to use the info field.
  1195. **
  1196. ** Note that <is_locknull> only refers to the resource where this lock was
  1197. ** found.
  1198. ** ### hrm. that says the abstraction is wrong. is_locknull may disappear.
  1199. */
  1200. typedef struct dav_lock
  1201. {
  1202.     dav_lock_rectype rectype;   /* type of lock record */
  1203.     int is_locknull;            /* lock establishes a locknull resource */
  1204.  
  1205.     /* ### put the resource in here? */
  1206.  
  1207.     dav_lock_scope scope;       /* scope of the lock */
  1208.     dav_lock_type type;         /* type of lock */
  1209.     int depth;                  /* depth of the lock */
  1210.     time_t timeout;             /* when the lock will timeout */
  1211.  
  1212.     const dav_locktoken *locktoken;  /* the token that was issued */
  1213.  
  1214.     const char *owner;          /* (XML) owner of the lock */
  1215.     const char *auth_user;      /* auth'd username owning lock */
  1216.  
  1217.     dav_lock_private *info;     /* private to the lockdb */
  1218.  
  1219.     struct dav_lock *next;      /* for managing a list of locks */
  1220. } dav_lock;
  1221.  
  1222. /* Property-related public lock functions */
  1223. const char *dav_lock_get_activelock(request_rec *r, dav_lock *locks,
  1224.                                     dav_buffer *pbuf);
  1225.  
  1226. /* LockDB-related public lock functions */
  1227. dav_error * dav_lock_parse_lockinfo(request_rec *r,
  1228.                                     const dav_resource *resrouce,
  1229.                                     dav_lockdb *lockdb,
  1230.                                     const apr_xml_doc *doc,
  1231.                                     dav_lock **lock_request);
  1232. int dav_unlock(request_rec *r, const dav_resource *resource,
  1233.                const dav_locktoken *locktoken);
  1234. dav_error * dav_add_lock(request_rec *r, const dav_resource *resource,
  1235.                          dav_lockdb *lockdb, dav_lock *request,
  1236.                          dav_response **response);
  1237. dav_error * dav_notify_created(request_rec *r,
  1238.                                dav_lockdb *lockdb,
  1239.                                const dav_resource *resource,
  1240.                                int resource_state,
  1241.                                int depth);
  1242.  
  1243. DAV_DECLARE(dav_error*) dav_lock_query(dav_lockdb *lockdb, 
  1244.                                        const dav_resource *resource,
  1245.                                        dav_lock **locks);
  1246.  
  1247. dav_error * dav_validate_request(request_rec *r, dav_resource *resource,
  1248.                                  int depth, dav_locktoken *locktoken,
  1249.                                  dav_response **response, int flags,
  1250.                                  dav_lockdb *lockdb);
  1251. /*
  1252. ** flags:
  1253. **    0x0F -- reserved for <dav_lock_scope> values
  1254. **
  1255. **    other flags, detailed below
  1256. */
  1257. #define DAV_VALIDATE_RESOURCE   0x0010  /* validate just the resource */
  1258. #define DAV_VALIDATE_PARENT     0x0020  /* validate resource AND its parent */
  1259. #define DAV_VALIDATE_ADD_LD     0x0040  /* add DAV:lockdiscovery into
  1260.                                            the 424 DAV:response */
  1261. #define DAV_VALIDATE_USE_424    0x0080  /* return 424 status, not 207 */
  1262. #define DAV_VALIDATE_IS_PARENT  0x0100  /* for internal use */
  1263.  
  1264. /* Lock-null related public lock functions */
  1265. int dav_get_resource_state(request_rec *r, const dav_resource *resource);
  1266.  
  1267. /* Lock provider hooks. Locking is optional, so there may be no
  1268.  * lock provider for a given repository.
  1269.  */
  1270. struct dav_hooks_locks
  1271. {
  1272.     /* Return the supportedlock property for a resource */
  1273.     const char * (*get_supportedlock)(
  1274.         const dav_resource *resource
  1275.     );
  1276.  
  1277.     /* Parse a lock token URI, returning a lock token object allocated
  1278.      * in the given pool.
  1279.      */
  1280.     dav_error * (*parse_locktoken)(
  1281.         apr_pool_t *p,
  1282.         const char *char_token,
  1283.         dav_locktoken **locktoken_p
  1284.     );
  1285.  
  1286.     /* Format a lock token object into a URI string, allocated in
  1287.      * the given pool.
  1288.      *
  1289.      * Always returns non-NULL.
  1290.      */
  1291.     const char * (*format_locktoken)(
  1292.         apr_pool_t *p,
  1293.         const dav_locktoken *locktoken
  1294.     );
  1295.  
  1296.     /* Compare two lock tokens.
  1297.      *
  1298.      * Result < 0  => lt1 < lt2
  1299.      * Result == 0 => lt1 == lt2
  1300.      * Result > 0  => lt1 > lt2
  1301.      */
  1302.     int (*compare_locktoken)(
  1303.         const dav_locktoken *lt1,
  1304.         const dav_locktoken *lt2
  1305.     );
  1306.  
  1307.     /* Open the provider's lock database.
  1308.      *
  1309.      * The provider may or may not use a "real" database for locks
  1310.      * (a lock could be an attribute on a resource, for example).
  1311.      *
  1312.      * The provider may choose to use the value of the DAVLockDB directive
  1313.      * (as returned by dav_get_lockdb_path()) to decide where to place
  1314.      * any storage it may need.
  1315.      *
  1316.      * The request storage pool should be associated with the lockdb,
  1317.      * so it can be used in subsequent operations.
  1318.      *
  1319.      * If ro != 0, only readonly operations will be performed.
  1320.      * If force == 0, the open can be "lazy"; no subsequent locking operations
  1321.      * may occur.
  1322.      * If force != 0, locking operations will definitely occur.
  1323.      */
  1324.     dav_error * (*open_lockdb)(
  1325.         request_rec *r,
  1326.         int ro,
  1327.         int force,
  1328.         dav_lockdb **lockdb
  1329.     );
  1330.  
  1331.     /* Indicates completion of locking operations */
  1332.     void (*close_lockdb)(
  1333.         dav_lockdb *lockdb
  1334.     );
  1335.  
  1336.     /* Take a resource out of the lock-null state. */
  1337.     dav_error * (*remove_locknull_state)(
  1338.         dav_lockdb *lockdb,
  1339.         const dav_resource *resource
  1340.     );
  1341.  
  1342.     /*
  1343.     ** Create a (direct) lock structure for the given resource. A locktoken
  1344.     ** will be created.
  1345.     **
  1346.     ** The lock provider may store private information into lock->info.
  1347.     */
  1348.     dav_error * (*create_lock)(dav_lockdb *lockdb,
  1349.                                const dav_resource *resource,
  1350.                                dav_lock **lock);
  1351.  
  1352.     /*
  1353.     ** Get the locks associated with the specified resource.
  1354.     **
  1355.     ** If resolve_locks is true (non-zero), then any indirect locks are
  1356.     ** resolved to their actual, direct lock (i.e. the reference to followed
  1357.     ** to the original lock).
  1358.     **
  1359.     ** The locks, if any, are returned as a linked list in no particular
  1360.     ** order. If no locks are present, then *locks will be NULL.
  1361.     */
  1362.     dav_error * (*get_locks)(dav_lockdb *lockdb,
  1363.                              const dav_resource *resource,
  1364.                              int calltype,
  1365.                              dav_lock **locks);
  1366.  
  1367. #define DAV_GETLOCKS_RESOLVED   0    /* resolve indirects to directs */
  1368. #define DAV_GETLOCKS_PARTIAL    1    /* leave indirects partially filled */
  1369. #define DAV_GETLOCKS_COMPLETE   2    /* fill out indirect locks */
  1370.  
  1371.     /*
  1372.     ** Find a particular lock on a resource (specified by its locktoken).
  1373.     **
  1374.     ** *lock will be set to NULL if the lock is not found.
  1375.     **
  1376.     ** Note that the provider can optimize the unmarshalling -- only one
  1377.     ** lock (or none) must be constructed and returned.
  1378.     **
  1379.     ** If partial_ok is true (non-zero), then an indirect lock can be
  1380.     ** partially filled in. Otherwise, another lookup is done and the
  1381.     ** lock structure will be filled out as a DAV_LOCKREC_INDIRECT.
  1382.     */
  1383.     dav_error * (*find_lock)(dav_lockdb *lockdb,
  1384.                              const dav_resource *resource,
  1385.                              const dav_locktoken *locktoken,
  1386.                              int partial_ok,
  1387.                              dav_lock **lock);
  1388.  
  1389.     /*
  1390.     ** Quick test to see if the resource has *any* locks on it.
  1391.     **
  1392.     ** This is typically used to determine if a non-existent resource
  1393.     ** has a lock and is (therefore) a locknull resource.
  1394.     **
  1395.     ** WARNING: this function may return TRUE even when timed-out locks
  1396.     **          exist (i.e. it may not perform timeout checks).
  1397.     */
  1398.     dav_error * (*has_locks)(dav_lockdb *lockdb,
  1399.                              const dav_resource *resource,
  1400.                              int *locks_present);
  1401.  
  1402.     /*
  1403.     ** Append the specified lock(s) to the set of locks on this resource.
  1404.     **
  1405.     ** If "make_indirect" is true (non-zero), then the specified lock(s)
  1406.     ** should be converted to an indirect lock (if it is a direct lock)
  1407.     ** before appending. Note that the conversion to an indirect lock does
  1408.     ** not alter the passed-in lock -- the change is internal the
  1409.     ** append_locks function.
  1410.     **
  1411.     ** Multiple locks are specified using the lock->next links.
  1412.     */
  1413.     dav_error * (*append_locks)(dav_lockdb *lockdb,
  1414.                                 const dav_resource *resource,
  1415.                                 int make_indirect,
  1416.                                 const dav_lock *lock);
  1417.  
  1418.     /*
  1419.     ** Remove any lock that has the specified locktoken.
  1420.     **
  1421.     ** If locktoken == NULL, then ALL locks are removed.
  1422.     */
  1423.     dav_error * (*remove_lock)(dav_lockdb *lockdb,
  1424.                                const dav_resource *resource,
  1425.                                const dav_locktoken *locktoken);
  1426.  
  1427.     /*
  1428.     ** Refresh all locks, found on the specified resource, which has a
  1429.     ** locktoken in the provided list.
  1430.     **
  1431.     ** If the lock is indirect, then the direct lock is referenced and
  1432.     ** refreshed.
  1433.     **
  1434.     ** Each lock that is updated is returned in the <locks> argument.
  1435.     ** Note that the locks will be fully resolved.
  1436.     */
  1437.     dav_error * (*refresh_locks)(dav_lockdb *lockdb,
  1438.                                  const dav_resource *resource,
  1439.                                  const dav_locktoken_list *ltl,
  1440.                                  time_t new_time,
  1441.                                  dav_lock **locks);
  1442.  
  1443.     /*
  1444.     ** Look up the resource associated with a particular locktoken.
  1445.     **
  1446.     ** The search begins at the specified <start_resource> and the lock
  1447.     ** specified by <locktoken>.
  1448.     **
  1449.     ** If the resource/token specifies an indirect lock, then the direct
  1450.     ** lock will be looked up, and THAT resource will be returned. In other
  1451.     ** words, this function always returns the resource where a particular
  1452.     ** lock (token) was asserted.
  1453.     **
  1454.     ** NOTE: this function pointer is allowed to be NULL, indicating that
  1455.     **       the provider does not support this type of functionality. The
  1456.     **       caller should then traverse up the repository hierarchy looking
  1457.     **       for the resource defining a lock with this locktoken.
  1458.     */
  1459.     dav_error * (*lookup_resource)(dav_lockdb *lockdb,
  1460.                                    const dav_locktoken *locktoken,
  1461.                                    const dav_resource *start_resource,
  1462.                                    const dav_resource **resource);
  1463.  
  1464.     /*
  1465.     ** If a provider needs a context to associate with this hooks structure,
  1466.     ** then this field may be used. In most cases, it will just be NULL.
  1467.     */
  1468.     void *ctx;
  1469. };
  1470.  
  1471. /* what types of resources can be discovered by dav_get_resource_state() */
  1472. #define DAV_RESOURCE_LOCK_NULL  10    /* resource lock-null */
  1473. #define DAV_RESOURCE_NULL       11    /* resource null */
  1474. #define DAV_RESOURCE_EXISTS     12    /* resource exists */
  1475. #define DAV_RESOURCE_ERROR      13    /* an error occurred */
  1476.  
  1477.  
  1478. /* --------------------------------------------------------------------
  1479. **
  1480. ** PROPERTY HANDLING
  1481. */
  1482.  
  1483. typedef struct dav_propdb dav_propdb;
  1484.  
  1485.  
  1486. dav_error *dav_open_propdb(
  1487.     request_rec *r,
  1488.     dav_lockdb *lockdb,
  1489.     const dav_resource *resource,
  1490.     int ro,
  1491.     apr_array_header_t *ns_xlate,
  1492.     dav_propdb **propdb);
  1493.  
  1494. void dav_close_propdb(dav_propdb *db);
  1495.  
  1496. dav_get_props_result dav_get_props(
  1497.     dav_propdb *db,
  1498.     apr_xml_doc *doc);
  1499.  
  1500. dav_get_props_result dav_get_allprops(
  1501.     dav_propdb *db,
  1502.     dav_prop_insert what);
  1503.  
  1504. void dav_get_liveprop_supported(
  1505.     dav_propdb *propdb,
  1506.     const char *ns_uri,
  1507.     const char *propname,
  1508.     apr_text_header *body);
  1509.  
  1510. /*
  1511. ** 3-phase property modification.
  1512. **
  1513. **   1) validate props. readable? unlocked? ACLs allow access?
  1514. **   2) execute operation (set/delete)
  1515. **   3) commit or rollback
  1516. **
  1517. ** ### eventually, auth must be available. a ref to the request_rec (which
  1518. ** ### contains the auth info) should be in the shared context struct.
  1519. **
  1520. ** Each function may alter the error values and information contained within
  1521. ** the context record. This should be done as an "increasing" level of
  1522. ** error, rather than overwriting any previous error.
  1523. **
  1524. ** Note that commit() cannot generate errors. It should simply free the
  1525. ** rollback information.
  1526. **
  1527. ** rollback() may generate additional errors because the rollback operation
  1528. ** can sometimes fail(!).
  1529. **
  1530. ** The caller should allocate an array of these, one per operation. It should
  1531. ** be zero-initialized, then the db, operation, and prop fields should be
  1532. ** filled in before calling dav_prop_validate. Note that the set/delete
  1533. ** operations are order-dependent. For a given (logical) context, the same
  1534. ** pointer must be passed to each phase.
  1535. **
  1536. ** error_type is an internal value, but will have the same numeric value
  1537. ** for each possible "desc" value. This allows the caller to group the
  1538. ** descriptions via the error_type variable, rather than through string
  1539. ** comparisons. Note that "status" does not provide enough granularity to
  1540. ** differentiate/group the "desc" values.
  1541. **
  1542. ** Note that the propdb will maintain some (global) context across all
  1543. ** of the property change contexts. This implies that you can have only
  1544. ** one open transaction per propdb.
  1545. */
  1546. typedef struct dav_prop_ctx
  1547. {
  1548.     dav_propdb *propdb;
  1549.  
  1550.     int operation;
  1551. #define DAV_PROP_OP_SET        1    /* set a property value */
  1552. #define DAV_PROP_OP_DELETE     2    /* delete a prop value */
  1553. /* ### add a GET? */
  1554.  
  1555.     apr_xml_elem *prop;             /* property to affect */
  1556.  
  1557.     dav_error *err;                 /* error (if any) */
  1558.  
  1559.     /* private items to the propdb */
  1560.     int is_liveprop;
  1561.     void *liveprop_ctx;
  1562.     struct dav_rollback_item *rollback;  /* optional rollback info */
  1563.  
  1564.     /* private to mod_dav.c */
  1565.     request_rec *r;
  1566.  
  1567. } dav_prop_ctx;
  1568.  
  1569. void dav_prop_validate(dav_prop_ctx *ctx);
  1570. void dav_prop_exec(dav_prop_ctx *ctx);
  1571. void dav_prop_commit(dav_prop_ctx *ctx);
  1572. void dav_prop_rollback(dav_prop_ctx *ctx);
  1573.  
  1574. #define DAV_PROP_CTX_HAS_ERR(dpc)  ((dpc).err && (dpc).err->status >= 300)
  1575.  
  1576.  
  1577. /* --------------------------------------------------------------------
  1578. **
  1579. ** WALKER STRUCTURE
  1580. */
  1581.  
  1582. enum {
  1583.     DAV_CALLTYPE_MEMBER = 1,    /* called for a member resource */
  1584.     DAV_CALLTYPE_COLLECTION,    /* called for a collection */
  1585.     DAV_CALLTYPE_LOCKNULL       /* called for a locknull resource */
  1586. };
  1587.  
  1588. typedef struct
  1589. {
  1590.     /* the client-provided context */
  1591.     void *walk_ctx;
  1592.  
  1593.     /* pool to use for allocations in the callback */
  1594.     apr_pool_t *pool;
  1595.  
  1596.     /* the current resource */
  1597.     const dav_resource *resource;
  1598.  
  1599.     /* OUTPUT: add responses to this */
  1600.     dav_response *response;
  1601.  
  1602. } dav_walk_resource;
  1603.  
  1604. typedef struct
  1605. {
  1606.     int walk_type;
  1607. #define DAV_WALKTYPE_AUTH       0x0001  /* limit to authorized files */
  1608. #define DAV_WALKTYPE_NORMAL     0x0002  /* walk normal files */
  1609. #define DAV_WALKTYPE_LOCKNULL   0x0004  /* walk locknull resources */
  1610.  
  1611.     /* callback function and a client context for the walk */
  1612.     dav_error * (*func)(dav_walk_resource *wres, int calltype);
  1613.     void *walk_ctx;
  1614.  
  1615.     /* what pool to use for allocations needed by walk logic */
  1616.     apr_pool_t *pool;
  1617.  
  1618.     /* beginning root of the walk */
  1619.     const dav_resource *root;
  1620.  
  1621.     /* lock database to enable walking LOCKNULL resources */
  1622.     dav_lockdb *lockdb;
  1623.  
  1624. } dav_walk_params;
  1625.  
  1626. /* directory tree walking context */
  1627. typedef struct dav_walker_ctx
  1628. {
  1629.     /* input: */
  1630.     dav_walk_params w;
  1631.  
  1632.  
  1633.     /* ### client data... phasing out this big glom */
  1634.  
  1635.     /* this brigade buffers data being sent to r->output_filters */ 
  1636.     apr_bucket_brigade *bb;
  1637.  
  1638.     /* a scratch pool, used to stream responses and iteratively cleared. */
  1639.     apr_pool_t *scratchpool;
  1640.  
  1641.     request_rec *r;                 /* original request */
  1642.  
  1643.     /* for PROPFIND operations */
  1644.     apr_xml_doc *doc;
  1645.     int propfind_type;
  1646. #define DAV_PROPFIND_IS_ALLPROP     1
  1647. #define DAV_PROPFIND_IS_PROPNAME    2
  1648. #define DAV_PROPFIND_IS_PROP        3
  1649.  
  1650.     apr_text *propstat_404;         /* (cached) propstat giving a 404 error */
  1651.  
  1652.     const dav_if_header *if_header; /* for validation */
  1653.     const dav_locktoken *locktoken; /* for UNLOCK */
  1654.     const dav_lock *lock;           /* for LOCK */
  1655.     int skip_root;                  /* for dav_inherit_locks() */
  1656.  
  1657.     int flags;
  1658.  
  1659.     dav_buffer work_buf;            /* for dav_validate_request() */
  1660.  
  1661. } dav_walker_ctx;
  1662.  
  1663. DAV_DECLARE(void) dav_add_response(dav_walk_resource *wres,
  1664.                                    int status,
  1665.                                    dav_get_props_result *propstats);
  1666.  
  1667.  
  1668. /* --------------------------------------------------------------------
  1669. **
  1670. ** "STREAM" STRUCTURE
  1671. **
  1672. ** mod_dav uses this abstraction for interacting with the repository
  1673. ** while fetching/storing resources. mod_dav views resources as a stream
  1674. ** of bytes.
  1675. **
  1676. ** Note that the structure is opaque -- it is private to the repository
  1677. ** that created the stream in the repository's "open" function.
  1678. **
  1679. ** ### THIS STUFF IS GOING AWAY ... GET/read requests are handled by
  1680. ** ### having the provider jam stuff straight into the filter stack.
  1681. ** ### this is only left for handling PUT/write requests.
  1682. */
  1683.  
  1684. typedef struct dav_stream dav_stream;
  1685.  
  1686. typedef enum {
  1687.     DAV_MODE_WRITE_TRUNC,      /* truncate and open for writing */
  1688.     DAV_MODE_WRITE_SEEKABLE    /* open for writing; random access */
  1689. } dav_stream_mode;
  1690.  
  1691.  
  1692. /* --------------------------------------------------------------------
  1693. **
  1694. ** REPOSITORY FUNCTIONS
  1695. */
  1696.  
  1697. /* Repository provider hooks */
  1698. struct dav_hooks_repository
  1699. {
  1700.     /* Flag for whether repository requires special GET handling.
  1701.      * If resources in the repository are not visible in the
  1702.      * filesystem location which URLs map to, then special handling
  1703.      * is required to first fetch a resource from the repository,
  1704.      * respond to the GET request, then free the resource copy.
  1705.      */
  1706.     int handle_get;
  1707.  
  1708.     /* Get a resource descriptor for the URI in a request. A descriptor
  1709.      * should always be returned even if the resource does not exist. This
  1710.      * repository has been identified as handling the resource given by
  1711.      * the URI, so an answer must be given. If there is a problem with the
  1712.      * URI or accessing the resource or whatever, then an error should be
  1713.      * returned.
  1714.      *
  1715.      * root_dir:
  1716.      *   the root of the directory for which this repository is configured.
  1717.      *
  1718.      * label:
  1719.      *   if a Label: header is present (and allowed), this is the label
  1720.      *   to use to identify a version resource from the resource's
  1721.      *   corresponding version history. Otherwise, it will be NULL.
  1722.      *
  1723.      * use_checked_in:
  1724.      *   use the DAV:checked-in property of the resource identified by the
  1725.      *   Request-URI to identify and return a version resource
  1726.      *
  1727.      * The provider may associate the request storage pool with the resource
  1728.      * (in the resource->pool field), to use in other operations on that
  1729.      * resource. 
  1730.      */
  1731.     dav_error * (*get_resource)(
  1732.         request_rec *r,
  1733.         const char *root_dir,
  1734.         const char *label,
  1735.         int use_checked_in,
  1736.         dav_resource **resource
  1737.     );
  1738.  
  1739.     /* Get a resource descriptor for the parent of the given resource.
  1740.      * The resources need not exist.  NULL is returned if the resource 
  1741.      * is the root collection.
  1742.      *
  1743.      * An error should be returned only if there is a fatal error in
  1744.      * fetching information about the parent resource.
  1745.      */
  1746.     dav_error * (*get_parent_resource)(
  1747.         const dav_resource *resource,
  1748.         dav_resource **parent_resource
  1749.     );
  1750.  
  1751.     /* Determine whether two resource descriptors refer to the same resource.
  1752.     *
  1753.      * Result != 0 => the resources are the same.
  1754.      */
  1755.     int (*is_same_resource)(
  1756.         const dav_resource *res1,
  1757.         const dav_resource *res2
  1758.     );
  1759.  
  1760.     /* Determine whether one resource is a parent (immediate or otherwise)
  1761.      * of another.
  1762.      *
  1763.      * Result != 0 => res1 is a parent of res2.
  1764.      */
  1765.     int (*is_parent_resource)(
  1766.         const dav_resource *res1,
  1767.         const dav_resource *res2
  1768.     );
  1769.  
  1770.     /*
  1771.     ** Open a stream for this resource, using the specified mode. The
  1772.     ** stream will be returned in *stream.
  1773.     */
  1774.     dav_error * (*open_stream)(const dav_resource *resource,
  1775.                                dav_stream_mode mode,
  1776.                                dav_stream **stream);
  1777.  
  1778.     /*
  1779.     ** Close the specified stream.
  1780.     **
  1781.     ** mod_dav will (ideally) make sure to call this. For safety purposes,
  1782.     ** a provider should (ideally) register a cleanup function with the
  1783.     ** request pool to get this closed and cleaned up.
  1784.     **
  1785.     ** Note the possibility of an error from the close -- it is entirely
  1786.     ** feasible that the close does a "commit" of some kind, which can
  1787.     ** produce an error.
  1788.     **
  1789.     ** commit should be TRUE (non-zero) or FALSE (0) if the stream was
  1790.     ** opened for writing. This flag states whether to retain the file
  1791.     ** or not.
  1792.     ** Note: the commit flag is ignored for streams opened for reading.
  1793.     */
  1794.     dav_error * (*close_stream)(dav_stream *stream, int commit);
  1795.  
  1796.     /*
  1797.     ** Write data to the stream.
  1798.     **
  1799.     ** All of the bytes must be written, or an error should be returned.
  1800.     */
  1801.     dav_error * (*write_stream)(dav_stream *stream,
  1802.                                 const void *buf, apr_size_t bufsize);
  1803.  
  1804.     /*
  1805.     ** Seek to an absolute position in the stream. This is used to support
  1806.     ** Content-Range in a GET/PUT.
  1807.     **
  1808.     ** NOTE: if this function is NULL (which is allowed), then any
  1809.     **       operations using Content-Range will be refused.
  1810.     */
  1811.     dav_error * (*seek_stream)(dav_stream *stream, apr_off_t abs_position);
  1812.  
  1813.     /*
  1814.     ** If a GET is processed using a stream (open_stream, read_stream)
  1815.     ** rather than via a sub-request (on get_pathname), then this function
  1816.     ** is used to provide the repository with a way to set the headers
  1817.     ** in the response.
  1818.     **
  1819.     ** This function may be called without a following deliver(), to
  1820.     ** handle a HEAD request.
  1821.     **
  1822.     ** This may be NULL if handle_get is FALSE.
  1823.     */
  1824.     dav_error * (*set_headers)(request_rec *r,
  1825.                                const dav_resource *resource);
  1826.  
  1827.     /*
  1828.     ** The provider should deliver the resource into the specified filter.
  1829.     ** Basically, this is the response to the GET method.
  1830.     **
  1831.     ** Note that this is called for all resources, including collections.
  1832.     ** The provider should determine what has content to deliver or not.
  1833.     **
  1834.     ** set_headers will be called prior to this function, allowing the
  1835.     ** provider to set the appropriate response headers.
  1836.     **
  1837.     ** This may be NULL if handle_get is FALSE.
  1838.     ** ### maybe toss handle_get and just use this function as the marker
  1839.     */
  1840.     dav_error * (*deliver)(const dav_resource *resource,
  1841.                            ap_filter_t *output);
  1842.  
  1843.     /* Create a collection resource. The resource must not already exist.
  1844.      *
  1845.      * Result == NULL if the collection was created successfully. Also, the
  1846.      * resource object is updated to reflect that the resource exists, and
  1847.      * is a collection.
  1848.      */
  1849.     dav_error * (*create_collection)(
  1850.         dav_resource *resource
  1851.     );
  1852.  
  1853.     /* Copy one resource to another. The destination may exist, if it is
  1854.      * versioned.
  1855.      * Handles both files and collections. Properties are copied as well.
  1856.      * If the destination exists and is versioned, the provider must update
  1857.      * the destination to have identical content to the source,
  1858.      * recursively for collections.
  1859.      * The depth argument is ignored for a file, and can be either 0 or
  1860.      * DAV_INFINITY for a collection.
  1861.      * If an error occurs in a child resource, then the return value is
  1862.      * non-NULL, and *response is set to a multistatus response.
  1863.      * If the copy is successful, the dst resource object is
  1864.      * updated to reflect that the resource exists.
  1865.      */
  1866.     dav_error * (*copy_resource)(
  1867.         const dav_resource *src,
  1868.         dav_resource *dst,
  1869.         int depth,
  1870.         dav_response **response
  1871.     );
  1872.  
  1873.     /* Move one resource to another. The destination must not exist.
  1874.      * Handles both files and collections. Properties are moved as well.
  1875.      * If an error occurs in a child resource, then the return value is
  1876.      * non-NULL, and *response is set to a multistatus response.
  1877.      * If the move is successful, the src and dst resource objects are
  1878.      * updated to reflect that the source no longer exists, and the
  1879.      * destination does.
  1880.      */
  1881.     dav_error * (*move_resource)(
  1882.         dav_resource *src,
  1883.         dav_resource *dst,
  1884.         dav_response **response
  1885.     );
  1886.  
  1887.     /* Remove a resource. Handles both files and collections.
  1888.      * Removes any associated properties as well.
  1889.      * If an error occurs in a child resource, then the return value is
  1890.      * non-NULL, and *response is set to a multistatus response.
  1891.      * If the delete is successful, the resource object is updated to
  1892.      * reflect that the resource no longer exists.
  1893.      */
  1894.     dav_error * (*remove_resource)(
  1895.         dav_resource *resource,
  1896.         dav_response **response
  1897.     );
  1898.  
  1899.     /* Walk a resource hierarchy.
  1900.      *
  1901.      * Iterates over the resource hierarchy specified by params->root.
  1902.      * Control of the walk and the callback are specified by 'params'.
  1903.      *
  1904.      * An error may be returned. *response will contain multistatus
  1905.      * responses (if any) suitable for the body of the error. It is also
  1906.      * possible to return NULL, yet still have multistatus responses.
  1907.      * In this case, typically the caller should return a 207 (Multistatus)
  1908.      * and the responses (in the body) as the HTTP response.
  1909.      */
  1910.     dav_error * (*walk)(const dav_walk_params *params, int depth,
  1911.                         dav_response **response);
  1912.  
  1913.     /* Get the entity tag for a resource */
  1914.     const char * (*getetag)(const dav_resource *resource);
  1915.  
  1916.     /*
  1917.     ** If a provider needs a context to associate with this hooks structure,
  1918.     ** then this field may be used. In most cases, it will just be NULL.
  1919.     */
  1920.     void *ctx;
  1921. };
  1922.  
  1923.  
  1924. /* --------------------------------------------------------------------
  1925. **
  1926. ** VERSIONING FUNCTIONS
  1927. */
  1928.  
  1929.  
  1930. /* dav_add_vary_header
  1931.  *
  1932.  * If there were any headers in the request which require a Vary header
  1933.  * in the response, add it.
  1934.  */
  1935. void dav_add_vary_header(request_rec *in_req,
  1936.                          request_rec *out_req,
  1937.                          const dav_resource *resource);
  1938.  
  1939. /*
  1940. ** Flags specifying auto-versioning behavior, returned by
  1941. ** the auto_versionable hook. The value returned depends
  1942. ** on both the state of the resource and the value of the
  1943. ** DAV:auto-versioning property for the resource.
  1944. **
  1945. ** If the resource does not exist (null or lock-null),
  1946. ** DAV_AUTO_VERSION_ALWAYS causes creation of a new version-controlled resource
  1947. **
  1948. ** If the resource is checked in,
  1949. ** DAV_AUTO_VERSION_ALWAYS causes it to be checked out always,
  1950. ** DAV_AUTO_VERSION_LOCKED causes it to be checked out only when locked
  1951. **
  1952. ** If the resource is checked out,
  1953. ** DAV_AUTO_VERSION_ALWAYS causes it to be checked in always,
  1954. ** DAV_AUTO_VERSION_LOCKED causes it to be checked in when unlocked
  1955. ** (note: a provider should allow auto-checkin only for resources which
  1956. ** were automatically checked out)
  1957. **
  1958. ** In all cases, DAV_AUTO_VERSION_NEVER results in no auto-versioning behavior.
  1959. */
  1960. typedef enum {
  1961.     DAV_AUTO_VERSION_NEVER,
  1962.     DAV_AUTO_VERSION_ALWAYS,
  1963.     DAV_AUTO_VERSION_LOCKED
  1964. } dav_auto_version;
  1965.  
  1966. /*
  1967. ** This structure is used to record what auto-versioning operations
  1968. ** were done to make a resource writable, so that they can be undone
  1969. ** at the end of a request.
  1970. */
  1971. typedef struct {
  1972.     int resource_versioned;             /* 1 => resource was auto-version-controlled */
  1973.     int resource_checkedout;            /* 1 => resource was auto-checked-out */
  1974.     int parent_checkedout;              /* 1 => parent was auto-checked-out */
  1975.     dav_resource *parent_resource;      /* parent resource, if it was needed */
  1976. } dav_auto_version_info;
  1977.  
  1978. /* Ensure that a resource is writable. If there is no versioning
  1979.  * provider, then this is essentially a no-op. Versioning repositories
  1980.  * require explicit resource creation and checkout before they can
  1981.  * be written to. If a new resource is to be created, or an existing
  1982.  * resource deleted, the parent collection must be checked out as well.
  1983.  *
  1984.  * Set the parent_only flag to only make the parent collection writable.
  1985.  * Otherwise, both parent and child are made writable as needed. If the
  1986.  * child does not exist, then a new versioned resource is created and
  1987.  * checked out.
  1988.  *
  1989.  * If auto-versioning is not enabled for a versioned resource, then an error is
  1990.  * returned, since the resource cannot be modified.
  1991.  *
  1992.  * The dav_auto_version_info structure is filled in with enough information
  1993.  * to restore both parent and child resources to the state they were in
  1994.  * before the auto-versioning operations occurred.
  1995.  */
  1996. dav_error *dav_auto_checkout(
  1997.     request_rec *r,
  1998.     dav_resource *resource,
  1999.     int parent_only,
  2000.     dav_auto_version_info *av_info);
  2001.  
  2002. /* Revert the writability of resources back to what they were
  2003.  * before they were modified. If undo == 0, then the resource
  2004.  * modifications are maintained (i.e. they are checked in).
  2005.  * If undo != 0, then resource modifications are discarded
  2006.  * (i.e. they are unchecked out).
  2007.  *
  2008.  * Set the unlock flag to indicate that the resource is about
  2009.  * to be unlocked; it will be checked in if the resource
  2010.  * auto-versioning property indicates it should be. In this case,
  2011.  * av_info is ignored, so it can be NULL.
  2012.  *
  2013.  * The resource argument may be NULL if only the parent resource
  2014.  * was checked out (i.e. the parent_only was != 0 in the
  2015.  * dav_auto_checkout call).
  2016.  */
  2017. dav_error *dav_auto_checkin(
  2018.     request_rec *r,
  2019.     dav_resource *resource,
  2020.     int undo,
  2021.     int unlock,
  2022.     dav_auto_version_info *av_info);
  2023.  
  2024. /*
  2025. ** This structure is used to describe available reports
  2026. **
  2027. ** "nmspace" should be valid XML and URL-quoted. mod_dav will place
  2028. ** double-quotes around it and use it in an xmlns declaration.
  2029. */
  2030. typedef struct {
  2031.     const char *nmspace;        /* namespace of the XML report element */
  2032.     const char *name;           /* element name for the XML report */
  2033. } dav_report_elem;
  2034.  
  2035.  
  2036. /* Versioning provider hooks */
  2037. struct dav_hooks_vsn
  2038. {
  2039.     /*
  2040.     ** MANDATORY HOOKS
  2041.     ** The following hooks are mandatory for all versioning providers;
  2042.     ** they define the functionality needed to implement "core" versioning.
  2043.     */
  2044.  
  2045.     /* Return supported versioning options.
  2046.      * Each dav_text item in the list will be returned as a separate
  2047.      * DAV header. Providers are advised to limit the length of an
  2048.      * individual text item to 63 characters, to conform to the limit
  2049.      * used by MS Web Folders.
  2050.      */
  2051.     void (*get_vsn_options)(apr_pool_t *p, apr_text_header *phdr);
  2052.  
  2053.     /* Get the value of a specific option for an OPTIONS request.
  2054.      * The option being requested is given by the parsed XML
  2055.      * element object "elem". The value of the option should be
  2056.      * appended to the "option" text object.
  2057.      */
  2058.     dav_error * (*get_option)(const dav_resource *resource,
  2059.                               const apr_xml_elem *elem,
  2060.                               apr_text_header *option);
  2061.  
  2062.     /* Determine whether a non-versioned (or non-existent) resource
  2063.      * is versionable. Returns != 0 if resource can be versioned.
  2064.      */
  2065.     int (*versionable)(const dav_resource *resource);
  2066.  
  2067.     /* Determine whether auto-versioning is enabled for a resource
  2068.      * (which may not exist, or may not be versioned). If the resource
  2069.      * is a checked-out resource, the provider must only enable
  2070.      * auto-checkin if the resource was automatically checked out.
  2071.      *
  2072.      * The value returned depends on both the state of the resource
  2073.      * and the value of its DAV:auto-version property. See the description
  2074.      * of the dav_auto_version enumeration above for the details.
  2075.      */
  2076.     dav_auto_version (*auto_versionable)(const dav_resource *resource);
  2077.  
  2078.     /* Put a resource under version control. If the resource already
  2079.      * exists unversioned, then it becomes the initial version of the
  2080.      * new version history, and it is replaced by a version selector
  2081.      * which targets the new version.
  2082.      *
  2083.      * If the resource does not exist, then a new version-controlled
  2084.      * resource is created which either targets an existing version (if the
  2085.      * "target" argument is not NULL), or the initial, empty version
  2086.      * in a new history resource (if the "target" argument is NULL).
  2087.      *
  2088.      * If successful, the resource object state is updated appropriately
  2089.      * (that is, changed to refer to the new version-controlled resource).
  2090.      */
  2091.     dav_error * (*vsn_control)(dav_resource *resource,
  2092.                                const char *target);
  2093.  
  2094.     /* Checkout a resource. If successful, the resource
  2095.      * object state is updated appropriately.
  2096.      *
  2097.      * The auto_checkout flag will be set if this checkout is being
  2098.      * done automatically, as part of some method which modifies
  2099.      * the resource. The provider must remember that the resource
  2100.      * was automatically checked out, so it can determine whether it
  2101.      * can be automatically checked in. (Auto-checkin should only be
  2102.      * enabled for resources which were automatically checked out.)
  2103.      *
  2104.      * If the working resource has a different URL from the
  2105.      * target resource, a dav_resource descriptor is returned
  2106.      * for the new working resource. Otherwise, the original
  2107.      * resource descriptor will refer to the working resource.
  2108.      * The working_resource argument can be NULL if the caller
  2109.      * is not interested in the working resource.
  2110.      *
  2111.      * If the client has specified DAV:unreserved or DAV:fork-ok in the
  2112.      * checkout request, then the corresponding flags are set. If
  2113.      * DAV:activity-set has been specified, then create_activity is set
  2114.      * if DAV:new was specified; otherwise, the DAV:href elements' CDATA
  2115.      * (the actual href text) is passed in the "activities" array (each
  2116.      * element of the array is a const char *). activities will be NULL
  2117.      * no DAV:activity-set was provided or when create_activity is set.
  2118.      */
  2119.     dav_error * (*checkout)(dav_resource *resource,
  2120.                             int auto_checkout,
  2121.                             int is_unreserved, int is_fork_ok,
  2122.                             int create_activity,
  2123.                             apr_array_header_t *activities,
  2124.                             dav_resource **working_resource);
  2125.  
  2126.     /* Uncheckout a checked-out resource. If successful, the resource
  2127.      * object state is updated appropriately.
  2128.      */
  2129.     dav_error * (*uncheckout)(dav_resource *resource);
  2130.  
  2131.     /* Checkin a checked-out resource. If successful, the resource
  2132.      * object state is updated appropriately, and the
  2133.      * version_resource descriptor will refer to the new version.
  2134.      * The version_resource argument can be NULL if the caller
  2135.      * is not interested in the new version resource.
  2136.      *
  2137.      * If the client has specified DAV:keep-checked-out in the checkin
  2138.      * request, then the keep_checked_out flag is set. The provider
  2139.      * should create a new version, but keep the resource in the
  2140.      * checked-out state.
  2141.      */
  2142.     dav_error * (*checkin)(dav_resource *resource,
  2143.                            int keep_checked_out,
  2144.                            dav_resource **version_resource);
  2145.  
  2146.     /*
  2147.     ** Return the set of reports available at this resource.
  2148.     **
  2149.     ** An array of report elements should be returned, with an end-marker
  2150.     ** element containing namespace==NULL. The value of the
  2151.     ** DAV:supported-report-set property will be constructed and
  2152.     ** returned.
  2153.     */
  2154.     dav_error * (*avail_reports)(const dav_resource *resource,
  2155.                                  const dav_report_elem **reports);
  2156.  
  2157.     /*
  2158.     ** Determine whether a Label header can be used
  2159.     ** with a particular report. The dav_xml_doc structure
  2160.     ** contains the parsed report request body.
  2161.     ** Returns 0 if the Label header is not allowed.
  2162.     */
  2163.     int (*report_label_header_allowed)(const apr_xml_doc *doc);
  2164.  
  2165.     /*
  2166.     ** Generate a report on a resource. Since a provider is free
  2167.     ** to define its own reports, and the value of request headers
  2168.     ** may affect the interpretation of a report, the request record
  2169.     ** must be passed to this routine.
  2170.     **
  2171.     ** The dav_xml_doc structure contains the parsed report request
  2172.     ** body. The report response should be generated into the specified
  2173.     ** output filter.
  2174.     **
  2175.     ** If an error occurs, and a response has not yet been generated,
  2176.     ** then an error can be returned from this function. mod_dav will
  2177.     ** construct an appropriate error response. Once some output has
  2178.     ** been placed into the filter, however, the provider should not
  2179.     ** return an error -- there is no way that mod_dav can deliver it
  2180.     ** properly.
  2181.     **
  2182.     ** ### maybe we need a way to signal an error anyways, and then
  2183.     ** ### apache can abort the connection?
  2184.     */
  2185.     dav_error * (*deliver_report)(request_rec *r,
  2186.                                   const dav_resource *resource,
  2187.                                   const apr_xml_doc *doc,
  2188.                                   ap_filter_t *output);
  2189.  
  2190.     /*
  2191.     ** OPTIONAL HOOKS
  2192.     ** The following hooks are optional; if not defined, then the
  2193.     ** corresponding protocol methods will be unsupported.
  2194.     */
  2195.  
  2196.     /*
  2197.     ** Set the state of a checked-in version-controlled resource.
  2198.     **
  2199.     ** If the request specified a version, the version resource
  2200.     ** represents that version. If the request specified a label,
  2201.     ** then "version" is NULL, and "label" is the label.
  2202.     **
  2203.     ** The depth argument is ignored for a file, and can be 0, 1, or
  2204.     ** DAV_INFINITY for a collection. The depth argument only applies
  2205.     ** with a label, not a version.
  2206.     **
  2207.     ** If an error occurs in a child resource, then the return value is
  2208.     ** non-NULL, and *response is set to a multistatus response.
  2209.     **
  2210.     ** This hook is optional; if not defined, then the UPDATE method
  2211.     ** will not be supported.
  2212.     */
  2213.     dav_error * (*update)(const dav_resource *resource,
  2214.                           const dav_resource *version,
  2215.                           const char *label,
  2216.                           int depth,
  2217.                           dav_response **response);
  2218.  
  2219.     /*
  2220.     ** Add a label to a version. The resource is either a specific
  2221.     ** version, or a version selector, in which case the label should
  2222.     ** be added to the current target of the version selector. The
  2223.     ** version selector cannot be checked out.
  2224.     **
  2225.     ** If replace != 0, any existing label by the same name is
  2226.     ** effectively deleted first. Otherwise, it is an error to
  2227.     ** attempt to add a label which already exists on some version
  2228.     ** of the same history resource.
  2229.     **
  2230.     ** This hook is optional; if not defined, then the LABEL method
  2231.     ** will not be supported. If it is defined, then the remove_label
  2232.     ** hook must be defined also.
  2233.     */
  2234.     dav_error * (*add_label)(const dav_resource *resource,
  2235.                              const char *label,
  2236.                              int replace);
  2237.  
  2238.     /*
  2239.     ** Remove a label from a version. The resource is either a specific
  2240.     ** version, or a version selector, in which case the label should
  2241.     ** be added to the current target of the version selector. The
  2242.     ** version selector cannot be checked out.
  2243.     **
  2244.     ** It is an error if no such label exists on the specified version.
  2245.     **
  2246.     ** This hook is optional, but if defined, the add_label hook
  2247.     ** must be defined also.
  2248.     */
  2249.     dav_error * (*remove_label)(const dav_resource *resource,
  2250.                                 const char *label);
  2251.  
  2252.     /*
  2253.     ** Determine whether a null resource can be created as a workspace.
  2254.     ** The provider may restrict workspaces to certain locations.
  2255.     ** Returns 0 if the resource cannot be a workspace.
  2256.     **
  2257.     ** This hook is optional; if the provider does not support workspaces,
  2258.     ** it should be set to NULL.
  2259.     */
  2260.     int (*can_be_workspace)(const dav_resource *resource);
  2261.  
  2262.     /*
  2263.     ** Create a workspace resource. The resource must not already
  2264.     ** exist. Any <DAV:mkworkspace> element is passed to the provider
  2265.     ** in the "doc" structure; it may be empty.
  2266.     **
  2267.     ** If workspace creation is succesful, the state of the resource
  2268.     ** object is updated appropriately.
  2269.     **
  2270.     ** This hook is optional; if the provider does not support workspaces,
  2271.     ** it should be set to NULL.
  2272.     */
  2273.     dav_error * (*make_workspace)(dav_resource *resource,
  2274.                                   apr_xml_doc *doc);
  2275.  
  2276.     /*
  2277.     ** Determine whether a null resource can be created as an activity.
  2278.     ** The provider may restrict activities to certain locations.
  2279.     ** Returns 0 if the resource cannot be an activity.
  2280.     **
  2281.     ** This hook is optional; if the provider does not support activities,
  2282.     ** it should be set to NULL.
  2283.     */
  2284.     int (*can_be_activity)(const dav_resource *resource);
  2285.  
  2286.     /*
  2287.     ** Create an activity resource. The resource must not already
  2288.     ** exist.
  2289.     **
  2290.     ** If activity creation is succesful, the state of the resource
  2291.     ** object is updated appropriately.
  2292.     **
  2293.     ** This hook is optional; if the provider does not support activities,
  2294.     ** it should be set to NULL.
  2295.     */
  2296.     dav_error * (*make_activity)(dav_resource *resource);
  2297.  
  2298.     /*
  2299.     ** Merge a resource (tree) into target resource (tree).
  2300.     **
  2301.     ** ### more doc...
  2302.     **
  2303.     ** This hook is optional; if the provider does not support merging,
  2304.     ** then this should be set to NULL.
  2305.     */
  2306.     dav_error * (*merge)(dav_resource *target, dav_resource *source,
  2307.                          int no_auto_merge, int no_checkout,
  2308.                          apr_xml_elem *prop_elem,
  2309.                          ap_filter_t *output);
  2310.  
  2311.     /*
  2312.     ** If a provider needs a context to associate with this hooks structure,
  2313.     ** then this field may be used. In most cases, it will just be NULL.
  2314.     */
  2315.     void *ctx;
  2316. };
  2317.  
  2318.  
  2319. /* --------------------------------------------------------------------
  2320. **
  2321. ** BINDING FUNCTIONS
  2322. */
  2323.  
  2324. /* binding provider hooks */
  2325. struct dav_hooks_binding {
  2326.  
  2327.     /* Determine whether a resource can be the target of a binding.
  2328.      * Returns 0 if the resource cannot be a binding target.
  2329.      */
  2330.     int (*is_bindable)(const dav_resource *resource);
  2331.  
  2332.     /* Create a binding to a resource.
  2333.      * The resource argument is the target of the binding;
  2334.      * the binding argument must be a resource which does not already
  2335.      * exist.
  2336.      */
  2337.     dav_error * (*bind_resource)(const dav_resource *resource,
  2338.                                  dav_resource *binding);
  2339.  
  2340.     /*
  2341.     ** If a provider needs a context to associate with this hooks structure,
  2342.     ** then this field may be used. In most cases, it will just be NULL.
  2343.     */
  2344.     void *ctx;
  2345.  
  2346. };
  2347.  
  2348.  
  2349. /* --------------------------------------------------------------------
  2350. **
  2351. ** SEARCH(DASL) FUNCTIONS
  2352. */
  2353.  
  2354. /* search provider hooks */
  2355. struct dav_hooks_search {
  2356.     /* Set header for a OPTION method
  2357.      * An error may be returned.
  2358.      * To set a hadder, this function might call
  2359.      * apr_table_setn(r->headers_out, "DASL", dasl_optin1);
  2360.      *
  2361.      * Examples:
  2362.      * DASL: <DAV:basicsearch>
  2363.      * DASL: <http://foo.bar.com/syntax1>
  2364.      * DASL: <http://akuma.com/syntax2>
  2365.      */
  2366.     dav_error * (*set_option_head)(request_rec *r);
  2367.  
  2368.     /* Search resources
  2369.      * An error may be returned. *response will contain multistatus
  2370.      * responses (if any) suitable for the body of the error. It is also
  2371.      * possible to return NULL, yet still have multistatus responses.
  2372.      * In this case, typically the caller should return a 207 (Multistatus)
  2373.      * and the responses (in the body) as the HTTP response.
  2374.      */
  2375.     dav_error * (*search_resource)(request_rec *r,
  2376.                                    dav_response **response);
  2377.  
  2378.     /*
  2379.     ** If a provider needs a context to associate with this hooks structure,
  2380.     ** then this field may be used. In most cases, it will just be NULL.
  2381.     */
  2382.     void *ctx;
  2383.  
  2384. };
  2385.  
  2386.  
  2387. /* --------------------------------------------------------------------
  2388. **
  2389. ** MISCELLANEOUS STUFF
  2390. */
  2391.  
  2392. /* fetch the "LimitXMLRequestBody" in force for this resource */
  2393. apr_size_t dav_get_limit_xml_body(const request_rec *r);
  2394.  
  2395. typedef struct {
  2396.     int propid;                          /* live property ID */
  2397.     const dav_hooks_liveprop *provider;  /* the provider defining this prop */
  2398. } dav_elem_private;    
  2399.  
  2400. #ifdef __cplusplus
  2401. }
  2402. #endif
  2403.  
  2404. #endif /* _MOD_DAV_H_ */
  2405.