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

   1 karl  1.149 //%2005////////////////////////////////////////////////////////////////////////
   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 mike  1.32  //
  12             // Permission is hereby granted, free of charge, to any person obtaining a copy
  13 kumpf 1.58  // of this software and associated documentation files (the "Software"), to
  14             // deal in the Software without restriction, including without limitation the
  15             // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  16 mike  1.32  // sell copies of the Software, and to permit persons to whom the Software is
  17             // furnished to do so, subject to the following conditions:
  18             // 
  19 kumpf 1.58  // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
  20 mike  1.32  // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
  21             // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
  22 kumpf 1.58  // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  23             // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  24             // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  25 mike  1.32  // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  26             // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  27             //
  28             //==============================================================================
  29             //
  30             // Author: Mike Brasher (mbrasher@bmc.com)
  31             //
  32             // Modified By: Mike Day (mdday@us.ibm.com) 
  33 mike  1.33  //
  34 h.sterling 1.153 // Modified By: Karl Schopmeyer (k.schopmeyer@opengroup.org)
  35 mike       1.32  //
  36 mike       1.35  // Modified By: Nag Boranna (nagaraja_boranna@hp.com)
  37                  //
  38                  // Modified By: Jenny Yu (jenny_yu@hp.com)
  39                  //
  40 kumpf      1.38  // Modified By: Sushma Fernandes (sushma_fernandes@hp.com)
  41 kumpf      1.72  //              Carol Ann Krug Graves, Hewlett-Packard Company
  42                  //                (carolann_graves@hp.com)
  43 h.sterling 1.153 //      Yi Zhou, Hewlett-Packard Company (yi_zhou@hp.com)
  44 kumpf      1.38  //
  45 david      1.85  // Modified By: Dave Rosckes (rosckes@us.ibm.com)
  46                  //
  47 humberto   1.90  // Modified By: Humberto Rivero (hurivero@us.ibm.com)
  48                  //
  49 s.hills    1.117 // Modified By: Steve Hills (steve.hills@ncr.com)
  50 gs.keenan  1.150 //              Sean Keenan, Hewlett-Packard Company (sean.keenan@hp.com)
  51 s.hills    1.117 //
  52 a.arora    1.142 // Modified By: Amit K Arora, IBM (amitarora@in.ibm.com) - pep 167
  53                  //
  54 joyce.j    1.144 // Modified By: Josephine Eskaline Joyce, IBM (jojustin@in.ibm.com) - Bug#2555
  55                  //
  56 joyce.j    1.148 // Modified By: Josephine Eskaline Joyce, IBM (jojustin@in.ibm.com) - Bug#2032
  57                  //
  58 h.sterling 1.153 // Modified By: Heather Sterling, IBM (hsterl@us.ibm.com) - PEP#222
  59                  //
  60 mike       1.32  //%/////////////////////////////////////////////////////////////////////////////
  61                  
  62                  
  63                  //////////////////////////////////////////////////////////////////////
  64                  //
  65                  // Notes on deamon operation (Unix) and service operation (Win 32):
  66                  //
  67 kumpf      1.60  // To run pegasus as a daemon on Unix platforms: 
  68 mike       1.32  //
  69 kumpf      1.60  // cimserver
  70 mike       1.32  //
  71 kumpf      1.60  // To NOT run pegasus as a daemon on Unix platforms, set the daemon config
  72                  // property to false:
  73                  //
  74                  // cimserver daemon=false
  75                  //
  76                  // The daemon config property has no effect on windows operation. 
  77 mike       1.32  //
  78 mike       1.35  // To shutdown pegasus, use the -s option:
  79                  // 
  80 kumpf      1.60  // cimserver -s 
  81 mike       1.35  //
  82 mike       1.32  // To run pegasus as an NT service, there are FOUR  different possibilities:
  83                  //
  84                  // To INSTALL the Pegasus service, 
  85                  //
  86                  // cimserver -install
  87                  //
  88                  // To REMOVE the Pegasus service, 
  89                  //
  90                  // cimserver -remove
  91                  //
  92                  // To START the Pegasus service, 
  93                  //
  94                  // net start cimserver
  95 s.hills    1.117 // or
  96                  // cimserver -start
  97 mike       1.32  //
  98                  // To STOP the Pegasus service, 
  99                  //
 100                  // net stop cimserver
 101 s.hills    1.117 // or
 102                  // cimserver -stop
 103 mike       1.32  //
 104                  // Alternatively, you can use the windows service manager. Pegasus shows up 
 105                  // in the service database as "Pegasus CIM Object Manager"
 106                  //
 107                  // Mike Day, mdday@us.ibm.com
 108                  // 
 109                  //////////////////////////////////////////////////////////////////////
 110                  
 111                  
 112 mike       1.35  #include <Pegasus/Common/Config.h>
 113 kumpf      1.59  #include <Pegasus/Common/Constants.h>
 114 mike       1.32  #include <iostream>
 115 mike       1.35  #include <cassert>
 116 mike       1.32  #include <cstdlib>
 117 kumpf      1.45  #include <fstream>
 118 mike       1.32  #include <Pegasus/Common/FileSystem.h>
 119 mike       1.35  #include <Pegasus/Common/Monitor.h>
 120 mike       1.32  #include <Pegasus/Common/PegasusVersion.h>
 121                  #include <Pegasus/Common/Logger.h>
 122                  #include <Pegasus/Common/System.h>
 123 mike       1.35  #include <Pegasus/Common/Tracer.h>
 124                  #include <Pegasus/Config/ConfigManager.h>
 125                  #include <Pegasus/Client/CIMClient.h>
 126                  #include <Pegasus/Server/ShutdownService.h>
 127 h.sterling 1.153 #include <Pegasus/Server/CIMServer.h>
 128                  #include <Service/ServerProcess.h>
 129 mike       1.32  
 130 chuck      1.155 #if defined(PEGASUS_OS_OS400)
 131                  #  include "vfyptrs.cinc"
 132                  #  include "OS400ConvertChar.h"
 133                  #endif
 134                  
 135 kumpf      1.119 PEGASUS_USING_PEGASUS;
 136                  PEGASUS_USING_STD;
 137                  
 138 h.sterling 1.153 #define PEGASUS_PROCESS_NAME "cimserver";
 139 mike       1.32  
 140 h.sterling 1.153 //Windows service variables are not defined elsewhere in the product
 141                  //enable ability to override these
 142                  #ifndef PEGASUS_SERVICE_NAME
 143                  #define PEGASUS_SERVICE_NAME "Pegasus CIM Object Manager";
 144 chuck      1.66  #endif
 145 h.sterling 1.153 #ifndef PEGASUS_SERVICE_DESCRIPTION
 146                  #define PEGASUS_SERVICE_DESCRIPTION "Pegasus CIM Object Manager Service";
 147 mike       1.32  #endif
 148                  
 149 h.sterling 1.153 class CIMServerProcess : public ServerProcess
 150                  {
 151                  public:
 152                  
 153                      CIMServerProcess(void)
 154                      {
 155                          cimserver_set_process(this);
 156                      }
 157                  
 158                      virtual ~CIMServerProcess(void)
 159                      {
 160                      }
 161                  
 162                      //defined in PegasusVersion.h
 163                      virtual const char* getProductName() const
 164                      {
 165                          return PEGASUS_PRODUCT_NAME;
 166                      }
 167                  
 168                      virtual const char* getExtendedName() const
 169                      {
 170 h.sterling 1.153         return PEGASUS_SERVICE_NAME;
 171                      }
 172                  
 173                      virtual const char* getDescription() const
 174                      {
 175                          return PEGASUS_SERVICE_DESCRIPTION;
 176                      }
 177                      
 178                      //defined in PegasusVersion.h
 179                      virtual const char* getVersion() const
 180                      {
 181                          return PEGASUS_PRODUCT_VERSION;
 182                      }
 183                  
 184                      virtual const char* getProcessName() const
 185                      {
 186                          return PEGASUS_PROCESS_NAME;
 187                      }
 188                  
 189                      //defined in ConfigFileDir.h
 190                      virtual const char* getPIDFileName() const
 191 h.sterling 1.153     {
 192                          return CIMSERVER_START_FILE;
 193                      }
 194                  
 195                      int cimserver_run(int argc, char** argv, bool shutdownOption);
 196                  
 197                      void cimserver_stop(void);
 198                  };
 199                  
 200                  AutoPtr<CIMServerProcess> _cimServerProcess(new CIMServerProcess());
 201                  static CIMServer* _cimServer = 0;
 202                  
 203 mike       1.35  //
 204                  //  The command name.
 205                  //
 206                  static const char COMMAND_NAME []    = "cimserver";
 207                  
 208                  //
 209                  //  The constant defining usage string.
 210                  //
 211                  static const char USAGE []           = "Usage: ";
 212                  
 213                  /**
 214                  Constants representing the command line options.
 215                  */
 216                  static const char OPTION_VERSION     = 'v';
 217                  
 218                  static const char OPTION_HELP        = 'h';
 219                  
 220                  static const char OPTION_HOME        = 'D';
 221                  
 222                  static const char OPTION_SHUTDOWN    = 's';
 223                  
 224 a.arora    1.142 static const char   LONG_HELP []  = "help";
 225                  
 226                  static const char   LONG_VERSION []  = "version";
 227                  
 228 kumpf      1.48  #if defined(PEGASUS_OS_HPUX)
 229                  static const char OPTION_BINDVERBOSE = 'X';
 230                  #endif
 231                  
 232 kumpf      1.54  static const String PROPERTY_TIMEOUT = "shutdownTimeout";
 233 mike       1.35  
 234                  ConfigManager*    configManager;
 235                  
 236 mike       1.32  /** GetOptions function - This function defines the Options Table
 237 mike       1.35      and sets up the options from that table using the config manager.
 238 mike       1.32  */
 239                  void GetOptions(
 240 mike       1.35      ConfigManager* cm,
 241 mike       1.32      int& argc,
 242 s.hills    1.117     char** argv)
 243 mike       1.32  {
 244 mike       1.35      try
 245 mike       1.32      {
 246 kumpf      1.38          cm->mergeConfigFiles();
 247 mike       1.33  
 248 mike       1.35          cm->mergeCommandLine(argc, argv);
 249                      }
 250 kumpf      1.122     catch (NoSuchFile&)
 251 mike       1.35      {
 252 kumpf      1.122         throw;
 253 mike       1.35      }
 254 kumpf      1.122     catch (FileNotReadable&)
 255 mike       1.35      {
 256 kumpf      1.122         throw;
 257 mike       1.35      }
 258 kumpf      1.122     catch (CannotRenameFile&)
 259 mike       1.35      {
 260 kumpf      1.122         throw;
 261 mike       1.35      }
 262 kumpf      1.122     catch (ConfigFileSyntaxError&)
 263 mike       1.35      {
 264 kumpf      1.122         throw;
 265 mike       1.35      }
 266 kumpf      1.122     catch(UnrecognizedConfigProperty&)
 267 mike       1.35      {
 268 kumpf      1.122         throw;
 269 mike       1.35      }
 270 kumpf      1.122     catch(InvalidPropertyValue&)
 271 mike       1.35      {
 272 kumpf      1.122         throw;
 273 mike       1.35      }
 274 kumpf      1.123     catch (CannotOpenFile&)
 275                      {
 276                          throw;
 277                      }
 278 mike       1.32  }
 279                  
 280                  /* PrintHelp - This is temporary until we expand the options manager to allow
 281                     options help to be defined with the OptionRow entries and presented from
 282                     those entries.
 283                  */
 284                  void PrintHelp(const char* arg0)
 285                  {
 286 mike       1.35      String usage = String (USAGE);
 287                      usage.append (COMMAND_NAME);
 288                      usage.append (" [ [ options ] | [ configProperty=value, ... ] ]\n");
 289                      usage.append ("  options\n");
 290 a.arora    1.142     usage.append ("    -v, --version   - displays CIM Server version number\n");
 291                      usage.append ("    -h, --help      - prints this help message\n");
 292 humberto   1.97      usage.append ("    -s              - shuts down CIM Server\n");
 293 kumpf      1.138 #if !defined(PEGASUS_USE_RELEASE_DIRS)
 294                      usage.append ("    -D [home]       - sets pegasus home directory\n");
 295 humberto   1.97  #endif
 296                  #if defined(PEGASUS_OS_TYPE_WINDOWS)
 297 joyce.j    1.148     usage.append ("    -install [name] - installs pegasus as a Windows Service\n");
 298 humberto   1.97      usage.append ("                      [name] is optional and overrides the\n");
 299                      usage.append ("                      default CIM Server Service Name\n");
 300 joyce.j    1.148     usage.append ("    -remove [name]  - removes pegasus as a Windows Service\n");
 301 humberto   1.97      usage.append ("                      [name] is optional and overrides the\n");
 302                      usage.append ("                      default CIM Server Service Name\n");
 303 joyce.j    1.148     usage.append ("    -start [name]   - starts pegasus as a Windows Service\n");
 304 humberto   1.97      usage.append ("                      [name] is optional and overrides the\n");
 305                      usage.append ("                      default CIM Server Service Name\n");
 306 joyce.j    1.148     usage.append ("    -stop [name]    - stops pegasus as a Windows Service\n");
 307 humberto   1.97      usage.append ("                      [name] is optional and overrides the\n");
 308                      usage.append ("                      default CIM Server Service Name\n\n");
 309                  #endif
 310                      usage.append ("  configProperty=value\n");
 311                      usage.append ("                    - sets CIM Server configuration property\n");
 312                  
 313                      cout << endl;
 314 h.sterling 1.153     cout << _cimServerProcess->getProductName() << " " << _cimServerProcess->getVersion() << endl;
 315 humberto   1.97      cout << endl;
 316                      
 317                  #if defined(PEGASUS_OS_TYPE_WINDOWS)
 318 humberto   1.104     MessageLoaderParms parms("src.Server.cimserver.MENU.WINDOWS", usage);
 319 kumpf      1.152 #elif defined(PEGASUS_USE_RELEASE_DIRS)
 320 kumpf      1.138     MessageLoaderParms parms("src.Server.cimserver.MENU.HPUXLINUXIA64GNU", usage);
 321 humberto   1.97  #else
 322 kumpf      1.138     MessageLoaderParms parms("src.Server.cimserver.MENU.STANDARD", usage);
 323 humberto   1.97  #endif
 324                      cout << MessageLoader::getMessage(parms) << endl;
 325 mike       1.35  }
 326                  
 327 h.sterling 1.156 //This needs to be called at various points in the code depending on the platform and error conditions.
 328                  //We need to delete the _cimServer reference on exit in order for the destructors to get called.
 329                  void deleteCIMServer()
 330                  {
 331                      if (_cimServer)
 332                      {
 333                          delete _cimServer;
 334                          _cimServer = 0;
 335                      }
 336                  }
 337                  
 338 chuck      1.96  // l10n
 339                  //
 340                  // Dummy function for the Thread object associated with the initial thread.
 341                  // Since the initial thread is used to process CIM requests, this is
 342                  // needed to localize the exceptions thrown during CIM request processing.
 343                  // Note: This function should never be called! 
 344                  // 
 345                  PEGASUS_THREAD_RETURN PEGASUS_THREAD_CDECL dummyThreadFunc(void *parm)
 346                  {
 347 h.sterling 1.153    return((PEGASUS_THREAD_RETURN)0);    
 348 chuck      1.96  }
 349                  
 350 kumpf      1.52  void shutdownCIMOM(Uint32 timeoutValue)
 351 mike       1.35  {
 352                      //
 353                      // Create CIMClient object
 354                      //
 355 kumpf      1.42      CIMClient client;
 356 mike       1.35  
 357                      //
 358 kumpf      1.53      // Get local host name
 359 mike       1.35      //
 360                      String hostStr = System::getHostName();
 361                  
 362                      //
 363                      // open connection to CIMOM 
 364                      //
 365                      try
 366                      {
 367 kumpf      1.43          client.connectLocal();
 368 kumpf      1.52  
 369                          //
 370 kumpf      1.63          // set client timeout to 2 seconds
 371 kumpf      1.52          //
 372 kumpf      1.71          client.setTimeout(2000);
 373 mike       1.35      }
 374 s.hills    1.117     catch(Exception&)
 375 mike       1.35      {
 376 david      1.85  #ifdef PEGASUS_OS_OS400
 377 h.sterling 1.153     //l10n
 378                      //Logger::put(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 379                              //"Unable to connect to CIM Server.  CIM Server may not be running." );
 380                      Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 381                              "src.Server.cimserver.UNABLE_CONNECT_SERVER_MAY_NOT_BE_RUNNING",
 382                              "Unable to connect to CIM Server.  CIM Server may not be running." );
 383                      // The server job may still be active but not responding.
 384                      // Kill the job if it exists.
 385                      if(_cimServerProcess->cimserver_kill(0) == -1)
 386                         _cimServerProcess->cimserver_exitRC(2);
 387                      _cimServerProcess->cimserver_exitRC(1);
 388 david      1.85  #else
 389 humberto   1.97          //l10n
 390                          //PEGASUS_STD(cerr) << "Unable to connect to CIM Server." << PEGASUS_STD(endl);
 391                          //PEGASUS_STD(cerr) << "CIM Server may not be running." << PEGASUS_STD(endl);
 392                          MessageLoaderParms parms("src.Server.cimserver.UNABLE_CONNECT_SERVER_MAY_NOT_BE_RUNNING",
 393 kumpf      1.105                                                          "Unable to connect to CIM Server.\nCIM Server may not be running.\n");
 394 humberto   1.97          PEGASUS_STD(cerr) << MessageLoader::getMessage(parms);
 395 s.hills    1.117         exit(1);
 396 chuck      1.66  #endif
 397 mike       1.35      }
 398                  
 399                      try
 400                      {
 401                          //
 402 kumpf      1.52          // construct CIMObjectPath
 403 mike       1.35          //
 404                          String referenceStr = "//";
 405                          referenceStr.append(hostStr);
 406 chuck      1.70          referenceStr.append("/");  
 407 kumpf      1.72          referenceStr.append(PEGASUS_NAMESPACENAME_SHUTDOWN.getString());
 408 kumpf      1.53          referenceStr.append(":");
 409 kumpf      1.72          referenceStr.append(PEGASUS_CLASSNAME_SHUTDOWN.getString());
 410 kumpf      1.50          CIMObjectPath reference(referenceStr);
 411 mike       1.35  
 412                          //
 413                          // issue the invokeMethod request on the shutdown method
 414                          //
 415                          Array<CIMParamValue> inParams;
 416                          Array<CIMParamValue> outParams;
 417                  
 418 kumpf      1.52          // set force option to true for now
 419 kumpf      1.40          inParams.append(CIMParamValue("force",
 420 kumpf      1.52              CIMValue(Boolean(true))));
 421 mike       1.35  
 422 kumpf      1.40          inParams.append(CIMParamValue("timeout",
 423 kumpf      1.39              CIMValue(Uint32(timeoutValue))));
 424 mike       1.35  
 425                          CIMValue retValue = client.invokeMethod(
 426 kumpf      1.59              PEGASUS_NAMESPACENAME_SHUTDOWN,
 427 mike       1.35              reference,
 428                              "shutdown",
 429                              inParams,
 430                              outParams);
 431 kumpf      1.43      }
 432 kumpf      1.65      catch(CIMException& e)
 433 kumpf      1.46      {
 434 david      1.85  #ifdef PEGASUS_OS_OS400
 435                  
 436 h.sterling 1.153     if (e.getCode() == CIM_ERR_INVALID_NAMESPACE)
 437                      {
 438                          //l10n
 439                          //Logger::put(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 440                              //"Failed to shutdown server: $0", "The repository may be empty.");
 441                          Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 442                              "src.Server.cimserver.SHUTDOWN_FAILED_REPOSITORY_EMPTY",
 443                              "Error in server shutdown: The repository may be empty.");
 444                      }
 445                      else
 446                      {
 447                          //l10n
 448                          //Logger::put(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 449                              //"Failed to shutdown server: $0", e.getMessage());
 450                          Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 451                              "src.Server.cimserver.SHUTDOWN_FAILED",
 452                              "Error in server shutdown: $0", e.getMessage());
 453                      }
 454                      // Kill the server job.
 455                      if(_cimServerProcess->cimserver_kill(0) == -1)
 456                         _cimServerProcess->cimserver_exitRC(2);
 457 david      1.85  #else
 458 kumpf      1.105         //l10n - TODO
 459 humberto   1.97          MessageLoaderParms parms("src.Server.cimserver.SHUTDOWN_FAILED",
 460 kumpf      1.105                                  "Error in server shutdown: ");
 461 humberto   1.97          PEGASUS_STD(cerr) << MessageLoader::getMessage(parms);
 462 kumpf      1.63          if (e.getCode() == CIM_ERR_INVALID_NAMESPACE)
 463                          {
 464 kumpf      1.105             //
 465                              // Repository may be empty.  
 466                              //
 467                              //l10n - TODO
 468                              Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 469                                  "src.Server.cimserver.SHUTDOWN_FAILED_REPOSITORY_EMPTY",
 470                                  "Error in server shutdown: The repository may be empty.");
 471 humberto   1.97              MessageLoaderParms parms("src.Server.cimserver.REPOSITORY_EMPTY",
 472 kumpf      1.105                                      "The repository may be empty.");
 473                              PEGASUS_STD(cerr) << MessageLoader::getMessage(parms) << PEGASUS_STD(endl);
 474 kumpf      1.63          }
 475                          else
 476                          {
 477 kumpf      1.105             //l10n - TODO
 478                              Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 479                                  "src.Server.cimserver.SHUTDOWN_FAILED",
 480                                  "Error in server shutdown: $0", e.getMessage());
 481 kumpf      1.63              PEGASUS_STD(cerr) << e.getMessage() << PEGASUS_STD(endl);
 482                          }
 483 kumpf      1.105 
 484 h.sterling 1.153     // Kill the cimserver process 
 485                      if (_cimServerProcess->cimserver_kill(0) == 0)
 486 kumpf      1.105         {
 487                              //l10n - TODO
 488                              Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 489                                  "src.Server.cimserver.SERVER_FORCED_SHUTDOWN",
 490 h.sterling 1.153             "Forced shutdown initiated.");
 491 kumpf      1.105             MessageLoaderParms parms("src.Server.cimserver.SERVER_FORCED_SHUTDOWN",
 492                                                       "Forced shutdown initiated.");
 493                              PEGASUS_STD(cerr) << MessageLoader::getMessage(parms) << PEGASUS_STD(endl);
 494                          }
 495 s.hills    1.117         exit(1);
 496 chuck      1.66  #endif
 497 kumpf      1.46      }
 498 s.hills    1.117     catch(Exception&)
 499 kumpf      1.45      {
 500                          //
 501 kumpf      1.91          // This may mean that the CIM Server has terminated, causing this
 502                          // client to get a "Empty HTTP response message" exception.  It may
 503                          // also mean that the CIM Server is taking longer than 2 seconds 
 504                          // (client timeout value) to terminate, causing this client to 
 505                          // timeout with a "connection timeout" exception.
 506 kumpf      1.45          //
 507 kumpf      1.91          // Check to see if CIM Server is still running.  If CIM Server
 508 kumpf      1.63          // is still running and the shutdown timeout has not expired,
 509 kumpf      1.91          // loop and wait one second until either the CIM Server is
 510                          // terminated or timeout expires.  If timeout expires and
 511                          // the CIM Server is still running, kill the CIMServer process.
 512                          // 
 513 kumpf      1.63          Uint32 maxWaitTime = timeoutValue - 2;
 514 h.sterling 1.153         Boolean running = _cimServerProcess->isCIMServerRunning();
 515 kumpf      1.63          while ( running && maxWaitTime > 0 )
 516                          {
 517                              System::sleep(1);
 518 h.sterling 1.153             running = _cimServerProcess->isCIMServerRunning();
 519 kumpf      1.63              maxWaitTime = maxWaitTime - 1;
 520                          }
 521                  
 522                          if (running)
 523                          {
 524 h.sterling 1.153        int kill_rc = _cimServerProcess->cimserver_kill(0);
 525                         
 526 humberto   1.90  #ifdef PEGASUS_OS_OS400
 527 h.sterling 1.153         if(kill_rc == -1)
 528                          _cimServerProcess->cimserver_exitRC(2);
 529                          _cimServerProcess->cimserver_exitRC(1);
 530 humberto   1.90  #endif
 531 kumpf      1.91  
 532 gs.keenan  1.150 #if defined(PEGASUS_OS_HPUX) || defined(PEGASUS_PLATFORM_LINUX_GENERIC_GNU) \
 533                  || defined(PEGASUS_PLATFORM_ZOS_ZSERIES_IBM) || defined(PEGASUS_PLATFORM_SOLARIS_SPARC_CC) \
 534                  || defined (PEGASUS_OS_VMS)
 535 h.sterling 1.153         if (kill_rc != -1)
 536 kumpf      1.91              {
 537 kumpf      1.105                 //l10n - TODO
 538                                  Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 539                                      "src.Server.cimserver.TIMEOUT_EXPIRED_SERVER_KILLED",
 540                                      "Shutdown timeout expired.  Forced shutdown initiated.");
 541 humberto   1.97                  MessageLoaderParms parms("src.Server.cimserver.TIMEOUT_EXPIRED_SERVER_KILLED",
 542 kumpf      1.105                     "Shutdown timeout expired.  Forced shutdown initiated.");
 543 humberto   1.97                  cout << MessageLoader::getMessage(parms) << endl;
 544 kumpf      1.91                  exit(0);
 545                              }
 546                  #endif
 547 kumpf      1.63          }
 548 kumpf      1.43      }
 549 mike       1.35  
 550                      return;
 551 mike       1.32  }
 552                  
 553 mike       1.35  
 554 mike       1.33  /////////////////////////////////////////////////////////////////////////
 555 mike       1.32  //  MAIN
 556                  //////////////////////////////////////////////////////////////////////////
 557                  int main(int argc, char** argv)
 558                  {
 559 mike       1.35      String pegasusHome  = String::EMPTY;
 560                      Boolean shutdownOption = false;
 561 mday       1.47  
 562 humberto   1.97  //l10n
 563                  // Set Message loading to process locale
 564                  MessageLoader::_useProcessLocale = true; 
 565                  //l10n
 566                  
 567 kv.le      1.140 //l10n
 568                  #if defined(PEGASUS_OS_AIX) && defined(PEGASUS_HAS_MESSAGES)
 569                  setlocale(LC_ALL, "");
 570                  #endif
 571                  
 572 chuck      1.66  #ifdef PEGASUS_OS_OS400
 573 david      1.120 
 574                    VFYPTRS_INCDCL;               // VFYPTRS local variables
 575                  
 576                    // verify pointers
 577                    #pragma exception_handler (qsyvp_excp_hndlr,qsyvp_excp_comm_area,\
 578                      0,_C2_MH_ESCAPE)
 579                      for( int arg_index = 1; arg_index < argc; arg_index++ ){
 580 h.sterling 1.153     VFYPTRS(VERIFY_SPP_NULL(argv[arg_index]));
 581 david      1.120     }
 582                    #pragma disable_handler
 583                  
 584 david      1.100     // Convert the args to ASCII
 585                      for(Uint32 i = 0;i< argc;++i)
 586                      {
 587 h.sterling 1.153     EtoA(argv[i]);
 588 david      1.100     }
 589                  
 590 chuck      1.66      // Initialize Pegasus home to the shipped OS/400 directory.
 591                      pegasusHome = OS400_DEFAULT_PEGASUS_HOME;
 592                  #endif
 593                  
 594 kv.le      1.134 
 595 tony       1.82  #ifndef PEGASUS_OS_TYPE_WINDOWS
 596 kumpf      1.38      //
 597                      // Get environment variables:
 598                      //
 599 david      1.100 #ifdef PEGASUS_OS_OS400
 600                  #pragma convert(37)
 601                      const char* tmp = getenv("PEGASUS_HOME");
 602                  #pragma convert(0)
 603                      char home[256] = {0};
 604                      if (tmp && strlen(tmp) < 256)
 605                      {
 606 h.sterling 1.153     strcpy(home, tmp);
 607                      EtoA(home);
 608                      pegasusHome = home;
 609 david      1.100     }
 610                  #else
 611 kv.le      1.134   #if defined(PEGASUS_OS_AIX) && defined(PEGASUS_USE_RELEASE_DIRS)
 612                      pegasusHome = AIX_RELEASE_PEGASUS_HOME;
 613 kumpf      1.138   #elif !defined(PEGASUS_USE_RELEASE_DIRS)
 614 kumpf      1.38      const char* tmp = getenv("PEGASUS_HOME");
 615                  
 616                      if (tmp)
 617                      {
 618                          pegasusHome = tmp;
 619                      }
 620 kv.le      1.134   #endif
 621 david      1.100 #endif
 622 kumpf      1.38  
 623                      FileSystem::translateSlashes(pegasusHome);
 624 tony       1.82  #else
 625 kumpf      1.38  
 626 tony       1.82    // windows only
 627 h.sterling 1.153   //setHome(pegasusHome);
 628                    pegasusHome = _cimServerProcess->getHome();
 629 tony       1.82  #endif
 630 mike       1.32  
 631 kumpf      1.60          // Get help, version, and shutdown options
 632 mike       1.35  
 633                          for (int i = 1; i < argc; )
 634                          {
 635                              const char* arg = argv[i];
 636 a.arora    1.142             if(String::equal(arg,"--help"))
 637                              {
 638                                      PrintHelp(argv[0]);
 639                                      exit(0);
 640                              }
 641                              else if(String::equal(arg,"--version"))
 642                              {
 643 h.sterling 1.153                 cout << _cimServerProcess->getVersion() << endl;
 644 a.arora    1.142                 exit(0);
 645                              }
 646 mike       1.35              // Check for -option
 647 a.arora    1.142             else if (*arg == '-')
 648 mike       1.35              {
 649                                  // Get the option
 650                                  const char* option = arg + 1;
 651                  
 652                                  //
 653                                  // Check to see if user asked for the version (-v option):
 654                                  //
 655 tony       1.83                  if (*option == OPTION_VERSION &&
 656                                      strlen(option) == 1)
 657 mike       1.35                  {
 658 h.sterling 1.153                     cout << _cimServerProcess->getVersion() << endl;
 659 mike       1.35                      exit(0);
 660                                  }
 661                                  //
 662                                  // Check to see if user asked for help (-h option):
 663                                  //
 664 tony       1.83                  else if (*option == OPTION_HELP &&
 665                                          (strlen(option) == 1))
 666 mike       1.35                  {
 667                                      PrintHelp(argv[0]);
 668                                      exit(0);
 669                                  }
 670 kumpf      1.138 #if !defined(PEGASUS_USE_RELEASE_DIRS)
 671 tony       1.83                  else if (*option == OPTION_HOME &&
 672                                          (strlen(option) == 1))
 673 mike       1.35                  {
 674 kumpf      1.60                      if (i + 1 < argc)
 675 mike       1.35                      {
 676                                          pegasusHome.assign(argv[i + 1]);
 677                                      }
 678                                      else
 679                                      {
 680 humberto   1.97                          //l10n
 681                                          //cout << "Missing argument for option -" << option << endl;
 682 humberto   1.99                          String opt(option);
 683 humberto   1.97                          MessageLoaderParms parms("src.Server.cimserver.MISSING_ARGUMENT",
 684 h.sterling 1.153                                          "Missing argument for option -$0",
 685                                                           opt);
 686                                          cout << MessageLoader::getMessage(parms) << endl;
 687 mike       1.35                          exit(0);
 688                                      }
 689                  
 690                                      memmove(&argv[i], &argv[i + 2], (argc-i-1) * sizeof(char*));
 691                                      argc -= 2;
 692                                  }
 693 kumpf      1.63  #endif
 694 kumpf      1.48  #if defined(PEGASUS_OS_HPUX)
 695                                  //
 696 kumpf      1.49                  // Check to see if user asked for the version (-X option):
 697 kumpf      1.48                  //
 698 tony       1.83                  if (*option == OPTION_BINDVERBOSE &&
 699                                          (strlen(option) == 1))
 700 kumpf      1.48                  {
 701 h.sterling 1.153             System::bindVerbose = true;
 702 humberto   1.97                      //l10n
 703                                      //cout << "Unsupported debug option, BIND_VERBOSE, enabled." 
 704                                           //<< endl;
 705                                      MessageLoaderParms parms("src.Server.cimserver.UNSUPPORTED_DEBUG_OPTION",
 706 h.sterling 1.153                                          "Unsupported debug option, BIND_VERBOSE, enabled.");
 707                                      cout << MessageLoader::getMessage(parms) << endl;
 708 kumpf      1.48                      // remove the option from the command line
 709                                      memmove(&argv[i], &argv[i + 1], (argc-i) * sizeof(char*));
 710                                      argc--;   
 711                                  }
 712                  #endif
 713 mike       1.35                  //
 714                                  // Check to see if user asked for shutdown (-s option):
 715                                  //
 716 tony       1.82                  else if (*option == OPTION_SHUTDOWN &&
 717                                          (strlen(option) == 1))
 718 mike       1.35                  {
 719                                      //
 720 kumpf      1.52                      // Check to see if shutdown has already been specified:
 721 mike       1.35                      //
 722 kumpf      1.52                      if (shutdownOption)
 723 mike       1.35                      {
 724 humberto   1.97                          //l10n
 725                                          //cout << "Duplicate shutdown option specified." << endl;
 726                                          MessageLoaderParms parms("src.Server.cimserver.DUPLICATE_SHUTDOWN_OPTION",
 727 h.sterling 1.153                                                  "Duplicate shutdown option specified.");
 728 humberto   1.97                         
 729                                          cout << MessageLoader::getMessage(parms) << endl;
 730 mike       1.35                          exit(0);
 731                                      }
 732                  
 733 kumpf      1.52                      shutdownOption = true;
 734 mike       1.35   
 735                                      // remove the option from the command line
 736                                      memmove(&argv[i], &argv[i + 1], (argc-i) * sizeof(char*));
 737                                      argc--;   
 738                                  }
 739                                  else
 740                                      i++;
 741                              }
 742                              else
 743                                  i++;
 744 mike       1.32          }
 745 mike       1.35  
 746 kumpf      1.38      //
 747                      // Set the value for pegasusHome property
 748                      //
 749                      ConfigManager::setPegasusHome(pegasusHome);
 750 mike       1.32  
 751 mike       1.35      //
 752 s.hills    1.117     // Do the plaform specific run
 753                      //
 754                  
 755 h.sterling 1.153     return _cimServerProcess->platform_run( argc, argv, shutdownOption );
 756 s.hills    1.117 }
 757                  
 758 h.sterling 1.153 void CIMServerProcess::cimserver_stop()
 759                  {
 760                      _cimServer->shutdownSignal();
 761                  }
 762 s.hills    1.117 
 763                  //
 764                  // The main, common, running code
 765                  //
 766                  // NOTE: Do NOT call exit().  Use return(), otherwise some platforms 
 767                  // will fail to shutdown properly/cleanly.
 768                  //
 769                  // TODO: Current change minimal for platform "service" shutdown bug fixes.  
 770                  // Perhpas further extract out common stuff and put into main(), put 
 771                  // daemon stuff into platform specific platform_run(), etc.  
 772                  // Note: make sure to not put error handling stuff that platform 
 773                  // specific runs may need to deal with bettter (instead of exit(), etc).
 774                  //
 775                  
 776 h.sterling 1.153 int CIMServerProcess::cimserver_run( int argc, char** argv, Boolean shutdownOption )
 777 s.hills    1.117 {
 778                      String logsDirectory = String::EMPTY;
 779                      Boolean daemonOption = false;
 780                  
 781                      //
 782 mike       1.35      // Get an instance of the Config Manager.
 783                      //
 784                      configManager = ConfigManager::getInstance();
 785 kumpf      1.136     configManager->useConfigFiles = true;
 786 mike       1.35  
 787 lucier     1.130 #ifdef PEGASUS_OS_OS400
 788                      // In a special startup case for IBM OS400, when the server is
 789                      // automatically started when the machine starts up the config
 790                      // file cannot be read because of access restrictions for the
 791                      // user starting the server.  In this case, we need to skip
 792                      // reading the config options and therefore any use of the config
 793                      // manager also.  To make this determinations we will check to see
 794                      // if the daemon flag is set to true.  If so, then there will be a
 795                      // series of checks to bracket all the calls to the configManager
 796                      // which would otherwise fail.  All this will only be done for
 797                      // IBM OS400.
 798                  
 799                      Boolean os400StartupOption = false;
 800                      // loop through args to check for daemon=true
 801                      for (int i=1; i < argc; i++)
 802                        if (strcmp(argv[i], "daemon=true") == 0)
 803                        {
 804                          os400StartupOption = true;
 805                          daemonOption = true;
 806                        }
 807                  #endif    
 808 lucier     1.130 
 809 mike       1.35      //
 810 mike       1.32      // Get options (from command line and from configuration file); this
 811 mike       1.35      // removes corresponding options and their arguments from the command
 812 mike       1.32      // line.
 813 mike       1.35      //
 814 mike       1.32      try
 815                      {
 816 lucier     1.130 #ifdef PEGASUS_OS_OS400
 817                      if (os400StartupOption == false)
 818                  #endif   
 819 s.hills    1.117         GetOptions(configManager, argc, argv);
 820 mike       1.32      }
 821                      catch (Exception& e)
 822                      {
 823 kumpf      1.127         Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 824                              "src.Server.cimserver.SERVER_NOT_STARTED",
 825                              "cimserver not started:  $0", e.getMessage());
 826                  
 827                  #if !defined(PEGASUS_OS_OS400)
 828                          MessageLoaderParms parms("src.Server.cimserver.SERVER_NOT_STARTED",
 829                              "cimserver not started: $0", e.getMessage());
 830                  
 831                          PEGASUS_STD(cerr) << argv[0] << ": " << MessageLoader::getMessage(parms)
 832                              << PEGASUS_STD(endl);
 833 david      1.85  #endif
 834 kumpf      1.127 
 835 s.hills    1.117         return(1);
 836 mike       1.32      }
 837                  
 838 chuck      1.94  // l10n
 839 h.sterling 1.153     // Set the home directory, msg sub-dir, into the MessageLoader.
 840                      // This will be the default directory where the resource bundles 
 841                      // are found.    
 842                      MessageLoader::setPegasusMsgHome(ConfigManager::getHomedPath(
 843                          ConfigManager::getInstance()->getCurrentValue("messageDir")));      
 844 chuck      1.94  
 845 lucier     1.130 #ifdef PEGASUS_OS_OS400
 846                      // Still need to declare and set the connection variables.
 847                      // Will initialize to false since they are fixed at false for OS400.
 848                  
 849                      // NOTE:  OS400 is a LOCAL_DOMAIN_SOCKET, so a few lines down
 850                      // the test will not be compiled in.  If OS400 ever turns off that
 851                      // define, then we will need to change this code path to insure that
 852                      // one of the variables is true.    
 853                      Boolean enableHttpConnection = false;
 854                      Boolean enableHttpsConnection = false;
 855 kumpf      1.135     Boolean enableSSLExportClientVerification = false;
 856 lucier     1.130 
 857                      if (os400StartupOption == false)
 858                      {
 859                        enableHttpConnection = String::equal(
 860                            configManager->getCurrentValue("enableHttpConnection"), "true");
 861                        enableHttpsConnection = String::equal(
 862                            configManager->getCurrentValue("enableHttpsConnection"), "true");
 863 kumpf      1.135       enableSSLExportClientVerification = String::equal(
 864                            configManager->getCurrentValue("enableSSLExportClientVerification"), "true");
 865 lucier     1.130     }
 866                  #else
 867 kumpf      1.87      Boolean enableHttpConnection = String::equal(
 868                          configManager->getCurrentValue("enableHttpConnection"), "true");
 869                      Boolean enableHttpsConnection = String::equal(
 870                          configManager->getCurrentValue("enableHttpsConnection"), "true");
 871 kumpf      1.135     Boolean enableSSLExportClientVerification = String::equal(
 872                          configManager->getCurrentValue("enableSSLExportClientVerification"), "true");
 873 lucier     1.130 #endif
 874 kumpf      1.86  
 875                      // Make sure at least one connection is enabled
 876                  #ifndef PEGASUS_LOCAL_DOMAIN_SOCKET
 877                      if (!enableHttpConnection && !enableHttpsConnection)
 878                      {
 879 humberto   1.97          //l10n
 880                          //Logger::put(Logger::STANDARD_LOG, System::CIMSERVER, Logger::WARNING,
 881                              //"Neither HTTP nor HTTPS connection is enabled.  "
 882                              //"CIMServer will not be started.");
 883                          Logger::put_l(Logger::STANDARD_LOG, System::CIMSERVER, Logger::WARNING,
 884 h.sterling 1.153             "src.Server.cimserver.HTTP_NOT_ENABLED_SERVER_NOT_STARTING",
 885 humberto   1.97              "Neither HTTP nor HTTPS connection is enabled.  CIMServer will not be started.");
 886                          //cerr << "Neither HTTP nor HTTPS connection is enabled.  "
 887                              //"CIMServer will not be started." << endl;
 888                          MessageLoaderParms parms("src.Server.cimserver.HTTP_NOT_ENABLED_SERVER_NOT_STARTING",
 889 h.sterling 1.153                                  "Neither HTTP nor HTTPS connection is enabled.  CIMServer will not be started.");
 890 humberto   1.97          cerr << MessageLoader::getMessage(parms) << endl;
 891 s.hills    1.117         return(1);
 892 kumpf      1.86      }
 893                  #endif
 894                  
 895 mike       1.35      try
 896 mike       1.32      {
 897 mike       1.35          //
 898                          // Check to see if we should Pegasus as a daemon
 899                          //
 900                  
 901                          if (String::equal(configManager->getCurrentValue("daemon"), "true"))
 902                          {
 903                              daemonOption = true;
 904                          }
 905 h.sterling 1.153     
 906 lucier     1.130 #ifdef PEGASUS_OS_OS400
 907                      if (os400StartupOption == false)
 908                      {
 909                  #endif            
 910 kumpf      1.36          // Get the log file directory definition.
 911                          // We put String into Cstring because
 912                          // Directory functions only handle Cstring.
 913                          // ATTN-KS: create String based directory functions.
 914                  
 915                          logsDirectory = configManager->getCurrentValue("logdir");
 916 kumpf      1.38          logsDirectory = 
 917 h.sterling 1.153         ConfigManager::getHomedPath(configManager->getCurrentValue("logdir"));
 918 lucier     1.130 #ifdef PEGASUS_OS_OS400
 919                      }  // end if (os400StartupOption == false)
 920                  #endif
 921 kumpf      1.36  
 922                          // Set up the Logger. This does not open the logs
 923                          // Might be more logical to clean before set.
 924                          // ATTN: Need tool to completely disable logging.
 925                  
 926 david      1.85  #if !defined(PEGASUS_OS_HPUX) && !defined(PEGASUS_PLATFORM_LINUX_IA64_GNU) && \
 927                  !defined(PEGASUS_OS_OS400)
 928 kumpf      1.36          Logger::setHomeDirectory(logsDirectory);
 929 kumpf      1.57  #endif
 930 kumpf      1.36  
 931                          //
 932 mike       1.35          // Check to see if we need to shutdown CIMOM 
 933                          //
 934                          if (shutdownOption)
 935                          {
 936 kumpf      1.60              String configTimeout = 
 937                                  configManager->getCurrentValue("shutdownTimeout");
 938 s.hills    1.117             Uint32 timeoutValue = strtol(configTimeout.getCString(), (char **)0, 10);
 939 kumpf      1.60              
 940 kumpf      1.52              shutdownCIMOM(timeoutValue);
 941 kumpf      1.45  
 942 david      1.85  #ifdef PEGASUS_OS_OS400
 943 h.sterling 1.153         //l10n
 944                          //Logger::put(Logger::ERROR_LOG, System::CIMSERVER, Logger::INFORMATION,
 945                              //"CIM Server stopped.");  
 946                          Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::INFORMATION,
 947                              "src.Server.cimserver.SERVER_STOPPED",
 948                              "CIM Server stopped.");
 949 s.hills    1.117             cimserver_exitRC(0);
 950 david      1.85  #else
 951 h.sterling 1.153             //l10n
 952 humberto   1.97              //cout << "CIM Server stopped." << endl;
 953                              MessageLoaderParms parms("src.Server.cimserver.SERVER_STOPPED",
 954 h.sterling 1.153                                      "CIM Server stopped.");
 955 humberto   1.106 
 956 humberto   1.97              cout << MessageLoader::getMessage(parms) << endl;
 957 s.hills    1.117             return(0);
 958 diane      1.81  #endif
 959 mike       1.35          }
 960 mike       1.32  
 961 kumpf      1.139 #if defined(PEGASUS_DEBUG)
 962 kumpf      1.36          // Leave this in until people get familiar with the logs.
 963 humberto   1.97          //l10n
 964                          //cout << "Logs Directory = " << logsDirectory << endl;
 965                          MessageLoaderParms parms("src.Server.cimserver.LOGS_DIRECTORY",
 966 h.sterling 1.153                                  "Logs Directory = ");
 967 humberto   1.97          cout << MessageLoader::getMessage(parms) << logsDirectory << endl;
 968 kumpf      1.57  #endif
 969 mike       1.32      }
 970 kumpf      1.122     catch (UnrecognizedConfigProperty& e)
 971 mike       1.32      {
 972 david      1.85  
 973                  #ifdef PEGASUS_OS_OS400
 974 h.sterling 1.153     //l10n
 975                      //Logger::put(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 976                              //"Error: $0",e.getMessage());  
 977                      Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
 978                              "src.Server.cimserver.ERROR",
 979                              "Error: $0",e.getMessage()); 
 980 david      1.85  #else
 981 h.sterling 1.153     //l10n
 982                      //cout << "Error: " << e.getMessage() << endl;
 983                      MessageLoaderParms parms("src.Server.cimserver.ERROR",
 984                                               "Error: $0",
 985                                               e.getMessage());
 986                      cout << MessageLoader::getMessage(parms) << endl;
 987 david      1.85  #endif
 988 mike       1.32      }
 989                  
 990 w.otsuka   1.147     Uint32 portNumberHttps=0;
 991                      Uint32 portNumberHttp=0;
 992                      Uint32 portNumberExportHttps=0;
 993 kumpf      1.53  
 994 kumpf      1.86      if (enableHttpsConnection)
 995 kumpf      1.53      {
 996 kumpf      1.86          String httpsPort = configManager->getCurrentValue("httpsPort");
 997 kumpf      1.69          CString portString = httpsPort.getCString();
 998 kumpf      1.86          char* end = 0;
 999                          Uint32 port = strtol(portString, &end, 10);
1000 joyce.j    1.144         if(!(end != 0 && *end == '\0'))
1001                          {
1002                              PEGASUS_STD(cerr) << "Bad HTTPS Port Value" << PEGASUS_STD(endl);
1003                              exit(1);
1004                          }
1005                  
1006 kumpf      1.53  
1007                          //
1008 kumpf      1.86          // Look up the WBEM-HTTPS port number
1009 kumpf      1.53          //
1010 kumpf      1.86          portNumberHttps = System::lookupPort(WBEM_HTTPS_SERVICE_NAME, port);
1011 kumpf      1.53      }
1012 kumpf      1.86  
1013                      if (enableHttpConnection)
1014 kumpf      1.53      {
1015 kumpf      1.86          String httpPort = configManager->getCurrentValue("httpPort");
1016 kumpf      1.69          CString portString = httpPort.getCString();
1017 kumpf      1.86          char* end = 0;
1018                          Uint32 port = strtol(portString, &end, 10);
1019 joyce.j    1.144         if(!(end != 0 && *end == '\0'))
1020                          {
1021                              PEGASUS_STD(cerr) << "Bad HTTP Port Value" << PEGASUS_STD(endl);
1022                              exit(1);
1023                          }
1024 kumpf      1.53          //
1025 kumpf      1.86          // Look up the WBEM-HTTP port number
1026 kumpf      1.53          //
1027 kumpf      1.86          portNumberHttp = System::lookupPort(WBEM_HTTP_SERVICE_NAME, port);
1028 kumpf      1.53      }
1029 mike       1.32  
1030 kumpf      1.135     if (enableSSLExportClientVerification)
1031                      {
1032                          //
1033                          // No config property is looked up to get the default port number.
1034                          // Lookup the port defined in /etc/services for the service name
1035                          // wbem-exp-https and bind to that port. If the service is  not defined
1036                          // then log a warning message and do not start the cimserver.
1037                          //
1038                          Uint32 port = 0;
1039                  
1040                          portNumberExportHttps = System::lookupPort(WBEM_EXPORT_HTTPS_SERVICE_NAME, port);
1041                  
1042                          if (portNumberExportHttps == 0)
1043                          {
1044                              Logger::put_l(Logger::STANDARD_LOG, System::CIMSERVER, Logger::WARNING,
1045                                  "src.Server.cimserver.EXPORT_HTTPS_PORT_NOT_DEFINED",
1046                                  "Port not defined for the service wbem-exp-https. CIMServer will not be started.");
1047                  
1048                              MessageLoaderParms parms("src.Server.cimserver.EXPORT_HTTPS_PORT_NOT_DEFINED",
1049                                  "Port not defined for the service wbem-exp-https. CIMServer will not be started.");
1050                  
1051 kumpf      1.135             cerr << MessageLoader::getMessage(parms) << endl;
1052                  
1053                              return(1);
1054                          }
1055                      }
1056 kumpf      1.139 #if defined(PEGASUS_DEBUG)
1057 mike       1.32      // Put out startup up message.
1058 h.sterling 1.153     cout << _cimServerProcess->getProductName() << " " << _cimServerProcess->getVersion() << endl;
1059 humberto   1.97      //l10n
1060                      //cout << "Built " << __DATE__ << " " << __TIME__ << endl;
1061                      //cout <<"Starting..."
1062                      MessageLoaderParms parms("src.Server.cimserver.STARTUP_MESSAGE",
1063 h.sterling 1.153                              "Built $0 $1\nStarting...",
1064                                               __DATE__,
1065                                               __TIME__);
1066 humberto   1.97  #endif
1067                  
1068                  //l10n
1069                  // reset message loading to NON-process locale
1070                  MessageLoader::_useProcessLocale = false; 
1071                  //l10n
1072 mike       1.32  
1073 kumpf      1.137     // Get the parent's PID before forking
1074 h.sterling 1.154     _cimServerProcess->set_parent_pid(System::getPID());
1075                      
1076 kumpf      1.63      // do we need to run as a daemon ?
1077                      if (daemonOption)
1078                      {
1079 h.sterling 1.153         if(-1 == _cimServerProcess->cimserver_fork())
1080 diane      1.81  #ifndef PEGASUS_OS_OS400
1081 h.sterling 1.153     {
1082                          return(-1);
1083                      }
1084 diane      1.81  #else
1085 h.sterling 1.153     {
1086 david      1.85              return(-1);
1087 h.sterling 1.153     }
1088                      else
1089                      {
1090                          return(0);
1091                      }
1092 diane      1.81  #endif
1093 h.sterling 1.153     
1094 kumpf      1.63      }
1095 chuck      1.66  
1096 chuck      1.96  // l10n
1097                      // Now we are after the fork...
1098                      // Create a dummy Thread object that can be used to store the
1099                      // AcceptLanguages object for CIM requests that are serviced
1100                      // by this thread (initial thread of server).  Need to do this
1101                      // because this thread is not in a ThreadPool, but is used
1102                      // to service CIM requests.
1103                      // The run function for the dummy Thread should never be called,
1104                      Thread *dummyInitialThread = new Thread(dummyThreadFunc, NULL, false);
1105 humberto   1.108     Thread::setCurrent(dummyInitialThread); 
1106                      AcceptLanguages default_al;
1107                      try{
1108 h.sterling 1.153          default_al = AcceptLanguages::getDefaultAcceptLanguages();   
1109                           Thread::setLanguages(new AcceptLanguages(default_al));
1110 kumpf      1.122     }catch(InvalidAcceptLanguageHeader& e){
1111 h.sterling 1.153           Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
1112                                    "src.Server.cimserver.FAILED_TO_SET_PROCESS_LOCALE",
1113                                    "Could not convert the system process locale into a valid AcceptLanguage format.");  
1114                            Logger::put(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
1115                                               e.getMessage()); 
1116 humberto   1.108     }
1117 humberto   1.109     
1118 humberto   1.97      
1119 chuck      1.96  
1120 chuck      1.66  #ifdef PEGASUS_OS_OS400
1121                      // Special server initialization code for OS/400.
1122                      if (cimserver_initialize() != 0)
1123                      {
1124 h.sterling 1.153     // do some logging here!
1125                      //l10n
1126                      //Logger::put(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
1127                              //"CIM Server failed to initialize"); 
1128                      Logger::put_l(Logger::ERROR_LOG, System::CIMSERVER, Logger::SEVERE,
1129                                    "src.Server.cimserver.SERVER_FAILED_TO_INITIALIZE",
1130                                    "CIM Server failed to initialize");  
1131                      return(-1);
1132 chuck      1.66      } 
1133                  #endif
1134 chuck      1.96  
1135 mday       1.62  
1136 gs.keenan  1.150 #if defined(PEGASUS_OS_HPUX) || defined(PEGASUS_PLATFORM_LINUX_GENERIC_GNU) \
1137                  || defined(PEGASUS_PLATFORM_ZOS_ZSERIES_IBM) || defined(PEGASUS_OS_AIX) \
1138                  || defined(PEGASUS_PLATFORM_SOLARIS_SPARC_CC) || defined (PEGASUS_OS_VMS)
1139 kumpf      1.63      umask(S_IWGRP|S_IWOTH);
1140 kumpf      1.79  
1141                      //
1142                      // check if CIMServer is already running
1143                      // if CIMServer is already running, print message and 
1144                      // notify parent process (if there is a parent process) to terminate
1145                      //
1146 h.sterling 1.153     if(_cimServerProcess->isCIMServerRunning())
1147 kumpf      1.79      {
1148 h.sterling 1.153     //l10n
1149                          //cout << "Unable to start CIMServer." << endl;
1150                          //cout << "CIMServer is already running." << endl;
1151                          MessageLoaderParms parms("src.Server.cimserver.UNABLE_TO_START_SERVER_ALREADY_RUNNING",
1152                                       "Unable to start CIMServer.\nCIMServer is already running.");
1153                      PEGASUS_STD(cerr) << MessageLoader::getMessage(parms) << PEGASUS_STD(endl);
1154 kumpf      1.79  
1155 h.sterling 1.153     //
1156 kumpf      1.79          // notify parent process (if there is a parent process) to terminate
1157                          //
1158                          if (daemonOption)
1159 h.sterling 1.153                 _cimServerProcess->notify_parent(1);
1160 kumpf      1.79  
1161 s.hills    1.117         return(1);
1162 kumpf      1.79      }
1163                       
1164 kumpf      1.63  #endif
1165 kumpf      1.51  
1166 mike       1.32      // try loop to bind the address, and run the server
1167                      try
1168                      {
1169 mday       1.116 
1170 h.sterling 1.153     Monitor monitor;
1171                      //PEP#222
1172                      //CIMServer server(&monitor);
1173                      //CimserverHolder cimserverHolder( &server );
1174                      _cimServer = new CIMServer(&monitor);
1175 mday       1.111 
1176 kumpf      1.41  
1177 kumpf      1.86          if (enableHttpConnection)
1178                          {
1179 h.sterling 1.153             _cimServer->addAcceptor(false, portNumberHttp, false, false);
1180 humberto   1.97              //l10n
1181                              //Logger::put(Logger::STANDARD_LOG, System::CIMSERVER, Logger::INFORMATION,
1182                                          //"Listening on HTTP port $0.", portNumberHttp);
1183                                          
1184                              Logger::put_l(Logger::STANDARD_LOG, System::CIMSERVER, Logger::INFORMATION,
1185 h.sterling 1.153                             "src.Server.cimserver.LISTENING_ON_HTTP_PORT",
1186                                              "Listening on HTTP port $0.", portNumberHttp);
1187 kumpf      1.86          }
1188                          if (enableHttpsConnection)
1189                          {
1190 h.sterling 1.153             _cimServer->addAcceptor(false, portNumberHttps, true, false);
1191 humberto   1.97              //l10n
1192                              //Logger::put(Logger::STANDARD_LOG, System::CIMSERVER, Logger::INFORMATION,
1193                                          //"Listening on HTTPS port $0.", portNumberHttps);
1194                              Logger::put_l(Logger::STANDARD_LOG, System::CIMSERVER, Logger::INFORMATION,
1195 h.sterling 1.153                             "src.Server.cimserver.LISTENING_ON_HTTPS_PORT",
1196                                              "Listening on HTTPS port $0.", portNumberHttps);
1197 kumpf      1.86          }
1198 kumpf      1.135         if (enableSSLExportClientVerification)
1199                          {
1200 h.sterling 1.153             _cimServer->addAcceptor(false, portNumberExportHttps, true, true);
1201 kumpf      1.135 
1202                              Logger::put_l(Logger::STANDARD_LOG, System::CIMSERVER, Logger::INFORMATION,
1203                                  "src.Server.cimserver.LISTENING_ON_EXPORT_HTTPS_PORT",
1204                                  "Listening on Export HTTPS port $0.", portNumberExportHttps);
1205                          }
1206                  
1207 kumpf      1.41  #ifdef PEGASUS_LOCAL_DOMAIN_SOCKET
1208 h.sterling 1.153         _cimServer->addAcceptor(true, 0, false, false);
1209 humberto   1.97          //l10n
1210                          //Logger::put(Logger::STANDARD_LOG, System::CIMSERVER, Logger::INFORMATION,
1211                                      //"Listening on local connection socket.");
1212                          Logger::put_l(Logger::STANDARD_LOG, System::CIMSERVER, Logger::INFORMATION,
1213 h.sterling 1.153               "src.Server.cimserver.LISTENING_ON_LOCAL",
1214                                "Listening on local connection socket.");
1215 kumpf      1.41  #endif
1216 kumpf      1.86  
1217 kumpf      1.139 #if defined(PEGASUS_DEBUG)
1218 kumpf      1.86          if (enableHttpConnection)
1219                          {
1220 humberto   1.97              //l10n
1221                              //cout << "Listening on HTTP port " << portNumberHttp << endl;
1222 h.sterling 1.153       MessageLoaderParms parms("src.Server.cimserver.LISTENING_ON_HTTP_PORT",
1223                                     "Listening on HTTP port $0.", portNumberHttp);
1224                              cout << MessageLoader::getMessage(parms) << endl;
1225 kumpf      1.86          }
1226                          if (enableHttpsConnection)
1227                          {
1228 humberto   1.97              //l10n
1229                              //cout << "Listening on HTTPS port " << portNumberHttps << endl;
1230 humberto   1.103             MessageLoaderParms parms("src.Server.cimserver.LISTENING_ON_HTTPS_PORT",
1231 h.sterling 1.153                      "Listening on HTTPS port $0.", portNumberHttps);
1232                              cout << MessageLoader::getMessage(parms) << endl;
1233 kumpf      1.86          }
1234 kumpf      1.135         if (enableSSLExportClientVerification)
1235                          {
1236                              MessageLoaderParms parms("src.Server.cimserver.LISTENING_ON_EXPORT_HTTPS_PORT",
1237                                  "Listening on Export HTTPS port $0.", portNumberExportHttps);
1238                  
1239                              cout << MessageLoader::getMessage(parms) << endl;
1240                          }
1241                  
1242 kumpf      1.86  # ifdef PEGASUS_LOCAL_DOMAIN_SOCKET
1243 humberto   1.97          //l10n
1244                          //cout << "Listening on local connection socket" << endl;
1245                          MessageLoaderParms parms("src.Server.cimserver.LISTENING_ON_LOCAL",
1246 h.sterling 1.153                  "Listening on local connection socket.");
1247 humberto   1.97          cout << MessageLoader::getMessage(parms) << endl;
1248 kumpf      1.86  # endif
1249 david      1.85  #endif
1250 mike       1.35  
1251 kumpf      1.86          // bind throws an exception if the bind fails
1252 h.sterling 1.153         _cimServer->bind();
1253 kumpf      1.73  
1254 h.sterling 1.153     // notify parent process (if there is a parent process) to terminate 
1255 konrad.r   1.95          // so user knows that there is cimserver ready to serve CIM requests.
1256 h.sterling 1.153     if (daemonOption)
1257                          _cimServerProcess->notify_parent(0);
1258 mike       1.32  
1259 h.sterling 1.153     time_t last = 0;
1260 mike       1.35  
1261 gs.keenan  1.150 #if defined(PEGASUS_OS_HPUX) || defined(PEGASUS_OS_LINUX) || defined(PEGASUS_PLATFORM_ZOS_ZSERIES_IBM) \
1262                      || defined(PEGASUS_OS_AIX) || defined(PEGASUS_PLATFORM_SOLARIS_SPARC_CC) \
1263                      || defined(PEGASUS_OS_VMS)
1264 kumpf      1.45          //
1265 kumpf      1.56          // create a file to indicate that the cimserver has started and
1266                          // save the process id of the cimserver process in the file
1267 kumpf      1.45          //
1268 kumpf      1.56          // remove the old file if it exists
1269 h.sterling 1.153         System::removeFile(_cimServerProcess->getPIDFileName());
1270 kumpf      1.56  
1271                          // open the file
1272 h.sterling 1.153         FILE *pid_file = fopen(_cimServerProcess->getPIDFileName(), "w");
1273 kumpf      1.91  
1274 kumpf      1.56          if (pid_file)
1275 kumpf      1.45          {
1276 kumpf      1.56              // save the pid in the file
1277 h.sterling 1.153             fprintf(pid_file, "%ld\n", _cimServerProcess->get_server_pid());
1278 kumpf      1.56              fclose(pid_file);
1279 kumpf      1.45          }
1280                  #endif
1281 kumpf      1.91  
1282 kumpf      1.139 #if defined(PEGASUS_DEBUG)
1283 h.sterling 1.153     cout << "Started. " << endl;
1284 kumpf      1.63  #endif
1285 h.sterling 1.153     
1286 kumpf      1.54          // Put server started message to the logger
1287 kumpf      1.143         Logger::put_l(Logger::STANDARD_LOG, System::CIMSERVER,
1288                              Logger::INFORMATION,
1289                              "src.Server.cimserver.STARTED_VERSION",
1290                              "Started $0 version $1.",
1291 h.sterling 1.153             _cimServerProcess->getProductName(), _cimServerProcess->getVersion());
1292 kumpf      1.45  
1293 mike       1.35          //
1294                          // Loop to call CIMServer's runForever() method until CIMServer
1295                          // has been shutdown
1296                          //
1297 h.sterling 1.153     while( !_cimServer->terminated() )
1298                      {
1299 mday       1.116 
1300 h.sterling 1.153       _cimServer->runForever();
1301 mday       1.112 
1302 h.sterling 1.153     }
1303                      MessageQueueService::force_shutdown(true);
1304 kumpf      1.45          //
1305                          // normal termination
1306 h.sterling 1.153     //
1307 kumpf      1.143 
1308 kumpf      1.54          // Put server shutdown message to the logger
1309 kumpf      1.143         Logger::put_l(Logger::STANDARD_LOG, System::CIMSERVER,
1310                              Logger::INFORMATION, "src.Server.cimserver.STOPPED",
1311 h.sterling 1.153             "$0 stopped.", _cimServerProcess->getProductName());
1312 kumpf      1.45  
1313 gs.keenan  1.150 #if defined(PEGASUS_OS_HPUX) || defined(PEGASUS_PLATFORM_LINUX_GENERIC_GNU) \
1314                  || defined(PEGASUS_PLATFORM_ZOS_ZSERIES_IBM) || defined(PEGASUS_OS_AIX) \
1315                  || defined(PEGASUS_PLATFORM_SOLARIS_SPARC_CC) || defined(PEGASUS_OS_VMS)
1316 kumpf      1.45          //
1317 kumpf      1.56          // close the file created at startup time to indicate that the 
1318                          // cimserver has terminated normally.
1319 kumpf      1.45          //
1320 h.sterling 1.153         FileSystem::removeFile(_cimServerProcess->getPIDFileName());
1321 kumpf      1.45  #endif
1322 mike       1.32      }
1323                      catch(Exception& e)
1324                      {
1325 david      1.100 
1326 h.sterling 1.153     //l10n
1327                      //Logger::put(Logger::STANDARD_LOG, System::CIMSERVER, Logger::WARNING,
1328                              //"Error: $0", e.getMessage()); 
1329                      Logger::put_l(Logger::STANDARD_LOG, System::CIMSERVER, Logger::WARNING,
1330                              "src.Server.cimserver.ERROR",
1331                              "Error: $0", e.getMessage());  
1332 konrad.r   1.95  
1333                  #ifndef PEGASUS_OS_OS400
1334 h.sterling 1.153     //l10n
1335                      //PEGASUS_STD(cerr) << "Error: " << e.getMessage() << PEGASUS_STD(endl);
1336                      MessageLoaderParms parms("src.Server.cimserver.ERROR",
1337                                               "Error: $0", e.getMessage());
1338                      PEGASUS_STD(cerr) << MessageLoader::getMessage(parms) << PEGASUS_STD(endl);
1339 david      1.100 
1340 david      1.85  #endif
1341 kumpf      1.77  
1342 h.sterling 1.153     //
1343 kumpf      1.77          // notify parent process (if there is a parent process) to terminate
1344                          //
1345                          if (daemonOption)
1346 h.sterling 1.153                 _cimServerProcess->notify_parent(1);
1347 kumpf      1.77  
1348 h.sterling 1.156         deleteCIMServer();
1349 kumpf      1.54          return 1;
1350 mike       1.32      }
1351                  
1352 h.sterling 1.156     deleteCIMServer();
1353 mike       1.32      return 0;
1354                  }
1355 tony       1.128 
1356                  
1357                  
1358                  

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2