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
|
/******************************************************************************
* $Id$
*
* Project: MapServer
* Purpose: MapCache tile caching CGI and FastCGI main program
* Author: Thomas Bonfort and the MapServer team.
*
******************************************************************************
* Copyright (c) 1996-2011 Regents of the University of Minnesota.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies of this Software or works derived from this Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
#include "mapcache-cgi-config.h"
#include "mapcache.h"
#include <stdlib.h>
#include <apr_strings.h>
#include <apr_pools.h>
#include <apr_file_io.h>
#include <signal.h>
#include <apr_date.h>
#ifdef USE_FASTCGI
#include <fcgi_stdio.h>
#endif
#ifndef WIN32
extern char** environ;
#endif
typedef struct mapcache_context_fcgi mapcache_context_fcgi;
typedef struct mapcache_context_fcgi_request mapcache_context_fcgi_request;
static char *err400 = "Bad Request";
static char *err404 = "Not Found";
static char *err500 = "Internal Server Error";
static char *err501 = "Not Implemented";
static char *err502 = "Bad Gateway";
static char *errother = "No Description";
apr_pool_t *global_pool = NULL,*config_pool, *tmp_config_pool;
static char* err_msg(int code)
{
switch(code) {
case 400:
return err400;
case 404:
return err404;
case 500:
return err500;
case 501:
return err501;
case 502:
return err502;
default:
return errother;
}
}
struct mapcache_context_fcgi {
mapcache_context ctx;
};
static mapcache_context* fcgi_context_clone(mapcache_context *ctx)
{
mapcache_context_fcgi *newctx = (mapcache_context_fcgi*)apr_pcalloc(ctx->pool,
sizeof(mapcache_context_fcgi));
mapcache_context *nctx = (mapcache_context*)newctx;
mapcache_context_copy(ctx,nctx);
apr_pool_create(&nctx->pool,ctx->pool);
return nctx;
}
static void fcgi_context_log(mapcache_context *c, mapcache_log_level level, char *message, ...)
{
va_list args;
if(!c->config || level >= c->config->loglevel) {
va_start(args,message);
fprintf(stderr,"%s\n",apr_pvsprintf(c->pool,message,args));
va_end(args);
}
}
static void handle_signal(int signal)
{
apr_pool_destroy(global_pool);
exit(signal);
}
static mapcache_context_fcgi* fcgi_context_create()
{
mapcache_context_fcgi *ctx = apr_pcalloc(global_pool, sizeof(mapcache_context_fcgi));
if(!ctx) {
return NULL;
}
ctx->ctx.pool = global_pool;
mapcache_context_init((mapcache_context*)ctx);
ctx->ctx.log = fcgi_context_log;
ctx->ctx.clone = fcgi_context_clone;
ctx->ctx.config = NULL;
return ctx;
}
static void fcgi_write_response(mapcache_context_fcgi *ctx, mapcache_http_response *response)
{
if(response->code != 200) {
printf("Status: %ld %s\r\n",response->code, err_msg(response->code));
}
if(response->headers && !apr_is_empty_table(response->headers)) {
const apr_array_header_t *elts = apr_table_elts(response->headers);
int i;
for(i=0; i<elts->nelts; i++) {
apr_table_entry_t entry = APR_ARRAY_IDX(elts,i,apr_table_entry_t);
printf("%s: %s\r\n", entry.key, entry.val);
}
}
if(response->mtime) {
char *datestr;
char *if_modified_since = getenv("HTTP_IF_MODIFIED_SINCE");
datestr = apr_palloc(ctx->ctx.pool, APR_RFC822_DATE_LEN);
apr_rfc822_date(datestr, response->mtime);
printf("Last-Modified: %s\r\n", datestr);
if(if_modified_since) {
apr_time_t ims_time;
apr_int64_t ims,mtime;
mtime = apr_time_sec(response->mtime);
ims_time = apr_date_parse_http(if_modified_since);
ims = apr_time_sec(ims_time);
if(ims >= mtime) {
printf("Status: 304 Not Modified\r\n");
/*
* "The 304 response MUST NOT contain a message-body"
* https://tools.ietf.org/html/rfc2616#section-10.3.5
*/
printf("\r\n");
return;
}
}
}
if(response->data) {
printf("Content-Length: %ld\r\n\r\n", response->data->size);
fwrite((char*)response->data->buf, response->data->size,1,stdout);
}
}
apr_time_t mtime;
char *conffile;
static void load_config(mapcache_context *ctx, char *filename)
{
apr_file_t *f;
apr_finfo_t finfo;
mapcache_cfg *old_cfg;
mapcache_cfg *cfg;
if((apr_file_open(&f, filename, APR_FOPEN_READ, APR_UREAD | APR_GREAD,
global_pool)) == APR_SUCCESS) {
apr_file_info_get(&finfo, APR_FINFO_MTIME, f);
apr_file_close(f);
} else {
if(!ctx->pool) ctx->pool = global_pool;
ctx->set_error(ctx,500,"failed to open config file %s",filename);
return;
}
if(ctx->config) {
//we already have a loaded configuration, check that the config file hasn't changed
if(finfo.mtime > mtime) {
ctx->log(ctx,MAPCACHE_INFO,"config file has changed, reloading");
} else {
return;
}
}
mtime = finfo.mtime;
/* either we have no config, or it has changed */
old_cfg = ctx->config;
apr_pool_create(&tmp_config_pool,global_pool);
cfg = mapcache_configuration_create(tmp_config_pool);
ctx->config = cfg;
ctx->pool = tmp_config_pool;
mapcache_configuration_parse(ctx,conffile,cfg,1);
if(GC_HAS_ERROR(ctx)) goto failed_load;
mapcache_configuration_post_config(ctx, cfg);
if(GC_HAS_ERROR(ctx)) goto failed_load;
if(mapcache_config_services_enabled(ctx,cfg) <= 0) {
ctx->set_error(ctx,500,"no mapcache <service>s configured/enabled, no point in continuing.");
goto failed_load;
}
/* no error, destroy the previous pool if we are reloading the config */
if(config_pool) {
apr_pool_destroy(config_pool);
}
config_pool = tmp_config_pool;
mapcache_cache_child_init(ctx,cfg,config_pool);
if (GC_HAS_ERROR(ctx)) goto failed_load;
mapcache_connection_pool_create(cfg, &ctx->connection_pool, config_pool);
return;
failed_load:
/* we failed to load the config file */
if(config_pool) {
/* we already have a running configuration, keep it and only log the error to not
* interrupt the already running service */
ctx->log(ctx,MAPCACHE_ERROR,"failed to reload config file %s: %s", conffile,ctx->get_error_message(ctx));
ctx->clear_errors(ctx);
ctx->config = old_cfg;
ctx->pool = config_pool;
apr_pool_destroy(tmp_config_pool);
}
}
static void set_headers(mapcache_context* ctx, char** env)
{
// add all environ settings including HTTP headers to
// a ctx->headers_in apr_table_t
char * key, * val, * kvp, * pair;
int i;
int num_env_var;
apr_table_t* headers;
num_env_var = 0;
while (env[num_env_var] != NULL)
num_env_var++;
headers = apr_table_make(ctx->pool, num_env_var);
for (i = 0; env[i] != NULL; i++) {
kvp = apr_pstrdup(ctx->pool, env[i]);
// convert HTTP header keys from the form HTTP_MY_HEADER to MY-HEADER
key = apr_strtok(kvp, "=", &pair);
key = mapcache_util_str_replace(ctx->pool, key, "HTTP_", "");
key = mapcache_util_str_replace_all(ctx->pool, key, "_", "-");
val = apr_strtok(NULL, "=", &pair);
if (val != NULL) {
apr_table_addn(headers, key, val);
}
else {
apr_table_addn(headers, key, "");
}
}
ctx->headers_in = headers;
}
int main(int argc, const char **argv)
{
mapcache_context_fcgi* globalctx;
mapcache_context* ctx;
apr_table_t *params;
mapcache_request *request = NULL;
char *pathInfo;
mapcache_http_response *http_response;
(void) signal(SIGTERM,handle_signal);
#ifndef _WIN32
(void) signal(SIGUSR1,handle_signal);
#endif
apr_initialize();
atexit(apr_terminate);
if(apr_pool_create(&global_pool,NULL) != APR_SUCCESS) {
return 1;
}
config_pool = NULL;
globalctx = fcgi_context_create();
ctx = (mapcache_context*)globalctx;
conffile = getenv("MAPCACHE_CONFIG_FILE");
#ifdef DEBUG
if(!conffile) {
int i;
for(i=1; i<argc; i++) {
if( strncmp(argv[i], "-c", 2) == 0 ) {
conffile = strdup(argv[i+1]);
putenv( "REQUEST_METHOD=GET" );
} else if( strncmp(argv[i], "QUERY_STRING=", 13) == 0 ) {
putenv( strdup(argv[i]) );
} else if( strncmp(argv[i], "PATH_INFO=", 10) == 0 ) {
putenv( strdup(argv[i]) );
}
}
}
#endif
if(!conffile) {
ctx->log(ctx,MAPCACHE_ERROR,"no config file found in MAPCACHE_CONFIG_FILE environment");
return 1;
}
ctx->log(ctx,MAPCACHE_INFO,"mapcache fcgi conf file: %s",conffile);
#ifdef USE_FASTCGI
while (FCGI_Accept() >= 0) {
#endif
ctx->pool = config_pool;
if(!ctx->config || ctx->config->autoreload) {
load_config(ctx,conffile);
if(GC_HAS_ERROR(ctx)) {
fcgi_write_response(globalctx, mapcache_core_respond_to_error(ctx));
goto cleanup;
}
}
apr_pool_create(&(ctx->pool),config_pool);
request = NULL;
pathInfo = getenv("PATH_INFO");
params = mapcache_http_parse_param_string(ctx, getenv("QUERY_STRING"));
mapcache_service_dispatch_request(ctx,&request,pathInfo,params,ctx->config);
if(GC_HAS_ERROR(ctx) || !request) {
fcgi_write_response(globalctx, mapcache_core_respond_to_error(ctx));
goto cleanup;
}
set_headers(ctx, environ);
http_response = NULL;
if(request->type == MAPCACHE_REQUEST_GET_CAPABILITIES) {
mapcache_request_get_capabilities *req = (mapcache_request_get_capabilities*)request;
char *host = getenv("SERVER_NAME");
char *port = getenv("SERVER_PORT");
char *fullhost;
char *url;
if(getenv("HTTPS")) {
if(!port || !strcmp(port,"443")) {
fullhost = apr_psprintf(ctx->pool,"https://%s",host);
} else {
fullhost = apr_psprintf(ctx->pool,"https://%s:%s",host,port);
}
} else {
if(!port || !strcmp(port,"80")) {
fullhost = apr_psprintf(ctx->pool,"http://%s",host);
} else {
fullhost = apr_psprintf(ctx->pool,"http://%s:%s",host,port);
}
}
url = apr_psprintf(ctx->pool,"%s%s/",
fullhost,
getenv("SCRIPT_NAME")
);
http_response = mapcache_core_get_capabilities(ctx,request->service,req,url,pathInfo,ctx->config);
} else if( request->type == MAPCACHE_REQUEST_GET_TILE) {
mapcache_request_get_tile *req_tile = (mapcache_request_get_tile*)request;
http_response = mapcache_core_get_tile(ctx,req_tile);
} else if( request->type == MAPCACHE_REQUEST_PROXY ) {
mapcache_request_proxy *req_proxy = (mapcache_request_proxy*)request;
http_response = mapcache_core_proxy_request(ctx, req_proxy);
// Content-Length is added again in fcgi_write_response
apr_table_unset(http_response->headers, "Content-Length");
} else if( request->type == MAPCACHE_REQUEST_GET_MAP) {
mapcache_request_get_map *req_map = (mapcache_request_get_map*)request;
http_response = mapcache_core_get_map(ctx,req_map);
} else if( request->type == MAPCACHE_REQUEST_GET_FEATUREINFO) {
mapcache_request_get_feature_info *req_fi = (mapcache_request_get_feature_info*)request;
http_response = mapcache_core_get_featureinfo(ctx,req_fi);
#ifdef DEBUG
} else {
ctx->set_error(ctx,500,"###BUG### unknown request type");
#endif
}
if(GC_HAS_ERROR(ctx)) {
fcgi_write_response(globalctx, mapcache_core_respond_to_error(ctx));
goto cleanup;
}
#ifdef DEBUG
if(!http_response) {
ctx->set_error(ctx,500,"###BUG### NULL response");
fcgi_write_response(globalctx, mapcache_core_respond_to_error(ctx));
goto cleanup;
}
#endif
fcgi_write_response(globalctx,http_response);
cleanup:
#ifdef USE_FASTCGI
apr_pool_destroy(ctx->pool);
ctx->clear_errors(ctx);
}
#endif
apr_pool_destroy(global_pool);
apr_terminate();
return 0;
}
/* vim: ts=2 sts=2 et sw=2
*/
|