ConfigurationLoader.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSimulator Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using System.Collections.Generic;
  29. using System.IO;
  30. using System.Reflection;
  31. using System.Threading;
  32. using System.Xml;
  33. using log4net;
  34. using Nini.Config;
  35. using OpenSim.Framework;
  36. namespace OpenSim
  37. {
  38. /// <summary>
  39. /// Loads the Configuration files into nIni
  40. /// </summary>
  41. public class ConfigurationLoader
  42. {
  43. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  44. /// <summary>
  45. /// Various Config settings the region needs to start
  46. /// Physics Engine, Mesh Engine, GridMode, PhysicsPrim allowed, Neighbor,
  47. /// StorageDLL, Storage Connection String, Estate connection String, Client Stack
  48. /// Standalone settings.
  49. /// </summary>
  50. protected ConfigSettings m_configSettings;
  51. /// <summary>
  52. /// A source of Configuration data
  53. /// </summary>
  54. protected OpenSimConfigSource m_config;
  55. /// <summary>
  56. /// Grid Service Information. This refers to classes and addresses of the grid service
  57. /// </summary>
  58. protected NetworkServersInfo m_networkServersInfo;
  59. /// <summary>
  60. /// Loads the region configuration
  61. /// </summary>
  62. /// <param name="argvSource">Parameters passed into the process when started</param>
  63. /// <param name="configSettings"></param>
  64. /// <param name="networkInfo"></param>
  65. /// <returns>A configuration that gets passed to modules</returns>
  66. public OpenSimConfigSource LoadConfigSettings(
  67. IConfigSource argvSource, EnvConfigSource envConfigSource, out ConfigSettings configSettings,
  68. out NetworkServersInfo networkInfo)
  69. {
  70. m_configSettings = configSettings = new ConfigSettings();
  71. m_networkServersInfo = networkInfo = new NetworkServersInfo();
  72. bool iniFileExists = false;
  73. IConfig startupConfig = argvSource.Configs["Startup"];
  74. List<string> sources = new List<string>();
  75. string masterFileName = startupConfig.GetString("inimaster", "OpenSimDefaults.ini");
  76. if (masterFileName == "none")
  77. masterFileName = String.Empty;
  78. if (IsUri(masterFileName))
  79. {
  80. if (!sources.Contains(masterFileName))
  81. sources.Add(masterFileName);
  82. }
  83. else
  84. {
  85. string masterFilePath = Path.GetFullPath(
  86. Path.Combine(Util.configDir(), masterFileName));
  87. if (masterFileName != String.Empty)
  88. {
  89. if (File.Exists(masterFilePath))
  90. {
  91. if (!sources.Contains(masterFilePath))
  92. sources.Add(masterFilePath);
  93. }
  94. else
  95. {
  96. m_log.ErrorFormat("Master ini file {0} not found", Path.GetFullPath(masterFilePath));
  97. Environment.Exit(1);
  98. }
  99. }
  100. }
  101. string iniFileName = startupConfig.GetString("inifile", "OpenSim.ini");
  102. if (IsUri(iniFileName))
  103. {
  104. if (!sources.Contains(iniFileName))
  105. sources.Add(iniFileName);
  106. Application.iniFilePath = iniFileName;
  107. }
  108. else
  109. {
  110. Application.iniFilePath = Path.GetFullPath(
  111. Path.Combine(Util.configDir(), iniFileName));
  112. if (!File.Exists(Application.iniFilePath))
  113. {
  114. iniFileName = "OpenSim.xml";
  115. Application.iniFilePath = Path.GetFullPath(Path.Combine(Util.configDir(), iniFileName));
  116. }
  117. if (File.Exists(Application.iniFilePath))
  118. {
  119. if (!sources.Contains(Application.iniFilePath))
  120. sources.Add(Application.iniFilePath);
  121. }
  122. }
  123. m_config = new OpenSimConfigSource();
  124. m_config.Source = new IniConfigSource();
  125. m_log.Info("[CONFIG]: Reading configuration settings");
  126. for (int i = 0 ; i < sources.Count ; i++)
  127. {
  128. if (ReadConfig(m_config, sources[i]))
  129. {
  130. iniFileExists = true;
  131. AddIncludes(m_config, sources);
  132. }
  133. }
  134. // Override distro settings with contents of inidirectory
  135. string iniDirName = startupConfig.GetString("inidirectory", "config");
  136. string iniDirPath = Path.Combine(Util.configDir(), iniDirName);
  137. if (Directory.Exists(iniDirPath))
  138. {
  139. m_log.InfoFormat("[CONFIG]: Searching folder {0} for config ini files", iniDirPath);
  140. List<string> overrideSources = new List<string>();
  141. string[] fileEntries = Directory.GetFiles(iniDirName);
  142. foreach (string filePath in fileEntries)
  143. {
  144. if (Path.GetExtension(filePath).ToLower() == ".ini")
  145. {
  146. if (!sources.Contains(Path.GetFullPath(filePath)))
  147. {
  148. overrideSources.Add(Path.GetFullPath(filePath));
  149. // put it in sources too, to avoid circularity
  150. sources.Add(Path.GetFullPath(filePath));
  151. }
  152. }
  153. }
  154. if (overrideSources.Count > 0)
  155. {
  156. OpenSimConfigSource overrideConfig = new OpenSimConfigSource();
  157. overrideConfig.Source = new IniConfigSource();
  158. for (int i = 0 ; i < overrideSources.Count ; i++)
  159. {
  160. if (ReadConfig(overrideConfig, overrideSources[i]))
  161. {
  162. iniFileExists = true;
  163. AddIncludes(overrideConfig, overrideSources);
  164. }
  165. }
  166. m_config.Source.Merge(overrideConfig.Source);
  167. }
  168. }
  169. if (sources.Count == 0)
  170. {
  171. m_log.FatalFormat("[CONFIG]: Could not load any configuration");
  172. Environment.Exit(1);
  173. }
  174. else if (!iniFileExists)
  175. {
  176. m_log.FatalFormat("[CONFIG]: Could not load any configuration");
  177. m_log.FatalFormat("[CONFIG]: Configuration exists, but there was an error loading it!");
  178. Environment.Exit(1);
  179. }
  180. // Merge OpSys env vars
  181. m_log.Info("[CONFIG]: Loading environment variables for Config");
  182. Util.MergeEnvironmentToConfig(m_config.Source);
  183. // Make sure command line options take precedence
  184. m_config.Source.Merge(argvSource);
  185. m_config.Source.ReplaceKeyValues();
  186. ReadConfigSettings();
  187. return m_config;
  188. }
  189. /// <summary>
  190. /// Adds the included files as ini configuration files
  191. /// </summary>
  192. /// <param name="sources">List of URL strings or filename strings</param>
  193. private void AddIncludes(OpenSimConfigSource configSource, List<string> sources)
  194. {
  195. //loop over config sources
  196. foreach (IConfig config in configSource.Source.Configs)
  197. {
  198. // Look for Include-* in the key name
  199. string[] keys = config.GetKeys();
  200. foreach (string k in keys)
  201. {
  202. if (k.StartsWith("Include-"))
  203. {
  204. // read the config file to be included.
  205. string file = config.GetString(k);
  206. if (IsUri(file))
  207. {
  208. if (!sources.Contains(file))
  209. sources.Add(file);
  210. }
  211. else
  212. {
  213. string basepath = Path.GetFullPath(Util.configDir());
  214. // Resolve relative paths with wildcards
  215. string chunkWithoutWildcards = file;
  216. string chunkWithWildcards = string.Empty;
  217. int wildcardIndex = file.IndexOfAny(new char[] { '*', '?' });
  218. if (wildcardIndex != -1)
  219. {
  220. chunkWithoutWildcards = file.Substring(0, wildcardIndex);
  221. chunkWithWildcards = file.Substring(wildcardIndex);
  222. }
  223. string path = Path.Combine(basepath, chunkWithoutWildcards);
  224. path = Path.GetFullPath(path) + chunkWithWildcards;
  225. string[] paths = Util.Glob(path);
  226. // If the include path contains no wildcards, then warn the user that it wasn't found.
  227. if (wildcardIndex == -1 && paths.Length == 0)
  228. {
  229. m_log.WarnFormat("[CONFIG]: Could not find include file {0}", path);
  230. }
  231. else
  232. {
  233. foreach (string p in paths)
  234. {
  235. if (!sources.Contains(p))
  236. sources.Add(p);
  237. }
  238. }
  239. }
  240. }
  241. }
  242. }
  243. }
  244. /// <summary>
  245. /// Check if we can convert the string to a URI
  246. /// </summary>
  247. /// <param name="file">String uri to the remote resource</param>
  248. /// <returns>true if we can convert the string to a Uri object</returns>
  249. bool IsUri(string file)
  250. {
  251. Uri configUri;
  252. return Uri.TryCreate(file, UriKind.Absolute,
  253. out configUri) && configUri.Scheme == Uri.UriSchemeHttp;
  254. }
  255. /// <summary>
  256. /// Provide same ini loader functionality for standard ini and master ini - file system or XML over http
  257. /// </summary>
  258. /// <param name="iniPath">Full path to the ini</param>
  259. /// <returns></returns>
  260. private bool ReadConfig(OpenSimConfigSource configSource, string iniPath)
  261. {
  262. bool success = false;
  263. if (!IsUri(iniPath))
  264. {
  265. m_log.InfoFormat("[CONFIG]: Reading configuration file {0}", Path.GetFullPath(iniPath));
  266. configSource.Source.Merge(new IniConfigSource(iniPath));
  267. success = true;
  268. }
  269. else
  270. {
  271. m_log.InfoFormat("[CONFIG]: {0} is a http:// URI, fetching ...", iniPath);
  272. // The ini file path is a http URI
  273. // Try to read it
  274. try
  275. {
  276. XmlReader r = XmlReader.Create(iniPath);
  277. XmlConfigSource cs = new XmlConfigSource(r);
  278. configSource.Source.Merge(cs);
  279. success = true;
  280. }
  281. catch (Exception e)
  282. {
  283. m_log.FatalFormat("[CONFIG]: Exception reading config from URI {0}\n" + e.ToString(), iniPath);
  284. Environment.Exit(1);
  285. }
  286. }
  287. return success;
  288. }
  289. /// <summary>
  290. /// Read initial region settings from the ConfigSource
  291. /// </summary>
  292. protected virtual void ReadConfigSettings()
  293. {
  294. IConfig startupConfig = m_config.Source.Configs["Startup"];
  295. if (startupConfig != null)
  296. {
  297. m_configSettings.PhysicsEngine = startupConfig.GetString("physics");
  298. m_configSettings.MeshEngineName = startupConfig.GetString("meshing");
  299. m_configSettings.ClientstackDll
  300. = startupConfig.GetString("clientstack_plugin", "OpenSim.Region.ClientStack.LindenUDP.dll");
  301. }
  302. m_networkServersInfo.loadFromConfiguration(m_config.Source);
  303. }
  304. }
  305. }