blob: 26ced3f6537cfbfaa8f7e20baabdf20a6ab8e342 [file] [log] [blame]
Federico Ressi21a10d32020-01-31 07:43:30 +01001#!/usr/bin/env python3
Sean Dague97fcc7b2014-06-16 17:24:14 -04002#
3# Copyright 2014 Hewlett-Packard Development Company, L.P.
4#
5# Licensed under the Apache License, Version 2.0 (the "License"); you may
6# not use this file except in compliance with the License. You may obtain
7# a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14# License for the specific language governing permissions and limitations
15# under the License.
16
Eyale7361772016-04-05 16:18:56 +030017
Sean Dague97fcc7b2014-06-16 17:24:14 -040018"""Dump the state of the world for post mortem."""
19
20import argparse
21import datetime
Sean Dague737e9422015-05-12 19:51:39 -040022import fnmatch
Federico Ressi21a10d32020-01-31 07:43:30 +010023import io
Sean Dague97fcc7b2014-06-16 17:24:14 -040024import os
Jens Harbottce396d32019-09-05 08:51:33 +000025import shutil
Ian Wienand99440f92015-07-01 06:14:01 +100026import subprocess
Sean Dague97fcc7b2014-06-16 17:24:14 -040027import sys
28
29
Ihar Hrachyshkaef219bf2016-02-11 13:54:48 +010030GMR_PROCESSES = (
31 'nova-compute',
32 'neutron-dhcp-agent',
33 'neutron-l3-agent',
Ihar Hrachyshkaef219bf2016-02-11 13:54:48 +010034 'neutron-metadata-agent',
35 'neutron-openvswitch-agent',
Eric Harneyd8682db2016-10-14 14:36:29 -040036 'cinder-volume',
Ihar Hrachyshkaef219bf2016-02-11 13:54:48 +010037)
38
39
Sean Dague97fcc7b2014-06-16 17:24:14 -040040def get_options():
41 parser = argparse.ArgumentParser(
42 description='Dump world state for debugging')
43 parser.add_argument('-d', '--dir',
44 default='.',
45 help='Output directory for worlddump')
Sean Dagueac9313e2015-07-27 13:33:30 -040046 parser.add_argument('-n', '--name',
47 default='',
48 help='Additional name to tag into file')
Sean Dague97fcc7b2014-06-16 17:24:14 -040049 return parser.parse_args()
50
51
Sean Dagueac9313e2015-07-27 13:33:30 -040052def filename(dirname, name=""):
Brian Haley9be4cee2024-04-23 15:37:37 -040053 now = datetime.datetime.now(datetime.timezone.utc)
Sean Dagueac9313e2015-07-27 13:33:30 -040054 fmt = "worlddump-%Y-%m-%d-%H%M%S"
55 if name:
56 fmt += "-" + name
57 fmt += ".txt"
58 return os.path.join(dirname, now.strftime(fmt))
Sean Dague97fcc7b2014-06-16 17:24:14 -040059
60
61def warn(msg):
Eyale7361772016-04-05 16:18:56 +030062 print("WARN: %s" % msg)
Sean Dague97fcc7b2014-06-16 17:24:14 -040063
64
Sean Dague60a14052015-05-11 14:53:39 -040065def _dump_cmd(cmd):
Eyale7361772016-04-05 16:18:56 +030066 print(cmd)
67 print("-" * len(cmd))
68 print()
Ian Wienand99440f92015-07-01 06:14:01 +100069 try:
70 subprocess.check_call(cmd, shell=True)
Eyale7361772016-04-05 16:18:56 +030071 print()
Ihar Hrachyshka7976aac2016-03-03 15:30:49 +010072 except subprocess.CalledProcessError as e:
Eyale7361772016-04-05 16:18:56 +030073 print("*** Failed to run '%(cmd)s': %(err)s" % {'cmd': cmd, 'err': e})
Sean Dague60a14052015-05-11 14:53:39 -040074
75
Chris Dent57d79672016-02-23 15:38:43 +000076def _find_cmd(cmd):
Martin Kopeca37b6ab2023-05-26 13:46:42 +020077 if not shutil.which(cmd):
Eyale7361772016-04-05 16:18:56 +030078 print("*** %s not found: skipping" % cmd)
Chris Dent57d79672016-02-23 15:38:43 +000079 return False
80 return True
81
82
Sean Dague60a14052015-05-11 14:53:39 -040083def _header(name):
Eyale7361772016-04-05 16:18:56 +030084 print()
85 print(name)
86 print("=" * len(name))
87 print()
Sean Dague60a14052015-05-11 14:53:39 -040088
89
fumihiko kakuma578459f2016-04-07 08:15:45 +090090def _bridge_list():
yan.haifeng6ba17f72016-04-29 15:59:56 +080091 process = subprocess.Popen(['sudo', 'ovs-vsctl', 'list-br'],
92 stdout=subprocess.PIPE)
fumihiko kakuma578459f2016-04-07 08:15:45 +090093 stdout, _ = process.communicate()
94 return stdout.split()
95
96
fumihiko kakuma60994012016-03-08 20:55:01 +090097# This method gets a max openflow version supported by openvswitch.
98# For example 'ovs-ofctl --version' displays the following:
99#
100# ovs-ofctl (Open vSwitch) 2.0.2
101# Compiled Dec 9 2015 14:08:08
102# OpenFlow versions 0x1:0x4
103#
fumihiko kakuma2bd25682016-04-05 10:33:50 +0900104# The above shows that openvswitch supports from OpenFlow10 to OpenFlow13.
fumihiko kakuma60994012016-03-08 20:55:01 +0900105# This method gets max version searching 'OpenFlow versions 0x1:0x'.
106# And return a version value converted to an integer type.
107def _get_ofp_version():
Federico Ressi21a10d32020-01-31 07:43:30 +0100108 process = subprocess.Popen(['ovs-ofctl', '--version'],
109 stdout=subprocess.PIPE)
fumihiko kakuma60994012016-03-08 20:55:01 +0900110 stdout, _ = process.communicate()
Federico Ressi21a10d32020-01-31 07:43:30 +0100111 find_str = b'OpenFlow versions 0x1:0x'
fumihiko kakuma60994012016-03-08 20:55:01 +0900112 offset = stdout.find(find_str)
113 return int(stdout[offset + len(find_str):-1]) - 1
114
115
Sean Dague97fcc7b2014-06-16 17:24:14 -0400116def disk_space():
117 # the df output
Sean Dague60a14052015-05-11 14:53:39 -0400118 _header("File System Summary")
119
Sean Dague97fcc7b2014-06-16 17:24:14 -0400120 dfraw = os.popen("df -Ph").read()
121 df = [s.split() for s in dfraw.splitlines()]
122 for fs in df:
123 try:
124 if int(fs[4][:-1]) > 95:
125 warn("Device %s (%s) is %s full, might be an issue" % (
126 fs[0], fs[5], fs[4]))
127 except ValueError:
128 # if it doesn't look like an int, that's fine
129 pass
130
Eyale7361772016-04-05 16:18:56 +0300131 print(dfraw)
Sean Dague97fcc7b2014-06-16 17:24:14 -0400132
133
Sean Dague2da606d2015-08-06 10:02:43 -0400134def ebtables_dump():
Jens Harbott5a684eb2021-06-09 09:37:34 +0200135 tables = ['filter', 'nat']
Sean Dague2da606d2015-08-06 10:02:43 -0400136 _header("EB Tables Dump")
Chris Dent57d79672016-02-23 15:38:43 +0000137 if not _find_cmd('ebtables'):
138 return
Sean Dague5c5e0862015-11-09 14:08:15 -0500139 for table in tables:
140 _dump_cmd("sudo ebtables -t %s -L" % table)
Sean Dague2da606d2015-08-06 10:02:43 -0400141
142
Sean Dague168b7c22015-05-07 08:57:28 -0400143def iptables_dump():
144 tables = ['filter', 'nat', 'mangle']
Sean Dague60a14052015-05-11 14:53:39 -0400145 _header("IP Tables Dump")
146
Sean Dague168b7c22015-05-07 08:57:28 -0400147 for table in tables:
Sean Dague60a14052015-05-11 14:53:39 -0400148 _dump_cmd("sudo iptables --line-numbers -L -nv -t %s" % table)
149
150
Ihar Hrachyshka72c34ee2016-01-30 16:18:01 +0100151def _netns_list():
152 process = subprocess.Popen(['ip', 'netns'], stdout=subprocess.PIPE)
153 stdout, _ = process.communicate()
John L. Villalovosc6e69392017-02-06 14:24:42 -0800154 # NOTE(jlvillal): Sometimes 'ip netns list' can return output like:
155 # qrouter-0805fd7d-c493-4fa6-82ca-1c6c9b23cd9e (id: 1)
156 # qdhcp-bb2cc6ae-2ae8-474f-adda-a94059b872b5 (id: 0)
157 output = [x.split()[0] for x in stdout.splitlines()]
158 return output
Ihar Hrachyshka72c34ee2016-01-30 16:18:01 +0100159
160
Sean Dague60a14052015-05-11 14:53:39 -0400161def network_dump():
162 _header("Network Dump")
163
Nate Johnston56946cf2018-11-12 11:17:07 -0500164 _dump_cmd("bridge link")
Nate Johnston56946cf2018-11-12 11:17:07 -0500165 _dump_cmd("ip link show type bridge")
Sean Mooney7de6e0b2020-10-21 13:59:50 +0100166 ip_cmds = ["neigh", "addr", "route", "-6 route"]
Ihar Hrachyshka72c34ee2016-01-30 16:18:01 +0100167 for cmd in ip_cmds + ['netns']:
168 _dump_cmd("ip %s" % cmd)
169 for netns_ in _netns_list():
170 for cmd in ip_cmds:
LuyaoZhong8d4ae4f2020-02-19 08:16:03 +0000171 args = {'netns': bytes.decode(netns_), 'cmd': cmd}
Ihar Hrachyshka72c34ee2016-01-30 16:18:01 +0100172 _dump_cmd('sudo ip netns exec %(netns)s ip %(cmd)s' % args)
Sean Dague168b7c22015-05-07 08:57:28 -0400173
174
Ihar Hrachyshkac1b7cb12016-02-11 13:50:46 +0100175def ovs_dump():
176 _header("Open vSwitch Dump")
177
Chris Dent57d79672016-02-23 15:38:43 +0000178 # NOTE(cdent): If we're not using neutron + ovs these commands
179 # will not be present so
180 if not _find_cmd('ovs-vsctl'):
181 return
182
fumihiko kakuma578459f2016-04-07 08:15:45 +0900183 bridges = _bridge_list()
fumihiko kakuma60994012016-03-08 20:55:01 +0900184 ofctl_cmds = ('show', 'dump-ports-desc', 'dump-ports', 'dump-flows')
185 ofp_max = _get_ofp_version()
186 vers = 'OpenFlow10'
fumihiko kakuma578459f2016-04-07 08:15:45 +0900187 for i in range(1, ofp_max + 1):
fumihiko kakuma60994012016-03-08 20:55:01 +0900188 vers += ',OpenFlow1' + str(i)
Ihar Hrachyshkac1b7cb12016-02-11 13:50:46 +0100189 _dump_cmd("sudo ovs-vsctl show")
fumihiko kakuma60994012016-03-08 20:55:01 +0900190 for ofctl_cmd in ofctl_cmds:
191 for bridge in bridges:
LuyaoZhong8d4ae4f2020-02-19 08:16:03 +0000192 args = {'vers': vers, 'cmd': ofctl_cmd, 'bridge': bytes.decode(bridge)}
fumihiko kakuma60994012016-03-08 20:55:01 +0900193 _dump_cmd("sudo ovs-ofctl --protocols=%(vers)s %(cmd)s %(bridge)s" % args)
Ihar Hrachyshkac1b7cb12016-02-11 13:50:46 +0100194
195
Sean Dague97fcc7b2014-06-16 17:24:14 -0400196def process_list():
Sean Dague60a14052015-05-11 14:53:39 -0400197 _header("Process Listing")
198 _dump_cmd("ps axo "
199 "user,ppid,pid,pcpu,pmem,vsz,rss,tty,stat,start,time,args")
Sean Dague97fcc7b2014-06-16 17:24:14 -0400200
201
Sean Dague737e9422015-05-12 19:51:39 -0400202def compute_consoles():
203 _header("Compute consoles")
Federico Ressi21a10d32020-01-31 07:43:30 +0100204 for root, _, filenames in os.walk('/opt/stack'):
Sean Dague737e9422015-05-12 19:51:39 -0400205 for filename in fnmatch.filter(filenames, 'console.log'):
206 fullpath = os.path.join(root, filename)
207 _dump_cmd("sudo cat %s" % fullpath)
208
209
Ihar Hrachyshkaef219bf2016-02-11 13:54:48 +0100210def guru_meditation_reports():
211 for service in GMR_PROCESSES:
212 _header("%s Guru Meditation Report" % service)
Ian Wienand3a9df1d2015-07-01 06:18:47 +1000213
Ihar Hrachyshkaef219bf2016-02-11 13:54:48 +0100214 try:
215 subprocess.check_call(['pgrep', '-f', service])
216 except subprocess.CalledProcessError:
217 print("Skipping as %s does not appear to be running" % service)
218 continue
Ian Wienand3a9df1d2015-07-01 06:18:47 +1000219
Ihar Hrachyshkaef219bf2016-02-11 13:54:48 +0100220 _dump_cmd("killall -e -USR2 %s" % service)
221 print("guru meditation report in %s log" % service)
Joe Gordon2ebe9932015-06-07 16:57:34 +0900222
223
Ian Wienandbfcc7602017-03-29 11:52:06 +1100224def var_core():
225 if os.path.exists('/var/core'):
226 _header("/var/core dumps")
227 # NOTE(ianw) : see DEBUG_LIBVIRT_COREDUMPS. We could think
228 # about getting backtraces out of these. There are other
229 # tools out there that can do that sort of thing though.
230 _dump_cmd("ls -ltrah /var/core")
231
Federico Ressi21a10d32020-01-31 07:43:30 +0100232
233def disable_stdio_buffering():
234 # re-open STDOUT as binary, then wrap it in a
235 # TextIOWrapper, and write through everything.
236 binary_stdout = io.open(sys.stdout.fileno(), 'wb', 0)
237 sys.stdout = io.TextIOWrapper(binary_stdout, write_through=True)
238
239
Sean Dague97fcc7b2014-06-16 17:24:14 -0400240def main():
241 opts = get_options()
Sean Dagueac9313e2015-07-27 13:33:30 -0400242 fname = filename(opts.dir, opts.name)
Eyale7361772016-04-05 16:18:56 +0300243 print("World dumping... see %s for details" % fname)
Federico Ressi21a10d32020-01-31 07:43:30 +0100244
245 disable_stdio_buffering()
246
247 with io.open(fname, 'w') as f:
Sean Dague97fcc7b2014-06-16 17:24:14 -0400248 os.dup2(f.fileno(), sys.stdout.fileno())
249 disk_space()
250 process_list()
Sean Dague60a14052015-05-11 14:53:39 -0400251 network_dump()
Ihar Hrachyshkac1b7cb12016-02-11 13:50:46 +0100252 ovs_dump()
Sean Dague168b7c22015-05-07 08:57:28 -0400253 iptables_dump()
Sean Dague2da606d2015-08-06 10:02:43 -0400254 ebtables_dump()
Sean Dague737e9422015-05-12 19:51:39 -0400255 compute_consoles()
Ihar Hrachyshkaef219bf2016-02-11 13:54:48 +0100256 guru_meditation_reports()
Ian Wienandbfcc7602017-03-29 11:52:06 +1100257 var_core()
Jens Harbottce396d32019-09-05 08:51:33 +0000258 # Singular name for ease of log retrieval
259 copyname = os.path.join(opts.dir, 'worlddump')
260 if opts.name:
261 copyname += '-' + opts.name
262 copyname += '-latest.txt'
263 # We make a full copy to deal with jobs that may or may not
264 # gzip logs breaking symlinks.
265 shutil.copyfile(fname, copyname)
Sean Dague97fcc7b2014-06-16 17:24:14 -0400266
267
268if __name__ == '__main__':
269 try:
270 sys.exit(main())
271 except KeyboardInterrupt:
272 sys.exit(1)