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

Diff for /pegasus/src/Pegasus/Common/Executor.h between version 1.1.2.6 and 1.9

version 1.1.2.6, 2007/01/05 00:32:31 version 1.9, 2010/10/29 05:29:50
Line 1 
Line 1 
 //%2006////////////////////////////////////////////////////////////////////////  //%LICENSE////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development  // Licensed to The Open Group (TOG) under one or more contributor license
 // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.  // agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
 // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;  // this work for additional information regarding copyright ownership.
 // IBM Corp.; EMC Corporation, The Open Group.  // Each contributor licenses this file to you under the OpenPegasus Open
 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;  // Source License; you may not use this file except in compliance with the
 // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.  // License.
 // 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  
 // of this software and associated documentation files (the "Software"), to  
 // deal in the Software without restriction, including without limitation the  
 // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or  
 // sell copies of the Software, and to permit persons to whom the Software is  
 // furnished to do so, subject to the following conditions:  
 //  
 // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN  
 // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED  
 // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT  
 // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR  
 // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT  
 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN  
 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION  
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  
 // //
 //==============================================================================  // Permission is hereby granted, free of charge, to any person obtaining a
   // copy of this software and associated documentation files (the "Software"),
   // to deal in the Software without restriction, including without limitation
   // the rights to use, copy, modify, merge, publish, distribute, sublicense,
   // and/or sell copies of the Software, and to permit persons to whom the
   // Software is furnished to do so, subject to the following conditions:
   //
   // The above copyright notice and this permission notice shall be included
   // in all copies or substantial portions of the Software.
   //
   // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
   // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
   // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
   // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
   // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   //
   //////////////////////////////////////////////////////////////////////////
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 38 
Line 36 
 #include <Pegasus/Common/MessageLoader.h> #include <Pegasus/Common/MessageLoader.h>
 #include <Pegasus/Common/AnonymousPipe.h> #include <Pegasus/Common/AnonymousPipe.h>
 #include <Pegasus/Common/Linkage.h> #include <Pegasus/Common/Linkage.h>
 #include <Pegasus/Common/SessionKey.h>  
 #include <Executor/Defines.h> #include <Executor/Defines.h>
 #include <cstdio> #include <cstdio>
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
   /** The Executor class is used to perform various privileged operations. When
       Pegasus is built with privilege separation, the methods of this class are
       used to submit requests to a privileged process called and "executor". The
       current process communicates with the executor over an anonymous local
       domain socket. But, when Pegasus is built without privilege separation,
       the methods are implemented in the same process (within Executor.cpp).
   
       <br>
       When configured for privilege separation, the Pegasus server runs as two
       processes.
   
       <ul>
           <li>the executor (the cimserver program).
           <li>the server (the cimservermain program).
       </ul>
   
       The "executor" is the parent process. When it starts the server it passes
       the -x option with a socket number. The server checks for this option. It
       if finds it, is assumes it is running in privilege separation mode, in
       which case is calls Executor::setSock() with this socket number.
   
       <br>
       The Executor::detectExecutor() method is used in various places to see if
       the executor is present. For example.
   
           <pre>
           if (Executor::detectExecutor() == 0)
           {
               // Executor is present.
           }
           </pre>
   
       The remaining methods provide an interface for submitting requests to the
       executor over the given socket, if present. Otherwise, the methods are
       handled directly by this class (see Executor.cpp). Here is a typical
       exampe of its usage.
   
           <pre>
           if (Executor::removeFile(path) == 0)
           {
               // File successfully removed.
           }
           </pre>
   
       This example removes the given file. But be aware that the executor defines
       a policy that identifies which files it may removed (or manipulated by the
       other methods). In order to remove a file, the file must be added to the
       executor policy (located in pegasus/src/Executor/Policy.c).
   */
 class PEGASUS_COMMON_LINKAGE Executor class PEGASUS_COMMON_LINKAGE Executor
 { {
 public: public:
  
       /** Sets the local socket used to communicate with the executor.
           Warning: this method must be called before any other method or
           not at all.
           @sock the socket
       */
     static void setSock(int sock);     static void setSock(int sock);
  
     /** Return zero if the executor is present.      /** Return zero if the executor is the parent of the current process.
           If so, the methods below are handled by the executor. Otherwise,
           they are handled by alternative in-process "loopback" methods.
           @return 0=success, -1=failure
     */     */
     static int detectExecutor();     static int detectExecutor();
  
       /** Ping the executor to see if it is responsive.
           @return 0=success, -1=failure
       */
     static int ping();     static int ping();
  
       /** Open the given file with the given mode.  The file permissions are
           governed by Executor policy (if the Executor is called) or by the
           process umask setting.
           @param path the path of the file.
           @param mode 'r'=read, 'w'=write, and 'a'=append.
           @return the file stream or NULL on failure.
       */
     static FILE* openFile(     static FILE* openFile(
         const char* path,         const char* path,
         int mode);         int mode);
  
       /** Rename the given file.
           @param oldPath the path of the old file.
           @param newPath the path of the new file.
           @return 0=success, -1=failure
       */
     static int renameFile(     static int renameFile(
         const char* oldPath,         const char* oldPath,
         const char* newPath);         const char* newPath);
  
       /** Remove the given file.
           @path the path of the file that will be reoved.
           @return 0=success, -1=failure
       */
     static int removeFile(     static int removeFile(
         const char* path);         const char* path);
  
       /** Start a provider agent as the given user. The provider agent will
           load the given provider module.
           @param type of provider module (32 or 64 bit)
           @param module name of provider module to be loaded.
           @param pegasusHome the Pegasus home directory to use to find the
               cimprovagt executable.
           @param userName the user name to run the provider agent as.
           @param pid the PID of the new process (to be eventually passed to
               reapProviderAgent()).
           @param readPipe pipe used to read data from provider agent.
           @param writePipe pipe used to write data from provider agent.
           @return 0=success, -1=failure
       */
     static int startProviderAgent(     static int startProviderAgent(
           unsigned short bitness,
         const char* module,         const char* module,
         int uid,          const String& pegasusHome,
         int gid,          const String& userName,
         int& pid,         int& pid,
         AnonymousPipe*& readPipe,         AnonymousPipe*& readPipe,
         AnonymousPipe*& writePipe);         AnonymousPipe*& writePipe);
  
       /** Cause the executor to complete its daemonization and the cimserver
           command to exit with success status.
           @return 0=success, -1=failure
       */
     static int daemonizeExecutor();     static int daemonizeExecutor();
  
     static int waitPid(      /** Wait for the provider agent to exit.
           @param pid the process id obtained with startProviderAgent().
           @return 0=success, -1=failure
       */
       static int reapProviderAgent(
         int pid);         int pid);
  
     static int pamAuthenticate(      /** Check whether the password is correct for the given user, using an
           underyling authentication mechanism (either PAM or cimserver.passwd
           file).
           @param username the name of a valid system user.
           @param password the clear text password for the given user.
           @return 0=success, -1=failure
       */
       static int authenticatePassword(
         const char* username,         const char* username,
         const char* password,          const char* password);
         SessionKey& sessionKey);  
  
     static int pamValidateUser(      /** Check whether the given user is valid for the underlying authentcation
           mechanism.
           @param username the name of the user.
           @return 0=success, -1=failure
       */
       static int validateUser(
         const char* username);         const char* username);
  
     /** Start authenticating the given *user* using the "local authentication"      /** Begin authenticating the given *user* using the "local authentication"
         algorithm. A file containing a secret token is created on the local         algorithm. A file containing a secret token is created on the local
         file system. The file is only reabable by the given user. The caller          file system. The file is only readable by the given user. The caller
         should pass the *path* of this file to the client, who will attempt to          should pass the path of this file to the client, who will attempt to
         read the secret token from the file and return it to the server. This         read the secret token from the file and return it to the server. This
         token and the session key generated by this function should then be          token and the file path generated by this function should then be
         passed to finishLocalAuth().          passed to authenticateLocal().
           @param username name of user to be challenged.
           @param challenge The challenge file path to be forwared by the caller
               to the client.
           @return 0=success, -1=failure
     */     */
     static int startLocalAuth(      static int challengeLocal(
         const char* user,          const char* username,
         char path[EXECUTOR_BUFFER_SIZE],          char challengeFilePath[EXECUTOR_BUFFER_SIZE]);
         SessionKey& sessionKey);  
  
     /** Start authenticating the given *user* using the "local authentication"      /** Authenticate the given *user* using the "local authentication"
         algorithm. The secret token is read from the file created by         algorithm. The secret token is read from the file created by
         startLocalAuth(). If it matches the *token* argument, then the          challengeLocal(). If it matches the *response* argument,
         authentication is successful (returns zero).          then the authentication is successful (returns zero).
           @param challengeFilePath The file path that was sent to the client
               to challenge for the secret token, generated by challengeLocal().
           @param response The challenge response obtained from the
               authenticating user. This is the response to the challenge
               obtained from challengeLocal().
           @return 0=success, -1=failure
       */
       static int authenticateLocal(
           const char* challengeFilePath,
           const char* response);
   
       /** Update the log level used by the Executor process.
           @param logLevel the new log level to use in the Executor.
           @return 0=success, -1=failure
     */     */
     static int finishLocalAuth(      static int updateLogLevel(
         const SessionKey& sessionKey,          const char* logLevel);
         const char* token);  
  
 private: private:
     // Private to prevent instantiation.     // Private to prevent instantiation.


Legend:
Removed from v.1.1.2.6  
changed lines
  Added in v.1.9

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2