(file) Return to TraceFileHandler.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/TraceFileHandler.cpp between version 1.5 and 1.31.2.2

version 1.5, 2002/07/17 22:46:55 version 1.31.2.2, 2007/01/11 01:34:35
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: Rudy Schuet (rudy.schuet@compaq.com) 11/12/01  
 //              added nsk platform support  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include <fstream>  
 #include <iostream>  
 #include <Pegasus/Common/FileSystem.h> #include <Pegasus/Common/FileSystem.h>
 #include <Pegasus/Common/TraceFileHandler.h> #include <Pegasus/Common/TraceFileHandler.h>
   #include <Pegasus/Common/Executor.h>
  
 #if defined(PEGASUS_OS_TYPE_WINDOWS) #if defined(PEGASUS_OS_TYPE_WINDOWS)
 # include <Pegasus/Common/TraceFileHandlerWindows.cpp> # include <Pegasus/Common/TraceFileHandlerWindows.cpp>
 #elif defined(PEGASUS_OS_TYPE_UNIX)  #elif defined(PEGASUS_OS_TYPE_UNIX) || defined(PEGASUS_OS_VMS)
 # include <Pegasus/Common/TraceFileHandlerUnix.cpp>  # include <Pegasus/Common/TraceFileHandlerPOSIX.cpp>
 #elif defined(PEGASUS_OS_TYPE_NSK)  
 # include <Pegasus/Common/TraceFileHandlerNsk.cpp>  
 #else #else
 # error "Unsupported platform" # error "Unsupported platform"
 #endif #endif
Line 57 
Line 57 
     _fileName = 0;     _fileName = 0;
     _fileHandle = 0;     _fileHandle = 0;
     _wroteToLog = false;     _wroteToLog = false;
   #ifdef PEGASUS_PLATFORM_LINUX_GENERIC_GNU
       _baseFileName = 0;
       _fileCount = 0;
   #endif
 } }
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
Line 70 
Line 74 
     {     {
         fclose(_fileHandle);         fclose(_fileHandle);
     }     }
     if (_fileName)  
     {  
         delete []_fileName;         delete []_fileName;
     }  #ifdef PEGASUS_PLATFORM_LINUX_GENERIC_GNU
       delete [] _baseFileName;
   #endif
 } }
  
 //////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
Line 83 
Line 87 
  
 Uint32 TraceFileHandler::setFileName(const char* fileName) Uint32 TraceFileHandler::setFileName(const char* fileName)
 { {
     if (!isValidFilePath(fileName))      // If a file is already open, close it
     {  
         return 1;  
     }  
     // Check if a file is already open, if so close it  
     if (_fileHandle)     if (_fileHandle)
     {     {
         fclose(_fileHandle);         fclose(_fileHandle);
           _fileHandle = 0;
     }     }
  
     // Now open the file      delete [] _fileName;
     _fileHandle = fopen(fileName,"a+");      _fileName = 0;
     if (!_fileHandle)  #ifdef PEGASUS_PLATFORM_LINUX_GENERIC_GNU
       delete [] _baseFileName;
       _baseFileName = 0;
   #endif
   
       if (!isValidFilePath(fileName))
     {     {
         // Unable to open file, log a message  
         Logger::put(Logger::DEBUG_LOG,"Tracer",Logger::WARNING,  
            "Failed to open File $0",fileName);  
             return 1;             return 1;
     }     }
     else      _fileHandle = _openFile(fileName);
     {      if (!_fileHandle)
         if (_fileName)  
         {         {
             delete [] _fileName;          return 1;
         }         }
   
         _fileName = new char [strlen(fileName)+1];         _fileName = new char [strlen(fileName)+1];
         strcpy (_fileName,fileName);         strcpy (_fileName,fileName);
   #ifdef PEGASUS_PLATFORM_LINUX_GENERIC_GNU
       _baseFileName = new char[strlen(fileName)+1];
       strcpy(_baseFileName, fileName);
   #endif
   
       return 0;
   }
   
   FILE* TraceFileHandler::_openFile(const char* fileName)
   {
   #ifdef PEGASUS_OS_VMS
       FILE* fileHandle = fopen(fileName,"w", "shr=get,put,upd");
   #else
       FILE* fileHandle = Executor::openFile(fileName, 'a');
   #endif
       if (!fileHandle)
       {
           // Unable to open file, log a message
           Logger::put_l(Logger::DEBUG_LOG, System::CIMSERVER, Logger::WARNING,
               "Common.TraceFileHandler.FAILED_TO_OPEN_FILE",
               "Failed to open file $0", fileName);
           return 0;
     }     }
   
       // We are done if the executor was used to perform this. Otherwise, we
       // must proceed to fix file ownership and permissions.
   
       if (Executor::detectExecutor() == 0)
           return fileHandle;
   
       //
       // Verify that the file has the correct owner
       //
       if (!System::verifyFileOwnership(fileName))
       {
           Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::WARNING,
              "Common.TraceFileHandler.UNEXPECTED_FILE_OWNER",
              "File $0 is not owned by user $1.", fileName,
              System::getEffectiveUserName());
           fclose(fileHandle);
     return 0;     return 0;
 } }
  
       //
       // Set the file permissions to 0600
       //
   #if !defined(PEGASUS_OS_TYPE_WINDOWS)
       if (!FileSystem::changeFilePermissions(
               String(fileName), (S_IRUSR|S_IWUSR)) )
   #else
       if (!FileSystem::changeFilePermissions(
               String(fileName), (_S_IREAD|_S_IWRITE)) )
   #endif
       {
           Logger::put_l(Logger::DEBUG_LOG, System::CIMSERVER, Logger::WARNING,
              "Common.TraceFileHandler.FAILED_TO_SET_FILE_PERMISSIONS",
              "Failed to set permissions on file $0", fileName);
           fclose(fileHandle);
           return 0;
       }
   
       return fileHandle;
   }
   
   static bool _canWrite(const String& path)
   {
       if (Executor::detectExecutor() == 0)
           return true;
       else
           return FileSystem::canWrite(path);
   }
   
 Boolean TraceFileHandler::isValidFilePath(const char* filePath) Boolean TraceFileHandler::isValidFilePath(const char* filePath)
 { {
     String fileName = String(filePath);     String fileName = String(filePath);
Line 128 
Line 199 
     // Check if the file exists and is writable     // Check if the file exists and is writable
     if (FileSystem::exists(fileName))     if (FileSystem::exists(fileName))
     {     {
         if (!FileSystem::canWrite(fileName))          if (!_canWrite(fileName))
         {         {
             return 0;             return 0;
         }         }
Line 140 
Line 211 
     else     else
     {     {
         // Check if directory is writable         // Check if directory is writable
         Uint32 pos = fileName.reverseFind('/');          Uint32 index = fileName.reverseFind('/');
  
         if (pos != PEG_NOT_FOUND)          if (index != PEG_NOT_FOUND)
         {         {
             String dirName = fileName.subString(0,pos);              String dirName = fileName.subString(0,index);
             if (!FileSystem::isDirectory(dirName))             if (!FileSystem::isDirectory(dirName))
             {             {
                 return 0;                 return 0;
             }             }
             if (!FileSystem::canWrite(dirName) )              if (!_canWrite(dirName) )
             {             {
                 return 0;                 return 0;
             }             }
Line 166 
Line 237 
             // current working directory             // current working directory
             FileSystem::getCurrentDirectory(currentDir);             FileSystem::getCurrentDirectory(currentDir);
  
             if (!FileSystem::canWrite(currentDir))              if (!_canWrite(currentDir))
             {             {
                 return 0;                 return 0;
             }             }
Line 176 
Line 247 
             }             }
         }         }
     }     }
     return 1;      PEGASUS_UNREACHABLE(return 1;)
 } }
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.5  
changed lines
  Added in v.1.31.2.2

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2