2016-07-18 00:11:41 +00:00
/*
* Copyright ( C ) 2011 - 2012 Arnaud Quette < arnaud . quette @ free . fr >
2011-09-29 18:14:46 +00:00
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software
* Foundation , Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
*/
2016-07-18 00:11:41 +00:00
/*! \file nut-scanner.c
\ brief a tool to detect NUT supported devices
\ author Arnaud Quette < arnaud . quette @ free . fr >
*/
2011-09-29 18:14:46 +00:00
# include <stdio.h>
# include <stdlib.h>
# include <stdarg.h>
# include "common.h"
2012-01-24 10:22:33 +00:00
# include "nut_version.h"
2011-09-29 18:14:46 +00:00
# include <unistd.h>
# include <string.h>
# ifdef HAVE_PTHREAD
# include <pthread.h>
# endif
# include "nut-scan.h"
# define DEFAULT_TIMEOUT 5
2012-01-24 10:22:33 +00:00
# define ERR_BAD_OPTION (-1)
2013-11-24 15:00:12 +00:00
const char optstring [ ] = " ?ht:s:e:E:c:l:u:W:X:w:x:p:b:B:d:D:CUSMOAm:NPqIVa " ;
2011-09-29 18:14:46 +00:00
# ifdef HAVE_GETOPT_LONG
const struct option longopts [ ] =
{ { " timeout " , required_argument , NULL , ' t ' } ,
{ " start_ip " , required_argument , NULL , ' s ' } ,
{ " end_ip " , required_argument , NULL , ' e ' } ,
2013-11-24 15:00:12 +00:00
{ " eaton_serial " , required_argument , NULL , ' E ' } ,
2011-09-29 18:14:46 +00:00
{ " mask_cidr " , required_argument , NULL , ' m ' } ,
{ " community " , required_argument , NULL , ' c ' } ,
{ " secLevel " , required_argument , NULL , ' l ' } ,
{ " secName " , required_argument , NULL , ' u ' } ,
{ " authPassword " , required_argument , NULL , ' W ' } ,
{ " privPassword " , required_argument , NULL , ' X ' } ,
{ " authProtocol " , required_argument , NULL , ' w ' } ,
{ " privProtocol " , required_argument , NULL , ' x ' } ,
2013-11-24 15:00:12 +00:00
{ " username " , required_argument , NULL , ' b ' } ,
{ " password " , required_argument , NULL , ' B ' } ,
{ " authType " , required_argument , NULL , ' d ' } ,
{ " cipher_suite_id " , required_argument , NULL , ' D ' } ,
2011-09-29 18:14:46 +00:00
{ " port " , required_argument , NULL , ' p ' } ,
{ " complete_scan " , no_argument , NULL , ' C ' } ,
{ " usb_scan " , no_argument , NULL , ' U ' } ,
{ " snmp_scan " , no_argument , NULL , ' S ' } ,
{ " xml_scan " , no_argument , NULL , ' M ' } ,
{ " oldnut_scan " , no_argument , NULL , ' O ' } ,
{ " avahi_scan " , no_argument , NULL , ' A ' } ,
{ " ipmi_scan " , no_argument , NULL , ' I ' } ,
{ " disp_nut_conf " , no_argument , NULL , ' N ' } ,
{ " disp_parsable " , no_argument , NULL , ' P ' } ,
{ " quiet " , no_argument , NULL , ' q ' } ,
{ " help " , no_argument , NULL , ' h ' } ,
2012-01-24 10:22:33 +00:00
{ " version " , no_argument , NULL , ' V ' } ,
{ " available " , no_argument , NULL , ' a ' } ,
2011-09-29 18:14:46 +00:00
{ NULL , 0 , NULL , 0 } } ;
# else
# define getopt_long(a,b,c,d,e) getopt(a,b,c)
# endif /* HAVE_GETOPT_LONG */
static nutscan_device_t * dev [ TYPE_END ] ;
static long timeout = DEFAULT_TIMEOUT * 1000 * 1000 ; /* in usec */
static char * start_ip = NULL ;
static char * end_ip = NULL ;
static char * port = NULL ;
2013-11-24 15:00:12 +00:00
static char * serial_ports = NULL ;
2011-09-29 18:14:46 +00:00
# ifdef HAVE_PTHREAD
2012-01-24 10:22:33 +00:00
static pthread_t thread [ TYPE_END ] ;
2011-09-29 18:14:46 +00:00
static void * run_usb ( void * arg )
{
dev [ TYPE_USB ] = nutscan_scan_usb ( ) ;
return NULL ;
}
static void * run_snmp ( void * arg )
{
nutscan_snmp_t * sec = ( nutscan_snmp_t * ) arg ;
dev [ TYPE_SNMP ] = nutscan_scan_snmp ( start_ip , end_ip , timeout , sec ) ;
return NULL ;
}
static void * run_xml ( void * arg )
{
dev [ TYPE_XML ] = nutscan_scan_xml_http ( timeout ) ;
return NULL ;
}
static void * run_nut_old ( void * arg )
{
dev [ TYPE_NUT ] = nutscan_scan_nut ( start_ip , end_ip , port , timeout ) ;
return NULL ;
}
static void * run_avahi ( void * arg )
{
dev [ TYPE_AVAHI ] = nutscan_scan_avahi ( timeout ) ;
return NULL ;
}
static void * run_ipmi ( void * arg )
{
2013-11-24 15:00:12 +00:00
nutscan_ipmi_t * sec = ( nutscan_ipmi_t * ) arg ;
dev [ TYPE_IPMI ] = nutscan_scan_ipmi ( start_ip , end_ip , sec ) ;
return NULL ;
}
static void * run_eaton_serial ( void * arg )
{
dev [ TYPE_EATON_SERIAL ] = nutscan_scan_eaton_serial ( serial_ports ) ;
2011-09-29 18:14:46 +00:00
return NULL ;
}
2013-11-24 15:00:12 +00:00
2011-09-29 18:14:46 +00:00
# endif /* HAVE_PTHREAD */
2013-11-24 15:00:12 +00:00
int printq ( int quiet , const char * fmt , . . . )
2011-09-29 18:14:46 +00:00
{
va_list ap ;
int ret ;
if ( quiet ) {
return 0 ;
}
2012-08-12 21:39:31 +00:00
va_start ( ap , fmt ) ;
ret = vprintf ( fmt , ap ) ;
va_end ( ap ) ;
2011-09-29 18:14:46 +00:00
return ret ;
}
int main ( int argc , char * argv [ ] )
{
2012-08-12 21:39:31 +00:00
nutscan_snmp_t snmp_sec ;
2013-11-24 15:00:12 +00:00
nutscan_ipmi_t ipmi_sec ;
2011-09-29 18:14:46 +00:00
int opt_ret ;
char * cidr = NULL ;
int allow_all = 0 ;
int allow_usb = 0 ;
int allow_snmp = 0 ;
int allow_xml = 0 ;
int allow_oldnut = 0 ;
int allow_avahi = 0 ;
int allow_ipmi = 0 ;
2013-11-24 15:00:12 +00:00
int allow_eaton_serial = 0 ; /* MUST be requested explicitely! */
2011-09-29 18:14:46 +00:00
int quiet = 0 ;
void ( * display_func ) ( nutscan_device_t * device ) ;
2012-01-24 10:22:33 +00:00
int ret_code = EXIT_SUCCESS ;
2011-09-29 18:14:46 +00:00
2012-08-12 21:39:31 +00:00
memset ( & snmp_sec , 0 , sizeof ( snmp_sec ) ) ;
2013-11-24 15:00:12 +00:00
memset ( & ipmi_sec , 0 , sizeof ( ipmi_sec ) ) ;
/* Set the default values for IPMI */
ipmi_sec . authentication_type = IPMI_AUTHENTICATION_TYPE_MD5 ;
ipmi_sec . ipmi_version = IPMI_1_5 ; /* default to IPMI 1.5, if not otherwise specified */
ipmi_sec . cipher_suite_id = 3 ; /* default to HMAC-SHA1; HMAC-SHA1-96; AES-CBC-128 */
ipmi_sec . privilege_level = IPMI_PRIVILEGE_LEVEL_ADMIN ; /* should be sufficient */
2011-09-29 18:14:46 +00:00
2012-01-24 10:22:33 +00:00
nutscan_init ( ) ;
2011-09-29 18:14:46 +00:00
display_func = nutscan_display_ups_conf ;
while ( ( opt_ret = getopt_long ( argc , argv , optstring , longopts , NULL ) ) ! = - 1 ) {
switch ( opt_ret ) {
case ' t ' :
timeout = atol ( optarg ) * 1000 * 1000 ; /*in usec*/
if ( timeout = = 0 ) {
fprintf ( stderr , " Illegal timeout value, using default %ds \n " , DEFAULT_TIMEOUT ) ;
timeout = DEFAULT_TIMEOUT * 1000 * 1000 ;
}
break ;
case ' s ' :
start_ip = strdup ( optarg ) ;
end_ip = start_ip ;
break ;
case ' e ' :
end_ip = strdup ( optarg ) ;
break ;
2013-11-24 15:00:12 +00:00
case ' E ' :
serial_ports = strdup ( optarg ) ;
allow_eaton_serial = 1 ;
break ;
2011-09-29 18:14:46 +00:00
case ' m ' :
cidr = strdup ( optarg ) ;
break ;
case ' c ' :
2012-01-24 10:22:33 +00:00
if ( ! nutscan_avail_snmp ) {
goto display_help ;
}
2012-08-12 21:39:31 +00:00
snmp_sec . community = strdup ( optarg ) ;
2011-09-29 18:14:46 +00:00
break ;
case ' l ' :
2012-01-24 10:22:33 +00:00
if ( ! nutscan_avail_snmp ) {
goto display_help ;
}
2012-08-12 21:39:31 +00:00
snmp_sec . secLevel = strdup ( optarg ) ;
2011-09-29 18:14:46 +00:00
break ;
case ' u ' :
2012-01-24 10:22:33 +00:00
if ( ! nutscan_avail_snmp ) {
goto display_help ;
}
2012-08-12 21:39:31 +00:00
snmp_sec . secName = strdup ( optarg ) ;
2011-09-29 18:14:46 +00:00
break ;
case ' W ' :
2012-01-24 10:22:33 +00:00
if ( ! nutscan_avail_snmp ) {
goto display_help ;
}
2012-08-12 21:39:31 +00:00
snmp_sec . authPassword = strdup ( optarg ) ;
2011-09-29 18:14:46 +00:00
break ;
case ' X ' :
2012-01-24 10:22:33 +00:00
if ( ! nutscan_avail_snmp ) {
goto display_help ;
}
2012-08-12 21:39:31 +00:00
snmp_sec . privPassword = strdup ( optarg ) ;
2011-09-29 18:14:46 +00:00
break ;
case ' w ' :
2012-01-24 10:22:33 +00:00
if ( ! nutscan_avail_snmp ) {
goto display_help ;
}
2012-08-12 21:39:31 +00:00
snmp_sec . authProtocol = strdup ( optarg ) ;
2011-09-29 18:14:46 +00:00
break ;
case ' x ' :
2012-01-24 10:22:33 +00:00
if ( ! nutscan_avail_snmp ) {
goto display_help ;
}
2012-08-12 21:39:31 +00:00
snmp_sec . privProtocol = strdup ( optarg ) ;
2011-09-29 18:14:46 +00:00
break ;
2012-01-24 10:22:33 +00:00
case ' S ' :
if ( ! nutscan_avail_snmp ) {
goto display_help ;
}
allow_snmp = 1 ;
break ;
2013-11-24 15:00:12 +00:00
case ' b ' :
if ( ! nutscan_avail_ipmi ) {
goto display_help ;
}
ipmi_sec . username = strdup ( optarg ) ;
break ;
case ' B ' :
if ( ! nutscan_avail_ipmi ) {
goto display_help ;
}
ipmi_sec . password = strdup ( optarg ) ;
break ;
case ' d ' :
if ( ! nutscan_avail_ipmi ) {
goto display_help ;
}
if ( ! strcmp ( optarg , " NONE " ) ) {
ipmi_sec . authentication_type = IPMI_AUTHENTICATION_TYPE_NONE ;
}
else if ( ! strcmp ( optarg , " STRAIGHT_PASSWORD_KEY " ) ) {
ipmi_sec . authentication_type = IPMI_AUTHENTICATION_TYPE_STRAIGHT_PASSWORD_KEY ;
}
else if ( ! strcmp ( optarg , " MD2 " ) ) {
ipmi_sec . authentication_type = IPMI_AUTHENTICATION_TYPE_MD2 ;
}
else if ( ! strcmp ( optarg , " MD5 " ) ) {
ipmi_sec . authentication_type = IPMI_AUTHENTICATION_TYPE_MD5 ;
}
else {
fprintf ( stderr , " Unknown authentication type (%s). Defaulting to MD5 \n " , optarg ) ;
}
break ;
case ' D ' :
if ( ! nutscan_avail_ipmi ) {
goto display_help ;
}
ipmi_sec . cipher_suite_id = atoi ( optarg ) ;
/* Force IPMI 2.0! */
ipmi_sec . ipmi_version = IPMI_2_0 ;
break ;
2011-09-29 18:14:46 +00:00
case ' p ' :
port = strdup ( optarg ) ;
break ;
case ' C ' :
allow_all = 1 ;
break ;
case ' U ' :
2012-01-24 10:22:33 +00:00
if ( ! nutscan_avail_usb ) {
goto display_help ;
}
2011-09-29 18:14:46 +00:00
allow_usb = 1 ;
break ;
case ' M ' :
2012-01-24 10:22:33 +00:00
if ( ! nutscan_avail_xml_http ) {
goto display_help ;
}
2011-09-29 18:14:46 +00:00
allow_xml = 1 ;
break ;
case ' O ' :
allow_oldnut = 1 ;
break ;
case ' A ' :
2012-01-24 10:22:33 +00:00
if ( ! nutscan_avail_avahi ) {
goto display_help ;
}
2011-09-29 18:14:46 +00:00
allow_avahi = 1 ;
break ;
case ' I ' :
2012-01-24 10:22:33 +00:00
if ( ! nutscan_avail_ipmi ) {
goto display_help ;
}
2011-09-29 18:14:46 +00:00
allow_ipmi = 1 ;
break ;
case ' N ' :
display_func = nutscan_display_ups_conf ;
break ;
case ' P ' :
display_func = nutscan_display_parsable ;
break ;
case ' q ' :
quiet = 1 ;
break ;
2012-01-24 10:22:33 +00:00
case ' V ' :
printf ( " Network UPS Tools - %s \n " , NUT_VERSION_MACRO ) ;
exit ( EXIT_SUCCESS ) ;
case ' a ' :
printf ( " OLDNUT \n " ) ;
if ( nutscan_avail_usb ) {
printf ( " USB \n " ) ;
}
if ( nutscan_avail_snmp ) {
printf ( " SNMP \n " ) ;
}
if ( nutscan_avail_xml_http ) {
printf ( " XML \n " ) ;
}
if ( nutscan_avail_avahi ) {
printf ( " AVAHI \n " ) ;
}
if ( nutscan_avail_ipmi ) {
2013-11-24 15:00:12 +00:00
printf ( " IPMI \n " ) ;
2012-01-24 10:22:33 +00:00
}
2013-11-24 15:00:12 +00:00
printf ( " EATON_SERIAL \n " ) ;
2012-01-24 10:22:33 +00:00
exit ( EXIT_SUCCESS ) ;
2011-09-29 18:14:46 +00:00
case ' ? ' :
2012-01-24 10:22:33 +00:00
ret_code = ERR_BAD_OPTION ;
case ' h ' :
2011-09-29 18:14:46 +00:00
default :
2012-01-24 10:22:33 +00:00
display_help :
puts ( " nut-scanner : detecting available power devices. \n " ) ;
2011-09-29 18:14:46 +00:00
puts ( " OPTIONS: " ) ;
2012-01-24 10:22:33 +00:00
printf ( " -C, --complete_scan: Scan all available devices (default). \n " ) ;
if ( nutscan_avail_usb ) {
printf ( " -U, --usb_scan: Scan USB devices. \n " ) ;
}
if ( nutscan_avail_snmp ) {
printf ( " -S, --snmp_scan: Scan SNMP devices. \n " ) ;
}
if ( nutscan_avail_xml_http ) {
printf ( " -M, --xml_scan: Scan XML/HTTP devices. \n " ) ;
}
printf ( " -O, --oldnut_scan: Scan NUT devices (old method). \n " ) ;
if ( nutscan_avail_avahi ) {
printf ( " -A, --avahi_scan: Scan NUT devices (avahi method). \n " ) ;
}
if ( nutscan_avail_ipmi ) {
printf ( " -I, --ipmi_scan: Scan IPMI devices. \n " ) ;
}
2013-11-24 15:00:12 +00:00
printf ( " -E, --eaton_serial <serial ports list>: Scan serial Eaton devices (XCP, SHUT and Q1). \n " ) ;
printf ( " \n Network specific options: \n " ) ;
2011-09-29 18:14:46 +00:00
printf ( " -t, --timeout <timeout in seconds>: network operation timeout (default %d). \n " , DEFAULT_TIMEOUT ) ;
printf ( " -s, --start_ip <IP address>: First IP address to scan. \n " ) ;
printf ( " -e, --end_ip <IP address>: Last IP address to scan. \n " ) ;
2012-01-24 10:22:33 +00:00
printf ( " -m, --mask_cidr <IP address/mask>: Give a range of IP using CIDR notation. \n " ) ;
if ( nutscan_avail_snmp ) {
printf ( " \n SNMP v1 specific options: \n " ) ;
printf ( " -c, --community <community name>: Set SNMP v1 community name (default = public) \n " ) ;
printf ( " \n SNMP v3 specific options: \n " ) ;
printf ( " -l, --secLevel <security level>: Set the securityLevel used for SNMPv3 messages (allowed values: noAuthNoPriv,authNoPriv,authPriv) \n " ) ;
printf ( " -u, --secName <security name>: Set the securityName used for authenticated SNMPv3 messages (mandatory if you set secLevel. No default) \n " ) ;
printf ( " -w, --authProtocol <authentication protocol>: Set the authentication protocol (MD5 or SHA) used for authenticated SNMPv3 messages (default=MD5) \n " ) ;
printf ( " -W, --authPassword <authentication pass phrase>: Set the authentication pass phrase used for authenticated SNMPv3 messages (mandatory if you set secLevel to authNoPriv or authPriv) \n " ) ;
printf ( " -x, --privProtocol <privacy protocol>: Set the privacy protocol (DES or AES) used for encrypted SNMPv3 messages (default=DES) \n " ) ;
printf ( " -X, --privPassword <privacy pass phrase>: Set the privacy pass phrase used for encrypted SNMPv3 messages (mandatory if you set secLevel to authPriv) \n " ) ;
}
2011-09-29 18:14:46 +00:00
2013-11-24 15:00:12 +00:00
if ( nutscan_avail_ipmi ) {
printf ( " \n IPMI over LAN specific options: \n " ) ;
printf ( " -b, --username <username>: Set the username used for authenticating IPMI over LAN connections (mandatory for IPMI over LAN. No default) \n " ) ;
/* Specify the username to use when authenticating with the remote host. If not specified, a null (i.e. anonymous) username is assumed. The user must have
* at least ADMIN privileges in order for this tool to operate fully . */
printf ( " -B, --password <password>: Specify the password to use when authenticationg with the remote host (mandatory for IPMI over LAN. No default) \n " ) ;
/* Specify the password to use when authenticationg with the remote host. If not specified, a null password is assumed. Maximum password length is 16 for IPMI
* 1.5 and 20 for IPMI 2.0 . */
printf ( " -d, --authType <authentication type>: Specify the IPMI 1.5 authentication type to use (NONE, STRAIGHT_PASSWORD_KEY, MD2, and MD5) with the remote host (default=MD5) \n " ) ;
printf ( " -D, --cipher_suite_id <cipher suite id>: Specify the IPMI 2.0 cipher suite ID to use, for authentication, integrity, and confidentiality (default=3) \n " ) ;
}
2012-01-24 10:22:33 +00:00
printf ( " \n NUT specific options: \n " ) ;
printf ( " -p, --port <port number>: Port number of remote NUT upsd \n " ) ;
2011-09-29 18:14:46 +00:00
printf ( " \n display specific options: \n " ) ;
2012-01-24 10:22:33 +00:00
printf ( " -N, --disp_nut_conf: Display result in the ups.conf format \n " ) ;
printf ( " -P, --disp_parsable: Display result in a parsable format \n " ) ;
printf ( " \n Miscellaneous options: \n " ) ;
printf ( " -V, --version: Display NUT version \n " ) ;
printf ( " -a, --available: Display available bus that can be scanned \n " ) ;
printf ( " -q, --quiet: Display only scan result. No information on currently scanned bus is displayed. \n " ) ;
return ret_code ;
2011-09-29 18:14:46 +00:00
}
}
if ( cidr ) {
nutscan_cidr_to_ip ( cidr , & start_ip , & end_ip ) ;
}
if ( ! allow_usb & & ! allow_snmp & & ! allow_xml & & ! allow_oldnut & &
2013-11-24 15:00:12 +00:00
! allow_avahi & & ! allow_ipmi & & ! allow_eaton_serial ) {
2011-09-29 18:14:46 +00:00
allow_all = 1 ;
}
2012-01-24 10:22:33 +00:00
if ( allow_all ) {
allow_usb = 1 ;
allow_snmp = 1 ;
allow_xml = 1 ;
allow_oldnut = 1 ;
allow_avahi = 1 ;
allow_ipmi = 1 ;
2013-11-24 15:00:12 +00:00
/* BEWARE: allow_all does not include allow_eaton_serial! */
2012-01-24 10:22:33 +00:00
}
if ( allow_usb & & nutscan_avail_usb ) {
2011-09-29 18:14:46 +00:00
printq ( quiet , " Scanning USB bus. \n " ) ;
# ifdef HAVE_PTHREAD
2012-01-24 10:22:33 +00:00
if ( pthread_create ( & thread [ TYPE_USB ] , NULL , run_usb , NULL ) ) {
nutscan_avail_usb = 0 ;
}
2011-09-29 18:14:46 +00:00
# else
dev [ TYPE_USB ] = nutscan_scan_usb ( ) ;
2012-01-24 10:22:33 +00:00
# endif /* HAVE_PTHREAD */
2011-09-29 18:14:46 +00:00
}
2012-01-24 10:22:33 +00:00
if ( allow_snmp & & nutscan_avail_snmp ) {
2011-09-29 18:14:46 +00:00
if ( start_ip = = NULL ) {
printq ( quiet , " No start IP, skipping SNMP \n " ) ;
2013-11-24 15:00:12 +00:00
nutscan_avail_snmp = 0 ;
2011-09-29 18:14:46 +00:00
}
else {
printq ( quiet , " Scanning SNMP bus. \n " ) ;
# ifdef HAVE_PTHREAD
2012-08-12 21:39:31 +00:00
if ( pthread_create ( & thread [ TYPE_SNMP ] , NULL , run_snmp , & snmp_sec ) ) {
2012-01-24 10:22:33 +00:00
nutscan_avail_snmp = 0 ;
}
2011-09-29 18:14:46 +00:00
# else
2012-08-12 21:39:31 +00:00
dev [ TYPE_SNMP ] = nutscan_scan_snmp ( start_ip , end_ip , timeout , & snmp_sec ) ;
2012-01-24 10:22:33 +00:00
# endif /* HAVE_PTHREAD */
2011-09-29 18:14:46 +00:00
}
}
2012-01-24 10:22:33 +00:00
if ( allow_xml & & nutscan_avail_xml_http ) {
2011-09-29 18:14:46 +00:00
printq ( quiet , " Scanning XML/HTTP bus. \n " ) ;
# ifdef HAVE_PTHREAD
2012-01-24 10:22:33 +00:00
if ( pthread_create ( & thread [ TYPE_XML ] , NULL , run_xml , NULL ) ) {
nutscan_avail_xml_http = 0 ;
}
2011-09-29 18:14:46 +00:00
# else
dev [ TYPE_XML ] = nutscan_scan_xml_http ( timeout ) ;
2012-01-24 10:22:33 +00:00
# endif /* HAVE_PTHREAD */
2011-09-29 18:14:46 +00:00
}
2012-01-24 10:22:33 +00:00
if ( allow_oldnut & & nutscan_avail_nut ) {
2011-09-29 18:14:46 +00:00
if ( start_ip = = NULL ) {
printq ( quiet , " No start IP, skipping NUT bus (old connect method) \n " ) ;
2013-11-24 15:00:12 +00:00
nutscan_avail_nut = 0 ;
2011-09-29 18:14:46 +00:00
}
else {
printq ( quiet , " Scanning NUT bus (old connect method). \n " ) ;
# ifdef HAVE_PTHREAD
2012-01-24 10:22:33 +00:00
if ( pthread_create ( & thread [ TYPE_NUT ] , NULL , run_nut_old , NULL ) ) {
nutscan_avail_nut = 0 ;
}
2011-09-29 18:14:46 +00:00
# else
dev [ TYPE_NUT ] = nutscan_scan_nut ( start_ip , end_ip , port , timeout ) ;
2012-01-24 10:22:33 +00:00
# endif /* HAVE_PTHREAD */
2011-09-29 18:14:46 +00:00
}
}
2012-01-24 10:22:33 +00:00
if ( allow_avahi & & nutscan_avail_avahi ) {
2011-09-29 18:14:46 +00:00
printq ( quiet , " Scanning NUT bus (avahi method). \n " ) ;
# ifdef HAVE_PTHREAD
2012-01-24 10:22:33 +00:00
if ( pthread_create ( & thread [ TYPE_AVAHI ] , NULL , run_avahi , NULL ) ) {
nutscan_avail_avahi = 0 ;
}
2011-09-29 18:14:46 +00:00
# else
2012-01-24 10:22:33 +00:00
dev [ TYPE_AVAHI ] = nutscan_scan_avahi ( timeout ) ;
# endif /* HAVE_PTHREAD */
2011-09-29 18:14:46 +00:00
}
2012-01-24 10:22:33 +00:00
if ( allow_ipmi & & nutscan_avail_ipmi ) {
2011-09-29 18:14:46 +00:00
printq ( quiet , " Scanning IPMI bus. \n " ) ;
# ifdef HAVE_PTHREAD
2013-11-24 15:00:12 +00:00
if ( pthread_create ( & thread [ TYPE_IPMI ] , NULL , run_ipmi , & ipmi_sec ) ) {
2012-01-24 10:22:33 +00:00
nutscan_avail_ipmi = 0 ;
}
2011-09-29 18:14:46 +00:00
# else
2013-11-24 15:00:12 +00:00
dev [ TYPE_IPMI ] = nutscan_scan_ipmi ( start_ip , end_ip , & ipmi_sec ) ;
# endif /* HAVE_PTHREAD */
}
/* Eaton serial scan */
if ( allow_eaton_serial ) {
printq ( quiet , " Scanning serial bus for Eaton devices. \n " ) ;
# ifdef HAVE_PTHREAD
pthread_create ( & thread [ TYPE_EATON_SERIAL ] , NULL , run_eaton_serial , serial_ports ) ;
/* FIXME: check return code */
# else
dev [ TYPE_EATON_SERIAL ] = nutscan_scan_eaton_serial ( serial_ports ) ;
2012-01-24 10:22:33 +00:00
# endif /* HAVE_PTHREAD */
2011-09-29 18:14:46 +00:00
}
# ifdef HAVE_PTHREAD
2016-07-18 00:11:41 +00:00
if ( allow_usb & & nutscan_avail_usb & & thread [ TYPE_USB ] ) {
pthread_join ( thread [ TYPE_USB ] , NULL ) ;
2012-01-24 10:22:33 +00:00
}
2016-07-18 00:11:41 +00:00
if ( allow_snmp & & nutscan_avail_snmp & & thread [ TYPE_SNMP ] ) {
pthread_join ( thread [ TYPE_SNMP ] , NULL ) ;
2012-01-24 10:22:33 +00:00
}
2016-07-18 00:11:41 +00:00
if ( allow_xml & & nutscan_avail_xml_http & & thread [ TYPE_XML ] ) {
pthread_join ( thread [ TYPE_XML ] , NULL ) ;
2012-01-24 10:22:33 +00:00
}
2016-07-18 00:11:41 +00:00
if ( allow_oldnut & & nutscan_avail_nut & & thread [ TYPE_NUT ] ) {
pthread_join ( thread [ TYPE_NUT ] , NULL ) ;
2012-01-24 10:22:33 +00:00
}
2016-07-18 00:11:41 +00:00
if ( allow_avahi & & nutscan_avail_avahi & & thread [ TYPE_AVAHI ] ) {
pthread_join ( thread [ TYPE_AVAHI ] , NULL ) ;
2012-01-24 10:22:33 +00:00
}
2016-07-18 00:11:41 +00:00
if ( allow_ipmi & & nutscan_avail_ipmi & & thread [ TYPE_IPMI ] ) {
pthread_join ( thread [ TYPE_IPMI ] , NULL ) ;
2012-01-24 10:22:33 +00:00
}
2016-07-18 00:11:41 +00:00
if ( allow_eaton_serial & & thread [ TYPE_EATON_SERIAL ] ) {
pthread_join ( thread [ TYPE_EATON_SERIAL ] , NULL ) ;
2013-11-24 15:00:12 +00:00
}
2011-09-29 18:14:46 +00:00
# endif /* HAVE_PTHREAD */
display_func ( dev [ TYPE_USB ] ) ;
nutscan_free_device ( dev [ TYPE_USB ] ) ;
2012-01-24 10:22:33 +00:00
2011-09-29 18:14:46 +00:00
display_func ( dev [ TYPE_SNMP ] ) ;
nutscan_free_device ( dev [ TYPE_SNMP ] ) ;
2012-01-24 10:22:33 +00:00
2011-09-29 18:14:46 +00:00
display_func ( dev [ TYPE_XML ] ) ;
nutscan_free_device ( dev [ TYPE_XML ] ) ;
2012-01-24 10:22:33 +00:00
2011-09-29 18:14:46 +00:00
display_func ( dev [ TYPE_NUT ] ) ;
nutscan_free_device ( dev [ TYPE_NUT ] ) ;
2012-01-24 10:22:33 +00:00
2011-09-29 18:14:46 +00:00
display_func ( dev [ TYPE_AVAHI ] ) ;
nutscan_free_device ( dev [ TYPE_AVAHI ] ) ;
2012-01-24 10:22:33 +00:00
2011-09-29 18:14:46 +00:00
display_func ( dev [ TYPE_IPMI ] ) ;
nutscan_free_device ( dev [ TYPE_IPMI ] ) ;
2012-06-01 13:55:19 +00:00
2013-11-24 15:00:12 +00:00
display_func ( dev [ TYPE_EATON_SERIAL ] ) ;
nutscan_free_device ( dev [ TYPE_EATON_SERIAL ] ) ;
2012-06-01 13:55:19 +00:00
nutscan_free ( ) ;
2011-09-29 18:14:46 +00:00
return EXIT_SUCCESS ;
}