📄 ipinfo.cpp
字号:
//%2006//////////////////////////////////////////////////////////////////////////// Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development// Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.// Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;// IBM Corp.; EMC Corporation, The Open Group.// Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;// IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.// Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;// EMC Corporation; VERITAS Software Corporation; The Open Group.// Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;// EMC Corporation; Symantec Corporation; The Open Group.//// Permission is hereby granted, free of charge, to any person obtaining a copy// of this software and associated documentation files (the "Software"), to// deal in the Software without restriction, including without limitation the// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or// sell copies of the Software, and to permit persons to whom the Software is// furnished to do so, subject to the following conditions:// // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN// ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED// "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT// LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.////==============================================================================//// Author: Mike Brasher (mbrasher@bmc.com)// Carol Ann Krug Graves, Hewlett-Packard Company // (carolann_graves@hp.com)//// Modified By:// Warren Otsuka (warren_otsuka@hp.com)// Sushma Fernandes, Hewlett-Packard Company// (sushma_fernandes@hp.com)// Mike Day (mdday@us.ibm.com)// Jenny Yu, Hewlett-Packard Company (jenny_yu@hp.com)// Bapu Patil, Hewlett-Packard Company ( bapu_patil@hp.com )// Warren Otsuka, Hewlett-Packard Company (warren_otsuka@hp.com)// Nag Boranna, Hewlett-Packard Company (nagaraja_boranna@hp.com)// Susan Campbell, Hewlett-Packard Company (scampbell@hp.com)////%/////////////////////////////////////////////////////////////////////////////#include <iostream>#include <Pegasus/Common/Config.h>#include <Pegasus/Common/Constants.h>#include <Pegasus/Common/System.h>#include <Pegasus/Common/FileSystem.h>#include <Pegasus/Common/String.h>#include <Pegasus/Common/PegasusVersion.h>#include <Pegasus/Common/SSLContext.h>#include <Pegasus/getoopt/getoopt.h>#include <Clients/cliutils/CommandException.h>#include "IPInfo.h"// To build a version of ipinfo that does not// support remote connections the// DISABLE_SUPPORT_FOR_REMOTE_CONNECTIONS// flag can be enabled.//#define DISABLE_SUPPORT_FOR_REMOTE_CONNECTIONS//#define DEBUGPEGASUS_NAMESPACE_BEGIN#define NAMESPACE CIMNamespaceName ("root/cimv2")#define CLASSNAME CIMName ("PG_OperatingSystem")/** The command name. */const char IPInfoCommand::COMMAND_NAME [] = "ipinfo";/** Label for the usage string for this command. */const char IPInfoCommand::_USAGE [] = "usage: ";/** The option character used to specify the hostname. */const char IPInfoCommand::_OPTION_HOSTNAME = 'h';/** The option character used to specify the port number. */const char IPInfoCommand::_OPTION_PORTNUMBER = 'p';/** The option character used to specify SSL usage. */const char IPInfoCommand::_OPTION_SSL = 's';/** The option character used to specify the timeout value. */const char IPInfoCommand::_OPTION_TIMEOUT = 't';/** The option character used to specify the username. */const char IPInfoCommand::_OPTION_USERNAME = 'u';/** The option character used to specify the password. */const char IPInfoCommand::_OPTION_PASSWORD = 'w';/** The option character used to specify debug information. */const char IPInfoCommand::_OPTION_DEBUG = 'd';/** The minimum valid portnumber. */const Uint32 IPInfoCommand::_MIN_PORTNUMBER = 0;/** The maximum valid portnumber. */const Uint32 IPInfoCommand::_MAX_PORTNUMBER = 65535;static const char PASSWORD_PROMPT [] = "Please enter your password: ";static const char PASSWORD_BLANK [] = "Password cannot be blank. Please re-enter your password.";static const Uint32 MAX_PW_RETRIES = 3;static Boolean verifyCertificate(SSLCertificateInfo &certInfo){#ifdef DEBUG cout << certInfo.getSubjectName() << endl;#endif //ATTN-NB-03-05132002: Add code to handle server certificate verification. return true;}/** Constructs a IPInfoCommand and initializes instance variables. */IPInfoCommand::IPInfoCommand (){ _hostName = String (); _hostNameSet = false; _portNumber = WBEM_DEFAULT_HTTP_PORT; _portNumberSet = false; char buffer[32]; sprintf(buffer, "%lu", (unsigned long) _portNumber); _portNumberStr = buffer; _timeout = DEFAULT_TIMEOUT_MILLISECONDS; _userName = String (); _userNameSet = false; _password = String (); _passwordSet = false; _useSSL = false; _enableDebug = false; String usage = String (_USAGE); usage.append (COMMAND_NAME); usage.append (" [ -");#ifndef DISABLE_SUPPORT_FOR_REMOTE_CONNECTIONS usage.append (_OPTION_SSL); usage.append (" ] [ -"); usage.append (_OPTION_HOSTNAME); usage.append (" hostname ] [ -"); usage.append (_OPTION_PORTNUMBER); usage.append (" portnumber ] [ -"); usage.append (_OPTION_USERNAME); usage.append (" username ] [ -"); usage.append (_OPTION_PASSWORD); usage.append (" password ] [ -"); usage.append (_OPTION_TIMEOUT); usage.append (" timeout ] [ -");#endif usage.append (_OPTION_DEBUG); usage.append (" ]"); setUsage (usage);}String IPInfoCommand::_promptForPassword( ostream& outPrintWriter ) { // // Password is not set, prompt for non-blank password // String pw = String::EMPTY; Uint32 retries = 1; do { pw = System::getPassword( PASSWORD_PROMPT ); if ( pw == String::EMPTY || pw == "" ) { if( retries < MAX_PW_RETRIES ) { retries++; } else { break; } outPrintWriter << PASSWORD_BLANK << endl; pw = String::EMPTY; continue; } } while ( pw == String::EMPTY ); return( pw );}/** Connects to cimserver. @param outPrintWriter the ostream to which error output should be written @exception Exception if an error is encountered in creating the connection */void IPInfoCommand::_connectToServer( CIMClient& client, ostream& outPrintWriter ){ String host = String (); Uint32 portNumber = 0; Boolean connectToLocal = false; // // Construct host address // if ((!_hostNameSet) && (!_portNumberSet) && (!_userNameSet) && (!_passwordSet)) { connectToLocal = true; } else { if (!_hostNameSet) { _hostName = System::getHostName(); } if( !_portNumberSet ) { if( _useSSL ) { _portNumber = System::lookupPort( WBEM_HTTPS_SERVICE_NAME, WBEM_DEFAULT_HTTPS_PORT ); } else { _portNumber = System::lookupPort( WBEM_HTTP_SERVICE_NAME, WBEM_DEFAULT_HTTP_PORT ); } char buffer[32]; sprintf( buffer, "%lu", (unsigned long) _portNumber ); _portNumberStr = buffer; } } host = _hostName; portNumber = _portNumber; if( connectToLocal ) { client.connectLocal(); } else if( _useSSL ) { // // Get environment variables: // const char* pegasusHome = getenv("PEGASUS_HOME"); String certpath = FileSystem::getAbsolutePath( pegasusHome, PEGASUS_SSLCLIENT_CERTIFICATEFILE); String randFile = String::EMPTY; randFile = FileSystem::getAbsolutePath( pegasusHome, PEGASUS_SSLCLIENT_RANDOMFILE); SSLContext sslcontext (certpath, verifyCertificate, randFile); if (!_userNameSet) { _userName = System::getEffectiveUserName(); } if (!_passwordSet) { _password = _promptForPassword( outPrintWriter ); } client.connect(host, portNumber, sslcontext, _userName, _password ); } else { if (!_passwordSet) { _password = _promptForPassword( outPrintWriter ); } client.connect(host, portNumber, _userName, _password ); }}/** Parses the command line, validates the options, and sets instance variables based on the option arguments. @param argc the number of command line arguments @param argv the string vector of command line arguments @exception CommandFormatException if an error is encountered in parsing the command line */void IPInfoCommand::setCommand (Uint32 argc, char* argv []){ Uint32 i = 0;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -