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

   1 karl  1.179 //%2006////////////////////////////////////////////////////////////////////////
   2 mike  1.32  //
   3 karl  1.141 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
   4             // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   5             // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   6 karl  1.121 // IBM Corp.; EMC Corporation, The Open Group.
   7 karl  1.141 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   8             // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   9 karl  1.149 // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
  10             // EMC Corporation; VERITAS Software Corporation; The Open Group.
  11 karl  1.179 // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
  12             // EMC Corporation; Symantec Corporation; The Open Group.
  13 mike  1.32  //
  14             // Permission is hereby granted, free of charge, to any person obtaining a copy
  15 kumpf 1.58  // of this software and associated documentation files (the "Software"), to
  16             // deal in the Software without restriction, including without limitation the
  17             // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  18 mike  1.32  // sell copies of the Software, and to permit persons to whom the Software is
  19             // furnished to do so, subject to the following conditions:
  20 karl  1.179 // 
  21 kumpf 1.58  // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
  22 mike  1.32  // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
  23             // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
  24 kumpf 1.58  // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  25             // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  26             // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  27 mike  1.32  // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  28             // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  29             //
  30             //==============================================================================
  31             //
  32             //%/////////////////////////////////////////////////////////////////////////////
  33             
  34             
  35             //////////////////////////////////////////////////////////////////////
  36             //
  37 carolann.graves 1.171 // Notes on daemon operation (Unix) and service operation (Win 32):
  38 mike            1.32  //
  39 david.dillard   1.165 // To run pegasus as a daemon on Unix platforms:
  40 mike            1.32  //
  41 kumpf           1.60  // cimserver
  42 mike            1.32  //
  43 kumpf           1.60  // To NOT run pegasus as a daemon on Unix platforms, set the daemon config
  44                       // property to false:
  45                       //
  46                       // cimserver daemon=false
  47                       //
  48 david.dillard   1.165 // The daemon config property has no effect on windows operation.
  49 mike            1.32  //
  50 mike            1.35  // To shutdown pegasus, use the -s option:
  51 david.dillard   1.165 //
  52                       // cimserver -s
  53 mike            1.35  //
  54 mike            1.32  // To run pegasus as an NT service, there are FOUR  different possibilities:
  55                       //
  56 david.dillard   1.165 // To INSTALL the Pegasus service,
  57 mike            1.32  //
  58                       // cimserver -install
  59                       //
  60 david.dillard   1.165 // To REMOVE the Pegasus service,
  61 mike            1.32  //
  62                       // cimserver -remove
  63                       //
  64 david.dillard   1.165 // To START the Pegasus service,
  65 mike            1.32  //
  66                       // net start cimserver
  67 s.hills         1.117 // or
  68                       // cimserver -start
  69 mike            1.32  //
  70 david.dillard   1.165 // To STOP the Pegasus service,
  71 mike            1.32  //
  72                       // net stop cimserver
  73 s.hills         1.117 // or
  74                       // cimserver -stop
  75 mike            1.32  //
  76 david.dillard   1.165 // Alternatively, you can use the windows service manager. Pegasus shows up
  77 mike            1.32  // in the service database as "Pegasus CIM Object Manager"
  78                       //
  79                       //////////////////////////////////////////////////////////////////////
  80                       
  81                       
  82 mike            1.35  #include <Pegasus/Common/Config.h>
  83 kumpf           1.59  #include <Pegasus/Common/Constants.h>
  84 jim.wunderlich  1.172 #include <Pegasus/Common/PegasusAssert.h>
  85 mike            1.32  #include <Pegasus/Common/FileSystem.h>
  86                       #include <Pegasus/Common/PegasusVersion.h>
  87                       #include <Pegasus/Common/Logger.h>
  88                       #include <Pegasus/Common/System.h>
  89 mike            1.35  #include <Pegasus/Common/Tracer.h>
  90 kumpf           1.174 #include <Pegasus/Common/LanguageParser.h>
  91 mike            1.35  #include <Pegasus/Config/ConfigManager.h>
  92                       #include <Pegasus/Client/CIMClient.h>
  93 h.sterling      1.153 #include <Pegasus/Server/CIMServer.h>
  94                       #include <Service/ServerProcess.h>
  95 kumpf           1.198 #include <Service/ServerShutdownClient.h>
  96                       #include <Service/ServerRunStatus.h>
  97 mike            1.32  
  98 kumpf           1.202 #if defined(PEGASUS_PLATFORM_ZOS_ZSERIES_IBM)
  99 thilo.boehm     1.211 #include <Pegasus/Common/SetFileDescriptorToEBCDICEncoding.h>
 100 thilo.boehm     1.185 #include <Service/ARM_zOS.h>
 101 marek           1.186 # ifdef PEGASUS_ZOS_SECURITY
 102                       // This include file will not be provided in the OpenGroup CVS for now.
 103                       // Do NOT try to include it in your compile
 104                       #  include <Pegasus/Common/safCheckzOS_inline.h>
 105                       # endif
 106 thilo.boehm     1.185 #endif
 107                       
 108 mike            1.211.2.1 #if defined(PEGASUS_OS_TYPE_UNIX) || defined(PEGASUS_OS_VXWORKS)
 109 ouyang.jian     1.200     # include <unistd.h>
 110 kumpf           1.178     # include <sys/types.h>
 111                           # include <sys/stat.h>
 112                           # include <fcntl.h>
 113 mateus.baur     1.175     #endif
 114                           
 115 kumpf           1.199     #ifdef PEGASUS_ENABLE_PRIVILEGE_SEPARATION
 116                           # define PEGASUS_PROCESS_NAME "cimservermain"
 117                           #else
 118                           # define PEGASUS_PROCESS_NAME "cimserver"
 119                           #endif
 120                           
 121                           #include <Pegasus/Common/Executor.h>
 122                           
 123 ouyang.jian     1.206     #ifdef PEGASUS_OS_PASE
 124                           # include <ILEWrapper/ILEUtilities2.h>
 125                           # include <ILEWrapper/qumemultiutil.h>
 126                           #endif
 127                           
 128 kumpf           1.119     PEGASUS_USING_PEGASUS;
 129                           PEGASUS_USING_STD;
 130                           
 131 h.sterling      1.153     //Windows service variables are not defined elsewhere in the product
 132                           //enable ability to override these
 133                           #ifndef PEGASUS_SERVICE_NAME
 134                           #define PEGASUS_SERVICE_NAME "Pegasus CIM Object Manager";
 135 chuck           1.66      #endif
 136 h.sterling      1.153     #ifndef PEGASUS_SERVICE_DESCRIPTION
 137                           #define PEGASUS_SERVICE_DESCRIPTION "Pegasus CIM Object Manager Service";
 138 mike            1.32      #endif
 139                           
 140 ouyang.jian     1.206     #ifdef PEGASUS_OS_PASE
 141                           #include <as400_protos.h> //for _SETCCSID
 142                           #endif
 143                           
 144 h.sterling      1.153     class CIMServerProcess : public ServerProcess
 145                           {
 146                           public:
 147                           
 148 kumpf           1.203         CIMServerProcess()
 149 h.sterling      1.153         {
 150                                   cimserver_set_process(this);
 151                               }
 152                           
 153 kumpf           1.203         virtual ~CIMServerProcess()
 154 h.sterling      1.153         {
 155                               }
 156                           
 157                               //defined in PegasusVersion.h
 158                               virtual const char* getProductName() const
 159                               {
 160                                   return PEGASUS_PRODUCT_NAME;
 161                               }
 162                           
 163                               virtual const char* getExtendedName() const
 164                               {
 165                                   return PEGASUS_SERVICE_NAME;
 166                               }
 167                           
 168                               virtual const char* getDescription() const
 169                               {
 170                                   return PEGASUS_SERVICE_DESCRIPTION;
 171                               }
 172 david.dillard   1.165     
 173 h.sterling      1.153         //defined in PegasusVersion.h
 174 jim.wunderlich  1.180         virtual const char* getCompleteVersion() const
 175                               {
 176 jim.wunderlich  1.181           if (*PEGASUS_PRODUCT_STATUS == '\0' )
 177 kumpf           1.199             return PEGASUS_PRODUCT_VERSION;
 178 jim.wunderlich  1.180           else
 179 kumpf           1.202             return PEGASUS_PRODUCT_VERSION " " PEGASUS_PRODUCT_STATUS;
 180 jim.wunderlich  1.180         }
 181                           
 182                               //defined in PegasusVersion.h
 183 h.sterling      1.153         virtual const char* getVersion() const
 184                               {
 185                                   return PEGASUS_PRODUCT_VERSION;
 186                               }
 187                           
 188                               virtual const char* getProcessName() const
 189                               {
 190                                   return PEGASUS_PROCESS_NAME;
 191                               }
 192                           
 193 kumpf           1.178         int cimserver_run(
 194                                   int argc,
 195                                   char** argv,
 196                                   Boolean shutdownOption,
 197                                   Boolean debugOutputOption);
 198 h.sterling      1.153     
 199 kumpf           1.203         void cimserver_stop();
 200 h.sterling      1.153     };
 201                           
 202 kumpf           1.198     ServerRunStatus _serverRunStatus(
 203                               PEGASUS_PROCESS_NAME, PEGASUS_CIMSERVER_START_FILE);
 204 h.sterling      1.153     AutoPtr<CIMServerProcess> _cimServerProcess(new CIMServerProcess());
 205                           static CIMServer* _cimServer = 0;
 206 konrad.r        1.166     static Thread* dummyInitialThread = 0;
 207 kumpf           1.203     
 208 mike            1.35      //
 209                           //  The command name.
 210                           //
 211                           static const char COMMAND_NAME []    = "cimserver";
 212                           
 213                           //
 214                           //  The constant defining usage string.
 215                           //
 216                           static const char USAGE []           = "Usage: ";
 217                           
 218                           /**
 219                           Constants representing the command line options.
 220                           */
 221                           static const char OPTION_VERSION     = 'v';
 222                           
 223                           static const char OPTION_HELP        = 'h';
 224                           
 225                           static const char OPTION_HOME        = 'D';
 226                           
 227                           static const char OPTION_SHUTDOWN    = 's';
 228                           
 229 kumpf           1.203     static const char LONG_HELP[]        = "help";
 230 a.arora         1.142     
 231 kumpf           1.203     static const char LONG_VERSION[]     = "version";
 232 a.arora         1.142     
 233 kumpf           1.178     static const char OPTION_DEBUGOUTPUT = 'X';
 234 kumpf           1.48      
 235 mike            1.32      /** GetOptions function - This function defines the Options Table
 236 mike            1.35          and sets up the options from that table using the config manager.
 237 kumpf           1.198     
 238                               Some possible exceptions:  NoSuchFile, FileNotReadable, CannotRenameFile,
 239                               ConfigFileSyntaxError, UnrecognizedConfigProperty, InvalidPropertyValue,
 240                               CannotOpenFile.
 241 mike            1.32      */
 242                           void GetOptions(
 243 mike            1.35          ConfigManager* cm,
 244 mike            1.32          int& argc,
 245 mateus.baur     1.193         char** argv,
 246 kumpf           1.198         Boolean shutdownOption)
 247 mike            1.32      {
 248 kumpf           1.198         if (shutdownOption)
 249                               {
 250                                   cm->loadConfigFiles();
 251                               }
 252                               else
 253 mike            1.32          {
 254 kumpf           1.198             cm->mergeConfigFiles();
 255                               }
 256 mateus.baur     1.193     
 257 kumpf           1.198         // Temporarily disable updates to the current configuration
 258                               // file if shutdownOption is true
 259                               cm->useConfigFiles = (shutdownOption==false);
 260 mike            1.33      
 261 kumpf           1.198         cm->mergeCommandLine(argc, argv);
 262 mateus.baur     1.193     
 263 kumpf           1.198         // Enable updates again
 264                               cm->useConfigFiles = true;
 265 mike            1.32      }
 266                           
 267                           /* PrintHelp - This is temporary until we expand the options manager to allow
 268                              options help to be defined with the OptionRow entries and presented from
 269                              those entries.
 270                           */
 271                           void PrintHelp(const char* arg0)
 272                           {
 273 mike            1.35          String usage = String (USAGE);
 274 kumpf           1.202         usage.append(COMMAND_NAME);
 275                               usage.append(" [ [ options ] | [ configProperty=value, ... ] ]\n");
 276                               usage.append("  options\n");
 277                               usage.append("    -v, --version   - displays CIM Server version number\n");
 278                               usage.append("    -h, --help      - prints this help message\n");
 279                               usage.append("    -s              - shuts down CIM Server\n");
 280 kumpf           1.138     #if !defined(PEGASUS_USE_RELEASE_DIRS)
 281 kumpf           1.202         usage.append("    -D [home]       - sets pegasus home directory\n");
 282 humberto        1.97      #endif
 283                           #if defined(PEGASUS_OS_TYPE_WINDOWS)
 284 kumpf           1.202         usage.append("    -install [name] - installs pegasus as a Windows "
 285                                   "Service\n");
 286                               usage.append("                      [name] is optional and overrides "
 287                                   "the\n");
 288                               usage.append("                      default CIM Server Service Name\n");
 289                               usage.append("                      by appending [name]\n");
 290                               usage.append("    -remove [name]  - removes pegasus as a Windows "
 291                                   "Service\n");
 292                               usage.append("                      [name] is optional and overrides "
 293                                   "the\n");
 294                               usage.append("                      default CIM Server Service Name\n");
 295                               usage.append("                      by appending [name]\n");
 296                               usage.append("    -start [name]   - starts pegasus as a Windows Service\n");
 297                               usage.append("                      [name] is optional and overrides "
 298                                   "the\n");
 299                               usage.append("                      default CIM Server Service Name\n");
 300                               usage.append("                      by appending [name]\n");
 301                               usage.append("    -stop [name]    - stops pegasus as a Windows Service\n");
 302                               usage.append("                      [name] is optional and overrides "
 303                                   "the\n");
 304                               usage.append("                      default CIM Server Service Name\n");
 305 kumpf           1.202         usage.append("                      by appending [name]\n\n");
 306                           #endif
 307                               usage.append("  configProperty=value\n");
 308                               usage.append("                    - sets CIM Server configuration "
 309                                   "property\n");
 310 humberto        1.97      
 311                               cout << endl;
 312 kumpf           1.202         cout << _cimServerProcess->getProductName() << " " <<
 313                                   _cimServerProcess->getCompleteVersion() << endl;
 314 humberto        1.97          cout << endl;
 315 david.dillard   1.165     
 316 humberto        1.97      #if defined(PEGASUS_OS_TYPE_WINDOWS)
 317 humberto        1.104         MessageLoaderParms parms("src.Server.cimserver.MENU.WINDOWS", usage);
 318 kumpf           1.152     #elif defined(PEGASUS_USE_RELEASE_DIRS)
 319 kumpf           1.202         MessageLoaderParms parms(
 320                                   "src.Server.cimserver.MENU.HPUXLINUXIA64GNU",
 321                                   usage);
 322 humberto        1.97      #else
 323 kumpf           1.138         MessageLoaderParms parms("src.Server.cimserver.MENU.STANDARD", usage);
 324 humberto        1.97      #endif
 325                               cout << MessageLoader::getMessage(parms) << endl;
 326 mike            1.35      }
 327                           
 328 kumpf           1.202     // This needs to be called at various points in the code depending on the
 329                           // platform and error conditions.
 330                           // We need to delete the _cimServer reference on exit in order for the
 331                           // destructors to get called.
 332 h.sterling      1.156     void deleteCIMServer()
 333                           {
 334 kumpf           1.203         delete _cimServer;
 335                               _cimServer = 0;
 336 kumpf           1.202     
 337                               if (dummyInitialThread)
 338                               {
 339 kumpf           1.199             Thread::clearLanguages();
 340                                   delete dummyInitialThread;
 341 kumpf           1.202         }
 342 h.sterling      1.156     }
 343                           
 344 chuck           1.96      //
 345                           // Dummy function for the Thread object associated with the initial thread.
 346                           // Since the initial thread is used to process CIM requests, this is
 347                           // needed to localize the exceptions thrown during CIM request processing.
 348 david.dillard   1.165     // Note: This function should never be called!
 349                           //
 350 kumpf           1.202     ThreadReturnType PEGASUS_THREAD_CDECL dummyThreadFunc(void* parm)
 351 chuck           1.96      {
 352 kumpf           1.202         return (ThreadReturnType)0;
 353 chuck           1.96      }
 354                           
 355 kumpf           1.199     #ifdef PEGASUS_ENABLE_PRIVILEGE_SEPARATION
 356                           
 357                           static int _extractExecutorSockOpt(int& argc, char**& argv)
 358                           {
 359                               // Extract the "--executor-socket <sock>" option if any. This indicates
 360                               // that the e[x]ecutor is running. The option argument is the socket used
 361                               // to communicate with the executor. Remove the option from the
 362                               // argv list and decrease argc by two.
 363                           
 364                               int sock = -1;
 365                               const char OPT[] = "--executor-socket";
 366                           
 367                               for (int i = 1; i < argc; i++)
 368                               {
 369                                   if (strcmp(argv[i], OPT) == 0)
 370                                   {
 371                                       // Check for missing option argument.
 372                           
 373                                       if (i + 1 == argc)
 374                                       {
 375                                           MessageLoaderParms parms(
 376 kumpf           1.199                         "src.Server.cimserver.MISSING_OPTION_ARGUMENT",
 377                                               "Missing argument for $0 option.",
 378                                               OPT);
 379                                           cerr << argv[0] << ": " << MessageLoader::getMessage(parms) <<
 380                                               endl;
 381                                           exit(1);
 382                                       }
 383                           
 384                                       // Convert argument to positive integer.
 385                           
 386                                       char* end;
 387                                       unsigned long x = strtoul(argv[i+1], &end, 10);
 388                           
 389                                       // Check whether option argument will fit in a signed integer.
 390                           
 391                                       if (*end != '\0' || x > 2147483647)
 392                                       {
 393                                           MessageLoaderParms parms(
 394                                               "src.Server.cimserver.BAD_OPTION_ARGUMENT",
 395                                               "Bad $0 option argument: $1.",
 396                                               OPT,
 397 kumpf           1.199                         argv[i+1]);
 398                                           cerr << argv[0] << ": " << MessageLoader::getMessage(parms) <<
 399                                               endl;
 400                                           exit(1);
 401                                       }
 402                           
 403                                       sock = int(x);
 404                           
 405                                       // Remove "-x <sock>" from argv-argc.
 406                           
 407                                       memmove(argv + i, argv + i + 2, sizeof(char*) * (argc - i - 1));
 408                                       argc -= 2;
 409                                       break;
 410                                   }
 411                               }
 412                           
 413                               if (sock == -1)
 414                               {
 415                                   MessageLoaderParms parms(
 416                                       "src.Server.cimserver.MISSING_OPTION",
 417                                       "Missing $0 option.",
 418 kumpf           1.199                 OPT);
 419                                   cerr << argv[0] << ": " << MessageLoader::getMessage(parms) << endl;
 420                                   exit(1);
 421                               }
 422                           
 423                               return sock;
 424                           }
 425                           
 426                           #endif /* PEGASUS_ENABLE_PRIVILEGE_SEPARATION */
 427 mike            1.35      
 428 mike            1.33      /////////////////////////////////////////////////////////////////////////
 429 mike            1.32      //  MAIN
 430                           //////////////////////////////////////////////////////////////////////////
 431 kumpf           1.199     
 432 mike            1.32      int main(int argc, char** argv)
 433                           {
 434 kumpf           1.196         String pegasusHome;
 435 mike            1.35          Boolean shutdownOption = false;
 436 kumpf           1.178         Boolean debugOutputOption = false;
 437 mday            1.47      
 438 kumpf           1.202         // Set Message loading to process locale
 439                               MessageLoader::_useProcessLocale = true;
 440 humberto        1.97      
 441 mike            1.211.2.3 #if defined(PEGASUS_OS_VXWORKS)
 442                               // On VxWorks, run cimserver from /romfs (read-only file system).
 443                               chdir("/romfs");
 444                           #endif
 445                           
 446 thilo.boehm     1.211     #ifdef PEGASUS_OS_ZOS
 447                               // Direct standard input to /dev/null,
 448                               close(STDIN_FILENO);
 449                               open("/dev/null", O_RDONLY);
 450                           
 451                               if ( setEBCDICEncoding(STDOUT_FILENO)==-1 ||
 452                                    setEBCDICEncoding(STDERR_FILENO)==-1 )
 453                               {
 454                                  PEG_TRACE_CSTRING(TRC_SERVER,Tracer::LEVEL4,
 455                                      "Coud not set stdout or stderr to EBCDIC encoding.");
 456                               }
 457                               // Need to initialize timezone information in the
 458                               // initial processing thread (IPT)
 459                               tzset();
 460                           #endif
 461                           
 462 kv.le           1.140     #if defined(PEGASUS_OS_AIX) && defined(PEGASUS_HAS_MESSAGES)
 463 kumpf           1.202         setlocale(LC_ALL, "");
 464 kv.le           1.140     #endif
 465                           
 466 tony            1.82      #ifndef PEGASUS_OS_TYPE_WINDOWS
 467 kumpf           1.38          //
 468                               // Get environment variables:
 469                               //
 470 kumpf           1.202     # if defined(PEGASUS_OS_AIX) && defined(PEGASUS_USE_RELEASE_DIRS)
 471 kv.le           1.134         pegasusHome = AIX_RELEASE_PEGASUS_HOME;
 472 ouyang.jian     1.210     # elif defined(PEGASUS_OS_PASE)
 473                               const char *tmp = getenv("PEGASUS_HOME");
 474                               pegasusHome = (tmp == 0) ? PASE_DEFAULT_PEGASUS_HOME : tmp;
 475 kumpf           1.202     # elif !defined(PEGASUS_USE_RELEASE_DIRS) || \
 476                               defined(PEGASUS_PLATFORM_ZOS_ZSERIES_IBM)
 477 kumpf           1.38          const char* tmp = getenv("PEGASUS_HOME");
 478                           
 479                               if (tmp)
 480                               {
 481                                   pegasusHome = tmp;
 482                               }
 483 kumpf           1.202     # endif
 484 kumpf           1.38      
 485                               FileSystem::translateSlashes(pegasusHome);
 486 tony            1.82      #else
 487 kumpf           1.38      
 488 kumpf           1.202         // windows only
 489                               //setHome(pegasusHome);
 490                               pegasusHome = _cimServerProcess->getHome();
 491 tony            1.82      #endif
 492 mike            1.32      
 493 kumpf           1.199     #ifdef PEGASUS_ENABLE_PRIVILEGE_SEPARATION
 494                           
 495                               // If invoked with "--executor-socket <socket>" option, then use executor.
 496                           
 497                               Executor::setSock(_extractExecutorSockOpt(argc, argv));
 498                           
 499                               // Ping executor to verify the specified socket is valid.
 500                           
 501                               if (Executor::ping() != 0)
 502                               {
 503                                   MessageLoaderParms parms("src.Server.cimserver.EXECUTOR_PING_FAILED",
 504                                       "Failed to ping the executor on the specified socket.");
 505                                   cerr << argv[0] << ": " << MessageLoader::getMessage(parms) << endl;
 506                                   exit(1);
 507                               }
 508                           
 509                           #endif /* !defined(PEGASUS_ENABLE_PRIVILEGE_SEPARATION) */
 510                           
 511 kumpf           1.60              // Get help, version, and shutdown options
 512 mike            1.35      
 513                                   for (int i = 1; i < argc; )
 514                                   {
 515                                       const char* arg = argv[i];
 516 kumpf           1.202                 if (String::equal(arg,"--help"))
 517 a.arora         1.142                 {
 518                                               PrintHelp(argv[0]);
 519                                               exit(0);
 520                                       }
 521 kumpf           1.202                 else if (String::equal(arg,"--version"))
 522 a.arora         1.142                 {
 523 jim.wunderlich  1.180                     cout << _cimServerProcess->getCompleteVersion() << endl;
 524 a.arora         1.142                     exit(0);
 525                                       }
 526 mike            1.35                  // Check for -option
 527 a.arora         1.142                 else if (*arg == '-')
 528 mike            1.35                  {
 529                                           // Get the option
 530                                           const char* option = arg + 1;
 531                           
 532                                           //
 533                                           // Check to see if user asked for the version (-v option):
 534                                           //
 535 tony            1.83                      if (*option == OPTION_VERSION &&
 536                                               strlen(option) == 1)
 537 mike            1.35                      {
 538 jim.wunderlich  1.180                         cout << _cimServerProcess->getCompleteVersion() << endl;
 539 mike            1.35                          exit(0);
 540                                           }
 541                                           //
 542                                           // Check to see if user asked for help (-h option):
 543                                           //
 544 tony            1.83                      else if (*option == OPTION_HELP &&
 545                                                   (strlen(option) == 1))
 546 mike            1.35                      {
 547                                               PrintHelp(argv[0]);
 548                                               exit(0);
 549                                           }
 550 kumpf           1.138     #if !defined(PEGASUS_USE_RELEASE_DIRS)
 551 tony            1.83                      else if (*option == OPTION_HOME &&
 552                                                   (strlen(option) == 1))
 553 mike            1.35                      {
 554 kumpf           1.60                          if (i + 1 < argc)
 555 mike            1.35                          {
 556                                                   pegasusHome.assign(argv[i + 1]);
 557                                               }
 558                                               else
 559                                               {
 560 humberto        1.99                              String opt(option);
 561 kumpf           1.202                             MessageLoaderParms parms(
 562                                                       "src.Server.cimserver.MISSING_ARGUMENT",
 563                                                       "Missing argument for option -$0",
 564                                                       opt);
 565 h.sterling      1.153                             cout << MessageLoader::getMessage(parms) << endl;
 566 mike            1.35                              exit(0);
 567                                               }
 568                           
 569                                               memmove(&argv[i], &argv[i + 2], (argc-i-1) * sizeof(char*));
 570                                               argc -= 2;
 571                                           }
 572 kumpf           1.63      #endif
 573 kumpf           1.48                      //
 574 kumpf           1.178                     // Check to see if user asked for debug output (-X option):
 575 kumpf           1.48                      //
 576 kumpf           1.178                     else if (*option == OPTION_DEBUGOUTPUT &&
 577 tony            1.83                              (strlen(option) == 1))
 578 kumpf           1.48                      {
 579 kumpf           1.178                         MessageLoaderParms parms(
 580                                                   "src.Server.cimserver.UNSUPPORTED_DEBUG_OPTION",
 581                                                   "Unsupported debug output option is enabled.");
 582 h.sterling      1.153                         cout << MessageLoader::getMessage(parms) << endl;
 583 kumpf           1.178     
 584                                               debugOutputOption = true;
 585                           
 586                           #if defined(PEGASUS_OS_HPUX)
 587                                               System::bindVerbose = true;
 588                           #endif
 589                           
 590 kumpf           1.48                          // remove the option from the command line
 591                                               memmove(&argv[i], &argv[i + 1], (argc-i) * sizeof(char*));
 592 david.dillard   1.165                         argc--;
 593 kumpf           1.48                      }
 594 mike            1.35                      //
 595                                           // Check to see if user asked for shutdown (-s option):
 596                                           //
 597 tony            1.82                      else if (*option == OPTION_SHUTDOWN &&
 598                                                   (strlen(option) == 1))
 599 mike            1.35                      {
 600                                               //
 601 kumpf           1.52                          // Check to see if shutdown has already been specified:
 602 mike            1.35                          //
 603 kumpf           1.52                          if (shutdownOption)
 604 mike            1.35                          {
 605 kumpf           1.202                             MessageLoaderParms parms(
 606                                                       "src.Server.cimserver.DUPLICATE_SHUTDOWN_OPTION",
 607                                                       "Duplicate shutdown option specified.");
 608 david.dillard   1.165     
 609 humberto        1.97                              cout << MessageLoader::getMessage(parms) << endl;
 610 mike            1.35                              exit(0);
 611                                               }
 612                           
 613 kumpf           1.52                          shutdownOption = true;
 614 david.dillard   1.165     
 615 mike            1.35                          // remove the option from the command line
 616                                               memmove(&argv[i], &argv[i + 1], (argc-i) * sizeof(char*));
 617 david.dillard   1.165                         argc--;
 618 mike            1.35                      }
 619                                           else
 620                                               i++;
 621                                       }
 622                                       else
 623                                           i++;
 624 mike            1.32              }
 625 mike            1.35      
 626 kumpf           1.38          //
 627                               // Set the value for pegasusHome property
 628                               //
 629                               ConfigManager::setPegasusHome(pegasusHome);
 630 mike            1.32      
 631 mike            1.35          //
 632 carolann.graves 1.171         // Do the platform specific run
 633 s.hills         1.117         //
 634                           
 635 kumpf           1.178         return _cimServerProcess->platform_run(
 636                                   argc, argv, shutdownOption, debugOutputOption);
 637 s.hills         1.117     }
 638                           
 639 h.sterling      1.153     void CIMServerProcess::cimserver_stop()
 640                           {
 641                               _cimServer->shutdownSignal();
 642                           }
 643 s.hills         1.117     
 644                           //
 645                           // The main, common, running code
 646                           //
 647 david.dillard   1.165     // NOTE: Do NOT call exit().  Use return(), otherwise some platforms
 648 s.hills         1.117     // will fail to shutdown properly/cleanly.
 649                           //
 650 david.dillard   1.165     // TODO: Current change minimal for platform "service" shutdown bug fixes.
 651 carolann.graves 1.171     // Perhaps further extract out common stuff and put into main(), put
 652 david.dillard   1.165     // daemon stuff into platform specific platform_run(), etc.
 653                           // Note: make sure to not put error handling stuff that platform
 654 carolann.graves 1.171     // specific runs may need to deal with better (instead of exit(), etc).
 655 s.hills         1.117     //
 656                           
 657 kumpf           1.178     int CIMServerProcess::cimserver_run(
 658                               int argc,
 659                               char** argv,
 660                               Boolean shutdownOption,
 661                               Boolean debugOutputOption)
 662 s.hills         1.117     {
 663                               Boolean daemonOption = false;
 664                           
 665 ouyang.jian     1.206     #if defined (PEGASUS_OS_PASE) && !defined (PEGASUS_DEBUG)
 666                               // PASE have itself regular for checking privileged user
 667                               if (!System::isPrivilegedUser("*CURRENT  "))
 668                               {
 669                                   MessageLoaderParms parms(
 670                                           "src.Server.cimserver.NO_AUTHORITY.PEGASUS_OS_PASE",
 671                                           "The caller should be a privileged user,"
 672                                           " or the server will not run.");
 673                                   cerr << MessageLoader::getMessage(parms) << endl;
 674                                   exit (1);
 675                               }
 676                               char jobName[11];
 677                               // this function only can be found in PASE environment
 678                               umeGetJobName(jobName, false);
 679                               if (strncmp("QUMECIMOM ", jobName, 10) != 0
 680                                       && strncmp("QUMEENDCIM", jobName, 10) != 0)
 681                               {
 682                                   MessageLoaderParms parms(
 683                                           "src.Server.cimserver.NOT_OFFICIAL_START.PEGASUS_OS_PASE",
 684                                           "cimserver can not be started by user.\nServer will not run.");
 685                                   cerr << MessageLoader::getMessage(parms) << endl;
 686 ouyang.jian     1.206             exit (1);
 687                               }
 688                           
 689                               // Direct standard input, output, and error to /dev/null, 
 690                               // PASE run this job in background, any output in not allowed
 691                               freopen("/dev/null", "r", stdin);
 692                               freopen("/dev/null", "w", stdout);
 693                               freopen("/dev/null", "w", stderr);
 694                           #endif
 695                           
 696 s.hills         1.117         //
 697 mike            1.35          // Get an instance of the Config Manager.
 698                               //
 699 kumpf           1.203         ConfigManager* configManager = ConfigManager::getInstance();
 700 kumpf           1.136         configManager->useConfigFiles = true;
 701 mike            1.35      
 702 mike            1.32          try
 703                               {
 704 kumpf           1.203             //
 705                                   // Get options (from command line and from configuration file); this
 706                                   // removes corresponding options and their arguments from the command
 707                                   // line.  NOTE: If shutdownOption=true, the contents of current config
 708                                   // file are not overwritten by the planned config file.
 709                                   //
 710 mateus.baur     1.193             GetOptions(configManager, argc, argv, shutdownOption);
 711 kumpf           1.127     
 712 kumpf           1.203             //
 713                                   // Initialize the message home directory in the MessageLoader.
 714                                   // This is the default directory where the resource bundles are found.
 715                                   //
 716                                   MessageLoader::setPegasusMsgHome(ConfigManager::getHomedPath(
 717                                       ConfigManager::getInstance()->getCurrentValue("messageDir")));
 718 kumpf           1.86      
 719 ouyang.jian     1.206     #ifdef PEGASUS_OS_PASE
 720                               // set ccsid to unicode for entire job
 721                               // ccsid is globolization mechanism in PASE environment
 722                               if (_SETCCSID(1208) == -1)
 723                               {
 724                                   MessageLoaderParms parms(
 725                                           "src.Server.cimserver.SET_CCSID_ERROR.PEGASUS_OS_PASE",
 726                                           "Failed to set CCSID, server will stop.");
 727                                   cerr << MessageLoader::getMessage(parms) << endl;
 728                                   Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::FATAL,
 729                                           "src.Server.cimserver.SET_CCSID_ERROR.PEGASUS_OS_PASE",
 730                                           "Failed to set CCSID, server will stop.\n");
 731                                   exit (1);
 732                               }
 733                           
 734                               char fullJobName[29];
 735                               umeGetJobName(fullJobName, true);
 736                               Logger::put_l(Logger::STANDARD_LOG, System::CIMSERVER, Logger::INFORMATION,
 737                                       "src.Server.cimserver.SERVER_JOB_NAME.PEGASUS_OS_PASE",
 738                                       "CIM Server's Job Name is: $0", fullJobName);
 739                           #endif
 740 ouyang.jian     1.206     
 741                               Boolean enableHttpConnection = ConfigManager::parseBooleanValue(
 742                                   configManager->getCurrentValue("enableHttpConnection"));
 743                               Boolean enableHttpsConnection = ConfigManager::parseBooleanValue(
 744                                   configManager->getCurrentValue("enableHttpsConnection"));
 745                           
 746                               // Make sure at least one connection is enabled
 747                           #ifdef PEGASUS_DISABLE_LOCAL_DOMAIN_SOCKET
 748                               if (!enableHttpConnection && !enableHttpsConnection)
 749                               {
 750                                   //l10n
 751                                   //Logger::put(Logger::STANDARD_LOG, System::CIMSERVER, Logger::WARNING,
 752                                       //"Neither HTTP nor HTTPS connection is enabled.  "
 753                                       //"CIMServer will not be started.");
 754                                   Logger::put_l(Logger::STANDARD_LOG, System::CIMSERVER, Logger::WARNING,
 755                                       "src.Server.cimserver.HTTP_NOT_ENABLED_SERVER_NOT_STARTING",
 756                                       "Neither HTTP nor HTTPS connection is enabled."
 757                                       "  CIMServer will not be started.");
 758                                   //cerr << "Neither HTTP nor HTTPS connection is enabled.  "
 759                                       //"CIMServer will not be started." << endl;
 760                                   MessageLoaderParms parms(
 761 ouyang.jian     1.206                     "src.Server.cimserver.HTTP_NOT_ENABLED_SERVER_NOT_STARTING",
 762                                           "Neither HTTP nor HTTPS connection is enabled."
 763                                           "  CIMServer will not be started.");
 764                                   cerr << MessageLoader::getMessage(parms) << endl;
 765                                   return(1);
 766                               }
 767                           #endif
 768 mike            1.35              //
 769 kumpf           1.187             // Check to see if we should start Pegasus as a daemon
 770 mike            1.35              //
 771 mike            1.211.2.2 
 772                           // ATTN-MEB: put this back!
 773                           #if defined(PEGASUS_OS_VXWORKS)
 774                                   daemonOption = false;
 775                           #else
 776 kumpf           1.187             daemonOption = ConfigManager::parseBooleanValue(
 777                                       configManager->getCurrentValue("daemon"));
 778 mike            1.211.2.2 #endif
 779 david.dillard   1.165     
 780 konrad.r        1.161     #if !defined(PEGASUS_USE_SYSLOGS)
 781 kumpf           1.203             String logsDirectory = ConfigManager::getHomedPath(
 782                                       configManager->getCurrentValue("logdir"));
 783 kumpf           1.36      
 784 kumpf           1.203             // Set up the Logger.  This does not open the logs.
 785 kumpf           1.36              // Might be more logical to clean before set.
 786                                   Logger::setHomeDirectory(logsDirectory);
 787 ouyang.jian     1.206             
 788                           # ifdef PEGASUS_OS_PASE
 789                               /* write job log to tell where pegasus log is.*/
 790                               if(logsDirectory.size() > 0)
 791                                   // this function only can be found in PASE environment
 792                                   logPegasusDir2joblog(logsDirectory.getCString());
 793                               else
 794                                   logPegasusDir2joblog(".");
 795                           # endif
 796 kumpf           1.57      #endif
 797 kumpf           1.36      
 798                                   //
 799 david.dillard   1.165             // Check to see if we need to shutdown CIMOM
 800 mike            1.35              //
 801                                   if (shutdownOption)
 802                                   {
 803 david.dillard   1.165                 String configTimeout =
 804 kumpf           1.60                      configManager->getCurrentValue("shutdownTimeout");
 805 kumpf           1.202                 Uint32 timeoutValue =
 806                                           strtol(configTimeout.getCString(), (char **)0, 10);
 807 dave.sudlik     1.191     #ifdef PEGASUS_SLP_REG_TIMEOUT
 808 kumpf           1.202                 // To deregister Pegasus with SLP
 809 dave.sudlik     1.191                 unregisterPegasusFromSLP();
 810                           #endif
 811 david.dillard   1.165     
 812 kumpf           1.198                 ServerShutdownClient serverShutdownClient(&_serverRunStatus);
 813                                       serverShutdownClient.shutdown(timeoutValue);
 814 kumpf           1.45      
 815 kumpf           1.198                 MessageLoaderParms parms(
 816                                           "src.Server.cimserver.SERVER_STOPPED",
 817                                           "CIM Server stopped.");
 818 humberto        1.106     
 819 humberto        1.97                  cout << MessageLoader::getMessage(parms) << endl;
 820 kumpf           1.202                 return 0;
 821 mike            1.35              }
 822 mike            1.32      
 823 kumpf           1.198     #if defined(PEGASUS_DEBUG) && !defined(PEGASUS_USE_SYSLOGS)
 824 kumpf           1.36              // Leave this in until people get familiar with the logs.
 825 humberto        1.97              MessageLoaderParms parms("src.Server.cimserver.LOGS_DIRECTORY",
 826 h.sterling      1.153                                      "Logs Directory = ");
 827 humberto        1.97              cout << MessageLoader::getMessage(parms) << logsDirectory << endl;
 828 kumpf           1.57      #endif
 829 mike            1.32          }
 830 kumpf           1.203         catch (Exception& e)
 831 mike            1.32          {
 832 kumpf           1.203             MessageLoaderParms parms("src.Server.cimserver.SERVER_NOT_STARTED",
 833                                       "cimserver not started: $0", e.getMessage());
 834                                   Logger::put(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 835                                       MessageLoader::getMessage(parms));
 836                                   cerr << MessageLoader::getMessage(parms) << endl;
 837                           
 838                                   return 1;
 839 marek           1.186         }
 840 david           1.85      
 841 marek           1.186     #if defined(PEGASUS_PLATFORM_ZOS_ZSERIES_IBM) && defined(PEGASUS_ZOS_SECURITY)
 842                               startupCheckBPXServer(true);
 843                               startupCheckProfileCIMSERVclassWBEM();
 844                               startupEnableMSC();
 845 david           1.85      #endif
 846 mike            1.32      
 847 kumpf           1.139     #if defined(PEGASUS_DEBUG)
 848 mike            1.32          // Put out startup up message.
 849 kumpf           1.202         cout << _cimServerProcess->getProductName() << " " <<
 850                                   _cimServerProcess->getCompleteVersion() << endl;
 851 humberto        1.97      #endif
 852                           
 853 kumpf           1.202         // reset message loading to NON-process locale
 854                               MessageLoader::_useProcessLocale = false;
 855 mike            1.32      
 856 kumpf           1.137         // Get the parent's PID before forking
 857 kumpf           1.198         _serverRunStatus.setParentPid(System::getPID());
 858 david.dillard   1.165     
 859 kumpf           1.202         // Do not fork when using privilege separation (executor will daemonize
 860                               // itself later).
 861 kumpf           1.63          if (daemonOption)
 862                               {
 863 kumpf           1.202             if (-1 == _cimServerProcess->cimserver_fork())
 864                                       return -1;
 865 kumpf           1.63          }
 866 chuck           1.66      
 867 chuck           1.96          // Now we are after the fork...
 868                               // Create a dummy Thread object that can be used to store the
 869 kumpf           1.176         // AcceptLanguageList object for CIM requests that are serviced
 870 chuck           1.96          // by this thread (initial thread of server).  Need to do this
 871                               // because this thread is not in a ThreadPool, but is used
 872                               // to service CIM requests.
 873                               // The run function for the dummy Thread should never be called,
 874 konrad.r        1.166         dummyInitialThread = new Thread(dummyThreadFunc, NULL, false);
 875 david.dillard   1.165         Thread::setCurrent(dummyInitialThread);
 876 kumpf           1.176         AcceptLanguageList default_al;
 877 kumpf           1.202         try
 878                               {
 879 kumpf           1.203             default_al = LanguageParser::getDefaultAcceptLanguages();
 880                                   Thread::setLanguages(new AcceptLanguageList(default_al));
 881 kumpf           1.202         }
 882                               catch (InvalidAcceptLanguageHeader& e)
 883                               {
 884 kumpf           1.203             Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 885                                       "src.Server.cimserver.FAILED_TO_SET_PROCESS_LOCALE",
 886                                       "Could not convert the system process locale into a valid "
 887                                           "AcceptLanguage format.");
 888                                   Logger::put(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 889                                       e.getMessage());
 890 humberto        1.108         }
 891 david.dillard   1.165     
 892 mike            1.211.2.1 #if !defined(PEGASUS_OS_TYPE_WINDOWS) && !defined(PEGASUS_OS_VXWORKS)
 893 kumpf           1.167         umask(S_IRWXG|S_IRWXO);
 894                           #endif
 895 mday            1.62      
 896 kumpf           1.203         // Start up the CIM Server
 897 mateus.baur     1.175     
 898 kumpf           1.203         try
 899                               {
 900 mike            1.211.2.1 #if defined(PEGASUS_OS_TYPE_UNIX) || defined(PEGASUS_OS_VXWORKS)
 901 kumpf           1.203             //
 902                                   // Lock the CIMSERVER_LOCK_FILE during CIM Server start-up to prevent
 903                                   // concurrent writes to this file by multiple cimserver processes
 904                                   // starting at the same time.
 905                                   //
 906                                   CString startupLockFileName = ConfigManager::getHomedPath(
 907 kumpf           1.204                 PEGASUS_CIMSERVER_START_LOCK_FILE).getCString();
 908 kumpf           1.203     
 909                                   // Make sure the start-up lock file exists
 910                                   FILE* startupLockFile;
 911                                   if ((startupLockFile = fopen(startupLockFileName, "w")) != 0)
 912                                   {
 913                                       fclose(startupLockFile);
 914                                   }
 915 kumpf           1.202     
 916 kumpf           1.203             AutoFileLock fileLock(startupLockFileName);
 917                           #endif
 918 kumpf           1.202     
 919 mike            1.211.2.1 #if defined(PEGASUS_OS_TYPE_UNIX) || \
 920                               defined(PEGASUS_OS_VMS) || \
 921                               defined(PEGASUS_OS_VXWORKS)
 922 kumpf           1.203             //
 923                                   // Check if a CIM Server is already running.  If so, print an error
 924                                   // message and notify the parent process (if there is one) to terminate
 925                                   //
 926                                   if (_serverRunStatus.isServerRunning())
 927                                   {
 928                                       MessageLoaderParms parms(
 929                                           "src.Server.cimserver.UNABLE_TO_START_SERVER_ALREADY_RUNNING",
 930                                           "Unable to start CIMServer. CIMServer is already running.");
 931                                       Logger::put(
 932                                           Logger::ERROR_LOG, System::CIMSERVER, Logger::INFORMATION,
 933                                           MessageLoader::getMessage(parms));
 934                                       cerr << MessageLoader::getMessage(parms) << endl;
 935 mateus.baur     1.175     
 936 kumpf           1.203                 if (daemonOption)
 937                                       {
 938                                           _cimServerProcess->notify_parent(1);
 939                                       }
 940 kumpf           1.79      
 941 kumpf           1.203                 return 1;
 942                                   }
 943 kumpf           1.79      
 944 kumpf           1.198             //
 945 kumpf           1.203             // Declare ourselves as the running CIM Server process, and write our
 946                                   // PID to the PID file.
 947 kumpf           1.79              //
 948 kumpf           1.203             _serverRunStatus.setServerRunning();
 949                           #endif
 950                           
 951                                   // Create and initialize the CIMServer object
 952                           
 953                                   _cimServer = new CIMServer();
 954                           
 955                                   Boolean enableHttpConnection = ConfigManager::parseBooleanValue(
 956                                       configManager->getCurrentValue("enableHttpConnection"));
 957                                   Boolean enableHttpsConnection = ConfigManager::parseBooleanValue(
 958                                       configManager->getCurrentValue("enableHttpsConnection"));
 959                           
 960                           #ifdef PEGASUS_DISABLE_LOCAL_DOMAIN_SOCKET
 961                                   // Make sure at least one connection is enabled
 962                                   if (!enableHttpConnection && !enableHttpsConnection)
 963 kumpf           1.198             {
 964 kumpf           1.203                 MessageLoaderParms parms(
 965                                           "src.Server.cimserver.HTTP_NOT_ENABLED_SERVER_NOT_STARTING",
 966                                           "Neither HTTP nor HTTPS connection is enabled.");
 967                                       throw Exception(parms);
 968 kumpf           1.198             }
 969 kumpf           1.63      #endif
 970 kumpf           1.51      
 971 venkat.puvvada  1.208             Boolean addIP6Acceptor = false;
 972                                   Boolean addIP4Acceptor = false;
 973                           
 974                           #ifdef PEGASUS_OS_TYPE_WINDOWS
 975                                   addIP4Acceptor = true;
 976                           #endif
 977                           
 978                           #ifdef PEGASUS_ENABLE_IPV6
 979                                   // If IPv6 stack is disabled swicth to IPv4 stack.
 980                                   if (System::isIPv6StackActive())
 981                                   {
 982                                       addIP6Acceptor = true;
 983                                   }
 984                                   else
 985                                   {
 986                                       MessageLoaderParms parms(
 987                                           "src.Server.cimserver.IPV6_STACK_NOT_ACTIVE",
 988                                           "IPv6 stack is not active, using IPv4 socket.");
 989                                       Logger::put(
 990                                           Logger::STANDARD_LOG, System::CIMSERVER, Logger::INFORMATION,
 991                                           MessageLoader::getMessage(parms));
 992 venkat.puvvada  1.208     #if defined(PEGASUS_DEBUG)
 993                                       cout << MessageLoader::getMessage(parms) << endl;
 994                           #endif
 995                                   }
 996                           #endif
 997                                   if (!addIP6Acceptor)
 998                                   {
 999                                       addIP4Acceptor = true;
1000                                   }
1001                           
1002 kumpf           1.203             // The server HTTP and HTTPS ports are determined via this algorithm:
1003                                   // 1) If the user explicitly specified a port, use it.
1004                                   // 2) If the user did not specify a port, get the port from the
1005                                   //    services file.
1006                                   // 3) If no value is specified in the services file, use the IANA WBEM
1007                                   //    default port.
1008                                   // Note that 2 and 3 are done within the System::lookupPort method
1009                                   // An empty string from the ConfigManager implies that the user did not
1010                                   // specify a port.
1011 kumpf           1.41      
1012 kumpf           1.86              if (enableHttpConnection)
1013                                   {
1014 kumpf           1.203                 Uint32 portNumberHttp = 0;
1015                                       String httpPort = configManager->getCurrentValue("httpPort");
1016                                       if (httpPort == String::EMPTY)
1017                                       {
1018                                           //
1019                                           // Look up the WBEM-HTTP port number
1020                                           //
1021                                           portNumberHttp = System::lookupPort(
1022                                               WBEM_HTTP_SERVICE_NAME, WBEM_DEFAULT_HTTP_PORT);
1023                                       }
1024                                       else
1025                                       {
1026                                           //
1027                                           // user-specified
1028                                           //
1029                                           CString portString = httpPort.getCString();
1030                                           char* end = 0;
1031                                           portNumberHttp = strtol(portString, &end, 10);
1032                                           if (!(end != 0 && *end == '\0'))
1033                                           {
1034                                               throw InvalidPropertyValue("httpPort", httpPort);
1035 kumpf           1.203                     }
1036                                       }
1037                           
1038 venkat.puvvada  1.208                 if (addIP6Acceptor)
1039                                       {
1040                                           _cimServer->addAcceptor(HTTPAcceptor::IPV6_CONNECTION,
1041                                               portNumberHttp, false);
1042                                       }
1043                                       if (addIP4Acceptor)
1044                                       {
1045                                           _cimServer->addAcceptor(HTTPAcceptor::IPV4_CONNECTION,
1046                                               portNumberHttp, false);
1047                                       }
1048 kumpf           1.198     
1049 kumpf           1.203                 MessageLoaderParms parms(
1050 kumpf           1.198                     "src.Server.cimserver.LISTENING_ON_HTTP_PORT",
1051                                           "Listening on HTTP port $0.", portNumberHttp);
1052 kumpf           1.203                 Logger::put(
1053                                           Logger::STANDARD_LOG, System::CIMSERVER, Logger::INFORMATION,
1054                                           MessageLoader::getMessage(parms));
1055                           #if defined(PEGASUS_DEBUG)
1056                                       cout << MessageLoader::getMessage(parms) << endl;
1057                           #endif
1058 kumpf           1.86              }
1059 kumpf           1.198     
1060 kumpf           1.86              if (enableHttpsConnection)
1061                                   {
1062 kumpf           1.203                 Uint32 portNumberHttps = 0;
1063                                       String httpsPort = configManager->getCurrentValue("httpsPort");
1064                                       if (httpsPort == String::EMPTY)
1065                                       {
1066                                           //
1067                                           // Look up the WBEM-HTTPS port number
1068                                           //
1069                                           portNumberHttps = System::lookupPort(
1070                                               WBEM_HTTPS_SERVICE_NAME, WBEM_DEFAULT_HTTPS_PORT);
1071                                       }
1072                                       else
1073                                       {
1074                                           //
1075                                           // user-specified
1076                                           //
1077                                           CString portString = httpsPort.getCString();
1078                                           char* end = 0;
1079                                           portNumberHttps = strtol(portString, &end, 10);
1080                                           if (!(end != 0 && *end == '\0'))
1081                                           {
1082                                               throw InvalidPropertyValue("httpsPort", httpsPort);
1083 kumpf           1.203                     }
1084                                       }
1085 venkat.puvvada  1.208                 if (addIP6Acceptor)
1086                                       { 
1087                                           _cimServer->addAcceptor(HTTPAcceptor::IPV6_CONNECTION,
1088                                               portNumberHttps, true);
1089                                       }
1090                                       if (addIP4Acceptor)
1091                                       {
1092                                           _cimServer->addAcceptor(HTTPAcceptor::IPV4_CONNECTION,
1093                                               portNumberHttps, true);
1094                                       }
1095 kumpf           1.203                 MessageLoaderParms parms(
1096 kumpf           1.198                     "src.Server.cimserver.LISTENING_ON_HTTPS_PORT",
1097                                           "Listening on HTTPS port $0.", portNumberHttps);
1098 kumpf           1.203                 Logger::put(
1099                                           Logger::STANDARD_LOG, System::CIMSERVER, Logger::INFORMATION,
1100                                           MessageLoader::getMessage(parms));
1101                           #if defined(PEGASUS_DEBUG)
1102                                       cout << MessageLoader::getMessage(parms) << endl;
1103                           #endif
1104 kumpf           1.86              }
1105 kumpf           1.135     
1106 h.sterling      1.159     #ifndef PEGASUS_DISABLE_LOCAL_DOMAIN_SOCKET
1107 kumpf           1.203             {
1108 dave.sudlik     1.205                 _cimServer->addAcceptor(HTTPAcceptor::LOCAL_CONNECTION, 0, false);
1109 kumpf           1.86      
1110 kumpf           1.198                 MessageLoaderParms parms(
1111 kumpf           1.203                     "src.Server.cimserver.LISTENING_ON_LOCAL",
1112                                           "Listening on local connection socket.");
1113                                       Logger::put(
1114                                           Logger::STANDARD_LOG, System::CIMSERVER, Logger::INFORMATION,
1115                                           MessageLoader::getMessage(parms));
1116                           # if defined(PEGASUS_DEBUG)
1117 h.sterling      1.153                 cout << MessageLoader::getMessage(parms) << endl;
1118 kumpf           1.203     # endif
1119 kumpf           1.86              }
1120 david           1.85      #endif
1121 mike            1.35      
1122 kumpf           1.198             _cimServer->bind();
1123 kumpf           1.199     
1124 kumpf           1.198             // notify parent process (if there is a parent process) to terminate
1125 konrad.r        1.95              // so user knows that there is cimserver ready to serve CIM requests.
1126 kumpf           1.198             if (daemonOption)
1127                                   {
1128 kumpf           1.199     #if defined(PEGASUS_ENABLE_PRIVILEGE_SEPARATION)
1129                                       Executor::daemonizeExecutor();
1130                           #else
1131 kumpf           1.198                 _cimServerProcess->notify_parent(0);
1132 kumpf           1.199     #endif
1133 kumpf           1.198             }
1134 mike            1.35      
1135 kumpf           1.139     #if defined(PEGASUS_DEBUG)
1136 kumpf           1.202             cout << "Started. " << endl;
1137 kumpf           1.63      #endif
1138 david.dillard   1.165     
1139 kumpf           1.54              // Put server started message to the logger
1140 kumpf           1.143             Logger::put_l(Logger::STANDARD_LOG, System::CIMSERVER,
1141                                       Logger::INFORMATION,
1142                                       "src.Server.cimserver.STARTED_VERSION",
1143                                       "Started $0 version $1.",
1144 kumpf           1.199                 _cimServerProcess->getProductName(),
1145                                       _cimServerProcess->getCompleteVersion());
1146 kumpf           1.45      
1147 marek           1.190     #if defined(PEGASUS_OS_TYPE_UNIX) && !defined(PEGASUS_OS_ZOS)
1148 kumpf           1.178             if (daemonOption && !debugOutputOption)
1149 kumpf           1.202             {
1150 kumpf           1.178                 // Direct standard input, output, and error to /dev/null,
1151                                       // since we are running as a daemon.
1152 thilo.boehm     1.211                 close(STDIN_FILENO);
1153 kumpf           1.178                 open("/dev/null", O_RDONLY);
1154 thilo.boehm     1.211                 close(STDOUT_FILENO);
1155 kumpf           1.178                 open("/dev/null", O_RDWR);
1156 thilo.boehm     1.211                 close(STDERR_FILENO);
1157 kumpf           1.178                 open("/dev/null", O_RDWR);
1158                                   }
1159                           #endif
1160 kumpf           1.203         }
1161                               catch (Exception& e)
1162                               {
1163                                   MessageLoaderParms parms("src.Server.cimserver.SERVER_NOT_STARTED",
1164                                       "cimserver not started: $0", e.getMessage());
1165                                   Logger::put(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
1166                                       MessageLoader::getMessage(parms));
1167                                   cerr << MessageLoader::getMessage(parms) << endl;
1168 kumpf           1.178     
1169 kumpf           1.203             //
1170                                   // notify parent process (if there is a parent process) to terminate
1171                                   //
1172                                   if (daemonOption)
1173                                       _cimServerProcess->notify_parent(1);
1174                           
1175                                   deleteCIMServer();
1176                                   return 1;
1177                               }
1178                           
1179                               // Run the main CIM Server loop
1180                           
1181                               try
1182                               {
1183 thilo.boehm     1.185     #if defined(PEGASUS_PLATFORM_ZOS_ZSERIES_IBM)
1184                           
1185 kumpf           1.202             // ARM is a z/OS internal restart facility.
1186                                   // This is a z/OS specific change.
1187 thilo.boehm     1.185     
1188                                   // Instatiating the automatic restart manager for zOS
1189                                   ARM_zOS automaticRestartManager;
1190                           
1191                                   // register to zOS ARM
1192                                   automaticRestartManager.Register();
1193                           
1194                           #endif
1195                           
1196 mike            1.35              //
1197                                   // Loop to call CIMServer's runForever() method until CIMServer
1198                                   // has been shutdown
1199                                   //
1200 kumpf           1.202             while (!_cimServer->terminated())
1201                                   {
1202                                       _cimServer->runForever();
1203                                   }
1204 carson.hovey    1.157     
1205 kumpf           1.45              //
1206                                   // normal termination
1207 carson.hovey    1.157             //
1208 kumpf           1.203     
1209 thilo.boehm     1.185     #if defined(PEGASUS_PLATFORM_ZOS_ZSERIES_IBM)
1210                           
1211 kumpf           1.202             // ARM is a z/OS internal restart facility.
1212                                   // This is a z/OS specific change.
1213 thilo.boehm     1.185     
1214                                   // register to zOS ARM
1215                                   automaticRestartManager.DeRegister();
1216                           
1217                           #endif
1218 kumpf           1.143     
1219 kumpf           1.54              // Put server shutdown message to the logger
1220 kumpf           1.143             Logger::put_l(Logger::STANDARD_LOG, System::CIMSERVER,
1221                                       Logger::INFORMATION, "src.Server.cimserver.STOPPED",
1222 h.sterling      1.153                 "$0 stopped.", _cimServerProcess->getProductName());
1223 mike            1.32          }
1224 kumpf           1.202         catch (Exception& e)
1225 marek           1.195         {
1226 kumpf           1.202             MessageLoaderParms parms(
1227 marek           1.195                 "src.Server.cimserver.ERROR",
1228 kumpf           1.202                 "Error: $0",
1229                                       e.getMessage());
1230 kumpf           1.203             Logger::put(Logger::STANDARD_LOG, System::CIMSERVER, Logger::WARNING,
1231                                       MessageLoader::getMessage(parms));
1232                                   cerr << MessageLoader::getMessage(parms) << endl;
1233 marek           1.195     
1234                                   deleteCIMServer();
1235                                   return 1;
1236                               }
1237 mike            1.32      
1238 h.sterling      1.156         deleteCIMServer();
1239 mike            1.32          return 0;
1240                           }

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2