|
|
|
|
|
|
|
constant cvs_version = "$Id: configuration.pike,v 1.586 2005/01/05 11:11:16 jonasw Exp $"; |
#include <module.h> |
#include <module_constants.h> |
#include <roxen.h> |
#include <request_trace.h> |
#include <timers.h> |
|
#define CATCH(P,X) do{mixed e;if(e=catch{X;})report_error("While "+P+"\n"+describe_backtrace(e));}while(0) |
|
|
|
|
|
|
#define LOC_S(X,Y) _STR_LOCALE("roxen_start",X,Y) |
#define LOC_C(X,Y) _STR_LOCALE("roxen_config",X,Y) |
#define LOC_M(X,Y) _STR_LOCALE("roxen_message",X,Y) |
#define DLOCALE(X,Y) _DEF_LOCALE("roxen_config",X,Y) |
|
#ifdef THROTTLING_DEBUG |
#undef THROTTLING_DEBUG |
#define THROTTLING_DEBUG(X) report_debug("Throttling: "+X+"\n") |
#else |
#define THROTTLING_DEBUG(X) |
#endif |
|
#ifdef REQUEST_DEBUG |
# define REQUEST_WERR(X) report_debug("CONFIG: "+X+"\n") |
#else |
# define REQUEST_WERR(X) |
#endif |
|
|
#ifdef AVERAGE_PROFILING |
|
#if !constant(gethrvtime) |
#define gethrvtime() gethrtime() |
#endif /* !constant(gethrvtime) */ |
|
class ProfStack |
{ |
array current_stack = ({}); |
|
void enter( string k, RequestID id ) |
{ |
current_stack += ({ ({ k, gethrtime(), gethrvtime() }) }); |
} |
|
void leave( string k, RequestID id ) |
{ |
int t0 = gethrtime(); |
int t1 = gethrvtime(); |
|
if( !sizeof(current_stack ) ) |
{ |
|
return; |
} |
|
int i = sizeof( current_stack )-1; |
while( current_stack[ i ][0] != k && i >= 0 ) i--; |
|
if(i < 0 ) |
{ |
return; |
} |
void low_leave( int i ) |
{ |
int tt = t0-current_stack[i][1]; |
int ttv = t1-current_stack[i][2]; |
|
if( i > 0 ) |
{ |
current_stack[i-1][1]+=tt+gethrtime()-t0; |
current_stack[i-1][2]+=ttv+gethrvtime()-t1; |
} |
current_stack = current_stack[..i-1]; |
add_prof_entry( id, k, tt, ttv ); |
}; |
|
if( i != sizeof( current_stack )-1 ) |
{ |
for( int j = sizeof( current_stack )-1; j>=i; j-- ) |
low_leave( j ); |
return; |
} |
low_leave( i ); |
} |
} |
|
class ProfInfo( string url ) |
{ |
mapping data = ([]); |
void add( string k, int h, int hrv ) |
{ |
if( !data[k] ) |
data[k] = ({ h, hrv, 1 }); |
else |
{ |
data[k][0]+=h; |
data[k][1]+=hrv; |
data[k][2]++; |
} |
} |
|
array summarize_table( ) |
{ |
array table = ({}); |
int n, t, v; |
foreach( indices( data ), string k ) |
table += ({ ({ k, |
sprintf( "%d", (n=data[k][2]) ), |
sprintf("%5.2f",(t=data[k][0])/1000000.0), |
sprintf("%5.2f", (v=data[k][1])/1000000.0), |
sprintf("%8.2f", t/n/1000.0), |
sprintf("%8.2f",v/n/1000.0), }) }); |
sort( (array(float))column(table,2), table ); |
return reverse(table); |
} |
|
void dump( ) |
{ |
write( "\n"+url+": \n" ); |
ADT.Table.table t = ADT.Table.table( summarize_table(), |
({ "What", "Calls", |
"Time", "CPU", |
"t/call(ms)", "cpu/call(ms)" })); |
|
write( ADT.Table.ASCII.encode( t )+"\n" ); |
|
} |
} |
|
mapping profiling_info = ([]); |
|
void debug_write_prof( ) |
{ |
foreach( sort( indices( profiling_info ) ), string p ) |
profiling_info[p]->dump(); |
} |
|
void add_prof_entry( RequestID id, string k, int hr, int hrv ) |
{ |
string l = id->not_query; |
|
if( has_prefix( l, query_internal_location() ) ) |
l = dirname( l ); |
|
if( !profiling_info[l] ) |
profiling_info[l] = ProfInfo(l); |
|
profiling_info[l]->add( k, hr, hrv ); |
} |
|
void avg_prof_enter( string name, string type, RequestID id ) |
{ |
if( !id->misc->prof_stack ) |
id->misc->prof_stack = ProfStack(); |
id->misc->prof_stack->enter( name+":"+type,id ); |
} |
void avg_prof_leave( string name, string type, RequestID id ) |
{ |
if( !id->misc->prof_stack ) id->misc->prof_stack = ProfStack(); |
id->misc->prof_stack->leave( name+":"+type,id ); |
} |
#endif |
|
|
|
inherit Configuration; |
inherit "basic_defvar"; |
|
static mapping(RequestID:mapping) current_connections = |
set_weak_flag( ([ ]), 1 ); |
|
void connection_add( RequestID id, mapping data ) |
|
|
|
|
|
|
|
|
|
|
|
{ |
current_connections[id] = data; |
} |
|
mapping connection_drop( RequestID id ) |
|
|
{ |
m_delete( current_connections, id ); |
} |
|
mapping(RequestID:mapping) connection_get( ) |
|
{ |
return current_connections; |
} |
|
|
string name = roxen->bootstrap_info->get(); |
|
|
|
|
|
|
class DataCache |
{ |
mapping(string:array(string|mapping(string:mixed))) cache = ([]); |
|
int current_size; |
int max_size; |
int max_file_size; |
|
int hits, misses; |
|
void flush() |
{ |
current_size = 0; |
cache = ([]); |
} |
|
static void clear_some_cache() |
{ |
array q = indices( cache ); |
if(!sizeof(q)) |
{ |
current_size=0; |
return; |
} |
for( int i = 0; i<sizeof( q )/10; i++ ) |
expire_entry( q[random(sizeof(q))] ); |
} |
|
void expire_entry( string url ) |
{ |
if( cache[ url ] ) |
{ |
current_size -= strlen(cache[url][0]); |
m_delete( cache, url ); |
} |
} |
|
void set( string url, string data, mapping meta, int expire ) |
{ |
if( strlen( data ) > max_file_size ) return; |
call_out( expire_entry, expire, url ); |
current_size += strlen( data ); |
cache[url] = ({ data, meta }); |
int n; |
while( (current_size > max_size) && (n++<10)) |
clear_some_cache(); |
} |
|
array(string|mapping(string:mixed)) get( string url ) |
{ |
mixed res; |
if( res = cache[ url ] ) |
hits++; |
else |
misses++; |
return res; |
} |
|
void init_from_variables( ) |
{ |
max_size = query( "data_cache_size" ) * 1024; |
max_file_size = query( "data_cache_file_max_size" ) * 1024; |
if( max_size < max_file_size ) |
max_size += max_file_size; |
int n; |
while( (current_size > max_size) && (n++<10)) |
clear_some_cache(); |
} |
|
static void create() |
{ |
init_from_variables(); |
} |
} |
|
#include "rxml.pike"; |
constant store = roxen.store; |
constant retrieve = roxen.retrieve; |
constant remove = roxen.remove; |
|
int config_id; |
int get_config_id() |
{ |
if(config_id) return config_id; |
for(int i=sizeof(roxen->configurations); i;) |
if(roxen->configurations[--i]->name==name) return config_id=i; |
} |
|
string get_doc_for( string region, string variable ) |
{ |
RoxenModule module; |
if(variable[0] == '_') |
return 0; |
if((int)reverse(region)) |
return 0; |
if(module = find_module( region )) |
{ |
if(module->variables[variable]) |
return module->variables[variable]->name()+ |
"\n"+module->variables[ variable ]->doc(); |
} |
if(variables[ variable ]) |
return variables[variable]->name()+ |
"\n"+variables[ variable ]->doc(); |
} |
|
string query_internal_location(RoxenModule|void mod) |
{ |
return internal_location+(mod?replace(otomod[mod]||"", "#", "!")+"/":""); |
} |
|
string query_name() |
{ |
if(strlen(query("name"))) |
return query("name"); |
return name; |
} |
|
string comment() |
{ |
return query("comment"); |
} |
|
private float cached_compat_level; |
|
float compat_level() |
{ |
if (cached_compat_level == 0.0) |
cached_compat_level = (float) query ("compat_level"); |
return cached_compat_level; |
} |
|
|
|
|
|
|
array (Priority) allocate_pris() |
{ |
return allocate(10, Priority)(); |
} |
|
|
|
private int sub_req_limit = 30; |
private string internal_location = "/_internal/"; |
|
|
|
private mapping (int:string) log_format = ([]); |
|
|
array (Priority) pri = allocate_pris(); |
|
mapping modules = ([]); |
|
|
|
mapping (RoxenModule:string) otomod = ([]); |
|
|
|
|
|
|
private array (function) url_module_cache, last_module_cache; |
private array (function) logger_module_cache, first_module_cache; |
private array (function) filter_module_cache; |
private array (array (string|function)) location_module_cache; |
private mapping (string:array (function)) file_extension_module_cache=([]); |
private mapping (string:array (RoxenModule)) provider_module_cache=([]); |
private array (RoxenModule) auth_module_cache, userdb_module_cache; |
|
|
void unregister_urls() |
{ |
foreach( registered_urls + failed_urls, string url ) |
roxen.unregister_url(url, this_object()); |
registered_urls = ({}); |
} |
|
private int num_modules = 0; |
#ifdef THREADS |
private Thread.Condition modules_stopped = Thread.Condition(); |
private Thread.Mutex modules_stopped_mutex = Thread.Mutex(); |
#endif |
private void safe_stop_module (RoxenModule mod, string desc) |
{ |
if (mixed err = catch (mod && mod->stop && mod->stop())) |
report_error ("While stopping " + desc + ": " + describe_backtrace (err)); |
#ifdef THREADS |
Thread.MutexKey lock = modules_stopped_mutex->lock(); |
if (!--num_modules) |
modules_stopped->signal(); |
lock = 0; |
#else |
--num_modules; |
#endif |
} |
|
void stop (void|int asynch) |
|
|
|
{ |
|
#ifdef SNMP_AGENT |
if(query("snmp_process") && objectp(roxen->snmpagent)) { |
roxen->snmpagent->vs_stop_trap(get_config_id()); |
roxen->snmpagent->del_virtserv(get_config_id()); |
} |
#endif |
|
unregister_urls(); |
|
multiset allmods = mkmultiset (indices (otomod)); |
num_modules = 17; |
|
if (types_module) { |
num_modules++; |
roxen.handle (safe_stop_module, types_module, "type module"); |
allmods[types_module] = 0; |
} |
if (dir_module) { |
num_modules++; |
roxen.handle (safe_stop_module, dir_module, "directory module"); |
allmods[dir_module] = 0; |
} |
for(int i=0; i<10; i++) |
if (Priority p = pri[i]) { |
#define STOP_MODULES(MODS, DESC) \ |
foreach(MODS, RoxenModule m) \ |
if (allmods[m]) { \ |
num_modules++; \ |
roxen.handle (safe_stop_module, m, DESC); \ |
allmods[m] = 0; \ |
} |
STOP_MODULES (p->url_modules, "url module"); |
STOP_MODULES (p->logger_modules, "logging module"); |
STOP_MODULES (p->filter_modules, "filter module"); |
STOP_MODULES (p->location_modules, "location module"); |
STOP_MODULES (p->last_modules, "last module"); |
STOP_MODULES (p->first_modules, "first module"); |
STOP_MODULES (indices (p->provider_modules), "provider module"); |
} |
if (mixed err = catch { |
if (object m = log_function && function_object (log_function)) { |
destruct (m); |
allmods[m] = 0; |
} |
}) report_error ("While stopping the logger: " + describe_backtrace (err)); |
STOP_MODULES(indices (allmods), "unclassified module"); |
#undef STOP_MODULES |
|
if (!asynch) { |
#ifdef THREADS |
Thread.MutexKey lock = modules_stopped_mutex->lock(); |
num_modules -= 17; |
if (num_modules) modules_stopped->wait (lock); |
lock = 0; |
#else |
if (num_modules != 17) |
error ("num_modules shouldn't be nonzero here when running nonthreaded.\n"); |
#endif |
} |
} |
|
string|array(string) type_from_filename( string file, int|void to, |
string|void myext ) |
{ |
array(string)|string tmp; |
if(!types_fun) |
return to?({ "application/octet-stream", 0 }):"application/octet-stream"; |
|
string ext = lower_case(myext || Roxen.extension(file)); |
|
if(tmp = types_fun(ext)) |
{ |
mixed tmp2,nx; |
|
if (tmp[0] == "strip") |
{ |
tmp2=file/"."; |
if (sizeof(tmp2) > 2) |
nx=tmp2[-2]; |
if (nx && (tmp2 = types_fun(nx))) |
tmp[0] = tmp2[0]; |
else if (tmp2 = types_fun("default")) |
tmp[0] = tmp2[0]; |
else |
tmp[0] = "application/octet-stream"; |
} |
} else if (!(tmp = types_fun("default"))) { |
tmp = ({ "application/octet-stream", 0 }); |
} |
return to?tmp:tmp[0]; |
} |
|
array (RoxenModule) get_providers(string provides) |
|
{ |
|
if(!provider_module_cache[provides]) |
{ |
int i; |
provider_module_cache[provides] = ({ }); |
for(i = 9; i >= 0; i--) |
{ |
foreach(indices(pri[i]->provider_modules), RoxenModule d) |
if(pri[i]->provider_modules[ d ][ provides ]) |
provider_module_cache[provides] += ({ d }); |
} |
} |
return provider_module_cache[provides]; |
} |
|
RoxenModule get_provider(string provides) |
|
{ |
array (RoxenModule) prov = get_providers(provides); |
if(sizeof(prov)) |
return prov[0]; |
return 0; |
} |
|
array(mixed) map_providers(string provides, string fun, mixed ... args) |
|
{ |
array (RoxenModule) prov = get_providers(provides); |
mixed error; |
array a=({ }); |
mixed m; |
foreach(prov, RoxenModule mod) |
{ |
if(!objectp(mod)) |
continue; |
if(functionp(mod[fun])) |
error = catch(m=mod[fun](@args)); |
if(error) { |
report_debug("Error in map_providers(): " + describe_backtrace(error)); |
} |
else |
a += ({ m }); |
error = 0; |
} |
return a; |
} |
|
mixed call_provider(string provides, string fun, mixed ... args) |
|
|
{ |
foreach(get_providers(provides), RoxenModule mod) |
{ |
function f; |
if(objectp(mod) && functionp(f = mod[fun])) { |
mixed ret; |
if (ret = f(@args)) { |
return ret; |
} |
} |
} |
} |
|
array (function) file_extension_modules(string ext) |
{ |
if(!file_extension_module_cache[ext = lower_case(ext)]) |
{ |
int i; |
file_extension_module_cache[ext] = ({ }); |
for(i=9; i>=0; i--) |
{ |
array(RoxenModule) d; |
RoxenModule p; |
if(d = pri[i]->file_extension_modules[ext]) |
foreach(d, p) |
file_extension_module_cache[ext] += ({ p->handle_file_extension }); |
} |
} |
return file_extension_module_cache[ext]; |
} |
|
array (function) url_modules() |
{ |
if(!url_module_cache) |
{ |
int i; |
url_module_cache=({ }); |
for(i=9; i>=0; i--) |
{ |
array(RoxenModule) d; |
RoxenModule p; |
if(d=pri[i]->url_modules) |
foreach(d, p) |
url_module_cache += ({ p->remap_url }); |
} |
} |
return url_module_cache; |
} |
|
static mapping api_module_cache = ([]); |
mapping api_functions(void|RequestID id) |
{ |
return api_module_cache+([]); |
} |
|
array (function) logger_modules() |
{ |
if(!logger_module_cache) |
{ |
int i; |
logger_module_cache=({ }); |
for(i=9; i>=0; i--) |
{ |
array(RoxenModule) d; |
RoxenModule p; |
if(d=pri[i]->logger_modules) |
foreach(d, p) |
if(p->log) |
logger_module_cache += ({ p->log }); |
} |
} |
return logger_module_cache; |
} |
|
array (function) last_modules() |
{ |
if(!last_module_cache) |
{ |
int i; |
last_module_cache=({ }); |
for(i=9; i>=0; i--) |
{ |
array(RoxenModule) d; |
RoxenModule p; |
if(d=pri[i]->last_modules) |
foreach(d, p) |
if(p->last_resort) |
last_module_cache += ({ p->last_resort }); |
} |
} |
return last_module_cache; |
} |
|
static mixed strip_fork_information(RequestID id) |
{ |
if (uname()->sysname == "Darwin") { |
|
|
|
|
|
|
|
if (has_value(id->not_query, "..namedfork/") || |
has_suffix(id->not_query, "/rsrc") || |
has_value(lower_case(id->not_query), ".ds_store")) |
|
return error_file(id); |
} |
|
array a = id->not_query/"::"; |
|
|
|
id->not_query = a[0]; |
id->misc->fork_information = a[1..]; |
return 0; |
} |
|
array (function) first_modules() |
{ |
if(!first_module_cache) |
{ |
int i; |
first_module_cache = ({ }); |
|
|
if ( |
#ifdef __NT__ |
1 || |
#endif |
uname()->sysname == "Darwin") { |
first_module_cache= ({ |
strip_fork_information, |
}); |
} |
|
for(i=9; i>=0; i--) |
{ |
array(RoxenModule) d; RoxenModule p; |
if(d=pri[i]->first_modules) { |
foreach(d, p) { |
if(p->first_try) { |
first_module_cache += ({ p->first_try }); |
} |
} |
} |
} |
} |
|
return first_module_cache; |
} |
|
void set_userdb_module_cache( array to ) |
|
|
{ |
userdb_module_cache = to; |
} |
|
array(UserDB) user_databases() |
{ |
if( userdb_module_cache ) |
return userdb_module_cache; |
array tmp = ({}); |
foreach( values( modules ), mapping m ) |
foreach( values(m->copies), RoxenModule mo ) |
if( mo->module_type & MODULE_USERDB ) |
tmp += ({ ({ mo->query( "_priority" ), mo }) }); |
|
sort( tmp ); |
|
return userdb_module_cache = reverse(column(tmp,1)); |
} |
|
array(AuthModule) auth_modules() |
{ |
if( auth_module_cache ) |
return auth_module_cache; |
array tmp = ({}); |
foreach( values( modules ), mapping m ) |
foreach( values(m->copies), RoxenModule mo ) |
if( mo->module_type & MODULE_AUTH ) |
tmp += ({ ({ mo->query( "_priority" ), mo }) }); |
sort( tmp ); |
return auth_module_cache = reverse(column(tmp,1)); |
} |
|
array location_modules() |
|
|
{ |
if(!location_module_cache) |
{ |
int i; |
array new_location_module_cache=({ }); |
for(i=9; i>=0; i--) |
{ |
array(RoxenModule) d; |
RoxenModule p; |
if(d=pri[i]->location_modules) { |
array level_find_files = ({}); |
array level_locations = ({}); |
foreach(d, p) { |
string location; |
|
if(p->find_file && (location = p->query_location())) { |
level_find_files += ({ p->find_file }); |
level_locations += ({ location }); |
} |
} |
sort(map(level_locations, sizeof), level_locations, level_find_files); |
int j; |
for (j = sizeof(level_locations); j--;) { |
|
new_location_module_cache += ({ ({ level_locations[j], |
level_find_files[j] }) }); |
} |
} |
} |
location_module_cache = new_location_module_cache; |
} |
return location_module_cache; |
} |
|
array(function) filter_modules() |
{ |
if(!filter_module_cache) |
{ |
int i; |
filter_module_cache=({ }); |
for(i=9; i>=0; i--) |
{ |
array(RoxenModule) d; |
RoxenModule p; |
if(d=pri[i]->filter_modules) |
foreach(d, p) |
if(p->filter) |
filter_module_cache+=({ p->filter }); |
} |
} |
return filter_module_cache; |
} |
|
|
void init_log_file() |
{ |
if(log_function) |
{ |
|
destruct(function_object(log_function)); |
log_function = 0; |
} |
|
if(query("Log")) |
{ |
string logfile = query("LogFile"); |
if(strlen(logfile)) |
log_function = roxen.LogFile( logfile )->write; |
} |
} |
|
|
private inline string fix_logging(string s) |
{ |
sscanf(s, "%*[\t ]%s", s); |
return s; |
} |
|
private void parse_log_formats() |
{ |
string b; |
array foo=query("LogFormat")/"\n"; |
foreach(foo, b) |
if(strlen(b) && b[0] != '#' && sizeof(b/":")>1) |
log_format[(int)(b/":")[0]] = fix_logging((b/":")[1..]*":"); |
} |
|
void log(mapping file, RequestID request_id) |
{ |
|
foreach(logger_module_cache||logger_modules(), function f) |
if( f( request_id, file ) ) |
return; |
|
if( !log_function ) |
return; |
|
if(do_not_log_patterns && |
Roxen._match(request_id->remoteaddr, do_not_log_patterns)) |
return; |
|
string form; |
if(!(form=log_format[file->error])) |
form = log_format[0]; |
if(!form) return; |
|
roxen.run_log_format( form, log_function, request_id, file ); |
} |
|
array(string) userinfo(string u, RequestID|void id) |
|
|
|
|
|
|
|
|
{ |
User uid; |
foreach( user_databases(), UserDB m ) |
if( uid = m->find_user( u ) ) |
return uid->compat_userinfo(id); |
} |
|
array(string) userlist(RequestID|void id) |
|
|
|
|
|
|
|
|
|
{ |
array(string) list = ({}); |
foreach( user_databases(), UserDB m ) |
list |= m->list_users(id); |
return list; |
} |
|
array(string) user_from_uid(int u, RequestID|void id) |
|
|
|
|
|
|
|
|
|
{ |
User uid; |
foreach( user_databases(), UserDB m ) |
if( uid = m->find_user_from_uid( u,id ) ) |
return uid->compat_userinfo(); |
} |
|
UserDB find_user_database( string name ) |
|
|
{ |
foreach( user_databases(), UserDB m ) |
if( m->name == name ) |
return m; |
} |
|
AuthModule find_auth_module( string name ) |
|
|
{ |
foreach( auth_modules(), AuthModule m ) |
if( m->name == name ) |
return m; |
} |
|
User authenticate( RequestID id, UserDB|void database) |
|
|
|
|
|
|
{ |
User u; |
if (!zero_type (u = id->misc->authenticated_user)) |
return u; |
foreach( auth_modules(), AuthModule method ) |
if( u = method->authenticate( id, database ) ) |
return id->misc->authenticated_user = u; |
} |
|
mapping authenticate_throw( RequestID id, string realm, |
UserDB|void database) |
|
|
|
{ |
mapping m; |
foreach( auth_modules(), AuthModule method ) |
if( m = method->authenticate_throw( id, realm, database ) ) |
return m; |
} |
|
User find_user( string user, RequestID|void id ) |
|
|
|
|
|
|
|
|
{ |
User uid; |
|
if( id && id->misc->authenticated_user |
&& ( uid = id->misc->authenticated_user->database->find_user(user,id))) |
return uid; |
|
foreach( user_databases(), UserDB m ) |
if( uid = m->find_user( user,id ) ) |
return uid; |
} |
|
array(string) list_users(RequestID|void id) |
|
|
|
|
|
{ |
array(string) list = ({}); |
foreach( user_databases(), UserDB m ) |
list |= m->list_users(id); |
return list; |
} |
|
array(string) list_groups(RequestID|void id) |
|
|
|
|
|
{ |
array(string) list = ({}); |
foreach( user_databases(), UserDB m ) |
list |= m->list_groups(id); |
return list; |
} |
|
|
|
Group find_group( string group, RequestID|void id ) |
|
|
|
|
|
|
|
|
{ |
Group uid; |
|
if( id && id->misc->authenticated_user |
&& ( uid = id->misc->authenticated_user->database->find_group( group ) )) |
return uid; |
|
foreach( user_databases(), UserDB m ) |
if( uid = m->find_group( group,id ) ) |
return uid; |
} |
|
|
string last_modified_by(Stdio.File file, RequestID id) |
{ |
Stat s; |
int uid; |
array u; |
|
if(objectp(file)) s=file->stat(); |
if(!s || sizeof(s)<5) return "A. Nonymous"; |
uid=s[5]; |
u=user_from_uid(uid, id); |
if(u) return u[0]; |
return "A. Nonymous"; |
} |
|
|
|
|
|
|
private mapping internal_gopher_image(string from) |
{ |
sscanf(from, "%s.gif", from); |
sscanf(from, "%s.jpg", from); |
from -= "."; |
|
|
|
Stdio.File f = lopen("roxen-images/dir/"+from+".gif","r"); |
if (f) |
return (["file":f, "type":"image/gif", "stat":f->stat(),]); |
else |
return 0; |
|
} |
|
#ifdef MODULE_LEVEL_SECURITY |
private mapping(RoxenModule:array) security_level_cache = set_weak_flag (([]), 1); |
|
int|mapping check_security(function|RoxenModule a, RequestID id, |
void|int slevel) |
{ |
array seclevels; |
|
|
|
|
|
|
|
if (RoxenModule mod = Roxen.get_owning_module (a)) { |
|
|
if (!(seclevels = security_level_cache[mod])) { |
if(mod->query_seclevels) |
seclevels = ({ |
mod->query_seclevels(), |
mod->query("_seclvl"), |
}); |
else |
seclevels = ({0,0}); |
security_level_cache[mod] = seclevels; |
} |
} |
else |
seclevels = ({0,0}); |
|
if(slevel && (seclevels[1] > slevel)) |
|
|
return 1; |
|
mixed err; |
if( function(RequestID:int|mapping) f = seclevels[0] ) |
|
|
|
|
|
|
err=catch { return f( id ); }; |
else |
return 0; |
|
report_error("check_security(): %s:\n%s\n", |
LOC_M(39, "Error during module security check"), |
describe_backtrace(err)); |
|
return 1; |
} |
#endif |
|
void invalidate_cache() |
{ |
last_module_cache = 0; |
filter_module_cache = 0; |
userdb_module_cache = 0; |
auth_module_cache = 0; |
first_module_cache = 0; |
url_module_cache = 0; |
location_module_cache = 0; |
logger_module_cache = 0; |
file_extension_module_cache = ([]); |
provider_module_cache = ([]); |
#ifdef MODULE_LEVEL_SECURITY |
security_level_cache = set_weak_flag (([ ]), 1); |
#endif |
} |
|
|
void clear_memory_caches() |
{ |
invalidate_cache(); |
foreach(indices(otomod), RoxenModule m) |
if (m && m->clear_memory_caches) |
if (mixed err = catch( m->clear_memory_caches() )) |
report_error("clear_memory_caches() "+ |
LOC_M(40, "failed for module %O:\n%s\n"), |
otomod[m], describe_backtrace(err)); |
} |
|
|
static array(string) draw_saturation_bar(int hue,int brightness, int where, |
int small_version) |
{ |
Image.Image bar = |
small_version ? Image.Image(16, 128) : Image.Image(30, 256); |
|
for(int i=0;i<128;i++) |
{ |
int j = i * 2; |
array color = hsv_to_rgb(hue, 255 - j, brightness); |
if (small_version) { |
bar->line(0, i, 15, i, @color); |
} else { |
bar->line(0, j, 29, j, @color); |
bar->line(0, j + 1,29, j + 1, @color); |
} |
} |
|
if (where >= 0 && where <= 255) { |
where = 255 - where; |
int hilite = (brightness > 128) ? 0 : 255; |
if (small_version) |
bar->line(0, where / 2, 15, where / 2, hilite, hilite, hilite); |
else |
bar->line(0, where, 29, where, hilite, hilite, hilite); |
} |
|
#if constant(Image.JPEG) && constant(Image.JPEG.encode) |
return ({ Image.JPEG.encode(bar), "image/jpeg" }); |
#else |
return ({ Image.PNG.encode(bar), "image/png" }); |
#endif |
} |
|
|
|
|
private mapping internal_roxen_image( string from, RequestID id ) |
{ |
sscanf(from, "%s.gif", from); |
sscanf(from, "%s.jpg", from); |
sscanf(from, "%s.xcf", from); |
sscanf(from, "%s.png", from); |
|
|
int hue,bright,w; |
string colorbar; |
if(sscanf(from, "%s:%d,%d,%d", colorbar, hue, bright,w)==4) { |
array bar = draw_saturation_bar(hue, bright, w, |
colorbar == "colorbar-small"); |
return Roxen.http_string_answer(bar[0], bar[1]); |
} |
|
Stdio.File f; |
|
if( !id->misc->internal_get ) |
if(f = lopen("roxen-images/"+from+".gif", "r")) |
return (["file":f, "type":"image/gif", "stat":f->stat()]); |
|
if(f = lopen("roxen-images/"+from+".png", "r")) |
return (["file":f, "type":"image/png", "stat":f->stat()]); |
|
if(f = lopen("roxen-images/"+from+".jpg", "r")) |
return (["file":f, "type":"image/jpeg", "stat":f->stat()]); |
|
if(f = lopen("roxen-images/"+from+".xcf", "r")) |
return (["file":f, "type":"image/x-gimp-image", "stat":f->stat()]); |
|
if(f = lopen("roxen-images/"+from+".gif", "r")) |
return (["file":f, "type":"image/gif", "stat":f->stat()]); |
|
return 0; |
} |
|
|
mapping (mixed:function|int) locks = ([]); |
|
#ifdef THREADS |
|
|
mapping locked = ([]), thread_safe = ([]); |
|
mixed _lock(object|function f) |
{ |
Thread.MutexKey key; |
function|int l; |
TIMER_START(module_lock); |
if (functionp(f)) { |
f = function_object(f); |
} |
if (l = locks[f]) |
{ |
if (l != -1) |
{ |
|
catch{ |
|
locked[f]++; |
key = l(); |
}; |
} else |
thread_safe[f]++; |
} else if (f->thread_safe) { |
locks[f]=-1; |
thread_safe[f]++; |
} else { |
if (!locks[f]) |
{ |
|
l = Thread.Mutex()->lock; |
if (!locks[f]) { |
locks[f]=l; |
} |
} |
|
locked[f]++; |
key = l(); |
} |
TIMER_END(module_lock); |
return key; |
} |
|
#define LOCK(X) key=_lock(X) |
#define UNLOCK() do{key=0;}while(0) |
#else |
#define LOCK(X) |
#define UNLOCK() |
#endif |
|
string examine_return_mapping(mapping m) |
{ |
string res; |
|
if (m->extra_heads) |
m->extra_heads=mkmapping(Array.map(indices(m->extra_heads), |
lower_case), |
values(m->extra_heads)); |
else |
m->extra_heads=([]); |
|
switch (m->error||200) |
{ |
case 302: |
if (m->extra_heads && |
(m->extra_heads->location)) |
res = sprintf("Returned redirect to %O ", m->extra_heads->location); |
else |
res = "Returned redirect, but no location header. "; |
break; |
|
case 401: |
if (m->extra_heads["www-authenticate"]) |
res = sprintf("Returned authentication failed: %O ", |
m->extra_heads["www-authenticate"]); |
else |
res = "Returned authentication failed. "; |
break; |
|
case 200: |
res = "Returned ok. "; |
break; |
|
default: |
res = sprintf("Returned %O. ", m->error); |
} |
|
if (!zero_type(m->len)) |
if (m->len<0) |
res += "No data "; |
else |
res += sprintf("%O bytes ", m->len); |
else if (stringp(m->data)) |
res += sprintf("%d bytes ", strlen(m->data)); |
else if (objectp(m->file)) |
if (catch { |
Stat a=m->file->stat(); |
res += sprintf("%O bytes ", a[1]-m->file->tell()); |
}) |
res += "? bytes "; |
|
if (m->data) res += "(static)"; |
else if (m->file) res += "(open file)"; |
|
if (stringp(m->extra_heads["content-type"]) || |
stringp(m->type)) { |
res += sprintf(" of %O", m->type||m->extra_heads["content-type"]); |
} |
|
res+="<br />"; |
|
return res; |
} |
|
|
multiset(DAVLock) find_locks(string path, int(0..1) recursive, |
int(0..1) exclude_shared, RequestID id) |
{ |
SIMPLE_TRACE_ENTER(0, "find_locks(%O, %O, %O, X)", |
path, recursive, exclude_shared); |
multiset(DAVLock) locks = (<>); |
|
foreach(location_module_cache||location_modules(), |
[string loc, function func]) |
{ |
SIMPLE_TRACE_ENTER(function_object(func), |
"Finding locks in %O.", loc); |
string subpath; |
if (has_prefix(path, loc)) { |
|
subpath = path[sizeof(loc)..]; |
} else if (recursive && has_prefix(loc, path)) { |
|
subpath = "/"; |
} else { |
|
TRACE_LEAVE("Skip this module."); |
continue; |
} |
TRACE_ENTER(sprintf("subpath: %O", subpath), |
function_object(func)->find_locks); |
multiset(DAVLock) sub_locks = |
function_object(func)->find_locks(subpath, recursive, |
exclude_shared, id); |
TRACE_LEAVE(""); |
if (sub_locks) { |
SIMPLE_TRACE_LEAVE("Got some locks: %O", sub_locks); |
locks |= sub_locks; |
} else { |
TRACE_LEAVE("Got no locks."); |
} |
} |
SIMPLE_TRACE_LEAVE("Returning %O", locks); |
return locks; |
} |
|
|
DAVLock|LockFlag check_locks(string path, int(0..1) recursive, RequestID id) |
{ |
LockFlag state = 0; |
foreach(location_module_cache||location_modules(), |
[string loc, function func]) |
{ |
string subpath; |
int check_above; |
if (has_prefix(path, loc)) { |
|
subpath = path[sizeof(loc)..]; |
} else if (recursive && has_prefix(loc, path)) { |
|
subpath = ""; |
check_above = 1; |
} else { |
|
continue; |
} |
int|DAVLock lock_info = |
function_object(func)->check_locks(subpath, recursive, id); |
if (objectp(lock_info)) { |
if (!check_above) { |
return lock_info; |
} else { |
lock_info = LOCK_OWN_BELOW; |
} |
} |
else |
if (check_above && (lock_info & 1)) |
|
lock_info &= ~1; |
if (lock_info > state) state = lock_info; |
if (state == LOCK_EXCL_AT) return LOCK_EXCL_AT; |
} |
return state; |
} |
|
static multiset(DAVLock) active_locks = (<>); |
|
|
|
|
|
mapping(string:mixed) unlock_file(string path, DAVLock lock, RequestID id) |
{ |
|
if (!has_suffix(path, "/")) path+="/"; |
|
foreach(location_module_cache||location_modules(), |
[string loc, function func]) |
{ |
if (has_prefix(path, loc)) { |
|
mapping(string:mixed) ret = |
function_object(func)->unlock_file(path[sizeof(loc)..], lock, id); |
|
|
if (ret) return ret; |
} else if (lock->recursive && has_prefix(loc, path)) { |
|
mapping(string:mixed) ret = |
function_object(func)->unlock_file("/", lock, id); |
|
|
if (ret) return ret; |
} |
} |
active_locks[lock] = 0; |
|
return 0; |
} |
|
|
int expire_locks(RequestID id) |
{ |
int t = time(1); |
int min_time = 0x7fffffff; |
foreach(active_locks; DAVLock lock;) { |
if (lock->expiry_time) { |
if (lock->expiry_time < t) { |
unlock_file(lock->path, lock, id); |
} else if (lock->expiry_time < min_time) { |
min_time = lock->expiry_time; |
} |
} |
} |
return min_time - t; |
} |
|
static void expire_lock_loop() |
{ |
int t = expire_locks(0); |
|
if (sizeof(active_locks)) { |
|
if (t < 3600) { |
roxen.background_run(t, expire_lock_loop); |
} else { |
roxen.background_run(3600, expire_lock_loop); |
} |
} |
} |
|
|
|
|
void refresh_lock(DAVLock lock) |
{ |
if (lock->expiry_delta) { |
lock->expiry_time = lock->expiry_delta + time(1); |
} |
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mapping(string:mixed)|DAVLock lock_file(string path, |
int(0..1) recursive, |
string lockscope, |
string locktype, |
int(0..) expiry_delta, |
array(Parser.XML.Tree.Node) owner, |
RequestID id) |
{ |
|
if (!has_suffix(path, "/")) path+="/"; |
|
|
|
int|DAVLock lock_info = check_locks(path, recursive, id); |
|
if (!intp(lock_info)) { |
|
if (id->request_headers->if) { |
return Roxen.http_status(412, "Precondition Failed"); |
} else { |
return Roxen.http_status(423, "Locked"); |
} |
} else if (lockscope == "DAV:exclusive" ? |
lock_info >= LOCK_SHARED_BELOW : |
lock_info >= LOCK_OWN_BELOW) { |
|
return Roxen.http_status(423, "Locked"); |
} |
|
|
|
string locktoken = "opaquelocktoken:" + roxen->new_uuid_string(); |
DAVLock lock = DAVLock(locktoken, path, recursive, lockscope, locktype, |
expiry_delta, owner); |
foreach(location_module_cache||location_modules(), |
[string loc, function func]) |
{ |
string subpath; |
if (has_prefix(path, loc)) { |
|
subpath = path[sizeof(loc)..]; |
} else if (recursive && has_prefix(loc, path)) { |
|
subpath = "/"; |
} else { |
|
continue; |
} |
|
mapping(string:mixed) lock_error = |
function_object(func)->lock_file(subpath, lock, id); |
if (lock_error) { |
|
foreach(location_module_cache||location_modules(), |
[string loc2, function func2]) |
{ |
if (has_prefix(path, loc2)) { |
|
mapping(string:mixed) ret = |
function_object(func2)->unlock_file(path[sizeof(loc2)..], |
lock, id); |
} else if (recursive && has_prefix(loc2, path)) { |
|
mapping(string:mixed) ret = |
function_object(func2)->unlock_file("/", lock, id); |
} |
if (func == func2) break; |
} |
|
return lock_error; |
} |
} |
|
if (expiry_delta) { |
|
|
if (!sizeof(active_locks)) { |
|
active_locks[lock] = 1; |
expire_lock_loop(); |
} else { |
active_locks[lock] = 1; |
} |
} |
|
|
return lock; |
} |
|
mapping|int(-1..0) low_get_file(RequestID id, int|void no_magic) |
|
|
|
|
|
|
|
|
|
{ |
#ifdef MODULE_LEVEL_SECURITY |
int slevel; |
#endif |
|
#ifdef THREADS |
Thread.MutexKey key; |
#endif |
|
id->not_query = VFS.normalize_path( id->not_query ); |
|
TRACE_ENTER(sprintf("Request for %s", id->not_query), 0); |
|
string file=id->not_query; |
string loc; |
function funp; |
mixed tmp, tmp2; |
mapping|object(Stdio.File)|int fid; |
|
if(!no_magic) |
{ |
TIMER_START(internal_magic); |
#ifndef NO_INTERNAL_HACK |
|
|
|
string type; |
if(sizeof(file) > 17 && |
#if ROXEN_COMPAT <= 2.1 |
(file[0] == '/') && |
sscanf(file, "%*s/internal-%s-%[^/]", type, loc) == 3 |
#else |
sscanf(file, "/internal-%s-%[^/]", type, loc) == 2 |
#endif |
) { |
switch(type) { |
case "roxen": |
|
|
RAISE_CACHE(60 * 60 * 24 * 365); |
PROTO_CACHE(); |
|
TRACE_LEAVE("Magic internal roxen image"); |
if(loc=="unit" || loc=="pixel-of-destiny") |
{ |
TIMER_END(internal_magic); |
return (["data":"GIF89a\1\0\1\0\200ÿ\0ÀÀÀ\0\0\0!ù\4\1\0\0\0\0," |
"\0\0\0\0\1\0\1\0\0\1\1""2\0;", |
"type":"image/gif", |
"stat": ({0, 0, 0, 900000000, 0, 0, 0})]); |
} |
if(has_prefix(loc, "pixel-")) |
{ |
TIMER_END(internal_magic); |
return (["data":sprintf("GIF89a\1\0\1\0\200\0\0\0\0\0%c%c%c,\0\0\0" |
"\0\1\0\1\0\0\2\2L\1\0;", |
@parse_color(loc[6..])), |
"type":"image/gif", |
"stat": ({0, 0, 0, 900000000, 0, 0, 0})]); |
} |
TIMER_END(internal_magic); |
return internal_roxen_image(loc, id); |
|
case "gopher": |
TRACE_LEAVE("Magic internal gopher image"); |
TIMER_END(internal_magic); |
return internal_gopher_image(loc); |
} |
} |
#endif |
|
|
if(has_prefix(file, internal_location)) |
{ |
TRACE_ENTER("Magic internal module location", 0); |
RoxenModule module; |
string name, rest; |
function find_internal; |
if(2==sscanf(file[strlen(internal_location)..], "%s/%s", name, rest) && |
(module = find_module(replace(name, "!", "#"))) && |
(find_internal = module->find_internal)) |
{ |
#ifdef MODULE_LEVEL_SECURITY |
if(tmp2 = check_security(find_internal, id, slevel)) |
if(intp(tmp2)) |
{ |
TRACE_LEAVE("Permission to access module denied."); |
find_internal = 0; |
} else { |
TRACE_LEAVE(""); |
TRACE_LEAVE("Request denied."); |
TIMER_END(internal_magic); |
return tmp2; |
} |
#endif |
if(find_internal) |
{ |
TRACE_ENTER("Calling find_internal()...", find_internal); |
PROF_ENTER("find_internal","location"); |
LOCK(find_internal); |
fid=find_internal( rest, id ); |
UNLOCK(); |
|
TRACE_LEAVE(""); |
PROF_LEAVE("find_internal","location"); |
if(fid) |
{ |
if(mappingp(fid)) |
{ |
TRACE_LEAVE(""); |
TRACE_LEAVE(examine_return_mapping(fid)); |
TIMER_END(internal_magic); |
return fid; |
} |
else |
{ |
#ifdef MODULE_LEVEL_SECURITY |
int oslevel = slevel; |
array slca; |
if(slca = security_level_cache[ Roxen.get_owning_module (find_internal) ]) |
slevel = slca[1]; |
|
|
id->misc->seclevel = slevel; |
#endif |
if(objectp(fid)) |
TRACE_LEAVE("Returned open filedescriptor. " |
#ifdef MODULE_LEVEL_SECURITY |
+(slevel != oslevel? |
sprintf(" The security level is now %d.", slevel):"") |
#endif |
); |
else |
TRACE_LEAVE("Returned directory indicator." |
#ifdef MODULE_LEVEL_SECURITY |
+(oslevel != slevel? |
sprintf(" The security level is now %d.", slevel):"") |
#endif |
); |
} |
} else |
TRACE_LEAVE(""); |
} else |
TRACE_LEAVE(""); |
} else |
TRACE_LEAVE(""); |
} |
TIMER_END(internal_magic); |
} |
|
|
|
if(!fid) |
{ |
#ifdef URL_MODULES |
|
TIMER_START(url_modules); |
foreach(url_module_cache||url_modules(), funp) |
{ |
PROF_ENTER(Roxen.get_owning_module(funp)->module_name,"url module"); |
LOCK(funp); |
TRACE_ENTER("URL module", funp); |
tmp=funp( id, file ); |
UNLOCK(); |
PROF_LEAVE(Roxen.get_owning_module(funp)->module_name,"url module"); |
|
if(mappingp(tmp)) |
{ |
TRACE_LEAVE(""); |
TRACE_LEAVE("Returning data"); |
TIMER_END(url_modules); |
return tmp; |
} |
if(objectp( tmp )) |
{ |
mixed err; |
|
id->misc->get_file_nest++; |
err = catch { |
if( id->misc->get_file_nest < 20 ) |
tmp = (id->conf || this_object())->low_get_file( tmp, no_magic ); |
else |
{ |
TRACE_LEAVE("Too deep recursion"); |
error("Too deep recursion in roxen::get_file() while mapping " |
+file+".\n"); |
} |
}; |
id->misc->get_file_nest = 0; |
if(err) throw(err); |
TRACE_LEAVE(""); |
TRACE_LEAVE("Returning data"); |
TIMER_END(url_modules); |
return tmp; |
} |
TRACE_LEAVE(""); |
TIMER_END(url_modules); |
} |
#endif |
|
TIMER_START(location_modules); |
foreach(location_module_cache||location_modules(), tmp) |
{ |
loc = tmp[0]; |
if(has_prefix(file, loc)) |
{ |
TRACE_ENTER(sprintf("Location module [%s] ", loc), tmp[1]); |
#ifdef MODULE_LEVEL_SECURITY |
if(tmp2 = check_security(tmp[1], id, slevel)) |
if(intp(tmp2)) |
{ |
TRACE_LEAVE("Permission to access module denied."); |
continue; |
} else { |
TRACE_LEAVE(""); |
TRACE_LEAVE("Request denied."); |
TIMER_END(location_modules); |
return tmp2; |
} |
#endif |
PROF_ENTER(Roxen.get_owning_module(tmp[1])->module_name,"location"); |
TRACE_ENTER("Calling find_file()...", 0); |
LOCK(tmp[1]); |
fid=tmp[1]( file[ strlen(loc) .. ] + id->extra_extension, id); |
UNLOCK(); |
TRACE_LEAVE(""); |
PROF_LEAVE(Roxen.get_owning_module(tmp[1])->module_name,"location"); |
if(fid) |
{ |
id->virtfile = loc; |
|
if(mappingp(fid)) |
{ |
TRACE_LEAVE(""); |
TRACE_LEAVE(examine_return_mapping(fid)); |
TIMER_END(location_modules); |
return fid; |
} |
else |
{ |
#ifdef MODULE_LEVEL_SECURITY |
int oslevel = slevel; |
array slca; |
if(slca = security_level_cache[ Roxen.get_owning_module (tmp[1]) ]) |
slevel = slca[1]; |
|
|
id->misc->seclevel = slevel; |
#endif |
if(objectp(fid)) |
TRACE_LEAVE("Returned open filedescriptor." |
#ifdef MODULE_LEVEL_SECURITY |
+(slevel != oslevel? |
sprintf(" The security level is now %d.", slevel):"") |
#endif |
|
); |
else |
TRACE_LEAVE("Returned directory indicator." |
#ifdef MODULE_LEVEL_SECURITY |
+(oslevel != slevel? |
sprintf(" The security level is now %d.", slevel):"") |
#endif |
); |
break; |
} |
} else |
TRACE_LEAVE(""); |
} else if(strlen(loc)-1==strlen(file) && file+"/" == loc) { |
|
|
|
TRACE_ENTER("Automatic redirect to location_module.", tmp[1]); |
TRACE_LEAVE(""); |
TRACE_LEAVE("Returning data"); |
|
|
|
string new_query = Roxen.http_encode_invalids(id->not_query) + "/" + |
(id->query?("?"+id->query):""); |
new_query=Roxen.add_pre_state(new_query, id->prestate); |
|
TIMER_END(location_modules); |
return Roxen.http_redirect(new_query, id); |
} |
} |
TIMER_END(location_modules); |
} |
|
if(fid == -1) |
{ |
if(no_magic) |
{ |
TRACE_LEAVE("No magic requested. Returning -1."); |
return -1; |
} |
TIMER_START(directory_module); |
if(dir_module) |
{ |
PROF_ENTER(dir_module->module_name,"directory"); |
LOCK(dir_module); |
TRACE_ENTER("Directory module", dir_module); |
fid = dir_module->parse_directory(id); |
TRACE_LEAVE(""); |
UNLOCK(); |
PROF_LEAVE(dir_module->module_name,"directory"); |
} |
else |
{ |
TRACE_LEAVE("No directory module. Returning 'no such file'"); |
return 0; |
} |
TIMER_END(directory_module); |
if(mappingp(fid)) |
{ |
TRACE_LEAVE("Returning data"); |
return (mapping)fid; |
} |
} |
|
|
TIMER_START(extension_module); |
if(objectp(fid) && |
(tmp = file_extension_modules(loc = |
lower_case(Roxen.extension(id->not_query, |
id))))) |
{ |
foreach(tmp, funp) |
{ |
TRACE_ENTER(sprintf("Extension module [%s] ", loc), funp); |
#ifdef MODULE_LEVEL_SECURITY |
if(tmp=check_security(funp, id, slevel)) |
if(intp(tmp)) |
{ |
TRACE_LEAVE("Permission to access module denied."); |
continue; |
} |
else |
{ |
TRACE_LEAVE(""); |
TRACE_LEAVE("Permission denied"); |
TIMER_END(extension_module); |
return tmp; |
} |
#endif |
PROF_ENTER(Roxen.get_owning_module(funp)->module_name,"ext"); |
LOCK(funp); |
tmp=funp(fid, loc, id); |
UNLOCK(); |
PROF_LEAVE(Roxen.get_owning_module(funp)->module_name,"ext"); |
if(tmp) |
{ |
if(!objectp(tmp)) |
{ |
TRACE_LEAVE(""); |
TRACE_LEAVE("Returning data"); |
TIMER_END(extension_module); |
return tmp; |
} |
if(fid && tmp != fid) |
destruct(fid); |
TRACE_LEAVE("Returned new open file"); |
fid = tmp; |
break; |
} else |
TRACE_LEAVE(""); |
} |
} |
TIMER_END(extension_module); |
|
if(objectp(fid)) |
{ |
TIMER_START(content_type_module); |
if(stringp(id->extension)) { |
id->not_query += id->extension; |
loc = lower_case(Roxen.extension(id->not_query, id)); |
} |
TRACE_ENTER("Content-type mapping module", types_module); |
tmp=type_from_filename(id->not_query, 1, loc); |
TRACE_LEAVE(tmp?sprintf("Returned type %s %s.", tmp[0], tmp[1]||"") |
: "Missing type."); |
if(tmp) |
{ |
TRACE_LEAVE(""); |
TIMER_END(content_type_module); |
return ([ "file":fid, "type":tmp[0], "encoding":tmp[1] ]); |
} |
TRACE_LEAVE(""); |
TIMER_END(content_type_module); |
return ([ "file":fid, ]); |
} |
|
if(!fid) |
TRACE_LEAVE("Returned 'no such file'."); |
else |
TRACE_LEAVE("Returning data"); |
return fid; |
} |
|
#define TRY_FIRST_MODULES(FILE, RECURSE_CALL) do { \ |
TIMER_START(first_modules); \ |
foreach(first_module_cache||first_modules(), function funp) \ |
{ \ |
TRACE_ENTER ("First try module", funp); \ |
if(FILE = funp( id )) { \ |
TRACE_LEAVE ("Got response"); \ |
break; \ |
} \ |
TRACE_LEAVE ("No response"); \ |
if(id->conf != this_object()) { \ |
TRACE_ENTER (sprintf ("Configuration changed to %O - " \ |
"redirecting", id->conf), 0); \ |
TRACE_LEAVE (""); \ |
TIMER_END (first_modules); \ |
TIMER_END (handle_request); \ |
return id->conf->RECURSE_CALL; \ |
} \ |
} \ |
TIMER_END(first_modules); \ |
} while (0) |
|
#define TRY_LAST_MODULES(FILE, RECURSE_CALL) do { \ |
mixed ret; \ |
TIMER_START(last_modules); \ |
foreach(last_module_cache||last_modules(), function funp) { \ |
TRACE_ENTER ("Last try module", funp); \ |
if(ret = funp(id)) { \ |
if (ret == 1) { \ |
TRACE_LEAVE ("Request rewritten - try again"); \ |
TIMER_END(last_modules); \ |
TIMER_END(handle_request); \ |
return RECURSE_CALL; \ |
} \ |
TRACE_LEAVE ("Got response"); \ |
break; \ |
} \ |
TRACE_LEAVE ("No response"); \ |
} \ |
FILE = ret; \ |
TIMER_END(last_modules); \ |
} while (0) |
|
mixed handle_request( RequestID id, void|int recurse_count) |
{ |
mixed file; |
REQUEST_WERR("handle_request()"); |
|
if (recurse_count > 50) { |
TRACE_ENTER ("Looped " + recurse_count + |
" times in internal redirects - giving up", 0); |
TRACE_LEAVE (""); |
return 0; |
} |
|
TIMER_START(handle_request); |
TRY_FIRST_MODULES (file, handle_request (id, recurse_count + 1)); |
if(!mappingp(file) && !mappingp(file = get_file(id))) |
TRY_LAST_MODULES (file, handle_request(id, recurse_count + 1)); |
TIMER_END(handle_request); |
|
REQUEST_WERR("handle_request(): Done"); |
MERGE_TIMERS(roxen); |
return file; |
} |
|
mapping|int get_file(RequestID id, int|void no_magic, int|void internal_get) |
|
|
|
{ |
TIMER_START(get_file); |
int orig_internal_get = id->misc->internal_get; |
id->misc->internal_get = internal_get; |
RequestID root_id = id->root_id || id; |
root_id->misc->_request_depth++; |
if(sub_req_limit && root_id->misc->_request_depth > sub_req_limit) |
error("Subrequest limit reached. (Possibly an insertion loop.)"); |
|
mapping|int res; |
mapping res2; |
function tmp; |
res = low_get_file(id, no_magic); |
TIMER_END(get_file); |
|
|
|
|
TIMER_START(filter_modules); |
foreach(filter_module_cache||filter_modules(), tmp) |
{ |
TRACE_ENTER("Filter module", tmp); |
PROF_ENTER(Roxen.get_owning_module(tmp)->module_name,"filter"); |
if(res2=tmp(res,id)) |
{ |
if(mappingp(res) && res->file && (res2->file != res->file)) |
destruct(res->file); |
TRACE_LEAVE("Rewrote result."); |
res=res2; |
} else |
TRACE_LEAVE(""); |
PROF_LEAVE(Roxen.get_owning_module(tmp)->module_name,"filter"); |
} |
TIMER_END(filter_modules); |
|
root_id->misc->_request_depth--; |
id->misc->internal_get = orig_internal_get; |
return res; |
} |
|
array(string) find_dir(string file, RequestID id, void|int(0..1) verbose) |
{ |
array dir; |
TRACE_ENTER(sprintf("List directory %O.", file), 0); |
|
if(!sizeof (file) || file[0] != '/') |
file = "/" + file; |
|
#ifdef URL_MODULES |
#ifdef THREADS |
Thread.MutexKey key; |
#endif |
|
foreach(url_modules(), function funp) |
{ |
string of = id->not_query; |
id->not_query = file; |
LOCK(funp); |
TRACE_ENTER("URL module", funp); |
mixed remap=funp( id, file ); |
UNLOCK(); |
|
if(mappingp( remap )) |
{ |
id->not_query=of; |
TRACE_LEAVE("Returned 'No thanks'."); |
TRACE_LEAVE(""); |
return 0; |
} |
if(objectp( remap )) |
{ |
mixed err; |
id->misc->find_dir_nest++; |
|
TRACE_LEAVE("Recursing"); |
file = id->not_query; |
err = catch { |
if( id->misc->find_dir_nest < 20 ) |
dir = (id->conf || this_object())->find_dir( file, id ); |
else |
error("Too deep recursion in roxen::find_dir() while mapping " |
+file+".\n"); |
}; |
id->misc->find_dir_nest = 0; |
TRACE_LEAVE(""); |
if(err) |
throw(err); |
return dir; |
} |
id->not_query=of; |
} |
#endif /* URL_MODULES */ |
|
array | mapping d; |
array(string) locks=({}); |
RoxenModule mod; |
string loc; |
foreach(location_modules(), array tmp) |
{ |
loc = tmp[0]; |
if(!search(file, loc)) { |
|
TRACE_ENTER(sprintf("Location module [%s] ", loc), tmp[1]); |
#ifdef MODULE_LEVEL_SECURITY |
if(check_security(tmp[1], id)) { |
TRACE_LEAVE("Permission denied"); |
continue; |
} |
#endif |
mod=function_object(tmp[1]); |
if(d=mod->find_dir(file[strlen(loc)..], id)) |
{ |
if(mappingp(d)) |
{ |
if(d->files) { |
TRACE_LEAVE("Got exclusive directory."); |
TRACE_LEAVE(sprintf("Returning list of %d files.", sizeof(d->files))); |
return d->files; |
} else |
TRACE_LEAVE(""); |
} else { |
TRACE_LEAVE("Got files."); |
if(!dir) dir=({ }); |
dir |= d; |
} |
} |
else { |
if(verbose && mod->list_lock_files) |
locks |= mod->list_lock_files(); |
TRACE_LEAVE(""); |
} |
} else if((search(loc, file)==0) && (loc[strlen(file)-1]=='/') && |
(loc[0]==loc[-1]) && (loc[-1]=='/') && |
(function_object(tmp[1])->stat_file(".", id))) { |
|
|
|
TRACE_ENTER(sprintf("Location module [%s] ", loc), tmp[1]); |
loc=loc[strlen(file)..]; |
sscanf(loc, "%s/", loc); |
if (dir) { |
dir |= ({ loc }); |
} else { |
dir = ({ loc }); |
} |
TRACE_LEAVE("Added module mountpoint."); |
} |
} |
if(!dir) return verbose ? ({0})+locks : ([])[0]; |
if(sizeof(dir)) |
{ |
TRACE_LEAVE(sprintf("Returning list of %d files.", sizeof(dir))); |
return dir; |
} |
TRACE_LEAVE("Returning 'No such directory'."); |
return 0; |
} |
|
|
|
array(int)|Stat stat_file(string file, RequestID id) |
{ |
mixed s, tmp; |
#ifdef THREADS |
Thread.MutexKey key; |
#endif |
TRACE_ENTER(sprintf("Stat file %O.", file), 0); |
|
file=replace(file, "//", "/"); |
|
#ifdef URL_MODULES |
|
string of = id->not_query; |
id->not_query = file; |
foreach(url_module_cache||url_modules(), function funp) |
{ |
TRACE_ENTER("URL module", funp); |
LOCK(funp); |
tmp=funp( id, file ); |
UNLOCK(); |
|
if (tmp) { |
if(mappingp( tmp )) { |
id->not_query = of; |
TRACE_LEAVE(""); |
TRACE_LEAVE("Returned 'No thanks'."); |
return 0; |
} |
if(objectp( tmp )) |
{ |
mixed err; |
id->misc->stat_file_nest++; |
id->not_query = of; |
TRACE_LEAVE("Recursing"); |
err = catch { |
if( id->misc->stat_file_nest < 20 ) |
tmp = (id->conf || this_object())->stat_file( file, id ); |
else |
error("Too deep recursion in roxen::stat_file() while mapping " |
+file+".\n"); |
}; |
id->misc->stat_file_nest = 0; |
if(err) |
throw(err); |
TRACE_LEAVE(""); |
TRACE_LEAVE("Returning data"); |
return tmp; |
} |
} |
TRACE_LEAVE(""); |
} |
id->not_query = of; |
#endif |
|
|
foreach(location_module_cache||location_modules(), |
[string loc, function fun]) { |
if((file == loc) || ((file+"/")==loc)) |
{ |
TRACE_ENTER(sprintf("Location module [%s] ", loc), fun); |
TRACE_LEAVE("Exact match."); |
TRACE_LEAVE(""); |
return Stdio.Stat(({ 0775, -3, 0, 0, 0, 0, 0 })); |
} |
if(has_prefix(file, loc)) |
{ |
TRACE_ENTER(sprintf("Location module [%s] ", loc), fun); |
#ifdef MODULE_LEVEL_SECURITY |
if(check_security(fun, id)) { |
TRACE_LEAVE(""); |
TRACE_LEAVE("Permission denied"); |
continue; |
} |
#endif |
if(s=function_object(fun)->stat_file(file[strlen(loc)..], id)) |
{ |
TRACE_LEAVE(""); |
TRACE_LEAVE("Stat ok."); |
return s; |
} |
TRACE_LEAVE(""); |
} |
} |
TRACE_LEAVE("Returned 'no such file'."); |
} |
|
mapping error_file( RequestID id ) |
{ |
string data = query("ZNoSuchFile"); |
NOCACHE(); |
#if ROXEN_COMPAT <= 2.1 |
data = replace(data,({"$File", "$Me"}), |
({"&page.virtfile;", "&roxen.server;"})); |
#endif |
mapping res = Roxen.http_rxml_answer( data, id, 0, "text/html" ); |
res->error = 404; |
return res; |
} |
|
|
array open_file(string fname, string mode, RequestID id, void|int internal_get, |
void|int recurse_count) |
{ |
mapping|int(0..1) file; |
string oq = id->not_query; |
|
if( id->conf && (id->conf != this_object()) ) |
return id->conf->open_file( fname, mode, id, internal_get, recurse_count ); |
|
if (recurse_count > 50) { |
TRACE_ENTER ("Looped " + recurse_count + |
" times in internal redirects - giving up", 0); |
TRACE_LEAVE (""); |
} |
|
else { |
Configuration oc = id->conf; |
id->not_query = fname; |
TRY_FIRST_MODULES (file, open_file (fname, mode, id, |
internal_get, recurse_count + 1)); |
fname = id->not_query; |
|
if(search(mode, "R")!=-1) |
{ |
string f; |
mode -= "R"; |
if(f = real_file(fname, id)) |
{ |
|
return ({ open(f, mode), ([]) }); |
} |
|
} |
|
if(mode!="r") { |
id->not_query = oq; |
return ({ 0, (["error":501, "data":"Not implemented." ]) }); |
} |
|
if(!file) |
{ |
file = get_file( id, 0, internal_get ); |
if(!file) |
TRY_LAST_MODULES (file, open_file (id->not_query, mode, id, |
internal_get, recurse_count + 1)); |
} |
} |
|
if(!mappingp(file)) |
{ |
if(id->misc->error_code) |
file = Roxen.http_low_answer(id->misc->error_code, "Failed" ); |
else if(id->method!="GET"&&id->method != "HEAD"&&id->method!="POST") |
file = Roxen.http_low_answer(501, "Not implemented."); |
else |
file = error_file( id ); |
|
id->not_query = oq; |
|
return ({ 0, file }); |
} |
|
if( file->data ) |
{ |
file->file = StringFile(file->data); |
m_delete(file, "data"); |
} |
id->not_query = oq; |
return ({ file->file || StringFile(""), file }); |
} |
|
|
mapping(string:array(mixed)) find_dir_stat(string file, RequestID id) |
{ |
string loc; |
mapping(string:array(mixed)) dir = ([]); |
mixed d, tmp; |
|
|
file=replace(file, "//", "/"); |
|
if(!sizeof (file) || file[0] != '/') |
file = "/" + file; |
|
|
|
TRACE_ENTER(sprintf("Request for directory and stat's \"%s\".", file), 0); |
|
#ifdef URL_MODULES |
#ifdef THREADS |
Thread.MutexKey key; |
#endif |
|
foreach(url_modules(), function funp) |
{ |
string of = id->not_query; |
id->not_query = file; |
LOCK(funp); |
TRACE_ENTER("URL module", funp); |
tmp=funp( id, file ); |
UNLOCK(); |
|
if(mappingp( tmp )) |
{ |
id->not_query=of; |
#ifdef MODULE_DEBUG |
report_debug("conf->find_dir_stat(\"%s\"): url_module returned mapping:%O\n", |
file, tmp); |
#endif /* MODULE_DEBUG */ |
TRACE_LEAVE("Returned mapping."); |
TRACE_LEAVE(""); |
return 0; |
} |
if(objectp( tmp )) |
{ |
mixed err; |
id->misc->find_dir_stat_nest++; |
|
file = id->not_query; |
err = catch { |
if( id->misc->find_dir_stat_nest < 20 ) |
tmp = (id->conf || this_object())->find_dir_stat( file, id ); |
else { |
TRACE_LEAVE("Too deep recursion"); |
error("Too deep recursion in roxen::find_dir_stat() while mapping " |
+file+".\n"); |
} |
}; |
id->misc->find_dir_stat_nest = 0; |
if(err) |
throw(err); |
#ifdef MODULE_DEBUG |
report_debug("conf->find_dir_stat(\"%s\"): url_module returned object:\n", |
file); |
#endif /* MODULE_DEBUG */ |
TRACE_LEAVE("Returned object."); |
TRACE_LEAVE("Returning it."); |
return tmp; |
} |
id->not_query=of; |
TRACE_LEAVE(""); |
} |
#endif /* URL_MODULES */ |
|
foreach(location_modules(), tmp) |
{ |
loc = tmp[0]; |
|
TRACE_ENTER(sprintf("Location module [%s] ", loc), 0); |
|
if(!search(file, loc)) |
{ |
|
#ifdef MODULE_LEVEL_SECURITY |
if(check_security(tmp[1], id)) { |
TRACE_LEAVE("Security check failed."); |
continue; |
} |
#endif |
RoxenModule c = function_object(tmp[1]); |
string f = file[strlen(loc)..]; |
if (c->find_dir_stat) { |
SIMPLE_TRACE_ENTER(c, "Calling find_dir_stat()."); |
if (d = c->find_dir_stat(f, id)) { |
SIMPLE_TRACE_LEAVE("Returned mapping with %d entries.", sizeof (d)); |
dir = d | dir; |
} |
else |
SIMPLE_TRACE_LEAVE("Returned zero."); |
} else { |
SIMPLE_TRACE_ENTER(c, "Calling find_dir()."); |
if(d = c->find_dir(f, id)) { |
SIMPLE_TRACE_LEAVE("Returned array with %d entries.", sizeof (d)); |
dir = mkmapping(d, Array.map(d, lambda(string fn) |
{ |
return c->stat_file(f + fn, id); |
})) | dir; |
} |
else |
SIMPLE_TRACE_LEAVE("Returned zero."); |
} |
} else if(search(loc, file)==0 && loc[strlen(file)-1]=='/' && |
(loc[0]==loc[-1]) && loc[-1]=='/' && |
(function_object(tmp[1])->stat_file(".", id))) { |
|
|
|
TRACE_ENTER(sprintf("The file %O is on the path to the mountpoint %O.", |
file, loc), 0); |
loc=loc[strlen(file)..]; |
sscanf(loc, "%s/", loc); |
if (!dir[loc]) { |
dir[loc] = ({ 0775, -3, 0, 0, 0, 0, 0 }); |
} |
TRACE_LEAVE(""); |
} |
TRACE_LEAVE(""); |
} |
if(sizeof(dir)) |
return dir; |
} |
|
|
|
|
array access(string file, RequestID id) |
{ |
string loc; |
array s, tmp; |
|
file=replace(file, "//", "/"); |
|
|
foreach(location_modules(), tmp) |
{ |
loc = tmp[0]; |
if((file+"/")==loc) { |
#ifdef MODULE_LEVEL_SECURITY |
if(check_security(tmp[1], id)) continue; |
#endif |
if(s=function_object(tmp[1])->access("", id)) |
return s; |
} else if(!search(file, loc)) { |
#ifdef MODULE_LEVEL_SECURITY |
if(check_security(tmp[1], id)) continue; |
#endif |
if(s=function_object(tmp[1])->access(file[strlen(loc)..], id)) |
return s; |
} |
} |
return 0; |
} |
|
string real_file(string file, RequestID id) |
|
{ |
string loc; |
string s; |
array tmp; |
file=replace(file, "//", "/"); |
|
if(!id) error("No id passed to real_file"); |
|
|
foreach(location_modules(), tmp) |
{ |
loc = tmp[0]; |
if(!search(file, loc)) |
{ |
#ifdef MODULE_LEVEL_SECURITY |
if(check_security(tmp[1], id)) continue; |
#endif |
if(s=function_object(tmp[1])->real_file(file[strlen(loc)..], id)) |
return s; |
} |
} |
} |
|
array(int)|Stat try_stat_file(string s, RequestID id, int|void not_internal) |
{ |
RequestID fake_id; |
array(int)|Stat res; |
|
if(!objectp(id)) |
error("No ID passed to 'try_stat_file'\n"); |
|
|
|
if ( !id->misc ) |
id->misc = ([]); |
if ( !id->misc->common ) |
id->misc->common = ([]); |
|
fake_id = id->clone_me(); |
|
fake_id->misc->common = id->misc->common; |
fake_id->misc->internal_get = !not_internal; |
fake_id->conf = this_object(); |
|
if (fake_id->scan_for_query) |
|
|
|
|
s = fake_id->scan_for_query (s); |
|
s = Roxen.fix_relative (s, id); |
|
fake_id->raw_url = s; |
fake_id->not_query = s; |
fake_id->method = "GET"; |
|
res = stat_file(fake_id->not_query, fake_id); |
|
destruct (fake_id); |
return res; |
} |
|
static RequestID make_fake_id (string s, RequestID id) |
{ |
RequestID fake_id; |
|
|
|
if ( !id->misc->common ) |
id->misc->common = ([]); |
|
fake_id = id->clone_me(); |
|
fake_id->misc->common = id->misc->common; |
fake_id->conf = this_object(); |
|
if (fake_id->scan_for_query) |
|
|
|
|
s = fake_id->scan_for_query (s); |
|
s = Roxen.fix_relative (s, id); |
|
fake_id->raw_url=s; |
fake_id->not_query=s; |
|
return fake_id; |
} |
|
int|string try_get_file(string s, RequestID id, |
int|void stat_only, int|void nocache, |
int|void not_internal, |
mapping|void result_mapping) |
|
|
|
|
|
|
|
|
|
|
|
|
{ |
string res; |
RequestID fake_id = make_fake_id (s, id); |
mapping m; |
|
fake_id->misc->internal_get = !not_internal; |
fake_id->method = "GET"; |
|
array a = open_file( fake_id->not_query, "r", fake_id, !not_internal ); |
|
m = a[1]; |
|
if (result_mapping) |
foreach(indices(m), string i) |
result_mapping[i] = m[i]; |
|
if(a[0]) { |
m->file = a[0]; |
} |
else { |
destruct (fake_id); |
return 0; |
} |
|
CACHE( fake_id->misc->cacheable ); |
destruct (fake_id); |
|
|
if (!(< 0,2,3 >)[m->error/100]) return 0; |
|
if(stat_only) return 1; |
|
if(m->data) |
res = m->data; |
else |
res=""; |
m->data = 0; |
|
if( objectp(m->file) ) |
{ |
res += m->file->read(); |
if (m->file) { |
|
destruct(m->file); |
} |
m->file = 0; |
} |
|
if(m->raw) |
{ |
res -= "\r"; |
if(!sscanf(res, "%*s\n\n%s", res)) |
sscanf(res, "%*s\n%s", res); |
} |
return res; |
} |
|
mapping(string:string) try_get_headers(string s, RequestID id, |
int|void not_internal) |
|
|
|
|
{ |
RequestID fake_id = make_fake_id (s, id); |
mapping m; |
|
fake_id->misc->internal_get = !not_internal; |
fake_id->method = "HEAD"; |
|
array a = open_file( s, "r", fake_id, !not_internal ); |
if(a && a[1]) { |
if (a[0]) a[0]->close(); |
m = a[1]; |
} |
else { |
destruct (fake_id); |
return 0; |
} |
|
CACHE( fake_id->misc->cacheable ); |
|
if (!m->raw) |
m = fake_id->make_response_headers (m); |
|
else { |
Roxen.HeaderParser hp = Roxen.HeaderParser(); |
array res; |
|
if(m->data) |
res = hp->feed (m->data); |
|
if (!res && objectp(m->file)) |
{ |
hp->feed (m->file->read()); |
if (m->file) { |
|
destruct(m->file); |
} |
} |
|
m = res && res[2]; |
} |
|
destruct (fake_id); |
return m; |
} |
|
mapping(string:mixed) try_put_file(string path, string data, RequestID id) |
{ |
TIMER_START(try_put_file); |
|
|
|
if ( !id->misc ) |
id->misc = ([]); |
if ( !id->misc->common ) |
id->misc->common = ([]); |
|
RequestID fake_id = id->clone_me(); |
|
fake_id->misc->common = id->misc->common; |
fake_id->misc->internal_get = 1; |
fake_id->conf = this_object(); |
|
fake_id->root_id->misc->_request_depth++; |
if(sub_req_limit && fake_id->root_id->misc->_request_depth > sub_req_limit) |
error("Subrequest limit reached. (Possibly an insertion loop.)"); |
|
if (fake_id->scan_for_query) |
|
|
|
|
path = fake_id->scan_for_query(path); |
|
path = Roxen.fix_relative(path, id); |
|
fake_id->raw_url=path; |
fake_id->not_query=path; |
fake_id->method = "PUT"; |
fake_id->data = data; |
fake_id->misc->len = sizeof(data); |
fake_id->misc->internal_get = 1; |
|
mapping(string:mixed) res = low_get_file(fake_id, 1); |
TIMER_END(try_put_file); |
return res; |
} |
|
int(0..1) is_file(string virt_path, RequestID id, int(0..1)|void internal) |
|
|
{ |
if(internal) { |
int(0..1) was_internal = id->misc->internal_get; |
id->misc->internal_get = 1; |
int(0..1) res = !!stat_file(virt_path, id); |
if(!was_internal) |
m_delete(id->misc, "internal_get"); |
return res; |
} |
if(stat_file(virt_path, id) || |
has_suffix(virt_path, "/internal-roxen-unit")) |
return 1; |
string f = (virt_path/"/")[-1]; |
if( sscanf(f, "internal-roxen-%s", f) ) { |
if(internal_roxen_image(f, id) || |
has_prefix(f, "pixel-")) |
return 1; |
return 0; |
} |
if( sscanf(f, "internal-gopher-%s", f) && |
internal_gopher_image(f) ) |
return 1; |
return 0; |
} |
|
array registered_urls = ({}), failed_urls = ({ }); |
array do_not_log_patterns = 0; |
void start(int num) |
{ |
fix_my_url(); |
|
#if 0 |
report_debug(sprintf("configuration:start():\n" |
" registered_urls: ({ %{%O, %}})\n" |
" failed_urls: ({ %{%O, %}})\n" |
" URLs: ({ %{%O, %}})\n", |
registered_urls, |
failed_urls, |
query("URLs"))); |
#endif /* 0 */ |
|
|
foreach( (registered_urls-query("URLs"))+failed_urls, string url ) |
{ |
registered_urls -= ({ url }); |
roxen.unregister_url(url, this_object()); |
} |
|
failed_urls = ({ }); |
|
foreach( (query( "URLs" )-registered_urls), string url ) |
{ |
if( roxen.register_url( url, this_object() ) ) |
registered_urls += ({ url }); |
else |
failed_urls += ({ url }); |
} |
if( !datacache ) |
datacache = DataCache( ); |
else |
datacache->init_from_variables(); |
|
parse_log_formats(); |
init_log_file(); |
do_not_log_patterns = query("NoLog"); |
if(!sizeof(do_not_log_patterns)) |
do_not_log_patterns = 0; |
|
if( query("throttle") ) |
{ |
if( !throttler ) |
throttler=.throttler(); |
throttler->throttle(query("throttle_fill_rate"), |
query("throttle_bucket_depth"), |
query("throttle_min_grant"), |
query("throttle_max_grant")); |
} |
else if( throttler ) |
{ |
|
throttler->throttle( 1000000000, 1000000000, |
1024, 65536 ); |
|
throttler = 0; |
} |
|
#ifdef SNMP_AGENT |
if(query("snmp_process") && objectp(roxen->snmpagent)) |
roxen->snmpagent->add_virtserv(get_config_id()); |
#endif |
|
} |
|
void save_me() |
{ |
save_one( 0 ); |
} |
|
void save(int|void all) |
|
|
{ |
if(all) |
{ |
store("spider#0", variables, 0, this_object()); |
start(2); |
} |
|
store( "EnabledModules", enabled_modules, 1, this_object()); |
foreach(indices(modules), string modname) |
{ |
foreach(indices(modules[modname]->copies), int i) |
{ |
store(modname+"#"+i, modules[modname]->copies[i]->query(), 0, this_object()); |
if (mixed err = catch(modules[modname]->copies[i]-> |
start(2, this_object()))) |
report_error("Error calling start in module.\n%s", |
describe_backtrace (err)); |
} |
} |
invalidate_cache(); |
} |
|
int save_one( RoxenModule o ) |
|
{ |
mapping mod; |
if(!o) |
{ |
store("spider#0", variables, 0, this_object()); |
start(2); |
return 1; |
} |
string q = otomod[ o ]; |
if( !q ) |
error("Invalid module"); |
|
store(q, o->query(), 0, this_object()); |
invalidate_cache(); |
mixed error; |
if( error = catch( o->start(2, this_object()) ) ) |
{ |
if( objectp(error ) ) |
error = (array)error; |
if( sizeof(error)>1 && arrayp( error[1] ) ) |
{ |
int i; |
for( i = 0; i<sizeof( error[1] ); i++ ) |
if( error[1][i][2] == save_one ) |
break; |
error[1] = error[1][i+1..]; |
} |
if( o->report_error ) |
o->report_error( "Call to start failed.\n"+describe_backtrace( error ) ); |
else |
report_error( "Call to start failed.\n"+describe_backtrace( error )); |
} |
invalidate_cache(); |
return 1; |
} |
|
RoxenModule reload_module( string modname ) |
{ |
RoxenModule old_module = find_module( modname ); |
ModuleInfo mi = roxen.find_module( (modname/"#")[0] ); |
|
roxen->bootstrap_info->set (({this_object(), modname })); |
|
if( !old_module ) return 0; |
|
master()->clear_compilation_failures(); |
|
if( !old_module->not_a_module ) |
{ |
save_one( old_module ); |
master()->refresh_inherit( object_program( old_module ) ); |
master()->refresh( object_program( old_module ), 1 ); |
} |
|
array old_error_log = (array) old_module->error_log; |
|
RoxenModule nm; |
|
|
nm = mi->instance( this_object() ); |
|
if( nm->not_a_module ) |
{ |
old_module->report_error(LOC_C(385,"Reload failed")+"\n"); |
return old_module; |
} |
|
disable_module( modname, 1 ); |
destruct( old_module ); |
|
mi->update_with( nm,0 ); |
enable_module( modname, nm, mi ); |
|
foreach (old_error_log, [string msg, array(int) times]) |
nm->error_log[msg] += times; |
|
nm->report_notice(LOC_C(11, "Reloaded %s.")+"\n", mi->get_name()); |
return nm; |
} |
|
#ifdef THREADS |
Thread.Mutex enable_modules_mutex = Thread.Mutex(); |
#define MODULE_LOCK(TYPE) \ |
Thread.MutexKey enable_modules_lock = enable_modules_mutex->lock (TYPE) |
#else |
#define MODULE_LOCK(TYPE) |
#endif |
|
static int enable_module_batch_msgs; |
|
RoxenModule enable_module( string modname, RoxenModule|void me, |
ModuleInfo|void moduleinfo, |
int|void nostart, int|void nosave ) |
{ |
MODULE_LOCK (2); |
int id; |
ModuleCopies module; |
int pr; |
mixed err; |
int module_type; |
|
if( forcibly_added[modname] == 2 ) |
return search(otomod, modname); |
|
if( datacache ) datacache->flush(); |
|
if( sscanf(modname, "%s#%d", modname, id ) != 2 ) |
while( modules[ modname ] && modules[ modname ][ id ] ) |
id++; |
|
roxen->bootstrap_info->set (({this_object(), modname + "#" + id})); |
|
#ifdef MODULE_DEBUG |
int start_time = gethrtime(); |
#endif |
|
if( !moduleinfo ) |
{ |
moduleinfo = roxen->find_module( modname ); |
|
if (!moduleinfo) |
{ |
report_warning("Failed to load %s. The module probably " |
"doesn't exist in the module path.\n", modname); |
got_no_delayed_load = -1; |
roxen->bootstrap_info->set (0); |
return 0; |
} |
} |
|
string descr = moduleinfo->get_name() + (id ? " copy " + (id + 1) : ""); |
|
|
#ifdef MODULE_DEBUG |
if (enable_module_batch_msgs) |
report_debug(" %-43s... \b", descr ); |
else |
report_debug("Enabling " + descr + "\n"); |
#endif |
|
module = modules[ modname ]; |
|
if(!module) |
modules[ modname ] = module = ModuleCopies(); |
|
if( !me ) |
{ |
if(err = catch(me = moduleinfo->instance(this_object()))) |
{ |
#ifdef MODULE_DEBUG |
if (enable_module_batch_msgs) report_debug("\bERROR\n"); |
if (err != "") { |
#endif |
string bt=describe_backtrace(err); |
report_error("enable_module(): " + |
LOC_M(41, "Error while initiating module copy of %s%s"), |
moduleinfo->get_name(), (bt ? ":\n"+bt : "\n")); |
#ifdef MODULE_DEBUG |
} |
#endif |
got_no_delayed_load = -1; |
roxen->bootstrap_info->set (0); |
return module[id]; |
} |
} |
|
if(module[id] && module[id] != me) |
{ |
if( module[id]->stop ) { |
if (err = catch( module[id]->stop() )) { |
string bt=describe_backtrace(err); |
report_error("disable_module(): " + |
LOC_M(44, "Error while disabling module %s%s"), |
descr, (bt ? ":\n"+bt : "\n")); |
} |
} |
} |
|
me->set_configuration( this_object() ); |
|
module_type = moduleinfo->type; |
if (module_type & (MODULE_LOCATION|MODULE_EXTENSION| |
MODULE_CONFIG|MODULE_FILE_EXTENSION|MODULE_LOGGER| |
MODULE_URL|MODULE_LAST|MODULE_PROVIDER| |
MODULE_FILTER|MODULE_TAG|MODULE_FIRST| |
MODULE_USERDB)) |
{ |
if(module_type != MODULE_CONFIG) |
{ |
if (err = catch { |
me->defvar("_priority", 5, DLOCALE(12, "Priority"), TYPE_INT_LIST, |
DLOCALE(13, "The priority of the module. 9 is highest and 0 is lowest." |
" Modules with the same priority can be assumed to be " |
"called in random order"), |
({0, 1, 2, 3, 4, 5, 6, 7, 8, 9})); |
}) { |
roxen->bootstrap_info->set (0); |
throw(err); |
} |
} |
|
#ifdef MODULE_LEVEL_SECURITY |
if( (module_type & ~(MODULE_LOGGER|MODULE_PROVIDER|MODULE_USERDB)) != 0 ) |
{ |
|
|
|
|
|
|
me->defvar("_seclevels", "", DLOCALE(16, "Security: Patterns"), |
TYPE_TEXT_FIELD, |
DLOCALE(245, |
"The syntax is:\n" |
" \n<dl>" |
" <dt><b>userdb</b> <i>userdatabase module</i></dt>\n" |
" <dd> Select a non-default userdatabase module. The default is to " |
" search all modules. The userdatabase module config_userdb is always " |
" present, and contains the configuration users</dd>\n" |
"<dt><b>authmethod</b> <i>authentication module</i></dt>\n" |
"<dd>Select a non-default authentication method.</dd>" |
"<dt><b>realm</b> <i>realm name</i></dt>\n" |
"<dd>The realm is used when user authentication info is requested</dd>" |
"</dl>\n" |
" Below, CMD is one of 'allow' and 'deny'\n" |
" <dl>\n" |
" <dt>CMD <b>ip</b>=<i>ip/bits</i> [return]<br />\n" |
" CMD <b>ip</b>=<i>ip:mask</i> [return] <br />\n" |
" CMD <b>ip</b>=<i>pattern[,pattern,...]</i> [return] <br /></dt>\n" |
" <dd>Match the remote IP-address.</dd>\n" |
" \n" |
" <dt>CMD <b>user</b>=<i>name[,name,...]</i> [return]</dt>\n" |
" <dd>Requires a authenticated user. If the user name 'any' is used, any " |
"valid user will be OK. Otherwise, one of the listed users are required.</dd>" |
" <dt>CMD <b>group</b>=<i>name[,name,...]</i> [return]</dt>\n" |
"<dd>Requires a authenticated user with a group. If the group name " |
" 'any' is used, any valid group will be OK. Otherwise, one of the " |
"listed groups are required.</dd>\n" |
" \n" |
"<dt>CMD <b>dns</b>=<i>pattern[,pattern,...]</i> [return]</dt>\n" |
"<dd>Require one of the specified DNS domain-names</dd>" |
" \n" |
"<dt>CMD <b>time</b>=<i>HH:mm-HH:mm</i> [return]</dt>\n" |
"<dd>Only allow access to the module from the first time to the " |
" second each day. Both times should be specified in 24-hour " |
" HH:mm format.</dd>\n" |
"<dt>CMD <b>day</b>=<i>day[,day,...]</i> [return]</dt>\n" |
"<dd>Only allow access during certain days. Day is either a numerical " |
" value (Monday=1, Sunday=7) or a string (monday, tuesday etc)</dd>" |
"</dl><p>\n" |
" pattern is always a glob pattern (* = any characters, ? = any character).\n" |
"</p><p>\n" |
" return means that reaching this command results in immediate\n" |
" return, only useful for 'allow'.</p>\n" |
" \n" |
" <p>'deny' always implies a return, no futher testing is done if a\n" |
" 'deny' match.</p>\n")); |
|
if(!(module_type & MODULE_PROXY)) |
{ |
me->defvar("_seclvl", 0, DLOCALE(18, "Security: Security level"), |
TYPE_INT, |
DLOCALE(305, "The modules security level is used to determine if a " |
" request should be handled by the module." |
"\n<p><h2>Security level vs Trust level</h2>" |
" Each module has a configurable <i>security level</i>." |
" Each request has an assigned trust level. Higher" |
" <i>trust levels</i> grants access to modules with higher" |
" <i>security levels</i>." |
"\n<p><h2>Definitions</h2><ul>" |
" <li>A requests initial Trust level is infinitely high.</li>" |
" <li> A request will only be handled by a module if its" |
" <i>trust level</i> is higher or equal to the" |
" <i>security level</i> of the module.</li>" |
" <li> Each time the request is handled by a module the" |
" <i>trust level</i> of the module will be set to the" |
" lower of its <i>trust level</i> and the modules" |
" <i>security level</i>, <i>unless</i> the security " |
" level of the module is 0, which is a special " |
" case and means that no change should be made.</li>" |
" </ul></p>" |
"\n<p><h2>Example</h2>" |
" Modules:<ul>" |
" <li> User filesystem, <i>security level</i> 1</li>" |
" <li> Filesystem module, <i>security level</i> 3</li>" |
" <li> CGI module, <i>security level</i> 2</li>" |
" </ul></p>" |
"\n<p>A request handled by \"User filesystem\" is assigned" |
" a <i>trust level</i> of one after the <i>security" |
" level</i> of that module. That request can then not be" |
" handled by the \"CGI module\" since that module has a" |
" higher <i>security level</i> than the requests trust" |
" level.</p>" |
"\n<p>On the other hand, a request handled by the the" |
" \"Filsystem module\" could later be handled by the" |
" \"CGI module\".</p>")); |
|
} else { |
me->definvisvar("_seclvl", -10, TYPE_INT); |
} |
} |
#endif |
} else { |
me->defvar("_priority", 0, "", TYPE_INT, "", 0, 1); |
} |
|
mapping(string:mixed) stored_vars = retrieve(modname + "#" + id, this_object()); |
int has_stored_vars = sizeof (stored_vars); |
me->setvars(stored_vars); |
|
module[ id ] = me; |
otomod[ me ] = modname+"#"+id; |
|
if(!nostart) call_start_callbacks( me, moduleinfo, module ); |
|
#ifdef MODULE_DEBUG |
if (enable_module_batch_msgs) { |
if(moduleinfo->config_locked[this_object()]) |
report_debug("\bLocked %6.1fms\n", (gethrtime()-start_time)/1000.0); |
else |
report_debug("\bOK %6.1fms\n", (gethrtime()-start_time)/1000.0); |
} |
#else |
if(moduleinfo->config_locked[this_object()]) |
report_error(" Error: \"%s\" not loaded (license restriction).\n", |
moduleinfo->get_name()); |
#endif |
if( !enabled_modules[modname+"#"+id] ) |
{ |
enabled_modules[modname+"#"+id] = 1; |
if(!nosave) |
store( "EnabledModules", enabled_modules, 1, this_object()); |
} |
|
if (!has_stored_vars && !nosave) |
store (modname + "#" + id, me->query(), 0, this_object()); |
|
if( me->no_delayed_load && got_no_delayed_load >= 0 ) |
got_no_delayed_load = 1; |
|
roxen->bootstrap_info->set (0); |
return me; |
} |
|
void call_start_callbacks( RoxenModule me, |
ModuleInfo moduleinfo, |
ModuleCopies module ) |
{ |
call_low_start_callbacks( me, moduleinfo, module ); |
call_high_start_callbacks (me, moduleinfo); |
} |
|
void call_low_start_callbacks( RoxenModule me, |
ModuleInfo moduleinfo, |
ModuleCopies module ) |
{ |
if(!me) return; |
if(!moduleinfo) return; |
if(!module) return; |
|
int module_type = moduleinfo->type, pr; |
mixed err; |
if (err = catch(pr = me->query("_priority"))) |
{ |
#ifdef MODULE_DEBUG |
if (enable_module_batch_msgs) report_debug("\bERROR\n"); |
#endif |
string bt=describe_backtrace(err); |
report_error(LOC_M(41, "Error while initiating module copy of %s%s"), |
moduleinfo->get_name(), (bt ? ":\n"+bt : "\n")); |
pr = 3; |
} |
|
api_module_cache |= me->api_functions(); |
|
if(module_type & MODULE_EXTENSION) |
{ |
report_error("%s is an MODULE_EXTENSION, that type is no " |
"longer available.\nPlease notify the modules writer.\n" |
"Suitable replacement types include MODULE_FIRST and " |
" MODULE_LAST.\n", moduleinfo->get_name()); |
} |
|
if(module_type & MODULE_FILE_EXTENSION) |
if (err = catch { |
array arr = me->query_file_extensions(); |
if (arrayp(arr)) |
{ |
string foo; |
foreach( me->query_file_extensions(), foo ) |
if(pri[pr]->file_extension_modules[foo = lower_case(foo)] ) |
pri[pr]->file_extension_modules[foo] += ({me}); |
else |
pri[pr]->file_extension_modules[foo] = ({me}); |
} |
}) { |
#ifdef MODULE_DEBUG |
if (enable_module_batch_msgs) report_debug("\bERROR\n"); |
#endif |
string bt=describe_backtrace(err); |
report_error(LOC_M(41, "Error while initiating module copy of %s%s"), |
moduleinfo->get_name(), (bt ? ":\n"+bt : "\n")); |
got_no_delayed_load = -1; |
} |
|
if(module_type & MODULE_PROVIDER) |
if (err = catch |
{ |
mixed provs = me->query_provides ? me->query_provides() : ({}); |
if(stringp(provs)) |
provs = (< provs >); |
if(arrayp(provs)) |
provs = mkmultiset(provs); |
if (multisetp(provs)) { |
pri[pr]->provider_modules [ me ] = provs; |
} |
}) { |
#ifdef MODULE_DEBUG |
if (enable_module_batch_msgs) report_debug("\bERROR\n"); |
#endif |
string bt=describe_backtrace(err); |
report_error(LOC_M(41, "Error while initiating module copy of %s%s"), |
moduleinfo->get_name(), (bt ? ":\n"+bt : "\n")); |
got_no_delayed_load = -1; |
} |
|
if(module_type & MODULE_TYPES) |
{ |
types_module = me; |
types_fun = me->type_from_extension; |
} |
|
if(module_type & MODULE_TAG) |
add_parse_module( me ); |
|
if(module_type & MODULE_DIRECTORIES) |
if (me->parse_directory) |
dir_module = me; |
|
if(module_type & MODULE_LOCATION) |
pri[pr]->location_modules += ({ me }); |
|
if(module_type & MODULE_LOGGER) |
pri[pr]->logger_modules += ({ me }); |
|
if(module_type & MODULE_URL) |
pri[pr]->url_modules += ({ me }); |
|
if(module_type & MODULE_LAST) |
pri[pr]->last_modules += ({ me }); |
|
if(module_type & MODULE_FILTER) |
pri[pr]->filter_modules += ({ me }); |
|
if(module_type & MODULE_FIRST) |
pri[pr]->first_modules += ({ me }); |
|
invalidate_cache(); |
} |
|
void call_high_start_callbacks (RoxenModule me, ModuleInfo moduleinfo) |
{ |
|
if(!me) return; |
if(!moduleinfo) return; |
|
mixed err; |
if((me->start) && (err = catch( me->start(0, this_object()) ) ) ) |
{ |
#ifdef MODULE_DEBUG |
if (enable_module_batch_msgs) |
report_debug("\bERROR\n"); |
#endif |
string bt=describe_backtrace(err); |
report_error(LOC_M(41, "Error while initiating module copy of %s%s"), |
moduleinfo->get_name(), (bt ? ":\n"+bt : "\n")); |
got_no_delayed_load = -1; |
} |
if( inited && me->ready_to_receive_requests ) |
if( mixed q = catch( me->ready_to_receive_requests( this_object() ) ) ) |
{ |
#ifdef MODULE_DEBUG |
if (enable_module_batch_msgs) report_debug("\bERROR\n"); |
#endif |
report_error( "While calling ready_to_receive_requests:\n"+ |
describe_backtrace( q ) ); |
got_no_delayed_load = -1; |
} |
} |
|
|
string check_variable(string name, mixed value) |
{ |
switch(name) |
{ |
|
|
|
|
|
case "MyWorldLocation": |
case "URLs": |
fix_my_url(); |
return 0; |
|
|
|
|
|
|
|
|
|
#ifdef SNMP_AGENT |
case "snmp_process": |
if (objectp(roxen->snmpagent)) { |
int cid = get_config_id(); |
value ? roxen->snmpagent->add_virtserv(cid) : roxen->snmpagent->del_virtserv(cid); |
} |
return 0; |
#endif |
} |
} |
|
void module_changed( ModuleInfo moduleinfo, |
RoxenModule me ) |
{ |
clean_up_for_module( moduleinfo, me ); |
call_low_start_callbacks( me, |
moduleinfo, |
modules[ moduleinfo->sname ] ); |
} |
|
void clean_up_for_module( ModuleInfo moduleinfo, |
RoxenModule me ) |
{ |
int pr; |
if(moduleinfo->type & MODULE_FILE_EXTENSION) |
{ |
string foo; |
for(pr=0; pr<10; pr++) |
foreach( indices (pri[pr]->file_extension_modules), foo ) |
pri[pr]->file_extension_modules[foo]-=({me}); |
} |
|
if(moduleinfo->type & MODULE_PROVIDER) { |
for(pr=0; pr<10; pr++) |
m_delete(pri[pr]->provider_modules, me); |
} |
|
if(moduleinfo->type & MODULE_TYPES) |
{ |
types_module = 0; |
types_fun = 0; |
} |
|
if(moduleinfo->type & MODULE_TAG) |
remove_parse_module( me ); |
|
if( moduleinfo->type & MODULE_DIRECTORIES ) |
dir_module = 0; |
|
if( moduleinfo->type & MODULE_LOCATION ) |
for(pr=0; pr<10; pr++) |
pri[pr]->location_modules -= ({ me }); |
|
if( moduleinfo->type & MODULE_URL ) |
for(pr=0; pr<10; pr++) |
pri[pr]->url_modules -= ({ me }); |
|
if( moduleinfo->type & MODULE_LAST ) |
for(pr=0; pr<10; pr++) |
pri[pr]->last_modules -= ({ me }); |
|
if( moduleinfo->type & MODULE_FILTER ) |
for(pr=0; pr<10; pr++) |
pri[pr]->filter_modules -= ({ me }); |
|
if( moduleinfo->type & MODULE_FIRST ) { |
for(pr=0; pr<10; pr++) |
pri[pr]->first_modules -= ({ me }); |
} |
|
if( moduleinfo->type & MODULE_LOGGER ) |
for(pr=0; pr<10; pr++) |
pri[pr]->logger_modules -= ({ me }); |
} |
|
int disable_module( string modname, int|void nodest ) |
{ |
MODULE_LOCK (2); |
RoxenModule me; |
int id, pr; |
sscanf(modname, "%s#%d", modname, id ); |
|
if( datacache ) datacache->flush(); |
|
ModuleInfo moduleinfo = roxen.find_module( modname ); |
mapping module = modules[ modname ]; |
string descr = moduleinfo->get_name() + (id ? " copy " + (id + 1) : ""); |
|
if(!module) |
{ |
report_error("disable_module(): " + |
LOC_M(42, "Failed to disable module:\n" |
"No module by that name: \"%s\".\n"), modname); |
return 0; |
} |
|
me = module[id]; |
m_delete(module->copies, id); |
|
if(!sizeof(module->copies)) |
m_delete( modules, modname ); |
|
invalidate_cache(); |
|
if(!me) |
{ |
report_error("disable_module(): " + |
LOC_M(43, "Failed to disable module \"%s\".\n"), |
descr); |
return 0; |
} |
|
if(me->stop) |
if (mixed err = catch (me->stop())) { |
string bt=describe_backtrace(err); |
report_error("disable_module(): " + |
LOC_M(44, "Error while disabling module %s%s"), |
descr, (bt ? ":\n"+bt : "\n")); |
} |
|
#ifdef MODULE_DEBUG |
report_debug("Disabling "+descr+"\n"); |
#endif |
|
clean_up_for_module( moduleinfo, me ); |
|
if( !nodest ) |
{ |
m_delete( enabled_modules, modname + "#" + id ); |
m_delete( forcibly_added, modname + "#" + id ); |
store( "EnabledModules",enabled_modules, 1, this_object()); |
destruct(me); |
} |
return 1; |
} |
|
RoxenModule find_module(string name) |
|
|
|
|
{ |
int id; |
sscanf(name, "%s#%d", name, id); |
if(modules[name]) |
return modules[name]->copies[id]; |
return 0; |
} |
|
mapping forcibly_added = ([]); |
int add_modules( array(string) mods, int|void now ) |
{ |
#ifdef MODULE_DEBUG |
int wr; |
#endif |
foreach (mods, string mod) |
{ |
sscanf( mod, "%s#", mod ); |
if( ((now && !modules[ mod ]) || |
!enabled_modules[ mod+"#0" ] ) |
&& !forcibly_added[ mod+"#0" ]) |
{ |
#ifdef MODULE_DEBUG |
if( !wr++ ) |
if (enable_module_batch_msgs) |
report_debug("\b[ adding req module" + (sizeof (mods) > 1 ? "s" : "") + "\n"); |
else |
report_debug("Adding required module" + (sizeof (mods) > 1 ? "s" : "") + "\n"); |
#endif |
forcibly_added[ mod+"#0" ] = 1; |
enable_module( mod+"#0" ); |
forcibly_added[ mod+"#0" ] = 2; |
} |
} |
#ifdef MODULE_DEBUG |
if( wr && enable_module_batch_msgs ) |
report_debug("] \b"); |
#endif |
} |
|
#if ROXEN_COMPAT < 2.2 |
|
|
mapping(string:string) sql_urls = ([]); |
|
constant sql_cache_get = DBManager.sql_cache_get; |
|
Sql.Sql sql_connect(string db) |
{ |
if (sql_urls[db]) |
return sql_cache_get(sql_urls[db]); |
else |
return sql_cache_get(db); |
} |
|
|
#endif |
|
static string my_url; |
|
void fix_my_url() |
{ |
my_url = query ("MyWorldLocation"); |
if (!sizeof (my_url) && |
!(my_url = Roxen.get_world (query ("URLs")))) |
|
|
my_url = ""; |
else |
if (!has_suffix (my_url, "/")) my_url += "/"; |
} |
|
|
|
string get_url() {return my_url;} |
|
array after_init_hooks = ({}); |
mixed add_init_hook( mixed what ) |
{ |
if( inited ) |
call_out( what, 0, this_object() ); |
else |
after_init_hooks |= ({ what }); |
} |
|
static int got_no_delayed_load = 0; |
|
|
|
void fix_no_delayed_load_flag() |
{ |
if( got_no_delayed_load >= 0 && |
query ("no_delayed_load") != got_no_delayed_load ) { |
set( "no_delayed_load", got_no_delayed_load ); |
save_one( 0 ); |
} |
} |
|
void enable_all_modules() |
{ |
MODULE_LOCK (0); |
low_init( ); |
fix_no_delayed_load_flag(); |
} |
|
void low_init(void|int modules_already_enabled) |
{ |
if( inited ) |
return; |
|
int start_time = gethrtime(); |
if (!modules_already_enabled) |
report_debug("\nEnabling all modules for "+query_name()+"... \n"); |
|
if (!modules_already_enabled) |
{ |
enabled_modules = retrieve("EnabledModules", this_object()); |
|
|
|
array modules_to_process = indices( enabled_modules ); |
string tmp_string; |
|
mixed err; |
forcibly_added = ([]); |
enable_module_batch_msgs = 1; |
foreach( modules_to_process, tmp_string ) |
{ |
if( !forcibly_added[ tmp_string ] ) |
if(err = catch( enable_module( tmp_string ))) |
{ |
report_error(LOC_M(45, "Failed to enable the module %s. Skipping.") |
+"\n%s\n", tmp_string, describe_backtrace(err)); |
got_no_delayed_load = -1; |
} |
} |
enable_module_batch_msgs = 0; |
roxenloader.pop_compile_error_handler(); |
forcibly_added = ([]); |
} |
|
foreach( ({this_object()})+indices( otomod ), RoxenModule mod ) |
if( mod->ready_to_receive_requests ) |
if( mixed q = catch( mod->ready_to_receive_requests( this_object() ) ) ) { |
report_error( "While calling ready_to_receive_requests in "+ |
otomod[mod]+":\n"+ |
describe_backtrace( q ) ); |
got_no_delayed_load = -1; |
} |
|
foreach( after_init_hooks, function q ) |
if( mixed w = catch( q(this_object()) ) ) { |
report_error( "While calling after_init_hook %O:\n%s", |
q, describe_backtrace( w ) ); |
got_no_delayed_load = -1; |
} |
|
after_init_hooks = ({}); |
|
inited = 1; |
if (!modules_already_enabled) |
report_notice(LOC_S(4, "All modules for %s enabled in %3.1f seconds") + |
"\n\n", query_name(), (gethrtime()-start_time)/1000000.0); |
|
#ifdef SNMP_AGENT |
|
if(query("snmp_process") && objectp(roxen->snmpagent)) |
roxen->snmpagent->vs_start_trap(get_config_id()); |
#endif |
|
} |
|
DataCache datacache; |
|
static void create() |
{ |
if (!name) error ("Configuration name not set through bootstrap_info.\n"); |
|
roxen.add_permission( "Site:"+name, LOC_C(306,"Site")+": "+name ); |
|
|
defvar( "data_cache_size", 16384, DLOCALE(274, "Cache:Cache size"), |
TYPE_INT| VAR_PUBLIC, |
DLOCALE(275, "The size of the data cache used to speed up requests " |
"for commonly requested files, in KBytes")); |
|
defvar( "data_cache_file_max_size", 100, DLOCALE(276, "Cache:Max file size"), |
TYPE_INT | VAR_PUBLIC, |
DLOCALE(277, "The maximum size of a file that is to be considered for " |
"the cache, in KBytes.")); |
|
|
defvar("default_server", 0, DLOCALE(20, "Default site"), |
TYPE_FLAG| VAR_PUBLIC, |
DLOCALE(21, "If true, this site will be selected in preference of " |
"other sites when virtual hosting is used and no host " |
"header is supplied, or the supplied host header does not " |
"match the address of any of the other servers.") ); |
|
defvar("comment", "", DLOCALE(22, "Site comment"), |
TYPE_TEXT_FIELD|VAR_MORE, |
DLOCALE(23, "This text will be visible in the administration " |
"interface, it can be quite useful to use as a memory helper.")); |
|
defvar("name", "", DLOCALE(24, "Site name"), |
TYPE_STRING|VAR_MORE| VAR_PUBLIC|VAR_NO_DEFAULT, |
DLOCALE(25, "This is the name that will be used in the administration " |
"interface. If this is left empty, the actual name of the " |
"site will be used.")); |
|
defvar("compat_level", Variable.StringChoice ( |
"", roxen.compat_levels, VAR_NO_DEFAULT, |
DLOCALE(246, "Compatibility level"), |
DLOCALE(386, #"\ |
<p>The compatibility level is used by different modules to select the |
right behavior to remain compatible with earlier Roxen versions. When |
a server configuration is created, this variable is set to the current |
version. After that it's never changed automatically, thereby ensuring |
that server configurations migrated from earlier Roxen versions is |
kept at the right compatibility level.</p> |
|
<p>This variable may be changed manually, but it's advisable to test |
the site carefully afterwards. A reload of the whole server |
configuration is required to propagate the change properly to all |
modules.</p> |
|
<p>Available compatibility levels: |
<table> |
<tr valign='top'><td>2.1 </td> |
<td>Corresponds to Roxen WebServer 2.1.</td></tr> |
<tr valign='top'><td>2.2 </td> |
<td>Corresponds to Roxen WebServer 2.2.</td></tr> |
<tr valign='top'><td>2.4 </td> |
<td>Corresponds to Roxen WebServer 2.4. This version is also |
commonly known as 3.2 - the version number that applies to the |
release of Roxen CMS which contains Roxen WebServer 2.4.</td></tr> |
<tr valign='top'><td>2.5 </td> |
<td>Corresponds to no released version. This compatibility level is |
only used to turn on some optimizations that have compatibility |
issues with 2.4, notably the optimization of cache static tags in |
the <cache> tag.</td></tr> |
<tr valign='top'><td>3.3 </td> |
<td>Corresponds to Roxen 3.3.</td></tr> |
<tr valign='top'><td>3.4 </td> |
<td>Corresponds to Roxen 3.4.</td></tr> |
<tr valign='top'><td>4.0 </td> |
<td>Corresponds to Roxen 4.0.</td></tr> |
<tr valign='top'><td>4.1 </td> |
<td>Corresponds to Roxen 4.1.</td></tr> |
</table></p>"))); |
|
set ("compat_level", roxen.__roxen_version__); |
|
|
|
|
|
|
|
|
|
defvar("Log", 1, DLOCALE(28, "Logging: Enabled"), |
TYPE_FLAG, DLOCALE(29, "Log requests")); |
|
defvar("LogFormat", |
"404: $host $referer - [$cern_date] \"$method $resource $protocol\" 404 -\n" |
"500: $host $referer ERROR [$cern_date] \"$method $resource $protocol\" 500 -\n" |
"*: $host - - [$cern_date] \"$method $resource $protocol\" $response $length", |
DLOCALE(26, "Logging: Format"), |
TYPE_TEXT_FIELD|VAR_MORE, |
DLOCALE(27, #"What format to use for logging. The syntax is: |
<pre>response-code or *: Log format for that response code |
|
Log format is normal characters, or one or more of the variables below: |
|
\\n \\t \\r -- As in C, newline, tab and linefeed |
$char(int) -- Insert the (1 byte) character specified by the integer. |
$wchar(int) -- Insert the (2 byte) word specified by the integer. |
$int(int) -- Insert the (4 byte) word specified by the integer. |
$^ -- Supress newline at the end of the logentry |
$host -- The remote host name, or ip number. |
$vhost -- The Host request-header sent by the client, or - if none |
$ip_number -- The remote ip number. |
$bin-ip_number -- The remote host id as a binary integer number. |
$cern_date -- Cern Common Log file format date. |
$bin-date -- Time, but as an 32 bit integer in network byteorder |
$method -- Request method |
$resource -- Resource identifier |
$full_resource -- Full requested resource, including any query fields |
$protocol -- The protocol used (normally HTTP/1.0) |
$response -- The response code sent |
$bin-response -- The response code sent as a binary short number |
$length -- The length of the data section of the reply |
$bin-length -- Same, but as an 32 bit integer in network byteorder |
$request-time -- The time the request took (seconds) |
$referer -- The header 'referer' from the request, or '-'. |
$user_agent -- The header 'User-Agent' from the request, or '-'. |
$user_agent_raw -- Same, but spaces in the name are not encoded to %20. |
$user -- the name of the auth user used, if any |
$user_id -- A unique user ID, if cookies are supported, |
by the client, otherwise '0' |
$cache-status -- A comma separated list of words (containing no |
whitespace) that describes which cache(s) the page |
was delivered from: |
protcache -- The low-level cache in the HTTP |
protocol module. |
xsltcache -- The XSLT cache. |
pcoderam -- RXML parse tree RAM cache. |
pcodedisk -- RXML parse tree persistent cache. |
cachetag -- No RXML <cache> tag misses. |
nocache -- No hit in any known cache. |
</pre>"), 0, lambda(){ return !query("Log");}); |
|
|
defvar("LogFile", "$LOGDIR/"+Roxen.short_name(name)+"/Log", |
DLOCALE(30, "Logging: Log file"), TYPE_FILE, |
DLOCALE(31, "The log file. " |
"" |
"A file name. Some substitutions will be done:" |
"<pre>" |
"%y Year (e.g. '1997')\n" |
"%m Month (e.g. '08')\n" |
"%d Date (e.g. '10' for the tenth)\n" |
"%h Hour (e.g. '00')\n" |
"%H Hostname\n" |
"</pre>") |
,0, lambda(){ return !query("Log");}); |
|
defvar("NoLog", ({ }), |
DLOCALE(32, "Logging: No Logging for"), TYPE_STRING_LIST|VAR_MORE, |
DLOCALE(33, "Don't log requests from hosts with an IP number which " |
"matches any of the patterns in this list. This also affects " |
"the access counter log."), |
0, lambda(){ return !query("Log");}); |
|
defvar("Domain", roxen.get_domain(), DLOCALE(34, "Domain"), |
TYPE_STRING|VAR_PUBLIC|VAR_NO_DEFAULT, |
DLOCALE(35, "The domain name of the server. The domain name is used " |
"to generate default URLs, and to generate email addresses.")); |
|
defvar("MyWorldLocation", "", |
DLOCALE(36, "Ports: Primary Server URL"), TYPE_URL|VAR_PUBLIC, |
DLOCALE(37, #"\ |
This is the main server URL, where your start page is located. This |
setting is for instance used as fallback to generate absolute URLs to |
the server, but in most circumstances the URLs sent by the clients are |
used. A URL is deduced from the first entry in 'URLs' if this is left |
blank. |
|
<p>Note that setting this doesn't make the server accessible; you must |
also set 'URLs'.")); |
|
defvar("URLs", |
Variable.PortList( ({"http://*/#ip=;nobind=0;"}), VAR_INITIAL|VAR_NO_DEFAULT, |
DLOCALE(38, "Ports: URLs"), |
DLOCALE(373, "Bind to these URLs. You can use '*' and '?' to perform" |
" globbing (using any of these will default to binding to " |
"all IP-numbers on your machine). If you specify a IP# in " |
"the field it will take precedence over the hostname."))); |
|
defvar("InternalLoc", internal_location, |
DLOCALE(40, "Internal module resource mountpoint"), |
TYPE_LOCATION|VAR_MORE|VAR_DEVELOPER, |
DLOCALE(41, "Some modules may want to create links to internal " |
"resources. This setting configures an internally handled " |
"location that can be used for such purposes. Simply select " |
"a location that you are not likely to use for regular " |
"resources.")) |
->add_changed_callback(lambda(object v) { internal_location = v->query(); }); |
|
defvar("SubRequestLimit", sub_req_limit, |
"Subrequest depth limit", |
TYPE_INT | VAR_MORE, |
"A limit for the number of nested sub requests for each request. " |
"This is intented to catch unintended infinite loops when for " |
"example inserting files in RXML. 0 for no limit." ) |
->add_changed_callback(lambda(object v) { sub_req_limit = v->query(); }); |
|
|
|
defvar("throttle", 0, |
DLOCALE(42, "Throttling: Server; Enabled"),TYPE_FLAG, |
DLOCALE(43, "If set, per-server bandwidth throttling will be enabled. " |
"It will allow you to limit the total available bandwidth for " |
"this site.<br />Bandwidth is assigned using a Token Bucket. " |
"The principle under which it works is: for each byte we send we use a token. " |
"Tokens are added to a repository at a constant rate. When there's not enough, " |
"we can't transmit. When there's too many, they \"spill\" and are lost.")); |
|
|
defvar("throttle_fill_rate", 102400, |
DLOCALE(44, "Throttling: Server; Average available bandwidth"), |
TYPE_INT, |
DLOCALE(45, "This is the average bandwidth available to this site in " |
"bytes/sec (the bucket \"fill rate\")."), |
0, arent_we_throttling_server); |
|
defvar("throttle_bucket_depth", 1024000, |
DLOCALE(46, "Throttling: Server; Bucket Depth"), TYPE_INT, |
DLOCALE(47, "This is the maximum depth of the bucket. After a long enough period " |
"of inactivity, a request will get this many unthrottled bytes of data, before " |
"throttling kicks back in.<br>Set equal to the Fill Rate in order not to allow " |
"any data bursts. This value determines the length of the time over which the " |
"bandwidth is averaged."), 0, arent_we_throttling_server); |
|
defvar("throttle_min_grant", 1300, |
DLOCALE(48, "Throttling: Server; Minimum Grant"), TYPE_INT, |
DLOCALE(49, "When the bandwidth availability is below this value, connections will " |
"be delayed rather than granted minimal amounts of bandwidth. The purpose " |
"is to avoid sending too small packets (which would increase the IP overhead)."), |
0, arent_we_throttling_server); |
|
defvar("throttle_max_grant", 14900, |
DLOCALE(50, "Throttling: Server; Maximum Grant"), TYPE_INT, |
DLOCALE(51, "This is the maximum number of bytes assigned in a single request " |
"to a connection. Keeping this number low will share bandwidth more evenly " |
"among the pending connections, but keeping it too low will increase IP " |
"overhead and (marginally) CPU usage. You'll want to set it just a tiny " |
"bit lower than any integer multiple of your network's MTU (typically 1500 " |
"for ethernet)."), 0, arent_we_throttling_server); |
|
defvar("req_throttle", 0, |
DLOCALE(52, "Throttling: Request; Enabled"), TYPE_FLAG, |
DLOCALE(53, "If set, per-request bandwidth throttling will be enabled.") |
); |
|
defvar("req_throttle_min", 1024, |
DLOCALE(54, "Throttling: Request; Minimum guarranteed bandwidth"), |
TYPE_INT, |
DLOCALE(55, "The maximum bandwidth each connection (in bytes/sec) can use is determined " |
"combining a number of modules. But doing so can lead to too small " |
"or even negative bandwidths for particularly unlucky requests. This variable " |
"guarantees a minimum bandwidth for each request."), |
0, arent_we_throttling_request); |
|
defvar("req_throttle_depth_mult", 60.0, |
DLOCALE(56, "Throttling: Request; Bucket Depth Multiplier"), |
TYPE_FLOAT, |
DLOCALE(57, "The average bandwidth available for each request will be determined by " |
"the modules combination. The bucket depth will be determined multiplying " |
"the rate by this factor."), |
0, arent_we_throttling_request); |
|
|
defvar("404-files", ({ "404.inc" }), |
DLOCALE(307, "No such file message override files"), |
TYPE_STRING_LIST|VAR_PUBLIC, |
DLOCALE(308, |
"If no file match a given resource all directories above the" |
" wanted file is searched for one of the files in this list." |
"<p>\n" |
"As an example, if the file /foo/bar/not_there.html is " |
"wanted, and this list contains the default value of 404.inc," |
" these files will be searched for, in this order:</p><br /> " |
" /foo/bar/404.inc, /foo/404.inc and /404.inc." ) ); |
|
defvar("license", |
License. |
LicenseVariable("../license/", VAR_NO_DEFAULT, |
DLOCALE(39, "License file"), |
DLOCALE(336, "The license file for this configuration."), |
this_object())); |
|
|
|
class NoSuchFileOverride |
{ |
|
inherit Variable.Variable; |
|
int check_visibility( RequestID id, int more_mode, |
int expert_mode, int devel_mode, |
int initial, int|void variable_in_cfif ) |
{ |
return 0; |
} |
|
void set( string newval ) |
{ |
if( search(newval,"emit source=values") == -1 ) |
variables[ "404-message" ]->set( newval ); |
} |
|
void create() |
{ |
::create( |
#"<nooutput><emit source=values scope=ef variable='modvar.site.404-files'> |
<set variable='var.base' value=''/> |
<emit source='path'> |
<append variable='var.base' value='/&_.name;'/> |
<set variable='var.404' value='&var.base;/&ef.value;'/> |
<if exists='&var.404;'> |
<set variable='var.errfile' from='var.404'/> |
</if> |
</emit> |
</emit> |
</nooutput><if variable='var.errfile'><eval><insert file='&var.errfile;'/></eval></if><else><eval>&modvar.site.404-message:none;</eval></else>", 0, 0, 0 ); |
} |
}; |
|
defvar("ZNoSuchFile", NoSuchFileOverride() ); |
|
defvar("404-message", #"<html> |
<head> |
<title>404 - Page Not Found</title> |
<style> |
.msg { font-family: verdana, helvetica, arial, sans-serif; |
font-size: 12px; |
line-height: 160% } |
.url { font-family: georgia, times, serif; |
font-size: 18px; |
padding-top: 6px; |
padding-bottom: 20px } |
.info { font-family: verdana, helvetica, arial, sans-serif; |
font-size: 10px; |
color: #999999 } |
</style> |
</head> |
<body bgcolor='#f2f1eb' vlink='#2331d1' alink='#f6f6ff' |
leftmargin='0' rightmargin='0' topmargin='0' bottommargin='0' |
style='margin: 0; padding: 0'> |
|
<table border='0' cellspacing='0' cellpadding='0' height='99%'> |
<colgroup> |
<col span='3' /> |
<col width='356' /> |
<col width='0*' /> |
</colgroup> |
<tr> |
<td><img src='/internal-roxen-unit' height='30' /></td> |
</tr><tr> |
<td></td> |
<td><img src='/internal-roxen-404' /></td> |
<td><img src='/internal-roxen-unit' width='30' /></td> |
<td valign='bottom'><img src='/internal-roxen-page-not-found-2' /></td> |
<td></td> |
</tr><tr> |
<td><img src='/internal-roxen-unit' height='30' /></td> |
</tr><tr> |
<td colspan='3'></td> |
<td colspan='2'> |
<div class='msg'>Unable to retrieve</div> |
<div class='url'>&page.virtfile;</div> |
</td> |
</tr><tr> |
<td colspan='3'></td> |
<td width='356'> |
<div class='msg'> |
If you feel this is a configuration error, please contact |
the administrators of this server or the author of the |
<if referrer=''> |
<a href='&client.referrer;'>referring page</a>. |
</if><else> |
referring page. |
</else> |
</div> |
</td> |
<td> </td> |
</tr><tr valign='bottom' height='100%'> |
<td colspan='3'></td> |
<td> |
<img src='/internal-roxen-unit' height='20' /> |
<table border='0' cellspacing='0' cellpadding='0'> |
<tr> |
<td><img src='/internal-roxen-roxen-mini.gif' /></td> |
<td class='info'> |
<b>&roxen.product-name;</b> <font color='#ffbe00'>|</font> |
version &roxen.dist-version; |
</td> |
</tr> |
</table> |
<img src='/internal-roxen-unit' height='15' /> |
</td> |
<td></td> |
</tr> |
</table> |
|
</body> |
</html>", |
DLOCALE(58, "No such file message"), |
TYPE_TEXT_FIELD|VAR_PUBLIC, |
DLOCALE(59, "What to return when there is no resource or file " |
"available at a certain location.")); |
|
#ifdef SNMP_AGENT |
|
defvar("snmp_process", 0, |
"SNMP: Enabled",TYPE_FLAG, |
"If set, per-server objects will be added to the SNMP agent database.", |
0, snmp_global_disabled); |
defvar("snmp_community", "public:ro", |
"SNMP: Community string", TYPE_STRING, |
"The community string and access level for manipulation on server " |
" specific objects.", |
0, snmp_disabled); |
defvar("snmp_traphosts", ({ }), |
"SNMP: Trap host URLs", TYPE_STRING_LIST, |
"The remote nodes, where should be sent traps." |
"<p>\n" |
"The URL syntax is: snmptrap://community@hostname:portnumber" |
"</p><br/>", |
0, snmp_disabled); |
|
if (query("snmp_process")) { |
if(objectp(roxen()->snmpagent)) { |
int servid; |
servid = roxen()->snmpagent->add_virtserv(get_config_id()); |
|
|
} else |
report_error("SNMPagent: something gets wrong! The main agent is disabled!\n"); } |
#endif |
|
definvisvar( "no_delayed_load", 0, TYPE_FLAG|VAR_PUBLIC ); |
|
|
|
|
mapping(string:mixed) retrieved_vars = retrieve("spider#0", this_object()); |
if (sizeof (retrieved_vars) && !retrieved_vars->compat_level) |
|
set ("compat_level", "2.1"); |
setvars( retrieved_vars ); |
|
|
} |
|
static int arent_we_throttling_server () { |
return !query("throttle"); |
} |
static int arent_we_throttling_request() { |
return !query("req_throttle"); |
} |
|
#ifdef SNMP_AGENT |
private static int(0..1) snmp_disabled() { |
return (!snmp_global_disabled() && !query("snmp_process")); |
} |
private static int(0..1) snmp_global_disabled() { |
return (!objectp(roxen->snmpagent)); |
} |
#endif |
|
|
|