-
Notifications
You must be signed in to change notification settings - Fork 38
/
mod_xsendfile.c
713 lines (636 loc) · 18.2 KB
/
mod_xsendfile.c
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
/****
* Copyright 2006-2012 by Nils Maier
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Contributors:
* Nils Maier <[email protected]>
* Ben Timby - URL decoding
* Jake Rhee - X-SENDFILE-TEMPORARY
****/
/****
* mod_xsendfile.c: Process X-SENDFILE header cgi/scripts may set
* Written by Nils Maier, March 2006
*
* Whenever an X-SENDFILE header occures in the response headers drop
* the body and send the replacement file idenfitied by this header instead.
*
* Method inspired by lighttpd <http://lighttpd.net/>
* Code inspired by mod_headers, mod_rewrite and such
*
* Installation:
* apxs2 -cia mod_xsendfile.c
****/
/* Version: 1.0 */
#include "apr.h"
#include "apr_lib.h"
#include "apr_strings.h"
#include "apr_buckets.h"
#include "apr_file_io.h"
#include "apr_hash.h"
#define APR_WANT_IOVEC
#define APR_WANT_STRFUNC
#include "apr_want.h"
#include "httpd.h"
#include "http_log.h"
#include "http_config.h"
#include "http_log.h"
#define CORE_PRIVATE
#include "http_request.h"
#include "http_core.h" /* needed for per-directory core-config */
#include "util_filter.h"
#include "http_protocol.h" /* ap_hook_insert_error_filter */
#define AP_XSENDFILE_HEADER "X-SENDFILE"
#define AP_XSENDFILETEMPORARY_HEADER "X-SENDFILE-TEMPORARY"
module AP_MODULE_DECLARE_DATA xsendfile_module;
typedef enum {
XSENDFILE_UNSET = 0,
XSENDFILE_ENABLED = 1<<0,
XSENDFILE_DISABLED = 1<<1
} xsendfile_conf_active_t;
typedef struct xsendfile_conf_t {
xsendfile_conf_active_t enabled;
xsendfile_conf_active_t ignoreETag;
xsendfile_conf_active_t ignoreLM;
xsendfile_conf_active_t unescape;
apr_array_header_t *paths;
apr_array_header_t *temporaryPaths;
} xsendfile_conf_t;
/* structure to hold the path and permissions */
typedef struct xsendfile_path_t {
const char *path;
int allowFileDelete;
} xsendfile_path_t;
static xsendfile_conf_t *xsendfile_config_create(apr_pool_t *p) {
xsendfile_conf_t *conf;
conf = (xsendfile_conf_t *) apr_pcalloc(p, sizeof(xsendfile_conf_t));
conf->unescape =
conf->ignoreETag =
conf->ignoreLM =
conf->enabled =
XSENDFILE_UNSET;
conf->paths = apr_array_make(p, 1, sizeof(xsendfile_path_t));
return conf;
}
static void *xsendfile_config_server_create(apr_pool_t *p, server_rec *s) {
return (void*)xsendfile_config_create(p);
}
#define XSENDFILE_CFLAG(x) conf->x = overrides->x != XSENDFILE_UNSET ? overrides->x : base->x
static void *xsendfile_config_merge(apr_pool_t *p, void *basev, void *overridesv) {
xsendfile_conf_t *base = (xsendfile_conf_t *)basev;
xsendfile_conf_t *overrides = (xsendfile_conf_t *)overridesv;
xsendfile_conf_t *conf;
conf = (xsendfile_conf_t *) apr_pcalloc(p, sizeof(xsendfile_conf_t));
XSENDFILE_CFLAG(enabled);
XSENDFILE_CFLAG(ignoreETag);
XSENDFILE_CFLAG(ignoreLM);
XSENDFILE_CFLAG(unescape);
conf->paths = apr_array_append(p, overrides->paths, base->paths);
return (void*)conf;
}
#undef XSENDFILE_CFLAG
static void *xsendfile_config_perdir_create(apr_pool_t *p, char *path) {
return (void*)xsendfile_config_create(p);
}
static const char *xsendfile_cmd_flag(cmd_parms *cmd, void *perdir_confv,
int flag) {
xsendfile_conf_t *conf = (xsendfile_conf_t *)perdir_confv;
if (!cmd->path) {
conf = (xsendfile_conf_t*)ap_get_module_config(
cmd->server->module_config,
&xsendfile_module
);
}
if (!conf) {
return "Cannot get configuration object";
}
if (!strcasecmp(cmd->cmd->name, "xsendfile")) {
conf->enabled = flag ? XSENDFILE_ENABLED : XSENDFILE_DISABLED;
}
else if (!strcasecmp(cmd->cmd->name, "xsendfileignoreetag")) {
conf->ignoreETag = flag ? XSENDFILE_ENABLED: XSENDFILE_DISABLED;
}
else if (!strcasecmp(cmd->cmd->name, "xsendfileignorelastmodified")) {
conf->ignoreLM = flag ? XSENDFILE_ENABLED: XSENDFILE_DISABLED;
}
else if (!strcasecmp(cmd->cmd->name, "xsendfileunescape")) {
conf->unescape = flag ? XSENDFILE_ENABLED: XSENDFILE_DISABLED;
}
else {
return apr_psprintf(
cmd->pool,
"Not a valid command in this context: %s %s",
cmd->cmd->name,
flag ? "On": "Off"
);
}
return NULL;
}
static const char *xsendfile_cmd_path(cmd_parms *cmd, void *pdc,
const char *path, const char *allowFileDelete) {
xsendfile_conf_t *conf = (xsendfile_conf_t*)ap_get_module_config(
cmd->server->module_config,
&xsendfile_module
);
xsendfile_path_t *newpath = (xsendfile_path_t*)apr_array_push(conf->paths);
newpath->path = apr_pstrdup(cmd->pool, path);
newpath->allowFileDelete = (allowFileDelete && strcmp(allowFileDelete, "AllowFileDelete") == 0) ? 1: 0;
return NULL;
}
/*
little helper function to get the original request path
code borrowed from request.c and util_script.c
*/
static const char *ap_xsendfile_get_orginal_path(request_rec *rec) {
const char
*rv = rec->the_request,
*last;
int dir = 0;
size_t uri_len;
/* skip method && spaces */
while (*rv && !apr_isspace(*rv)) {
++rv;
}
while (apr_isspace(*rv)) {
++rv;
}
/* first space is the request end */
last = rv;
while (*last && !apr_isspace(*last)) {
++last;
}
uri_len = last - rv;
if (!uri_len) {
return NULL;
}
/* alright, lets see if the request_uri changed! */
if (strncmp(rv, rec->uri, uri_len) == 0) {
rv = apr_pstrdup(rec->pool, rec->filename);
dir = rec->finfo.filetype == APR_DIR;
}
else {
/* need to lookup the url again as it changed */
request_rec *sr = ap_sub_req_lookup_uri(
apr_pstrmemdup(rec->pool, rv, uri_len),
rec,
NULL
);
if (!sr) {
return NULL;
}
rv = apr_pstrdup(rec->pool, sr->filename);
dir = rec->finfo.filetype == APR_DIR;
ap_destroy_sub_req(sr);
}
/* now we need to truncate so we only have the directory */
if (!dir && (last = ap_strrchr(rv, '/')) != NULL) {
*((char*)last + 1) = '\0';
}
return rv;
}
/*
little helper function to build the file path if available
*/
static apr_status_t ap_xsendfile_get_filepath(request_rec *r,
xsendfile_conf_t *conf, const char *file, int shouldDeleteFile,
/* out */ char **path) {
apr_status_t rv;
apr_array_header_t *patharr;
const xsendfile_path_t *paths;
int i;
patharr = conf->paths;
if (!shouldDeleteFile) {
const char *root = ap_xsendfile_get_orginal_path(r);
if (root) {
xsendfile_path_t *newpath;
#ifdef _DEBUG
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, "xsendfile: path is %s", root);
#endif
patharr = apr_array_make(
r->pool,
conf->paths->nelts + 1,
sizeof(xsendfile_path_t)
);
newpath = apr_array_push(patharr);
newpath->path = root;
newpath->allowFileDelete = 0;
apr_array_cat(patharr, conf->paths);
}
}
if (patharr->nelts == 0) {
return APR_EBADPATH;
}
paths = (const xsendfile_path_t*)patharr->elts;
for (i = 0; i < patharr->nelts; ++i) {
if (shouldDeleteFile && !paths[i].allowFileDelete){
continue;
}
if ((rv = apr_filepath_merge(
path,
paths[i].path,
file,
APR_FILEPATH_TRUENAME | APR_FILEPATH_NOTABOVEROOT,
r->pool
)) == OK) {
break;
}
}
if (rv != OK) {
*path = NULL;
}
return rv;
}
static apr_status_t ap_xsendfile_output_filter(ap_filter_t *f, apr_bucket_brigade *in) {
request_rec *r = f->r, *sr = NULL;
xsendfile_conf_t
*dconf = ap_get_module_config(r->per_dir_config, &xsendfile_module),
*sconf = ap_get_module_config(r->server->module_config, &xsendfile_module),
*conf = xsendfile_config_merge(r->pool, sconf, dconf);
core_dir_config *coreconf = ap_get_module_config(r->per_dir_config, &core_module);
apr_status_t rv;
apr_bucket *e;
apr_file_t *fd = NULL;
apr_finfo_t finfo;
char *file = NULL;
char *translated = NULL;
int errcode;
int shouldDeleteFile = 0;
#ifdef _DEBUG
ap_log_error(
APLOG_MARK,
APLOG_DEBUG,
0,
r->server,
"xsendfile: output_filter for %s",
r->the_request
);
#endif
/*
should we proceed with this request?
* sub-requests suck
* furthermore default-handled requests suck, as they actually shouldn't be able to set headers
*/
if (
r->status != HTTP_OK
|| r->main
|| (r->handler && strcmp(r->handler, "default-handler") == 0)
) {
#ifdef _DEBUG
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, "xsendfile: not met [%d]", r->status);
#endif
ap_remove_output_filter(f);
return ap_pass_brigade(f->next, in);
}
/*
alright, look for x-sendfile
*/
file = (char*)apr_table_get(r->headers_out, AP_XSENDFILE_HEADER);
/* cgi/fastcgi will put the stuff into err_headers_out */
if (!file || !*file) {
file = (char*)apr_table_get(r->err_headers_out, AP_XSENDFILE_HEADER);
}
/*
so...there is no X-SendFile header, check if there is an X-Sendfile-Temporary header
*/
if (!file || !*file) {
shouldDeleteFile = 1;
file = (char*)apr_table_get(r->headers_out, AP_XSENDFILETEMPORARY_HEADER);
}
/*
Maybe X-Sendfile-Temporary is set via cgi in error_headers_out?
*/
if (!file || !*file) {
file = (char*)apr_table_get(r->err_headers_out, AP_XSENDFILETEMPORARY_HEADER);
}
/* Remove any X-Sendfile headers */
apr_table_unset(r->headers_out, AP_XSENDFILE_HEADER);
apr_table_unset(r->err_headers_out, AP_XSENDFILE_HEADER);
apr_table_unset(r->headers_out, AP_XSENDFILETEMPORARY_HEADER);
apr_table_unset(r->err_headers_out, AP_XSENDFILETEMPORARY_HEADER);
/* nothing there :p */
if (!file || !*file) {
#ifdef _DEBUG
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, "xsendfile: nothing found");
#endif
ap_remove_output_filter(f);
return ap_pass_brigade(f->next, in);
}
/*
drop *everything*
might be pretty expensive to generate content first that goes straight to the bitbucket,
but actually the scripts that might set this flag won't output too much anyway
*/
while (!APR_BRIGADE_EMPTY(in)) {
e = APR_BRIGADE_FIRST(in);
apr_bucket_delete(e);
}
r->eos_sent = 0;
/* as we dropped all the content this field is not valid anymore! */
apr_table_unset(r->headers_out, "Content-Length");
apr_table_unset(r->err_headers_out, "Content-Length");
apr_table_unset(r->headers_out, "Content-Encoding");
apr_table_unset(r->err_headers_out, "Content-Encoding");
/* Decode header
lighttpd does the same for X-Sendfile2, so we're compatible here
*/
if (conf->unescape != XSENDFILE_DISABLED) {
rv = ap_unescape_url(file);
if (rv != OK) {
/* Unescaping failed, probably due to bad encoding.
Note that NOT_FOUND refers to escape sequences containing slashes,
what we do not allow (use real slashes only)
*/
ap_log_rerror(
APLOG_MARK,
APLOG_ERR,
rv,
r,
"xsendfile: bad file name encoding"
);
ap_remove_output_filter(f);
ap_die(HTTP_INTERNAL_SERVER_ERROR, r);
return HTTP_INTERNAL_SERVER_ERROR;
}
}
/* lookup/verification of the given path */
rv = ap_xsendfile_get_filepath(
r,
conf,
file,
shouldDeleteFile,
&translated
);
if (rv != OK) {
ap_log_rerror(
APLOG_MARK,
APLOG_ERR,
rv,
r,
"xsendfile: unable to find file: %s",
file
);
ap_remove_output_filter(f);
ap_die(HTTP_NOT_FOUND, r);
return HTTP_NOT_FOUND;
}
#ifdef _DEBUG
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, "xsendfile: found %s", translated);
#endif
/*
try open the file
*/
if ((rv = apr_file_open(
&fd,
translated,
APR_READ | APR_BINARY
| (shouldDeleteFile ? APR_DELONCLOSE : 0) /* if this is a temporary file, delete on close */
#if APR_HAS_SENDFILE
| (coreconf->enable_sendfile != ENABLE_SENDFILE_OFF ? APR_SENDFILE_ENABLED : 0)
#endif
,
0,
r->pool
)) != APR_SUCCESS) {
ap_log_rerror(
APLOG_MARK,
APLOG_ERR,
rv,
r,
"xsendfile: cannot open file: %s",
translated
);
ap_remove_output_filter(f);
ap_die(HTTP_NOT_FOUND, r);
return HTTP_NOT_FOUND;
}
#if APR_HAS_SENDFILE && defined(_DEBUG)
if (coreconf->enable_sendfile == ENABLE_SENDFILE_OFF) {
ap_log_error(
APLOG_MARK,
APLOG_WARNING,
0,
r->server,
"xsendfile: sendfile configured, but not active %d",
coreconf->enable_sendfile
);
}
#endif
/* stat (for etag/cache/content-length stuff) */
if ((rv = apr_file_info_get(&finfo, APR_FINFO_NORM, fd)) != APR_SUCCESS) {
ap_log_rerror(
APLOG_MARK,
APLOG_ERR,
rv,
r,
"xsendfile: unable to stat file: %s",
translated
);
apr_file_close(fd);
ap_remove_output_filter(f);
ap_die(HTTP_FORBIDDEN, r);
return HTTP_FORBIDDEN;
}
/* no inclusion of directories! we're serving files! */
if (finfo.filetype != APR_REG) {
ap_log_rerror(
APLOG_MARK,
APLOG_ERR,
APR_EBADPATH,
r,
"xsendfile: not a file %s",
translated
);
apr_file_close(fd);
ap_remove_output_filter(f);
ap_die(HTTP_NOT_FOUND, r);
return HTTP_NOT_FOUND;
}
/*
need to cheat here a bit
as etag generator will use those ;)
and we want local_copy and cache
*/
r->finfo.inode = finfo.inode;
r->finfo.size = finfo.size;
/*
caching? why not :p
*/
r->no_cache = r->no_local_copy = 0;
/* some script (f?cgi) place stuff in err_headers_out */
if (
conf->ignoreLM == XSENDFILE_ENABLED
|| (
!apr_table_get(r->headers_out, "last-modified")
&& !apr_table_get(r->err_headers_out, "last-modified")
)
) {
apr_table_unset(r->err_headers_out, "last-modified");
ap_update_mtime(r, finfo.mtime);
ap_set_last_modified(r);
}
if (
conf->ignoreETag == XSENDFILE_ENABLED
|| (
!apr_table_get(r->headers_out, "etag")
&& !apr_table_get(r->err_headers_out, "etag")
)
) {
apr_table_unset(r->err_headers_out, "etag");
ap_set_etag(r);
}
ap_set_content_length(r, finfo.size);
/* cache or something? */
if ((errcode = ap_meets_conditions(r)) != OK) {
#ifdef _DEBUG
ap_log_error(
APLOG_MARK,
APLOG_DEBUG,
0,
r->server,
"xsendfile: met condition %d for %s",
errcode,
file
);
#endif
apr_file_close(fd);
r->status = errcode;
}
else {
/* For platforms where the size of the file may be larger than
* that which can be stored in a single bucket (where the
* length field is an apr_size_t), split it into several
* buckets: */
if (sizeof(apr_off_t) > sizeof(apr_size_t)
&& finfo.size > AP_MAX_SENDFILE) {
apr_off_t fsize = finfo.size;
e = apr_bucket_file_create(fd, 0, AP_MAX_SENDFILE, r->pool,
in->bucket_alloc);
while (fsize > AP_MAX_SENDFILE) {
apr_bucket *ce;
apr_bucket_copy(e, &ce);
APR_BRIGADE_INSERT_TAIL(in, ce);
e->start += AP_MAX_SENDFILE;
fsize -= AP_MAX_SENDFILE;
}
e->length = (apr_size_t)fsize; /* Resize just the last bucket */
}
else {
e = apr_bucket_file_create(fd, 0, (apr_size_t)finfo.size,
r->pool, in->bucket_alloc);
}
#if APR_HAS_MMAP
if (coreconf->enable_mmap == ENABLE_MMAP_ON) {
apr_bucket_file_enable_mmap(e, 0);
}
#if defined(_DEBUG)
else {
ap_log_error(
APLOG_MARK,
APLOG_WARNING,
0,
r->server,
"xsendfile: mmap configured, but not active %d",
coreconf->enable_mmap
);
}
#endif /* _DEBUG */
#endif /* APR_HAS_MMAP */
APR_BRIGADE_INSERT_TAIL(in, e);
}
e = apr_bucket_eos_create(in->bucket_alloc);
APR_BRIGADE_INSERT_TAIL(in, e);
/* remove ourselves from the filter chain */
ap_remove_output_filter(f);
#ifdef _DEBUG
ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, "xsendfile: sending %d bytes", (int)finfo.size);
#endif
/* send the data up the stack */
return ap_pass_brigade(f->next, in);
}
static void ap_xsendfile_insert_output_filter(request_rec *r) {
xsendfile_conf_active_t enabled = ((xsendfile_conf_t *)ap_get_module_config(r->per_dir_config, &xsendfile_module))->enabled;
if (XSENDFILE_UNSET == enabled) {
enabled = ((xsendfile_conf_t*)ap_get_module_config(r->server->module_config, &xsendfile_module))->enabled;
}
if (XSENDFILE_ENABLED != enabled) {
return;
}
ap_add_output_filter(
"XSENDFILE",
NULL,
r,
r->connection
);
}
static const command_rec xsendfile_command_table[] = {
AP_INIT_FLAG(
"XSendFile",
xsendfile_cmd_flag,
NULL,
OR_FILEINFO,
"On|Off - Enable/disable(default) processing"
),
AP_INIT_FLAG(
"XSendFileIgnoreEtag",
xsendfile_cmd_flag,
NULL,
OR_FILEINFO,
"On|Off - Ignore script provided Etag headers (default: Off)"
),
AP_INIT_FLAG(
"XSendFileIgnoreLastModified",
xsendfile_cmd_flag,
NULL,
OR_FILEINFO,
"On|Off - Ignore script provided Last-Modified headers (default: Off)"
),
AP_INIT_FLAG(
"XSendFileUnescape",
xsendfile_cmd_flag,
NULL,
OR_FILEINFO,
"On|Off - Unescape/url-decode the value of the header (default: On)"
),
AP_INIT_TAKE12(
"XSendFilePath",
xsendfile_cmd_path,
NULL,
RSRC_CONF|ACCESS_CONF,
"Allow to serve files from that Path. Must be absolute"
),
{ NULL }
};
static void xsendfile_register_hooks(apr_pool_t *p) {
ap_register_output_filter(
"XSENDFILE",
ap_xsendfile_output_filter,
NULL,
AP_FTYPE_CONTENT_SET
);
ap_hook_insert_filter(
ap_xsendfile_insert_output_filter,
NULL,
NULL,
APR_HOOK_LAST + 1
);
}
module AP_MODULE_DECLARE_DATA xsendfile_module = {
STANDARD20_MODULE_STUFF,
xsendfile_config_perdir_create,
xsendfile_config_merge,
xsendfile_config_server_create,
xsendfile_config_merge,
xsendfile_command_table,
xsendfile_register_hooks
};
/* vim: set ts=2 sw=2 et : */