HomeAgentHandlers.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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. private bool m_Proxy = false;
  53. public HomeAgentHandler(IUserAgentService userAgentService, string loginServerIP, bool proxy)
  54. {
  55. m_UserAgentService = userAgentService;
  56. m_LoginServerIP = loginServerIP;
  57. m_Proxy = proxy;
  58. }
  59. public Hashtable Handler(Hashtable request)
  60. {
  61. // m_log.Debug("[CONNECTION DEBUGGING]: HomeAgentHandler Called");
  62. //
  63. // m_log.Debug("---------------------------");
  64. // m_log.Debug(" >> uri=" + request["uri"]);
  65. // m_log.Debug(" >> content-type=" + request["content-type"]);
  66. // m_log.Debug(" >> http-method=" + request["http-method"]);
  67. // m_log.Debug("---------------------------\n");
  68. Hashtable responsedata = new Hashtable();
  69. responsedata["content_type"] = "text/html";
  70. responsedata["keepalive"] = false;
  71. UUID agentID;
  72. UUID regionID;
  73. string action;
  74. if (!Utils.GetParams((string)request["uri"], out agentID, out regionID, out action))
  75. {
  76. m_log.InfoFormat("[HOME AGENT HANDLER]: Invalid parameters for agent message {0}", request["uri"]);
  77. responsedata["int_response_code"] = 404;
  78. responsedata["str_response_string"] = "false";
  79. return responsedata;
  80. }
  81. // Next, let's parse the verb
  82. string method = (string)request["http-method"];
  83. if (method.Equals("POST"))
  84. {
  85. DoAgentPost(request, responsedata, agentID);
  86. return responsedata;
  87. }
  88. else
  89. {
  90. m_log.InfoFormat("[HOME AGENT HANDLER]: method {0} not supported in agent message", method);
  91. responsedata["int_response_code"] = HttpStatusCode.MethodNotAllowed;
  92. responsedata["str_response_string"] = "Method not allowed";
  93. return responsedata;
  94. }
  95. }
  96. protected void DoAgentPost(Hashtable request, Hashtable responsedata, UUID id)
  97. {
  98. OSDMap args = Utils.GetOSDMap((string)request["body"]);
  99. if (args == null)
  100. {
  101. responsedata["int_response_code"] = HttpStatusCode.BadRequest;
  102. responsedata["str_response_string"] = "Bad request";
  103. return;
  104. }
  105. // retrieve the input arguments
  106. int x = 0, y = 0;
  107. UUID uuid = UUID.Zero;
  108. string regionname = string.Empty;
  109. string gatekeeper_host = string.Empty;
  110. string gatekeeper_serveruri = string.Empty;
  111. string destination_serveruri = string.Empty;
  112. int gatekeeper_port = 0;
  113. IPEndPoint client_ipaddress = null;
  114. if (args.ContainsKey("gatekeeper_host") && args["gatekeeper_host"] != null)
  115. gatekeeper_host = args["gatekeeper_host"].AsString();
  116. if (args.ContainsKey("gatekeeper_port") && args["gatekeeper_port"] != null)
  117. Int32.TryParse(args["gatekeeper_port"].AsString(), out gatekeeper_port);
  118. if (args.ContainsKey("gatekeeper_serveruri") && args["gatekeeper_serveruri"] !=null)
  119. gatekeeper_serveruri = args["gatekeeper_serveruri"];
  120. if (args.ContainsKey("destination_serveruri") && args["destination_serveruri"] !=null)
  121. destination_serveruri = args["destination_serveruri"];
  122. GridRegion gatekeeper = new GridRegion();
  123. gatekeeper.ServerURI = gatekeeper_serveruri;
  124. gatekeeper.ExternalHostName = gatekeeper_host;
  125. gatekeeper.HttpPort = (uint)gatekeeper_port;
  126. gatekeeper.InternalEndPoint = new IPEndPoint(IPAddress.Parse("0.0.0.0"), 0);
  127. if (args.ContainsKey("destination_x") && args["destination_x"] != null)
  128. Int32.TryParse(args["destination_x"].AsString(), out x);
  129. else
  130. m_log.WarnFormat(" -- request didn't have destination_x");
  131. if (args.ContainsKey("destination_y") && args["destination_y"] != null)
  132. Int32.TryParse(args["destination_y"].AsString(), out y);
  133. else
  134. m_log.WarnFormat(" -- request didn't have destination_y");
  135. if (args.ContainsKey("destination_uuid") && args["destination_uuid"] != null)
  136. UUID.TryParse(args["destination_uuid"].AsString(), out uuid);
  137. if (args.ContainsKey("destination_name") && args["destination_name"] != null)
  138. regionname = args["destination_name"].ToString();
  139. if (args.ContainsKey("client_ip") && args["client_ip"] != null)
  140. {
  141. string ip_str = args["client_ip"].ToString();
  142. try
  143. {
  144. string callerIP = GetCallerIP(request);
  145. // Verify if this caller has authority to send the client IP
  146. if (callerIP == m_LoginServerIP)
  147. client_ipaddress = new IPEndPoint(IPAddress.Parse(ip_str), 0);
  148. else // leaving this for now, but this warning should be removed
  149. m_log.WarnFormat("[HOME AGENT HANDLER]: Unauthorized machine {0} tried to set client ip to {1}", callerIP, ip_str);
  150. }
  151. catch
  152. {
  153. m_log.DebugFormat("[HOME AGENT HANDLER]: Exception parsing client ip address from {0}", ip_str);
  154. }
  155. }
  156. GridRegion destination = new GridRegion();
  157. destination.RegionID = uuid;
  158. destination.RegionLocX = x;
  159. destination.RegionLocY = y;
  160. destination.RegionName = regionname;
  161. destination.ServerURI = destination_serveruri;
  162. AgentCircuitData aCircuit = new AgentCircuitData();
  163. try
  164. {
  165. aCircuit.UnpackAgentCircuitData(args);
  166. }
  167. catch (Exception ex)
  168. {
  169. m_log.InfoFormat("[HOME AGENT HANDLER]: exception on unpacking ChildCreate message {0}", ex.Message);
  170. responsedata["int_response_code"] = HttpStatusCode.BadRequest;
  171. responsedata["str_response_string"] = "Bad request";
  172. return;
  173. }
  174. OSDMap resp = new OSDMap(2);
  175. string reason = String.Empty;
  176. bool result = m_UserAgentService.LoginAgentToGrid(aCircuit, gatekeeper, destination, client_ipaddress, out reason);
  177. resp["reason"] = OSD.FromString(reason);
  178. resp["success"] = OSD.FromBoolean(result);
  179. // TODO: add reason if not String.Empty?
  180. responsedata["int_response_code"] = HttpStatusCode.OK;
  181. responsedata["str_response_string"] = OSDParser.SerializeJsonString(resp);
  182. }
  183. private string GetCallerIP(Hashtable request)
  184. {
  185. if (!m_Proxy)
  186. return Util.GetCallerIP(request);
  187. // We're behind a proxy
  188. Hashtable headers = (Hashtable)request["headers"];
  189. string xff = "X-Forwarded-For";
  190. if (headers.ContainsKey(xff.ToLower()))
  191. xff = xff.ToLower();
  192. if (!headers.ContainsKey(xff) || headers[xff] == null)
  193. {
  194. m_log.WarnFormat("[AGENT HANDLER]: No XFF header");
  195. return Util.GetCallerIP(request);
  196. }
  197. m_log.DebugFormat("[AGENT HANDLER]: XFF is {0}", headers[xff]);
  198. IPEndPoint ep = Util.GetClientIPFromXFF((string)headers[xff]);
  199. if (ep != null)
  200. return ep.Address.ToString();
  201. // Oops
  202. return Util.GetCallerIP(request);
  203. }
  204. }
  205. }