-
Notifications
You must be signed in to change notification settings - Fork 0
/
geom_show.sh
300 lines (255 loc) · 8.87 KB
/
geom_show.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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
#!/bin/sh
# Copyright (c) 2017 Mikhail Zakharov <zmey20000@yahoo.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# Show GEOM configuration
#
# Typical usage:
# geom_show.sh -l -c DISK
#
# 2017.07.25 1.0
# Defaults ---------------------------------------------------------------------
ofs="," # Output Field Separator is "comma"
show_headers=true # Show headers in output
# ------------------------------------------------------------------------------
usage()
{
error_code=$1 # Error code on exit() to the caller
error_text="$2" # Short error message to print
usage_help="Usage:
geom_show.sh -k [-s separator]
List disk names known by the kernel.
geom_show.sh -g [-s separator]
geom_show.sh -g -c CLASS [-s separator]
List GEOM provider names of all or any particular class.
geom_show.sh -l -c CLASS | -p PROVIDER [-h] [-s separator]
Show details of GEOM provider(s). Filter entries by CLASS or exact
PROVIDER name. Suppress headers with -h key.
geom_show.sh -d [-s separator]
Dump raw GEOM configuration.
Use [-s separator] to specify output field separator. Default is comma: (,)."
[ "$error_text" ] && printf "Error: $error_text\n"
printf "$usage_help\n"
exit $error_code
}
# -----------------------------------------------------------------------------
awk="/usr/bin/awk"
sed="/usr/bin/sed"
sysctl="/sbin/sysctl"
# Error messages --------------------------------------------------------------
err_kgld_flags="Options -k, -g, -l or -d cannot be combined together."
err_no_flags="Specify -k, -g, -l or -d option to show disks configuration."
err_cp_flags="Specify -c, -p flag or both."
geom_show='#!/usr/bin/awk -f
# Copyright (c) 2017 Mikhail Zakharov <zmey20000@yahoo.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# Parse GEOM configuration
#
# Typical usage:
# sysctl -n kern.geom.confxml | /path/to/geom_show.awk -v "class=DISK"
#
# Other options:
# -v provider="ada0" Specify GEOM provider to show
# -v noheader="yes" Omit header
# -v short="yes" Short form prints only providers name(s)
# 2017.07.25 v 1.0
BEGIN {
FS = ">|<"
if (!ofs)
ofs = ","
OFS = ofs
gprov = provider
gclass = class
if (!gprov && !gclass)
short = "yes"
if (gclass && !gprov && !short && noheader != "yes")
print_header(gclass)
}
function expanded_length(s) { gsub("\t", " ", s); return length(s) }
function print_header(gclass) {
common_header = "Class" ofs "Provider" ofs "Mediasize" ofs \
"Sectorsize" ofs "Stripesize" ofs "Stripeoffset"
disk_header = common_header ofs "Heads" ofs "Sectors" ofs "RPM" ofs \
"Ident" ofs "Description"
md_header = common_header ofs "Heads" ofs "Sectors" ofs "Compression" \
ofs "Access" ofs "Type"
part_header = common_header ofs "Start" ofs "End" ofs "Index" ofs "Type"
if (gclass == "DISK")
print disk_header
else if (gclass == "MD")
print md_header
else if (gclass == "PART")
print part_header
else print common_header
}
/<name>/,/<\/name>/ {
depth = expanded_length($1)
if (depth == 4)
if ($3 == gclass || !gclass) {
# We have found requested GEOM Class
in_class = 1
current_gclass = $3
} else
in_class = 0
if (in_class && depth == 10) {
if (gprov == $3) {
# GEOM class for the given provider is detected
gclass = current_gclass
if (gclass && !short && noheader != "yes")
print_header(gclass)
}
# This should be the GEOM Name
gname = $3
}
}
/<mediasize>/ || /<sectorsize>/ || /<stripesize>/ || /<stripeoffset>/ {
if (!short && in_class && expanded_length($1) == 10)
# These are common, default fields for all providers
gdata = gdata ofs $3
next
}
/<fwheads>/ || /<fwsectors>/ {
if (!short && in_class && expanded_length($1) == 12)
if (gclass == "DISK" || gclass == "MD")
gdata = gdata ofs $3
next
}
/<rotationrate>/ || /<ident>/ || /<descr>/ {
if (!short && in_class && expanded_length($1) == 12 && gclass == "DISK")
gdata = gdata ofs $3
next
}
/<compression>/ || /<access>/ {
if (!short && in_class && expanded_length($1) == 12 && gclass == "MD")
gdata = gdata ofs $3
next
}
/<type>/ {
if (!short && in_class && expanded_length($1) == 12)
if (gclass == "MD" || gclass == "PART")
gdata = gdata ofs $3
next
}
/<start>/ || /<end>/ || /<index>/ {
if (!short && in_class && expanded_length($1) == 12 && gclass == "PART")
gdata = gdata ofs $3
next
}
/<\/provider>/ {
if (in_class && expanded_length($1) == 8) {
if (!gprov || gprov == gname)
if (current_gclass != "LABEL" &&
current_gclass != "DEV" ||
current_gclass == gclass)
if (!short)
print gclass ofs gname gdata
else {
if (!entry_1)
printf gname
else
printf ofs gname
entry_1 = 1
}
gdata = ""
}
}
END {
if (short)
printf "\n"
}'
# ------------------------------------------------------------------------------
while getopts "kgldc:p:hs:" flag
do
case "$flag" in
k) k_flag=true ;;
g) g_flag=true ;;
l) l_flag=true ;;
d) d_flag=true ;;
c) c_flag=true; c_arg="$OPTARG" ;;
p) p_flag=true; p_arg="$OPTARG";;
h) h_flag=true ;;
s) s_flag=true; s_arg="$OPTARG" ;;
*) usage 1 ;;
esac
done
[ ! $k_flag ] && [ ! $g_flag ] && [ ! $l_flag ] && [ ! $d_flag ] &&
usage 1 "$err_no_flags"
[ $s_flag ] && ofs="$s_arg"
# geom_show.sh -k [-s separator] -----------------------------------------------
if [ $k_flag ] ; then
[ $g_flag ] || [ $l_flag ] || [ $d_flag ] && usage 1 "$err_kgld_flags"
$sysctl -n kern.disks | $sed "s/ /$ofs/g"
exit 0
fi
# geom_show.sh -g [-s separator] | geom_show.sh -g -c CLASS [-s separator] -----
if [ $g_flag ] ; then
[ $k_flag ] || [ $l_flag ] || [ $d_flag ] && usage 1 "$err_kgld_flags"
[ $c_flag ] && gclass="$c_arg"
"$sysctl" -n kern.geom.confxml |
"$awk" -v ofs="$ofs" -v short="yes" -v class="$gclass" \
"$geom_show"
exit 0
fi
# geom_show.sh -l -c CLASS | -p PROVIDER [-h] [-s separator] -------------------
if [ $l_flag ] ; then
[ $g_flag ] || [ $k_flag ] || [ $d_flag ] && usage 1 "$err_kgld_flags"
[ ! $c_flag ] && [ ! $p_flag ] && usage 1 "$err_cp_flags"
[ $c_flag ] && gclass="$c_arg"
[ $p_flag ] && gprov="$p_arg"
[ $h_flag ] && noheader="yes"
"$sysctl" -n kern.geom.confxml |
"$awk" -v ofs="$ofs" -v class="$gclass" \
-v provider="$gprov" -v noheader="$noheader" \
"$geom_show"
exit 0
fi
# geom_show.sh -d [-s separator] -----------------------------------------------
if [ $d_flag ] ; then
[ $k_flag ] || [ $g_flag ] || [ $l_flag ] && usage 1 "$err_kgld_flags"
geom_dump=`$sysctl -n kern.geom.conftxt | sed -e "s/ /$ofs/g"`
printf "$geom_dump\n"
exit 0
fi