blob: d5ff5d1ab5019ce0418fa7cddd991305ac44c49c [file] [log] [blame]
Sean Dague97fcc7b2014-06-16 17:24:14 -04001#!/usr/bin/env python
2#
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
John L. Villalovos09949e02017-02-06 13:46:32 -080020from __future__ import print_function
21
Sean Dague97fcc7b2014-06-16 17:24:14 -040022import argparse
23import datetime
Chris Dent57d79672016-02-23 15:38:43 +000024from distutils import spawn
Sean Dague737e9422015-05-12 19:51:39 -040025import fnmatch
Sean Dague97fcc7b2014-06-16 17:24:14 -040026import os
27import os.path
Jens Harbottce396d32019-09-05 08:51:33 +000028import shutil
Ian Wienand99440f92015-07-01 06:14:01 +100029import subprocess
Sean Dague97fcc7b2014-06-16 17:24:14 -040030import sys
31
32
Ihar Hrachyshkaef219bf2016-02-11 13:54:48 +010033GMR_PROCESSES = (
34 'nova-compute',
35 'neutron-dhcp-agent',
36 'neutron-l3-agent',
37 'neutron-linuxbridge-agent',
38 'neutron-metadata-agent',
39 'neutron-openvswitch-agent',
Eric Harneyd8682db2016-10-14 14:36:29 -040040 'cinder-volume',
Ihar Hrachyshkaef219bf2016-02-11 13:54:48 +010041)
42
43
Sean Dague97fcc7b2014-06-16 17:24:14 -040044def get_options():
45 parser = argparse.ArgumentParser(
46 description='Dump world state for debugging')
47 parser.add_argument('-d', '--dir',
48 default='.',
49 help='Output directory for worlddump')
Sean Dagueac9313e2015-07-27 13:33:30 -040050 parser.add_argument('-n', '--name',
51 default='',
52 help='Additional name to tag into file')
Sean Dague97fcc7b2014-06-16 17:24:14 -040053 return parser.parse_args()
54
55
Sean Dagueac9313e2015-07-27 13:33:30 -040056def filename(dirname, name=""):
Sean Dague97fcc7b2014-06-16 17:24:14 -040057 now = datetime.datetime.utcnow()
Sean Dagueac9313e2015-07-27 13:33:30 -040058 fmt = "worlddump-%Y-%m-%d-%H%M%S"
59 if name:
60 fmt += "-" + name
61 fmt += ".txt"
62 return os.path.join(dirname, now.strftime(fmt))
Sean Dague97fcc7b2014-06-16 17:24:14 -040063
64
65def warn(msg):
Eyale7361772016-04-05 16:18:56 +030066 print("WARN: %s" % msg)
Sean Dague97fcc7b2014-06-16 17:24:14 -040067
68
Sean Dague60a14052015-05-11 14:53:39 -040069def _dump_cmd(cmd):
Eyale7361772016-04-05 16:18:56 +030070 print(cmd)
71 print("-" * len(cmd))
72 print()
Ian Wienand99440f92015-07-01 06:14:01 +100073 try:
74 subprocess.check_call(cmd, shell=True)
Eyale7361772016-04-05 16:18:56 +030075 print()
Ihar Hrachyshka7976aac2016-03-03 15:30:49 +010076 except subprocess.CalledProcessError as e:
Eyale7361772016-04-05 16:18:56 +030077 print("*** Failed to run '%(cmd)s': %(err)s" % {'cmd': cmd, 'err': e})
Sean Dague60a14052015-05-11 14:53:39 -040078
79
Chris Dent57d79672016-02-23 15:38:43 +000080def _find_cmd(cmd):
81 if not spawn.find_executable(cmd):
Eyale7361772016-04-05 16:18:56 +030082 print("*** %s not found: skipping" % cmd)
Chris Dent57d79672016-02-23 15:38:43 +000083 return False
84 return True
85
86
Sean Dague60a14052015-05-11 14:53:39 -040087def _header(name):
Eyale7361772016-04-05 16:18:56 +030088 print()
89 print(name)
90 print("=" * len(name))
91 print()
Sean Dague60a14052015-05-11 14:53:39 -040092
93
fumihiko kakuma578459f2016-04-07 08:15:45 +090094def _bridge_list():
yan.haifeng6ba17f72016-04-29 15:59:56 +080095 process = subprocess.Popen(['sudo', 'ovs-vsctl', 'list-br'],
96 stdout=subprocess.PIPE)
fumihiko kakuma578459f2016-04-07 08:15:45 +090097 stdout, _ = process.communicate()
98 return stdout.split()
99
100
fumihiko kakuma60994012016-03-08 20:55:01 +0900101# This method gets a max openflow version supported by openvswitch.
102# For example 'ovs-ofctl --version' displays the following:
103#
104# ovs-ofctl (Open vSwitch) 2.0.2
105# Compiled Dec 9 2015 14:08:08
106# OpenFlow versions 0x1:0x4
107#
fumihiko kakuma2bd25682016-04-05 10:33:50 +0900108# The above shows that openvswitch supports from OpenFlow10 to OpenFlow13.
fumihiko kakuma60994012016-03-08 20:55:01 +0900109# This method gets max version searching 'OpenFlow versions 0x1:0x'.
110# And return a version value converted to an integer type.
111def _get_ofp_version():
112 process = subprocess.Popen(['ovs-ofctl', '--version'], stdout=subprocess.PIPE)
113 stdout, _ = process.communicate()
114 find_str = 'OpenFlow versions 0x1:0x'
115 offset = stdout.find(find_str)
116 return int(stdout[offset + len(find_str):-1]) - 1
117
118
Sean Dague97fcc7b2014-06-16 17:24:14 -0400119def disk_space():
120 # the df output
Sean Dague60a14052015-05-11 14:53:39 -0400121 _header("File System Summary")
122
Sean Dague97fcc7b2014-06-16 17:24:14 -0400123 dfraw = os.popen("df -Ph").read()
124 df = [s.split() for s in dfraw.splitlines()]
125 for fs in df:
126 try:
127 if int(fs[4][:-1]) > 95:
128 warn("Device %s (%s) is %s full, might be an issue" % (
129 fs[0], fs[5], fs[4]))
130 except ValueError:
131 # if it doesn't look like an int, that's fine
132 pass
133
Eyale7361772016-04-05 16:18:56 +0300134 print(dfraw)
Sean Dague97fcc7b2014-06-16 17:24:14 -0400135
136
Sean Dague2da606d2015-08-06 10:02:43 -0400137def ebtables_dump():
Sean Dague5c5e0862015-11-09 14:08:15 -0500138 tables = ['filter', 'nat', 'broute']
Sean Dague2da606d2015-08-06 10:02:43 -0400139 _header("EB Tables Dump")
Chris Dent57d79672016-02-23 15:38:43 +0000140 if not _find_cmd('ebtables'):
141 return
Sean Dague5c5e0862015-11-09 14:08:15 -0500142 for table in tables:
143 _dump_cmd("sudo ebtables -t %s -L" % table)
Sean Dague2da606d2015-08-06 10:02:43 -0400144
145
Sean Dague168b7c22015-05-07 08:57:28 -0400146def iptables_dump():
147 tables = ['filter', 'nat', 'mangle']
Sean Dague60a14052015-05-11 14:53:39 -0400148 _header("IP Tables Dump")
149
Sean Dague168b7c22015-05-07 08:57:28 -0400150 for table in tables:
Sean Dague60a14052015-05-11 14:53:39 -0400151 _dump_cmd("sudo iptables --line-numbers -L -nv -t %s" % table)
152
153
Ihar Hrachyshka72c34ee2016-01-30 16:18:01 +0100154def _netns_list():
155 process = subprocess.Popen(['ip', 'netns'], stdout=subprocess.PIPE)
156 stdout, _ = process.communicate()
John L. Villalovosc6e69392017-02-06 14:24:42 -0800157 # NOTE(jlvillal): Sometimes 'ip netns list' can return output like:
158 # qrouter-0805fd7d-c493-4fa6-82ca-1c6c9b23cd9e (id: 1)
159 # qdhcp-bb2cc6ae-2ae8-474f-adda-a94059b872b5 (id: 0)
160 output = [x.split()[0] for x in stdout.splitlines()]
161 return output
Ihar Hrachyshka72c34ee2016-01-30 16:18:01 +0100162
163
Sean Dague60a14052015-05-11 14:53:39 -0400164def network_dump():
165 _header("Network Dump")
166
Nate Johnston56946cf2018-11-12 11:17:07 -0500167 _dump_cmd("bridge link")
Brian Haleyda188952019-10-31 14:49:23 -0400168 if _find_cmd("brctl"):
169 _dump_cmd("brctl show")
Nate Johnston56946cf2018-11-12 11:17:07 -0500170 _dump_cmd("ip link show type bridge")
Hunt Xuc3963552018-01-08 16:11:33 +0800171 ip_cmds = ["neigh", "addr", "link", "route"]
Ihar Hrachyshka72c34ee2016-01-30 16:18:01 +0100172 for cmd in ip_cmds + ['netns']:
173 _dump_cmd("ip %s" % cmd)
174 for netns_ in _netns_list():
175 for cmd in ip_cmds:
176 args = {'netns': netns_, 'cmd': cmd}
177 _dump_cmd('sudo ip netns exec %(netns)s ip %(cmd)s' % args)
Sean Dague168b7c22015-05-07 08:57:28 -0400178
179
Ihar Hrachyshkac1b7cb12016-02-11 13:50:46 +0100180def ovs_dump():
181 _header("Open vSwitch Dump")
182
Chris Dent57d79672016-02-23 15:38:43 +0000183 # NOTE(cdent): If we're not using neutron + ovs these commands
184 # will not be present so
185 if not _find_cmd('ovs-vsctl'):
186 return
187
fumihiko kakuma578459f2016-04-07 08:15:45 +0900188 bridges = _bridge_list()
fumihiko kakuma60994012016-03-08 20:55:01 +0900189 ofctl_cmds = ('show', 'dump-ports-desc', 'dump-ports', 'dump-flows')
190 ofp_max = _get_ofp_version()
191 vers = 'OpenFlow10'
fumihiko kakuma578459f2016-04-07 08:15:45 +0900192 for i in range(1, ofp_max + 1):
fumihiko kakuma60994012016-03-08 20:55:01 +0900193 vers += ',OpenFlow1' + str(i)
Ihar Hrachyshkac1b7cb12016-02-11 13:50:46 +0100194 _dump_cmd("sudo ovs-vsctl show")
fumihiko kakuma60994012016-03-08 20:55:01 +0900195 for ofctl_cmd in ofctl_cmds:
196 for bridge in bridges:
197 args = {'vers': vers, 'cmd': ofctl_cmd, 'bridge': bridge}
198 _dump_cmd("sudo ovs-ofctl --protocols=%(vers)s %(cmd)s %(bridge)s" % args)
Ihar Hrachyshkac1b7cb12016-02-11 13:50:46 +0100199
200
Sean Dague97fcc7b2014-06-16 17:24:14 -0400201def process_list():
Sean Dague60a14052015-05-11 14:53:39 -0400202 _header("Process Listing")
203 _dump_cmd("ps axo "
204 "user,ppid,pid,pcpu,pmem,vsz,rss,tty,stat,start,time,args")
Sean Dague97fcc7b2014-06-16 17:24:14 -0400205
206
Sean Dague737e9422015-05-12 19:51:39 -0400207def compute_consoles():
208 _header("Compute consoles")
209 for root, dirnames, filenames in os.walk('/opt/stack'):
210 for filename in fnmatch.filter(filenames, 'console.log'):
211 fullpath = os.path.join(root, filename)
212 _dump_cmd("sudo cat %s" % fullpath)
213
214
Ihar Hrachyshkaef219bf2016-02-11 13:54:48 +0100215def guru_meditation_reports():
216 for service in GMR_PROCESSES:
217 _header("%s Guru Meditation Report" % service)
Ian Wienand3a9df1d2015-07-01 06:18:47 +1000218
Ihar Hrachyshkaef219bf2016-02-11 13:54:48 +0100219 try:
220 subprocess.check_call(['pgrep', '-f', service])
221 except subprocess.CalledProcessError:
222 print("Skipping as %s does not appear to be running" % service)
223 continue
Ian Wienand3a9df1d2015-07-01 06:18:47 +1000224
Ihar Hrachyshkaef219bf2016-02-11 13:54:48 +0100225 _dump_cmd("killall -e -USR2 %s" % service)
226 print("guru meditation report in %s log" % service)
Joe Gordon2ebe9932015-06-07 16:57:34 +0900227
228
Ian Wienandbfcc7602017-03-29 11:52:06 +1100229def var_core():
230 if os.path.exists('/var/core'):
231 _header("/var/core dumps")
232 # NOTE(ianw) : see DEBUG_LIBVIRT_COREDUMPS. We could think
233 # about getting backtraces out of these. There are other
234 # tools out there that can do that sort of thing though.
235 _dump_cmd("ls -ltrah /var/core")
236
Sean Dague97fcc7b2014-06-16 17:24:14 -0400237def main():
238 opts = get_options()
Sean Dagueac9313e2015-07-27 13:33:30 -0400239 fname = filename(opts.dir, opts.name)
Eyale7361772016-04-05 16:18:56 +0300240 print("World dumping... see %s for details" % fname)
Sean Dague97fcc7b2014-06-16 17:24:14 -0400241 sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)
242 with open(fname, 'w') as f:
243 os.dup2(f.fileno(), sys.stdout.fileno())
244 disk_space()
245 process_list()
Sean Dague60a14052015-05-11 14:53:39 -0400246 network_dump()
Ihar Hrachyshkac1b7cb12016-02-11 13:50:46 +0100247 ovs_dump()
Sean Dague168b7c22015-05-07 08:57:28 -0400248 iptables_dump()
Sean Dague2da606d2015-08-06 10:02:43 -0400249 ebtables_dump()
Sean Dague737e9422015-05-12 19:51:39 -0400250 compute_consoles()
Ihar Hrachyshkaef219bf2016-02-11 13:54:48 +0100251 guru_meditation_reports()
Ian Wienandbfcc7602017-03-29 11:52:06 +1100252 var_core()
Jens Harbottce396d32019-09-05 08:51:33 +0000253 # Singular name for ease of log retrieval
254 copyname = os.path.join(opts.dir, 'worlddump')
255 if opts.name:
256 copyname += '-' + opts.name
257 copyname += '-latest.txt'
258 # We make a full copy to deal with jobs that may or may not
259 # gzip logs breaking symlinks.
260 shutil.copyfile(fname, copyname)
Sean Dague97fcc7b2014-06-16 17:24:14 -0400261
262
263if __name__ == '__main__':
264 try:
265 sys.exit(main())
266 except KeyboardInterrupt:
267 sys.exit(1)