-
Notifications
You must be signed in to change notification settings - Fork 0
/
cvnmount-tui
executable file
·441 lines (367 loc) · 8.18 KB
/
cvnmount-tui
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
#!/bin/bash
BASENAME="${0##*/}"
warn() {
echo "$BASENAME: $*" >&2
}
die() {
warn "Fatal: $*"
exit 1
}
read-mounts() {
TMP_DSTS=()
local SRC DST TYPE OPTS DUMMY
while read SRC DST TYPE OPTS DUMMY
do
# Skip comments.
[ "${SRC:0:1}" = "#" ] && continue
# Skip empty lines.
[ -n "$SRC" ] || continue
# Filter to only user-mountable?
if [ -n "$_ONLY_USER" ]
then
if [ -n "$USER_MODE" ]
then
# In user mode, filter to only user-mountable mount points.
grep -q -E '(^|,)users?(,|$)' <<<"$OPTS" || continue
fi
fi
# Filter to only configured?
if [ -n "$_ONLY_CONF" ]
then
local CONF_DST FOUND=
for CONF_DST in "${CONF_DSTS[@]}"
do
if [ "$DST" = "$CONF_DST" ]
then
FOUND=yes
break
fi
done
[ -n "$FOUND" ] || continue
fi
# Append to bash array.
TMP_DSTS=("${TMP_DSTS[@]}" "$DST")
done
return 0
}
action-mount() {
local TMP_DSTS=()
_ONLY_USER=yes read-mounts </etc/fstab
local CONF_DSTS=("${TMP_DSTS[@]}")
local NOTMOUNTED_DSTS=()
local DST
for DST in "${CONF_DSTS[@]}"
do
# Skip already mounted mount-points.
awk "\$2 == \"$DST\" { flag=1; exit 0 } END { if (!flag) { exit 1 } }" </proc/mounts \
&& continue
NOTMOUNTED_DSTS=("${NOTMOUNTED_DSTS[@]}" "$DST")
done
if [ "${#NOTMOUNTED_DSTS}" -eq 0 ]
then
echo "No options available at this time. Exit $BASENAME action mount."
return 0
fi
local CHOICE_TITLE="Select a${USER_MODE:+ user-mountable} mount point to mount:"
give-choice-title
local PS3="$(get-baseprompt) mount> "
local DST
select DST in "${NOTMOUNTED_DSTS[@]}"
do
if [ -z "$DST" ]
then
case "$REPLY" in
\?|help)
give-hint
continue
;;
0|exit|quit)
echo "Exit $BASENAME action mount."
break
;;
*)
warn "mount prompt: Invalid reply \"$REPLY\"!"
continue
;;
esac
fi
echo "Mounting $DST ..."
mount "$DST" || warn "Error: Mounting $DST failed"
done
return 0
}
action-umount() {
local TMP_DSTS=()
_ONLY_USER=yes read-mounts </etc/fstab
local CONF_DSTS=("${TMP_DSTS[@]}")
TMP_DSTS=()
_ONLY_CONF=yes read-mounts </proc/mounts
local MOUNTED_DSTS=("${TMP_DSTS[@]}")
if [ "${#MOUNTED_DSTS}" -eq 0 ]
then
echo "No options available at this time. Exit $BASENAME action umount."
return 0
fi
local CHOICE_TITLE="Select a mounted${USER_MODE:+ user-mountable} mount point to umount:"
give-choice-title
local PS3="$(get-baseprompt) umount> "
local DST
select DST in "${MOUNTED_DSTS[@]}"
do
if [ -z "$DST" ]
then
case "$REPLY" in
\?|help)
give-hint
continue
;;
0|exit|quit)
echo "Exit $BASENAME action umount."
break
;;
*)
warn "umount prompt: Invalid reply \"$REPLY\"!"
continue
;;
esac
fi
echo "Unmounting $DST ..."
umount "$DST" || warn "Error: Unmounting $DST failed"
done
return 0
}
action-list-mounts() {
local TMP_DSTS=()
_ONLY_USER=yes read-mounts </etc/fstab
local CONF_DSTS=("${TMP_DSTS[@]}")
TMP_DSTS=()
_ONLY_CONF=yes read-mounts </proc/mounts
local MOUNTED_DSTS=("${TMP_DSTS[@]}")
if [ "${#MOUNTED_DSTS}" -eq 0 ]
then
echo "No options available at this time. Exit $BASENAME action list-mounts."
return 0
fi
local CHOICE_TITLE="Retrieve mount details for a configured${USER_MODE:+, user-mountable} & mounted mount point:"
give-choice-title
local PS3="$(get-baseprompt) list-mounts> "
local DST
select DST in "${MOUNTED_DSTS[@]}"
do
if [ -z "$DST" ]
then
case "$REPLY" in
\?|help)
give-hint
continue
;;
0|exit|quit)
echo "Exit $BASENAME action list-mounts."
break
;;
*)
warn "list-mounts prompt: Invalid reply \"$REPLY\"!"
continue
;;
esac
fi
echo "Mount details for mount point $DST:"
awk "\$2 == \"$DST\" { print }" </proc/mounts || warn "Error: Extracting mount details for mount point $DST failed"
done
return 0
}
action-shell() {
local TMP_DSTS=()
_ONLY_USER=yes read-mounts </etc/fstab
local CONF_DSTS=("${TMP_DSTS[@]}")
TMP_DSTS=()
_ONLY_CONF=yes read-mounts </proc/mounts
local MOUNTED_DSTS=("${TMP_DSTS[@]}")
if [ "${#MOUNTED_DSTS}" -eq 0 ]
then
echo "No options available at this time. Exit $BASENAME action shell."
return 0
fi
local CHOICE_TITLE="Start a sub-shell in a configured${USER_MODE:+, user-mountable} & mounted mount point:"
give-choice-title
local PS3="$(get-baseprompt) shell> "
local DST
select DST in "${MOUNTED_DSTS[@]}"
do
if [ -z "$DST" ]
then
case "$REPLY" in
\?|help)
give-hint
continue
;;
0|exit|quit)
echo "Exit $BASENAME action shell."
break
;;
*)
warn "prompt for shell: Invalid reply \"$REPLY\"!"
continue
;;
esac
fi
echo "Spawning a sub-shell on mount point $DST ..."
( cd "$DST" && exec "$SHELL" ) || warn "Error: Sub-shell on mount point $DST exited unsuccessfully"
echo "Continuing $BASENAME."
done
return 0
}
action-kerberos() {
local CHOICE_TITLE="Select a Kerberos command to run:"
give-choice-title
local PS3="$(get-baseprompt) kerberos> "
local CREDENTIALS_CACHE=
local CMD
local VALID_CMDS=(kinit kdestroy klist select-credentials-cache)
select CMD in "${VALID_CMDS[@]}"
do
if [ -z "$CMD" ]
then
case "$REPLY" in
\?|help)
give-hint
continue
;;
0|exit|quit)
echo "Exit $BASENAME action kerberos."
break
;;
*)
# Try to lookup a command for the reply string-wise.
local OTHER_CMD
for OTHER_CMD in "${VALID_CMDS[@]}"
do
if [ "$REPLY" = "$OTHER_CMD" ]
then
CMD="$OTHER_CMD"
break
fi
done
# Still no command to execute?
if [ -z "$CMD" ]
then
warn "kerberos prompt: Invalid reply \"$REPLY\"!"
continue
fi
# Otherwise, fall-through.
;;
esac
fi
case "$CMD" in
select-credentials-cache)
local CC_OPTIONS=()
local CC_BASES=(/tmp/krb5cc_$(id -u))
if [ -z "$USER_MODE" ]
then
CC_BASES=("${CC_BASES[@]}" /tmp/krb5ccmachine)
fi
local CC_BASE
for CC_BASE in "${CC_BASES[@]}"
do
CC_OPTIONS=("${CC_OPTIONS[@]}" "$CC_BASE")
local CC_OPTION
for CC_OPTION in "$CC_BASE"_*
do
# Skip failed glob.
[ "$CC_OPTION" = "${CC_BASE}_*" ] && continue
CC_OPTIONS=("${CC_OPTIONS[@]}" "$CC_OPTION")
done
done
local ORIG_PS3="$PS3"
PS3="$(get-baseprompt) kerberos cache> "
select CREDENTIALS_CACHE in default "${CC_OPTIONS[@]}"
do
if [ -z "$CREDENTIALS_CACHE" ]
then
CREDENTIALS_CACHE="$REPLY"
elif [ "$CREDENTIALS_CACHE" = "default" ]
then
CREDENTIALS_CACHE=
fi
break
done
PS3="$ORIG_PS3"
continue
;;
esac
local BASE_MSG="Running Kerberos command $CMD${CREDENTIALS_CACHE:+ (on credentials cache $CREDENTIALS_CACHE)}"
echo "$BASE_MSG ..."
echo
{ "$CMD" ${CREDENTIALS_CACHE:+-c "$CREDENTIALS_CACHE"} && echo; } \
|| { echo; warn "Error: $BASE_MSG failed"; }
done
return 0
}
action-toggle-user-mode() {
if [ -n "$USER_MODE" ]
then
USER_MODE=
else
USER_MODE="user mode"
fi
PS3="$(get-baseprompt)> "
}
USER_MODE="user mode"
[ "$UID" -eq 0 ] && USER_MODE=
CHOICE_TITLE="What do you want to do today?"
give-choice-title() {
echo
echo "$CHOICE_TITLE"
echo
}
give-hint() {
give-choice-title
echo "Hint: Enter the number of an option you want to invoke,"
echo " or 0 or ^D (Ctrl-D, End-of-Transmission) to exit"
echo " to enclosing scope. Press enter without any input"
echo " to repeat the list of options."
echo
}
give-hint
ORIG_PS3="$PS3"
get-baseprompt() {
echo -n "(${USER_MODE:-root mode}) $BASENAME"
}
PS3="$(get-baseprompt)> "
VALID_ACTIONS=(mount umount list-mounts shell kerberos toggle-user-mode)
select ACTION in "${VALID_ACTIONS[@]}"
do
if [ -z "$ACTION" ]
then
case "$REPLY" in
\?|help)
give-hint
continue
;;
0|exit|quit)
echo "Exit $BASENAME."
break
;;
*)
# Try to lookup an action for the reply string-wise.
for OTHER_ACTION in "${VALID_ACTIONS[@]}"
do
if [ "$REPLY" = "$OTHER_ACTION" ]
then
ACTION="$OTHER_ACTION"
break
fi
done
# Still no action to invoke?
if [ -z "$ACTION" ]
then
warn "Invalid reply \"$REPLY\"!"
continue
fi
# Otherwise, fall-through.
;;
esac
fi
action-"$ACTION" || warn "Warning: Action \"$ACTION\" seems to have been unsuccessful."
done
exit 0