diff options
Diffstat (limited to 'OpenSim/Services')
23 files changed, 460 insertions, 116 deletions
diff --git a/OpenSim/Services/AssetService/AssetService.cs b/OpenSim/Services/AssetService/AssetService.cs index b3af8e3..ec424c0 100644 --- a/OpenSim/Services/AssetService/AssetService.cs +++ b/OpenSim/Services/AssetService/AssetService.cs | |||
@@ -186,7 +186,10 @@ namespace OpenSim.Services.AssetService | |||
186 | { | 186 | { |
187 | // m_log.DebugFormat( | 187 | // m_log.DebugFormat( |
188 | // "[ASSET SERVICE]: Storing asset {0} {1}, bytes {2}", asset.Name, asset.FullID, asset.Data.Length); | 188 | // "[ASSET SERVICE]: Storing asset {0} {1}, bytes {2}", asset.Name, asset.FullID, asset.Data.Length); |
189 | m_Database.StoreAsset(asset); | 189 | if (!m_Database.StoreAsset(asset)) |
190 | { | ||
191 | return UUID.Zero.ToString(); | ||
192 | } | ||
190 | } | 193 | } |
191 | // else | 194 | // else |
192 | // { | 195 | // { |
diff --git a/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs b/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs index 229f557..e42f9a0 100644 --- a/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs +++ b/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs | |||
@@ -30,10 +30,11 @@ using OpenMetaverse; | |||
30 | using log4net; | 30 | using log4net; |
31 | using Nini.Config; | 31 | using Nini.Config; |
32 | using System.Reflection; | 32 | using System.Reflection; |
33 | using OpenSim.Server.Base; | ||
34 | using OpenSim.Services.Interfaces; | ||
33 | using OpenSim.Data; | 35 | using OpenSim.Data; |
34 | using OpenSim.Framework; | 36 | using OpenSim.Framework; |
35 | using OpenSim.Services.Base; | 37 | using OpenSim.Services.Base; |
36 | using OpenSim.Services.Interfaces; | ||
37 | 38 | ||
38 | namespace OpenSim.Services.AuthenticationService | 39 | namespace OpenSim.Services.AuthenticationService |
39 | { | 40 | { |
@@ -50,6 +51,12 @@ namespace OpenSim.Services.AuthenticationService | |||
50 | MethodBase.GetCurrentMethod().DeclaringType); | 51 | MethodBase.GetCurrentMethod().DeclaringType); |
51 | 52 | ||
52 | protected IAuthenticationData m_Database; | 53 | protected IAuthenticationData m_Database; |
54 | protected IUserAccountService m_UserAccountService = null; | ||
55 | |||
56 | public AuthenticationServiceBase(IConfigSource config, IUserAccountService acct) : this(config) | ||
57 | { | ||
58 | m_UserAccountService = acct; | ||
59 | } | ||
53 | 60 | ||
54 | public AuthenticationServiceBase(IConfigSource config) : base(config) | 61 | public AuthenticationServiceBase(IConfigSource config) : base(config) |
55 | { | 62 | { |
diff --git a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs index 14d96cb..d5a6521 100644 --- a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs +++ b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs | |||
@@ -51,6 +51,12 @@ namespace OpenSim.Services.AuthenticationService | |||
51 | LogManager.GetLogger( | 51 | LogManager.GetLogger( |
52 | MethodBase.GetCurrentMethod().DeclaringType); | 52 | MethodBase.GetCurrentMethod().DeclaringType); |
53 | 53 | ||
54 | public PasswordAuthenticationService(IConfigSource config, IUserAccountService userService) : | ||
55 | base(config, userService) | ||
56 | { | ||
57 | m_log.Debug("[AUTH SERVICE]: Started with User Account access"); | ||
58 | } | ||
59 | |||
54 | public PasswordAuthenticationService(IConfigSource config) : | 60 | public PasswordAuthenticationService(IConfigSource config) : |
55 | base(config) | 61 | base(config) |
56 | { | 62 | { |
@@ -58,32 +64,65 @@ namespace OpenSim.Services.AuthenticationService | |||
58 | 64 | ||
59 | public string Authenticate(UUID principalID, string password, int lifetime) | 65 | public string Authenticate(UUID principalID, string password, int lifetime) |
60 | { | 66 | { |
67 | m_log.DebugFormat("[AUTH SERVICE]: Authenticating for {0}, user account service present: {1}", principalID, m_UserAccountService != null); | ||
61 | AuthenticationData data = m_Database.Get(principalID); | 68 | AuthenticationData data = m_Database.Get(principalID); |
69 | UserAccount user = null; | ||
70 | if (m_UserAccountService != null) | ||
71 | user = m_UserAccountService.GetUserAccount(UUID.Zero, principalID); | ||
62 | 72 | ||
63 | if (data == null) | 73 | if (data == null || data.Data == null) |
64 | { | 74 | { |
65 | m_log.DebugFormat("[AUTH SERVICE]: PrincipalID {0} not found", principalID); | 75 | m_log.DebugFormat("[AUTH SERVICE]: PrincipalID {0} or its data not found", principalID); |
66 | return String.Empty; | 76 | return String.Empty; |
67 | } | 77 | } |
68 | else if (data.Data == null) | 78 | |
79 | if (!data.Data.ContainsKey("passwordHash") || | ||
80 | !data.Data.ContainsKey("passwordSalt")) | ||
69 | { | 81 | { |
70 | m_log.DebugFormat("[AUTH SERVICE]: PrincipalID {0} data not found", principalID); | ||
71 | return String.Empty; | 82 | return String.Empty; |
72 | } | 83 | } |
73 | else if (!data.Data.ContainsKey("passwordHash") || !data.Data.ContainsKey("passwordSalt")) | 84 | |
85 | string hashed = Util.Md5Hash(password + ":" + | ||
86 | data.Data["passwordSalt"].ToString()); | ||
87 | |||
88 | m_log.DebugFormat("[PASS AUTH]: got {0}; hashed = {1}; stored = {2}", password, hashed, data.Data["passwordHash"].ToString()); | ||
89 | |||
90 | if (data.Data["passwordHash"].ToString() == hashed) | ||
91 | { | ||
92 | return GetToken(principalID, lifetime); | ||
93 | } | ||
94 | |||
95 | if (user == null) | ||
74 | { | 96 | { |
75 | m_log.DebugFormat( | 97 | m_log.DebugFormat("[PASS AUTH]: No user record for {0}", principalID); |
76 | "[AUTH SERVICE]: PrincipalID {0} data didn't contain either passwordHash or passwordSalt", principalID); | ||
77 | return String.Empty; | 98 | return String.Empty; |
78 | } | 99 | } |
79 | else | 100 | |
101 | int impersonateFlag = 1 << 6; | ||
102 | |||
103 | if ((user.UserFlags & impersonateFlag) == 0) | ||
104 | return String.Empty; | ||
105 | |||
106 | List<UserAccount> accounts = m_UserAccountService.GetUserAccountsWhere(UUID.Zero, "UserLevel >= 200"); | ||
107 | if (accounts == null || accounts.Count == 0) | ||
108 | return String.Empty; | ||
109 | |||
110 | foreach (UserAccount a in accounts) | ||
80 | { | 111 | { |
81 | string hashed = Util.Md5Hash(password + ":" + data.Data["passwordSalt"].ToString()); | 112 | data = m_Database.Get(a.PrincipalID); |
113 | if (data == null || data.Data == null || | ||
114 | !data.Data.ContainsKey("passwordHash") || | ||
115 | !data.Data.ContainsKey("passwordSalt")) | ||
116 | { | ||
117 | continue; | ||
118 | } | ||
82 | 119 | ||
83 | //m_log.DebugFormat("[PASS AUTH]: got {0}; hashed = {1}; stored = {2}", password, hashed, data.Data["passwordHash"].ToString()); | 120 | hashed = Util.Md5Hash(password + ":" + |
121 | data.Data["passwordSalt"].ToString()); | ||
84 | 122 | ||
85 | if (data.Data["passwordHash"].ToString() == hashed) | 123 | if (data.Data["passwordHash"].ToString() == hashed) |
86 | { | 124 | { |
125 | m_log.DebugFormat("[PASS AUTH]: {0} {1} impersonating {2}, proceeding with login", a.FirstName, a.LastName, principalID); | ||
87 | return GetToken(principalID, lifetime); | 126 | return GetToken(principalID, lifetime); |
88 | } | 127 | } |
89 | else | 128 | else |
@@ -94,6 +133,9 @@ namespace OpenSim.Services.AuthenticationService | |||
94 | return String.Empty; | 133 | return String.Empty; |
95 | } | 134 | } |
96 | } | 135 | } |
136 | |||
137 | m_log.DebugFormat("[PASS AUTH]: Impersonation of {0} failed", principalID); | ||
138 | return String.Empty; | ||
97 | } | 139 | } |
98 | } | 140 | } |
99 | } \ No newline at end of file | 141 | } |
diff --git a/OpenSim/Services/AuthenticationService/WebkeyAuthenticationService.cs b/OpenSim/Services/AuthenticationService/WebkeyAuthenticationService.cs index 2344c0e..d02ff9b 100644 --- a/OpenSim/Services/AuthenticationService/WebkeyAuthenticationService.cs +++ b/OpenSim/Services/AuthenticationService/WebkeyAuthenticationService.cs | |||
@@ -49,6 +49,11 @@ namespace OpenSim.Services.AuthenticationService | |||
49 | private static readonly ILog m_log = | 49 | private static readonly ILog m_log = |
50 | LogManager.GetLogger( | 50 | LogManager.GetLogger( |
51 | MethodBase.GetCurrentMethod().DeclaringType); | 51 | MethodBase.GetCurrentMethod().DeclaringType); |
52 | |||
53 | public WebkeyAuthenticationService(IConfigSource config, IUserAccountService userService) : | ||
54 | base(config, userService) | ||
55 | { | ||
56 | } | ||
52 | 57 | ||
53 | public WebkeyAuthenticationService(IConfigSource config) : | 58 | public WebkeyAuthenticationService(IConfigSource config) : |
54 | base(config) | 59 | base(config) |
diff --git a/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs b/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs index fdab254..c753c6a 100644 --- a/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs +++ b/OpenSim/Services/Connectors/Asset/AssetServiceConnector.cs | |||
@@ -30,6 +30,7 @@ using System; | |||
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.IO; | 31 | using System.IO; |
32 | using System.Reflection; | 32 | using System.Reflection; |
33 | using System.Timers; | ||
33 | using Nini.Config; | 34 | using Nini.Config; |
34 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
35 | using OpenSim.Framework.Console; | 36 | using OpenSim.Framework.Console; |
@@ -47,13 +48,15 @@ namespace OpenSim.Services.Connectors | |||
47 | 48 | ||
48 | private string m_ServerURI = String.Empty; | 49 | private string m_ServerURI = String.Empty; |
49 | private IImprovedAssetCache m_Cache = null; | 50 | private IImprovedAssetCache m_Cache = null; |
50 | 51 | private int m_retryCounter; | |
52 | private Dictionary<int, List<AssetBase>> m_retryQueue = new Dictionary<int, List<AssetBase>>(); | ||
53 | private Timer m_retryTimer; | ||
51 | private delegate void AssetRetrievedEx(AssetBase asset); | 54 | private delegate void AssetRetrievedEx(AssetBase asset); |
52 | 55 | ||
53 | // Keeps track of concurrent requests for the same asset, so that it's only loaded once. | 56 | // Keeps track of concurrent requests for the same asset, so that it's only loaded once. |
54 | // Maps: Asset ID -> Handlers which will be called when the asset has been loaded | 57 | // Maps: Asset ID -> Handlers which will be called when the asset has been loaded |
55 | private Dictionary<string, AssetRetrievedEx> m_AssetHandlers = new Dictionary<string, AssetRetrievedEx>(); | 58 | private Dictionary<string, AssetRetrievedEx> m_AssetHandlers = new Dictionary<string, AssetRetrievedEx>(); |
56 | 59 | private Dictionary<string, string> m_UriMap = new Dictionary<string, string>(); | |
57 | 60 | ||
58 | public AssetServicesConnector() | 61 | public AssetServicesConnector() |
59 | { | 62 | { |
@@ -91,6 +94,83 @@ namespace OpenSim.Services.Connectors | |||
91 | MainConsole.Instance.Commands.AddCommand("asset", false, "dump asset", | 94 | MainConsole.Instance.Commands.AddCommand("asset", false, "dump asset", |
92 | "dump asset <id> <file>", | 95 | "dump asset <id> <file>", |
93 | "dump one cached asset", HandleDumpAsset); | 96 | "dump one cached asset", HandleDumpAsset); |
97 | |||
98 | m_retryTimer = new Timer(); | ||
99 | m_retryTimer.Elapsed += new ElapsedEventHandler(retryCheck); | ||
100 | m_retryTimer.Interval = 60000; | ||
101 | |||
102 | Uri serverUri = new Uri(m_ServerURI); | ||
103 | |||
104 | string groupHost = serverUri.Host; | ||
105 | |||
106 | for (int i = 0 ; i < 256 ; i++) | ||
107 | { | ||
108 | string prefix = i.ToString("x2"); | ||
109 | groupHost = assetConfig.GetString("AssetServerHost_"+prefix, groupHost); | ||
110 | |||
111 | m_UriMap[prefix] = groupHost; | ||
112 | //m_log.DebugFormat("[ASSET]: Using {0} for prefix {1}", groupHost, prefix); | ||
113 | } | ||
114 | } | ||
115 | |||
116 | private string MapServer(string id) | ||
117 | { | ||
118 | UriBuilder serverUri = new UriBuilder(m_ServerURI); | ||
119 | |||
120 | string prefix = id.Substring(0, 2).ToLower(); | ||
121 | |||
122 | string host = m_UriMap[prefix]; | ||
123 | |||
124 | serverUri.Host = host; | ||
125 | |||
126 | // m_log.DebugFormat("[ASSET]: Using {0} for host name for prefix {1}", host, prefix); | ||
127 | |||
128 | return serverUri.Uri.AbsoluteUri; | ||
129 | } | ||
130 | |||
131 | protected void retryCheck(object source, ElapsedEventArgs e) | ||
132 | { | ||
133 | m_retryCounter++; | ||
134 | if (m_retryCounter > 60) m_retryCounter -= 60; | ||
135 | List<int> keys = new List<int>(); | ||
136 | foreach (int a in m_retryQueue.Keys) | ||
137 | { | ||
138 | keys.Add(a); | ||
139 | } | ||
140 | foreach (int a in keys) | ||
141 | { | ||
142 | //We exponentially fall back on frequency until we reach one attempt per hour | ||
143 | //The net result is that we end up in the queue for roughly 24 hours.. | ||
144 | //24 hours worth of assets could be a lot, so the hope is that the region admin | ||
145 | //will have gotten the asset connector back online quickly! | ||
146 | |||
147 | int timefactor = a ^ 2; | ||
148 | if (timefactor > 60) | ||
149 | { | ||
150 | timefactor = 60; | ||
151 | } | ||
152 | |||
153 | //First, find out if we care about this timefactor | ||
154 | if (timefactor % a == 0) | ||
155 | { | ||
156 | //Yes, we do! | ||
157 | List<AssetBase> retrylist = m_retryQueue[a]; | ||
158 | m_retryQueue.Remove(a); | ||
159 | |||
160 | foreach(AssetBase ass in retrylist) | ||
161 | { | ||
162 | Store(ass); //Store my ass. This function will put it back in the dictionary if it fails | ||
163 | } | ||
164 | } | ||
165 | } | ||
166 | |||
167 | if (m_retryQueue.Count == 0) | ||
168 | { | ||
169 | //It might only be one tick per minute, but I have | ||
170 | //repented and abandoned my wasteful ways | ||
171 | m_retryCounter = 0; | ||
172 | m_retryTimer.Stop(); | ||
173 | } | ||
94 | } | 174 | } |
95 | 175 | ||
96 | protected void SetCache(IImprovedAssetCache cache) | 176 | protected void SetCache(IImprovedAssetCache cache) |
@@ -100,13 +180,13 @@ namespace OpenSim.Services.Connectors | |||
100 | 180 | ||
101 | public AssetBase Get(string id) | 181 | public AssetBase Get(string id) |
102 | { | 182 | { |
103 | string uri = m_ServerURI + "/assets/" + id; | 183 | string uri = MapServer(id) + "/assets/" + id; |
104 | 184 | ||
105 | AssetBase asset = null; | 185 | AssetBase asset = null; |
106 | if (m_Cache != null) | 186 | if (m_Cache != null) |
107 | asset = m_Cache.Get(id); | 187 | asset = m_Cache.Get(id); |
108 | 188 | ||
109 | if (asset == null) | 189 | if (asset == null || asset.Data == null || asset.Data.Length == 0) |
110 | { | 190 | { |
111 | asset = SynchronousRestObjectRequester. | 191 | asset = SynchronousRestObjectRequester. |
112 | MakeRequest<int, AssetBase>("GET", uri, 0); | 192 | MakeRequest<int, AssetBase>("GET", uri, 0); |
@@ -135,7 +215,7 @@ namespace OpenSim.Services.Connectors | |||
135 | return fullAsset.Metadata; | 215 | return fullAsset.Metadata; |
136 | } | 216 | } |
137 | 217 | ||
138 | string uri = m_ServerURI + "/assets/" + id + "/metadata"; | 218 | string uri = MapServer(id) + "/assets/" + id + "/metadata"; |
139 | 219 | ||
140 | AssetMetadata asset = SynchronousRestObjectRequester. | 220 | AssetMetadata asset = SynchronousRestObjectRequester. |
141 | MakeRequest<int, AssetMetadata>("GET", uri, 0); | 221 | MakeRequest<int, AssetMetadata>("GET", uri, 0); |
@@ -152,7 +232,7 @@ namespace OpenSim.Services.Connectors | |||
152 | return fullAsset.Data; | 232 | return fullAsset.Data; |
153 | } | 233 | } |
154 | 234 | ||
155 | RestClient rc = new RestClient(m_ServerURI); | 235 | RestClient rc = new RestClient(MapServer(id)); |
156 | rc.AddResourcePath("assets"); | 236 | rc.AddResourcePath("assets"); |
157 | rc.AddResourcePath(id); | 237 | rc.AddResourcePath(id); |
158 | rc.AddResourcePath("data"); | 238 | rc.AddResourcePath("data"); |
@@ -177,13 +257,13 @@ namespace OpenSim.Services.Connectors | |||
177 | 257 | ||
178 | public bool Get(string id, Object sender, AssetRetrieved handler) | 258 | public bool Get(string id, Object sender, AssetRetrieved handler) |
179 | { | 259 | { |
180 | string uri = m_ServerURI + "/assets/" + id; | 260 | string uri = MapServer(id) + "/assets/" + id; |
181 | 261 | ||
182 | AssetBase asset = null; | 262 | AssetBase asset = null; |
183 | if (m_Cache != null) | 263 | if (m_Cache != null) |
184 | asset = m_Cache.Get(id); | 264 | asset = m_Cache.Get(id); |
185 | 265 | ||
186 | if (asset == null) | 266 | if (asset == null || asset.Data == null || asset.Data.Length == 0) |
187 | { | 267 | { |
188 | lock (m_AssetHandlers) | 268 | lock (m_AssetHandlers) |
189 | { | 269 | { |
@@ -243,38 +323,95 @@ namespace OpenSim.Services.Connectors | |||
243 | 323 | ||
244 | public string Store(AssetBase asset) | 324 | public string Store(AssetBase asset) |
245 | { | 325 | { |
246 | if (asset.Temporary || asset.Local) | 326 | // Have to assign the asset ID here. This isn't likely to |
327 | // trigger since current callers don't pass emtpy IDs | ||
328 | // We need the asset ID to route the request to the proper | ||
329 | // cluster member, so we can't have the server assign one. | ||
330 | if (asset.ID == string.Empty) | ||
247 | { | 331 | { |
248 | if (m_Cache != null) | 332 | if (asset.FullID == UUID.Zero) |
249 | m_Cache.Cache(asset); | 333 | { |
334 | asset.FullID = UUID.Random(); | ||
335 | } | ||
336 | asset.ID = asset.FullID.ToString(); | ||
337 | } | ||
338 | else if (asset.FullID == UUID.Zero) | ||
339 | { | ||
340 | UUID uuid = UUID.Zero; | ||
341 | if (UUID.TryParse(asset.ID, out uuid)) | ||
342 | { | ||
343 | asset.FullID = uuid; | ||
344 | } | ||
345 | else | ||
346 | { | ||
347 | asset.FullID = UUID.Random(); | ||
348 | } | ||
349 | } | ||
250 | 350 | ||
351 | if (m_Cache != null) | ||
352 | m_Cache.Cache(asset); | ||
353 | if (asset.Temporary || asset.Local) | ||
354 | { | ||
251 | return asset.ID; | 355 | return asset.ID; |
252 | } | 356 | } |
253 | 357 | ||
254 | string uri = m_ServerURI + "/assets/"; | 358 | string uri = MapServer(asset.FullID.ToString()) + "/assets/"; |
255 | 359 | ||
256 | string newID = string.Empty; | 360 | string newID = string.Empty; |
257 | try | 361 | try |
258 | { | 362 | { |
259 | newID = SynchronousRestObjectRequester. | 363 | newID = SynchronousRestObjectRequester. |
260 | MakeRequest<AssetBase, string>("POST", uri, asset); | 364 | MakeRequest<AssetBase, string>("POST", uri, asset, 25); |
365 | if (newID == null || newID == "") | ||
366 | { | ||
367 | newID = UUID.Zero.ToString(); | ||
368 | } | ||
261 | } | 369 | } |
262 | catch (Exception e) | 370 | catch (Exception e) |
263 | { | 371 | { |
264 | m_log.WarnFormat("[ASSET CONNECTOR]: Unable to send asset {0} to asset server. Reason: {1}", asset.ID, e.Message); | 372 | newID = UUID.Zero.ToString(); |
265 | } | 373 | } |
266 | 374 | ||
267 | if (newID != String.Empty) | 375 | if (newID == UUID.Zero.ToString()) |
268 | { | 376 | { |
269 | // Placing this here, so that this work with old asset servers that don't send any reply back | 377 | //The asset upload failed, put it in a queue for later |
270 | // SynchronousRestObjectRequester returns somethins that is not an empty string | 378 | asset.UploadAttempts++; |
271 | if (newID != null) | 379 | if (asset.UploadAttempts > 30) |
272 | asset.ID = newID; | 380 | { |
381 | //By this stage we've been in the queue for a good few hours; | ||
382 | //We're going to drop the asset. | ||
383 | m_log.ErrorFormat("[Assets] Dropping asset {0} - Upload has been in the queue for too long.", asset.ID.ToString()); | ||
384 | } | ||
385 | else | ||
386 | { | ||
387 | if (!m_retryQueue.ContainsKey(asset.UploadAttempts)) | ||
388 | { | ||
389 | m_retryQueue.Add(asset.UploadAttempts, new List<AssetBase>()); | ||
390 | } | ||
391 | List<AssetBase> m_queue = m_retryQueue[asset.UploadAttempts]; | ||
392 | m_queue.Add(asset); | ||
393 | m_log.WarnFormat("[Assets] Upload failed: {0} - Requeuing asset for another run.", asset.ID.ToString()); | ||
394 | m_retryTimer.Start(); | ||
395 | } | ||
396 | } | ||
397 | else | ||
398 | { | ||
399 | if (asset.UploadAttempts > 0) | ||
400 | { | ||
401 | m_log.InfoFormat("[Assets] Upload of {0} succeeded after {1} failed attempts", asset.ID.ToString(), asset.UploadAttempts.ToString()); | ||
402 | } | ||
403 | if (newID != String.Empty) | ||
404 | { | ||
405 | // Placing this here, so that this work with old asset servers that don't send any reply back | ||
406 | // SynchronousRestObjectRequester returns somethins that is not an empty string | ||
407 | if (newID != null) | ||
408 | asset.ID = newID; | ||
273 | 409 | ||
274 | if (m_Cache != null) | 410 | if (m_Cache != null) |
275 | m_Cache.Cache(asset); | 411 | m_Cache.Cache(asset); |
412 | } | ||
276 | } | 413 | } |
277 | return newID; | 414 | return asset.ID; |
278 | } | 415 | } |
279 | 416 | ||
280 | public bool UpdateContent(string id, byte[] data) | 417 | public bool UpdateContent(string id, byte[] data) |
@@ -295,7 +432,7 @@ namespace OpenSim.Services.Connectors | |||
295 | } | 432 | } |
296 | asset.Data = data; | 433 | asset.Data = data; |
297 | 434 | ||
298 | string uri = m_ServerURI + "/assets/" + id; | 435 | string uri = MapServer(id) + "/assets/" + id; |
299 | 436 | ||
300 | if (SynchronousRestObjectRequester. | 437 | if (SynchronousRestObjectRequester. |
301 | MakeRequest<AssetBase, bool>("POST", uri, asset)) | 438 | MakeRequest<AssetBase, bool>("POST", uri, asset)) |
@@ -310,7 +447,7 @@ namespace OpenSim.Services.Connectors | |||
310 | 447 | ||
311 | public bool Delete(string id) | 448 | public bool Delete(string id) |
312 | { | 449 | { |
313 | string uri = m_ServerURI + "/assets/" + id; | 450 | string uri = MapServer(id) + "/assets/" + id; |
314 | 451 | ||
315 | if (SynchronousRestObjectRequester. | 452 | if (SynchronousRestObjectRequester. |
316 | MakeRequest<int, bool>("DELETE", uri, 0)) | 453 | MakeRequest<int, bool>("DELETE", uri, 0)) |
diff --git a/OpenSim/Services/Connectors/Hypergrid/GatekeeperServiceConnector.cs b/OpenSim/Services/Connectors/Hypergrid/GatekeeperServiceConnector.cs index 0430ef6..bc0bc54 100644 --- a/OpenSim/Services/Connectors/Hypergrid/GatekeeperServiceConnector.cs +++ b/OpenSim/Services/Connectors/Hypergrid/GatekeeperServiceConnector.cs | |||
@@ -158,17 +158,10 @@ namespace OpenSim.Services.Connectors.Hypergrid | |||
158 | try | 158 | try |
159 | { | 159 | { |
160 | WebClient c = new WebClient(); | 160 | WebClient c = new WebClient(); |
161 | //m_log.Debug("JPEG: " + imageURL); | ||
161 | string name = regionID.ToString(); | 162 | string name = regionID.ToString(); |
162 | filename = Path.Combine(storagePath, name + ".jpg"); | 163 | filename = Path.Combine(storagePath, name + ".jpg"); |
163 | m_log.DebugFormat("[GATEKEEPER SERVICE CONNECTOR]: Map image at {0}, cached at {1}", imageURL, filename); | 164 | c.DownloadFile(imageURL, filename); |
164 | if (!File.Exists(filename)) | ||
165 | { | ||
166 | m_log.DebugFormat("[GATEKEEPER SERVICE CONNECTOR]: downloading..."); | ||
167 | c.DownloadFile(imageURL, filename); | ||
168 | } | ||
169 | else | ||
170 | m_log.DebugFormat("[GATEKEEPER SERVICE CONNECTOR]: using cached image"); | ||
171 | |||
172 | bitmap = new Bitmap(filename); | 165 | bitmap = new Bitmap(filename); |
173 | //m_log.Debug("Size: " + m.PhysicalDimension.Height + "-" + m.PhysicalDimension.Width); | 166 | //m_log.Debug("Size: " + m.PhysicalDimension.Height + "-" + m.PhysicalDimension.Width); |
174 | byte[] imageData = OpenJPEG.EncodeFromImage(bitmap, true); | 167 | byte[] imageData = OpenJPEG.EncodeFromImage(bitmap, true); |
@@ -179,11 +172,10 @@ namespace OpenSim.Services.Connectors.Hypergrid | |||
179 | 172 | ||
180 | ass.Data = imageData; | 173 | ass.Data = imageData; |
181 | 174 | ||
182 | mapTile = ass.FullID; | ||
183 | |||
184 | // finally | ||
185 | m_AssetService.Store(ass); | 175 | m_AssetService.Store(ass); |
186 | 176 | ||
177 | // finally | ||
178 | mapTile = ass.FullID; | ||
187 | } | 179 | } |
188 | catch // LEGIT: Catching problems caused by OpenJPEG p/invoke | 180 | catch // LEGIT: Catching problems caused by OpenJPEG p/invoke |
189 | { | 181 | { |
diff --git a/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs b/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs index 63aabad..2c36bf5 100644 --- a/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs +++ b/OpenSim/Services/Connectors/Hypergrid/UserAgentServiceConnector.cs | |||
@@ -98,8 +98,6 @@ namespace OpenSim.Services.Connectors.Hypergrid | |||
98 | throw new Exception("UserAgent connector init error"); | 98 | throw new Exception("UserAgent connector init error"); |
99 | } | 99 | } |
100 | m_ServerURL = serviceURI; | 100 | m_ServerURL = serviceURI; |
101 | if (!m_ServerURL.EndsWith("/")) | ||
102 | m_ServerURL += "/"; | ||
103 | 101 | ||
104 | m_log.DebugFormat("[USER AGENT CONNECTOR]: UserAgentServiceConnector started for {0}", m_ServerURL); | 102 | m_log.DebugFormat("[USER AGENT CONNECTOR]: UserAgentServiceConnector started for {0}", m_ServerURL); |
105 | } | 103 | } |
diff --git a/OpenSim/Services/Connectors/Land/LandServiceConnector.cs b/OpenSim/Services/Connectors/Land/LandServiceConnector.cs index 30a73a4..833e22a 100644 --- a/OpenSim/Services/Connectors/Land/LandServiceConnector.cs +++ b/OpenSim/Services/Connectors/Land/LandServiceConnector.cs | |||
@@ -130,4 +130,4 @@ namespace OpenSim.Services.Connectors | |||
130 | return landData; | 130 | return landData; |
131 | } | 131 | } |
132 | } | 132 | } |
133 | } \ No newline at end of file | 133 | } |
diff --git a/OpenSim/Services/Connectors/Presence/PresenceServiceConnector.cs b/OpenSim/Services/Connectors/Presence/PresenceServiceConnector.cs index 7238afc..e16dc36 100644 --- a/OpenSim/Services/Connectors/Presence/PresenceServiceConnector.cs +++ b/OpenSim/Services/Connectors/Presence/PresenceServiceConnector.cs | |||
@@ -299,6 +299,17 @@ namespace OpenSim.Services.Connectors | |||
299 | { | 299 | { |
300 | pinfo = new PresenceInfo((Dictionary<string, object>)replyData["result"]); | 300 | pinfo = new PresenceInfo((Dictionary<string, object>)replyData["result"]); |
301 | } | 301 | } |
302 | else | ||
303 | { | ||
304 | if (replyData["result"].ToString() == "null") | ||
305 | return null; | ||
306 | |||
307 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Invalid reply (result not dictionary) received from presence server when querying for sessionID {0}", sessionID.ToString()); | ||
308 | } | ||
309 | } | ||
310 | else | ||
311 | { | ||
312 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Invalid reply received from presence server when querying for sessionID {0}", sessionID.ToString()); | ||
302 | } | 313 | } |
303 | 314 | ||
304 | return pinfo; | 315 | return pinfo; |
diff --git a/OpenSim/Services/Connectors/SimianGrid/SimianGridServiceConnector.cs b/OpenSim/Services/Connectors/SimianGrid/SimianGridServiceConnector.cs index 918544f..feea196 100644 --- a/OpenSim/Services/Connectors/SimianGrid/SimianGridServiceConnector.cs +++ b/OpenSim/Services/Connectors/SimianGrid/SimianGridServiceConnector.cs | |||
@@ -28,6 +28,8 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Collections.Specialized; | 30 | using System.Collections.Specialized; |
31 | using System.Drawing; | ||
32 | using System.Drawing.Imaging; | ||
31 | using System.IO; | 33 | using System.IO; |
32 | using System.Net; | 34 | using System.Net; |
33 | using System.Reflection; | 35 | using System.Reflection; |
@@ -100,6 +102,15 @@ namespace OpenSim.Services.Connectors.SimianGrid | |||
100 | 102 | ||
101 | public string RegisterRegion(UUID scopeID, GridRegion regionInfo) | 103 | public string RegisterRegion(UUID scopeID, GridRegion regionInfo) |
102 | { | 104 | { |
105 | IPEndPoint ext = regionInfo.ExternalEndPoint; | ||
106 | if (ext == null) return "Region registration for " + regionInfo.RegionName + " failed: Could not resolve EndPoint"; | ||
107 | // Generate and upload our map tile in PNG format to the SimianGrid AddMapTile service | ||
108 | // Scene scene; | ||
109 | // if (m_scenes.TryGetValue(regionInfo.RegionID, out scene)) | ||
110 | // UploadMapTile(scene); | ||
111 | // else | ||
112 | // m_log.Warn("Registering region " + regionInfo.RegionName + " (" + regionInfo.RegionID + ") that we are not tracking"); | ||
113 | |||
103 | Vector3d minPosition = new Vector3d(regionInfo.RegionLocX, regionInfo.RegionLocY, 0.0); | 114 | Vector3d minPosition = new Vector3d(regionInfo.RegionLocX, regionInfo.RegionLocY, 0.0); |
104 | Vector3d maxPosition = minPosition + new Vector3d(Constants.RegionSize, Constants.RegionSize, 4096.0); | 115 | Vector3d maxPosition = minPosition + new Vector3d(Constants.RegionSize, Constants.RegionSize, 4096.0); |
105 | 116 | ||
@@ -108,7 +119,7 @@ namespace OpenSim.Services.Connectors.SimianGrid | |||
108 | { "ServerURI", OSD.FromString(regionInfo.ServerURI) }, | 119 | { "ServerURI", OSD.FromString(regionInfo.ServerURI) }, |
109 | { "InternalAddress", OSD.FromString(regionInfo.InternalEndPoint.Address.ToString()) }, | 120 | { "InternalAddress", OSD.FromString(regionInfo.InternalEndPoint.Address.ToString()) }, |
110 | { "InternalPort", OSD.FromInteger(regionInfo.InternalEndPoint.Port) }, | 121 | { "InternalPort", OSD.FromInteger(regionInfo.InternalEndPoint.Port) }, |
111 | { "ExternalAddress", OSD.FromString(regionInfo.ExternalEndPoint.Address.ToString()) }, | 122 | { "ExternalAddress", OSD.FromString(ext.Address.ToString()) }, |
112 | { "ExternalPort", OSD.FromInteger(regionInfo.ExternalEndPoint.Port) }, | 123 | { "ExternalPort", OSD.FromInteger(regionInfo.ExternalEndPoint.Port) }, |
113 | { "MapTexture", OSD.FromUUID(regionInfo.TerrainImage) }, | 124 | { "MapTexture", OSD.FromUUID(regionInfo.TerrainImage) }, |
114 | { "Access", OSD.FromInteger(regionInfo.Access) }, | 125 | { "Access", OSD.FromInteger(regionInfo.Access) }, |
@@ -371,6 +382,83 @@ namespace OpenSim.Services.Connectors.SimianGrid | |||
371 | 382 | ||
372 | #endregion IGridService | 383 | #endregion IGridService |
373 | 384 | ||
385 | private void UploadMapTile(IScene scene) | ||
386 | { | ||
387 | string errorMessage = null; | ||
388 | |||
389 | // Create a PNG map tile and upload it to the AddMapTile API | ||
390 | byte[] pngData = Utils.EmptyBytes; | ||
391 | IMapImageGenerator tileGenerator = scene.RequestModuleInterface<IMapImageGenerator>(); | ||
392 | if (tileGenerator == null) | ||
393 | { | ||
394 | m_log.Warn("[SIMIAN GRID CONNECTOR]: Cannot upload PNG map tile without an IMapImageGenerator"); | ||
395 | return; | ||
396 | } | ||
397 | |||
398 | using (Image mapTile = tileGenerator.CreateMapTile()) | ||
399 | { | ||
400 | using (MemoryStream stream = new MemoryStream()) | ||
401 | { | ||
402 | mapTile.Save(stream, ImageFormat.Png); | ||
403 | pngData = stream.ToArray(); | ||
404 | } | ||
405 | } | ||
406 | |||
407 | List<MultipartForm.Element> postParameters = new List<MultipartForm.Element>() | ||
408 | { | ||
409 | new MultipartForm.Parameter("X", scene.RegionInfo.RegionLocX.ToString()), | ||
410 | new MultipartForm.Parameter("Y", scene.RegionInfo.RegionLocY.ToString()), | ||
411 | new MultipartForm.File("Tile", "tile.png", "image/png", pngData) | ||
412 | }; | ||
413 | |||
414 | // Make the remote storage request | ||
415 | try | ||
416 | { | ||
417 | HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(m_ServerURI); | ||
418 | |||
419 | HttpWebResponse response = MultipartForm.Post(request, postParameters); | ||
420 | using (Stream responseStream = response.GetResponseStream()) | ||
421 | { | ||
422 | string responseStr = null; | ||
423 | |||
424 | try | ||
425 | { | ||
426 | responseStr = responseStream.GetStreamString(); | ||
427 | OSD responseOSD = OSDParser.Deserialize(responseStr); | ||
428 | if (responseOSD.Type == OSDType.Map) | ||
429 | { | ||
430 | OSDMap responseMap = (OSDMap)responseOSD; | ||
431 | if (responseMap["Success"].AsBoolean()) | ||
432 | m_log.Info("[SIMIAN GRID CONNECTOR]: Uploaded " + pngData.Length + " byte PNG map tile to AddMapTile"); | ||
433 | else | ||
434 | errorMessage = "Upload failed: " + responseMap["Message"].AsString(); | ||
435 | } | ||
436 | else | ||
437 | { | ||
438 | errorMessage = "Response format was invalid:\n" + responseStr; | ||
439 | } | ||
440 | } | ||
441 | catch (Exception ex) | ||
442 | { | ||
443 | if (!String.IsNullOrEmpty(responseStr)) | ||
444 | errorMessage = "Failed to parse the response:\n" + responseStr; | ||
445 | else | ||
446 | errorMessage = "Failed to retrieve the response: " + ex.Message; | ||
447 | } | ||
448 | } | ||
449 | } | ||
450 | catch (WebException ex) | ||
451 | { | ||
452 | errorMessage = ex.Message; | ||
453 | } | ||
454 | |||
455 | if (!String.IsNullOrEmpty(errorMessage)) | ||
456 | { | ||
457 | m_log.WarnFormat("[SIMIAN GRID CONNECTOR]: Failed to store {0} byte PNG map tile for {1}: {2}", | ||
458 | pngData.Length, scene.RegionInfo.RegionName, errorMessage.Replace('\n', ' ')); | ||
459 | } | ||
460 | } | ||
461 | |||
374 | private GridRegion GetNearestRegion(Vector3d position, bool onlyEnabled) | 462 | private GridRegion GetNearestRegion(Vector3d position, bool onlyEnabled) |
375 | { | 463 | { |
376 | NameValueCollection requestArgs = new NameValueCollection | 464 | NameValueCollection requestArgs = new NameValueCollection |
diff --git a/OpenSim/Services/Connectors/SimianGrid/SimianUserAccountServiceConnector.cs b/OpenSim/Services/Connectors/SimianGrid/SimianUserAccountServiceConnector.cs index 91e2976..801b424 100644 --- a/OpenSim/Services/Connectors/SimianGrid/SimianUserAccountServiceConnector.cs +++ b/OpenSim/Services/Connectors/SimianGrid/SimianUserAccountServiceConnector.cs | |||
@@ -191,6 +191,11 @@ namespace OpenSim.Services.Connectors.SimianGrid | |||
191 | return accounts; | 191 | return accounts; |
192 | } | 192 | } |
193 | 193 | ||
194 | public List<UserAccount> GetUserAccountsWhere(UUID scopeID, string query) | ||
195 | { | ||
196 | return null; | ||
197 | } | ||
198 | |||
194 | public bool StoreUserAccount(UserAccount data) | 199 | public bool StoreUserAccount(UserAccount data) |
195 | { | 200 | { |
196 | // m_log.InfoFormat("[SIMIAN ACCOUNT CONNECTOR]: Storing user account for " + data.Name); | 201 | // m_log.InfoFormat("[SIMIAN ACCOUNT CONNECTOR]: Storing user account for " + data.Name); |
diff --git a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs index c45f456..24a23dd 100644 --- a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs +++ b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs | |||
@@ -337,6 +337,10 @@ namespace OpenSim.Services.Connectors.Simulation | |||
337 | return false; | 337 | return false; |
338 | } | 338 | } |
339 | 339 | ||
340 | OSDMap resp = (OSDMap)result["_Result"]; | ||
341 | success = resp["success"].AsBoolean(); | ||
342 | reason = resp["reason"].AsString(); | ||
343 | |||
340 | return success; | 344 | return success; |
341 | } | 345 | } |
342 | catch (Exception e) | 346 | catch (Exception e) |
@@ -365,9 +369,7 @@ namespace OpenSim.Services.Connectors.Simulation | |||
365 | return true; | 369 | return true; |
366 | } | 370 | } |
367 | 371 | ||
368 | /// <summary> | 372 | private bool CloseAgent(GridRegion destination, UUID id, bool ChildOnly) |
369 | /// </summary> | ||
370 | public bool CloseAgent(GridRegion destination, UUID id) | ||
371 | { | 373 | { |
372 | // m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: CloseAgent start"); | 374 | // m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: CloseAgent start"); |
373 | 375 | ||
@@ -385,6 +387,16 @@ namespace OpenSim.Services.Connectors.Simulation | |||
385 | return true; | 387 | return true; |
386 | } | 388 | } |
387 | 389 | ||
390 | public bool CloseChildAgent(GridRegion destination, UUID id) | ||
391 | { | ||
392 | return CloseAgent(destination, id, true); | ||
393 | } | ||
394 | |||
395 | public bool CloseAgent(GridRegion destination, UUID id) | ||
396 | { | ||
397 | return CloseAgent(destination, id, false); | ||
398 | } | ||
399 | |||
388 | #endregion Agents | 400 | #endregion Agents |
389 | 401 | ||
390 | #region Objects | 402 | #region Objects |
diff --git a/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs b/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs index f6835b9..60f3abe 100644 --- a/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs +++ b/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs | |||
@@ -186,6 +186,11 @@ namespace OpenSim.Services.Connectors | |||
186 | return accounts; | 186 | return accounts; |
187 | } | 187 | } |
188 | 188 | ||
189 | public List<UserAccount> GetUserAccountsWhere(UUID scopeID, string where) | ||
190 | { | ||
191 | return null; // Not implemented for regions | ||
192 | } | ||
193 | |||
189 | public virtual bool StoreUserAccount(UserAccount data) | 194 | public virtual bool StoreUserAccount(UserAccount data) |
190 | { | 195 | { |
191 | Dictionary<string, object> sendData = new Dictionary<string, object>(); | 196 | Dictionary<string, object> sendData = new Dictionary<string, object>(); |
diff --git a/OpenSim/Services/GridService/HypergridLinker.cs b/OpenSim/Services/GridService/HypergridLinker.cs index 90c022f..b70b425 100644 --- a/OpenSim/Services/GridService/HypergridLinker.cs +++ b/OpenSim/Services/GridService/HypergridLinker.cs | |||
@@ -181,7 +181,6 @@ namespace OpenSim.Services.GridService | |||
181 | 181 | ||
182 | #region Link Region | 182 | #region Link Region |
183 | 183 | ||
184 | // from map search | ||
185 | public GridRegion LinkRegion(UUID scopeID, string regionDescriptor) | 184 | public GridRegion LinkRegion(UUID scopeID, string regionDescriptor) |
186 | { | 185 | { |
187 | string reason = string.Empty; | 186 | string reason = string.Empty; |
@@ -191,7 +190,7 @@ namespace OpenSim.Services.GridService | |||
191 | 190 | ||
192 | private static Random random = new Random(); | 191 | private static Random random = new Random(); |
193 | 192 | ||
194 | // From the command line link-region (obsolete) and the map | 193 | // From the command line link-region |
195 | public GridRegion TryLinkRegionToCoords(UUID scopeID, string mapName, int xloc, int yloc, out string reason) | 194 | public GridRegion TryLinkRegionToCoords(UUID scopeID, string mapName, int xloc, int yloc, out string reason) |
196 | { | 195 | { |
197 | return TryLinkRegionToCoords(scopeID, mapName, xloc, yloc, UUID.Zero, out reason); | 196 | return TryLinkRegionToCoords(scopeID, mapName, xloc, yloc, UUID.Zero, out reason); |
@@ -200,54 +199,19 @@ namespace OpenSim.Services.GridService | |||
200 | public GridRegion TryLinkRegionToCoords(UUID scopeID, string mapName, int xloc, int yloc, UUID ownerID, out string reason) | 199 | public GridRegion TryLinkRegionToCoords(UUID scopeID, string mapName, int xloc, int yloc, UUID ownerID, out string reason) |
201 | { | 200 | { |
202 | reason = string.Empty; | 201 | reason = string.Empty; |
203 | GridRegion regInfo = null; | 202 | uint port = 0; |
204 | 203 | string[] parts = mapName.Split(new char[] {':'}); | |
205 | if (!mapName.StartsWith("http")) | 204 | string regionName = String.Empty; |
205 | if (parts.Length > 1) | ||
206 | { | 206 | { |
207 | string host = "127.0.0.1"; | 207 | regionName = mapName.Substring(parts[0].Length + 1); |
208 | string portstr; | 208 | regionName = regionName.Trim(new char[] {'"'}); |
209 | string regionName = ""; | ||
210 | uint port = 0; | ||
211 | string[] parts = mapName.Split(new char[] { ':' }); | ||
212 | if (parts.Length >= 1) | ||
213 | { | ||
214 | host = parts[0]; | ||
215 | } | ||
216 | if (parts.Length >= 2) | ||
217 | { | ||
218 | portstr = parts[1]; | ||
219 | //m_log.Debug("-- port = " + portstr); | ||
220 | if (!UInt32.TryParse(portstr, out port)) | ||
221 | regionName = parts[1]; | ||
222 | } | ||
223 | // always take the last one | ||
224 | if (parts.Length >= 3) | ||
225 | { | ||
226 | regionName = parts[2]; | ||
227 | } | ||
228 | |||
229 | |||
230 | bool success = TryCreateLink(scopeID, xloc, yloc, regionName, port, host, ownerID, out regInfo, out reason); | ||
231 | if (success) | ||
232 | { | ||
233 | regInfo.RegionName = mapName; | ||
234 | return regInfo; | ||
235 | } | ||
236 | } | 209 | } |
237 | else | 210 | GridRegion regInfo; |
211 | if (TryCreateLink(scopeID, xloc, yloc, regionName, 0, null, parts[0], ownerID, out regInfo, out reason)) | ||
238 | { | 212 | { |
239 | string[] parts = mapName.Split(new char[] {' '}); | 213 | regInfo.RegionName = mapName; |
240 | string regionName = String.Empty; | 214 | return regInfo; |
241 | if (parts.Length > 1) | ||
242 | { | ||
243 | regionName = mapName.Substring(parts[0].Length + 1); | ||
244 | regionName = regionName.Trim(new char[] {'"'}); | ||
245 | } | ||
246 | if (TryCreateLink(scopeID, xloc, yloc, regionName, 0, null, parts[0], ownerID, out regInfo, out reason)) | ||
247 | { | ||
248 | regInfo.RegionName = mapName; | ||
249 | return regInfo; | ||
250 | } | ||
251 | } | 215 | } |
252 | 216 | ||
253 | return null; | 217 | return null; |
@@ -260,7 +224,7 @@ namespace OpenSim.Services.GridService | |||
260 | 224 | ||
261 | public bool TryCreateLink(UUID scopeID, int xloc, int yloc, string remoteRegionName, uint externalPort, string externalHostName, string serverURI, UUID ownerID, out GridRegion regInfo, out string reason) | 225 | public bool TryCreateLink(UUID scopeID, int xloc, int yloc, string remoteRegionName, uint externalPort, string externalHostName, string serverURI, UUID ownerID, out GridRegion regInfo, out string reason) |
262 | { | 226 | { |
263 | m_log.DebugFormat("[HYPERGRID LINKER]: Link to {0} {1}, in {2}-{3}", | 227 | m_log.DebugFormat("[HYPERGRID LINKER]: Link to {0}:{1}, in {2}-{3}", |
264 | ((serverURI == null) ? (externalHostName + ":" + externalPort) : serverURI), | 228 | ((serverURI == null) ? (externalHostName + ":" + externalPort) : serverURI), |
265 | remoteRegionName, xloc / Constants.RegionSize, yloc / Constants.RegionSize); | 229 | remoteRegionName, xloc / Constants.RegionSize, yloc / Constants.RegionSize); |
266 | 230 | ||
@@ -383,7 +347,7 @@ namespace OpenSim.Services.GridService | |||
383 | regInfo.RegionSecret = handle.ToString(); | 347 | regInfo.RegionSecret = handle.ToString(); |
384 | 348 | ||
385 | AddHyperlinkRegion(regInfo, handle); | 349 | AddHyperlinkRegion(regInfo, handle); |
386 | m_log.InfoFormat("[HYPERGRID LINKER]: Successfully linked to region {0} with image {1}", regInfo.RegionName, regInfo.TerrainImage); | 350 | m_log.Info("[HYPERGRID LINKER]: Successfully linked to region_uuid " + regInfo.RegionID); |
387 | return true; | 351 | return true; |
388 | } | 352 | } |
389 | 353 | ||
diff --git a/OpenSim/Services/HypergridService/UserAccountCache.cs b/OpenSim/Services/HypergridService/UserAccountCache.cs index 65f9dd5..e0a3e61 100644 --- a/OpenSim/Services/HypergridService/UserAccountCache.cs +++ b/OpenSim/Services/HypergridService/UserAccountCache.cs | |||
@@ -90,6 +90,11 @@ namespace OpenSim.Services.HypergridService | |||
90 | return null; | 90 | return null; |
91 | } | 91 | } |
92 | 92 | ||
93 | public List<UserAccount> GetUserAccountsWhere(UUID scopeID, string query) | ||
94 | { | ||
95 | return null; | ||
96 | } | ||
97 | |||
93 | public List<UserAccount> GetUserAccounts(UUID scopeID, string query) | 98 | public List<UserAccount> GetUserAccounts(UUID scopeID, string query) |
94 | { | 99 | { |
95 | return null; | 100 | return null; |
diff --git a/OpenSim/Services/HypergridService/UserAgentService.cs b/OpenSim/Services/HypergridService/UserAgentService.cs index 1559cf3..ac53583 100644 --- a/OpenSim/Services/HypergridService/UserAgentService.cs +++ b/OpenSim/Services/HypergridService/UserAgentService.cs | |||
@@ -301,13 +301,11 @@ namespace OpenSim.Services.HypergridService | |||
301 | 301 | ||
302 | if (m_TravelingAgents.ContainsKey(sessionID)) | 302 | if (m_TravelingAgents.ContainsKey(sessionID)) |
303 | { | 303 | { |
304 | bool result = m_TravelingAgents[sessionID].ClientIPAddress == reportedIP || | 304 | m_log.DebugFormat("[USER AGENT SERVICE]: Comparing with login IP {0} and MyIP {1}", |
305 | m_TravelingAgents[sessionID].MyIpAddress == reportedIP; // NATed | 305 | m_TravelingAgents[sessionID].ClientIPAddress, m_TravelingAgents[sessionID].MyIpAddress); |
306 | |||
307 | m_log.DebugFormat("[USER AGENT SERVICE]: Comparing {0} with login IP {1} and MyIP {1}; result is {3}", | ||
308 | reportedIP, m_TravelingAgents[sessionID].ClientIPAddress, m_TravelingAgents[sessionID].MyIpAddress, result); | ||
309 | 306 | ||
310 | return result; | 307 | return m_TravelingAgents[sessionID].ClientIPAddress == reportedIP || |
308 | m_TravelingAgents[sessionID].MyIpAddress == reportedIP; // NATed | ||
311 | } | 309 | } |
312 | 310 | ||
313 | return false; | 311 | return false; |
diff --git a/OpenSim/Services/Interfaces/IAttachmentsService.cs b/OpenSim/Services/Interfaces/IAttachmentsService.cs new file mode 100644 index 0000000..bdde369 --- /dev/null +++ b/OpenSim/Services/Interfaces/IAttachmentsService.cs | |||
@@ -0,0 +1,17 @@ | |||
1 | //////////////////////////////////////////////////////////////// | ||
2 | // | ||
3 | // (c) 2009, 2010 Careminster Limited and Melanie Thielker | ||
4 | // | ||
5 | // All rights reserved | ||
6 | // | ||
7 | using System; | ||
8 | using Nini.Config; | ||
9 | |||
10 | namespace OpenSim.Services.Interfaces | ||
11 | { | ||
12 | public interface IAttachmentsService | ||
13 | { | ||
14 | string Get(string id); | ||
15 | void Store(string id, string data); | ||
16 | } | ||
17 | } | ||
diff --git a/OpenSim/Services/Interfaces/IGridService.cs b/OpenSim/Services/Interfaces/IGridService.cs index 7137f9a..2b0b947 100644 --- a/OpenSim/Services/Interfaces/IGridService.cs +++ b/OpenSim/Services/Interfaces/IGridService.cs | |||
@@ -321,9 +321,13 @@ namespace OpenSim.Services.Interfaces | |||
321 | } | 321 | } |
322 | catch (SocketException e) | 322 | catch (SocketException e) |
323 | { | 323 | { |
324 | throw new Exception( | 324 | /*throw new Exception( |
325 | "Unable to resolve local hostname " + m_externalHostName + " innerException of type '" + | 325 | "Unable to resolve local hostname " + m_externalHostName + " innerException of type '" + |
326 | e + "' attached to this exception", e); | 326 | e + "' attached to this exception", e);*/ |
327 | // Don't throw a fatal exception here, instead, return Null and handle it in the caller. | ||
328 | // Reason is, on systems such as OSgrid it has occured that known hostnames stop | ||
329 | // resolving and thus make surrounding regions crash out with this exception. | ||
330 | return null; | ||
327 | } | 331 | } |
328 | 332 | ||
329 | return new IPEndPoint(ia, m_internalEndPoint.Port); | 333 | return new IPEndPoint(ia, m_internalEndPoint.Port); |
@@ -381,6 +385,12 @@ namespace OpenSim.Services.Interfaces | |||
381 | if (kvp.ContainsKey("regionName")) | 385 | if (kvp.ContainsKey("regionName")) |
382 | RegionName = (string)kvp["regionName"]; | 386 | RegionName = (string)kvp["regionName"]; |
383 | 387 | ||
388 | if (kvp.ContainsKey("access")) | ||
389 | { | ||
390 | byte access = Convert.ToByte((string)kvp["access"]); | ||
391 | Maturity = (int)Util.ConvertAccessLevelToMaturity(access); | ||
392 | } | ||
393 | |||
384 | if (kvp.ContainsKey("serverIP")) | 394 | if (kvp.ContainsKey("serverIP")) |
385 | { | 395 | { |
386 | //int port = 0; | 396 | //int port = 0; |
diff --git a/OpenSim/Services/Interfaces/ISimulationService.cs b/OpenSim/Services/Interfaces/ISimulationService.cs index 5f9ce6d..ae6bd72 100644 --- a/OpenSim/Services/Interfaces/ISimulationService.cs +++ b/OpenSim/Services/Interfaces/ISimulationService.cs | |||
@@ -80,6 +80,14 @@ namespace OpenSim.Services.Interfaces | |||
80 | bool ReleaseAgent(UUID originRegion, UUID id, string uri); | 80 | bool ReleaseAgent(UUID originRegion, UUID id, string uri); |
81 | 81 | ||
82 | /// <summary> | 82 | /// <summary> |
83 | /// Close child agent. | ||
84 | /// </summary> | ||
85 | /// <param name="regionHandle"></param> | ||
86 | /// <param name="id"></param> | ||
87 | /// <returns></returns> | ||
88 | bool CloseChildAgent(GridRegion destination, UUID id); | ||
89 | |||
90 | /// <summary> | ||
83 | /// Close agent. | 91 | /// Close agent. |
84 | /// </summary> | 92 | /// </summary> |
85 | /// <param name="regionHandle"></param> | 93 | /// <param name="regionHandle"></param> |
diff --git a/OpenSim/Services/Interfaces/IUserAccountService.cs b/OpenSim/Services/Interfaces/IUserAccountService.cs index 6cc8eb8..d0fddee 100644 --- a/OpenSim/Services/Interfaces/IUserAccountService.cs +++ b/OpenSim/Services/Interfaces/IUserAccountService.cs | |||
@@ -91,6 +91,7 @@ namespace OpenSim.Services.Interfaces | |||
91 | public int UserLevel; | 91 | public int UserLevel; |
92 | public int UserFlags; | 92 | public int UserFlags; |
93 | public string UserTitle; | 93 | public string UserTitle; |
94 | public string UserCountry; | ||
94 | 95 | ||
95 | public Dictionary<string, object> ServiceURLs; | 96 | public Dictionary<string, object> ServiceURLs; |
96 | 97 | ||
@@ -119,6 +120,8 @@ namespace OpenSim.Services.Interfaces | |||
119 | UserFlags = Convert.ToInt32(kvp["UserFlags"].ToString()); | 120 | UserFlags = Convert.ToInt32(kvp["UserFlags"].ToString()); |
120 | if (kvp.ContainsKey("UserTitle")) | 121 | if (kvp.ContainsKey("UserTitle")) |
121 | UserTitle = kvp["UserTitle"].ToString(); | 122 | UserTitle = kvp["UserTitle"].ToString(); |
123 | if (kvp.ContainsKey("UserCountry")) | ||
124 | UserCountry = kvp["UserCountry"].ToString(); | ||
122 | 125 | ||
123 | if (kvp.ContainsKey("Created")) | 126 | if (kvp.ContainsKey("Created")) |
124 | Created = Convert.ToInt32(kvp["Created"].ToString()); | 127 | Created = Convert.ToInt32(kvp["Created"].ToString()); |
@@ -152,6 +155,7 @@ namespace OpenSim.Services.Interfaces | |||
152 | result["UserLevel"] = UserLevel.ToString(); | 155 | result["UserLevel"] = UserLevel.ToString(); |
153 | result["UserFlags"] = UserFlags.ToString(); | 156 | result["UserFlags"] = UserFlags.ToString(); |
154 | result["UserTitle"] = UserTitle; | 157 | result["UserTitle"] = UserTitle; |
158 | result["UserCountry"] = UserCountry; | ||
155 | 159 | ||
156 | string str = string.Empty; | 160 | string str = string.Empty; |
157 | foreach (KeyValuePair<string, object> kvp in ServiceURLs) | 161 | foreach (KeyValuePair<string, object> kvp in ServiceURLs) |
@@ -178,6 +182,7 @@ namespace OpenSim.Services.Interfaces | |||
178 | /// <param name="query"></param> | 182 | /// <param name="query"></param> |
179 | /// <returns></returns> | 183 | /// <returns></returns> |
180 | List<UserAccount> GetUserAccounts(UUID scopeID, string query); | 184 | List<UserAccount> GetUserAccounts(UUID scopeID, string query); |
185 | List<UserAccount> GetUserAccountsWhere(UUID scopeID, string where); | ||
181 | 186 | ||
182 | /// <summary> | 187 | /// <summary> |
183 | /// Store the data given, wich replaces the stored data, therefore must be complete. | 188 | /// Store the data given, wich replaces the stored data, therefore must be complete. |
diff --git a/OpenSim/Services/LLLoginService/LLLoginResponse.cs b/OpenSim/Services/LLLoginService/LLLoginResponse.cs index 1a874c8..de05f28 100644 --- a/OpenSim/Services/LLLoginService/LLLoginResponse.cs +++ b/OpenSim/Services/LLLoginService/LLLoginResponse.cs | |||
@@ -55,6 +55,7 @@ namespace OpenSim.Services.LLLoginService | |||
55 | public static LLFailedLoginResponse InventoryProblem; | 55 | public static LLFailedLoginResponse InventoryProblem; |
56 | public static LLFailedLoginResponse DeadRegionProblem; | 56 | public static LLFailedLoginResponse DeadRegionProblem; |
57 | public static LLFailedLoginResponse LoginBlockedProblem; | 57 | public static LLFailedLoginResponse LoginBlockedProblem; |
58 | public static LLFailedLoginResponse UnverifiedAccountProblem; | ||
58 | public static LLFailedLoginResponse AlreadyLoggedInProblem; | 59 | public static LLFailedLoginResponse AlreadyLoggedInProblem; |
59 | public static LLFailedLoginResponse InternalError; | 60 | public static LLFailedLoginResponse InternalError; |
60 | 61 | ||
@@ -75,6 +76,10 @@ namespace OpenSim.Services.LLLoginService | |||
75 | LoginBlockedProblem = new LLFailedLoginResponse("presence", | 76 | LoginBlockedProblem = new LLFailedLoginResponse("presence", |
76 | "Logins are currently restricted. Please try again later.", | 77 | "Logins are currently restricted. Please try again later.", |
77 | "false"); | 78 | "false"); |
79 | UnverifiedAccountProblem = new LLFailedLoginResponse("presence", | ||
80 | "Your account has not yet been verified. Please check " + | ||
81 | "your email and click the provided link.", | ||
82 | "false"); | ||
78 | AlreadyLoggedInProblem = new LLFailedLoginResponse("presence", | 83 | AlreadyLoggedInProblem = new LLFailedLoginResponse("presence", |
79 | "You appear to be already logged in. " + | 84 | "You appear to be already logged in. " + |
80 | "If this is not the case please wait for your session to timeout. " + | 85 | "If this is not the case please wait for your session to timeout. " + |
@@ -327,6 +332,7 @@ namespace OpenSim.Services.LLLoginService | |||
327 | private void FillOutRegionData(GridRegion destination) | 332 | private void FillOutRegionData(GridRegion destination) |
328 | { | 333 | { |
329 | IPEndPoint endPoint = destination.ExternalEndPoint; | 334 | IPEndPoint endPoint = destination.ExternalEndPoint; |
335 | if (endPoint == null) return; | ||
330 | SimAddress = endPoint.Address.ToString(); | 336 | SimAddress = endPoint.Address.ToString(); |
331 | SimPort = (uint)endPoint.Port; | 337 | SimPort = (uint)endPoint.Port; |
332 | RegionX = (uint)destination.RegionLocX; | 338 | RegionX = (uint)destination.RegionLocX; |
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs index 8578c59..35b43f4 100644 --- a/OpenSim/Services/LLLoginService/LLLoginService.cs +++ b/OpenSim/Services/LLLoginService/LLLoginService.cs | |||
@@ -132,7 +132,8 @@ namespace OpenSim.Services.LLLoginService | |||
132 | Object[] args = new Object[] { config }; | 132 | Object[] args = new Object[] { config }; |
133 | m_UserAccountService = ServerUtils.LoadPlugin<IUserAccountService>(accountService, args); | 133 | m_UserAccountService = ServerUtils.LoadPlugin<IUserAccountService>(accountService, args); |
134 | m_GridUserService = ServerUtils.LoadPlugin<IGridUserService>(gridUserService, args); | 134 | m_GridUserService = ServerUtils.LoadPlugin<IGridUserService>(gridUserService, args); |
135 | m_AuthenticationService = ServerUtils.LoadPlugin<IAuthenticationService>(authService, args); | 135 | Object[] authArgs = new Object[] { config, m_UserAccountService }; |
136 | m_AuthenticationService = ServerUtils.LoadPlugin<IAuthenticationService>(authService, authArgs); | ||
136 | m_InventoryService = ServerUtils.LoadPlugin<IInventoryService>(invService, args); | 137 | m_InventoryService = ServerUtils.LoadPlugin<IInventoryService>(invService, args); |
137 | 138 | ||
138 | if (gridService != string.Empty) | 139 | if (gridService != string.Empty) |
@@ -275,6 +276,12 @@ namespace OpenSim.Services.LLLoginService | |||
275 | return LLFailedLoginResponse.UserProblem; | 276 | return LLFailedLoginResponse.UserProblem; |
276 | } | 277 | } |
277 | 278 | ||
279 | if (account.UserLevel < 0) | ||
280 | { | ||
281 | m_log.InfoFormat("[LLOGIN SERVICE]: Login failed, reason: Unverified account"); | ||
282 | return LLFailedLoginResponse.UnverifiedAccountProblem; | ||
283 | } | ||
284 | |||
278 | if (account.UserLevel < m_MinLoginLevel) | 285 | if (account.UserLevel < m_MinLoginLevel) |
279 | { | 286 | { |
280 | m_log.InfoFormat("[LLOGIN SERVICE]: Login failed, reason: login is blocked for user level {0}", account.UserLevel); | 287 | m_log.InfoFormat("[LLOGIN SERVICE]: Login failed, reason: login is blocked for user level {0}", account.UserLevel); |
diff --git a/OpenSim/Services/UserAccountService/UserAccountService.cs b/OpenSim/Services/UserAccountService/UserAccountService.cs index 4a29690..ad06300 100644 --- a/OpenSim/Services/UserAccountService/UserAccountService.cs +++ b/OpenSim/Services/UserAccountService/UserAccountService.cs | |||
@@ -170,6 +170,10 @@ namespace OpenSim.Services.UserAccountService | |||
170 | Int32.TryParse(d.Data["UserLevel"], out u.UserLevel); | 170 | Int32.TryParse(d.Data["UserLevel"], out u.UserLevel); |
171 | if (d.Data.ContainsKey("UserFlags") && d.Data["UserFlags"] != null) | 171 | if (d.Data.ContainsKey("UserFlags") && d.Data["UserFlags"] != null) |
172 | Int32.TryParse(d.Data["UserFlags"], out u.UserFlags); | 172 | Int32.TryParse(d.Data["UserFlags"], out u.UserFlags); |
173 | if (d.Data.ContainsKey("UserCountry") && d.Data["UserCountry"] != null) | ||
174 | u.UserCountry = d.Data["UserCountry"].ToString(); | ||
175 | else | ||
176 | u.UserTitle = string.Empty; | ||
173 | 177 | ||
174 | if (d.Data.ContainsKey("ServiceURLs") && d.Data["ServiceURLs"] != null) | 178 | if (d.Data.ContainsKey("ServiceURLs") && d.Data["ServiceURLs"] != null) |
175 | { | 179 | { |
@@ -291,7 +295,22 @@ namespace OpenSim.Services.UserAccountService | |||
291 | 295 | ||
292 | public List<UserAccount> GetUserAccounts(UUID scopeID, string query) | 296 | public List<UserAccount> GetUserAccounts(UUID scopeID, string query) |
293 | { | 297 | { |
294 | UserAccountData[] d = m_Database.GetUsers(scopeID, query); | 298 | UserAccountData[] d = m_Database.GetUsers(scopeID, query.Trim()); |
299 | |||
300 | if (d == null) | ||
301 | return new List<UserAccount>(); | ||
302 | |||
303 | List<UserAccount> ret = new List<UserAccount>(); | ||
304 | |||
305 | foreach (UserAccountData data in d) | ||
306 | ret.Add(MakeUserAccount(data)); | ||
307 | |||
308 | return ret; | ||
309 | } | ||
310 | |||
311 | public List<UserAccount> GetUserAccountsWhere(UUID scopeID, string where) | ||
312 | { | ||
313 | UserAccountData[] d = m_Database.GetUsersWhere(scopeID, where); | ||
295 | 314 | ||
296 | if (d == null) | 315 | if (d == null) |
297 | return new List<UserAccount>(); | 316 | return new List<UserAccount>(); |