PollServiceHttpRequest.cs 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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.Collections.Generic;
  30. using System.Reflection;
  31. using System.Text;
  32. using HttpServer;
  33. using log4net;
  34. using OpenMetaverse;
  35. namespace OpenSim.Framework.Servers.HttpServer
  36. {
  37. public class PollServiceHttpRequest
  38. {
  39. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  40. public readonly PollServiceEventArgs PollServiceArgs;
  41. public readonly IHttpClientContext HttpContext;
  42. public readonly IHttpRequest Request;
  43. public readonly int RequestTime;
  44. public readonly UUID RequestID;
  45. public int contextHash;
  46. /*
  47. private void GenContextHash()
  48. {
  49. Random rnd = new Random();
  50. contextHash = 0;
  51. if (Request.Headers["remote_addr"] != null)
  52. contextHash = (Request.Headers["remote_addr"]).GetHashCode() << 16;
  53. else
  54. contextHash = rnd.Next() << 16;
  55. if (Request.Headers["remote_port"] != null)
  56. {
  57. string[] strPorts = Request.Headers["remote_port"].Split(new char[] { ',' });
  58. contextHash += Int32.Parse(strPorts[0]);
  59. }
  60. else
  61. contextHash += rnd.Next() & 0xffff;
  62. }
  63. */
  64. public PollServiceHttpRequest(
  65. PollServiceEventArgs pPollServiceArgs, IHttpClientContext pHttpContext, IHttpRequest pRequest)
  66. {
  67. PollServiceArgs = pPollServiceArgs;
  68. HttpContext = pHttpContext;
  69. Request = pRequest;
  70. RequestTime = System.Environment.TickCount;
  71. RequestID = UUID.Random();
  72. // GenContextHash();
  73. contextHash = HttpContext.contextID;
  74. }
  75. internal void DoHTTPGruntWork(Hashtable responsedata)
  76. {
  77. if (Request.Body.CanRead)
  78. Request.Body.Dispose();
  79. OSHttpResponse response
  80. = new OSHttpResponse(new HttpResponse(HttpContext, Request));
  81. if (responsedata == null)
  82. {
  83. SendNoContentError(response);
  84. return;
  85. }
  86. int responsecode = 200;
  87. string responseString = String.Empty;
  88. string contentType;
  89. byte[] buffer = null;
  90. int rangeStart = 0;
  91. int rangeLen = -1;
  92. try
  93. {
  94. //m_log.Info("[BASE HTTP SERVER]: Doing HTTP Grunt work with response");
  95. if(responsedata["int_response_code"] != null)
  96. responsecode = (int)responsedata["int_response_code"];
  97. if (responsedata["bin_response_data"] != null)
  98. {
  99. buffer = (byte[])responsedata["bin_response_data"];
  100. responsedata["bin_response_data"] = null;
  101. if (responsedata["bin_start"] != null)
  102. rangeStart = (int)responsedata["bin_start"];
  103. if (responsedata["int_bytes"] != null)
  104. rangeLen = (int)responsedata["int_bytes"];
  105. }
  106. else
  107. responseString = (string)responsedata["str_response_string"];
  108. contentType = (string)responsedata["content_type"];
  109. if (responseString == null)
  110. responseString = String.Empty;
  111. }
  112. catch
  113. {
  114. SendNoContentError(response);
  115. return;
  116. }
  117. if (responsedata.ContainsKey("error_status_text"))
  118. response.StatusDescription = (string)responsedata["error_status_text"];
  119. if (responsedata.ContainsKey("http_protocol_version"))
  120. response.ProtocolVersion = (string)responsedata["http_protocol_version"];
  121. if (responsedata.ContainsKey("keepalive"))
  122. response.KeepAlive = (bool)responsedata["keepalive"];
  123. // Cross-Origin Resource Sharing with simple requests
  124. if (responsedata.ContainsKey("access_control_allow_origin"))
  125. response.AddHeader("Access-Control-Allow-Origin", (string)responsedata["access_control_allow_origin"]);
  126. response.StatusCode = responsecode;
  127. if (responsecode == (int)OSHttpStatusCode.RedirectMovedPermanently)
  128. {
  129. response.RedirectLocation = (string)responsedata["str_redirect_location"];
  130. }
  131. if (string.IsNullOrEmpty(contentType))
  132. response.AddHeader("Content-Type", "text/html");
  133. else
  134. response.AddHeader("Content-Type", contentType);
  135. if (responsedata.ContainsKey("headers"))
  136. {
  137. Hashtable headerdata = (Hashtable)responsedata["headers"];
  138. foreach (string header in headerdata.Keys)
  139. response.AddHeader(header, headerdata[header].ToString());
  140. }
  141. if(buffer == null)
  142. {
  143. if (!(contentType.Contains("image")
  144. || contentType.Contains("x-shockwave-flash")
  145. || contentType.Contains("application/x-oar")
  146. || contentType.Contains("application/vnd.ll.mesh")))
  147. {
  148. // Text
  149. buffer = Encoding.UTF8.GetBytes(responseString);
  150. }
  151. else
  152. {
  153. // Binary!
  154. buffer = Convert.FromBase64String(responseString);
  155. }
  156. response.ContentEncoding = Encoding.UTF8;
  157. }
  158. if (rangeStart < 0 || rangeStart > buffer.Length)
  159. rangeStart = 0;
  160. if (rangeLen < 0)
  161. rangeLen = buffer.Length;
  162. else if (rangeLen + rangeStart > buffer.Length)
  163. rangeLen = buffer.Length - rangeStart;
  164. response.ContentLength64 = rangeLen;
  165. try
  166. {
  167. if(rangeLen > 0)
  168. {
  169. response.RawBufferStart = rangeStart;
  170. response.RawBufferLen = rangeLen;
  171. response.RawBuffer = buffer;
  172. //response.OutputStream.Write(buffer, rangeStart, rangeLen);
  173. }
  174. buffer = null;
  175. response.Send();
  176. response.RawBuffer = null;
  177. }
  178. catch (Exception ex)
  179. {
  180. if(ex is System.Net.Sockets.SocketException)
  181. {
  182. // only mute connection reset by peer so we are not totally blind for now
  183. if(((System.Net.Sockets.SocketException)ex).SocketErrorCode != System.Net.Sockets.SocketError.ConnectionReset)
  184. m_log.Warn("[POLL SERVICE WORKER THREAD]: Error ", ex);
  185. }
  186. else
  187. m_log.Warn("[POLL SERVICE WORKER THREAD]: Error ", ex);
  188. }
  189. PollServiceArgs.RequestsHandled++;
  190. }
  191. internal void SendNoContentError(OSHttpResponse response)
  192. {
  193. response.ContentLength64 = 0;
  194. response.ContentEncoding = Encoding.UTF8;
  195. response.StatusCode = 500;
  196. try
  197. {
  198. response.Send();
  199. }
  200. catch { }
  201. return;
  202. }
  203. internal void DoHTTPstop()
  204. {
  205. OSHttpResponse response
  206. = new OSHttpResponse(new HttpResponse(HttpContext, Request));
  207. if(Request.Body.CanRead)
  208. Request.Body.Dispose();
  209. response.ContentLength64 = 0;
  210. response.ContentEncoding = Encoding.UTF8;
  211. response.KeepAlive = false;
  212. response.StatusCode = 503;
  213. try
  214. {
  215. response.Send();
  216. }
  217. catch
  218. {
  219. }
  220. }
  221. }
  222. }