File: dav_main.c

package info (click to toggle)
webcit 917-dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 9,164 kB
  • sloc: ansic: 34,213; sh: 4,455; makefile: 346; xml: 91; sed: 9
file content (357 lines) | stat: -rw-r--r-- 7,820 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
/*
 * Entry point for GroupDAV functions
 *
 * Copyright (c) 2005-2012 by the citadel.org team
 *
 * This program is open source software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License, version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include "webcit.h"
#include "webserver.h"
#include "dav.h"

CtxType CTX_DAVNS = CTX_NONE;
extern HashList *HandlerHash;

HashList *DavNamespaces = NULL;

/*
 * Output HTTP headers which are common to all requests.
 *
 * Please observe that we don't use the usual output_headers()
 * and wDumpContent() functions in the GroupDAV subsystem, so we
 * do our own header stuff here.
 *
 */
void dav_common_headers(void) {
	hprintf(
		"Server: %s / %s\r\n"
		"Connection: close\r\n",
		PACKAGE_STRING, ChrPtr(WC->serv_info->serv_software)
	);
}



/*
 * string conversion function
 */
void euid_escapize(char *target, const char *source) {
	int i, len;
	int target_length = 0;

	strcpy(target, "");
	len = strlen(source);
	for (i=0; i<len; ++i) {
		if ( (isalnum(source[i])) || (source[i]=='-') || (source[i]=='_') ) {
			target[target_length] = source[i];
			target[++target_length] = 0;
		}
		else {
			sprintf(&target[target_length], "=%02X", (0xFF & source[i]));
			target_length += 3;
		}
	}
}

/*
 * string conversion function
 */
void euid_unescapize(char *target, const char *source) {
	int a, b, len;
	char hex[3];
	int target_length = 0;

	strcpy(target, "");

	len = strlen(source);
	for (a = 0; a < len; ++a) {
		if (source[a] == '=') {
			hex[0] = source[a + 1];
			hex[1] = source[a + 2];
			hex[2] = 0;
			b = 0;
			b = decode_hex(hex);
			target[target_length] = b;
			target[++target_length] = 0;
			a += 2;
		}
		else {
			target[target_length] = source[a];
			target[++target_length] = 0;
		}
	}
}




/*
 * Main entry point for GroupDAV requests
 */
void dav_main(void)
{
	wcsession *WCC = WC;
	int i, len;

	syslog(LOG_DEBUG, "dav_main() called, logged_in=%d", WCC->logged_in );

	StrBufUnescape(WCC->Hdr->HR.ReqLine, 0);
	StrBufStripSlashes(WCC->Hdr->HR.ReqLine, 0);

	/*
	 * If there's an If-Match: header, strip out the quotes if present, and
	 * then if all that's left is an asterisk, make it go away entirely.
	 */
	len = StrLength(WCC->Hdr->HR.dav_ifmatch);
	if (len > 0) {
		StrBufTrim(WCC->Hdr->HR.dav_ifmatch);
		if (ChrPtr(WCC->Hdr->HR.dav_ifmatch)[0] == '\"') {
			StrBufCutLeft(WCC->Hdr->HR.dav_ifmatch, 1);
			len --;
			for (i=0; i<len; ++i) {
				if (ChrPtr(WCC->Hdr->HR.dav_ifmatch)[i] == '\"') {
					StrBufCutAt(WCC->Hdr->HR.dav_ifmatch, i, NULL);
					len = StrLength(WCC->Hdr->HR.dav_ifmatch);
				}
			}
		}
		if (!strcmp(ChrPtr(WCC->Hdr->HR.dav_ifmatch), "*")) {
			FlushStrBuf(WCC->Hdr->HR.dav_ifmatch);
		}
	}

	switch (WCC->Hdr->HR.eReqType)
	{
	/*
	 * The OPTIONS method is not required by GroupDAV but it will be
	 * needed for future implementations of other DAV-based protocols.
	 */
	case eOPTIONS:
		dav_options();
		break;

	/*
	 * The PROPFIND method is basically used to list all objects in a
	 * room, or to list all relevant rooms on the server.
	 */
	case ePROPFIND:
		dav_propfind();
		break;

	/*
	 * The GET method is used for fetching individual items.
	 */
	case eGET:
		dav_get();
		break;
	
	/*
	 * The PUT method is used to add or modify items.
	 */
	case ePUT:
		dav_put();
		break;
	
	/*
	 * The DELETE method kills, maims, and destroys.
	 */
	case eDELETE:
		dav_delete();
		break;

	/*
	 * The REPORT method tells us that Mike Shaver is a self-righteous asshole.
	 */
	case eREPORT:
		dav_report();
		break;

	default:
	/*
	 * Couldn't find what we were looking for.  Die in a car fire.
	 */
		hprintf("HTTP/1.1 501 Method not implemented\r\n");
		dav_common_headers();
		hprintf("Content-Type: text/plain\r\n");
		wc_printf("GroupDAV method \"%s\" is not implemented.\r\n",
			ReqStrs[WCC->Hdr->HR.eReqType]);
		end_burst();
	}
}


/*
 * Output our host prefix for globally absolute URL's.
 */  
void dav_identify_host(void) {
	wc_printf("%s", ChrPtr(site_prefix));
}


void tmplput_dav_HOSTNAME(StrBuf *Target, WCTemplputParams *TP) 
{
	StrBufAppendPrintf(Target, "%s", ChrPtr(site_prefix));
}

/*
 * Output our host prefix for globally absolute URL's.
 */  
void dav_identify_hosthdr(void) {
	hprintf("%s", ChrPtr(site_prefix));
}


void Header_HandleIfMatch(StrBuf *Line, ParsedHttpHdrs *hdr)
{
	hdr->HR.dav_ifmatch = Line;
}
	

void Header_HandleDepth(StrBuf *Line, ParsedHttpHdrs *hdr)
{
	if (!strcasecmp(ChrPtr(Line), "infinity")) {
		hdr->HR.dav_depth = 32767;
	}
	else if (strcmp(ChrPtr(Line), "0") == 0) {
		hdr->HR.dav_depth = 0;
	}
	else if (strcmp(ChrPtr(Line), "1") == 0) {
		hdr->HR.dav_depth = 1;
	}
}


int Conditional_DAV_DEPTH(StrBuf *Target, WCTemplputParams *TP)
{
	return WC->Hdr->HR.dav_depth == GetTemplateTokenNumber(Target, TP, 2, 0);
}


void RegisterDAVNamespace(const char * UrlString, 
			  long UrlSLen, 
			  const char *DisplayName, 
			  long dslen, 
			  WebcitHandlerFunc F, 
			  WebcitRESTDispatchID RID,
			  long Flags)
{
	void *vHandler;

	/* first put it in... */
	WebcitAddUrlHandler(UrlString, UrlSLen, DisplayName, dslen, F, Flags|PARSE_REST_URL);
	/* get it out again... */
	GetHash(HandlerHash, UrlString, UrlSLen, &vHandler);
	((WebcitHandler*)vHandler)->RID = RID;
	/* and keep a copy of it, so we can compare it later */
	Put(DavNamespaces, UrlString, UrlSLen, vHandler, reference_free_handler);
}


int Conditional_DAV_NS(StrBuf *Target, WCTemplputParams *TP)
{
	wcsession *WCC = WC;
	void *vHandler;
	const char *NS;
	long NSLen;

	GetTemplateTokenString(NULL, TP, 2, &NS, &NSLen);
	GetHash(HandlerHash, NS, NSLen, &vHandler);
	return WCC->Hdr->HR.Handler == vHandler;
}


int Conditional_DAV_NSCURRENT(StrBuf *Target, WCTemplputParams *TP)
{
	wcsession *WCC = WC;
	void *vHandler;

	vHandler = CTX(CTX_NONE);
	return WCC->Hdr->HR.Handler == vHandler;
}


void tmplput_DAV_NAMESPACE(StrBuf *Target, WCTemplputParams *TP)
{
	wcsession *WCC = WC;

	if (TP->Filter.ContextType == CTX_DAVNS) {
		WebcitHandler *H;
		H = (WebcitHandler*) CTX(CTX_DAVNS);
		if (H != NULL)
			StrBufAppendTemplate(Target, TP, H->Name, 0);
	}
	else if (WCC->Hdr->HR.Handler != NULL) {
		StrBufAppendTemplate(Target, TP, WCC->Hdr->HR.Handler->Name, 0);
	}
}


int GroupdavDispatchREST(RESTDispatchID WhichAction, int IgnoreFloor)
{
	wcsession *WCC = WC;
	void *vDir;
	
	switch(WhichAction){
	case ExistsID:
		GetHash(WCC->Directory, IKEY(WCC->ThisRoom->nRoomNameParts + 1), &vDir);
		return locate_message_by_uid(ChrPtr((StrBuf*)vDir)) != -1;
		/* TODO: remember euid */
	case PutID:
	case DeleteID:
		break;


	}
	return 0;
}


void
ServerStartModule_DAV
(void)
{

	DavNamespaces = NewHash(1, NULL);
}


void 
ServerShutdownModule_DAV
(void)
{
	DeleteHash(&DavNamespaces);
}


void 
InitModule_GROUPDAV
(void)
{
	RegisterCTX(CTX_DAVNS);
	RegisterDAVNamespace(HKEY("groupdav"), HKEY("GroupDAV"), 
			     dav_main, GroupdavDispatchREST, 
			     XHTTP_COMMANDS|COOKIEUNNEEDED|FORCE_SESSIONCLOSE
	);

	RegisterNamespace("DAV:HOSTNAME", 0, 0, tmplput_dav_HOSTNAME, NULL, CTX_NONE);

	RegisterConditional("COND:DAV:NS", 0, Conditional_DAV_NS,  CTX_NONE);

	RegisterIterator("DAV:NS", 0, DavNamespaces, NULL, 
			 NULL, NULL, CTX_DAVNS, CTX_NONE, IT_NOFLAG
	);

	RegisterConditional("COND:DAV:NSCURRENT", 0, Conditional_DAV_NSCURRENT,  CTX_DAVNS);
	RegisterNamespace("DAV:NAMESPACE", 0, 1, tmplput_DAV_NAMESPACE, NULL, CTX_NONE);

	RegisterHeaderHandler(HKEY("IF-MATCH"), Header_HandleIfMatch);
	RegisterHeaderHandler(HKEY("DEPTH"), Header_HandleDepth);
	RegisterConditional("COND:DAV:DEPTH", 1, Conditional_DAV_DEPTH,  CTX_NONE);
}