(file) Return to UserFileHandler.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Security / UserManager

Diff for /pegasus/src/Pegasus/Security/UserManager/UserFileHandler.cpp between version 1.8.6.1 and 1.26

version 1.8.6.1, 2003/07/29 15:08:30 version 1.26, 2008/02/13 06:55:37
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2006////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Company, IBM,  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 // The Open Group, Tivoli Systems  // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation, The Open Group.
   // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; Symantec Corporation; The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 21 
Line 29 
 // //
 //============================================================================== //==============================================================================
 // //
 // Author: Sushma Fernandes, Hewlett Packard Company (sushma_fernandes@hp.com)  
 //  
 // Modified By:  
 //  
 //%//////////////////////////////////////////////////////////////////////////// //%////////////////////////////////////////////////////////////////////////////
  
  
Line 35 
Line 39 
 /////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
  
 #include <Pegasus/Common/FileSystem.h> #include <Pegasus/Common/FileSystem.h>
 #include <Pegasus/Common/Destroyer.h>  
 #include <Pegasus/Common/Logger.h> #include <Pegasus/Common/Logger.h>
 #include <Pegasus/Common/System.h> #include <Pegasus/Common/System.h>
 #include <Pegasus/Common/Tracer.h> #include <Pegasus/Common/Tracer.h>
   #include <Pegasus/Common/IPCExceptions.h>
  
 #include <Pegasus/Config/ConfigManager.h> #include <Pegasus/Config/ConfigManager.h>
  
 #include <Pegasus/Security/UserManager/UserFileHandler.h> #include <Pegasus/Security/UserManager/UserFileHandler.h>
 #include <Pegasus/Security/UserManager/UserExceptions.h> #include <Pegasus/Security/UserManager/UserExceptions.h>
 #include <Pegasus/Common/MessageLoader.h> //l10n  #include <Pegasus/Common/MessageLoader.h>
  
 PEGASUS_USING_STD; PEGASUS_USING_STD;
  
Line 76 
Line 80 
     System::getCurrentTime( sec, milliSec );     System::getCurrentTime( sec, milliSec );
  
     srand( (int) sec );     srand( (int) sec );
   #ifdef PEGASUS_PLATFORM_SOLARIS_SPARC
       Unit32 seed;
       randNum = rand_r(*seed);
   #else
     randNum = rand();     randNum = rand();
   #endif
  
     //     //
     // Make sure the random number generated is between 0-63.     // Make sure the random number generated is between 0-63.
Line 86 
Line 95 
     randNum >>= 6;     randNum >>= 6;
     *salt++ = _SALT_STRING[ randNum & 0x3f ];     *salt++ = _SALT_STRING[ randNum & 0x3f ];
  
     salt[2] = '\0';      *salt = '\0';
  
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
Line 108 
Line 117 
     // Get the PasswordFilePath property from the Config Manager.     // Get the PasswordFilePath property from the Config Manager.
     //     //
     String passwdFile;     String passwdFile;
     passwdFile = configManager->getCurrentValue(      passwdFile = ConfigManager::getHomedPath(
                        _PROPERTY_NAME_PASSWORD_FILEPATH);          configManager->getCurrentValue(_PROPERTY_NAME_PASSWORD_FILEPATH));
  
     //     //
     // Construct a PasswordFile object.     // Construct a PasswordFile object.
     //     //
     _passwordFile   = new PasswordFile(passwdFile);      _passwordFile.reset(new PasswordFile(passwdFile));
  
     //     //
     // Load the user information in to the cache.     // Load the user information in to the cache.
     //     //
     try  
     {  
         _loadAllUsers();         _loadAllUsers();
     }  
     catch  (Exception& e)  
     {  
         throw e;  
     }  
  
     //     //
     // Initialize the mutex, mutex lock needs to be held for any updates     // Initialize the mutex, mutex lock needs to be held for any updates
     // to the password cache and password file.     // to the password cache and password file.
     //     //
     _mutex = new Mutex;      _mutex.reset(new Mutex);
  
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
Line 145 
Line 147 
 { {
     PEG_METHOD_ENTER(TRC_USER_MANAGER, "UserFileHandler::~UserFileHandler");     PEG_METHOD_ENTER(TRC_USER_MANAGER, "UserFileHandler::~UserFileHandler");
  
     delete _passwordFile;  
     delete _mutex;  
   
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
  
Line 163 
Line 162 
         _passwordTable.clear();         _passwordTable.clear();
         _passwordFile->load(_passwordTable);         _passwordFile->load(_passwordTable);
     }     }
     catch (CannotOpenFile cof)      catch (CannotOpenFile&)
     {     {
         _passwordTable.clear();         _passwordTable.clear();
         PEG_METHOD_EXIT();         PEG_METHOD_EXIT();
         throw cof;          throw;
     }     }
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
 } }
Line 187 
Line 186 
  
     try     try
     {     {
         _mutex->timed_lock(_MUTEX_TIMEOUT, pegasus_thread_self());          _mutex->timed_lock(_MUTEX_TIMEOUT);
     }     }
     catch (TimeOut e)      catch (TimeOut&)
     {     {
         //l10n          throw PEGASUS_CIM_EXCEPTION_L(CIM_ERR_FAILED,
         //throw PEGASUS_CIM_EXCEPTION( CIM_ERR_FAILED,              MessageLoaderParms(
         //"Timed out trying to perform requested operation."                  "Security.UserManager.UserFileHandler.TIMEOUT",
         //"Please re-try the operation again.");                  "Timed out while attempting to perform the requested "
         throw PEGASUS_CIM_EXCEPTION_L( CIM_ERR_FAILED, MessageLoaderParms("Security.UserManager.UserFileHandler.TIMEOUT",                      "operation. Try the operation again."));
                                                                         "Timed out trying to perform requested operation.Please re-try the operation again."));      }
     }      catch (WaitFailed&)
     catch (WaitFailed e)      {
     {          throw PEGASUS_CIM_EXCEPTION_L(CIM_ERR_FAILED,
     //l10n              MessageLoaderParms(
         //throw PEGASUS_CIM_EXCEPTION( CIM_ERR_FAILED,                  "Security.UserManager.UserFileHandler.TIMEOUT",
         //"Timed out trying to perform requested operation."                  "Timed out while attempting to perform the requested "
         //"Please re-try the operation again.");                      "operation. Try the operation again."));
         throw PEGASUS_CIM_EXCEPTION_L( CIM_ERR_FAILED, MessageLoaderParms("Security.UserManager.UserFileHandler.TIMEOUT",      }
                                                                         "Timed out trying to perform requested operation.Please re-try the operation again."));      catch (Deadlock&)
     }      {
     catch (Deadlock e)          throw PEGASUS_CIM_EXCEPTION_L(CIM_ERR_FAILED,
     {              MessageLoaderParms(
     //l10n                  "Security.UserManager.UserFileHandler.DEADLOCK",
         //throw PEGASUS_CIM_EXCEPTION( CIM_ERR_FAILED,                  "Deadlock encountered while attempting to perform the "
         //"Deak lock encountered trying to perform requested operation."                      "requested operation.  Try the operation again."));
         //"Please re-try the operation again.");  
         throw PEGASUS_CIM_EXCEPTION_L( CIM_ERR_FAILED, MessageLoaderParms("Security.UserManager.UserFileHandler.DEADLOCK",  
                                                 "Deak lock encountered trying to perform requested operation.Please re-try the operation again."));  
     }     }
  
     switch (operation)     switch (operation)
Line 238 
Line 234 
                 if (!_passwordTable.insert(userName,password))                 if (!_passwordTable.insert(userName,password))
                 {                 {
                     _mutex->unlock();                     _mutex->unlock();
                     //l10n                      Logger::put_l(
                     //Logger::put(Logger::ERROR_LOG, System::CIMSERVER,                          Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
                                         //Logger::SEVERE,                          "Security.UserManager.UserFileHandler."
                                         //"Error updating user information for : $0.",userName);                              "ERROR_UPDATING_USER_INFO",
                                         Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER,Logger::SEVERE,                          "Error updating the user information for user $0.",
                                                 "Security.UserManager.UserFileHandler.ERROR_UPDATING_USER_INFO",                          userName);
                                                 "Error updating user information for : $0.",userName);  
                     PEG_METHOD_EXIT();                     PEG_METHOD_EXIT();
                     throw PasswordCacheError();                     throw PasswordCacheError();
                 }                 }
Line 271 
Line 266 
     {     {
         _passwordFile->save(_passwordTable);         _passwordFile->save(_passwordTable);
     }     }
     catch (CannotOpenFile& e)      catch (const CannotOpenFile&)
     {     {
         _mutex->unlock();         _mutex->unlock();
         PEG_METHOD_EXIT();         PEG_METHOD_EXIT();
         throw e;          throw;
     }     }
     catch (CannotRenameFile& e)      catch (const CannotRenameFile&)
     {     {
         //         //
         // reload password hash table from file         // reload password hash table from file
Line 286 
Line 281 
  
         _mutex->unlock();         _mutex->unlock();
         PEG_METHOD_EXIT();         PEG_METHOD_EXIT();
         throw e;          throw;
     }     }
     _mutex->unlock();     _mutex->unlock();
     PEG_METHOD_EXIT();     PEG_METHOD_EXIT();
Line 301 
Line 296 
                             const String& password)                             const String& password)
 { {
     char        salt[3];     char        salt[3];
     String      encryptedPassword = String::EMPTY;      String encryptedPassword;
  
     PEG_METHOD_ENTER(TRC_USER_MANAGER, "UserFileHandler::addUserEntry");     PEG_METHOD_ENTER(TRC_USER_MANAGER, "UserFileHandler::addUserEntry");
  
Line 332 
Line 327 
              const String& newPassword )              const String& newPassword )
 { {
     char        salt[3];     char        salt[3];
     String      encryptedPassword = String::EMPTY;      String encryptedPassword;
  
     PEG_METHOD_ENTER(TRC_USER_MANAGER, "UserFileHandler::modifyUserEntry");     PEG_METHOD_ENTER(TRC_USER_MANAGER, "UserFileHandler::modifyUserEntry");
  
     //     //
     // Check if the given password matches the passwd in the file     // Check if the given password matches the passwd in the file
     //     //
     try  
     {  
         if ( !verifyCIMUserPassword (userName,password) )         if ( !verifyCIMUserPassword (userName,password) )
         {         {
             PEG_METHOD_EXIT();             PEG_METHOD_EXIT();
             throw PasswordMismatch(userName);             throw PasswordMismatch(userName);
         }         }
     }  
     catch (Exception& e)  
     {  
         PEG_METHOD_EXIT();  
         throw e;  
     }  
  
     // encrypt new password     // encrypt new password
     _GetSalt(salt);     _GetSalt(salt);
Line 413 
Line 400 
                      "UserFileHandler::verifyCIMUserPassword");                      "UserFileHandler::verifyCIMUserPassword");
  
     // Check if the user's password mathches the specified password     // Check if the user's password mathches the specified password
     String curPassword          = String::EMPTY;      String curPassword;
     String encryptedPassword    = String::EMPTY;      String encryptedPassword;
     String saltStr              = String::EMPTY;      String saltStr;
  
     // Check if the user exists in the password table     // Check if the user exists in the password table
     if ( !_passwordTable.lookup(userName,curPassword) )     if ( !_passwordTable.lookup(userName,curPassword) )


Legend:
Removed from v.1.8.6.1  
changed lines
  Added in v.1.26

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2