-
Notifications
You must be signed in to change notification settings - Fork 1
/
iommu.sh
executable file
·236 lines (101 loc) · 2.54 KB
/
iommu.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
#!/bin/bash
#!/bin/bash
useColors=true
usePager=true
usage() {
echo "\
Usage: $(basename $0) [OPTIONS]
Shows information about IOMMU groups relevant for working with PCI-passthrough
-c -C enables/disables colored output, respectively
-p -P enables/disables pager (less), respectively
-h display this help message"
}
color() {
if ! $useColors; then
cat
return
fi
rset=$'\E[0m'
case "$1" in
black) colr=$'\E[22;30m' ;;
red) colr=$'\E[22;31m' ;;
green) colr=$'\E[22;32m' ;;
yellow) colr=$'\E[22;33m' ;;
blue) colr=$'\E[22;34m' ;;
magenta) colr=$'\E[22;35m' ;;
cyan) colr=$'\E[22;36m' ;;
white) colr=$'\E[22;37m' ;;
intenseBlack) colr=$'\E[01;30m' ;;
intenseRed) colr=$'\E[01;31m' ;;
intenseGreen) colr=$'\E[01;32m' ;;
intenseYellow) colr=$'\E[01;33m' ;;
intenseBlue) colr=$'\E[01;34m' ;;
intenseMagenta) colr=$'\E[01;35m' ;;
intenseCyan) colr=$'\E[01;36m' ;;
intenseWhite) colr=$'\E[01;37m' ;;
esac
sed "s/^/$colr/;s/\$/$rset/"
}
indent() {
sed 's/^/\t/'
}
pager() {
if $usePager; then
less -SR
else
cat
fi
}
while getopts cCpPh opt; do
case $opt in
c)
useColors=true
;;
C)
useColors=false
;;
p)
usePager=true
;;
P)
usePager=false
;;
h)
usage
exit
;;
esac
done
iommuGroups=$(find '/sys/kernel/iommu_groups/' -maxdepth 1 -mindepth 1 -type d)
if [ -z "$iommuGroups" ]; then
echo "No IOMMU groups found. Are you sure IOMMU is enabled?"
exit
fi
for iommuGroup in $iommuGroups; do
echo "IOMMU group $(basename "$iommuGroup")" | color red
for device in $(ls -1 "$iommuGroup/devices/"); do
devicePath="$iommuGroup/devices/$device/"
# Print pci device
lspci -nns "$device" | color blue
# Print drivers
driverPath=$(readlink "$devicePath/driver")
if [ -z "$driverPath" ]; then
echo "Driver: none"
else
echo "Driver: $(basename $driverPath)"
fi | indent | color cyan
# Print usb devices
usbBuses=$(find $devicePath -maxdepth 2 -path '*usb*/busnum')
for usb in $usbBuses; do
echo 'Usb bus:' | color cyan
lsusb -s $(cat "$usb"): | indent | color green
done | indent
# Print block devices
blockDevices=$(find $devicePath -mindepth 5 -maxdepth 5 -name 'block')
for blockDevice in $blockDevices; do
echo 'Block device:' | color cyan
echo "Model: $(cat "$blockDevice/../model")" | indent | color green
lsblk -no NAME,SIZE,MOUNTPOINT "/dev/$(ls -1 $blockDevice)" | indent | color green
done | indent
done | indent
done | pager