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
|
/*
* SPL - The SPL Programming Language
* Copyright (C) 2004, 2005 Clifford Wolf <clifford@clifford.at>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* webspl_common.c: Common functions for webspl.c and webspld
*/
#define _GNU_SOURCE
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <assert.h>
#include <unistd.h>
#include <stdarg.h>
#include <errno.h>
#include <dirent.h>
#include <utime.h>
#ifndef USEWIN32API
# include <fnmatch.h>
#endif
#include "spl.h"
#include "webspl_common.h"
#include "compat.h"
void create_dumpdir(const char *basedir)
{
char *dumpdir;
my_asprintf(&dumpdir, "%s/webspl_cache", basedir ? basedir : ".");
#ifndef USEWIN32API
mkdir(dumpdir, 0700);
#else
mkdir(dumpdir);
#endif
free(dumpdir);
}
void expire_dumpdir(const char *basedir, int timeout, int interval)
{
char *dumpdir;
char *timestamp_file;
int dumpdir_len;
struct stat statbuf;
time_t now = time(0);
DIR *dir = 0;
my_asprintf(&dumpdir, "%s/webspl_cache", basedir ? basedir : ".");
my_asprintf(×tamp_file, "%s/LAST_EXPIRE", dumpdir);
dumpdir_len = strlen(dumpdir);
#ifdef USEWIN32API
if (stat(timestamp_file, &statbuf) || (statbuf.st_mtime+interval < now))
#else
if (lstat(timestamp_file, &statbuf) || (statbuf.st_mtime+interval < now))
#endif
dir = opendir(dumpdir);
if (dir) {
struct dirent *ent;
while ((ent=readdir(dir)) != NULL) {
int filename_len = dumpdir_len + strlen(ent->d_name) + 2;
char filename[filename_len];
snprintf(filename, filename_len, "%s/%s", dumpdir, ent->d_name);
#ifdef USEWIN32API
if (!stat(filename, &statbuf)) {
#else
if (!lstat(filename, &statbuf)) {
#endif
if (statbuf.st_mtime+timeout < now)
unlink(filename);
}
}
closedir(dir);
#ifdef USEWIN32API
close(open(timestamp_file, O_WRONLY|O_CREAT, 0666));
#else
close(open(timestamp_file, O_WRONLY|O_NONBLOCK|O_CREAT|O_NOCTTY, 0666));
#endif
utime(timestamp_file, NULL);
}
free(timestamp_file);
free(dumpdir);
}
char *get_new_session()
{
static char sid_chars[]="0123456789abcdefghijklmnopqrstuvwxyz"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ";
char ch, *ret = strdup("XXXXXXXXXXXXXXXXXXXXXXXX");
int fd = open("/dev/urandom", O_RDONLY|MY_O_BINARY);
for (int i=0; fd>0 && i<20; i++) {
if ( read(fd, &ch,1) != 1 ) continue;
ret[i] = sid_chars[ch % (sizeof(sid_chars)-1)];
}
close(fd);
long randat = (getpid()<<16) ^ (getpid()<<24) ^ ~time(0);
for (int i=20; i<24; i++) {
ret[i] = sid_chars[ randat % (sizeof(sid_chars)-1) ];
randat = randat >> 8;
}
return ret;
}
static void cgi_config_read_file(struct cgi_config *cfg, char *configfile, char *scriptpath)
{
FILE *f = fopen(configfile, "rt");
if (!f) return;
int active = 0;
char buffer[1024];
while (fgets(buffer, 1024, f) != 0) {
if (*buffer == '[') {
char *pattern = buffer + strspn(buffer, "[ \r\n\t");
int pattern_len = strcspn(pattern, "] \r\n\t");
pattern[pattern_len] = 0;
#if !defined USEWIN32API && !defined USEIRIXAPI
active = !fnmatch(pattern, scriptpath, FNM_PATHNAME|FNM_LEADING_DIR);
#else
// Win32 has no fnmatch() function. -> Never match.
active = !strcmp(pattern, scriptpath);
#endif
} else
if (*buffer == '#') {
/* nothing to do */
} else
if (active) {
char *name = buffer + strspn(buffer, " \r\n\t");
int name_len = strcspn(name, "= \r\n\t");
char *value = (name+name_len) + strspn(name+name_len, "= \r\n\t");
int value_len = strcspn(value, "\r\n");
name[name_len] = 0;
value[value_len] = 0;
for (value_len--; value_len>=0 && (value[value_len] == ' ' || value[value_len] == '\t'); value_len--)
value[value_len] = 0;
if (*name && *value) {
struct cgi_config_item *cfg_item = malloc(sizeof(struct cgi_config_item));
cfg_item->name = strdup(name);
cfg_item->value = strdup(value);
cfg_item->next = cfg->items;
cfg->items = cfg_item;
}
}
}
fclose(f);
}
struct cgi_config *cgi_config_read(char *path)
{
struct cgi_config *cfg = malloc(sizeof(struct cgi_config));
cfg->items = 0;
char *path_start = path;
char *path_sep = strchr(path, '/');
while (path_sep) {
char configfile[(path_sep - path_start) + 1 + strlen(WEBSPL_CONFIG_NAME)];
memcpy(configfile, path, (path_sep - path_start) + 1);
strcpy(configfile + (path_sep - path_start) + 1, WEBSPL_CONFIG_NAME);
if (!access(configfile, R_OK))
cgi_config_read_file(cfg, configfile, path_sep + 1);
path_sep = strchr(path_sep+1, '/');
}
return cfg;
}
void cgi_config_free(struct cgi_config *cfg)
{
if (cfg) {
struct cgi_config_item *i = cfg->items;
while (i) {
struct cgi_config_item *n = i->next;
free(i->name); free(i->value); free(i);
i = n;
}
free(cfg);
}
return;
}
|