diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLManager.cs | 4 | ||||
-rw-r--r-- | OpenSim/Framework/Communications/LoginService.cs | 40 | ||||
-rw-r--r-- | OpenSim/Grid/UserServer/MessageServersConnector.cs | 14 | ||||
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 6 |
4 files changed, 35 insertions, 29 deletions
diff --git a/OpenSim/Data/MySQL/MySQLManager.cs b/OpenSim/Data/MySQL/MySQLManager.cs index 38f56c4..a122954 100644 --- a/OpenSim/Data/MySQL/MySQLManager.cs +++ b/OpenSim/Data/MySQL/MySQLManager.cs | |||
@@ -660,7 +660,7 @@ namespace OpenSim.Data.MySQL | |||
660 | return false; | 660 | return false; |
661 | } | 661 | } |
662 | 662 | ||
663 | m_log.Debug("[MySQLManager]: Fetch user retval == " + returnval.ToString()); | 663 | //m_log.Debug("[MySQLManager]: Fetch user retval == " + returnval.ToString()); |
664 | return returnval; | 664 | return returnval; |
665 | } | 665 | } |
666 | 666 | ||
@@ -750,7 +750,7 @@ namespace OpenSim.Data.MySQL | |||
750 | return false; | 750 | return false; |
751 | } | 751 | } |
752 | 752 | ||
753 | m_log.Debug("[MySQLManager]: update user retval == " + returnval.ToString()); | 753 | //m_log.Debug("[MySQLManager]: update user retval == " + returnval.ToString()); |
754 | return returnval; | 754 | return returnval; |
755 | } | 755 | } |
756 | 756 | ||
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs index f8ac75e..d610c51 100644 --- a/OpenSim/Framework/Communications/LoginService.cs +++ b/OpenSim/Framework/Communications/LoginService.cs | |||
@@ -121,25 +121,28 @@ namespace OpenSim.Framework.UserManagement | |||
121 | lastname = (string) requestData["last"]; | 121 | lastname = (string) requestData["last"]; |
122 | 122 | ||
123 | m_log.InfoFormat( | 123 | m_log.InfoFormat( |
124 | "[LOGIN]: Received login request message from user {0} {1}", | 124 | "[LOGIN BEGIN]: Received login request message from user {0} {1}", |
125 | firstname, lastname); | 125 | firstname, lastname); |
126 | 126 | ||
127 | if( requestData.Contains("version")) | 127 | string clientVersion = "Unknown"; |
128 | |||
129 | if (requestData.Contains("version")) | ||
128 | { | 130 | { |
129 | string clientversion = (string)requestData["version"]; | 131 | clientVersion = (string)requestData["version"]; |
130 | m_log.Info("[LOGIN]: Client version: " + clientversion); | ||
131 | } | 132 | } |
132 | 133 | ||
133 | if (requestData.Contains("start")) | 134 | if (requestData.Contains("start")) |
134 | { | 135 | { |
135 | startLocationRequest = (string)requestData["start"]; | 136 | startLocationRequest = (string)requestData["start"]; |
136 | m_log.Info("[LOGIN]: Client requested start location: " + (string)requestData["start"]); | ||
137 | } | 137 | } |
138 | |||
139 | m_log.DebugFormat( | ||
140 | "[LOGIN]: Client is {0}, start location is {1}", clientVersion, startLocationRequest); | ||
138 | 141 | ||
139 | userProfile = GetTheUser(firstname, lastname); | 142 | userProfile = GetTheUser(firstname, lastname); |
140 | if (userProfile == null) | 143 | if (userProfile == null) |
141 | { | 144 | { |
142 | m_log.Info("[LOGIN]: Could not find a profile for " + firstname + " " + lastname); | 145 | m_log.Info("[LOGIN END]: Could not find a profile for " + firstname + " " + lastname); |
143 | 146 | ||
144 | return logResponse.CreateLoginFailedResponse(); | 147 | return logResponse.CreateLoginFailedResponse(); |
145 | } | 148 | } |
@@ -159,7 +162,7 @@ namespace OpenSim.Framework.UserManagement | |||
159 | catch (System.Exception e) | 162 | catch (System.Exception e) |
160 | { | 163 | { |
161 | m_log.InfoFormat( | 164 | m_log.InfoFormat( |
162 | "[LOGIN]: Bad web_login_key: {0} for user {1} {2}, exception {3}", | 165 | "[LOGIN END]: Bad web_login_key: {0} for user {1} {2}, exception {3}", |
163 | requestData["web_login_key"], firstname, lastname, e); | 166 | requestData["web_login_key"], firstname, lastname, e); |
164 | 167 | ||
165 | return logResponse.CreateFailedResponse(); | 168 | return logResponse.CreateFailedResponse(); |
@@ -171,14 +174,14 @@ namespace OpenSim.Framework.UserManagement | |||
171 | else | 174 | else |
172 | { | 175 | { |
173 | m_log.Info( | 176 | m_log.Info( |
174 | "[LOGIN]: login_to_simulator login message did not contain all the required data"); | 177 | "[LOGIN END]: login_to_simulator login message did not contain all the required data"); |
175 | 178 | ||
176 | return logResponse.CreateGridErrorResponse(); | 179 | return logResponse.CreateGridErrorResponse(); |
177 | } | 180 | } |
178 | 181 | ||
179 | if (!GoodLogin) | 182 | if (!GoodLogin) |
180 | { | 183 | { |
181 | m_log.InfoFormat("[LOGIN]: User {0} {1} failed authentication", firstname, lastname); | 184 | m_log.InfoFormat("[LOGIN END]: User {0} {1} failed authentication", firstname, lastname); |
182 | 185 | ||
183 | return logResponse.CreateLoginFailedResponse(); | 186 | return logResponse.CreateLoginFailedResponse(); |
184 | } | 187 | } |
@@ -197,7 +200,7 @@ namespace OpenSim.Framework.UserManagement | |||
197 | // Reject the login | 200 | // Reject the login |
198 | 201 | ||
199 | m_log.InfoFormat( | 202 | m_log.InfoFormat( |
200 | "[LOGIN]: Notifying user {0} {1} that they are already logged in", | 203 | "[LOGIN END]: Notifying user {0} {1} that they are already logged in", |
201 | firstname, lastname); | 204 | firstname, lastname); |
202 | 205 | ||
203 | return logResponse.CreateAlreadyLoggedInResponse(); | 206 | return logResponse.CreateAlreadyLoggedInResponse(); |
@@ -218,8 +221,9 @@ namespace OpenSim.Framework.UserManagement | |||
218 | catch (System.Net.WebException e) | 221 | catch (System.Net.WebException e) |
219 | { | 222 | { |
220 | m_log.ErrorFormat( | 223 | m_log.ErrorFormat( |
221 | "[LOGIN]: Error retrieving inventory skeleton of agent {0}, {1} - {2}", agentID, e.GetType(), e.Message); | 224 | "[LOGIN END]: Error retrieving inventory skeleton of agent {0}, {1} - {2}", |
222 | 225 | agentID, e.GetType(), e.Message); | |
226 | |||
223 | return logResponse.CreateLoginInventoryFailedResponse(); | 227 | return logResponse.CreateLoginInventoryFailedResponse(); |
224 | } | 228 | } |
225 | 229 | ||
@@ -269,7 +273,7 @@ namespace OpenSim.Framework.UserManagement | |||
269 | } | 273 | } |
270 | catch (Exception e) | 274 | catch (Exception e) |
271 | { | 275 | { |
272 | m_log.Info("[LOGIN]: " + e.ToString()); | 276 | m_log.Info("[LOGIN END]: " + e.ToString()); |
273 | return logResponse.CreateDeadRegionResponse(); | 277 | return logResponse.CreateDeadRegionResponse(); |
274 | //return logResponse.ToXmlRpcResponse(); | 278 | //return logResponse.ToXmlRpcResponse(); |
275 | } | 279 | } |
@@ -279,19 +283,19 @@ namespace OpenSim.Framework.UserManagement | |||
279 | if (StatsManager.UserStats != null) | 283 | if (StatsManager.UserStats != null) |
280 | StatsManager.UserStats.AddSuccessfulLogin(); | 284 | StatsManager.UserStats.AddSuccessfulLogin(); |
281 | 285 | ||
282 | m_log.InfoFormat( | 286 | m_log.DebugFormat( |
283 | "[LOGIN]: Authentication of user {0} {1} successful. Sending response to client.", | 287 | "[LOGIN END]: Authentication of user {0} {1} successful. Sending response to client.", |
284 | firstname, lastname); | 288 | firstname, lastname); |
285 | 289 | ||
286 | return logResponse.ToXmlRpcResponse(); | 290 | return logResponse.ToXmlRpcResponse(); |
287 | } | 291 | } |
288 | catch (Exception e) | 292 | catch (Exception e) |
289 | { | 293 | { |
290 | m_log.Info("[LOGIN]: Login failed, " + e.ToString()); | 294 | m_log.Info("[LOGIN END]: Login failed, " + e.ToString()); |
291 | } | 295 | } |
292 | } | 296 | } |
293 | 297 | ||
294 | m_log.Info("[LOGIN]: Login failed. Sending back blank XMLRPC response"); | 298 | m_log.Info("[LOGIN END]: Login failed. Sending back blank XMLRPC response"); |
295 | return response; | 299 | return response; |
296 | } | 300 | } |
297 | finally | 301 | finally |
@@ -654,7 +658,7 @@ namespace OpenSim.Framework.UserManagement | |||
654 | public virtual bool AuthenticateUser(UserProfileData profile, string password) | 658 | public virtual bool AuthenticateUser(UserProfileData profile, string password) |
655 | { | 659 | { |
656 | bool passwordSuccess = false; | 660 | bool passwordSuccess = false; |
657 | m_log.InfoFormat("[LOGIN]: Authenticating {0} {1} ({2})", profile.FirstName, profile.SurName, profile.ID); | 661 | //m_log.InfoFormat("[LOGIN]: Authenticating {0} {1} ({2})", profile.FirstName, profile.SurName, profile.ID); |
658 | 662 | ||
659 | // Web Login method seems to also occasionally send the hashed password itself | 663 | // Web Login method seems to also occasionally send the hashed password itself |
660 | 664 | ||
diff --git a/OpenSim/Grid/UserServer/MessageServersConnector.cs b/OpenSim/Grid/UserServer/MessageServersConnector.cs index b125a0d..6355c4d 100644 --- a/OpenSim/Grid/UserServer/MessageServersConnector.cs +++ b/OpenSim/Grid/UserServer/MessageServersConnector.cs | |||
@@ -169,10 +169,10 @@ namespace OpenSim.Grid.UserServer | |||
169 | { | 169 | { |
170 | m_log.Info("[MSGCONNECTOR]: Sending login notice to registered message servers"); | 170 | m_log.Info("[MSGCONNECTOR]: Sending login notice to registered message servers"); |
171 | } | 171 | } |
172 | else | 172 | // else |
173 | { | 173 | // { |
174 | m_log.Info("[MSGCONNECTOR]: No Message Servers registered, ignoring"); | 174 | // m_log.Debug("[MSGCONNECTOR]: No Message Servers registered, ignoring"); |
175 | } | 175 | // } |
176 | foreach (MessageServerInfo serv in MessageServers.Values) | 176 | foreach (MessageServerInfo serv in MessageServers.Values) |
177 | { | 177 | { |
178 | NotifyMessageServerAboutUser(serv, agentID, sessionID, RegionID, | 178 | NotifyMessageServerAboutUser(serv, agentID, sessionID, RegionID, |
@@ -191,9 +191,9 @@ namespace OpenSim.Grid.UserServer | |||
191 | m_log.Info("[MSGCONNECTOR]: Sending login notice to registered message servers"); | 191 | m_log.Info("[MSGCONNECTOR]: Sending login notice to registered message servers"); |
192 | } | 192 | } |
193 | else | 193 | else |
194 | { | 194 | // { |
195 | m_log.Info("[MSGCONNECTOR]: No Message Servers registered, ignoring"); | 195 | // m_log.Debug("[MSGCONNECTOR]: No Message Servers registered, ignoring"); |
196 | } | 196 | // } |
197 | foreach (MessageServerInfo serv in MessageServers.Values) | 197 | foreach (MessageServerInfo serv in MessageServers.Values) |
198 | { | 198 | { |
199 | NotifyMessageServerAboutUserLogoff(serv,agentID); | 199 | NotifyMessageServerAboutUserLogoff(serv,agentID); |
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index c07777e..d1d97f8 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs | |||
@@ -204,7 +204,7 @@ namespace OpenSim.Grid.UserServer | |||
204 | handlerUserLoggedInAtLocation = OnUserLoggedInAtLocation; | 204 | handlerUserLoggedInAtLocation = OnUserLoggedInAtLocation; |
205 | if (handlerUserLoggedInAtLocation != null) | 205 | if (handlerUserLoggedInAtLocation != null) |
206 | { | 206 | { |
207 | m_log.Info("[LOGIN]: Letting other objects know about login"); | 207 | //m_log.Info("[LOGIN]: Letting other objects know about login"); |
208 | handlerUserLoggedInAtLocation(theUser.ID, theUser.CurrentAgent.SessionID, theUser.CurrentAgent.Region, | 208 | handlerUserLoggedInAtLocation(theUser.ID, theUser.CurrentAgent.SessionID, theUser.CurrentAgent.Region, |
209 | theUser.CurrentAgent.Handle, theUser.CurrentAgent.Position.X,theUser.CurrentAgent.Position.Y,theUser.CurrentAgent.Position.Z, | 209 | theUser.CurrentAgent.Handle, theUser.CurrentAgent.Position.X,theUser.CurrentAgent.Position.Y,theUser.CurrentAgent.Position.Z, |
210 | theUser.FirstName,theUser.SurName); | 210 | theUser.FirstName,theUser.SurName); |
@@ -302,7 +302,9 @@ namespace OpenSim.Grid.UserServer | |||
302 | // See LoginService | 302 | // See LoginService |
303 | protected override InventoryData GetInventorySkeleton(LLUUID userID) | 303 | protected override InventoryData GetInventorySkeleton(LLUUID userID) |
304 | { | 304 | { |
305 | m_log.InfoFormat("[LOGIN]: Contacting inventory service at {0} for inventory skeleton of agent {1}", m_config.InventoryUrl, userID); | 305 | m_log.DebugFormat( |
306 | "[LOGIN]: Contacting inventory service at {0} for inventory skeleton of agent {1}", | ||
307 | m_config.InventoryUrl, userID); | ||
306 | 308 | ||
307 | List<InventoryFolderBase> folders | 309 | List<InventoryFolderBase> folders |
308 | = SynchronousRestObjectPoster.BeginPostObject<Guid, List<InventoryFolderBase>>( | 310 | = SynchronousRestObjectPoster.BeginPostObject<Guid, List<InventoryFolderBase>>( |