-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver_config.h
144 lines (119 loc) · 4.4 KB
/
server_config.h
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
/* $Id$ */
/* Copyright 2003-2004 Edward Rudd
*
* 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.
*/
#include "http_config.h"
static const char *ap_set_server_string_slot(cmd_parms *cmd,
void *struct_ptr,
const char *arg) __attribute__ ((unused));
static const char *ap_set_server_flag_slot(cmd_parms *cmd,
void *struct_ptr,
int arg) __attribute__ ((unused));
static const char *ap_set_server_int_slot(cmd_parms *cmd,
void *struct_ptr,
const char *arg) __attribute__ ((unused));
static const char *ap_set_server_string_slot_lower(cmd_parms *cmd,
void *struct_ptr,
const char *arg_) __attribute__ ((unused));
static const char *ap_set_server_file_slot(cmd_parms *cmd, void *struct_ptr,
const char *arg) __attribute__ ((unused));
/* implementation */
static const char *ap_set_server_flag_slot(cmd_parms *cmd,
void *struct_ptr,
int arg)
{
int offset = (int)(long)cmd->info;
void *ptr = ap_get_module_config(cmd->server->module_config,
&MODULE_NAME);
const char *err = ap_check_cmd_context(cmd,NOT_IN_DIR_LOC_FILE|NOT_IN_LIMIT);
if (err) {
return err;
}
*(int *)((char *)ptr + offset) = arg ? 1 : 0;
return NULL;
}
static const char *ap_set_server_int_slot(cmd_parms *cmd,
void *struct_ptr,
const char *arg)
{
char *endptr;
char *error_str = NULL;
int offset = (int)(long)cmd->info;
void *ptr = ap_get_module_config(cmd->server->module_config,
&MODULE_NAME);
const char *err = ap_check_cmd_context(cmd,NOT_IN_DIR_LOC_FILE|NOT_IN_LIMIT);
if (err) {
return err;
}
*(int *)((char *)ptr + offset) = strtol(arg, &endptr, 10);
if ((*arg == '\0') || (*endptr != '\0')) {
error_str = apr_psprintf(cmd->pool,
"Invalid value for the directive %s, exptected integer",
cmd->directive->directive);
}
return error_str;
}
static const char *ap_set_server_string_slot(cmd_parms *cmd,
void *struct_ptr,
const char *arg)
{
int offset = (int)(long)cmd->info;
void *ptr = ap_get_module_config(cmd->server->module_config,
&MODULE_NAME);
const char *err = ap_check_cmd_context(cmd,NOT_IN_DIR_LOC_FILE|NOT_IN_LIMIT);
if (err) {
return err;
}
*(const char **)((char *)ptr + offset) = arg;
return NULL;
}
static const char *ap_set_server_string_slot_lower(cmd_parms *cmd,
void *struct_ptr,
const char *arg_)
{
char *arg = apr_pstrdup(cmd->pool,arg_);
int offset = (int)(long)cmd->info;
void *ptr = ap_get_module_config(cmd->server->module_config,
&MODULE_NAME);
const char *err = ap_check_cmd_context(cmd,NOT_IN_DIR_LOC_FILE|NOT_IN_LIMIT);
if (err) {
return err;
}
ap_str_tolower(arg);
*(char **)((char *)ptr + offset) = arg;
return NULL;
}
static const char *ap_set_server_file_slot(cmd_parms *cmd, void *struct_ptr,
const char *arg)
{
/* Prepend server_root to relative arg.
* This allows most args to be independent of server_root,
* so the server can be moved or mirrored with less pain.
*/
const char *path;
int offset = (int)(long)cmd->info;
void *ptr = ap_get_module_config(cmd->server->module_config,
&MODULE_NAME);
const char *err = ap_check_cmd_context(cmd,NOT_IN_DIR_LOC_FILE|NOT_IN_LIMIT);
if (err) {
return err;
}
path = ap_server_root_relative(cmd->pool, arg);
if (!path) {
return apr_pstrcat(cmd->pool, "Invalid file path ",
arg, NULL);
}
*(const char **) ((char*)ptr + offset) = path;
return NULL;
}