HomeAgentHandlers.cs 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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;
  29. using System.IO;
  30. using System.Reflection;
  31. using System.Net;
  32. using System.Text;
  33. using OpenSim.Server.Base;
  34. using OpenSim.Server.Handlers.Base;
  35. using OpenSim.Services.Interfaces;
  36. using GridRegion = OpenSim.Services.Interfaces.GridRegion;
  37. using OpenSim.Framework;
  38. using OpenSim.Framework.Servers.HttpServer;
  39. using OpenSim.Server.Handlers.Simulation;
  40. using Utils = OpenSim.Server.Handlers.Simulation.Utils;
  41. using OpenMetaverse;
  42. using OpenMetaverse.StructuredData;
  43. using Nini.Config;
  44. using log4net;
  45. namespace OpenSim.Server.Handlers.Hypergrid
  46. {
  47. public class HomeAgentHandler
  48. {
  49. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  50. private IUserAgentService m_UserAgentService;
  51. private string m_LoginServerIP;
  52. public HomeAgentHandler(IUserAgentService userAgentService, string loginServerIP)
  53. {
  54. m_UserAgentService = userAgentService;
  55. m_LoginServerIP = loginServerIP;
  56. }
  57. public Hashtable Handler(Hashtable request)
  58. {
  59. // m_log.Debug("[CONNECTION DEBUGGING]: HomeAgentHandler Called");
  60. //
  61. // m_log.Debug("---------------------------");
  62. // m_log.Debug(" >> uri=" + request["uri"]);
  63. // m_log.Debug(" >> content-type=" + request["content-type"]);
  64. // m_log.Debug(" >> http-method=" + request["http-method"]);
  65. // m_log.Debug("---------------------------\n");
  66. Hashtable responsedata = new Hashtable();
  67. responsedata["content_type"] = "text/html";
  68. responsedata["keepalive"] = false;
  69. UUID agentID;
  70. UUID regionID;
  71. string action;
  72. if (!Utils.GetParams((string)request["uri"], out agentID, out regionID, out action))
  73. {
  74. m_log.InfoFormat("[HOME AGENT HANDLER]: Invalid parameters for agent message {0}", request["uri"]);
  75. responsedata["int_response_code"] = 404;
  76. responsedata["str_response_string"] = "false";
  77. return responsedata;
  78. }
  79. // Next, let's parse the verb
  80. string method = (string)request["http-method"];
  81. if (method.Equals("POST"))
  82. {
  83. DoAgentPost(request, responsedata, agentID);
  84. return responsedata;
  85. }
  86. else
  87. {
  88. m_log.InfoFormat("[HOME AGENT HANDLER]: method {0} not supported in agent message", method);
  89. responsedata["int_response_code"] = HttpStatusCode.MethodNotAllowed;
  90. responsedata["str_response_string"] = "Method not allowed";
  91. return responsedata;
  92. }
  93. }
  94. protected void DoAgentPost(Hashtable request, Hashtable responsedata, UUID id)
  95. {
  96. OSDMap args = Utils.GetOSDMap((string)request["body"]);
  97. if (args == null)
  98. {
  99. responsedata["int_response_code"] = HttpStatusCode.BadRequest;
  100. responsedata["str_response_string"] = "Bad request";
  101. return;
  102. }
  103. // retrieve the input arguments
  104. int x = 0, y = 0;
  105. UUID uuid = UUID.Zero;
  106. string regionname = string.Empty;
  107. string gatekeeper_host = string.Empty;
  108. int gatekeeper_port = 0;
  109. IPEndPoint client_ipaddress = null;
  110. if (args.ContainsKey("gatekeeper_host") && args["gatekeeper_host"] != null)
  111. gatekeeper_host = args["gatekeeper_host"].AsString();
  112. if (args.ContainsKey("gatekeeper_port") && args["gatekeeper_port"] != null)
  113. Int32.TryParse(args["gatekeeper_port"].AsString(), out gatekeeper_port);
  114. GridRegion gatekeeper = new GridRegion();
  115. gatekeeper.ExternalHostName = gatekeeper_host;
  116. gatekeeper.HttpPort = (uint)gatekeeper_port;
  117. gatekeeper.InternalEndPoint = new IPEndPoint(IPAddress.Parse("0.0.0.0"), 0);
  118. if (args.ContainsKey("destination_x") && args["destination_x"] != null)
  119. Int32.TryParse(args["destination_x"].AsString(), out x);
  120. else
  121. m_log.WarnFormat(" -- request didn't have destination_x");
  122. if (args.ContainsKey("destination_y") && args["destination_y"] != null)
  123. Int32.TryParse(args["destination_y"].AsString(), out y);
  124. else
  125. m_log.WarnFormat(" -- request didn't have destination_y");
  126. if (args.ContainsKey("destination_uuid") && args["destination_uuid"] != null)
  127. UUID.TryParse(args["destination_uuid"].AsString(), out uuid);
  128. if (args.ContainsKey("destination_name") && args["destination_name"] != null)
  129. regionname = args["destination_name"].ToString();
  130. if (args.ContainsKey("client_ip") && args["client_ip"] != null)
  131. {
  132. string ip_str = args["client_ip"].ToString();
  133. try
  134. {
  135. string callerIP = Util.GetCallerIP(request);
  136. // Verify if this caller has authority to send the client IP
  137. if (callerIP == m_LoginServerIP)
  138. client_ipaddress = new IPEndPoint(IPAddress.Parse(ip_str), 0);
  139. else
  140. m_log.WarnFormat("[HOME AGENT HANDLER]: Unauthorized machine {0} tried to set client ip to {1}", callerIP, ip_str);
  141. }
  142. catch
  143. {
  144. m_log.DebugFormat("[HOME AGENT HANDLER]: Exception parsing client ip address from {0}", ip_str);
  145. }
  146. }
  147. GridRegion destination = new GridRegion();
  148. destination.RegionID = uuid;
  149. destination.RegionLocX = x;
  150. destination.RegionLocY = y;
  151. destination.RegionName = regionname;
  152. AgentCircuitData aCircuit = new AgentCircuitData();
  153. try
  154. {
  155. aCircuit.UnpackAgentCircuitData(args);
  156. }
  157. catch (Exception ex)
  158. {
  159. m_log.InfoFormat("[HOME AGENT HANDLER]: exception on unpacking ChildCreate message {0}", ex.Message);
  160. responsedata["int_response_code"] = HttpStatusCode.BadRequest;
  161. responsedata["str_response_string"] = "Bad request";
  162. return;
  163. }
  164. OSDMap resp = new OSDMap(2);
  165. string reason = String.Empty;
  166. bool result = m_UserAgentService.LoginAgentToGrid(aCircuit, gatekeeper, destination, client_ipaddress, out reason);
  167. resp["reason"] = OSD.FromString(reason);
  168. resp["success"] = OSD.FromBoolean(result);
  169. // TODO: add reason if not String.Empty?
  170. responsedata["int_response_code"] = HttpStatusCode.OK;
  171. responsedata["str_response_string"] = OSDParser.SerializeJsonString(resp);
  172. }
  173. }
  174. }