]> git.proxmox.com Git - mirror_qemu.git/blame - scripts/analyse-9p-simpletrace.py
Merge remote-tracking branch 'spice/spice.v45' into staging
[mirror_qemu.git] / scripts / analyse-9p-simpletrace.py
CommitLineData
49a88ce3
HPB
1#!/usr/bin/env python
2# Pretty print 9p simpletrace log
3# Usage: ./analyse-9p-simpletrace <trace-events> <trace-pid>
4#
5# Author: Harsh Prateek Bora
6
7import simpletrace
8
9class VirtFSRequestTracker(simpletrace.Analyzer):
7999f7e1
AK
10 def begin(self):
11 print "Pretty printing 9p simpletrace log ..."
49a88ce3 12
7999f7e1
AK
13 def v9fs_rerror(self, tag, id, err):
14 print "RERROR (tag =", tag, ", id =", id, ",err =", err, ")"
49a88ce3
HPB
15
16 def v9fs_version(self, tag, id, msize, version):
17 print "TVERSION (tag =", tag, ", msize =", msize, ", version =", version, ")"
18
19 def v9fs_version_return(self, tag, id, msize, version):
20 print "RVERSION (tag =", tag, ", msize =", msize, ", version =", version, ")"
21
22 def v9fs_attach(self, tag, id, fid, afid, uname, aname):
23 print "TATTACH (tag =", tag, ", fid =", fid, ", afid =", afid, ", uname =", uname, ", aname =", aname, ")"
24
7999f7e1
AK
25 def v9fs_attach_return(self, tag, id, type, version, path):
26 print "RATTACH (tag =", tag, ", qid={type =", type, ", version =", version, ", path =", path, "})"
49a88ce3 27
7999f7e1
AK
28 def v9fs_stat(self, tag, id, fid):
29 print "TSTAT (tag =", tag, ", fid =", fid, ")"
49a88ce3 30
7999f7e1
AK
31 def v9fs_stat_return(self, tag, id, mode, atime, mtime, length):
32 print "RSTAT (tag =", tag, ", mode =", mode, ", atime =", atime, ", mtime =", mtime, ", length =", length, ")"
49a88ce3 33
7999f7e1
AK
34 def v9fs_getattr(self, tag, id, fid, request_mask):
35 print "TGETATTR (tag =", tag, ", fid =", fid, ", request_mask =", hex(request_mask), ")"
49a88ce3 36
7999f7e1
AK
37 def v9fs_getattr_return(self, tag, id, result_mask, mode, uid, gid):
38 print "RGETATTR (tag =", tag, ", result_mask =", hex(result_mask), ", mode =", oct(mode), ", uid =", uid, ", gid =", gid, ")"
49a88ce3 39
7999f7e1
AK
40 def v9fs_walk(self, tag, id, fid, newfid, nwnames):
41 print "TWALK (tag =", tag, ", fid =", fid, ", newfid =", newfid, ", nwnames =", nwnames, ")"
49a88ce3 42
7999f7e1
AK
43 def v9fs_walk_return(self, tag, id, nwnames, qids):
44 print "RWALK (tag =", tag, ", nwnames =", nwnames, ", qids =", hex(qids), ")"
49a88ce3 45
7999f7e1
AK
46 def v9fs_open(self, tag, id, fid, mode):
47 print "TOPEN (tag =", tag, ", fid =", fid, ", mode =", oct(mode), ")"
49a88ce3 48
7999f7e1
AK
49 def v9fs_open_return(self, tag, id, type, version, path, iounit):
50 print "ROPEN (tag =", tag, ", qid={type =", type, ", version =", version, ", path =", path, "}, iounit =", iounit, ")"
49a88ce3 51
7999f7e1
AK
52 def v9fs_lcreate(self, tag, id, dfid, flags, mode, gid):
53 print "TLCREATE (tag =", tag, ", dfid =", dfid, ", flags =", oct(flags), ", mode =", oct(mode), ", gid =", gid, ")"
49a88ce3 54
7999f7e1
AK
55 def v9fs_lcreate_return(self, tag, id, type, version, path, iounit):
56 print "RLCREATE (tag =", tag, ", qid={type =", type, ", version =", version, ", path =", path, "}, iounit =", iounit, ")"
49a88ce3 57
7999f7e1
AK
58 def v9fs_fsync(self, tag, id, fid, datasync):
59 print "TFSYNC (tag =", tag, ", fid =", fid, ", datasync =", datasync, ")"
49a88ce3 60
7999f7e1
AK
61 def v9fs_clunk(self, tag, id, fid):
62 print "TCLUNK (tag =", tag, ", fid =", fid, ")"
49a88ce3 63
7999f7e1
AK
64 def v9fs_read(self, tag, id, fid, off, max_count):
65 print "TREAD (tag =", tag, ", fid =", fid, ", off =", off, ", max_count =", max_count, ")"
49a88ce3 66
7999f7e1
AK
67 def v9fs_read_return(self, tag, id, count, err):
68 print "RREAD (tag =", tag, ", count =", count, ", err =", err, ")"
49a88ce3 69
7999f7e1
AK
70 def v9fs_readdir(self, tag, id, fid, offset, max_count):
71 print "TREADDIR (tag =", tag, ", fid =", fid, ", offset =", offset, ", max_count =", max_count, ")"
49a88ce3 72
7999f7e1
AK
73 def v9fs_readdir_return(self, tag, id, count, retval):
74 print "RREADDIR (tag =", tag, ", count =", count, ", retval =", retval, ")"
49a88ce3 75
7999f7e1
AK
76 def v9fs_write(self, tag, id, fid, off, count, cnt):
77 print "TWRITE (tag =", tag, ", fid =", fid, ", off =", off, ", count =", count, ", cnt =", cnt, ")"
49a88ce3 78
7999f7e1
AK
79 def v9fs_write_return(self, tag, id, total, err):
80 print "RWRITE (tag =", tag, ", total =", total, ", err =", err, ")"
49a88ce3 81
7999f7e1
AK
82 def v9fs_create(self, tag, id, fid, name, perm, mode):
83 print "TCREATE (tag =", tag, ", fid =", fid, ", perm =", oct(perm), ", name =", name, ", mode =", oct(mode), ")"
49a88ce3 84
7999f7e1
AK
85 def v9fs_create_return(self, tag, id, type, version, path, iounit):
86 print "RCREATE (tag =", tag, ", qid={type =", type, ", version =", version, ", path =", path, "}, iounit =", iounit, ")"
49a88ce3 87
7999f7e1
AK
88 def v9fs_symlink(self, tag, id, fid, name, symname, gid):
89 print "TSYMLINK (tag =", tag, ", fid =", fid, ", name =", name, ", symname =", symname, ", gid =", gid, ")"
49a88ce3 90
7999f7e1
AK
91 def v9fs_symlink_return(self, tag, id, type, version, path):
92 print "RSYMLINK (tag =", tag, ", qid={type =", type, ", version =", version, ", path =", path, "})"
49a88ce3 93
7999f7e1
AK
94 def v9fs_flush(self, tag, id, flush_tag):
95 print "TFLUSH (tag =", tag, ", flush_tag =", flush_tag, ")"
49a88ce3 96
7999f7e1
AK
97 def v9fs_link(self, tag, id, dfid, oldfid, name):
98 print "TLINK (tag =", tag, ", dfid =", dfid, ", oldfid =", oldfid, ", name =", name, ")"
49a88ce3 99
7999f7e1
AK
100 def v9fs_remove(self, tag, id, fid):
101 print "TREMOVE (tag =", tag, ", fid =", fid, ")"
49a88ce3 102
7999f7e1
AK
103 def v9fs_wstat(self, tag, id, fid, mode, atime, mtime):
104 print "TWSTAT (tag =", tag, ", fid =", fid, ", mode =", oct(mode), ", atime =", atime, "mtime =", mtime, ")"
49a88ce3 105
7999f7e1
AK
106 def v9fs_mknod(self, tag, id, fid, mode, major, minor):
107 print "TMKNOD (tag =", tag, ", fid =", fid, ", mode =", oct(mode), ", major =", major, ", minor =", minor, ")"
49a88ce3 108
7999f7e1
AK
109 def v9fs_lock(self, tag, id, fid, type, start, length):
110 print "TLOCK (tag =", tag, ", fid =", fid, "type =", type, ", start =", start, ", length =", length, ")"
49a88ce3 111
7999f7e1
AK
112 def v9fs_lock_return(self, tag, id, status):
113 print "RLOCK (tag =", tag, ", status =", status, ")"
49a88ce3 114
7999f7e1
AK
115 def v9fs_getlock(self, tag, id, fid, type, start, length):
116 print "TGETLOCK (tag =", tag, ", fid =", fid, "type =", type, ", start =", start, ", length =", length, ")"
49a88ce3 117
7999f7e1
AK
118 def v9fs_getlock_return(self, tag, id, type, start, length, proc_id):
119 print "RGETLOCK (tag =", tag, "type =", type, ", start =", start, ", length =", length, ", proc_id =", proc_id, ")"
49a88ce3 120
7999f7e1
AK
121 def v9fs_mkdir(self, tag, id, fid, name, mode, gid):
122 print "TMKDIR (tag =", tag, ", fid =", fid, ", name =", name, ", mode =", mode, ", gid =", gid, ")"
49a88ce3 123
7999f7e1
AK
124 def v9fs_mkdir_return(self, tag, id, type, version, path, err):
125 print "RMKDIR (tag =", tag, ", qid={type =", type, ", version =", version, ", path =", path, "}, err =", err, ")"
49a88ce3 126
7999f7e1
AK
127 def v9fs_xattrwalk(self, tag, id, fid, newfid, name):
128 print "TXATTRWALK (tag =", tag, ", fid =", fid, ", newfid =", newfid, ", xattr name =", name, ")"
49a88ce3 129
7999f7e1
AK
130 def v9fs_xattrwalk_return(self, tag, id, size):
131 print "RXATTRWALK (tag =", tag, ", xattrsize =", size, ")"
49a88ce3 132
7999f7e1
AK
133 def v9fs_xattrcreate(self, tag, id, fid, name, size, flags):
134 print "TXATTRCREATE (tag =", tag, ", fid =", fid, ", name =", name, ", xattrsize =", size, ", flags =", flags, ")"
49a88ce3 135
7999f7e1
AK
136 def v9fs_readlink(self, tag, id, fid):
137 print "TREADLINK (tag =", tag, ", fid =", fid, ")"
49a88ce3 138
7999f7e1
AK
139 def v9fs_readlink_return(self, tag, id, target):
140 print "RREADLINK (tag =", tag, ", target =", target, ")"
49a88ce3
HPB
141
142simpletrace.run(VirtFSRequestTracker())