aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-09-26Change some message log levels in Scene.IncomingUpdateChildAgent() for ↵Justin Clark-Casey (justincc)1-3/+3
debugging purposes
2013-09-26Revert "Also check user authorization if looking to upgrade from a child to ↵Justin Clark-Casey (justincc)1-13/+0
a root agent." This reverts commit c7ded0618c303f8c24a91c83c2129292beebe466. This proves not to be necessary - the necessary checks are already being done via QueryAccess() before cross or teleport
2013-09-26Create regression TestCrossOnSameSimulatorNoRootDestPerm() to check that ↵Justin Clark-Casey (justincc)1-1/+2
avatars are not allowed to cross into a neighbour where they are not authorized, even if a child agent was allowed.
2013-09-26refactor: rename *ChildAgentDataUpdate() methods to *UpdateChildAgent()Justin Clark-Casey (justincc)1-4/+4
verb-noun is consistent with other similar methods
2013-09-26minor: Make log message when Scene.IncomingChildAgentDateUpdate() more ↵Justin Clark-Casey (justincc)1-3/+8
explicit that there is a problem if it still finds the agent to be a child if the sender wanted to wait till it became root Add some comments about the mssage sequence, though much more data is at http://opensimulator.org/wiki/Teleports
2013-09-05Restore group membership check for HG users in QueryAccess.Diva Canto1-5/+1
2013-09-02Fix bug where users teleporting to non-neighbour regions could continue to ↵Justin Clark-Casey (justincc)1-5/+54
hear chat from their source region for some time after teleport completion. This occurs on v2 teleport since the source region now waits 15 secs before closing the old child agent, which could still receive chat. This commit introduces a ScenePresenceState.PreClose which is set before the wait, so that ChatModule can check for ScenePresenceState.Running. This was theoretically also an issue on v1 teleport but since the pause before close was only 2 secs there, it was not noticed.
2013-09-02Comment out warning about agent updating without valid session ID for now.Justin Clark-Casey (justincc)1-4/+4
This causes extreme console spam if a simulator running latest master and one running 0.7.5 have adjacent regions occupied by avatars.
2013-08-27Also check user authorization if looking to upgrade from a child to a root ↵Justin Clark-Casey (justincc)1-0/+13
agent. Relevant if a child agent has been allowed into the region which should not be upgraded to a root agent.
2013-08-26Potential fix for access control bug on login introduced with SeeIntoRegion ↵Diva Canto1-1/+1
commit.
2013-08-26For a Hypergrid user, delay estate access checks until NewUserConnection() ↵Justin Clark-Casey (justincc)1-2/+6
so that they work. This is necessary because the hypergrid groups checks (as referenced by estates) require an agent circuit to be present to construct the hypergrid ID. However, this is not around until Scene.NewUserConnection(), as called by CreateAgent() in EntityTransferModule. Therefore, if we're dealing with a hypergrid user, delay the check until NewUserConnection()/CreateAgent() The entity transfer impact should be minimal since CreateAgent() is the next significant call after NewUserConnection() However, to preserve the accuracy of query access we will only relax the check for HG users.
2013-08-22Stop error messages being misleadingly generated when on client connection ↵Justin Clark-Casey (justincc)1-2/+19
activity timeout, a root connection triggers a CloseAgent to a neighbour region which has already closed the agent due to inactivity. Also separates out log messages to distinguish between close not finding an agent and wrong auth token, and downgrades former to debug and latter to warn
2013-08-15Rely on the Scene.IncomingCloseAgent() check as to whether the connection ↵Justin Clark-Casey (justincc)1-1/+1
should be kept open after teleport-end rather than doing this in the ET Module This is safer since the close check in IncomingCloseAgent() is done under lock conditions, which prevents a race between ETM and Scene.AddClient()
2013-08-15Do not use the SP.DoNotCloseAfterTeleport flag for child agent connections.Justin Clark-Casey (justincc)1-11/+20
This approach has problems if a client quits without sending a proper logout but then reconnects before the connection is closed due to inactivity. In this case, the DoNotCloseAfterTeleport was wrongly set. The simplest approach is to close child agents on teleport as quickly as possible so that races are very unlikely to occur Hence, this code now closes child agents as the first action after a sucessful teleport.
2013-08-14Add method doc to Scene.RemoveClient() to ask any callers to use ↵Justin Clark-Casey (justincc)1-0/+12
Scene.IncomingCloseAgent() instead. IncomingCloseAgent() now sets the scene presence state machine properly, which is necessary to avoid races between multiple sources of close. Hence, it's also necessary for everyone to consistently call IncomingCloseAgent() Calling RemoveClient() directly is currently generating an attention-grabbing exception though this right now this is harmless.
2013-08-09Go easy on enforcing session ids in position updatesDiva Canto1-16/+17
2013-08-09Fix an issue with an A->C->B->A teleport where these regions are in a row ↵Justin Clark-Casey (justincc)1-0/+8
(A,B,C) where the A root agent is still closed, terminating the connection. This was occuring because teleport to B did not set DoNotCloseAfterTeleport on A as it was a neighbour (where it isn't set to avoid the issue where the source region doesn't send Close() to regions that are still neighbours (hence not resetting DoNotCloseAfterTeleport). Fix here is to still set DoNotCloseAfterTeleport if scene presence is still registered as in transit from A
2013-08-08Fix an issue where under teleport v2 protocol, teleporting from regions in ↵Justin Clark-Casey (justincc)1-112/+196
an line from A->B->C would not close region A when reaching C The root cause was that v2 was only closing neighbour agents if the root connection also needed a close. However, fixing this requires the neighbour regions also detect when they should not close due to re-teleports re-establishing the child connection. This involves restructuring the code to introduce a scene presence state machine that can serialize the different add and remove client calls that are now possible with the late close of the This commit appears to fix these issues and improve teleport, but still has holes on at least quick reteleporting (and possibly occasionally on ordinary teleports). Also, has not been completely tested yet in scenarios where regions are running on different simulators
2013-08-07minor: add some method doc to ScenePresence fields used for entity transfer, ↵Justin Clark-Casey (justincc)1-10/+16
add minor details to some log messages, rename a misleading local variable name. No functional changes.
2013-08-07Fixed incomplete commit r/23317 -- see_into_region. Put the guard around ↵Diva Canto1-16/+16
estate bans also, and delete the obsolete config var.
2013-07-26Comment debug messageDiva Canto1-2/+2
2013-07-25This should fix all issues with teleports. One should be able to TP as fast ↵Diva Canto1-32/+29
as needed. (Although sometimes Justin's state machine kicks in and doesn't let you) The EventQueues are a hairy mess, and it's very easy to mess things up. But it looks like this commit makes them work right. Here's what's going on: - Child and root agents are only closed after 15 sec, maybe - If the user comes back, they aren't closed, and everything is reused - On the receiving side, clients and scene presences are reused if they already exist - Caps are always recreated (this is where I spent most of my time!). It turns out that, because the agents carry the seeds around, the seed gets the same URL, except for the root agent coming back to a far away region, which gets a new seed (because we don't know what was its seed in the departing region, and we can't send it back to the client when the agent returns there).
2013-07-26Reset DoNotClose scene presence teleport flag before pausing. Rename ↵Justin Clark-Casey (justincc)1-1/+1
DoNotClose to DoNotCloseAfterTeleport
2013-07-26If a returning teleport starts to reuse a downgraded child connection that ↵Justin Clark-Casey (justincc)1-11/+18
was a previous root agent, do not close that child agent at the end of the 15 sec teleport timer. This prevents an issue if the user teleports back to the neighbour simulator of a source before 15 seconds have elapsed. This more closely emulates observed linden behaviour, though the timeout there is 50 secs and applies to all the pre-teleport agents. Currently sticks a DoNotClose flag on ScenePresence though this may be temporary as possibly it could be incorporated into the ETM state machine
2013-07-24Minor adjustment on timings of waits.Diva Canto1-2/+2
2013-07-24New Teleport protocol (V2), still compatible with V1 and older. (version of ↵Diva Canto1-4/+14
the destination is being checked) In this new protocol, and as committed before, the viewer is not sent EnableSimulator/EstablishChildCommunication for the destination. Instead, it is sent TeleportFinish directly. TeleportFinish, in turn, makes the viewer send a UserCircuitCode packet followed by CompleteMovementIntoRegion packet. These 2 packets tend to occur one after the other almost immediately to the point that when CMIR arrives the client is not even connected yet and that packet is ignored (there might have been some race conditions here before); then the viewer sends CMIR again within 5-8 secs. But the delay between them may be higher in busier regions, which may lead to race conditions. This commit improves the process so there are are no race conditions at the destination. CompleteMovement (triggered by the viewer) waits until Update has been sent from the origin. Update, in turn, waits until there is a *root* scene presence -- so making sure CompleteMovement has run MakeRoot. In other words, there are two threadlets at the destination, one from the viewer and one from the origin region, waiting for each other to do the right thing. That makes it safe to close the agent at the origin upon return of the Update call without having to wait for callback, because we are absolutely sure that the viewer knows it is in th new region. Note also that in the V1 protocol, the destination was getting UseCircuitCode from the viewer twice -- once on EstablishAgentCommunication and then again on TeleportFinish. The second UCC was being ignored, but it shows how we were not following the expected steps...
2013-07-24Further tweaks on TPs: not sending the callback URL and instead waiting ↵Diva Canto1-1/+1
15sec before closing the agent. This seems to be working fairly well. The viewer seems to have an 8 sec delay between UseCircuitCode and CompleteMovement. Also added back the position on UpdateAgent, because it's needed for TPing between neighboring regions.
2013-07-24Amend previous commit.Diva Canto1-4/+4
2013-07-24Added config var that we all thought was already there: see_into_region. ↵Diva Canto1-34/+45
(Note: different from the defunct see_into_neighboring_sim, which used to control the process from the other end). This enables child agents in neighbors for which the root agent doesn't have permission to be in.
2013-07-14Let's go easy on authenticating ChildAgentUpdates, otherwise this will be ↵Diva Canto1-7/+5
chaotic while ppl are using different versions of opensim. Warning only, but no enforcement.
2013-07-14Authenticate ChildAgentUpdate too.Diva Canto1-15/+27
2013-07-14Change the auth token to be the user's sessionid.Diva Canto1-2/+2
2013-07-13This should fix the failing test.Diva Canto1-2/+1
2013-07-13Deleted a line too manyDiva Canto1-0/+3
2013-07-13Guard against unauthorized agent deletes.Diva Canto1-5/+21
2013-07-09Put guards on a bunch of exception-inducing code, as seen in logs from load ↵Diva Canto1-1/+3
test.
2013-07-04Throttle the viewer's requests for region handles. Apparently Kokua is ↵Diva Canto1-18/+0
requesting this for all landmarks in inventory. Not sure why. But this seems to be the root cause of the login freeze mentioned before. This commit adds a blocking queue / process thread pattern.
2013-07-04Debug the RegionHandle handler (same issue)Diva Canto1-0/+1
2013-06-06Hook up Keyframe motion to almost everything. Failing to cross a sim borderMelanie1-0/+9
may yield unexpected results in some cases. No database persistence yet,
2013-05-30Add region heartbeat start event to complement heartbeat end event.Robert Adams1-0/+2
This allows object modification before the usual heartbeat operation.
2013-05-29Try caching the user name for a new agent earlier on in the process of ↵Justin Clark-Casey (justincc)1-3/+9
establishing a connection, to see if this helps with "Unknown UserUMMTGUN" issues. The UMMTGUN form of Unknown User seems to appear because a viewer sometimes sends a UUIDNameRequest UDP request that fails to find a binding. However, in theory the incoming agent should have made that binding before any such request is triggered. So moving this binding to an earlier point in the process to see if this makes a difference. Unknown user name is also updated to UserUMMTGUN2 - if you see the old name then you need to clear your viewer cache. This relates to http://opensimulator.org/mantis/view.php?id=6625
2013-05-16On closing child agents, send separate asynchronous requests to each ↵Justin Clark-Casey (justincc)1-2/+2
neighbour rather than sending all closes concurrently on a separate thread. This is to reduce race conditions where neighbours may be responding erratically, thus mixing up create and close agent requests in time. This mirrors OpenSimulator behaviour on enabling child agents where each region is contacted separately.
2013-05-16On logout, send close child agent requests to neighbours asynchronously, so ↵Justin Clark-Casey (justincc)1-6/+3
user is not prevented from relogging if many neighbours are present but not responsive. The symptom here is that previous user connections are still present but are labelled active == false
2013-05-11Finalize the logic for SetHome. See comments in Land/LandManagementModule.cs ↵Diva Canto1-19/+0
about who has permission to set home where.
2013-05-11Send up the part missing from the Avination Estate commit.Melanie1-2/+0
Warning - contains a small migration.
2013-05-09remove pointless region handle paramter from IClientAPI.SendKillObject()Justin Clark-Casey (justincc)1-2/+3
2013-05-07Step one of estate settings sharing - port the Avination Estate module ↵Melanie1-2/+3
(complete module) as changes are too extensive to apply manually
2013-05-06Minor reordering of operations on NewUserConnection. The agent circuit needs ↵Diva Canto1-5/+17
to be added earlier for some of the checks to work correctly.
2013-05-03On startup, start scenes after we're set up all local scenes, rather than ↵Justin Clark-Casey (justincc)1-2/+14
starting scenes before others have been created. This aims to avoid a race condition where scenes could look to inform neighbours that they were up before those neighbours had been created. http://opensimulator.org/mantis/view.php?id=6618
2013-04-29Some more pieces of Avination's ban system - if an avatar isn't allowed on anyMelanie1-7/+88
parcel in the sim, keep them out entirely.