/* * Copyright (c) Contributors, http://opensimulator.org/ * See CONTRIBUTORS.TXT for a full list of copyright holders. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the OpenSimulator Project nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ using System; using System.Collections.Generic; using System.Collections.Concurrent; using System.Diagnostics; using System.IO; using System.Net; using System.Net.Sockets; using System.Reflection; using System.Threading; using log4net; using Nini.Config; using OpenMetaverse.Packets; using OpenSim.Framework; using OpenSim.Framework.Console; using OpenSim.Framework.Monitoring; using OpenSim.Region.Framework.Scenes; using OpenSim.Region.Framework.Interfaces; using OpenMetaverse; using Mono.Addins; using TokenBucket = OpenSim.Region.ClientStack.LindenUDP.TokenBucket; namespace OpenSim.Region.ClientStack.LindenUDP { /// /// A shim around LLUDPServer that implements the IClientNetworkServer interface /// [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "LLUDPServerShim")] public class LLUDPServerShim : INonSharedRegionModule { protected IConfigSource m_Config; protected LLUDPServer m_udpServer; #region INonSharedRegionModule public virtual string Name { get { return "LLUDPServerShim"; } } public virtual Type ReplaceableInterface { get { return null; } } public virtual void Initialise(IConfigSource source) { m_Config = source; } public virtual void Close() { } public virtual void AddRegion(Scene scene) { uint port = (uint)scene.RegionInfo.InternalEndPoint.Port; IPAddress listenIP = scene.RegionInfo.InternalEndPoint.Address; Initialise(listenIP, ref port, scene.RegionInfo.ProxyOffset, m_Config, scene.AuthenticateHandler); scene.RegionInfo.InternalEndPoint.Port = (int)port; AddScene(scene); } public virtual void RemoveRegion(Scene scene) { Stop(); } public virtual void RegionLoaded(Scene scene) { Start(); } #endregion public virtual void Initialise(IPAddress listenIP, ref uint port, int proxyPortOffsetParm, IConfigSource configSource, AgentCircuitManager circuitManager) { m_udpServer = new LLUDPServer(listenIP, ref port, proxyPortOffsetParm, configSource, circuitManager); } public virtual void AddScene(IScene scene) { m_udpServer.AddScene(scene); StatsManager.RegisterStat( new Stat( "ClientLogoutsDueToNoReceives", "Number of times a client has been logged out because no packets were received before the timeout.", "", "", "clientstack", scene.Name, StatType.Pull, MeasuresOfInterest.None, stat => stat.Value = m_udpServer.ClientLogoutsDueToNoReceives, StatVerbosity.Debug)); StatsManager.RegisterStat( new Stat( "IncomingUDPReceivesCount", "Number of UDP receives performed", "", "", "clientstack", scene.Name, StatType.Pull, MeasuresOfInterest.AverageChangeOverTime, stat => stat.Value = m_udpServer.UdpReceives, StatVerbosity.Debug)); StatsManager.RegisterStat( new Stat( "IncomingPacketsProcessedCount", "Number of inbound LL protocol packets processed", "", "", "clientstack", scene.Name, StatType.Pull, MeasuresOfInterest.AverageChangeOverTime, stat => stat.Value = m_udpServer.IncomingPacketsProcessed, StatVerbosity.Debug)); StatsManager.RegisterStat( new Stat( "IncomingPacketsMalformedCount", "Number of inbound UDP packets that could not be recognized as LL protocol packets.", "", "", "clientstack", scene.Name, StatType.Pull, MeasuresOfInterest.AverageChangeOverTime, stat => stat.Value = m_udpServer.IncomingMalformedPacketCount, StatVerbosity.Info)); StatsManager.RegisterStat( new Stat( "IncomingPacketsOrphanedCount", "Number of inbound packets that were not initial connections packets and could not be associated with a viewer.", "", "", "clientstack", scene.Name, StatType.Pull, MeasuresOfInterest.AverageChangeOverTime, stat => stat.Value = m_udpServer.IncomingOrphanedPacketCount, StatVerbosity.Info)); StatsManager.RegisterStat( new Stat( "IncomingPacketsResentCount", "Number of inbound packets that clients indicate are resends.", "", "", "clientstack", scene.Name, StatType.Pull, MeasuresOfInterest.AverageChangeOverTime, stat => stat.Value = m_udpServer.IncomingPacketsResentCount, StatVerbosity.Debug)); StatsManager.RegisterStat( new Stat( "OutgoingUDPSendsCount", "Number of UDP sends performed", "", "", "clientstack", scene.Name, StatType.Pull, MeasuresOfInterest.AverageChangeOverTime, stat => stat.Value = m_udpServer.UdpSends, StatVerbosity.Debug)); StatsManager.RegisterStat( new Stat( "OutgoingPacketsResentCount", "Number of packets resent because a client did not acknowledge receipt", "", "", "clientstack", scene.Name, StatType.Pull, MeasuresOfInterest.AverageChangeOverTime, stat => stat.Value = m_udpServer.PacketsResentCount, StatVerbosity.Debug)); StatsManager.RegisterStat( new Stat( "AverageUDPProcessTime", "Average number of milliseconds taken to process each incoming UDP packet in a sample.", "This is for initial receive processing which is separate from the later client LL packet processing stage.", "ms", "clientstack", scene.Name, StatType.Pull, MeasuresOfInterest.None, stat => stat.Value = m_udpServer.AverageReceiveTicksForLastSamplePeriod, // stat => // stat.Value = Math.Round(m_udpServer.AverageReceiveTicksForLastSamplePeriod, 7), StatVerbosity.Debug)); } public virtual void Start() { m_udpServer.Start(); } public virtual void Stop() { m_udpServer.Stop(); } } /// /// The LLUDP server for a region. This handles incoming and outgoing /// packets for all UDP connections to the region /// public class LLUDPServer : OpenSimUDPBase { private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); /// Maximum transmission unit, or UDP packet size, for the LLUDP protocol public const int MTU = 1400; public const int MAXPAYLOAD = 1200; /// Number of forced client logouts due to no receipt of packets before timeout. public int ClientLogoutsDueToNoReceives { get; protected set; } /// /// Default packet debug level given to new clients /// public int DefaultClientPacketDebugLevel { get; set; } /// /// If set then all inbound agent updates are discarded. For debugging purposes. /// discard agent update. /// public bool DiscardInboundAgentUpdates { get; set; } /// The measured resolution of Environment.TickCount public readonly float TickCountResolution; /// Number of texture packets to put on the queue each time the /// OnQueueEmpty event is triggered for textures public readonly int TextureSendLimit; protected BlockingCollection packetInbox = new BlockingCollection(); /// Bandwidth throttle for this UDP server public TokenBucket Throttle { get; protected set; } /// Per client throttle rates enforced by this server /// /// If the total rate is non-zero, then this is the maximum total throttle setting that any client can ever have. /// The other rates (resend, asset, etc.) are the defaults for a new client and can be changed (and usually /// do get changed immediately). They do not need to sum to the total. /// public ThrottleRates ThrottleRates { get; protected set; } /// Manages authentication for agent circuits protected AgentCircuitManager m_circuitManager; /// Reference to the scene this UDP server is attached to public Scene Scene { get; protected set; } /// The size of the receive buffer for the UDP socket. This value /// is passed up to the operating system and used in the system networking /// stack. Use zero to leave this value as the default protected int m_recvBufferSize; /// Tracks whether or not a packet was sent each round so we know /// whether or not to sleep protected bool m_packetSent; /// Environment.TickCount of the last time that packet stats were reported to the scene protected int m_elapsedMSSinceLastStatReport = 0; /// Environment.TickCount of the last time the outgoing packet handler executed protected double m_tickLastOutgoingPacketHandler; /// Keeps track of the number of elapsed milliseconds since the last time the outgoing packet handler looped protected double m_elapsedMSOutgoingPacketHandler; /// Keeps track of the number of 100 millisecond periods elapsed in the outgoing packet handler executed protected int m_elapsed100MSOutgoingPacketHandler; /// Keeps track of the number of 500 millisecond periods elapsed in the outgoing packet handler executed protected int m_elapsed500MSOutgoingPacketHandler; /// Flag to signal when clients should check for resends protected bool m_resendUnacked; /// Flag to signal when clients should send ACKs protected bool m_sendAcks; /// Flag to signal when clients should send pings protected bool m_sendPing; protected ExpiringCacheOS> m_pendingCache = new ExpiringCacheOS>(10000); protected int m_defaultRTO = 0; protected int m_maxRTO = 0; protected int m_ackTimeout = 0; protected int m_pausedAckTimeout = 0; protected bool m_disableFacelights = false; public Socket Server { get { return null; } } /// /// Record how many packets have been resent /// internal int PacketsResentCount { get; set; } /// /// Record how many packets have been sent /// internal int PacketsSentCount { get; set; } /// /// Record how many incoming packets are indicated as resends by clients. /// internal int IncomingPacketsResentCount { get; set; } /// /// Record how many inbound packets could not be recognized as LLUDP packets. /// public int IncomingMalformedPacketCount { get; protected set; } /// /// Record how many inbound packets could not be associated with a simulator circuit. /// public int IncomingOrphanedPacketCount { get; protected set; } public bool SupportViewerObjectsCache = true; /// /// Run queue empty processing within a single persistent thread. /// /// /// This is the alternative to having every /// connection schedule its own job in the threadpool which causes performance problems when there are many /// connections. /// public JobEngine OqrEngine { get; protected set; } public LLUDPServer( IPAddress listenIP, ref uint port, int proxyPortOffsetParm, IConfigSource configSource, AgentCircuitManager circuitManager) : base(listenIP, (int)port) { #region Environment.TickCount Measurement // Update the port with the one we actually got port = (uint)Port; // Measure the resolution of Environment.TickCount TickCountResolution = 0f; for (int i = 0; i < 10; i++) { int start = Environment.TickCount; int now = start; while (now == start) now = Environment.TickCount; TickCountResolution += (float)(now - start); } m_log.Info("[LLUDPSERVER]: Average Environment.TickCount resolution: " + TickCountResolution * 0.1f + "ms"); TickCountResolution = 0f; for (int i = 0; i < 100; i++) { double start = Util.GetTimeStampMS(); double now = start; while (now == start) now = Util.GetTimeStampMS(); TickCountResolution += (float)((now - start)); } TickCountResolution = (float)Math.Round(TickCountResolution * 0.01f,6,MidpointRounding.AwayFromZero); m_log.Info("[LLUDPSERVER]: Average Util.GetTimeStampMS resolution: " + TickCountResolution + "ms"); #endregion Environment.TickCount Measurement m_circuitManager = circuitManager; int sceneThrottleBps = 0; // bool usePools = false; IConfig config = configSource.Configs["ClientStack.LindenUDP"]; if (config != null) { m_recvBufferSize = config.GetInt("client_socket_rcvbuf_size", 0); sceneThrottleBps = config.GetInt("scene_throttle_max_bps", 6250000); TextureSendLimit = config.GetInt("TextureSendLimit", 20); m_defaultRTO = config.GetInt("DefaultRTO", 0); m_maxRTO = config.GetInt("MaxRTO", 0); m_disableFacelights = config.GetBoolean("DisableFacelights", false); m_ackTimeout = 1000 * config.GetInt("AckTimeout", 60); m_pausedAckTimeout = 1000 * config.GetInt("PausedAckTimeout", 300); SupportViewerObjectsCache = config.GetBoolean("SupportViewerObjectsCache", SupportViewerObjectsCache); } else { TextureSendLimit = 20; m_ackTimeout = 1000 * 60; // 1 minute m_pausedAckTimeout = 1000 * 300; // 5 minutes } // FIXME: This actually only needs to be done once since the PacketPool is shared across all servers. // However, there is no harm in temporarily doing it multiple times. IConfig packetConfig = configSource.Configs["PacketPool"]; if (packetConfig != null) { PacketPool.Instance.RecyclePackets = packetConfig.GetBoolean("RecyclePackets", true); // PacketPool.Instance.RecycleDataBlocks = packetConfig.GetBoolean("RecycleDataBlocks", true); // usePools = packetConfig.GetBoolean("RecycleBaseUDPPackets", usePools); } #region BinaryStats config = configSource.Configs["Statistics.Binary"]; m_shouldCollectStats = false; if (config != null) { m_shouldCollectStats = config.GetBoolean("Enabled", false); binStatsMaxFilesize = TimeSpan.FromSeconds(config.GetInt("packet_headers_period_seconds", 300)); binStatsDir = config.GetString("stats_dir", "."); m_aggregatedBWStats = config.GetBoolean("aggregatedBWStats", false); } #endregion BinaryStats Throttle = new TokenBucket(null, sceneThrottleBps, sceneThrottleBps * 10e-3f); ThrottleRates = new ThrottleRates(configSource); // if (usePools) // EnablePools(); } public void Start() { StartInbound(); StartOutbound(); // IpahEngine.Start(); OqrEngine.Start(); m_elapsedMSSinceLastStatReport = Environment.TickCount; } public void StartInbound() { m_log.InfoFormat( "[LLUDPSERVER]: Starting inbound packet processing for the LLUDP server"); base.StartInbound(m_recvBufferSize); // This thread will process the packets received that are placed on the packetInbox WorkManager.StartThread( IncomingPacketHandler, string.Format("Incoming Packets ({0})", Scene.Name), ThreadPriority.Normal, true, true, null, Watchdog.DEFAULT_WATCHDOG_TIMEOUT_MS); } public override void StartOutbound() { m_log.Info("[LLUDPSERVER]: Starting outbound packet processing for the LLUDP server"); base.StartOutbound(); WorkManager.StartThread( OutgoingPacketHandler, string.Format("Outgoing Packets ({0})", Scene.Name), ThreadPriority.Normal, true, true, null, Watchdog.DEFAULT_WATCHDOG_TIMEOUT_MS); } public void Stop() { m_log.Info("[LLUDPSERVER]: Shutting down the LLUDP server for " + Scene.Name); base.StopOutbound(); base.StopInbound(); // IpahEngine.Stop(); OqrEngine.Stop(); } /// /// If the outgoing UDP thread times out, then return client that was being processed to help with debugging. /// /// public void AddScene(IScene scene) { if (Scene != null) { m_log.Error("[LLUDPSERVER]: AddScene() called on an LLUDPServer that already has a scene"); return; } if (!(scene is Scene)) { m_log.Error("[LLUDPSERVER]: AddScene() called with an unrecognized scene type " + scene.GetType()); return; } Scene = (Scene)scene; OqrEngine = new JobEngine( string.Format("Outgoing Queue Refill Engine ({0})", Scene.Name), "OUTGOING QUEUE REFILL ENGINE", 2000); StatsManager.RegisterStat( new Stat( "InboxPacketsCount", "Number of LL protocol packets waiting for the second stage of processing after initial receive.", "Number of LL protocol packets waiting for the second stage of processing after initial receive.", "", "clientstack", scene.Name, StatType.Pull, MeasuresOfInterest.AverageChangeOverTime, stat => {try{stat.Value = packetInbox.Count;}catch{}}, StatVerbosity.Debug)); // XXX: These stats are also pool stats but we register them separately since they are currently not // turned on and off by EnablePools()/DisablePools() StatsManager.RegisterStat( new PercentageStat( "PacketsReused", "Packets reused", "Number of packets reused out of all requests to the packet pool", "clientstack", Scene.Name, StatType.Pull, stat => { PercentageStat pstat = (PercentageStat)stat; pstat.Consequent = PacketPool.Instance.PacketsRequested; pstat.Antecedent = PacketPool.Instance.PacketsReused; }, StatVerbosity.Debug)); StatsManager.RegisterStat( new PercentageStat( "PacketDataBlocksReused", "Packet data blocks reused", "Number of data blocks reused out of all requests to the packet pool", "clientstack", Scene.Name, StatType.Pull, stat => { PercentageStat pstat = (PercentageStat)stat; pstat.Consequent = PacketPool.Instance.BlocksRequested; pstat.Antecedent = PacketPool.Instance.BlocksReused; }, StatVerbosity.Debug)); StatsManager.RegisterStat( new Stat( "PacketsPoolCount", "Objects within the packet pool", "The number of objects currently stored within the packet pool", "", "clientstack", Scene.Name, StatType.Pull, stat => stat.Value = PacketPool.Instance.PacketsPooled, StatVerbosity.Debug)); StatsManager.RegisterStat( new Stat( "PacketDataBlocksPoolCount", "Objects within the packet data block pool", "The number of objects currently stored within the packet data block pool", "", "clientstack", Scene.Name, StatType.Pull, stat => stat.Value = PacketPool.Instance.BlocksPooled, StatVerbosity.Debug)); StatsManager.RegisterStat( new Stat( "OutgoingPacketsQueuedCount", "Packets queued for outgoing send", "Number of queued outgoing packets across all connections", "", "clientstack", Scene.Name, StatType.Pull, MeasuresOfInterest.AverageChangeOverTime, stat => stat.Value = GetTotalQueuedOutgoingPackets(), StatVerbosity.Info)); /* StatsManager.RegisterStat( new Stat( "IncomingPacketAsyncRequestsWaiting", "Number of incoming packets waiting for async processing in engine.", "", "", "clientstack", Scene.Name, StatType.Pull, MeasuresOfInterest.None, stat => stat.Value = IpahEngine.JobsWaiting, StatVerbosity.Debug)); */ StatsManager.RegisterStat( new Stat( "OQRERequestsWaiting", "Number of outgong queue refill requests waiting for processing.", "", "", "clientstack", Scene.Name, StatType.Pull, MeasuresOfInterest.None, stat => stat.Value = OqrEngine.JobsWaiting, StatVerbosity.Debug)); StatsManager.RegisterStat( new Stat( "UDPBuffersPoolCount", "Buffers in the UDP buffers pool", "The number of buffers currently stored within the UDP buffers pool", "", "clientstack", Scene.Name, StatType.Pull, stat => stat.Value = m_udpBuffersPoolPtr + 1, StatVerbosity.Debug)); LLUDPServerCommands commands = new LLUDPServerCommands(MainConsole.Instance, this); commands.Register(); } public int GetTotalQueuedOutgoingPackets() { int total = 0; foreach (ScenePresence sp in Scene.GetScenePresences()) { // XXX: Need a better way to determine which IClientAPIs have UDPClients (NPCs do not, for instance). if (sp.ControllingClient is LLClientView) { LLUDPClient udpClient = ((LLClientView)sp.ControllingClient).UDPClient; total += udpClient.GetTotalPacketsQueuedCount(); } } return total; } // public void BroadcastPacket(Packet packet, ThrottleOutPacketType category, bool sendToPausedAgents, bool allowSplitting) // { // // CoarseLocationUpdate and AvatarGroupsReply packets cannot be split in an automated way // if ((packet.Type == PacketType.CoarseLocationUpdate || packet.Type == PacketType.AvatarGroupsReply) && allowSplitting) // allowSplitting = false; // // if (allowSplitting && packet.HasVariableBlocks) // { // byte[][] datas = packet.ToBytesMultiple(); // int packetCount = datas.Length; // // if (packetCount < 1) // m_log.Error("[LLUDPSERVER]: Failed to split " + packet.Type + " with estimated length " + packet.Length); // // for (int i = 0; i < packetCount; i++) // { // byte[] data = datas[i]; // m_scene.ForEachClient( // delegate(IClientAPI client) // { // if (client is LLClientView) // SendPacketData(((LLClientView)client).UDPClient, data, packet.Type, category, null); // } // ); // } // } // else // { // byte[] data = packet.ToBytes(); // m_scene.ForEachClient( // delegate(IClientAPI client) // { // if (client is LLClientView) // SendPacketData(((LLClientView)client).UDPClient, data, packet.Type, category, null); // } // ); // } // } /// /// Start the process of sending a packet to the client. /// /// /// /// /// /// /// The method to call if the packet is not acked by the client. If null, then a standard /// resend of the packet is done. /// public virtual void SendPacket( LLUDPClient udpClient, Packet packet, ThrottleOutPacketType category, bool allowSplitting, UnackedPacketMethod method) { // CoarseLocationUpdate packets cannot be split in an automated way if (allowSplitting && packet.HasVariableBlocks && packet.Type != PacketType.CoarseLocationUpdate && packet.Length + 20 > MTU) { byte[][] datas = packet.ToBytesMultiple(); int packetCount = datas.Length; if (packetCount < 1) m_log.Error("[LLUDPSERVER]: Failed to split " + packet.Type + " with estimated length " + packet.Length); for (int i = 0; i < packetCount; i++) SendPacketData(udpClient, datas[i], packet.Type, category, method); } else { byte[] data = packet.ToBytes(); SendPacketData(udpClient, data, packet.Type, category, method); } PacketPool.Instance.ReturnPacket(packet); } public static int ZeroEncode(byte[] src, int srclen, byte[] dest) { Buffer.BlockCopy(src, 0, dest, 0, 6); int zerolen = 6; byte zerocount = 0; for (int i = zerolen; i < srclen; i++) { if (src[i] == 0x00) { zerocount++; if (zerocount == 0) { dest[zerolen++] = 0x00; dest[zerolen++] = 0xff; zerocount++; } } else { if (zerocount != 0) { dest[zerolen++] = 0x00; dest[zerolen++] = zerocount; zerocount = 0; } dest[zerolen++] = src[i]; } } if (zerocount != 0) { dest[zerolen++] = 0x00; dest[zerolen++] = zerocount; } return zerolen; } /// /// Start the process of sending a packet to the client. /// /// /// /// /// /// /// The method to call if the packet is not acked by the client. If null, then a standard /// resend of the packet is done. /// /// true if the data was sent immediately, false if it was queued for sending public bool SendPacketData( LLUDPClient udpClient, byte[] data, PacketType type, ThrottleOutPacketType category, UnackedPacketMethod method) { int dataLength = data.Length; bool doZerocode = (data[0] & Helpers.MSG_ZEROCODED) != 0; bool doCopy = true; UDPPacketBuffer buffer = GetNewUDPBuffer(udpClient.RemoteEndPoint); // Zerocode if needed if (doZerocode) { try { int testlen = ZeroEncode(data, dataLength, buffer.Data); if(testlen <= dataLength) { dataLength = testlen; doCopy = false; } else data[0] = (byte)(data[0] & ~Helpers.MSG_ZEROCODED); } catch (IndexOutOfRangeException) { // The packet grew larger than the bufferSize while zerocoding. // Remove the MSG_ZEROCODED flag and send the unencoded data // instead m_log.Debug("[LLUDPSERVER]: Packet exceeded buffer size during zerocoding for " + type + ". DataLength=" + dataLength + " and BufferLength=" + buffer.Data.Length + ". Removing MSG_ZEROCODED flag"); data[0] = (byte)(data[0] & ~Helpers.MSG_ZEROCODED); } } // If the packet data wasn't already copied during zerocoding, copy it now if (doCopy) { //if (dataLength <= buffer.Data.Length) if (dataLength <= LLUDPServer.MTU) { Buffer.BlockCopy(data, 0, buffer.Data, 0, dataLength); } else { m_log.Error("[LLUDPSERVER]: Packet exceeded buffer size! This could be an indication of packet assembly not obeying the MTU. Type=" + type + ", DataLength=" + dataLength + ", BufferLength=" + buffer.Data.Length); // buffer = new UDPPacketBuffer(udpClient.RemoteEndPoint, dataLength); buffer = GetNewUDPBuffer(udpClient.RemoteEndPoint); Buffer.BlockCopy(data, 0, buffer.Data, 0, dataLength); } } data = null; buffer.DataLength = dataLength; #region Queue or Send OutgoingPacket outgoingPacket = new OutgoingPacket(udpClient, buffer, category, null); // If we were not provided a method for handling unacked, use the UDPServer default method if ((outgoingPacket.Buffer.Data[0] & Helpers.MSG_RELIABLE) != 0) outgoingPacket.UnackedMethod = ((method == null) ? delegate(OutgoingPacket oPacket) { ResendUnacked(oPacket); } : method); // If a Linden Lab 1.23.5 client receives an update packet after a kill packet for an object, it will // continue to display the deleted object until relog. Therefore, we need to always queue a kill object // packet so that it isn't sent before a queued update packet. if (!outgoingPacket.Client.EnqueueOutgoing(outgoingPacket)) { SendPacketFinal(outgoingPacket); return true; } return false; #endregion Queue or Send } public unsafe UDPPacketBuffer ZeroEncode(UDPPacketBuffer input) { UDPPacketBuffer zb = GetNewUDPBuffer(null); int srclen = input.DataLength; byte[] src = input.Data; byte[] dest = zb.Data; int zerolen = 6; byte zerocount = 0; for (int i = zerolen; i < srclen; i++) { if (src[i] == 0x00) { zerocount++; if (zerocount == 0) { dest[zerolen++] = 0x00; dest[zerolen++] = 0xff; zerocount++; } } else { if (zerocount != 0) { dest[zerolen++] = 0x00; dest[zerolen++] = zerocount; zerocount = 0; } dest[zerolen++] = src[i]; } } if (zerocount != 0) { dest[zerolen++] = 0x00; dest[zerolen++] = zerocount; } if(zerolen >= srclen) { FreeUDPBuffer(zb); src[0] &= unchecked((byte)~Helpers.MSG_ZEROCODED); return input; } Buffer.BlockCopy(src, 0, dest, 0, 6); zb.RemoteEndPoint = input.RemoteEndPoint; zb.DataLength = zerolen; FreeUDPBuffer(input); return zb; } public void SendUDPPacket( LLUDPClient udpClient, UDPPacketBuffer buffer, ThrottleOutPacketType category, UnackedPacketMethod method, bool zerocode) { if (zerocode) buffer = ZeroEncode(buffer); OutgoingPacket outgoingPacket = new OutgoingPacket(udpClient, buffer, category, null); // If we were not provided a method for handling unacked, use the UDPServer default method if ((outgoingPacket.Buffer.Data[0] & Helpers.MSG_RELIABLE) != 0) outgoingPacket.UnackedMethod = ((method == null) ? delegate (OutgoingPacket oPacket) { ResendUnacked(oPacket); } : method); if (!outgoingPacket.Client.EnqueueOutgoing(outgoingPacket)) SendPacketFinal(outgoingPacket); } public void SendUDPPacket(LLUDPClient udpClient, UDPPacketBuffer buffer, ThrottleOutPacketType category) { OutgoingPacket outgoingPacket = new OutgoingPacket(udpClient, buffer, category, null); // If we were not provided a method for handling unacked, use the UDPServer default method if ((outgoingPacket.Buffer.Data[0] & Helpers.MSG_RELIABLE) != 0) outgoingPacket.UnackedMethod = delegate (OutgoingPacket oPacket) { ResendUnacked(oPacket); }; if (!outgoingPacket.Client.EnqueueOutgoing(outgoingPacket)) SendPacketFinal(outgoingPacket); } static private readonly byte[] PacketAckHeader = new byte[] { 0, 0, 0, 0, 0, // sequence number 0, // extra 0xff, 0xff, 0xff, 0xfb // ID 65531 (low frequency bigendian) }; public void SendAcks(LLUDPClient udpClient) { if(udpClient.PendingAcks.Count == 0) return; UDPPacketBuffer buf = GetNewUDPBuffer(udpClient.RemoteEndPoint); Buffer.BlockCopy(PacketAckHeader, 0, buf.Data, 0, 10); byte[] data = buf.Data; // count at position 10 int pos = 11; uint ack; int count = 0; while (udpClient.PendingAcks.Dequeue(out ack)) { Utils.UIntToBytes(ack, data, pos); pos += 4; ++count; if (count == 255) { data[10] = 255; buf.DataLength = pos; SendUDPPacket(udpClient, buf, ThrottleOutPacketType.Unknown); buf = GetNewUDPBuffer(udpClient.RemoteEndPoint); Buffer.BlockCopy(PacketAckHeader, 0, buf.Data, 0, 10); data = buf.Data; pos = 11; count = 0; } } if (count > 0) { data[10] = (byte)count; buf.DataLength = pos; SendUDPPacket(udpClient, buf, ThrottleOutPacketType.Unknown); } } static private readonly byte[] StartPingCheckHeader = new byte[] { 0, 0, 0, 0, 0, // sequence number 0, // extra 1 // ID 1 (high frequency) }; public void SendPing(LLUDPClient udpClient) { UDPPacketBuffer buf = GetNewUDPBuffer(udpClient.RemoteEndPoint); Buffer.BlockCopy(StartPingCheckHeader, 0, buf.Data, 0, 7); byte[] data = buf.Data; data[7] = udpClient.CurrentPingSequence++; // older seq number of our un ack packets, so viewers could clean deduplication lists TODO Utils.UIntToBytes(udpClient.NeedAcks.Oldest(), data, 8); buf.DataLength = 12; SendUDPPacket(udpClient, buf, ThrottleOutPacketType.Unknown); udpClient.m_lastStartpingTimeMS = Util.GetTimeStampMS(); } static private readonly byte[] CompletePingCheckHeader = new byte[] { 0, 0, 0, 0, 0, // sequence number 0, // extra 2 // ID 1 (high frequency) }; public void CompletePing(LLUDPClient udpClient, byte pingID) { UDPPacketBuffer buf = GetNewUDPBuffer(udpClient.RemoteEndPoint); Buffer.BlockCopy(CompletePingCheckHeader, 0, buf.Data, 0, 7); byte[] data = buf.Data; data[7] = pingID; buf.DataLength = 8; SendUDPPacket(udpClient, buf, ThrottleOutPacketType.Unknown); } public void HandleUnacked(LLClientView client) { LLUDPClient udpClient = client.UDPClient; if (!client.IsActive || !udpClient.IsConnected) return; // Disconnect an agent if no packets are received for some time int timeoutTicks = m_ackTimeout; // Allow more slack if the client is "paused" eg file upload dialogue is open // Some sort of limit is needed in case the client crashes, loses its network connection // or some other disaster prevents it from sendung the AgentResume if (udpClient.IsPaused) timeoutTicks = m_pausedAckTimeout; if (client.IsActive && (Environment.TickCount & Int32.MaxValue) - udpClient.TickLastPacketReceived > timeoutTicks) { // We must set IsActive synchronously so that we can stop the packet loop reinvoking this method, even // though it's set later on by LLClientView.Close() client.IsActive = false; // Fire this out on a different thread so that we don't hold up outgoing packet processing for // everybody else if this is being called due to an ack timeout. // This is the same as processing as the async process of a logout request. Util.FireAndForget( o => DeactivateClientDueToTimeout(client, timeoutTicks), null, "LLUDPServer.DeactivateClientDueToTimeout"); return; } // Get a list of all of the packets that have been sitting unacked longer than udpClient.RTO List expiredPackets = udpClient.NeedAcks.GetExpiredPackets(udpClient.m_RTO); if (expiredPackets != null) { for (int i = 0; i < expiredPackets.Count; ++i) expiredPackets[i].UnackedMethod(expiredPackets[i]); } } public void ResendUnacked(OutgoingPacket outgoingPacket) { //m_log.DebugFormat("[LLUDPSERVER]: Resending packet #{0} (attempt {1}), {2}ms have passed", // outgoingPacket.SequenceNumber, outgoingPacket.ResendCount, Environment.TickCount - outgoingPacket.TickCount); // Set the resent flag outgoingPacket.Buffer.Data[0] = (byte)(outgoingPacket.Buffer.Data[0] | Helpers.MSG_RESENT); outgoingPacket.Category = ThrottleOutPacketType.Resend; // Bump up the resend count on this packet Interlocked.Increment(ref outgoingPacket.ResendCount); // Requeue or resend the packet if (!outgoingPacket.Client.EnqueueOutgoing(outgoingPacket)) SendPacketFinal(outgoingPacket); } public void Flush(LLUDPClient udpClient) { // FIXME: Implement? } /// /// Actually send a packet to a client. /// /// internal void SendPacketFinal(OutgoingPacket outgoingPacket) { UDPPacketBuffer buffer = outgoingPacket.Buffer; if(buffer == null) // canceled packet return; LLUDPClient udpClient = outgoingPacket.Client; if (!udpClient.IsConnected) { FreeUDPBuffer(buffer); return; } byte flags = buffer.Data[0]; bool isResend = (flags & Helpers.MSG_RESENT) != 0; bool isReliable = (flags & Helpers.MSG_RELIABLE) != 0; bool isZerocoded = (flags & Helpers.MSG_ZEROCODED) != 0; int dataLength = buffer.DataLength; // only append acks on plain reliable messages if (flags == Helpers.MSG_RELIABLE && outgoingPacket.UnackedMethod == null) { // Keep appending ACKs until there is no room left in the buffer or there are // no more ACKs to append int ackCount = 0; uint ack; while (dataLength + 5 < MTU && ackCount < 256 && udpClient.PendingAcks.Dequeue(out ack)) { Utils.UIntToBytesBig(ack, buffer.Data, dataLength); dataLength += 4; ++ackCount; } if (ackCount > 0) { // Set the last byte of the packet equal to the number of appended ACKs buffer.Data[dataLength++] = (byte)ackCount; // Set the appended ACKs flag on this packet buffer.Data[0] = (byte)(buffer.Data[0] | Helpers.MSG_APPENDED_ACKS); } buffer.DataLength = dataLength; } if (!isResend) { // Not a resend, assign a new sequence number uint sequenceNumber = (uint)Interlocked.Increment(ref udpClient.CurrentSequence); Utils.UIntToBytesBig(sequenceNumber, buffer.Data, 1); outgoingPacket.SequenceNumber = sequenceNumber; } else { Interlocked.Increment(ref udpClient.PacketsResent); PacketsResentCount++; } // Stats tracking Interlocked.Increment(ref udpClient.PacketsSent); PacketsSentCount++; SyncSend(buffer); // Keep track of when this packet was sent out (right now) Interlocked.Exchange(ref outgoingPacket.TickCount, Environment.TickCount & Int32.MaxValue); if (outgoingPacket.UnackedMethod == null) FreeUDPBuffer(buffer); else if(!isResend) { // Add this packet to the list of ACK responses we are waiting on from the server udpClient.NeedAcks.Add(outgoingPacket); } if (udpClient.DebugDataOutLevel > 0) m_log.DebugFormat( "[LLUDPSERVER]: Sending packet #{0} (rel: {1}, res: {2}) to {3} from {4}", outgoingPacket.SequenceNumber, isReliable, isResend, udpClient.AgentID, Scene.Name); } protected void RecordMalformedInboundPacket(IPEndPoint endPoint) { // if (m_malformedCount < 100) // m_log.DebugFormat("[LLUDPSERVER]: Dropped malformed packet: " + e.ToString()); IncomingMalformedPacketCount++; if ((IncomingMalformedPacketCount % 10000) == 0) m_log.WarnFormat( "[LLUDPSERVER]: Received {0} malformed packets so far, probable network attack. Last was from {1}", IncomingMalformedPacketCount, endPoint); } public override void PacketReceived(UDPPacketBuffer buffer) { // Debugging/Profiling //try { Thread.CurrentThread.Name = "PacketReceived (" + m_scene.RegionInfo.RegionName + ")"; } //catch (Exception) { } // m_log.DebugFormat( // "[LLUDPSERVER]: Packet received from {0} in {1}", buffer.RemoteEndPoint, m_scene.RegionInfo.RegionName); Packet packet = null; int packetEnd = buffer.DataLength - 1; IPEndPoint endPoint = (IPEndPoint)buffer.RemoteEndPoint; #region Decoding if (buffer.DataLength < 7) { // m_log.WarnFormat( // "[LLUDPSERVER]: Dropping undersized packet with {0} bytes received from {1} in {2}", // buffer.DataLength, buffer.RemoteEndPoint, m_scene.RegionInfo.RegionName); RecordMalformedInboundPacket(endPoint); FreeUDPBuffer(buffer); return; // Drop undersized packet } int headerLen = 7; if (buffer.Data[6] == 0xFF) { if (buffer.Data[7] == 0xFF) headerLen = 10; else headerLen = 8; } if (buffer.DataLength < headerLen) { // m_log.WarnFormat( // "[LLUDPSERVER]: Dropping packet with malformed header received from {0} in {1}", // buffer.RemoteEndPoint, m_scene.RegionInfo.RegionName); RecordMalformedInboundPacket(endPoint); FreeUDPBuffer(buffer); return; // Malformed header } try { // get a buffer for zero decode using the udp buffers pool UDPPacketBuffer zerodecodebufferholder = null; byte[] zerodecodebuffer = null; // only if needed if (((buffer.Data[0] & Helpers.MSG_ZEROCODED) != 0)) { zerodecodebufferholder = GetNewUDPBuffer(null); zerodecodebuffer = zerodecodebufferholder.Data; } packet = Packet.BuildPacket(buffer.Data, ref packetEnd, zerodecodebuffer); // If OpenSimUDPBase.UsePool == true (which is currently separate from the PacketPool) then we // assume that packet construction does not retain a reference to byte[] buffer.Data (instead, all // bytes are copied out). // packet = PacketPool.Instance.GetPacket(buffer.Data, ref packetEnd, zerodecodebuffer); if(zerodecodebufferholder != null) FreeUDPBuffer(zerodecodebufferholder); } catch (Exception e) { if (IncomingMalformedPacketCount < 100) m_log.DebugFormat("[LLUDPSERVER]: Dropped malformed packet: " + e.ToString()); } // Fail-safe check if (packet == null) { if (IncomingMalformedPacketCount < 100) { m_log.WarnFormat("[LLUDPSERVER]: Malformed data, cannot parse {0} byte packet from {1}, data {2}:", buffer.DataLength, buffer.RemoteEndPoint, Utils.BytesToHexString(buffer.Data, buffer.DataLength, null)); } RecordMalformedInboundPacket(endPoint); FreeUDPBuffer(buffer); return; } #endregion Decoding #region Packet to Client Mapping // usecircuitcode handling if (!Scene.TryGetClient(endPoint, out IClientAPI client) || !(client is LLClientView)) { // UseCircuitCode handling if (packet.Type == PacketType.UseCircuitCode) { // And if there is a UseCircuitCode pending, also drop it lock (m_pendingCache) { if (m_pendingCache.Contains(endPoint)) { FreeUDPBuffer(buffer); SendAckImmediate(endPoint, packet.Header.Sequence); // i hear you shutup return; } m_pendingCache.AddOrUpdate(endPoint, new Queue(), 60); } Util.FireAndForget(HandleUseCircuitCode, new object[] { endPoint, packet }); FreeUDPBuffer(buffer); SendAckImmediate(endPoint, packet.Header.Sequence); return; } } // If this is a pending connection, enqueue, don't process yet lock (m_pendingCache) { if (m_pendingCache.TryGetValue(endPoint, out Queue queue)) { //m_log.DebugFormat("[LLUDPSERVER]: Enqueued a {0} packet into the pending queue", packet.Type); queue.Enqueue(buffer); return; } } FreeUDPBuffer(buffer); // Determine which agent this packet came from if (client == null || !(client is LLClientView)) { //m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName); IncomingOrphanedPacketCount++; if ((IncomingOrphanedPacketCount % 10000) == 0) m_log.WarnFormat( "[LLUDPSERVER]: Received {0} orphaned packets so far. Last was from {1}", IncomingOrphanedPacketCount, endPoint); return; } LLUDPClient udpClient = ((LLClientView)client).UDPClient; if (!udpClient.IsConnected) { m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet for a unConnected client in " + Scene.RegionInfo.RegionName); return; } #endregion Packet to Client Mapping // Stats tracking Interlocked.Increment(ref udpClient.PacketsReceived); int now = Environment.TickCount & Int32.MaxValue; udpClient.TickLastPacketReceived = now; #region ACK Receiving // Handle appended ACKs if (packet.Header.AppendedAcks && packet.Header.AckList != null) { // m_log.DebugFormat( // "[LLUDPSERVER]: Handling {0} appended acks from {1} in {2}", // packet.Header.AckList.Length, client.Name, m_scene.Name); for (int i = 0; i < packet.Header.AckList.Length; i++) udpClient.NeedAcks.Acknowledge(packet.Header.AckList[i], now, packet.Header.Resent); } // Handle PacketAck packets if (packet.Type == PacketType.PacketAck) { PacketAckPacket ackPacket = (PacketAckPacket)packet; // m_log.DebugFormat( // "[LLUDPSERVER]: Handling {0} packet acks for {1} in {2}", // ackPacket.Packets.Length, client.Name, m_scene.Name); for (int i = 0; i < ackPacket.Packets.Length; i++) udpClient.NeedAcks.Acknowledge(ackPacket.Packets[i].ID, now, packet.Header.Resent); // We don't need to do anything else with PacketAck packets return; } #endregion ACK Receiving #region ACK Sending if (packet.Header.Reliable) { // m_log.DebugFormat( // "[LLUDPSERVER]: Adding ack request for {0} {1} from {2} in {3}", // packet.Type, packet.Header.Sequence, client.Name, m_scene.Name); udpClient.PendingAcks.Enqueue(packet.Header.Sequence); // This is a somewhat odd sequence of steps to pull the client.BytesSinceLastACK value out, // add the current received bytes to it, test if 2*MTU bytes have been sent, if so remove // 2*MTU bytes from the value and send ACKs, and finally add the local value back to // client.BytesSinceLastACK. Lockless thread safety int bytesSinceLastACK = Interlocked.Exchange(ref udpClient.BytesSinceLastACK, 0); bytesSinceLastACK += buffer.DataLength; if (bytesSinceLastACK > LLUDPServer.MTU * 2) { bytesSinceLastACK -= LLUDPServer.MTU * 2; SendAcks(udpClient); } Interlocked.Add(ref udpClient.BytesSinceLastACK, bytesSinceLastACK); } #endregion ACK Sending #region Incoming Packet Accounting // We're not going to worry about interlock yet since its not currently critical that this total count // is 100% correct if (packet.Header.Resent) IncomingPacketsResentCount++; // Check the archive of received reliable packet IDs to see whether we already received this packet if (packet.Header.Reliable && !udpClient.PacketArchive.TryEnqueue(packet.Header.Sequence)) { if (packet.Header.Resent) m_log.DebugFormat( "[LLUDPSERVER]: Received a resend of already processed packet #{0}, type {1} from {2}", packet.Header.Sequence, packet.Type, client.Name); else m_log.WarnFormat( "[LLUDPSERVER]: Received a duplicate (not marked as resend) of packet #{0}, type {1} from {2}", packet.Header.Sequence, packet.Type, client.Name); // Avoid firing a callback twice for the same packet return; } #endregion Incoming Packet Accounting #region BinaryStats LogPacketHeader(true, udpClient.CircuitCode, 0, packet.Type, (ushort)packet.Length); #endregion BinaryStats #region Ping Check Handling if (packet.Type == PacketType.StartPingCheck) { // m_log.DebugFormat("[LLUDPSERVER]: Handling ping from {0} in {1}", client.Name, m_scene.Name); // We don't need to do anything else with ping checks StartPingCheckPacket startPing = (StartPingCheckPacket)packet; CompletePing(udpClient, startPing.PingID.PingID); if ((Environment.TickCount - m_elapsedMSSinceLastStatReport) >= 3000) { udpClient.SendPacketStats(); m_elapsedMSSinceLastStatReport = Environment.TickCount; } return; } else if (packet.Type == PacketType.CompletePingCheck) { double t = Util.GetTimeStampMS() - udpClient.m_lastStartpingTimeMS; double c = 0.8 * udpClient.m_pingMS; c += 0.2 * t; int p = (int)c; udpClient.m_pingMS = p; udpClient.UpdateRoundTrip(p); return; } #endregion Ping Check Handling IncomingPacket incomingPacket; incomingPacket = new IncomingPacket((LLClientView)client, packet); // if (incomingPacket.Packet.Type == PacketType.AgentUpdate || // incomingPacket.Packet.Type == PacketType.ChatFromViewer) // if (incomingPacket.Packet.Type == PacketType.ChatFromViewer) // packetInbox.PriorityEnqueue(incomingPacket); // else // packetInbox.Enqueue(incomingPacket); packetInbox.Add(incomingPacket); } #region BinaryStats public class PacketLogger { public DateTime StartTime; public string Path = null; public System.IO.BinaryWriter Log = null; } public static PacketLogger PacketLog; protected static bool m_shouldCollectStats = false; // Number of seconds to log for static TimeSpan binStatsMaxFilesize = TimeSpan.FromSeconds(300); static object binStatsLogLock = new object(); static string binStatsDir = ""; //for Aggregated In/Out BW logging static bool m_aggregatedBWStats = false; static long m_aggregatedBytesIn = 0; static long m_aggregatedByestOut = 0; static object aggBWStatsLock = new object(); public static long AggregatedLLUDPBytesIn { get { return m_aggregatedBytesIn; } } public static long AggregatedLLUDPBytesOut { get {return m_aggregatedByestOut;} } public static void LogPacketHeader(bool incoming, uint circuit, byte flags, PacketType packetType, ushort size) { if (m_aggregatedBWStats) { lock (aggBWStatsLock) { if (incoming) m_aggregatedBytesIn += size; else m_aggregatedByestOut += size; } } if (!m_shouldCollectStats) return; // Binary logging format is TTTTTTTTCCCCFPPPSS, T=Time, C=Circuit, F=Flags, P=PacketType, S=size // Put the incoming bit into the least significant bit of the flags byte if (incoming) flags |= 0x01; else flags &= 0xFE; // Put the flags byte into the most significant bits of the type integer uint type = (uint)packetType; type |= (uint)flags << 24; // m_log.Debug("1 LogPacketHeader(): Outside lock"); lock (binStatsLogLock) { DateTime now = DateTime.Now; // m_log.Debug("2 LogPacketHeader(): Inside lock. now is " + now.Ticks); try { if (PacketLog == null || (now > PacketLog.StartTime + binStatsMaxFilesize)) { if (PacketLog != null && PacketLog.Log != null) { PacketLog.Log.Close(); } // First log file or time has expired, start writing to a new log file PacketLog = new PacketLogger(); PacketLog.StartTime = now; PacketLog.Path = (binStatsDir.Length > 0 ? binStatsDir + System.IO.Path.DirectorySeparatorChar.ToString() : "") + String.Format("packets-{0}.log", now.ToString("yyyyMMddHHmmss")); PacketLog.Log = new BinaryWriter(File.Open(PacketLog.Path, FileMode.Append, FileAccess.Write)); } // Serialize the data byte[] output = new byte[18]; Buffer.BlockCopy(BitConverter.GetBytes(now.Ticks), 0, output, 0, 8); Buffer.BlockCopy(BitConverter.GetBytes(circuit), 0, output, 8, 4); Buffer.BlockCopy(BitConverter.GetBytes(type), 0, output, 12, 4); Buffer.BlockCopy(BitConverter.GetBytes(size), 0, output, 16, 2); // Write the serialized data to disk if (PacketLog != null && PacketLog.Log != null) PacketLog.Log.Write(output); } catch (Exception ex) { m_log.Error("Packet statistics gathering failed: " + ex.Message, ex); if (PacketLog.Log != null) { PacketLog.Log.Close(); } PacketLog = null; } } } #endregion BinaryStats protected void HandleUseCircuitCode(object o) { IPEndPoint endPoint = null; IClientAPI client = null; try { // DateTime startTime = DateTime.Now; object[] array = (object[])o; endPoint = (IPEndPoint)array[0]; UseCircuitCodePacket uccp = (UseCircuitCodePacket)array[1]; m_log.DebugFormat( "[LLUDPSERVER]: Handling UseCircuitCode request for circuit {0} to {1} from IP {2}", uccp.CircuitCode.Code, Scene.RegionInfo.RegionName, endPoint); if (IsClientAuthorized(uccp, out AuthenticateResponse sessionInfo)) { AgentCircuitData aCircuit = m_circuitManager.GetAgentCircuitData(uccp.CircuitCode.Code); // Begin the process of adding the client to the simulator client = AddClient( uccp.CircuitCode.Code, uccp.CircuitCode.ID, uccp.CircuitCode.SessionID, endPoint, sessionInfo); // This will be true if the client is new, e.g. not // an existing child agent, and there is no circuit data if (client != null && aCircuit == null) { Scene.CloseAgent(client.AgentId, true); return; } // Obtain the pending queue and remove it from the cache Queue queue = null; lock (m_pendingCache) { if (!m_pendingCache.TryGetValue(endPoint, out queue)) { m_log.DebugFormat("[LLUDPSERVER]: Client created but no pending queue present"); return; } m_pendingCache.Remove(endPoint); } m_log.DebugFormat("[LLUDPSERVER]: Client created, processing pending queue, {0} entries", queue.Count); // Reinject queued packets while (queue.Count > 0) { UDPPacketBuffer buf = queue.Dequeue(); PacketReceived(buf); } queue = null; if (client != null) { if(aCircuit.teleportFlags <= 0) client.SendRegionHandshake(); } } else { // Don't create clients for unauthorized requesters. m_log.WarnFormat( "[LLUDPSERVER]: Ignoring connection request for {0} to {1} with unknown circuit code {2} from IP {3}", uccp.CircuitCode.ID, Scene.RegionInfo.RegionName, uccp.CircuitCode.Code, endPoint); lock (m_pendingCache) m_pendingCache.Remove(endPoint); } // m_log.DebugFormat( // "[LLUDPSERVER]: Handling UseCircuitCode request from {0} took {1}ms", // buffer.RemoteEndPoint, (DateTime.Now - startTime).Milliseconds); } catch (Exception e) { m_log.ErrorFormat( "[LLUDPSERVER]: UseCircuitCode handling from endpoint {0}, client {1} {2} failed. Exception {3}{4}", endPoint != null ? endPoint.ToString() : "n/a", client != null ? client.Name : "unknown", client != null ? client.AgentId.ToString() : "unknown", e.Message, e.StackTrace); } } /// /// Send an ack immediately to the given endpoint. /// /// /// FIXME: Might be possible to use SendPacketData() like everything else, but this will require refactoring so /// that we can obtain the UDPClient easily at this point. /// /// /// protected void SendAckImmediate(IPEndPoint remoteEndpoint, uint sequenceNumber) { PacketAckPacket ack = new PacketAckPacket(); ack.Header.Reliable = false; ack.Packets = new PacketAckPacket.PacketsBlock[1]; ack.Packets[0] = new PacketAckPacket.PacketsBlock(); ack.Packets[0].ID = sequenceNumber; SendAckImmediate(remoteEndpoint, ack); } public virtual void SendAckImmediate(IPEndPoint remoteEndpoint, PacketAckPacket ack) { byte[] packetData = ack.ToBytes(); int length = packetData.Length; UDPPacketBuffer buffer = GetNewUDPBuffer(remoteEndpoint); buffer.DataLength = length; Buffer.BlockCopy(packetData, 0, buffer.Data, 0, length); // AsyncBeginSend(buffer); SyncSend(buffer); FreeUDPBuffer(buffer); } protected bool IsClientAuthorized(UseCircuitCodePacket useCircuitCode, out AuthenticateResponse sessionInfo) { UUID agentID = useCircuitCode.CircuitCode.ID; UUID sessionID = useCircuitCode.CircuitCode.SessionID; uint circuitCode = useCircuitCode.CircuitCode.Code; sessionInfo = m_circuitManager.AuthenticateSession(sessionID, agentID, circuitCode); return sessionInfo.Authorised; } /// /// Add a client. /// /// /// /// /// /// /// The client if it was added. Null if the client already existed. protected virtual IClientAPI AddClient( uint circuitCode, UUID agentID, UUID sessionID, IPEndPoint remoteEndPoint, AuthenticateResponse sessionInfo) { IClientAPI client = null; // We currently synchronize this code across the whole scene to avoid issues such as // http://opensimulator.org/mantis/view.php?id=5365 However, once locking per agent circuit can be done // consistently, this lock could probably be removed. lock (this) { if (Scene.TryGetClient(agentID, out client)) { if (client.SceneAgent != null && client.CircuitCode == circuitCode && client.SessionId == sessionID && client.RemoteEndPoint == remoteEndPoint && client.SceneAgent.ControllingClient.SecureSessionId == sessionInfo.LoginInfo.SecureSession) return client; Scene.CloseAgent(agentID, true); } LLUDPClient udpClient = new LLUDPClient(this, ThrottleRates, Throttle, circuitCode, agentID, remoteEndPoint, m_defaultRTO, m_maxRTO); client = new LLClientView(Scene, this, udpClient, sessionInfo, agentID, sessionID, circuitCode); client.OnLogout += LogoutHandler; client.DebugPacketLevel = DefaultClientPacketDebugLevel; ((LLClientView)client).DisableFacelights = m_disableFacelights; client.Start(); } return client; } /// /// Deactivates the client if we don't receive any packets within a certain amount of time (default 60 seconds). /// /// /// If a connection is active then we will always receive packets even if nothing else is happening, due to /// regular client pings. /// /// /// protected void DeactivateClientDueToTimeout(LLClientView client, int timeoutTicks) { lock (client.CloseSyncLock) { ClientLogoutsDueToNoReceives++; if (client.SceneAgent != null) { m_log.WarnFormat( "[LLUDPSERVER]: No packets received from {0} agent of {1} for {2}ms in {3}. Disconnecting.", client.SceneAgent.IsChildAgent ? "child" : "root", client.Name, timeoutTicks, Scene.Name); if (!client.SceneAgent.IsChildAgent) client.Kick("Simulator logged you out due to connection timeout."); } } if (!Scene.CloseAgent(client.AgentId, true)) client.Close(true,true); } protected void IncomingPacketHandler() { IncomingPacket incomingPacket; // Set this culture for the thread that incoming packets are received // on to en-US to avoid number parsing issues Culture.SetCurrentCulture(); while (IsRunningInbound) { Scene.ThreadAlive(1); try { packetInbox.TryTake(out incomingPacket, 4500); if (incomingPacket != null && IsRunningInbound) { ProcessInPacket(incomingPacket); incomingPacket = null; } } catch (ThreadAbortException) { Thread.ResetAbort(); } catch (Exception ex) { m_log.Error("[LLUDPSERVER]: Error in the incoming packet handler loop: " + ex.Message, ex); } Watchdog.UpdateThread(); } if (packetInbox.Count > 0) m_log.Warn("[LLUDPSERVER]: IncomingPacketHandler is shutting down, dropping " + packetInbox.Count + " packets"); packetInbox.Dispose(); Watchdog.RemoveThread(); } protected void OutgoingPacketHandler() { // Set this culture for the thread that outgoing packets are sent // on to en-US to avoid number parsing issues Culture.SetCurrentCulture(); // Typecast the function to an Action once here to avoid allocating a new // Action generic every round Action clientPacketHandler = ClientOutgoingPacketHandler; while (base.IsRunningOutbound) { Scene.ThreadAlive(2); try { m_packetSent = false; #region Update Timers m_resendUnacked = false; m_sendAcks = false; m_sendPing = false; // Update elapsed time double thisTick = Util.GetTimeStampMS(); // update some 1ms resolution chained timers m_elapsedMSOutgoingPacketHandler += thisTick - m_tickLastOutgoingPacketHandler; m_tickLastOutgoingPacketHandler = thisTick; // Check for pending outgoing resends every 100ms if (m_elapsedMSOutgoingPacketHandler >= 100.0) { m_resendUnacked = true; m_elapsedMSOutgoingPacketHandler = 0.0; ++m_elapsed100MSOutgoingPacketHandler; } // Check for pending outgoing ACKs every 500ms if (m_elapsed100MSOutgoingPacketHandler >= 5) { m_sendAcks = true; m_elapsed100MSOutgoingPacketHandler = 0; ++m_elapsed500MSOutgoingPacketHandler; } // Send pings to clients every 5000ms if (m_elapsed500MSOutgoingPacketHandler >= 10) { m_sendPing = true; m_elapsed500MSOutgoingPacketHandler = 0; } #endregion Update Timers // Handle outgoing packets, resends, acknowledgements, and pings for each // client. m_packetSent will be set to true if a packet is sent Scene.ForEachClient(clientPacketHandler); // If nothing was sent, sleep for the minimum amount of time before a // token bucket could get more tokens if(Scene.GetNumberOfClients() == 0) { Thread.Sleep(100); } else if (!m_packetSent) // Thread.Sleep((int)TickCountResolution); outch this is bad on linux Thread.Sleep(15); // match the 16ms of windows, dont ask 16 or win may decide to do 32ms. Watchdog.UpdateThread(); } catch (Exception ex) { m_log.Error("[LLUDPSERVER]: OutgoingPacketHandler loop threw an exception: " + ex.Message, ex); } } Watchdog.RemoveThread(); } protected void ClientOutgoingPacketHandler(IClientAPI client) { try { if (client is LLClientView) { LLClientView llClient = (LLClientView)client; LLUDPClient udpClient = llClient.UDPClient; if (udpClient.IsConnected) { if (client.IsActive && m_resendUnacked) HandleUnacked(llClient); if (client.IsActive) { if (m_sendAcks) SendAcks(udpClient); if (m_sendPing) SendPing(udpClient); } // Dequeue any outgoing packets that are within the throttle limits if (udpClient.DequeueOutgoing()) m_packetSent = true; } } } catch (Exception ex) { m_log.Error( string.Format("[LLUDPSERVER]: OutgoingPacketHandler iteration for {0} threw ", client.Name), ex); } } #region Emergency Monitoring // Alternative packet handler fuull of instrumentation // Handy for hunting bugs protected Stopwatch watch1 = new Stopwatch(); protected Stopwatch watch2 = new Stopwatch(); protected float avgProcessingTicks = 0; protected float avgResendUnackedTicks = 0; protected float avgSendAcksTicks = 0; protected float avgSendPingTicks = 0; protected float avgDequeueTicks = 0; protected long nticks = 0; protected long nticksUnack = 0; protected long nticksAck = 0; protected long nticksPing = 0; protected int npacksSent = 0; protected int npackNotSent = 0; /// /// Number of inbound packets processed since startup. /// public long IncomingPacketsProcessed { get; protected set; } #endregion protected void ProcessInPacket(IncomingPacket incomingPacket) { Packet packet = incomingPacket.Packet; LLClientView client = incomingPacket.Client; if(!client.IsActive) return; try { // Process this packet client.ProcessInPacket(packet); } catch(ThreadAbortException) { // If something is trying to abort the packet processing thread, take that as a hint that it's time to shut down m_log.Info("[LLUDPSERVER]: Caught a thread abort, shutting down the LLUDP server"); Stop(); } catch(Exception e) { // Don't let a failure in an individual client thread crash the whole sim. m_log.Error( string.Format( "[LLUDPSERVER]: Client packet handler for {0} for packet {1} threw ", client.Name,packet.Type), e); } IncomingPacketsProcessed++; } protected void LogoutHandler(IClientAPI client) { client.SendLogoutPacket(); if (!client.IsLoggingOut) { client.IsLoggingOut = true; Scene.CloseAgent(client.AgentId, false); } } } }