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
|
#define HTTPD_TEST_REQUIRE_APACHE 2.3
#if CONFIG_FOR_HTTPD_TEST
<IfModule mod_session.c>
<Location /sessiontest>
Session Off
TestSession On
SetHandler test-session-handler
</Location>
<Location /sessiontest/on>
Session On
SessionHeader X-Test-Session-Override
</Location>
<Location /sessiontest/on/encode>
TestSessionEncoder On
</Location>
<IfModule mod_include.c>
Alias /sessiontest/on/env/on @DocumentRoot@/modules/session
<Directory @DocumentRoot@/modules/session>
Session On
SessionEnv Off
TestSession On
Options +IncludesNOEXEC
</Directory>
<Location /sessiontest/on/env>
SetHandler None
</Location>
<Location /sessiontest/on/env/on>
SessionEnv On
</Location>
</IfModule>
<Location /sessiontest/on/expire>
SessionMaxAge 100
</Location>
<IfModule mod_version.c>
<IfVersion >= 2.4.41>
<Location /sessiontest/on/expire/cache>
SessionExpiryUpdateInterval 50
</Location>
</IfVersion>
</IfModule>
<Location /sessiontest/on/include>
SessionInclude /sessiontest/on/include/yes
SessionExclude /sessiontest/on/include/yes/no
</Location>
</IfModule>
#endif
#include "apr_strings.h"
#include "mod_session.h"
#define APACHE_HTTPD_TEST_EXTRA_HOOKS extra_hooks
#define APACHE_HTTPD_TEST_CHILD_INIT test_session_init
#define APACHE_HTTPD_TEST_HANDLER test_session_handler
#define APACHE_HTTPD_TEST_COMMANDS test_session_cmds
#define APACHE_HTTPD_TEST_PER_DIR_CREATE test_session_dcfg_create
#define APACHE_HTTPD_TEST_PER_DIR_MERGE test_session_dcfg_merge
#include "apache_httpd_test.h"
#define TEST_SESSION_HANDLER "test-session-handler"
#define TEST_SESSION_ENCODER "test-session-encoder"
#define TEST_SESSION_NOTE "mod_test_session"
#define TEST_SESSION_HEADER "X-Test-Session-Override"
#define TEST_SESSION_ENCODING_PREFIX "TestEncoded:"
typedef struct {
int session;
int session_set;
int encoder;
int encoder_set;
} test_session_dcfg_t;
typedef enum {
TEST_SESSION_ACTION_NONE,
TEST_SESSION_ACTION_GET,
TEST_SESSION_ACTION_SET
} TestSessionAction;
module AP_MODULE_DECLARE_DATA test_session_module;
static APR_OPTIONAL_FN_TYPE(ap_session_get) *ap_session_get_fn = NULL;
static APR_OPTIONAL_FN_TYPE(ap_session_set) *ap_session_set_fn = NULL;
static APR_OPTIONAL_FN_TYPE(ap_session_load) *ap_session_load_fn = NULL;
static APR_OPTIONAL_FN_TYPE(ap_session_save) *ap_session_save_fn = NULL;
static void test_session_init(apr_pool_t *p, server_rec *s)
{
ap_session_get_fn = APR_RETRIEVE_OPTIONAL_FN(ap_session_get);
ap_session_set_fn = APR_RETRIEVE_OPTIONAL_FN(ap_session_set);
ap_session_save_fn = APR_RETRIEVE_OPTIONAL_FN(ap_session_save);
ap_session_load_fn = APR_RETRIEVE_OPTIONAL_FN(ap_session_load);
}
static apr_status_t test_session_load(request_rec * r, session_rec ** z)
{
session_rec *zz;
test_session_dcfg_t *dconf = ap_get_module_config(r->per_dir_config,
&test_session_module);
if (!dconf || !dconf->session)
return DECLINED;
zz = (session_rec *)apr_table_get(r->notes, TEST_SESSION_NOTE);
if (!zz) {
/* Create the session using the query string as the data. */
char *data = apr_pstrdup(r->pool, r->args);
if (data) {
int result = ap_unescape_urlencoded(data);
if (result)
return result;
}
zz = (session_rec *)apr_pcalloc(r->pool, sizeof(session_rec));
zz->pool = r->pool;
zz->entries = apr_table_make(r->pool, 10);
zz->encoded = data;
apr_table_setn(r->notes, TEST_SESSION_NOTE, (char *)zz);
}
*z = zz;
return OK;
}
static apr_status_t test_session_save(request_rec * r, session_rec * z)
{
test_session_dcfg_t *dconf = ap_get_module_config(r->per_dir_config,
&test_session_module);
if (!dconf || !dconf->session)
return DECLINED;
/* Save the session into headers. */
apr_table_setn(r->headers_out, "X-Test-Session-Dirty",
z->dirty ? "1" : "0");
apr_table_set(r->headers_out, "X-Test-Session", z->encoded);
return OK;
}
static apr_status_t test_session_encode(request_rec * r, session_rec * z)
{
test_session_dcfg_t *dconf = ap_get_module_config(r->per_dir_config,
&test_session_module);
if (!dconf || !dconf->encoder)
return DECLINED;
/* Simple encoding by adding a prefix. */
z->encoded = apr_pstrcat(r->pool, TEST_SESSION_ENCODING_PREFIX,
z->encoded, NULL);
return OK;
}
static apr_status_t test_session_decode(request_rec * r, session_rec * z)
{
const size_t prefix_len = strlen(TEST_SESSION_ENCODING_PREFIX);
test_session_dcfg_t *dconf = ap_get_module_config(r->per_dir_config,
&test_session_module);
if (!dconf || !dconf->encoder || !z->encoded)
return DECLINED;
/* Simple decoding by removing a prefix. */
if (!strncmp(z->encoded, TEST_SESSION_ENCODING_PREFIX, prefix_len)) {
z->encoded += prefix_len;
return OK;
}
return HTTP_BAD_REQUEST;
}
static int test_session_get(request_rec *r, char *name)
{
session_rec *z = NULL;
const char *value = NULL;
apr_status_t result = ap_session_load_fn(r, &z);
if (result == OK)
result = ap_session_get_fn(r, z, name, &value);
if (result == OK) {
if (value)
result = ap_rputs(value, r) > 0 ? OK : HTTP_INTERNAL_SERVER_ERROR;
else
result = HTTP_NOT_FOUND;
}
return result;
}
static int test_session_set(request_rec *r, char *name, char *value)
{
session_rec *z = NULL;
apr_status_t result = ap_session_load_fn(r, &z);
if (result == OK)
result = ap_session_set_fn(r, z, name, value);
return result;
}
static int test_session_handler(request_rec *r)
{
const char *overrides = NULL;
if (strcmp(r->handler, TEST_SESSION_HANDLER))
return DECLINED;
/* Copy the header for SessionHeader from the request to the response. */
if ((overrides = apr_table_get(r->headers_in, TEST_SESSION_HEADER)))
apr_table_setn(r->headers_out, TEST_SESSION_HEADER, overrides);
/* Additional commands to test the session API via POST. */
if (r->method_number == M_POST) {
char *fieldName = NULL;
char *fieldValue = NULL;
apr_array_header_t *pairs = NULL;
apr_status_t result;
TestSessionAction action;
if (!ap_session_get_fn || !ap_session_set_fn ||
!ap_session_load_fn || !ap_session_save_fn)
return HTTP_INTERNAL_SERVER_ERROR;
action = TEST_SESSION_ACTION_NONE;
result = ap_parse_form_data(r, NULL, &pairs, 3, 1024);
if (result != OK)
return result;
while (pairs && !apr_is_empty_array(pairs)) {
ap_form_pair_t *pair = (ap_form_pair_t *)apr_array_pop(pairs);
if (!strcmp(pair->name, "action")) {
apr_size_t len;
char *value = NULL;
result = apr_brigade_pflatten(pair->value, &value, &len,
r->pool);
if (result == OK && !strncmp(value, "get", len))
action = TEST_SESSION_ACTION_GET;
else if (result == OK && !strncmp(value, "set", len))
action = TEST_SESSION_ACTION_SET;
else
return HTTP_BAD_REQUEST;
}
else if (!strcmp(pair->name, "name")) {
apr_off_t off;
apr_size_t len;
apr_brigade_length(pair->value, 1, &off);
len = (apr_size_t)off;
fieldName = apr_pcalloc(r->pool, sizeof(char) * len + 1);
result = apr_brigade_flatten(pair->value, fieldName, &len);
}
else if (!strcmp(pair->name, "value")) {
apr_off_t off;
apr_size_t len;
apr_brigade_length(pair->value, 1, &off);
len = (apr_size_t)off;
fieldValue = apr_pcalloc(r->pool, sizeof(char) * len + 1);
result = apr_brigade_flatten(pair->value, fieldValue, &len);
}
else {
return HTTP_BAD_REQUEST;
}
if (result != OK)
return result;
}
switch (action) {
case TEST_SESSION_ACTION_GET:
return test_session_get(r, fieldName);
case TEST_SESSION_ACTION_SET:
return test_session_set(r, fieldName, fieldValue);
default:
return HTTP_BAD_REQUEST;
}
}
return OK;
}
static void *test_session_dcfg_create(apr_pool_t *p, char *dummy)
{
return apr_pcalloc(p, sizeof(test_session_dcfg_t));
}
static void *test_session_dcfg_merge(apr_pool_t * p, void *basev, void *addv)
{
test_session_dcfg_t *add = addv;
test_session_dcfg_t *base = basev;
test_session_dcfg_t *new = apr_pcalloc(p, sizeof(test_session_dcfg_t));
new->session = (add->session_set == 0) ? base->session : add->session;
new->session_set = add->session_set || base->session_set;
new->encoder = (add->encoder_set == 0) ? base->encoder : add->encoder;
new->encoder_set = add->encoder_set || base->encoder_set;
return new;
}
static const char *set_session_enable(cmd_parms * parms, void *dconf, int flag)
{
test_session_dcfg_t *conf = dconf;
conf->session = flag;
conf->session_set = 1;
return NULL;
}
static const char *set_encoder_enable(cmd_parms * parms, void *dconf, int flag)
{
test_session_dcfg_t *conf = dconf;
conf->encoder = flag;
conf->encoder_set = 1;
return NULL;
}
static const command_rec test_session_cmds[] = {
AP_INIT_FLAG("TestSession", set_session_enable, NULL, OR_ALL,
"Enable test sessions"),
AP_INIT_FLAG("TestSessionEncoder", set_encoder_enable, NULL, OR_ALL,
"Enable test session encoding"),
{ NULL }
};
static void extra_hooks(apr_pool_t *pool)
{
ap_hook_session_load(test_session_load,
NULL, NULL, APR_HOOK_MIDDLE);
ap_hook_session_save(test_session_save,
NULL, NULL, APR_HOOK_MIDDLE);
ap_hook_session_encode(test_session_encode,
NULL, NULL, APR_HOOK_MIDDLE);
ap_hook_session_decode(test_session_decode,
NULL, NULL, APR_HOOK_MIDDLE);
}
APACHE_HTTPD_TEST_MODULE(test_session);
|