HttpServerBase.cs 5.8 KB

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