Add config option securePermissionsLoading which will stop the region from loading if the specified permissions modules fail to load.

avinationmerge
Tom 2010-08-01 10:21:56 -07:00
parent dd2d9a68a7
commit d5f497478a
2 changed files with 24 additions and 0 deletions

View File

@ -88,6 +88,10 @@ namespace OpenSim
protected List<IApplicationPlugin> m_plugins = new List<IApplicationPlugin>();
private List<string> m_permsModules;
private bool m_securePermissionsLoading = true;
/// <value>
/// The config information passed into the OpenSimulator region server.
/// </value>
@ -185,6 +189,11 @@ namespace OpenSim
CreatePIDFile(pidFile);
userStatsURI = startupConfig.GetString("Stats_URI", String.Empty);
m_securePermissionsLoading = startupConfig.GetBoolean("SecurePermissionsLoading", true);
string permissionModules = startupConfig.GetString("permissionmodules", "DefaultPermissionsModule");
m_permsModules = new List<string>(permissionModules.Split(','));
}
base.StartupSpecific();
@ -342,6 +351,18 @@ namespace OpenSim
}
else m_log.Error("[MODULES]: The new RegionModulesController is missing...");
if (m_securePermissionsLoading)
{
foreach (string s in m_permsModules)
{
if (!scene.RegionModules.ContainsKey(s))
{
m_log.Fatal("[MODULES]: Required module " + s + " not found.");
Environment.Exit(0);
}
}
}
scene.SetModuleInterfaces();
// First Step of bootreport sequence
if (scene.SnmpService != null)

View File

@ -178,6 +178,9 @@
;permissionmodules = "DefaultPermissionsModule"
;If any of the specified permissions modules fail to load, quit?
SecurePermissionsLoading = true
; If set to false, then, in theory, the server never carries out permission checks (allowing anybody to copy
; any item, etc. This may not yet be implemented uniformally.
; If set to true, then all permissions checks are carried out