HttpServerBase.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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.Threading;
  30. using System.Reflection;
  31. using OpenSim.Framework;
  32. using OpenSim.Framework.Console;
  33. using OpenSim.Framework.Servers;
  34. using OpenSim.Framework.Servers.HttpServer;
  35. using log4net;
  36. using Nini.Config;
  37. namespace OpenSim.Server.Base
  38. {
  39. public class HttpServerBase : ServicesServerBase
  40. {
  41. // Logger
  42. //
  43. private static readonly ILog m_Log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  44. private uint m_consolePort;
  45. // Handle all the automagical stuff
  46. //
  47. public HttpServerBase(string prompt, string[] args) : base(prompt, args)
  48. {
  49. }
  50. protected override void ReadConfig()
  51. {
  52. IConfig networkConfig = m_Config.Configs["Network"];
  53. if (networkConfig == null)
  54. {
  55. System.Console.WriteLine("Section 'Network' not found, server can't start");
  56. Thread.CurrentThread.Abort();
  57. }
  58. uint port = (uint)networkConfig.GetInt("port", 0);
  59. if (port == 0)
  60. {
  61. Thread.CurrentThread.Abort();
  62. }
  63. bool ssl_main = networkConfig.GetBoolean("https_main",false);
  64. bool ssl_listener = networkConfig.GetBoolean("https_listener",false);
  65. m_consolePort = (uint)networkConfig.GetInt("ConsolePort", 0);
  66. BaseHttpServer httpServer = null;
  67. //
  68. // This is where to make the servers:
  69. //
  70. //
  71. // Make the base server according to the port, etc.
  72. // ADD: Possibility to make main server ssl
  73. // Then, check for https settings and ADD a server to
  74. // m_Servers
  75. //
  76. if ( !ssl_main )
  77. {
  78. httpServer = new BaseHttpServer(port);
  79. }
  80. else
  81. {
  82. string cert_path = networkConfig.GetString("cert_path",String.Empty);
  83. if ( cert_path == String.Empty )
  84. {
  85. System.Console.WriteLine("Path to X509 certificate is missing, server can't start.");
  86. Thread.CurrentThread.Abort();
  87. }
  88. string cert_pass = networkConfig.GetString("cert_pass",String.Empty);
  89. if ( cert_pass == String.Empty )
  90. {
  91. System.Console.WriteLine("Password for X509 certificate is missing, server can't start.");
  92. Thread.CurrentThread.Abort();
  93. }
  94. httpServer = new BaseHttpServer(port, ssl_main, cert_path, cert_pass);
  95. }
  96. MainServer.AddHttpServer(httpServer);
  97. MainServer.Instance = httpServer;
  98. // If https_listener = true, then add an ssl listener on the https_port...
  99. if ( ssl_listener == true ) {
  100. uint https_port = (uint)networkConfig.GetInt("https_port", 0);
  101. string cert_path = networkConfig.GetString("cert_path",String.Empty);
  102. if ( cert_path == String.Empty )
  103. {
  104. System.Console.WriteLine("Path to X509 certificate is missing, server can't start.");
  105. Thread.CurrentThread.Abort();
  106. }
  107. string cert_pass = networkConfig.GetString("cert_pass",String.Empty);
  108. if ( cert_pass == String.Empty )
  109. {
  110. System.Console.WriteLine("Password for X509 certificate is missing, server can't start.");
  111. Thread.CurrentThread.Abort();
  112. }
  113. MainServer.AddHttpServer(new BaseHttpServer(https_port, ssl_listener, cert_path, cert_pass));
  114. }
  115. }
  116. protected override void Initialise()
  117. {
  118. foreach (BaseHttpServer s in MainServer.Servers.Values)
  119. s.Start();
  120. MainServer.RegisterHttpConsoleCommands(MainConsole.Instance);
  121. if (MainConsole.Instance is RemoteConsole)
  122. {
  123. if (m_consolePort == 0)
  124. ((RemoteConsole)MainConsole.Instance).SetServer(MainServer.Instance);
  125. else
  126. ((RemoteConsole)MainConsole.Instance).SetServer(MainServer.GetHttpServer(m_consolePort));
  127. }
  128. }
  129. }
  130. }