blob: ca232f132e19ddb98a874dca243718d62636855a [file] [log] [blame]
George Keishinge7e91712021-09-03 11:28:44 -05001#!/usr/bin/env python3
Peter D Phan72ce6b82021-06-03 06:18:26 -05002
3r"""
Peter D Phan72ce6b82021-06-03 06:18:26 -05004CLI FFDC Collector.
5"""
6
George Keishinge635ddc2022-12-08 07:38:02 -06007from ffdc_collector import ffdc_collector
8
Peter D Phan72ce6b82021-06-03 06:18:26 -05009import os
10import sys
11import click
12
13# ---------Set sys.path for cli command execution---------------------------------------
14# Absolute path to openbmc-test-automation/ffdc
Peter D Phan8462faf2021-06-16 12:24:15 -050015abs_path = os.path.abspath(os.path.dirname(sys.argv[0]))
George Keishinge635ddc2022-12-08 07:38:02 -060016full_path = abs_path.split('ffdc')[0]
Sridevi Ramesh47375aa2022-12-08 05:05:31 -060017
Peter D Phan72ce6b82021-06-03 06:18:26 -050018sys.path.append(full_path)
19# Walk path and append to sys.path
20for root, dirs, files in os.walk(full_path):
21 for found_dir in dirs:
22 sys.path.append(os.path.join(root, found_dir))
23
Peter D Phan72ce6b82021-06-03 06:18:26 -050024
George Keishinge635ddc2022-12-08 07:38:02 -060025@click.command(context_settings=dict(help_option_names=['-h', '--help']))
26@click.option('-r', '--remote',
27 help="Hostname/IP of the remote host")
28@click.option('-u', '--username',
29 help="Username of the remote host.")
30@click.option('-p', '--password',
31 help="Password of the remote host.")
32@click.option('-c', '--config', default=abs_path + "/ffdc_config.yaml",
33 show_default=True, help="YAML Configuration file for log collection.")
34@click.option('-l', '--location', default="/tmp",
35 show_default=True, help="Location to save logs")
36@click.option('-t', '--type',
37 help="OS type of the remote (targeting) host. OPENBMC, RHEL, UBUNTU, SLES, AIX")
38@click.option('-rp', '--protocol', default="ALL",
39 show_default=True,
40 help="Select protocol to communicate with remote host.")
41@click.option('-e', '--env_vars', show_default=True,
42 help="Environment variables e.g: {'var':value}")
43@click.option('-ec', '--econfig', show_default=True,
44 help="Predefine environment variables, refer en_vars_template.yaml ")
45@click.option('--log_level', default="INFO",
46 show_default=True,
47 help="Log level (CRITICAL, ERROR, WARNING, INFO, DEBUG)")
48def cli_ffdc(remote,
49 username,
50 password,
51 config,
52 location,
53 type,
54 protocol,
55 env_vars,
56 econfig,
57 log_level):
Peter D Phan72ce6b82021-06-03 06:18:26 -050058 r"""
59 Stand alone CLI to generate and collect FFDC from the selected target.
Peter D Phan72ce6b82021-06-03 06:18:26 -050060 """
Peter D Phan8462faf2021-06-16 12:24:15 -050061
George Keishinge635ddc2022-12-08 07:38:02 -060062 click.echo("\n********** FFDC (First Failure Data Collection) Starts **********")
Peter D Phan72ce6b82021-06-03 06:18:26 -050063
George Keishinge33094d2021-07-22 12:59:03 -050064 if input_options_ok(remote, username, password, config, type):
George Keishinge635ddc2022-12-08 07:38:02 -060065 this_ffdc = ffdc_collector(remote,
66 username,
67 password,
68 config,
69 location,
70 type,
71 protocol,
72 env_vars,
73 econfig,
74 log_level)
Peter D Phan5e56f522021-12-20 13:19:41 -060075 this_ffdc.collect_ffdc()
Peter D Phan72ce6b82021-06-03 06:18:26 -050076
Peter D Phan5e56f522021-12-20 13:19:41 -060077 if len(os.listdir(this_ffdc.ffdc_dir_path)) == 0:
George Keishinge635ddc2022-12-08 07:38:02 -060078 click.echo("\n\tFFDC Collection from " + remote + " has failed.\n\n")
Peter D Phan8462faf2021-06-16 12:24:15 -050079 else:
George Keishinge635ddc2022-12-08 07:38:02 -060080 click.echo(str("\n\t" + str(len(os.listdir(this_ffdc.ffdc_dir_path)))
81 + " files were retrieved from " + remote))
Peter D Phan5e56f522021-12-20 13:19:41 -060082 click.echo("\tFiles are stored in " + this_ffdc.ffdc_dir_path)
Peter D Phan72ce6b82021-06-03 06:18:26 -050083
Peter D Phan5e56f522021-12-20 13:19:41 -060084 click.echo("\tTotal elapsed time " + this_ffdc.elapsed_time + "\n\n")
Peter D Phan72ce6b82021-06-03 06:18:26 -050085 click.echo("\n********** FFDC Finishes **********\n\n")
86
87
George Keishinge33094d2021-07-22 12:59:03 -050088def input_options_ok(remote, username, password, config, type):
Peter D Phan8462faf2021-06-16 12:24:15 -050089 r"""
90 Verify script options exist via CLI options or environment variables.
91 """
92
93 all_options_ok = True
94
95 if not remote:
96 all_options_ok = False
George Keishinge635ddc2022-12-08 07:38:02 -060097 print("\
98 \n\tERROR: Name/IP of the remote host is not specified in CLI options.")
Peter D Phan8462faf2021-06-16 12:24:15 -050099 if not username:
100 all_options_ok = False
George Keishinge635ddc2022-12-08 07:38:02 -0600101 print("\
102 \n\tERROR: User of the remote host is not specified in CLI options.")
Peter D Phan8462faf2021-06-16 12:24:15 -0500103 if not password:
104 all_options_ok = False
George Keishinge635ddc2022-12-08 07:38:02 -0600105 print("\
106 \n\tERROR: Password of the user remote host is not specified in CLI options.")
George Keishinge33094d2021-07-22 12:59:03 -0500107 if not type:
Peter D Phan3beb02e2021-07-06 13:25:17 -0500108 all_options_ok = False
George Keishinge635ddc2022-12-08 07:38:02 -0600109 print("\
110 \n\tERROR: Remote host os type is not specified in CLI options.")
George Keishinge33094d2021-07-22 12:59:03 -0500111 if not os.path.isfile(config):
Peter D Phan8462faf2021-06-16 12:24:15 -0500112 all_options_ok = False
George Keishinge635ddc2022-12-08 07:38:02 -0600113 print("\
114 \n\tERROR: Config file %s is not found. Please verify path and filename." % config)
Peter D Phan8462faf2021-06-16 12:24:15 -0500115
116 return all_options_ok
117
118
George Keishinge635ddc2022-12-08 07:38:02 -0600119if __name__ == '__main__':
Peter D Phan72ce6b82021-06-03 06:18:26 -0500120 cli_ffdc()