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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
|
#!/bin/bash
# -----------------------------------------------------------------
# ipset set listing wrapper script
#
# https://github.com/AllKind/ipset_list
# https://sourceforge.net/projects/ipset-list/
# -----------------------------------------------------------------
# Copyright (C) 2013-2014 AllKind (AllKind@fastest.cc)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# -----------------------------------------------------------------
# Compatible with ipset version 6+
# Tested with ipset versions:
# 6.16.1, 6.20.1
# -----------------------------------------------------------------
# -----------------------------------------------------------------
# Features (in addition to the native ipset options):
# - Calculate sum of set members (and match on that count).
# - List only members of a specified set.
# - Choose a delimiter character for separating members.
# - Show only sets containing a specific (glob matching) header.
# - Arithmetic comparison on headers with an integer value.
# - Arithmetic comparison on flags of the headers 'Header' field.
# - Arithmetic comparison on member options with an integer value.
# - Match members using a globbing or regex pattern.
# - Suppress listing of (glob matching) sets.
# - Suppress listing of (glob matching) headers.
# - Suppress listing of members matching a glob or regex pattern.
# - Calculate the total size in memory of all matching sets.
# - Calculate the amount of matching, excluded and traversed sets.
# - Colorize the output.
# - Operate on a single, selected, or all sets.
# - Programmable completion is included to make usage easier and faster.
# -----------------------------------------------------------------
# -----------------------------------------------------------------
# Examples:
# $0 - no args, just list set names
# $0 -c - show all set names and their member sum
# $0 -t - show all sets, but headers only
# $0 -c -t setA - show headers and member sum of setA
# $0 -i setA - show only members entries of setA
# $0 -c -m setA setB - show members and sum of setA & setB
# $0 -a -c -d : - show all sets members, sum and use `:' as entry delimiter
# $0 -a -c setA - show all info of setA and its members sum
# $0 -c -m -d $'\n' setA - show members and sum of setA, delim with newline
# $0 -m -r -s setA - show members of setA resolved and sorted
# $0 -Ts - show all set names and total count of sets.
# $0 -Tm - calculate total size in memory of all sets.
# $0 -Mc 0 - show sets with zero members
# $0 -Fi References:0 - show all sets with 0 references
# $0 -Hr 0 - shortcut for `-Fi References:0'
# $0 -Xs setA -Xs setB - show all set names, but exclude setA and setB.
# $0 -Xs "set[AB]" - show all set names, but exclude setA and setB.
# $0 -Cs -Ht "hash:*" - find sets of any hash type, count their amount.
# $0 -Ht "!(hash:ip)" - show sets which are not of type hash:ip
# $0 -Ht "!(bitmap:*)" - show sets wich are not of any bitmap type
# $0 -i -Fr "^210\..*" setA - show only members of setA matching the regex "^210\..*"
# $0 -Mc \>=100 -Mc \<=150 - show sets with a member count greater or equal to 100
#+ and not greater than 150.
# $0 -a -c -Fh "Type:hash:ip" -Fr "^210\..*"
#+ - show all information of sets with type hash:ip,
#+ matching the regex "^210\..*", show match and members sum.
#
# $0 -m -Fg "!(210.*)" setA
#+ show members of setA excluding the elements matching the negated glob.
#
# $0 -Hr \>=1 -Hv 0 -Hs \>10000 - find sets with at least one reference,
#+ revision of 0 and size in memory greater than 10000
#
# $0 -Fh Type:hash:ip -Fh "Header:family inet *"
#+ - show all set names, which are of type hash:ip and header of ipv4.
#
# $0 -t -Xh "Revision:*" -Xh "References:*"
#+ - show all sets headers, but exclude Revision and References entries.
#
# $0 -t -Ht "!(@(bit|port)map):*" -Xh "!(Type):*" - show all sets that are
#+ neither of type bitmap or portmap, suppress all but the type header.
#
# $0 -c -m -Xg "210.*" setA - show members of setA, but suppress listing of entries
#+ matching the glob pattern "210.*", show count of excluded and total members.
#
# $0 -t -Tm -Xh "@(Type|Re*|Header):*"
#+ show all sets headers, but suppress all but name and memsize entry,
#+ calculate the total memory size of all sets.
#
# $0 -t -Tm -Xh "!(Size*|Type):*" -Ts -Co
# + List all sets headers, but suppress all but name, type and memsize entry,
# + count amount of sets, calculate total memory usage, colorize the output.
#
# $0 -c -t -Cs -Ts -Xh "@(Size*|Re*|Header):*" -Ht "!(bitmap:*)"
#+ find all sets not of any bitmap type, count their members sum,
#+ display only the 'Type' header,
#+ count amount of matching and traversed sets.
#
# $0 -a -Xh "@(@(H|R|M)e*):*" - show all info of all sets,
#+ but suppress Header, References, Revision and Member header entries.
#+ (headers existing as per ipset 6.x -> tested version).
#
# $0 -Co -c -Ts -Tm - show all set names, count their members,
# + count total amount of sets, show total memory usage of all sets,
# + colorize the output
#
# $0 -m -r -To 0 - show members of all sets, try to resolve hosts,
# set the timeout to 0 (effectivly disabling it).
#
# $0 -m -Xo setA - show members of setA,
# + but suppress displaying of the elements options.
#
# $0 -m -Oi packets:0
# + show members of all sets which have a packet count of 0.
#
# $0 -m -Oi "packets:>100" -Oi "bytes:>1024"
# + show members of all sets which have a
# + packet count greater than 100 and a byte count greater than 1024.
#
# $0 -n -Ca "foo*"
# + show only set names matching the glob "foo*" and enable all counters.
#
# $0 -Hi "markmask:>=0x0000beef" -Hi timeout:\!10000`
# + show only sets with the header 'Header' fields containing a markmask
# + greater or equal to 0x0000beef and a timeout which is not 10000.
# -----------------------------------------------------------------
# -----------------------------------------------------------------
# Modify here
# -----------------------------------------------------------------
# modify your PATH variable
# by default the path is only set if the PATH variable is not already set in the environment
# PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
: ${PATH:=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin}
# path to ipset.
# defaults to `/sbin/ipset' if unset.
#ipset="/sbin/ipset"
# find in path if not declared in parent environment
: ${ipset:=$(command -v ipset)}
# default delimiter character for set members (elements).
# defaults to whitespace if unset.
# use delim=$'\n' to use the ipset default newline as delimiter.
delim=" "
# default read timeout (for reading sets - esp. with the -r switch).
# the command line option -To overrides this.
TMOUT=30
# colorize the output (bool 0/1).
colorize=0
# path to cl (to colorize the output).
# http://sourceforge.net/projects/colorize-shell/ or
# https://github.com/AllKind/cl
# defaults to `/usr/local/bin/cl' if unset.
cl="/usr/local/bin/cl"
# define colors
# run `cl --list' to retrieve the valid color names
#
# default foreground color
# defaults to: white
col_fg="white"
# default background color
# defaults to: black
col_bg="black"
# color for headers
# defaults to: cyan
col_headers="cyan"
# color for members
# defaults to: yellow
col_members="yellow"
# color for matches
# defaults to: red
col_match="red"
# color for displaying of memsize
# defaults to: green
col_memsize="green"
# color for counting of matched sets
# defaults to: magenta
col_set_count="magenta"
# color for counting of traversed sets
# defaults to: blue
col_set_total="blue"
# general higlightning color
# defaults to: white
col_highlight="white"
# -----------------------------------------------------------------
# DO NOT MODIFY ANYTHING BEYOND THIS LINE!
# -----------------------------------------------------------------
# bash check
if [ -z "$BASH" ]; then
printf "\`BASH' variable is not available. Not running bash?\n" >&2
exit 1
fi
# shell settings
shopt -s extglob
set -f
set +o posix
set +u
# variables
export LC_ALL=C
readonly version=3.1
readonly me="${0//*\//}"
readonly oIFS="$IFS"
declare ips_version="" str_search="" str_xclude="" opt str_name str_val str_op
declare -i show_all=show_count=show_members=headers_only=names_only=isolate=calc_mem=count_sets=sets_total=0
declare -i match_on_header=glob_search=regex_search=member_count=match_count=do_count=opt_int_search=0
declare -i exclude_header=glob_xclude_element=glob_xclude_element=exclude_set=xclude_member_opts=0
declare -i in_header=found_set=found_member_opt=found_hxclude=found_sxclude=xclude_count=mem_total=mem_tmp=set_count=sets_sum=i=x=y=idx=0
declare -a arr_sets=() arr_par=() arr_hcache=() arr_mcache=() arr_hsearch=() arr_tmp=()
declare -a arr_hsearch_int=() arr_hsearch_xint=() arr_hxclude=() arr_sxclude=() arr_match_on_msum=() arr_opt_int_search=()
# -----------------------------------------------------------------
# functions
# -----------------------------------------------------------------
ex_miss_optarg() {
printf "%s of option \`%s' is missing\n" "$2" "$1" >&2
exit 2
}
ex_invalid_usage() {
printf "%s\n" "$*" >&2
exit 2
}
is_int() {
[[ $1 = +([[:digit:]]) ]]
}
is_digit_or_xigit() {
[[ $1 = @(+([[:digit:]])|0x+([[:xdigit:]])) ]]
}
is_compare_str() {
[[ $1 = ?(\!|<|>|<=|>=)+([[:digit:]]) ]]
}
add_search_to_member_cache() {
if ((show_members || show_all || isolate)); then
arr_mcache[i++]="$REPLY"
fi
}
arith_elem_opt_search() {
found_member_opt=0
for y in ${!arr_opt_int_search[@]}; do
str_val="${arr_opt_int_search[y]#*:}"
str_op="${str_val//[[:digit:]]}" # compare operator defaults to `=='
[[ ${str_op:===} = \! ]] && str_op='!='
set -- $REPLY
shift
while (($# > 1)); do
if [[ $1 = ${arr_opt_int_search[y]%:*} ]]; then
if is_int "${str_val//[[:punct:]]}"; then
if (($2 $str_op ${str_val//[[:punct:]]})); then
let found_member_opt+=1
shift
fi
fi
fi
shift
done
done
if ((opt_int_search == found_member_opt)); then
let match_count+=1
add_search_to_member_cache
fi
}
xclude_elem_search() {
if ((glob_xclude_element)); then # exclude matching members
if [[ $REPLY = $str_xclude ]]; then
let xclude_count+=1
return 0
fi
elif ((regex_xclude_element)); then # exclude matching members
if [[ $REPLY =~ $str_xclude ]]; then
let xclude_count+=1
return 0
else
if (($? == 2)); then
printf "Invalid regex pattern \`%s'.\n" "$str_xclude" >&2
exit 1
fi
fi
fi
return 1
}
# -----------------------------------------------------------------
# main
# -----------------------------------------------------------------
# validate value of colorize
if [[ ${colorize:=0} != [01] ]]; then
ex_invalid_usage "value of variable \`colorize' \`$colorize' is not 0 or 1."
fi
# parse cmd-line options
while (($#)); do
case "$1" in
-\?|-h) printf "\n\tipset set listing wrapper script\n\n"
printf '%s [option [opt-arg]] [set-name-glob] [...]\n\n' "$me"
printf '%s %s\n' "$me" "{-?|-h} | -v"
printf '%s %s\n\t%s\n\t%s\n' "$me"\
"[-i|-r|-s|-Co|-Xo] [-d char] [-To value]"\
"[-Fg|-Fr pattern] [-Xg|-Xr pattern]"\
"[-Oi option-glob:[!|<|>|<=|>=]value] [...] -- set-name"
printf '%s %s\n\t%s\n\t%s\n\t%s\n' "$me"\
"[-n|-c|-Ca|-Co|-Cs|-Tm|-Ts|-Xs] [-To value]"\
"[-Fh header-glob:value-glob] [...] [-Fg|-Fr pattern]"\
"[-Hi glob:[!|<|>|<=|>=]value] [...]"\
"[-Oi option-glob:[!|<|>|<=|>=]value] [...] -- [set-name-glob] [...]"
printf '%s %s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n' "$me"\
"[-t|-c|-Ca|-Co|-Cs|-Tm|-Ts]"\
"[-Fh header-glob:value-glob] [...]"\
"[-Fi header-glob:[!|<|>|<=|>=]value] [...]"\
"[-Fg|-Fr pattern] [-Ht type-glob]"\
"[-Hi glob:[!|<|>|<=|>=]value] [...]"\
"[-Hr|-Hs|-Hv [!|<|>|<=|>=]value]"\
"[-Mc [!|<|>|<=|>=]value] [...] [-To value]"\
"[-Oi option-glob:[!|<|>|<=|>=]value] [...]"\
"[-Xh header-glob:value-glob] [...]"\
"[-Xs set-name-glob] [...] -- [set-name-glob] [...]"
printf '%s %s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n' "$me"\
"[-a|-c|-m|-r|-s|-Ca|-Co|-Cs|-Tm|-Ts|-Xo] [-d char]"\
"[-Fh header-glob:value-glob] [...]"\
"[-Fi header-glob:[!|<|>|<=|>=]value] [...]"\
"[-Fg|-Fr pattern] [-Ht type-glob]"\
"[-Hi glob:[!|<|>|<=|>=]value] [...]"\
"[-Hr|-Hs|-Hv [!|<|>|<=|>=]value]"\
"[-Mc [!|<|>|<=|>=]value] [...]"\
"[-Oi option-glob:[!|<|>|<=|>=]value] [...]"\
"[-To value] [-Xh header-glob:value-glob] [...]"\
"[-Xg|-Xr pattern] [-Xs set-name-glob] [...] -- [set-name-glob] [...]"
printf 'options:\n'
printf '%-13s%s\n' '-a' 'show all information but with default delim (whitespace).'\
'-c' 'calculate members and match sum.'\
'-d delim' 'delimiter character for separating member entries.'\
'-h|-?' 'show this help text.'\
'-i' 'show only the members of a single set.'\
'-m' 'show set members.'\
'-n' "show set names only."\
'-r' 'try to resolve ip addresses in the output (slow!).'\
'-s' 'print elements sorted (if supported by the set type).'\
'-t' 'show set headers only.'\
'-v' 'version information.'\
'-Ca' "shortcut for -c -Cs -Ts -Tm (enable all counters)."\
'-Co' "colorize output (requires \`cl')."\
'-Cs' 'count amount of matching sets.'\
'-Fg pattern' 'match on members using a [ext]glob pattern.'\
'-Fr pattern' 'match on members using a regex (=~ operator) pattern.'
printf '%s\n\t%s\n' '-Fh header-glob:value-glob [...]'\
'show sets containing one or more [ext]glob matching headers.'
printf '%s\n\t%s\n' '-Fi header-glob:[!|<|>|<=|>=]value [...]'\
'show sets matching one or more integer valued header entries.'
printf '%s\n\t%s\n' '-Hi header-glob:[!|<|>|<=|>=]value [...]'\
"match one or more integer valued headers \`Header' entries."
printf '%-24s%s\n' '-Ht set-type-glob' 'match on set type.'\
'-Hr [!|<|>|<=|>=]value' 'match on number of references (value=int).'\
'-Hs [!|<|>|<=|>=]value' 'match on size in memory (value=int).'\
'-Hv [!|<|>|<=|>=]value' 'match on revision number (value=int).'
printf '%-30s%s\n' '-Mc [!|<|>|<=|>=]value [...]' 'match on member count (value=int).'
printf '%s\n\t%s\n' '-Oi option-glob:[!|<|>|<=|>=]value [...]' 'match on member options (value=int).'
printf '%-13s%s\n' '-Tm' 'calculate total memory usage of all matching sets.'\
'-To' 'set timeout value (int) for read (listing sets).'\
'-Ts' 'count amount of traversed sets.'\
'-Xo' 'suppress display of member options.'
printf '%s\n\t%s\n' '-Xh header-glob:value-glob [...]'\
'exclude one or more [ext]glob matching header entries.'
printf '%-13s%s\n' '-Xg pattern' 'exclude members matching a [ext]glob pattern.'\
'-Xr pattern' 'exclude members matching a regex pattern.'\
'-Xs pattern' 'exclude sets matching a [ext]glob pattern.'
printf '%-13s%s\n' '--' 'stop further option processing.'
exit 0
;;
-a) show_all=1 # like `ipset list', but with $delim as delim
shift
;;
-c) show_count=1 # show sum of member entries
shift
;;
-i) isolate=1 # show only members of a single set
shift
;;
-m) show_members=1 # show set members
shift
;;
-n) names_only=1 # only list set names
shift
;;
-t) headers_only=1 # show only set headers
shift
;;
-s|-r) arr_par[i++]="$1" # ipset sort & resolve options are passed on
shift
;;
-d) # delimiter char for separating member entries
[[ $2 ]] || ex_miss_optarg $1 "delim character"
if ((${#2} > 1)); then
ex_invalid_usage "only one character is allowed as delim"
fi
delim="$2"
shift 2
;;
-o) if [[ $2 != plain ]]; then
ex_invalid_usage "only plain output is supported"
else
shift 2
fi
;;
-Ca) # shortcut for -c -Cs -Ts -Tm
show_count=1 count_sets=1 calc_mem=1 sets_total=1
shift
;;
-Cs) count_sets=1 # calculate total count of matching sets
shift
;;
-Co) colorize=1 # colorize the output (requires cl)
shift
;;
-Fg) glob_search=1 # find entry with globbing pattern
[[ $2 ]] || ex_miss_optarg $1 "glob pattern"
str_search="$2"
shift 2
;;
-Fr) regex_search=1 # find entry with regex pattern
[[ $2 ]] || ex_miss_optarg $1 "regex pattern"
str_search="$2"
shift 2
;;
-Oi) let opt_int_search+=1
[[ $2 ]] || ex_miss_optarg $1 "pattern"
if [[ $2 = *:* ]] && is_compare_str "${2#*:}"; then
arr_opt_int_search[y++]="$2"
shift 2
else
ex_invalid_usage "invalid format of header descriptor. expecting: \`glob:[!|<|>|<=|>=]value'"
fi
;;
-Fh) let match_on_header+=1 # show only sets, which contain a matching header entry
[[ $2 ]] || ex_miss_optarg $1 "header pattern"
if [[ $2 = *:* ]]; then
arr_hsearch[x++]="$2"
shift 2
else
ex_invalid_usage "invalid format of header descriptor. expecting: \`*:*'"
fi
;;
-Fi) let match_on_header+=1 # show only sets, containing a matching (int compare) header entry
[[ $2 ]] || ex_miss_optarg $1 "header pattern"
if [[ $2 = *:* ]] && is_compare_str "${2#*:}"; then
arr_hsearch_int[idx++]="$2"
shift 2
else
ex_invalid_usage "invalid format of header descriptor. expecting: \`name:[!|<|>|<=|>=]value'"
fi
;;
-Hi) let match_on_header+=1 # match on name + integer (digit & xdigit) inside of headers 'Header' flag
[[ $2 ]] || ex_miss_optarg $1 "header pattern"
if [[ $2 = *:?(\!|<|>|<=|>=)@(+([[:digit:]])|0x+([[:xdigit:]])) ]]; then
arr_hsearch_xint[${#arr_hsearch_xint[@]}]="$2"
shift 2
else
ex_invalid_usage "invalid format of headers \'Header' flag descriptor. expecting: \`name:[!|<|>|<=|>=]value'"
fi
;;
-Hr) let match_on_header+=1 # shortcut for -Fi References:...
[[ $2 ]] || ex_miss_optarg $1 "header pattern"
if is_compare_str "$2"; then
arr_hsearch_int[idx++]="References:$2"
shift 2
else
ex_invalid_usage "invalid format of references header descriptor. expecting: \`[!|<|>|<=|>=]value'"
fi
;;
-Hs) let match_on_header+=1 # shortcut for -Fi "Size in Memory:..."
[[ $2 ]] || ex_miss_optarg $1 "header pattern"
if is_compare_str "$2"; then
arr_hsearch_int[idx++]="Size in memory:$2"
shift 2
else
ex_invalid_usage "invalid format of memsize header descriptor. expecting: \`[!|<|>|<=|>=]value'"
fi
;;
-Ht) let match_on_header+=1 # shortcut for -Fh Type:x:y
[[ $2 ]] || ex_miss_optarg $1 "header pattern"
if [[ $2 = *:* ]]; then
arr_hsearch[x++]="Type:$2"
shift 2
else
ex_invalid_usage "invalid format of set type descriptor. expecting: \`*:*'."
fi
;;
-Hv) let match_on_header+=1 # shortcut for -Fi Revision:...
[[ $2 ]] || ex_miss_optarg $1 "header pattern"
if is_compare_str "$2"; then
arr_hsearch_int[idx++]="Revision:$2"
shift 2
else
ex_invalid_usage "invalid format of revision header descriptor. expecting: \`[!|<|>|<=|>=]value'"
fi
;;
-Mc) do_count=1 # match on the count of members
[[ $2 ]] || ex_miss_optarg $1 "value pattern"
if is_compare_str "$2"; then
arr_match_on_msum[${#arr_match_on_msum[@]}]="$2"
shift 2
else
ex_invalid_usage "invalid format of match on member count value. expecting: \`[!|<|>|<=|>=]value'"
fi
;;
-To) # set the timeout for read (limited to integer)
[[ $2 ]] || ex_miss_optarg $1 "value"
TMOUT=$2
shift 2
;;
-Tm) calc_mem=1 # caculate total memory usage of all matching sets
shift
;;
-Ts) sets_total=1 # caculate sum of all traversed sets
shift
;;
-Xh) exclude_header=1 # don't show certain headers
[[ $2 ]] || ex_miss_optarg $1 "header pattern"
if [[ $2 = *:* ]]; then
arr_hxclude[${#arr_hxclude[@]}]="$2"
shift 2
else
ex_invalid_usage "invalid format of header descriptor. expecting: \`*:*'"
fi
;;
-Xg) glob_xclude_element=1 # suppress printing of matching members using a globbing pattern
[[ $2 ]] || ex_miss_optarg $1 "glob pattern"
str_xclude="$2"
shift 2
;;
-Xr) regex_xclude_element=1 # suppress printing of matching members using a regex pattern
[[ $2 ]] || ex_miss_optarg $1 "regex pattern"
str_xclude="$2"
shift 2
;;
-Xo) xclude_member_opts=1 # don't show elements options
shift
;;
-Xs) exclude_set=1 # don't show certain sets
[[ $2 ]] || ex_miss_optarg $1 "set name ([ext]glob pattern)"
arr_sxclude[${#arr_sxclude[@]}]="$2"
shift 2
;;
-\!|-f) ex_invalid_usage "unsupported option: \`$1'"
;;
-v) printf "%s version %s\n" "$me" "$version"
exit 0
;;
--) shift; break
;;
*) break
esac
done
declare -i i=x=y=idx=0
# check for ipset program and version
[[ -x ${ipset:=/sbin/ipset} ]] || {
printf "ipset binary \`%s' does not exist, or is not executable. check \`ipset' variable\n" "$ipset" >&2
exit 1
}
ips_version="$("$ipset" version)"
ips_version="${ips_version#ipset v}"
ips_version="${ips_version%%.*}"
if ! is_int "$ips_version"; then
printf "failed retrieving ipset version. expected digits, got: \`%s'\n" "$ips_version" >&2
exit 1
fi
if ((ips_version < 6)); then
printf "found version \`%s' - ipset versions from 6.x and upwards are supported\n" "$ips_version" >&2
exit 1
fi
# validate TMOUT variable
if [[ $TMOUT ]] && ! is_int "$TMOUT"; then
ex_invalid_usage "timeout value \`$TMOUT' is not an integer"
fi
# option logic
if ((names_only)); then
if ((headers_only||show_members||show_all||isolate||\
glob_xclude_element||regex_xclude_element||xclude_member_opts))
then
ex_invalid_usage "option -n does not allow this combination of options"
fi
fi
if ((headers_only)); then
if ((show_members || show_all || isolate)); then
ex_invalid_usage "options -t and -a|-i|-m are mutually exclusive"
fi
fi
if ((headers_only)); then
if ((xclude_member_opts||glob_xclude_element||regex_xclude_element)); then
ex_invalid_usage "options -t and -Xg|-Xr|-Xo are mutually exclusive"
fi
fi
if ((isolate)); then
if ((show_count||show_all||calc_mem||count_sets||sets_total||exclude_set)); then
ex_invalid_usage "options -i and -a|-c|-Ca|-Cs|-Tm|-Ts|-Xs are mutually exclusive"
fi
if ((match_on_header)); then
ex_invalid_usage "option -i does not allow matching on header entries"
fi
fi
if ((glob_search || regex_search)); then
if ((glob_search && regex_search)); then
ex_invalid_usage "options -Fg and -Fr are mutually exclusive"
fi
fi
if ((exclude_header)); then
if ! ((headers_only || show_all)); then
ex_invalid_usage "option -Xh requires -a or -t"
fi
fi
if ((glob_xclude_element || regex_xclude_element)); then
if ! ((show_members || show_all || isolate)); then
ex_invalid_usage "options -Xg|-Xr require any of -a|-i|-m"
fi
fi
if ((colorize)); then
if ! [[ -x ${cl:=/usr/local/bin/cl} ]]; then
printf "\ncl program \`%s' does not exist, or is not executable.\ncheck \`cl' variable.\n\n" "$cl" >&2
printf "If you do not have the program, you can download it from:\n"
printf "%s\n" "http://sourceforge.net/projects/colorize-shell/" \
"https://github.com/AllKind/cl" >&2
printf "\n"
exit 1
fi
# set color defaults if unset
: ${col_fg:=white}
: ${col_bg:=black}
: ${col_headers:=cyan}
: ${col_members:=yellow}
: ${col_match:=red}
: ${col_memsize:=green}
: ${col_set_count:=magenta}
: ${col_set_total:=blue}
: ${col_highlight:=white}
# check if color defines are valid
for opt in col_fg col_bg col_headers col_members col_match col_memsize \
col_set_count col_set_total col_highlight
do
("$cl" ${!opt}) || ex_invalid_usage "variable \`$opt' has an invalid color value: \`${!opt}'"
done
[[ -t 1 ]] || colorize=0 # output is not a terminal
fi
# sets to work on (no arg means all sets)
while IFS=$'\n' read -r; do
arr_sets[idx++]="$REPLY"
done < <("$ipset" list -n)
if ! ((${#arr_sets[@]})); then
printf "Cannot find any sets\n" >&2
exit 1
fi
if [[ $1 ]]; then # there are remaining arg(s)
for opt; do found_set=0 # check if the sets exist
for idx in ${!arr_sets[@]}; do
if [[ ${arr_sets[idx]} = $opt ]]; then found_set=1
# match could be a glob, thus multiple matches possible
# save to temp array
arr_tmp[${#arr_tmp[@]}]="${arr_sets[idx]}"
unset arr_sets[idx]
fi
done
if ! ((found_set)); then
ex_invalid_usage "\`$opt' is not a valid option nor an existing set name"
fi
done
if ((isolate)); then
if (($# != 1)); then
ex_invalid_usage "option -i is only valid for a single set"
fi
fi
arr_sets=("${arr_tmp[@]}") # reassign matched sets
if ((isolate && ${#arr_sets[@]} > 1)); then
ex_invalid_usage "option -i is only valid for a single set"
fi
else
if ((isolate)); then
ex_invalid_usage "option -i is only valid for a single set"
fi
fi
# read sets
for idx in "${!arr_sets[@]}"; do found_set=0 arr_hcache=() arr_mcache=()
while read -r || {
(($? > 128)) && \
printf "timeout reached or signal received, while reading set \`%s'.\n" \
"${arr_sets[idx]}" >&2 && continue 2;
}; do
case "$REPLY" in
"") : ;;
Name:*) # header opened (set found)
if ((in_header)); then
printf "unexpected entry: \`%s' - header not closed?\n" "$REPLY" >&2
exit 1
fi
let sets_sum+=1
if ((exclude_set)); then # don't show certain sets
for y in ${!arr_sxclude[@]}; do
if [[ ${arr_sets[idx]} = ${arr_sxclude[y]} ]]; then let found_sxclude+=1
continue 3 # don't unset, as user could list sets multiple times
fi
done
fi
in_header=1 found_set=1 found_header=0 member_count=0 match_count=0 xclude_count=0 mem_tmp=0 i=0 x=0
if ! ((isolate)); then # if showing members only, continue without saving any header data
if ((names_only)); then
if ((colorize)); then
arr_hcache[x++]="$("$cl" bold $col_headers)${REPLY#*:+([[:blank:]])}$("$cl" normal $col_fg $col_bg)"
else
arr_hcache[x++]="${REPLY#*:+([[:blank:]])}"
fi
elif ! ((headers_only||show_members||show_all||show_count||match_on_header||do_count||calc_mem||glob_search||regex_search||opt_int_search))
then
in_header=0
if ((colorize)); then
arr_hcache[x++]="$("$cl" bold $col_headers)${REPLY}$("$cl" normal $col_fg $col_bg)"
else
arr_hcache[x++]="$REPLY"
fi
break # nothing to show but the names
else
if ((colorize)); then
arr_hcache[x++]=$'\n'"$("$cl" bold $col_headers)${REPLY}$("$cl" normal $col_fg $col_bg)"
else
arr_hcache[x++]=$'\n'"$REPLY"
fi
fi
fi
;;
Members:*) # closes header (if not `ipset -t')
if ! ((in_header)); then
printf "unexpected entry: \`%s' - header not opened?\n" "$REPLY" >&2
exit 1
fi
in_header=0 found_hxclude=0
if ((match_on_header)); then
if ((found_header != match_on_header)); then found_set=0
break # set does not contain wanted header
fi
fi
if ((exclude_header)); then # don't show certain headers
for y in ${!arr_hxclude[@]}; do
if [[ ${REPLY%%:*} = ${arr_hxclude[y]%%:*} && ${REPLY#*: } = ${arr_hxclude[y]#*:} ]]
then found_hxclude=1
break
fi
done
fi
if ((show_all && ! found_hxclude)); then
if ((colorize)); then
arr_hcache[x++]="$("$cl" bold $col_headers)${REPLY}$("$cl" normal $col_fg $col_bg)"
else
arr_hcache[x++]="$REPLY"
fi
fi
;;
*) # either in-header, or member entry
if ! ((found_set)); then
printf "no set opened by \`Name:'. unexpected entry \`%s'.\n" "$REPLY" >&2
exit 1
fi
if ((in_header)); then # we should be in the header
if ((match_on_header && found_header < match_on_header)); then # match on an header entry
for y in ${!arr_hsearch[@]}; do # string compare
if [[ ${REPLY%%:*} = ${arr_hsearch[y]%%:*} && ${REPLY#*: } = ${arr_hsearch[y]#*:} ]]
then let found_header+=1
fi
done
for y in ${!arr_hsearch_int[@]}; do # int compare
if [[ ${REPLY%%:*} = ${arr_hsearch_int[y]%%:*} ]]; then # header name matches
if ! is_int "${REPLY#*: }"; then
printf "header value \`%s' is not an integer.\n" "${REPLY#*: }" >&2
exit 1
fi
str_val="${arr_hsearch_int[y]#*:}"
str_op="${str_val//[[:digit:]]}" # compare operator defaults to `=='
[[ ${str_op:===} = \! ]] && str_op='!='
if ((${REPLY#*: } $str_op ${str_val//[[:punct:]]})); then
let found_header+=1
fi
fi
done
# search and arithmetic compare values of the headers 'Header' flag
if ((${#arr_hsearch_xint[@]})) && [[ ${REPLY%%:*} = Header ]]; then
set -- ${REPLY#*:}
while (($#)); do
if is_digit_or_xigit "$1"; then
shift
continue
fi
for y in ${!arr_hsearch_xint[@]}; do
str_name="${arr_hsearch_xint[y]%%:*}"
str_val="${arr_hsearch_xint[y]#*:}"
if [[ $str_val = ??0x+([[:xdigit:]]) ]]; then
str_op="${str_val%0x*}"
elif [[ $str_val = ??+([[:digit:]]) ]]; then
str_op="${str_val//[[:digit:]]}"
fi
str_val="${str_val#"${str_op}"}"
[[ ${str_op:===} = \! ]] && str_op='!='
if [[ $1 = $str_name ]]; then
if is_digit_or_xigit "$2"; then
if (($2 $str_op $str_val)); then
let found_header+=1
shift
break
fi
fi
fi
done
shift
done
fi
fi
if ((calc_mem)); then
if [[ ${REPLY%%:*} = "Size in memory" ]]; then
if ! is_int "${REPLY#*: }"; then
printf "header value \`%s' is not an integer.\n" "${REPLY#*: }" >&2
exit 1
fi
# save to temp, in case we throw away the set, if it doesn't match other criteria
mem_tmp=${REPLY#*: }
fi
fi
if ((headers_only || show_all)); then found_hxclude=0
if ((exclude_header)); then # don't show certain headers
for y in ${!arr_hxclude[@]}; do
if [[ ${REPLY%%:*} = ${arr_hxclude[y]%%:*} && ${REPLY#*: } = ${arr_hxclude[y]#*:} ]]
then found_hxclude=1
break
fi
done
fi
if ! ((found_hxclude)); then
arr_hcache[x++]="$REPLY"
fi
fi
else # this should be a member entry
if ((show_members || show_all || isolate || glob_search || regex_search || opt_int_search)); then
if ((glob_search)); then # show sets with glob pattern matching members
if ! xclude_elem_search; then
if [[ $REPLY = $str_search ]]; then
if ((opt_int_search)); then
arith_elem_opt_search
else
let match_count+=1
add_search_to_member_cache
fi
fi
fi
elif ((regex_search)); then # show sets with regex pattern matching members
if ! xclude_elem_search; then
if [[ $REPLY =~ $str_search ]]; then
if ((opt_int_search)); then
arith_elem_opt_search
else
let match_count+=1
add_search_to_member_cache
fi
else
if (($? == 2)); then
printf "Invalid regex pattern \`%s'.\n" "$str_search" >&2
exit 1
fi
fi
fi
elif ((opt_int_search)); then # show sets with matching member options
if ! xclude_elem_search; then
arith_elem_opt_search
fi
else
if ((glob_xclude_element)); then # exclude matching members
if ! [[ $REPLY = $str_xclude ]]; then
add_search_to_member_cache
else let xclude_count+=1
fi
elif ((regex_xclude_element)); then # exclude matching members
if [[ $REPLY =~ $str_xclude ]]; then
let xclude_count+=1
else
if (($? == 2)); then
printf "Invalid regex pattern \`%s'.\n" "$str_xclude" >&2
exit 1
fi
add_search_to_member_cache
fi
else
arr_mcache[i++]="$REPLY"
fi
fi
else # nothing to show or search for, do we need to count members?
if ! ((show_count || do_count)); then
break # nothing more to do for this set
fi
fi
let member_count+=1
fi
esac
done < <("$ipset" list "${arr_sets[idx]}" "${arr_par[@]}")
if ((found_set)); then # print gathered information
if ((glob_search || regex_search || opt_int_search)) && ((match_count == 0)); then
continue # glob, regex or option-integer search didn't match
fi
if ((${#arr_match_on_msum[@]} > 0)); then # match on member sum (do_count=1)
for i in ${!arr_match_on_msum[@]}; do
str_op="${arr_match_on_msum[i]//[[:digit:]]}"
[[ ${str_op:===} = \! ]] && str_op='!='
if ! (($member_count $str_op ${arr_match_on_msum[i]//[[:punct:]]})); then
continue 2 # does not match
fi
done
fi
let set_count+=1 # count amount of matching sets
if ((calc_mem)); then
let mem_total+=$mem_tmp
fi
if ((${#arr_hcache[@]})); then # print header
if ((colorize)); then
printf "$("$cl" $col_headers)%b$("$cl" normal $col_fg $col_bg)\n" "${arr_hcache[@]}"
else
printf "%s\n" "${arr_hcache[@]}"
fi
fi
if ((${#arr_mcache[@]})); then # print members
if ((xclude_member_opts)); then
arr_mcache=( "${arr_mcache[@]%% *}" )
fi
IFS="${delim:= }"
if ((colorize)); then
printf "$("$cl" $col_members)%s$("$cl" normal $col_fg $col_bg)" "${arr_mcache[*]}"
else
printf "%s" "${arr_mcache[*]}"
fi
IFS="$oIFS"
printf "\n"
fi
if ((show_count)); then # print counters
if ((glob_search || regex_search || opt_int_search)); then
if ((colorize)); then
printf "$("$cl" $col_match)Match count$("$cl" normal $col_fg $col_bg):\
$("$cl" bold $col_match)%d$("$cl" normal $col_fg $col_bg)\n" $match_count
else
printf "Match count: %d\n" $match_count
fi
fi
if ((glob_xclude_element || regex_xclude_element)); then
if ((colorize)); then
printf "$("$cl" $col_match)Exclude count$("$cl" normal $col_fg $col_bg):\
$("$cl" bold $col_match)%d$("$cl" normal $col_fg $col_bg)\n" $xclude_count
else
printf "Exclude count: %d\n" $xclude_count
fi
fi
if ((colorize)); then
printf "$("$cl" bold $col_highlight)Member count$("$cl" normal $col_fg $col_bg):\
$("$cl" bold $col_members)%d$("$cl" normal $col_fg $col_bg)\n" $member_count
else
printf "Member count: %d\n" $member_count
fi
fi
fi
done
# print global counters
if ((count_sets || calc_mem || sets_total || exclude_set)); then
printf "\n"
if ((count_sets)); then
if ((colorize)); then
printf "$("$cl" bold $col_highlight)Count$("$cl" normal $col_fg $col_bg) of all\
$("$cl" bold $col_set_count)matched sets$("$cl" normal $col_fg $col_bg):\
$("$cl" bold $col_set_count)%d$("$cl" normal $col_fg $col_bg)\n" $set_count
else
printf "Count of all matched sets: %d\n" $set_count
fi
if ((exclude_set)); then
if ((colorize)); then
printf "$("$cl" bold $col_highlight)Count$("$cl" normal $col_fg $col_bg) of all\
$("$cl" bold $col_match)excluded sets$("$cl" normal $col_fg $col_bg):\
$("$cl" bold $col_match)%d$("$cl" normal $col_fg $col_bg)\n" $found_sxclude
else
printf "Count of all excluded sets: %d\n" $found_sxclude
fi
fi
fi
if ((sets_total)); then
if ((colorize)); then
printf "$("$cl" bold $col_highlight)Count$("$cl" normal $col_fg $col_bg) of all\
$("$cl" bold $col_set_total)traversed sets$("$cl" normal $col_fg $col_bg):\
$("$cl" bold $col_set_total)%d$("$cl" normal $col_fg $col_bg)\n" $sets_sum
else
printf "Count of all traversed sets: %d\n" $sets_sum
fi
fi
if ((calc_mem)); then
if ((colorize)); then
printf "$("$cl" bold $col_memsize)Total memory size$("$cl" normal $col_fg $col_bg)\
of all matched sets: $("$cl" bold $col_memsize)%d$("$cl" normal $col_fg $col_bg)\n" $mem_total
else
printf "Total memory size of all matched sets: %d\n" $mem_total
fi
fi
fi
|