-
Notifications
You must be signed in to change notification settings - Fork 25
/
check_large_files.bash
executable file
·1325 lines (1236 loc) · 38.7 KB
/
check_large_files.bash
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
# ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- #
# Check for large files and purge the ones requested #
# #
# The -a switch will automatically purge core files when there #
# is only 5GB of space left on filesystem. #
# #
# To install as a cron-job, add the following line to /etc/crontab: #
# 1 * * * * root /home/lanforge/scripts/check_large_files.sh -a 2>&1 | logger -t check_large_files #
# #
# ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- #
# set -x
# set -e
# these are default selections
selections=()
show_menu=1
verbose=0
quiet=0
starting_dir="$PWD"
cleanup_size_mb=$(( 1024 * 5 ))
# do not name this file "core_x" because it will get removed
lf_core_log="/home/lanforge/found_cores_log.txt"
USAGE="$0 # Check for large files and purge many of the most inconsequencial
-a # automatic: quietly empty trash and remove crash files if free space is < ${cleanup_size_mb}MB
-b # remove extra kernels and modules
-c # remove all core files
-e # remove lanforge related logs:
lanforge_log* run_*out
l4logs/* wifi/*_log_*.txt
l3helper* /usr/local/lanforge/nginx/logs/*
-d # remove old LANforge downloads
-h # help
-k # remove ath10k crash files
-l # remove old files from /var/log, truncate /var/log/messages
-m # remove orphaned fileio items in /mnt/lf
-p # remove pcap data
-q # quiet
-r # compress /home/lanforge report data and pcap files
-s # empty the trash
-t # remove /var/tmp files
-v # verbose
-z # compressed files in /home/lanforge
"
eyedee=`id -u`
if (( eyedee != 0 )); then
echo "$0: Please become root to use this script, bye"
exit 1
fi
debug() {
if [[ x$verbose = x ]] || (( $verbose < 1 )); then return; fi
echo ": $1"
}
note() {
if (( $quiet > 0 )); then return; fi
echo "# $1"
}
function contains() {
if [[ x$1 = x ]] || [[ x$2 = x ]]; then
echo "contains wants ARRAY and ITEM arguments: if contains name joe; then... }$"
exit 1
fi
# these two lines below are important to not modify
local tmp="${1}[@]"
local array=( ${!tmp} )
# if [[ x$verbose = x1 ]]; then
# printf "contains array %s\n" "${array[@]}"
# fi
if (( ${#array[@]} < 1 )); then
return 1
fi
local item
for item in "${array[@]}"; do
# debug "contains testing $2 == $item"
[[ "$2" = "$item" ]] && return 0
done
return 1
}
function remove() {
if [[ x$1 = x ]] || [[ x$2 = x ]]; then
echo "remove wants ARRAY and ITEM arguments: if contains name joe; then... }$"
exit 1
fi
# these two lines below are important to not modify
local tmp="${1}[@]"
local array=( ${!tmp} )
# if [[ x$verbose = x1 ]]; then
# printf "contains array %s\n" "${array[@]}"
# fi
if (( ${#array[@]} < 1 )); then
return 1
fi
local item
for i in "${!array[@]}"; do
if [[ ${array[$i]} = "$2" ]]; then
unset 'array[i]'
debug "removed $2 from $1"
return 0
fi
done
return 1
}
function disk_space_below() {
if [[ x$1 = x ]] || [[ x$2 = x ]]; then
echo "disk_free: needs to know what filesystem, size in bytes to alarm on"
return
fi
local amount_left_mb=`df -BM --output=iavail | tail -1`
if (( $amount_left_mb < $cleanup_size_mb )) ; then
debug "amount left $amount_left_mb lt $cleanup_size_mb"
return 0
fi
debug "amount left $amount_left_mb ge $cleanup_size_mb"
return 1
}
# ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- #
# ----- ----- M A I N ----- ----- #
# ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- #
#opts=""
opts="abcdehklmpqrtv"
while getopts $opts opt; do
case "$opt" in
a)
if contains "selections" "v"; then
verbose=1
else
verbose=0
fi
quiet=1
selections+=($opt)
selections+=(s) # dump trash
show_menu=0
;;
b)
selections+=($opt)
;;
c)
selections+=($opt)
;;
d)
selections+=($opt)
;;
e)
selection+=($opt)
;;
h)
echo "$USAGE"
exit 0
;;
k)
selections+=($opt)
;;
l)
selections+=($opt)
;;
m)
selections+=($opt)
;;
p)
selections+=($opt)
;;
r)
selections+=($opt)
;;
s)
selections+=($opt)
;;
q)
quiet=1
verbose=0
;;
t)
selections+=($opt)
;;
v)
quiet=0
verbose=1
;;
z)
selections+=($opt)
;;
*)
echo "unknown option: $opt"
echo "$USAGE"
exit 1
;;
esac
done
#if (( ${#selections} < 1 )); then
# echo "$USAGE"
# exit 0
#fi
HR=" ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- -----"
function hr() {
echo "$HR"
}
declare -A totals=(
[b]=0
[c]=0
[d]=0
[e]=0
[k]=0
[l]=0
[m]=0
[p]=0
[r]=0
[s]=0
[t]=0
[z]=0
)
declare -A desc=(
[b]="kernel files"
[c]="core files"
[d]="lf downloads"
[e]="lanforge logs"
[k]="lf/ath10 files"
[l]="/var/log"
[m]="/mnt/lf files"
[n]="dnf cache"
[p]="pcap data"
[r]="report data"
[s]="trash can"
[t]="/var/tmp"
[z]="compressed files"
)
declare -A surveyors_map=(
[b]="survey_kernel_files"
[c]="survey_core_files"
[d]="survey_lf_downloads"
[e]="survey_lflogs"
[k]="survey_ath10_files"
[l]="survey_var_log"
[m]="survey_mnt_lf_files"
[n]="survey_dnf_cache"
[p]="survey_pcap_files"
[r]="survey_report_data"
[s]="survey_trash_can"
[t]="survey_var_tmp"
[z]="survey_compressed_files"
)
declare -A cleaners_map=(
[b]="clean_old_kernels"
[c]="clean_core_files"
[d]="clean_lf_downloads"
[e]="clean_lflogs"
[k]="clean_ath10_files"
[l]="clean_var_log"
[m]="clean_mnt_lf_files"
[n]="clean_dnf_cache"
[p]="clean_pcap_files"
[r]="compress_report_data"
[s]="empty_trash_can"
[t]="clean_var_tmp"
[z]="clean_compressed_files"
)
kernel_to_relnum() {
#set -euxv
local hunks=()
# 1>&2 echo "KERNEL RELNUM:[$1]"
local my1="${1/-at-ct/}"
my1="${my1/*[^0-9]-/}" # Dang, this is not intuitive to a PCRE user
#1>&2 echo "KERNEL [$1] REGEX:[$my1]"
my1="${my1//\+/}"
if [[ $my1 =~ ^[^0-9] ]]; then
1>&2 echo "Kernel version regex failed!: [$1]"
exit 1
fi
IFS="." read -ra hunks <<< "$my1"
IFS=
local tmpstr
local max_width=8
local last_len=0
local expandos=()
for i in 0 1 2; do
if (( $i < 2 )); then
#1>&2 echo "HUNK $i: [${hunks[$i]}]"
expandos+=( $(( 100 + ${hunks[$i]} )) )
else
tmpstr="00000000${hunks[i]}"
last_len=$(( ${#tmpstr} - $max_width ))
expandos+=( ${tmpstr:$last_len:${#tmpstr}} )
#1>&2 echo "TRIMMED ${tmpstr:$last_len:${#tmpstr}}"
fi
done
set +x
#1>&2 echo "EXPANDO: ${expandos[0]}${expandos[1]}${expandos[2]}"
echo "k${expandos[0]}${expandos[1]}${expandos[2]}"
}
empty_trash_can() {
#set -vux
if [ -x /usr/bin/trash-empty ]; then
for can in "${trash_cans[@]}"; do
if [[ $can = /home* ]]; then
# that =() nonsense is turning the '/' into spaces and letting default IFS let () treat it as array items
local hunks=(${can//\// })
local uzer="${hunks[1]}"
su -l $uzer -c "unset DISPLAY; /usr/bin/trash-empty"
else
# we should be root
/usr/bin/trash-empty
fi
done
else
note "trash-cli not installed, destroying trash files"
for can in "${trash_cans[@]}"; do
find "${can}" -type f -exec rm -vf {} \;
done
fi
totals[s]=0
set +vux
}
clean_compressed_files() {
note "Listing compressed files..."
local f
if (( ${#compressed_files[@]} > 0 )); then
for f in "${compressed_files[@]}"; do
echo "$f"
done | paste - - - | less
else
echo "No compressed files."
fi
totals[z]=0
}
clean_lflogs() {
note "Cleaning LANforge logs..."
local fname
cd /home/lanforge
if [[ -s /tmp/removable_lflogs.txt ]]; then
while IFS= read -r -d '' fname ; do
if [[ -f "$fname" ]]; then
echo -n "."
rm -f "$fname"
sleep 0.05
fi
done < /tmp/removable_lflogs.txt
fi
rm -f /tmp/removable_lflogs.txt
cd -
removable_lflogs=()
totals[e]=0
survey_lflogs
}
clean_old_kernels() {
note "Cleaning old CT kernels..."
local f
if (( ${#removable_packages[@]} > 0 )); then
for f in "${removable_packages[@]}"; do
echo "$f\*"
done | xargs /usr/bin/rpm --nodeps -hve
fi
if (( ${#removable_kernels[@]} > 0 )); then
for f in "${removable_kernels[@]}"; do
echo "$f"
done | xargs rm -f
fi
if (( ${#removable_libmod_dirs[@]} > 0 )); then
printf " removable_libmod_dirs[/lib/modules/%s]\n" "${removable_libmod_dirs[@]}"
for f in "${removable_libmod_dirs[@]}"; do
echo "/lib/modules/$f"
done | xargs rm -rf
fi
# check to see if there are 50_candela-x files that
# lack a /lib/modules directory
local fifty_files=(`ls /etc/grub.d/50_candela_*`)
local k_v
for file in "${fifty_files[@]}"; do
k_v=${file#/etc/grub.d/50_candela_}
#echo "K_V[$k_v]"
if [ ! -d /lib/modules/$k_v ]; then
echo "/lib/modules/$k_v not found, removing /etc/grub.d/50_candela_$k_v"
rm -f "/etc/grub.d/50_candela_${k_v}"
fi
done
grub2-mkconfig -o /boot/grub2/grub.cfg
if [ -d "/boot2" ]; then
rm -rf /boot2/*
rsync -a /boot/. /boot2/
local dev2=`df /boot2/ |awk '/dev/{print $1}'`
if [ x$dev2 != x ]; then
/usr/sbin/grub2-install $dev2 ||:
fi
fi
}
clean_core_files() {
note "Cleaning core files..."
if (( ${#core_files[@]} < 1 )); then
debug "No core files ?"
return 0
fi
local counter=0
if [ ! -f "$lf_core_log" ]; then
touch "$lf_core_log"
fi
date +"%Y-%m-%d-%H:%M.%S" >> $lf_core_log
for f in "${core_files[@]}"; do
file "$f" >> "$lf_core_log"
done
note "Recorded ${#core_files[@]} core files to $lf_core_log: "
tail -n $(( 1 + ${#core_files[@]} )) $lf_core_log
local do_delete=0
if contains "selections" "a"; then
disk_space_below / $cleanup_size_mb && do_delete=$(( $do_delete + 1 ))
disk_space_below /home $cleanup_size_mb && do_delete=$(( $do_delete + 1 ))
(( $do_delete > 0)) && note "disk space below $cleanup_size_mfb, removing core files"
elif contains "selections" "c"; then
do_delete=1
note "core file cleaning selected"
fi
if (( $do_delete > 0 )); then
for f in "${core_files[@]}"; do
echo -n "-"
rm -f "$f" && remove "core_files" "$f"
counter=$(( counter + 1 ))
if (( ($counter % 100) == 0 )); then
sleep 0.2
fi
done
else
note "disk space above $cleanup_size_mb, not removing core files"
fi
#set +vux
echo ""
totals[c]=0
survey_core_files
}
clean_lf_downloads() {
if (( ${#lf_downloads[@]} < 1 )); then
note "No /home/lanforge/downloads files to remove"
return 0
fi
note "Clean LF downloads..."
if (( $verbose > 0 )); then
echo "Would Delete: "
printf "[%s] " "${lf_downloads[@]}" | sort
fi
cd /home/lanforge/Downloads
for f in "${lf_downloads[@]}"; do
[[ "$f" = "/" ]] && echo "Whuuut? this is not good, bye." && exit 1
# echo "Next:[$f]"
sleep 0.02
rm -f "$f"
done
totals[d]=0
cd "$starting_dir"
}
clean_ath10_files() {
note "clean_ath10_files WIP"
local f
while read f; do
echo "removing $f"
rm -f "$f"
done < <( find /home/lanforge -type f -iname "ath10*" ||:)
}
clean_var_log() {
note "Vacuuming journal..."
journalctl --vacuum-size 1M
local vee=""
if [[ -s /tmp/var_log_files.txt ]]; then
mapfile -d '' var_log_files < /tmp/var_log_files.txt
fi
if (( $verbose > 0 )); then
echo "Removing these log files:"
printf ' %s\n' "${var_log_files[@]}"
vee="-v"
sleep 1
fi
if (( ${#var_log_files[@]} < 1 )); then
note " No notable files in /var/log to remove: ${#var_log_files[@]} "
rm -f /tmp/var_log_files.txt
return
fi
cd /var/log
for file in "${var_log_files[@]}"; do
case $file in
/var/log/dnf.librepo.log)
truncate -s0 "$file" ;;
/var/log/messages.*)
rm -f $vee "$file" ;;
/var/log/messages)
truncate -s0 "$file" ;;
/var/log/messages-*)
rm -f $vee "$file" ;;
/var/log/sysmon.log)
truncate -s0 "$file" ;;
/var/log/audit/audit.log)
truncate -s0 "$file" ;;
/var/log/xrdp.log-*)
rm -f $vee "$file" ;;
/var/log/xrdp-sesman.log-*)
rm -f $vee "$file" ;;
/var/log/xrdp.log)
truncate -s0 "$file" ;;
/var/log/xrdp-sesman.log)
truncate -s0 "$file" ;;
*)
rm -f $vee "$file";;
esac
echo -n "."
sleep 0.05
done
rm -f /tmp/var_log_files.txt
cd "$starting_dir"
}
clean_dnf_cache() {
local yum="dnf"
which --skip-alias dnf &> /dev/null
(( $? < 0 )) && yum="yum"
debug "Purging $yum cache"
$yum clean all
totals[n]=0
}
clean_mnt_lf_files() {
note "cleaning mnt lf files..."
if (( $verbose > 0 )); then
printf "%s\n" "${mnt_lf_files[@]}"
fi
rm -f "${mnt_lf_files[@]}"
totals[m]=0
}
clean_pcap_files() {
note "Purging pcap data..."
cd /tmp
rm -f *pcap *pcapng *pcap.xz *pcapng.xz *.pcap.gz *.pcapng.gz
cd /home/lanforge
find tmp/ report-data/ local/ lf_reports/ html-reports/ Documents/ \
-type f -a \( \
-iname '*.pcap' \
-o -iname '*.pcap.gz' \
-o -iname '*.pcap.xz' \
-o -iname '*.pcapng' \
-o -iname '*.pcapng.gz' \
-o -iname '*.pcapng.xz' \
\) -print0 > /tmp/pcap_list.txt
local vile_list=()
if [[ -s /tmp/pcap_list.txt ]]; then
mapfile -d '' vile_list < /tmp/pcap_list.txt
fi
counter=1
for f in "${vile_list[@]}"; do
(( $verbose > 0 )) && echo " removing $f" || echo -n " ${counter}/${#vile_list[@]}"
rm -f "$f"
echo -n "."
sleep 0.05
(( counter+=1 ))
done
totals[p]=0
cd -
echo ""
}
compress_report_data() {
note "compress report data..."
cd /home/lanforge
local vile_list=()
mapfile -d '' vile_list < <(cat /tmp/csv_list.txt /tmp/pdf_list.txt /tmp/pcap_list.txt )
counter=1
echo "There are ${#vile_list[@]} files to compress..."
if (( ${#vile_list[@]} < 1)); then
echo "...not enough files to compress"
rm -f /tmp/csv_list.txt /tmp/pdf_list.txt /tmp/pcap_list.txt
return
fi
local line
for line in "${vile_list[@]}" ; do
echo "$line"
done > /tmp/report_list.txt
if [[ -x /usr/bin/zstd ]]; then
echo "Found zstd..."
set -x
if [[ -s /home/lanforge/.report.dict ]]; then
echo "Found zstd training data in /home/lanforge/.report.dict"
else
echo "training zstd to /home/lanforge/.report.dict. Do not erase that file."
#cat /tmp/csv_list.txt /tmp/pdf_list.txt /tmp/pcap_list.txt > /tmp/zstd.list
mapfile -t train_list < /tmp/report_list.txt
zstd --train "${train_list[@]}" -o /home/lanforge/.report.dict -v
fi
echo "compressing..."
zstd --filelist /tmp/report_list.txt -D /home/lanforge/.report.dict --rm -v
set +x
else
echo "zstd not found. Using xz..."
cat csv_list.txt /tmp/pdf_list.txt /tmp/pcap_list.txt > /tmp/xz.list
xz --fast --files0=/tmp/xz.list -T0 -v
fi
rm -f /tmp/csv_list.txt /tmp/pdf_list.txt /tmp/pcap_list.txt
totals[r]=0
cd -
echo ""
}
clean_var_tmp() {
note "clean var tmp"
if [[ ! -s /tmp/var_tmp_files.txt ]]; then
note " no files surveyed"
return
fi
mapfile -d '' var_tmp_files < /tmp/var_tmp_files.txt
if (( $verbose > 0 )); then
printf " %s\n" "${var_tmp_files[@]}"
sleep 1
fi
for f in "${var_tmp_files[@]}"; do
rm -f "$f"
echo -n '.'
sleep 0.05
done
}
kernel_files=() # temp
lib_module_dirs=() # temp
declare -A kernel_sort_names
declare -A pkg_sort_names
declare -A libmod_sort_names
removable_kernels=() # these are for CT kernels
removable_libmod_dirs=() # these are for CT kernels
removable_packages=() # these are for Fedora kernels
removable_pkg_series=()
survey_kernel_files() {
unset removable_kernels
unset removable_libmod_dirs
unset removable_packages
unset lib_module_dirs
unset kernel_sort_names
unset kernel_sort_serial
unset pkg_sort_names
unset libmod_sort_names
declare -A kernel_sort_serial=()
declare -A kernel_sort_names=()
declare -A pkg_sort_names=()
declare -A libmod_sort_names=()
local ser
local file
debug "Surveying Kernel files"
mapfile -t kernel_files < <(find /boot -maxdepth 1 -type f -a \( \
-iname "System*" -o -iname "init*img" -o -iname "vm*" -o -iname "ct*" \) \
2>/dev/null | grep -v rescue | sort)
mapfile -t lib_module_dirs < <(find /lib/modules -mindepth 1 -maxdepth 1 -type d 2>/dev/null | sort)
local booted=`uname -r`
note "** You are running kernel $booted **"
local file
local fiile
for file in "${kernel_files[@]}"; do
debug "kernel_file [$file]"
[[ $file =~ /boot/initramfs* ]] && continue
[[ $file =~ *.fc*.x86_64 ]] && continue
[[ $file = *initrd-plymouth.img ]] && continue
fiile=$( basename $file )
fiile=${fiile%.img}
if [[ $fiile =~ $booted ]]; then
debug " ignoring booted CT kernel $file"
# sleep 2
continue
else
ser=$( kernel_to_relnum ${fiile#*ct} )
kernel_sort_serial[$ser]=1
# debug "file[$file] ser[$ser]"
kernel_sort_names["$file"]="$ser"
removable_kernels+=($file)
fi
done
# sleep 2
local booted_ser=$( kernel_to_relnum $booted )
if (( ${#kernel_sort_names[@]} > 0 )); then
declare -A ser_files
for file in "${!kernel_sort_names[@]}"; do
ser="${kernel_sort_names[$file]}"
done
debug "Removable CT kernels:"
while read ser; do
(( $verbose > 0 )) && printf " kernel file [%s]\n" "${kernel_sort_names[$ser]}"
removable_kernels+=(${kernel_sort_names["$ser"]})
done < <(echo "${!kernel_sort_names[@]}" | sort | head -n -1)
fi
debug "Module directories elegible for removal: "
for file in "${lib_module_dirs[@]}"; do
file=${file#/lib/modules/}
# debug "/lib/modules/ ... $file"
if [[ $file =~ $booted ]]; then
debug " Ignoring booted module directory $file"
continue
elif [[ $file = *.fc??.x86_64 ]]; then
debug " Ignoring Fedora module directory $file"
continue
else
ser=$( kernel_to_relnum $file )
# debug " eligible [$ser] -> $file"
libmod_sort_names[$ser]="$file"
fi
done
if (( ${#libmod_sort_names[@]} > 0 )); then
# debug "Removable libmod dirs: "
while read ser; do
file="${libmod_sort_names[$ser]}"
# debug " $ser -> $file"
if [[ $file =~ $booted ]]; then
debug " Ignoring booted $booted module directory $file"
continue
fi
removable_libmod_dirs+=( "$file" )
# echo " [$ser][${libmod_sort_names[$ser]}] -> $file"
done < <( printf "%s\n" "${!libmod_sort_names[@]}" | sort | uniq)
# we don't need to sort these ^^^ because they were picked out near line 419
fi
#if (( $verbose > 0 )); then
# printf " removable_libmod_dirs: %s\n" "${removable_libmod_dirs[@]}"
#fi
# set +veux
local boot_image_sz=$(du -hc "${kernel_files[@]}" | awk '/total/{print $1}')
local lib_dir_sz=$(du -hc "${lib_module_dirs[@]}" | awk '/total/{print $1}')
totals[b]="kernels: $boot_image_sz, modules: $lib_dir_sz"
local pkg
local k_pkgs=()
removable_pkg_series=()
# need to avoid most recent fedora kernel
if [ ! -x /usr/bin/rpm ]; then
note "Does not appear to be an rpm system."
return 0
fi
local ur=$( uname -r )
local kern_pkgs=( $( rpm -qa 'kernel*' | sort ) )
local ser
local zpkg
declare -A pkg_to_ser
for pkg in "${kern_pkgs[@]}"; do
if [[ $pkg = kernel-tools-* ]] \
|| [[ $pkg = kernel-headers-* ]] \
|| [[ $pkg = kernel-devel-* ]] ; then
continue
fi
if [[ $pkg =~ $booted ]]; then
debug " ignoring current kernel [$pkg]"
continue
fi
k_pkgs+=( $pkg )
done
for pkg in "${k_pkgs[@]}"; do
zpkg="$pkg"
zpkg=${pkg##kernel-modules-extra-}
zpkg=${pkg##kernel-modules-}
zpkg=${pkg##kernel-core-}
zpkg=${pkg%.fc??.x86_64}
if [[ $zpkg =~ $booted ]]; then
continue
fi
kernel_series=$( kernel_to_relnum ${zpkg##kernel-} )
pkg_to_ser[$pkg]="$kernel_series"
pkg_sort_names[$kernel_series]=1
done
while read ser; do
# debug " can remove series [$ser] "
removable_pkg_series+=($ser)
done < <( printf "%s\n" "${!pkg_sort_names[@]}" | sort | head -n -1)
for pkg in "${k_pkgs[@]}"; do
pkg=${pkg%.fc??.x86_64}
ser=$( kernel_to_relnum $pkg )
if (( ${#removable_pkg_series[@]} > 0 )); then
for zpkg in "${removable_pkg_series[@]}"; do
if (( $ser == $zpkg )); then
removable_packages+=($pkg)
fi
done
fi
done
set +x
if (( $quiet < 1 )); then
if [[ ${removable_packages+x} = x ]] && (( ${#removable_packages[@]} > 0 )); then
echo "Removable packages "
printf " %s\n" "${removable_packages[@]}"
fi
if [[ ${removable_kernels+x} = x ]] && (( ${#removable_kernels[@]} > 0 )); then
echo "Removable kernel files "
printf " %s\n" "${removable_kernels[@]}"
fi
if [[ ${removable_libmod_dirs+x} = x ]] && (( ${#removable_libmod_dirs[@]} > 0 )); then
echo "Removable /lib/module directories "
printf " %s\n" "${removable_libmod_dirs[@]}"
fi
fi
} # ~survey_kernel_files
# check the trash can
trash_cans=()
survey_trash_can() {
debug "Checking trash can"
local lstf=".local/share/Trash/files"
local some_items=()
mapfile -t trash_cans < <(ls -d /root/$lstf /home/lanforge/$lstf 2>/dev/null) 2>/dev/null
if [[ $verbose = 1 ]] && (( ${#trash_cans} > 0 )); then
printf " %s\n" "${trash_cans[@]}"
fi
if (( ${#trash_cans[@]} > 0 )); then
totals[s]=$( du -hc "${trash_cans[@]}" | awk '/total/{print $1}' )
[[ x${totals[s]} = x ]] && totals[s]=0 ||:
for can in "${trash_cans[@]}"; do
mapfile -t -O "${#some_items[@]}" some_items < <(find "$can" -type f | head 2>/dev/null )
done
fi
if (( ${#some_items[@]} > 0 )) && (( $quiet < 1 )) && (( $verbose > 0 )); then
hr
note "Some trash can items:"
note "${some_items[@]}"
hr
# sleep 1
fi
if [ ! -x /usr/bin/trash-empty ] && (( $quiet < 1 )); then
note "Package trash-cli not installed. Please install it using command:"
note "sudo dnf install -y trash-cli"
sleep 2
fi
}
# Find core files
core_files=()
survey_core_files() {
debug "Surveying core files"
cd /
mapfile -t core_files < <(ls /core* /home/lanforge/core* 2>/dev/null) 2>/dev/null
if [[ $verbose = 1 ]] && (( ${#core_files[@]} > 0 )); then
printf " %s\n" "${core_files[@]}" | head
fi
if (( ${#core_files[@]} > 0 )); then
totals[c]=$(du -hc "${core_files[@]}" | awk '/total/{print $1}')
[[ x${totals[c]} = x ]] && totals[c]=0 ||:
else
totals[c]=0
fi
cd "$starting_dir"
}
# downloads
lf_downloads=()
survey_lf_downloads() {
debug "Surveying /home/lanforge, /var/www/html downloads,"
#echo "*************************************************************"
mapfile -d '' lf_downloads < <(find /home/lanforge/Downloads /var/www/html \
-mindepth 1 -maxdepth 1 -type f -a \( \
-iname '*gz' \
-o -iname '*z2' \
-o -iname '*.exe' \
-o -iname '*firmware*' \
-o -iname 'kinst_*' \
-o -iname '*Docs*' \
-o -iname 'ct*z' \
-o -iname 'interop*' \
-o -iname 'gnu*' \
-o -iname 'LANforge*' \
-o -iname 'xorp*' \
\) -print0 \
| tee /tmp/lf_downloads.txt )
#printf ' %s\n' "${lf_downloads[@]}"
#echo "*************************************************************"
local lf_download_count=$(grep -zc $'\0' /tmp/lf_downloads.txt)
if (( lf_download_count > 0 )); then
totals[d]=$(du -hcs --files0-from=/tmp/lf_downloads.txt \
| tail -1)
[[ x${totals[d]} = x ]] && totals[d]=0
else
totals[d]=0
fi
cd "$starting_dir"
}
# Find ath10k crash residue
ath10_files=()
survey_ath10_files() {
debug "Surveying ath10 crash files"
mapfile -t ath10_files < <(ls /home/lanforge/ath10* 2>/dev/null)
if [[ ${ath10_files+x} = x ]]; then
totals[k]=$(du -hc "${ath10_files[@]}" 2>/dev/null | awk '/total/{print $1}')
[[ x${totals[k]} = x ]] && totals[k]=0 ||:
else
totals[k]=0
return
fi
}
# stuff in var log
var_log_files=()
survey_var_log() {
debug "Surveying var log"
mapfile -d'' var_log_files < <(find /var/log -type f -size +256k \
-not \( -path '*/journal/*' -o -path '*/sa/*' -o -path '*/lastlog' \) -print0 \
| tee /tmp/var_log_files.txt 2>/dev/null ||:)
local log_count=$(grep -zc $'\0' /tmp/var_log_files.txt)
if (( log_count > 0 )); then
totals[l]=$(du -hcs --files0-from=/tmp/var_log_files.txt 2>/dev/null | tail -1 )
[[ x${totals[l]} = x ]] && totals[l]=0 ||:
else
totals[l]=0
return
fi
}
# stuff in var tmp
var_tmp_files=()
survey_var_tmp() {
debug "Surveying var tmp"
# mapfile -d'' -t var_tmp_files < <(find /var/tmp -print0 -type f 2>/dev/null || :)
find /var/tmp -type f -print0 > /tmp/var_tmp_files.txt 2>/dev/null ||:
local var_tmp_count=$(grep -zc $'\0' /tmp/var_tmp_files.txt)
if (( var_tmp_count > 0 )); then
totals[t]=$(du -shc --files0-from=/tmp/var_tmp_files.txt | tail -1 )
[[ x${totals[t]} = x ]] && totals[t]=0 ||:
else
totals[t]=0
fi
}
# Find size of /mnt/lf that is not mounted
mnt_lf_files=()
survey_mnt_lf_files() {
[ ! -d /mnt/lf ] && return 0
debug "Surveying mnt lf"
mapfile -t mnt_lf_files < <(find /mnt/lf -xdev -type f 2>/dev/null ||:)
if [[ ${mnt_lf_files+x} = x ]]; then
if (( ${#mnt_lf_files[@]} < 1 )); then
totals[m]=0
return
fi
totals[m]=$( du -xhc "${mnt_lf_files[@]}" 2>/dev/null | awk '/total/{print $1}' )
[[ x${totals[m]} = x ]] && totals[m]=0 ||:
else
totals[m]=0
return
fi
# set +vx
}
survey_dnf_cache() {
local yum="dnf"
which --skip-alias dnf &> /dev/null
(( $? < 0 )) && yum="yum"
debug "Surveying $yum cache"
totals[n]=$(du -hc '/var/cache/{dnf,yum}' 2>/dev/null | awk '/total/{print $1}')
}
compressed_files=()
survey_compressed_files() {
debug "Surveying compressed /home/lanforge "
cd /home/lanforge
mapfile -t compressed_files < <( find Documents/ html-reports/ lf_reports/ report-data/ tmp/ -type f \
-a \( -iname "*.gz" \
-o -iname "*.xz" \
-o -iname "*.bz2" \
-o -iname "*.7z" \
-o -iname "*.zst" \
-o -iname "*.zsd" \