MapRemoveServerConnector.cs 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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.Net;
  32. using Nini.Config;
  33. using log4net;
  34. using OpenMetaverse;
  35. using OpenSim.Framework;
  36. using OpenSim.Server.Base;
  37. using OpenSim.Services.Interfaces;
  38. using OpenSim.Framework.ServiceAuth;
  39. using OpenSim.Framework.Servers.HttpServer;
  40. using OpenSim.Server.Handlers.Base;
  41. using GridRegion = OpenSim.Services.Interfaces.GridRegion;
  42. namespace OpenSim.Server.Handlers.MapImage
  43. {
  44. public class MapRemoveServiceConnector : ServiceConnector
  45. {
  46. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  47. private IMapImageService m_MapService;
  48. private IGridService m_GridService;
  49. private string m_ConfigName = "MapImageService";
  50. public MapRemoveServiceConnector(IConfigSource config, IHttpServer server, string configName) :
  51. base(config, server, configName)
  52. {
  53. IConfig serverConfig = config.Configs[m_ConfigName];
  54. if (serverConfig == null)
  55. throw new Exception(String.Format("No section {0} in config file", m_ConfigName));
  56. string mapService = serverConfig.GetString("LocalServiceModule", string.Empty);
  57. if (string.IsNullOrWhiteSpace(mapService))
  58. throw new Exception("No LocalServiceModule in config file");
  59. object[] args = new object[] { config };
  60. m_MapService = ServerUtils.LoadPlugin<IMapImageService>(mapService, args);
  61. string gridService = serverConfig.GetString("GridService", String.Empty);
  62. if (!string.IsNullOrWhiteSpace(gridService))
  63. m_GridService = ServerUtils.LoadPlugin<IGridService>(gridService, args);
  64. if (m_GridService != null)
  65. m_log.InfoFormat("[MAP IMAGE HANDLER]: GridService check is ON");
  66. else
  67. m_log.InfoFormat("[MAP IMAGE HANDLER]: GridService check is OFF");
  68. IServiceAuth auth = ServiceAuth.Create(config, m_ConfigName);
  69. server.AddSimpleStreamHandler(new MapServerRemoveHandler(m_MapService, m_GridService, auth));
  70. }
  71. }
  72. class MapServerRemoveHandler : SimpleStreamHandler
  73. {
  74. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  75. private readonly IMapImageService m_MapService;
  76. private readonly IGridService m_GridService;
  77. public MapServerRemoveHandler(IMapImageService service, IGridService grid, IServiceAuth auth) :
  78. base("/removemap", auth)
  79. {
  80. m_MapService = service;
  81. m_GridService = grid;
  82. }
  83. protected override void ProcessRequest(IOSHttpRequest httpRequest, IOSHttpResponse httpResponse)
  84. {
  85. //m_log.DebugFormat("[MAP SERVICE IMAGE HANDLER]: Received {0}", path);
  86. try
  87. {
  88. string body;
  89. using (StreamReader sr = new StreamReader(httpRequest.InputStream))
  90. body = sr.ReadToEnd();
  91. body = body.Trim();
  92. httpRequest.InputStream.Dispose();
  93. Dictionary<string, object> request = ServerUtils.ParseQueryString(body);
  94. if (!request.ContainsKey("X") || !request.ContainsKey("Y"))
  95. {
  96. httpResponse.StatusCode = (int)HttpStatusCode.BadRequest;
  97. httpResponse.RawBuffer = Util.ResultFailureMessage("Bad request.");
  98. return;
  99. }
  100. httpResponse.StatusCode = (int)HttpStatusCode.OK;
  101. int x = 0, y = 0;
  102. Int32.TryParse(request["X"].ToString(), out x);
  103. Int32.TryParse(request["Y"].ToString(), out y);
  104. // UUID scopeID = new UUID("07f8d88e-cd5e-4239-a0ed-843f75d09992");
  105. UUID scopeID = UUID.Zero;
  106. if (request.ContainsKey("SCOPE"))
  107. UUID.TryParse(request["SCOPE"].ToString(), out scopeID);
  108. m_log.DebugFormat("[MAP REMOVE SERVER CONNECTOR]: Received position data for region at {0}-{1}", x, y);
  109. if (m_GridService != null)
  110. {
  111. System.Net.IPAddress ipAddr = httpRequest.RemoteIPEndPoint.Address;
  112. GridRegion r = m_GridService.GetRegionByPosition(UUID.Zero, (int)Util.RegionToWorldLoc((uint)x), (int)Util.RegionToWorldLoc((uint)y));
  113. if (r != null)
  114. {
  115. if (r.ExternalEndPoint.Address.ToString() != ipAddr.ToString())
  116. {
  117. m_log.WarnFormat("[MAP IMAGE HANDLER]: IP address {0} may be trying to impersonate region in IP {1}", ipAddr, r.ExternalEndPoint.Address);
  118. httpResponse.RawBuffer = Util.ResultFailureMessage("IP address of caller does not match IP address of registered region");
  119. return;
  120. }
  121. }
  122. else
  123. {
  124. m_log.WarnFormat("[MAP IMAGE HANDLER]: IP address {0} may be rogue. Region not found at coordinates {1}-{2}",
  125. ipAddr, x, y);
  126. httpResponse.RawBuffer = Util.ResultFailureMessage("Region not found at given coordinates");
  127. return;
  128. }
  129. }
  130. string reason = string.Empty;
  131. bool result = m_MapService.RemoveMapTile(x, y, scopeID, out reason);
  132. if (result)
  133. httpResponse.RawBuffer = Util.sucessResultSuccess;
  134. else
  135. httpResponse.RawBuffer = Util.ResultFailureMessage(reason);
  136. return;
  137. }
  138. catch (Exception e)
  139. {
  140. m_log.ErrorFormat("[MAP SERVICE IMAGE HANDLER]: Exception {0} {1}", e.Message, e.StackTrace);
  141. }
  142. httpResponse.RawBuffer = Util.ResultFailureMessage("Unexpected server error");
  143. }
  144. }
  145. }