-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlsblk.2.sh
167 lines (137 loc) · 3.38 KB
/
lsblk.2.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
#
# Copyright (c) Sebastian Kucharczyk <kuchen@kekse.biz>
# https://norbert.com.es/
#
#
OUTPUT=( PATH NAME SIZE SERIAL UUID PARTUUID PTUUID LABEL PARTLABEL )
#
LSBLK="lsblk"
LSBLK="$(which $LSBLK 2>/dev/null)"
#
if [[ $? -ne 0 ]]; then
echo "Command \`lsblk\` not found. Try \`apt install util-linux blk-utils\`." >&2
exit 4
fi
MAX_LEN=0
for i in "${OUTPUT[@]}"; do
len="${#i}"
[[ $MAX_LEN -lt $len ]] && MAX_LEN=$len
done
let MAX_LEN=$MAX_LEN+2
#
diskSize()
{
if [[ -z "$1" ]]; then
echo "First parameter needs to be an existing device." >&2
return 255
fi
local path="$1"
if [[ "${path::1}" != "/" ]]; then
path="$(findDisk "$path")"
elif [[ ! -e "$path" ]]; then
echo "This device path doesn't exist." >&2
return 254
fi
local SIZE="$($LSBLK --bytes --pairs --output size "$path")"
SIZE="${SIZE#*=}"
SIZE="${SIZE#\"}"
SIZE="${SIZE%\"}"
if [[ -z $2 ]]; then
echo "$SIZE"
elif [[ $SIZE -ne $2 ]]; then
echo "Sizes doesn't match. That's critical!" >&2
return 2
fi
}
diskInfo()
{
if [[ -z "$1" ]]; then
echo "First parameter needs to be an existing device." >&2
return 255
fi
local path="$1"
if [[ "${path::1}" != "/" ]]; then
path="$(findDisk "$path")"
elif [[ ! -e "$path" ]]; then
echo "This device path doesn't exist." >&2
return 254
fi
local size=""
local sep="$2"; [[ -z "$sep" ]] && sep=" "
local output="$($LSBLK --bytes --pairs --output path,size "$path")"
output=( $output )
local pair; local key; local value; for pair in "${output[@]}"; do
key="${pair%%=*}"
value="${pair#*=}"
value="${value#\"}"
value="${value%\"}"
case "$key" in
PATH) path="$value";;
SIZE) size=$value;;
esac
done
echo "${path}${sep}${size}"
}
findDisk()
{
if [[ -z "$1" ]]; then
echo "Please argue with your disk identifier (and optionally a size to compare, for security reasons)." >&2
return 1
fi
local verbose=0; [[ -n "$3" ]] && verbose=1
local verboseExtra=0; [[ -n "$4" ]] && verboseExtra=1
local _IFS="$IFS"; IFS=','
local cmd="${LSBLK} --bytes --pairs --output ${OUTPUT[*]}"; IFS="$_IFS"
local output="$(${cmd} 2>/dev/null | grep -i "$1")" #eval...
if [[ $? -ne 0 ]]; then
echo "Unable to find drive/partition parameters!" >&2
return 2
elif [[ -n "$2" && `echo "$output" | wc -l` -ne 1 ]]; then
echo "Either we found no item or too many (we need exactly one)!" >&2
return 3
fi
local result=''
output=( $output )
local match=""
local pair; local key; local value
for pair in "${output[@]}"; do
key="${pair%%=*}"
value="${pair#*=}"
value="${value#\"}"
value="${value%\"}"
if [[ -z "$match" ]]; then
if [[ "$value" == "$1" ]]; then
match="$key"
fi
fi
[[ $verbose -ne 0 ]] && printf "%${MAX_LEN}s: %s\n" "$key" "$value"
case "$key" in
SIZE)
if [[ -n "$2" && $value -ne $2 ]]; then
echo "Your configured size doesn't match. Critical!" >&2
return 4
fi
;;
PATH)
if [[ -z "$value" ]]; then
echo "Real path couldn't be resolved.. too bad." >&2
return 5
else
result="$value"
fi
;;
esac
done
if [[ -n "$2" && -z "$match" ]]; then
echo "After checking twice, your disk identifier was not in any output element." >&2
return 6
fi
[[ $verboseExtra -ne 0 && -n "$match" ]] && echo "Your disk identifier parameter was found within the key '$match'"
if [[ -n "$result" ]]; then
echo "$result"
return 0
else
return 255
fi
}
#