123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997 |
- /*
- * 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;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Reflection;
- using System.Text.RegularExpressions;
- using log4net;
- using Nini.Config;
- using OpenMetaverse;
- using OpenSim.Framework;
- using OpenSim.Framework.Console;
- using OpenSim.Server.Base;
- using OpenSim.Services.Interfaces;
- using GridRegion = OpenSim.Services.Interfaces.GridRegion;
- using FriendInfo = OpenSim.Services.Interfaces.FriendInfo;
- using OpenSim.Services.Connectors.Hypergrid;
- namespace OpenSim.Services.LLLoginService
- {
- public class LLLoginService : ILoginService
- {
- private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- private static bool Initialized = false;
- protected IUserAccountService m_UserAccountService;
- protected IGridUserService m_GridUserService;
- protected IAuthenticationService m_AuthenticationService;
- protected IInventoryService m_InventoryService;
- protected IGridService m_GridService;
- protected IPresenceService m_PresenceService;
- protected ISimulationService m_LocalSimulationService;
- protected ISimulationService m_RemoteSimulationService;
- protected ILibraryService m_LibraryService;
- protected IFriendsService m_FriendsService;
- protected IAvatarService m_AvatarService;
- protected IUserAgentService m_UserAgentService;
- protected GatekeeperServiceConnector m_GatekeeperConnector;
- protected string m_DefaultRegionName;
- protected string m_WelcomeMessage;
- protected bool m_RequireInventory;
- protected int m_MinLoginLevel;
- protected string m_GatekeeperURL;
- protected bool m_AllowRemoteSetLoginLevel;
- protected string m_MapTileURL;
- protected string m_ProfileURL;
- protected string m_OpenIDURL;
- protected string m_SearchURL;
- protected string m_Currency;
- protected string m_ClassifiedFee;
- protected string m_DestinationGuide;
- protected string m_AvatarPicker;
- protected string m_AllowedClients;
- protected string m_DeniedClients;
- protected string m_DSTZone;
- IConfig m_LoginServerConfig;
- // IConfig m_ClientsConfig;
- public LLLoginService(IConfigSource config, ISimulationService simService, ILibraryService libraryService)
- {
- m_LoginServerConfig = config.Configs["LoginService"];
- if (m_LoginServerConfig == null)
- throw new Exception(String.Format("No section LoginService in config file"));
- string accountService = m_LoginServerConfig.GetString("UserAccountService", String.Empty);
- string gridUserService = m_LoginServerConfig.GetString("GridUserService", String.Empty);
- string agentService = m_LoginServerConfig.GetString("UserAgentService", String.Empty);
- string authService = m_LoginServerConfig.GetString("AuthenticationService", String.Empty);
- string invService = m_LoginServerConfig.GetString("InventoryService", String.Empty);
- string gridService = m_LoginServerConfig.GetString("GridService", String.Empty);
- string presenceService = m_LoginServerConfig.GetString("PresenceService", String.Empty);
- string libService = m_LoginServerConfig.GetString("LibraryService", String.Empty);
- string friendsService = m_LoginServerConfig.GetString("FriendsService", String.Empty);
- string avatarService = m_LoginServerConfig.GetString("AvatarService", String.Empty);
- string simulationService = m_LoginServerConfig.GetString("SimulationService", String.Empty);
- m_DefaultRegionName = m_LoginServerConfig.GetString("DefaultRegion", String.Empty);
- m_WelcomeMessage = m_LoginServerConfig.GetString("WelcomeMessage", "Welcome to OpenSim!");
- m_RequireInventory = m_LoginServerConfig.GetBoolean("RequireInventory", true);
- m_AllowRemoteSetLoginLevel = m_LoginServerConfig.GetBoolean("AllowRemoteSetLoginLevel", false);
- m_MinLoginLevel = m_LoginServerConfig.GetInt("MinLoginLevel", 0);
- m_GatekeeperURL = Util.GetConfigVarFromSections<string>(config, "GatekeeperURI",
- new string[] { "Startup", "Hypergrid", "LoginService" }, String.Empty);
- m_MapTileURL = m_LoginServerConfig.GetString("MapTileURL", string.Empty);
- m_ProfileURL = m_LoginServerConfig.GetString("ProfileServerURL", string.Empty);
- m_OpenIDURL = m_LoginServerConfig.GetString("OpenIDServerURL", String.Empty);
- m_SearchURL = m_LoginServerConfig.GetString("SearchURL", string.Empty);
- m_Currency = m_LoginServerConfig.GetString("Currency", string.Empty);
- m_ClassifiedFee = m_LoginServerConfig.GetString("ClassifiedFee", string.Empty);
- m_DestinationGuide = m_LoginServerConfig.GetString ("DestinationGuide", string.Empty);
- m_AvatarPicker = m_LoginServerConfig.GetString ("AvatarPicker", string.Empty);
- m_AllowedClients = m_LoginServerConfig.GetString("AllowedClients", string.Empty);
- m_DeniedClients = m_LoginServerConfig.GetString("DeniedClients", string.Empty);
- m_DSTZone = m_LoginServerConfig.GetString("DSTZone", "America/Los_Angeles;Pacific Standard Time");
- // Clean up some of these vars
- if (m_MapTileURL != String.Empty)
- {
- m_MapTileURL = m_MapTileURL.Trim();
- if (!m_MapTileURL.EndsWith("/"))
- m_MapTileURL = m_MapTileURL + "/";
- }
- // These are required; the others aren't
- if (accountService == string.Empty || authService == string.Empty)
- throw new Exception("LoginService is missing service specifications");
- // replace newlines in welcome message
- m_WelcomeMessage = m_WelcomeMessage.Replace("\\n", "\n");
- Object[] args = new Object[] { config };
- m_UserAccountService = ServerUtils.LoadPlugin<IUserAccountService>(accountService, args);
- m_GridUserService = ServerUtils.LoadPlugin<IGridUserService>(gridUserService, args);
- m_AuthenticationService = ServerUtils.LoadPlugin<IAuthenticationService>(authService, args);
- m_InventoryService = ServerUtils.LoadPlugin<IInventoryService>(invService, args);
- if (gridService != string.Empty)
- m_GridService = ServerUtils.LoadPlugin<IGridService>(gridService, args);
- if (presenceService != string.Empty)
- m_PresenceService = ServerUtils.LoadPlugin<IPresenceService>(presenceService, args);
- if (avatarService != string.Empty)
- m_AvatarService = ServerUtils.LoadPlugin<IAvatarService>(avatarService, args);
- if (friendsService != string.Empty)
- m_FriendsService = ServerUtils.LoadPlugin<IFriendsService>(friendsService, args);
- if (simulationService != string.Empty)
- m_RemoteSimulationService = ServerUtils.LoadPlugin<ISimulationService>(simulationService, args);
- if (agentService != string.Empty)
- m_UserAgentService = ServerUtils.LoadPlugin<IUserAgentService>(agentService, args);
- //
- // deal with the services given as argument
- //
- m_LocalSimulationService = simService;
- if (libraryService != null)
- {
- m_log.DebugFormat("[LLOGIN SERVICE]: Using LibraryService given as argument");
- m_LibraryService = libraryService;
- }
- else if (libService != string.Empty)
- {
- m_log.DebugFormat("[LLOGIN SERVICE]: Using instantiated LibraryService");
- m_LibraryService = ServerUtils.LoadPlugin<ILibraryService>(libService, args);
- }
- m_GatekeeperConnector = new GatekeeperServiceConnector();
- if (!Initialized)
- {
- Initialized = true;
- RegisterCommands();
- }
- m_log.DebugFormat("[LLOGIN SERVICE]: Starting...");
- }
- public LLLoginService(IConfigSource config) : this(config, null, null)
- {
- }
- public Hashtable SetLevel(string firstName, string lastName, string passwd, int level, IPEndPoint clientIP)
- {
- Hashtable response = new Hashtable();
- response["success"] = "false";
- if (!m_AllowRemoteSetLoginLevel)
- return response;
- try
- {
- UserAccount account = m_UserAccountService.GetUserAccount(UUID.Zero, firstName, lastName);
- if (account == null)
- {
- m_log.InfoFormat("[LLOGIN SERVICE]: Set Level failed, user {0} {1} not found", firstName, lastName);
- return response;
- }
- if (account.UserLevel < 200)
- {
- m_log.InfoFormat("[LLOGIN SERVICE]: Set Level failed, reason: user level too low");
- return response;
- }
- //
- // Authenticate this user
- //
- // We don't support clear passwords here
- //
- string token = m_AuthenticationService.Authenticate(account.PrincipalID, passwd, 30);
- UUID secureSession = UUID.Zero;
- if ((token == string.Empty) || (token != string.Empty && !UUID.TryParse(token, out secureSession)))
- {
- m_log.InfoFormat("[LLOGIN SERVICE]: SetLevel failed, reason: authentication failed");
- return response;
- }
- }
- catch (Exception e)
- {
- m_log.Error("[LLOGIN SERVICE]: SetLevel failed, exception " + e.ToString());
- return response;
- }
- m_MinLoginLevel = level;
- m_log.InfoFormat("[LLOGIN SERVICE]: Login level set to {0} by {1} {2}", level, firstName, lastName);
- response["success"] = true;
- return response;
- }
- public LoginResponse Login(string firstName, string lastName, string passwd, string startLocation, UUID scopeID,
- string clientVersion, string channel, string mac, string id0, IPEndPoint clientIP)
- {
- bool success = false;
- UUID session = UUID.Random();
- m_log.InfoFormat("[LLOGIN SERVICE]: Login request for {0} {1} at {2} using viewer {3}, channel {4}, IP {5}, Mac {6}, Id0 {7}",
- firstName, lastName, startLocation, clientVersion, channel, clientIP.Address.ToString(), mac, id0);
-
- try
- {
- //
- // Check client
- //
- if (m_AllowedClients != string.Empty)
- {
- Regex arx = new Regex(m_AllowedClients);
- Match am = arx.Match(clientVersion);
- if (!am.Success)
- {
- m_log.InfoFormat(
- "[LLOGIN SERVICE]: Login failed for {0} {1}, reason: client {2} is not allowed",
- firstName, lastName, clientVersion);
- return LLFailedLoginResponse.LoginBlockedProblem;
- }
- }
- if (m_DeniedClients != string.Empty)
- {
- Regex drx = new Regex(m_DeniedClients);
- Match dm = drx.Match(clientVersion);
- if (dm.Success)
- {
- m_log.InfoFormat(
- "[LLOGIN SERVICE]: Login failed for {0} {1}, reason: client {2} is denied",
- firstName, lastName, clientVersion);
- return LLFailedLoginResponse.LoginBlockedProblem;
- }
- }
- //
- // Get the account and check that it exists
- //
- UserAccount account = m_UserAccountService.GetUserAccount(scopeID, firstName, lastName);
- if (account == null)
- {
- m_log.InfoFormat(
- "[LLOGIN SERVICE]: Login failed for {0} {1}, reason: user not found", firstName, lastName);
- return LLFailedLoginResponse.UserProblem;
- }
- if (account.UserLevel < m_MinLoginLevel)
- {
- m_log.InfoFormat(
- "[LLOGIN SERVICE]: Login failed for {0} {1}, reason: user level is {2} but minimum login level is {3}",
- firstName, lastName, account.UserLevel, m_MinLoginLevel);
- return LLFailedLoginResponse.LoginBlockedProblem;
- }
- // If a scope id is requested, check that the account is in
- // that scope, or unscoped.
- //
- if (scopeID != UUID.Zero)
- {
- if (account.ScopeID != scopeID && account.ScopeID != UUID.Zero)
- {
- m_log.InfoFormat(
- "[LLOGIN SERVICE]: Login failed, reason: user {0} {1} not found", firstName, lastName);
- return LLFailedLoginResponse.UserProblem;
- }
- }
- else
- {
- scopeID = account.ScopeID;
- }
- //
- // Authenticate this user
- //
- if (!passwd.StartsWith("$1$"))
- passwd = "$1$" + Util.Md5Hash(passwd);
- passwd = passwd.Remove(0, 3); //remove $1$
- string token = m_AuthenticationService.Authenticate(account.PrincipalID, passwd, 30);
- UUID secureSession = UUID.Zero;
- if ((token == string.Empty) || (token != string.Empty && !UUID.TryParse(token, out secureSession)))
- {
- m_log.InfoFormat(
- "[LLOGIN SERVICE]: Login failed for {0} {1}, reason: authentication failed",
- firstName, lastName);
- return LLFailedLoginResponse.UserProblem;
- }
- //
- // Get the user's inventory
- //
- if (m_RequireInventory && m_InventoryService == null)
- {
- m_log.WarnFormat(
- "[LLOGIN SERVICE]: Login failed for {0} {1}, reason: inventory service not set up",
- firstName, lastName);
- return LLFailedLoginResponse.InventoryProblem;
- }
- List<InventoryFolderBase> inventorySkel = m_InventoryService.GetInventorySkeleton(account.PrincipalID);
- if (m_RequireInventory && ((inventorySkel == null) || (inventorySkel != null && inventorySkel.Count == 0)))
- {
- m_log.InfoFormat(
- "[LLOGIN SERVICE]: Login failed, for {0} {1}, reason: unable to retrieve user inventory",
- firstName, lastName);
- return LLFailedLoginResponse.InventoryProblem;
- }
- // Get active gestures
- List<InventoryItemBase> gestures = m_InventoryService.GetActiveGestures(account.PrincipalID);
- // m_log.DebugFormat("[LLOGIN SERVICE]: {0} active gestures", gestures.Count);
- //
- // Login the presence
- //
- if (m_PresenceService != null)
- {
- success = m_PresenceService.LoginAgent(account.PrincipalID.ToString(), session, secureSession);
- if (!success)
- {
- m_log.InfoFormat(
- "[LLOGIN SERVICE]: Login failed for {0} {1}, reason: could not login presence",
- firstName, lastName);
- return LLFailedLoginResponse.GridProblem;
- }
- }
- //
- // Change Online status and get the home region
- //
- GridRegion home = null;
- GridUserInfo guinfo = m_GridUserService.LoggedIn(account.PrincipalID.ToString());
- if (guinfo != null && (guinfo.HomeRegionID != UUID.Zero) && m_GridService != null)
- {
- home = m_GridService.GetRegionByUUID(scopeID, guinfo.HomeRegionID);
- }
- if (guinfo == null)
- {
- // something went wrong, make something up, so that we don't have to test this anywhere else
- guinfo = new GridUserInfo();
- guinfo.LastPosition = guinfo.HomePosition = new Vector3(128, 128, 30);
- }
-
- //
- // Find the destination region/grid
- //
- string where = string.Empty;
- Vector3 position = Vector3.Zero;
- Vector3 lookAt = Vector3.Zero;
- GridRegion gatekeeper = null;
- TeleportFlags flags;
- GridRegion destination = FindDestination(account, scopeID, guinfo, session, startLocation, home, out gatekeeper, out where, out position, out lookAt, out flags);
- if (destination == null)
- {
- m_PresenceService.LogoutAgent(session);
- m_log.InfoFormat(
- "[LLOGIN SERVICE]: Login failed for {0} {1}, reason: destination not found",
- firstName, lastName);
- return LLFailedLoginResponse.GridProblem;
- }
- else
- {
- m_log.DebugFormat(
- "[LLOGIN SERVICE]: Found destination {0}, endpoint {1} for {2} {3}",
- destination.RegionName, destination.ExternalEndPoint, firstName, lastName);
- }
- if (account.UserLevel >= 200)
- flags |= TeleportFlags.Godlike;
- //
- // Get the avatar
- //
- AvatarAppearance avatar = null;
- if (m_AvatarService != null)
- {
- avatar = m_AvatarService.GetAppearance(account.PrincipalID);
- }
- //
- // Instantiate/get the simulation interface and launch an agent at the destination
- //
- string reason = string.Empty;
- GridRegion dest;
- AgentCircuitData aCircuit = LaunchAgentAtGrid(gatekeeper, destination, account, avatar, session, secureSession, position, where,
- clientVersion, channel, mac, id0, clientIP, flags, out where, out reason, out dest);
- destination = dest;
- if (aCircuit == null)
- {
- m_PresenceService.LogoutAgent(session);
- m_log.InfoFormat("[LLOGIN SERVICE]: Login failed for {0} {1}, reason: {2}", firstName, lastName, reason);
- return new LLFailedLoginResponse("key", reason, "false");
- }
- // Get Friends list
- FriendInfo[] friendsList = new FriendInfo[0];
- if (m_FriendsService != null)
- {
- friendsList = m_FriendsService.GetFriends(account.PrincipalID);
- // m_log.DebugFormat("[LLOGIN SERVICE]: Retrieved {0} friends", friendsList.Length);
- }
- //
- // Finally, fill out the response and return it
- //
- LLLoginResponse response
- = new LLLoginResponse(
- account, aCircuit, guinfo, destination, inventorySkel, friendsList, m_LibraryService,
- where, startLocation, position, lookAt, gestures, m_WelcomeMessage, home, clientIP,
- m_MapTileURL, m_ProfileURL, m_OpenIDURL, m_SearchURL, m_Currency, m_DSTZone,
- m_DestinationGuide, m_AvatarPicker, m_ClassifiedFee);
- m_log.DebugFormat("[LLOGIN SERVICE]: All clear. Sending login response to {0} {1}", firstName, lastName);
- return response;
- }
- catch (Exception e)
- {
- m_log.WarnFormat("[LLOGIN SERVICE]: Exception processing login for {0} {1}: {2} {3}", firstName, lastName, e.ToString(), e.StackTrace);
- if (m_PresenceService != null)
- m_PresenceService.LogoutAgent(session);
- return LLFailedLoginResponse.InternalError;
- }
- }
- protected GridRegion FindDestination(
- UserAccount account, UUID scopeID, GridUserInfo pinfo, UUID sessionID, string startLocation,
- GridRegion home, out GridRegion gatekeeper,
- out string where, out Vector3 position, out Vector3 lookAt, out TeleportFlags flags)
- {
- flags = TeleportFlags.ViaLogin;
- m_log.DebugFormat(
- "[LLOGIN SERVICE]: Finding destination matching start location {0} for {1}",
- startLocation, account.Name);
- gatekeeper = null;
- where = "home";
- position = new Vector3(128, 128, 0);
- lookAt = new Vector3(0, 1, 0);
- if (m_GridService == null)
- return null;
- if (startLocation.Equals("home"))
- {
- // logging into home region
- if (pinfo == null)
- return null;
- GridRegion region = null;
- bool tryDefaults = false;
- if (home == null)
- {
- m_log.WarnFormat(
- "[LLOGIN SERVICE]: User {0} {1} tried to login to a 'home' start location but they have none set",
- account.FirstName, account.LastName);
-
- tryDefaults = true;
- }
- else
- {
- region = home;
- position = pinfo.HomePosition;
- lookAt = pinfo.HomeLookAt;
- flags |= TeleportFlags.ViaHome;
- }
-
- if (tryDefaults)
- {
- List<GridRegion> defaults = m_GridService.GetDefaultRegions(scopeID);
- if (defaults != null && defaults.Count > 0)
- {
- region = defaults[0];
- where = "safe";
- }
- else
- {
- m_log.WarnFormat("[LLOGIN SERVICE]: User {0} {1} does not have a valid home and this grid does not have default locations. Attempting to find random region",
- account.FirstName, account.LastName);
- region = FindAlternativeRegion(scopeID);
- if (region != null)
- where = "safe";
- }
- }
- return region;
- }
- else if (startLocation.Equals("last"))
- {
- // logging into last visited region
- where = "last";
- if (pinfo == null)
- return null;
- GridRegion region = null;
- if (pinfo.LastRegionID.Equals(UUID.Zero) || (region = m_GridService.GetRegionByUUID(scopeID, pinfo.LastRegionID)) == null)
- {
- List<GridRegion> defaults = m_GridService.GetDefaultRegions(scopeID);
- if (defaults != null && defaults.Count > 0)
- {
- region = defaults[0];
- where = "safe";
- }
- else
- {
- m_log.Info("[LLOGIN SERVICE]: Last Region Not Found Attempting to find random region");
- region = FindAlternativeRegion(scopeID);
- if (region != null)
- where = "safe";
- }
- }
- else
- {
- position = pinfo.LastPosition;
- lookAt = pinfo.LastLookAt;
- }
-
- return region;
- }
- else
- {
- flags |= TeleportFlags.ViaRegionID;
- // free uri form
- // e.g. New Moon&135&46 New [email protected]:8002&153&34
- where = "url";
- GridRegion region = null;
- Regex reURI = new Regex(@"^uri:(?<region>[^&]+)&(?<x>\d+)&(?<y>\d+)&(?<z>\d+)$");
- Match uriMatch = reURI.Match(startLocation);
- if (uriMatch == null)
- {
- m_log.InfoFormat("[LLLOGIN SERVICE]: Got Custom Login URI {0}, but can't process it", startLocation);
- return null;
- }
- else
- {
- position = new Vector3(float.Parse(uriMatch.Groups["x"].Value, Culture.NumberFormatInfo),
- float.Parse(uriMatch.Groups["y"].Value, Culture.NumberFormatInfo),
- float.Parse(uriMatch.Groups["z"].Value, Culture.NumberFormatInfo));
- string regionName = uriMatch.Groups["region"].ToString();
- if (regionName != null)
- {
- if (!regionName.Contains("@"))
- {
- List<GridRegion> regions = m_GridService.GetRegionsByName(scopeID, regionName, 1);
- if ((regions == null) || (regions != null && regions.Count == 0))
- {
- m_log.InfoFormat("[LLLOGIN SERVICE]: Got Custom Login URI {0}, can't locate region {1}. Trying defaults.", startLocation, regionName);
- regions = m_GridService.GetDefaultRegions(scopeID);
- if (regions != null && regions.Count > 0)
- {
- where = "safe";
- return regions[0];
- }
- else
- {
- m_log.Info("[LLOGIN SERVICE]: Last Region Not Found Attempting to find random region");
- region = FindAlternativeRegion(scopeID);
- if (region != null)
- {
- where = "safe";
- return region;
- }
- else
- {
- m_log.InfoFormat("[LLLOGIN SERVICE]: Got Custom Login URI {0}, Grid does not provide default regions and no alternative found.", startLocation);
- return null;
- }
- }
- }
- return regions[0];
- }
- else
- {
- if (m_UserAgentService == null)
- {
- m_log.WarnFormat("[LLLOGIN SERVICE]: This llogin service is not running a user agent service, as such it can't lauch agents at foreign grids");
- return null;
- }
- string[] parts = regionName.Split(new char[] { '@' });
- if (parts.Length < 2)
- {
- m_log.InfoFormat("[LLLOGIN SERVICE]: Got Custom Login URI {0}, can't locate region {1}", startLocation, regionName);
- return null;
- }
- // Valid specification of a remote grid
-
- regionName = parts[0];
- string domainLocator = parts[1];
- parts = domainLocator.Split(new char[] {':'});
- string domainName = parts[0];
- uint port = 0;
- if (parts.Length > 1)
- UInt32.TryParse(parts[1], out port);
- // GridRegion region = FindForeignRegion(domainName, port, regionName, out gatekeeper);
- region = FindForeignRegion(domainName, port, regionName, out gatekeeper);
- return region;
- }
- }
- else
- {
- List<GridRegion> defaults = m_GridService.GetDefaultRegions(scopeID);
- if (defaults != null && defaults.Count > 0)
- {
- where = "safe";
- return defaults[0];
- }
- else
- return null;
- }
- }
- //response.LookAt = "[r0,r1,r0]";
- //// can be: last, home, safe, url
- //response.StartLocation = "url";
- }
- }
- private GridRegion FindAlternativeRegion(UUID scopeID)
- {
- List<GridRegion> hyperlinks = null;
- List<GridRegion> regions = m_GridService.GetFallbackRegions(scopeID, 1000 * (int)Constants.RegionSize, 1000 * (int)Constants.RegionSize);
- if (regions != null && regions.Count > 0)
- {
- hyperlinks = m_GridService.GetHyperlinks(scopeID);
- IEnumerable<GridRegion> availableRegions = regions.Except(hyperlinks);
- if (availableRegions.Count() > 0)
- return availableRegions.ElementAt(0);
- }
- // No fallbacks, try to find an arbitrary region that is not a hyperlink
- // maxNumber is fixed for now; maybe use some search pattern with increasing maxSize here?
- regions = m_GridService.GetRegionsByName(scopeID, "", 10);
- if (regions != null && regions.Count > 0)
- {
- if (hyperlinks == null)
- hyperlinks = m_GridService.GetHyperlinks(scopeID);
- IEnumerable<GridRegion> availableRegions = regions.Except(hyperlinks);
- if (availableRegions.Count() > 0)
- return availableRegions.ElementAt(0);
- }
- return null;
- }
- private GridRegion FindForeignRegion(string domainName, uint port, string regionName, out GridRegion gatekeeper)
- {
- m_log.Debug("[LLLOGIN SERVICE]: attempting to findforeignregion " + domainName + ":" + port.ToString() + ":" + regionName);
- gatekeeper = new GridRegion();
- gatekeeper.ExternalHostName = domainName;
- gatekeeper.HttpPort = port;
- gatekeeper.RegionName = regionName;
- gatekeeper.InternalEndPoint = new IPEndPoint(IPAddress.Parse("0.0.0.0"), 0);
- UUID regionID;
- ulong handle;
- string imageURL = string.Empty, reason = string.Empty;
- if (m_GatekeeperConnector.LinkRegion(gatekeeper, out regionID, out handle, out domainName, out imageURL, out reason))
- {
- GridRegion destination = m_GatekeeperConnector.GetHyperlinkRegion(gatekeeper, regionID);
- return destination;
- }
- return null;
- }
- private string hostName = string.Empty;
- private int port = 0;
- private void SetHostAndPort(string url)
- {
- try
- {
- Uri uri = new Uri(url);
- hostName = uri.Host;
- port = uri.Port;
- }
- catch
- {
- m_log.WarnFormat("[LLLogin SERVICE]: Unable to parse GatekeeperURL {0}", url);
- }
- }
- protected AgentCircuitData LaunchAgentAtGrid(GridRegion gatekeeper, GridRegion destination, UserAccount account, AvatarAppearance avatar,
- UUID session, UUID secureSession, Vector3 position, string currentWhere, string viewer, string channel, string mac, string id0,
- IPEndPoint clientIP, TeleportFlags flags, out string where, out string reason, out GridRegion dest)
- {
- where = currentWhere;
- ISimulationService simConnector = null;
- reason = string.Empty;
- uint circuitCode = 0;
- AgentCircuitData aCircuit = null;
- if (m_UserAgentService == null)
- {
- // HG standalones have both a localSimulatonDll and a remoteSimulationDll
- // non-HG standalones have just a localSimulationDll
- // independent login servers have just a remoteSimulationDll
- if (m_LocalSimulationService != null)
- simConnector = m_LocalSimulationService;
- else if (m_RemoteSimulationService != null)
- simConnector = m_RemoteSimulationService;
- }
- else // User Agent Service is on
- {
- if (gatekeeper == null) // login to local grid
- {
- if (hostName == string.Empty)
- SetHostAndPort(m_GatekeeperURL);
- gatekeeper = new GridRegion(destination);
- gatekeeper.ExternalHostName = hostName;
- gatekeeper.HttpPort = (uint)port;
- gatekeeper.ServerURI = m_GatekeeperURL;
- }
- m_log.Debug("[LLLOGIN SERVICE]: no gatekeeper detected..... using " + m_GatekeeperURL);
- }
- bool success = false;
- if (m_UserAgentService == null && simConnector != null)
- {
- circuitCode = (uint)Util.RandomClass.Next(); ;
- aCircuit = MakeAgent(destination, account, avatar, session, secureSession, circuitCode, position, clientIP.Address.ToString(), viewer, channel, mac, id0);
- success = LaunchAgentDirectly(simConnector, destination, aCircuit, flags, out reason);
- if (!success && m_GridService != null)
- {
- // Try the fallback regions
- List<GridRegion> fallbacks = m_GridService.GetFallbackRegions(account.ScopeID, destination.RegionLocX, destination.RegionLocY);
- if (fallbacks != null)
- {
- foreach (GridRegion r in fallbacks)
- {
- success = LaunchAgentDirectly(simConnector, r, aCircuit, flags | TeleportFlags.ViaRegionID, out reason);
- if (success)
- {
- where = "safe";
- destination = r;
- break;
- }
- }
- }
- }
- }
- if (m_UserAgentService != null)
- {
- circuitCode = (uint)Util.RandomClass.Next(); ;
- aCircuit = MakeAgent(destination, account, avatar, session, secureSession, circuitCode, position, clientIP.Address.ToString(), viewer, channel, mac, id0);
- aCircuit.teleportFlags |= (uint)flags;
- success = LaunchAgentIndirectly(gatekeeper, destination, aCircuit, clientIP, out reason);
- if (!success && m_GridService != null)
- {
- // Try the fallback regions
- List<GridRegion> fallbacks = m_GridService.GetFallbackRegions(account.ScopeID, destination.RegionLocX, destination.RegionLocY);
- if (fallbacks != null)
- {
- foreach (GridRegion r in fallbacks)
- {
- success = LaunchAgentIndirectly(gatekeeper, r, aCircuit, clientIP, out reason);
- if (success)
- {
- where = "safe";
- destination = r;
- break;
- }
- }
- }
- }
- }
- dest = destination;
- if (success)
- return aCircuit;
- else
- return null;
- }
- private AgentCircuitData MakeAgent(GridRegion region, UserAccount account,
- AvatarAppearance avatar, UUID session, UUID secureSession, uint circuit, Vector3 position,
- string ipaddress, string viewer, string channel, string mac, string id0)
- {
- AgentCircuitData aCircuit = new AgentCircuitData();
- aCircuit.AgentID = account.PrincipalID;
- if (avatar != null)
- aCircuit.Appearance = new AvatarAppearance(avatar);
- else
- aCircuit.Appearance = new AvatarAppearance();
- //aCircuit.BaseFolder = irrelevant
- aCircuit.CapsPath = CapsUtil.GetRandomCapsObjectPath();
- aCircuit.child = false; // the first login agent is root
- aCircuit.ChildrenCapSeeds = new Dictionary<ulong, string>();
- aCircuit.circuitcode = circuit;
- aCircuit.firstname = account.FirstName;
- //aCircuit.InventoryFolder = irrelevant
- aCircuit.lastname = account.LastName;
- aCircuit.SecureSessionID = secureSession;
- aCircuit.SessionID = session;
- aCircuit.startpos = position;
- aCircuit.IPAddress = ipaddress;
- aCircuit.Viewer = viewer;
- aCircuit.Channel = channel;
- aCircuit.Mac = mac;
- aCircuit.Id0 = id0;
- SetServiceURLs(aCircuit, account);
- return aCircuit;
- //m_UserAgentService.LoginAgentToGrid(aCircuit, GatekeeperServiceConnector, region, out reason);
- //if (simConnector.CreateAgent(region, aCircuit, 0, out reason))
- // return aCircuit;
- //return null;
- }
- private void SetServiceURLs(AgentCircuitData aCircuit, UserAccount account)
- {
- aCircuit.ServiceURLs = new Dictionary<string, object>();
- if (account.ServiceURLs == null)
- return;
- // Old style: get the service keys from the DB
- foreach (KeyValuePair<string, object> kvp in account.ServiceURLs)
- {
- if (kvp.Value != null)
- {
- aCircuit.ServiceURLs[kvp.Key] = kvp.Value;
- if (!aCircuit.ServiceURLs[kvp.Key].ToString().EndsWith("/"))
- aCircuit.ServiceURLs[kvp.Key] = aCircuit.ServiceURLs[kvp.Key] + "/";
- }
- }
- // New style: service keys start with SRV_; override the previous
- string[] keys = m_LoginServerConfig.GetKeys();
- if (keys.Length > 0)
- {
- bool newUrls = false;
- IEnumerable<string> serviceKeys = keys.Where(value => value.StartsWith("SRV_"));
- foreach (string serviceKey in serviceKeys)
- {
- string keyName = serviceKey.Replace("SRV_", "");
- string keyValue = m_LoginServerConfig.GetString(serviceKey, string.Empty);
- if (!keyValue.EndsWith("/"))
- keyValue = keyValue + "/";
- if (!account.ServiceURLs.ContainsKey(keyName) || (account.ServiceURLs.ContainsKey(keyName) && account.ServiceURLs[keyName] != keyValue))
- {
- account.ServiceURLs[keyName] = keyValue;
- newUrls = true;
- }
- aCircuit.ServiceURLs[keyName] = keyValue;
- m_log.DebugFormat("[LLLOGIN SERVICE]: found new key {0} {1}", keyName, aCircuit.ServiceURLs[keyName]);
- }
- // The grid operator decided to override the defaults in the
- // [LoginService] configuration. Let's store the correct ones.
- if (newUrls)
- m_UserAccountService.StoreUserAccount(account);
- }
- }
- private bool LaunchAgentDirectly(ISimulationService simConnector, GridRegion region, AgentCircuitData aCircuit, TeleportFlags flags, out string reason)
- {
- return simConnector.CreateAgent(region, aCircuit, (uint)flags, out reason);
- }
- private bool LaunchAgentIndirectly(GridRegion gatekeeper, GridRegion destination, AgentCircuitData aCircuit, IPEndPoint clientIP, out string reason)
- {
- m_log.Debug("[LLOGIN SERVICE] Launching agent at " + destination.RegionName);
- if (m_UserAgentService.LoginAgentToGrid(aCircuit, gatekeeper, destination, true, out reason))
- return true;
- return false;
- }
- #region Console Commands
- private void RegisterCommands()
- {
- //MainConsole.Instance.Commands.AddCommand
- MainConsole.Instance.Commands.AddCommand("Users", false, "login level",
- "login level <level>",
- "Set the minimum user level to log in", HandleLoginCommand);
- MainConsole.Instance.Commands.AddCommand("Users", false, "login reset",
- "login reset",
- "Reset the login level to allow all users",
- HandleLoginCommand);
- MainConsole.Instance.Commands.AddCommand("Users", false, "login text",
- "login text <text>",
- "Set the text users will see on login", HandleLoginCommand);
- }
- private void HandleLoginCommand(string module, string[] cmd)
- {
- string subcommand = cmd[1];
- switch (subcommand)
- {
- case "level":
- // Set the minimum level to allow login
- // Useful to allow grid update without worrying about users.
- // or fixing critical issues
- //
- if (cmd.Length > 2)
- {
- if (Int32.TryParse(cmd[2], out m_MinLoginLevel))
- MainConsole.Instance.OutputFormat("Set minimum login level to {0}", m_MinLoginLevel);
- else
- MainConsole.Instance.OutputFormat("ERROR: {0} is not a valid login level", cmd[2]);
- }
- break;
- case "reset":
- m_MinLoginLevel = 0;
- MainConsole.Instance.OutputFormat("Reset min login level to {0}", m_MinLoginLevel);
- break;
- case "text":
- if (cmd.Length > 2)
- {
- m_WelcomeMessage = cmd[2];
- MainConsole.Instance.OutputFormat("Login welcome message set to '{0}'", m_WelcomeMessage);
- }
- break;
- }
- }
- }
- #endregion
- }
|