summaryrefslogtreecommitdiffstats
path: root/utils/ipset_bash_completion/ipset_bash_completion
blob: 25f8db20d3bb4f9f6a92a3ab5fb12a080b7498bd (plain)
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
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
#!/bin/bash

# -----------------------------------------------------------------
# Programmable completion code for ipset (netfilter.org)
#
# https://github.com/AllKind/ipset-bash-completion
# https://sourceforge.net/projects/ipset-bashcompl
# -----------------------------------------------------------------

# 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 versions: 6+
# Tested with ipset versions:
# 6.20.1
# -----------------------------------------------------------------
# Requirements:
#
# bash v4 or greater.
#
# The bash completion package version 2.0 or greater is recommended.
# http://bash-completion.alioth.debian.org/
#
# If the package is not available, things might not be so reliable.
# Also the colon (if there) is removed from COMP_WORDBREAKS.
# This alteration is globally, which might affect other completions,
# if they don't take care of it themselves.
#
# -----------------------------------------------------------------
# Installation:
#
# Put it into ~/.bash_completion or /etc/bash_completion.d/
#
# -----------------------------------------------------------------
#
# Version 2.5
#
# -----------------------------------------------------------------

shopt -s extglob

# -----------------------------------------------------------------
# Functions
# -----------------------------------------------------------------

_ipset_colon_ltrim() {
((got_bashcompl)) || return 0
__ltrim_colon_completions "$1"
}

_ipset_is_set() {
local -i idx
((${#arr_sets[@]})) || arr_sets=( $(ipset list -n) )
for idx in ${!arr_sets[@]}; do
    if [[ ${arr_sets[idx]} = $1 ]]; then
        return 0
    fi
done
return 1
}

_ipset_get_set_type() {
local n d
while read n d; do
    [[ $n = Type: ]] && printf '%s\n' $d && break
done < <(ipset -t list "$1" 2>/dev/null)
}

_ipset_set_has_option() {
while read -r; do
    [[ $REPLY = Header:*$1* ]] && return 0
done < <(ipset -t list "$2")
return 1
}

_ipset_get_supported_types() {
((${#arr_types[@]})) && return
local -i i=0
while read -r; do
    [[ $REPLY = "Supported set types:"* ]] && ((!i)) && i=1 && continue
    ((i)) || continue
    if [[ $REPLY = *:* ]]; then
        set -- $REPLY
        arr_types+=("$1")
    fi
done < <(ipset help)
for i in ${!arr_types[@]}; do # remove dupe entries
    for ((x=i+1; x < ${#arr_types[@]}; x++)); do
        if [[ ${arr_types[i]} = ${arr_types[x]} ]]; then
            unset arr_types[x]
        fi
    done
done
}

_ipset_get_members() {
local -i in_list=0 no=0
arr_members=()
if [[ $1 = --names-only ]]; then no=1
    shift
fi
while read -r; do
    [[ $REPLY = Members:* ]] && in_list=1 && continue
    ((in_list)) || continue
    if ((no)); then
        arr_members+=("${REPLY%% *}")
    else
        arr_members+=("$REPLY")
    fi
done < <(ipset list "$1" 2>/dev/null)
}

_ipset_get_set_family() {
while read -r; do
    [[ $REPLY = Header:*"family inet6"* ]] && printf "v6\n" && return
    [[ $REPLY = Header:*"family inet "* ]] && printf "v4\n" && return
    [[ $REPLY = Header:*"range "*.*.*.* ]] && printf "v4\n" && return
done < <(ipset -t list "$1")
}

_ipset_dedupe_cmd_opts() {
local str_opt
local -i idx
for str_opt; do
    for idx in ${!arr_dupe_cmd_opts[@]}; do
        if [[ $str_opt = ${arr_dupe_cmd_opts[idx]} ]]; then
            if [[ $_DEBUG_NF_COMPLETION ]]; then
                printf "removing dupe option str_opt: %s\n" \
                    "${arr_dupe_cmd_opts[idx]}"
            fi
            continue 2
        fi
    done
    printf "%s\n" "$str_opt"
done
}

_ipset_get_options() {
local str_list
local -i idx oidx ridx
if ((got_action)); then
    case "$str_action" in
        rename|e|swap|w|test|flush|destroy|x)
            str_list='-q -quiet'
        ;;
        save)
            str_list='-f -file -q -quiet'
        ;;
        create|n|add|del)
            str_list='-! -exist -q -quiet'
        ;;
        restore)
            str_list='-! -exist -f -file -q -quiet'
        ;;
        list)
            str_list='-f -file -q -quiet'
            if ((names_only || headers_only)); then
                str_list+=' -o -output'
            elif ((res_sort)); then
                str_list+=' -o -output -r -resolve -s -sorted'
            elif ((save_format == 1)); then
                str_list+=' -r -resolve -s -sorted -t -terse'
            elif ((save_format == 3)); then
                str_list+=' -r -resolve -s -sorted'
            else
                str_list+=' -n -name -o -output -r -resolve \
                    -s -sorted -t -terse'
            fi
        ;;
    esac
else
    str_list='-f -file -q -quiet'
    if ((names_only || headers_only)) && ((save_format == 1)); then
        :
    elif ((names_only || headers_only)); then
        str_list+=' -o -output'
    elif ((res_sort)); then
        str_list+=' -o -output -r -resolve -s -sorted'
    elif ((save_format == 1)); then
        str_list+=' -r -resolve -s -sorted -t -terse'
    elif ((save_format == 3)); then
        str_list+=' -r -resolve -s -sorted'
    elif ((ignore_errors)); then
        :
    elif ((use_file)); then
        str_list='-! -exist -n -name -o -output -q -quiet -r \
            -resolve -s -sorted -t -terse'
    else
        str_list='- ${arr_opts[@]}'
    fi
fi
COMPREPLY=( $( compgen -W "$str_list" -- "$cur" ) )
((${#COMPREPLY[@]})) || return 0

# post process the reply
if [[ ${_IPSET_COMPL_OPT_FORMAT:=long} = long ]]; then # choose on env var
    for ridx in ${!COMPREPLY[@]}; do # remove short version of options
        [[ ${COMPREPLY[ridx]} = -? ]] && unset COMPREPLY[ridx]
    done
elif [[ ${_IPSET_COMPL_OPT_FORMAT} = short ]]; then
    for ridx in ${!COMPREPLY[@]}; do # remove short version of options
        [[ ${COMPREPLY[ridx]} = -??* ]] && unset COMPREPLY[ridx]
    done
fi
for idx in ${!arr_used_opts[@]}; do
    # if the user supplied the short form of an option previously,
    # and now requests the long form, remove the corresponding long option,
    # vice versa for short options
    for oidx in ${!arr_opts[@]}; do # cycle through main options
        set -- ${arr_opts[oidx]} # $1 = short , $2 = long option
        [[ $1 = $cur ]] && continue
        [[ ${arr_used_opts[idx]} =~ ^($1|$2)$ ]] || continue
        for ridx in ${!COMPREPLY[@]}; do # compare with compreply
            if [[ ${COMPREPLY[ridx]} = ${BASH_REMATCH[1]} ]]; then
                if [[ $_DEBUG_NF_COMPLETION ]]; then
                    printf "removing option alias COMPREPLY[$ridx]: %s\n" \
                        "${COMPREPLY[ridx]}"
                fi
                unset COMPREPLY[ridx]
                break 2
            fi
        done
    done
    for ridx in ${!COMPREPLY[@]}; do # de-dupe options
        if [[ ${arr_used_opts[idx]} = ${COMPREPLY[ridx]} && \
            ${COMPREPLY[ridx]} != $cur ]]; then
            if [[ $_DEBUG_NF_COMPLETION ]]; then
                printf "removing dupe option COMPREPLY[$ridx]: %s\n" \
                    "${COMPREPLY[ridx]}"
            fi
            unset COMPREPLY[ridx]
            break
        fi
    done
done
}

_ipset_get_networks() {
local foo str_net rest
[[ -r /etc/networks ]] || return 0
[[ ${_IPSET_COMP_NETWORKS-1} ]] || return 0
while read -r foo str_net rest; do
    [[ $foo = @(""|*([[:blank:]])#*) ]] && continue
    [[ $str_net = *([[:blank:]])#* ]] && continue
    printf "%s\n" "$str_net"
done < /etc/networks
}

_ipset_get_protocols() {
local str_name rest
while read -r str_name rest; do
    if [[ $str_name = @(""|*([[:blank:]])#*) ]]; then continue
    elif [[ $str_name = *-* ]]; then str_name="[$str_name]"
    fi
    printf "%s\n" "$str_name"
done < /etc/protocols
}

_ipset_get_svnum() {
# find service num to set offset
local str_name str_num str_p=all rest
local _str_p _str_o=""
while (($#)); do
    if [[ $1 = -p ]]; then
        _str_p="${2:-all}"
        shift
    elif [[ $1 = -o && ${2:-"-no"} != -* ]]; then
        # second part of range will have offset = first_part_of_range+1
        _str_o="$2"
        shift
    fi
    shift
done
if [[ $_str_o && $_str_o != +([[:digit:]]) ]]; then
    while read str_name str_num rest; do
        if [[ $str_name = *([[:blank:]])#* ]]; then continue
        elif [[ $_str_p != all && ${str_num#*/} != $_str_p ]]; then
            continue
        fi
        [[ $str_name = $_str_o ]] && printf "%s\n" ${str_num%/*} && return

    done < /etc/services
else
    printf "%s\n" "$_str_o"
fi
}

_ipset_get_services() {
local str_offset="" str_name str_num str_p=all rest
while (($#)); do
    if [[ $1 = -p ]]; then
        str_p="${2:-all}"
        shift
    elif [[ $1 = -o && ${2:-"-no"} != -* ]]; then
        # second part of range will have offset = first_part_of_range+1
        str_offset="${2}"
        shift
    fi
    shift
done
# find service num to set offset
if [[ $str_offset && $str_offset != +([[:digit:]]) ]]; then
    str_offset=$(_ipset_get_svnum -p "$str_p" -o "$str_offset")
    [[ $str_offset = +([[:digit:]]) ]] || str_offset="" # we failed
fi
# identify and print the services
while read -r str_name str_num rest; do
    if [[ $str_name = @(""|*([[:blank:]])#*) ]]; then continue
    elif [[ $str_p != all && ${str_num#*/} != $str_p ]]; then
        continue
    elif [[ $str_offset && $str_num && $str_num = +([[:digit:]])/* ]] && \
        ((${str_num%/*} <= $str_offset)); then
        continue
    elif [[ $str_name = *-* ]]; then str_name="[$str_name]"
    fi
    printf "%s\n" "$str_name"
done < /etc/services
}

_ipset_get_ifnames() {
while read -r; do
    REPLY="${REPLY#*: }"
    printf "%s\n" ${REPLY%%:*}
done < <(PATH=${PATH}:/sbin command ip -o link show)
}

_ipset_get_iplist() {
# if a file with ip addresses is in env var, load em
local str_ip rest
if [[ $1 = v4 ]]; then
str_regex='^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(/([3][0-2]|[1-2]?[0-9]))?$'
elif [[ $1 = v6 ]]; then
str_regex='^([0-9a-fA-F]{1,4}(:[0-9a-fA-F]{1,4}){7}|([0-9a-fA-F]{1,4}:){1}(:[0-9a-fA-F]{1,4}){1,6}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,6}(:[0-9a-fA-F]{1,4}){1})(/([1][0-2][0-9]|[1-9]?[0-9]))?$'
else return 0
fi
[[ $_IPSET_IPLIST_FILE && -r $_IPSET_IPLIST_FILE ]] || return 0
while read -r str_ip rest; do
    [[ $str_ip = *([[:blank:]])\#* ]] && continue
    str_ip="${str_ip//\#*/}"
    [[ $str_ip =~ $str_regex ]] && printf "%s\n" "$str_ip"
done < "${_IPSET_IPLIST_FILE}"
}

_ipset_complete_elements() {
local lcur="$1" str_lprefix=""
local -i no_range=0
shift
while (($#)); do
    [[ $1 = --no-range ]] && no_range=1
    shift
done
if [[ $lcur = *-[[]+([!]]) ]]; then # incomplete range - host/port with dash
    str_lprefix="${lcur%\-[*}-"
    lcur="${lcur#"$str_lprefix"}"
elif [[ $lcur = \[*\]-* ]]; then # first part of host/portname range
    str_lprefix="${lcur%\]-*}]-" lcur="${lcur##*\]-}"
elif [[ $lcur = *-* ]]; then
    str_lprefix="${lcur%-*}-" lcur="${lcur##*-}"
elif [[ $lcur =~ (tcp|udp):.* ]]; then # proto:port (bitmap:port)
    str_lprefix="${BASH_REMATCH[1]}:" lcur="${lcur#*:}"
    no_range=0  # workaround
fi
if [[ $str_lprefix ]]; then
    [[ $str_lprefix = */* ]] && return 1
    ((no_range)) && return 1
    _ipset_get_members --names-only "$str_setname"
    COMPREPLY+=( $( compgen -P "$str_lprefix" -W '${arr_members[@]/*\/*/}' -- "$lcur" ) )
else
    _ipset_get_members --names-only "$str_setname"
    COMPREPLY+=( $( compgen -W '${arr_members[@]}' -- "$lcur" ) )
fi
}

_ipset_complete_portrange() {
# complete port ranges
local lcur="$1"
local str_lprefix="$lcur" str_p=""
str_var=0 str_glob='[^[]*-*'
if [[ $lcur = *:* ]]; then # look for `proto:'
    ((got_bp_proto)) || return 0 # supported since ipset v6.20
    # only tcp/udp is valid as PROTO spec
    [[ ${lcur%%:*} = @(tcp|udp) ]] || return 0
    str_p=${lcur%%:*}
    lcur="${lcur#$str_p:}"
fi
if [[ $lcur = \[*-*\]-* ]]; then # spec with bracket
    str_var="${lcur#\[}"
    str_var="${str_var%%\]*}"
    lcur="${lcur#*\]-}"
    str_lprefix=${str_lprefix%"$lcur"}
elif [[ $lcur = $str_glob ]]; then # spec without bracket
    str_var="${lcur%%-*}"
    lcur="${lcur#*-}"
    str_lprefix=${str_lprefix%"$lcur"}
else # no prefix
    str_lprefix=""
    compopt -o nospace
fi
if [[ $str_p ]]; then # we have a proto spec
    COMPREPLY=( $(compgen -P "$str_p:$str_lprefix" \
        -W '$(_ipset_get_services -o $str_var -p $str_p)' -- "$lcur" ) )
    _ipset_colon_ltrim "$str_p:$str_lprefix$lcur"
else
    if [[ $str_lprefix ]]; then
        COMPREPLY=( $(compgen -P "$str_lprefix" \
            -W '$(_ipset_get_services -o $str_var)' -- "$lcur" ) )
    else
        if ((got_bp_proto)); then # supported since ipset v6.20
            COMPREPLY=( $(compgen \
                -W 'tcp: udp: $(_ipset_get_services)' -- "$lcur" ) )
        else # only tcp services prior to ipset v6.20
            COMPREPLY=( $(compgen \
                -W '$(_ipset_get_services -p tcp)' -- "$lcur" ) )
        fi
    fi
fi
}

_ipset_complete_hostnames() {
local -i idx got_bracket=0
local lcur="${1//@(\[|\])}"
[[ $lcur = $1 ]] || got_bracket=1
if ((got_bashcompl)); then
    _ipset_known_hosts -F "$_IPSET_SSH_CONFIGS" -- "$lcur"
else
    if [[ ${COMP_KNOWN_HOSTS_WITH_HOSTFILE-1} ]]; then
        COMPREPLY+=( $( compgen -A hostname -- "$lcur" ) )
    fi
fi
for idx in ${!COMPREPLY[@]}; do
    if [[ ${COMPREPLY[idx]} = *-* ]]; then
        COMPREPLY[idx]="[${COMPREPLY[idx]}]"
    else
        ((got_bracket)) && unset COMPREPLY[idx]
    fi
done
#_ipset_colon_ltrim "$lcur"
}

_ipset_complete_iface_spec() {
local lcur="$1" str_lprefix=""
if [[ $lcur != *,* ]]; then
    str_lprefix="" str_glob='+([![])-*'
    compopt -o nospace
    if [[ x$str_action != xtest ]]; then
        if [[ $lcur = \[*-*\]-* ]]; then # hostrange spec
            str_lprefix="${lcur%\]-*}]-" lcur="${lcur#*\]-}"
        elif [[ $lcur = *-[[]+([!]]) ]]; then # incomplete range - host with dash
            str_lprefix="${lcur%-\[*}-"
            lcur="${lcur#"$str_lprefix"}"
        elif [[ $lcur = $str_glob ]]; then # range spec
            str_lprefix="${lcur%-*}-" lcur="${lcur#*-}"
        fi
    fi
    # ip-list from file
    COMPREPLY+=( $( compgen -W \
        '$(_ipset_get_iplist "$(_ipset_get_set_family "$str_setname")")' \
        -- "$lcur" ) )
    # networks
    COMPREPLY+=( $( compgen -W '$(_ipset_get_networks)' -- "$lcur" ) )
    # hostnames
    _ipset_complete_hostnames "$lcur"
    if [[ $str_lprefix ]]; then # range spec
        COMPREPLY=( $( compgen -P "$str_lprefix" -W '${COMPREPLY[@]//*\/*/}' \
            -- "$lcur" ) )
    else
        COMPREPLY=( $( compgen -W '${COMPREPLY[@]}' -- "$lcur" ) )
    fi
    if ((${#COMPREPLY[@]} == 1)); then
        if [[ $str_lprefix || x$str_action = xtest ]]; then
           COMPREPLY=( ${COMPREPLY[*]}, )
       else
           COMPREPLY=( ${COMPREPLY[*]}, ${COMPREPLY[*]}- )
       fi
    fi
    _ipset_colon_ltrim "$str_lprefix$lcur"
elif [[ $lcur = *,* ]]; then
    str_lprefix="${lcur}" lcur="${lcur#*,}" str_var=""
    str_lprefix="${str_lprefix%"$lcur"}"
    if [[ $lcur = physdev:* ]]; then
        lcur="${lcur#physdev:}"
        str_lprefix="${str_lprefix}physdev:"
    else
        str_var="physdev:"
    fi
    COMPREPLY+=( $( compgen -P "$str_lprefix" -W \
        '${str_var} $(_ipset_get_ifnames)' -- "$lcur" ) )
    [[ ${COMPREPLY[0]} = *physdev: ]] && compopt -o nospace
    _ipset_colon_ltrim "$str_lprefix"
fi
}

_ipset_complete_host_spec() {
local lcur="$1" str_lprefix="" str_lsuffix=""
local -i no_range=0 v4_only=0
if [[ $lcur = *,* && $str_type = hash:ip,mark ]]; then
    return 0
fi
shift
compopt -o nospace
while (($#)); do
    [[ $1 = --no-range ]] && no_range=1
    [[ $1 = --v4 ]] && v4_only=1
    shift
done
# range spec
if [[ $lcur = @(""|+([[:word:]])) ]]; then # empty or [:word:]
    str_lsuffix="-"
elif [[ $lcur = [[]*-*[]] ]]; then # host with hyphen
    str_lsuffix="-"
elif [[ $lcur = [[]*([!]]) ]]; then # incomplete host with dash
    str_lsuffix="-"
elif [[ $lcur = *-[[]+([!]]) ]]; then # incomplete range - host with dash
    str_lprefix="${lcur%\-[*}-"
    lcur="${lcur#"$str_lprefix"}"
elif [[ $lcur = \[*\]-* ]]; then # first part of hostname range
    str_lprefix="${lcur%\]-*}]-" lcur="${lcur##*\]-}"
elif [[ $lcur != *-* ]]; then # no hypen
    str_lsuffix="-"
else # ip-range
    str_lprefix="${lcur%-*}-" lcur="${lcur##*-}"
fi
if [[ $str_lprefix ]]; then
    # range not valid
       ((no_range)) && return 1
    # range not valid if first part is ip/cidr
    [[ $str_lprefix = */* ]] && return 1
fi
# ip-list from file
if [[ $str_lprefix ]]; then
    # only ipv4 range supported
    COMPREPLY+=( $( compgen -W '$(_ipset_get_iplist v4)' -- "$lcur" ) )
elif ((v4_only)); then
    # this type only supports ipv4
    COMPREPLY+=( $( compgen -W '$(_ipset_get_iplist v4)' -- "$lcur" ) )
else
    # we gather the family type
    COMPREPLY+=( $( compgen -W \
        '$(_ipset_get_iplist "$(_ipset_get_set_family "$str_setname")")' \
        -- "$lcur" ) )
    _ipset_colon_ltrim "$lcur"
fi
_ipset_complete_hostnames "$lcur"
if [[ $str_lprefix ]]; then
    # if the prefix is defined add it to compreply
    COMPREPLY=( $( compgen -P "$str_lprefix" -W '${COMPREPLY[@]}' -- "$lcur" ) )
else
    # add networks for hash:net?(,net), hash:ip,mark, or bitmap:ip for add/del action
    if [[ $str_type = hash:@(net?(,net)|ip,mark) ]] || \
        [[ $str_type = bitmap:*  && $str_action = @(add|create|del) ]]
    then
        COMPREPLY+=( $( compgen -W '$(_ipset_get_networks)' -- "$lcur" ) )
    fi
fi
if ((${#COMPREPLY[@]} == 1)); then
    if [[ $str_lprefix ]]; then
        # we can add a space, if it's a range (not with hash:net,net or hash:ip,mark)
        if [[ $str_type != hash:@(net,net|ip,mark) ]]; then
            compopt +o nospace
        fi
    fi
fi
}

_ipset_complete_hostport_spec() {
# complete on host,proto:port[,host] spec
local str_proto str_glob2 str_lprefix lcur str_lprefix2 lcur2
local lcur="$1"
if [[ $str_type = hash:@(ip|net),port,@(ip|net) ]]; then str_suffix=','
else str_suffix=''
fi
str_regex='^[^,]+,([^,]+)?$'
if [[ $lcur != *,* ]]; then
    str_lprefix="" str_suffix=""
    compopt -o nospace
    if [[ $str_type = hash:@(ip,port|net,port|ip,port,ip|ip,port,net|net,port,net) && \
        $str_action = @(add|del|test) ]]
    then
        # range spec
        if [[ $lcur = @(""|+([[:word:]])) ]]; then # empty or [:word:]
            str_suffix="-"
        elif [[ $lcur = [[]*-*[]] ]]; then # host with hyphen
            str_suffix="-"
        elif [[ $lcur = [[]*([!]]) ]]; then # incomplete host with dash
            str_suffix="-"
        elif [[ $lcur = *-[[]+([!]]) ]]; then # incomplete range - host with dash
            str_lprefix="${lcur%\-[*}-"
            lcur="${lcur#"$str_lprefix"}"
        elif [[ $lcur = \[*\]-* ]]; then # first part of hostname range
            str_lprefix="${lcur%\]-*}]-" lcur="${lcur##*\]-}"
        elif [[ $lcur != *-* ]]; then # no hypen
            str_suffix="-"
        else # ip-range
            str_lprefix="${lcur%-*}-" lcur="${lcur##*-}"
        fi
    fi
    # ip-list from file
    COMPREPLY+=( $( compgen -W \
        '$(_ipset_get_iplist "$(_ipset_get_set_family "$str_setname")")' \
        -- "$lcur" ) )
    if [[ $str_type = hash:net,port?(,net) ]]; then
        COMPREPLY+=( $( compgen -W '$(_ipset_get_networks)' -- "$lcur" ) )
        _ipset_colon_ltrim "$lcur"
    fi
    _ipset_complete_hostnames "$lcur"
    if [[ $str_lprefix ]]; then # range spec
        COMPREPLY=( $( compgen -P "$str_lprefix" -W '${COMPREPLY[@]}' -- "$lcur" ) )
    fi
    if ((${#COMPREPLY[@]} == 1)); then
        if [[ $str_suffix = - ]]; then
            COMPREPLY=( $( compgen -W '${COMPREPLY[*]}, ${COMPREPLY[*]}-' -- "$lcur" ) )
        else
            COMPREPLY=( ${COMPREPLY[*]}, )
        fi
    fi
    _ipset_colon_ltrim "$str_lprefix$lcur"
elif [[ $lcur =~ $str_regex ]]; then
    compopt -o nospace
    str_glob='[^[]*-' # otherwise messes up my vim syntax highlightning
    str_regex='.*,(icmp|icmp6|tcp|sctp|udp|udplite):.*' # for compat put regex in var
    if [[ $lcur != *icmp* && \
        $lcur = *,@(?(tcp:|sctp:|udp:|udplite:)@(+([[:word:]])-|\[*-*\]-)|\[*-*\]-)* ]]
    then # range spec
        str_lprefix="$lcur" str_glob='*[[]*' str_glob2='*,*-\[*' str_proto="tcp" str_var=""
        [[ $lcur =~ .*(tcp|sctp|udp|udplite):.* ]] && str_proto=${BASH_REMATCH[1]}
        if [[ $lcur = *,*\[*-*\]-* ]]; then
            str_var="${lcur#*,*[}" lcur="${lcur##*\]-}"
            str_lprefix=${str_lprefix%"$lcur"} str_var="${str_var%\]*}"
        elif [[ $lcur = $str_glob2 ]]; then
            str_var="${lcur#*,}" lcur="${lcur##*-}"
            str_var="${str_var#${BASH_REMATCH[1]}:}"
            str_lprefix=${str_lprefix%"$lcur"} str_var="${str_var%%-*}"
        else
            str_var="${lcur#*,}" lcur="${lcur##*-}"
            str_var="${str_var#${BASH_REMATCH[1]}:}"
            str_lprefix=${str_lprefix%"$lcur"} str_var="${str_var%-*}"
        fi
        COMPREPLY+=( $( compgen -P "$str_lprefix" -S "$str_suffix" -W \
            '$(_ipset_get_services -p "$str_proto" -o "$str_var")' -- "$lcur") )
        if [[ $str_lprefix = *:* ]]; then
            str_lprefix="${str_lprefix%:*}:"
        fi
        _ipset_colon_ltrim "${str_lprefix}"
        if ((${#COMPREPLY[@]} == 1)); then
            if [[ $str_lprefix && $str_type != hash:@(ip|net),port,@(ip|net) ]]; then
                compopt +o nospace
            fi
        fi
    elif [[ $lcur =~ $str_regex ]]; then
        # icmp[6] and services with (tcp|udp|sctp|udplite): prefix
        str_var=${BASH_REMATCH[1]}
        str_lprefix="${lcur}" lcur="${lcur#*,}"
        str_lprefix="${str_lprefix%"$lcur"}"
        lcur="${lcur#${BASH_REMATCH[1]}:}"
        str_lprefix="${str_lprefix}${BASH_REMATCH[1]}:"
        if [[ $str_var = icmp ]]; then
            COMPREPLY+=( $( compgen -P "$str_lprefix" -S "$str_suffix" -W \
                '${arr_icmp_types[@]}' -- "$lcur" ) )
        elif [[ $str_var = icmp6 ]]; then
            COMPREPLY+=( $( compgen -P "$str_lprefix" -S "$str_suffix" -W \
                '${arr_icmp6_types[@]}' -- "$lcur" ) )
        elif [[ $str_var = @(tcp|udp|sctp|udplite) ]]; then
            COMPREPLY+=( $( compgen -P "$str_lprefix" -W \
                '$(_ipset_get_services -p $str_var)' -- "$lcur" ) )
        fi
        _ipset_colon_ltrim "$str_lprefix"
    elif [[ $lcur = *,* ]]; then # first attempt :/ long list
        str_lprefix="${lcur%,*}," lcur="${lcur#*,}"
        str_var="tcp: udp: sctp: udplite: icmp: icmp6:"
        # add the services
        COMPREPLY+=( $( compgen -P "$str_lprefix" -W \
            '$str_var $(_ipset_get_services)' -- "$lcur" ) )
        # add the protocols
        COMPREPLY+=( $( compgen -P "$str_lprefix" -S ":0$str_suffix" -W \
            '$(_ipset_get_protocols)' -- "$lcur" ) )
        _ipset_colon_ltrim "$str_lprefix$lcur"
        compopt -o nospace
    fi
elif [[ $lcur = *,*,* && $str_type = hash:@(ip,port,@(ip|net)|net,port,net) ]]; then
    str_lprefix2="${lcur}" lcur2="${lcur##*,}"
    str_lprefix2="${str_lprefix2%"$lcur2"}"
    lcur="$lcur2"
    # ip-list from file
    COMPREPLY+=( $( compgen -W \
        '$(_ipset_get_iplist "$(_ipset_get_set_family "$str_setname")")' \
        -- "$lcur2" ) )
    if [[ $str_type = hash:@(ip|net),port,net && x$str_action != xtest ]]; then
        # range spec
        if [[ $lcur = @(""|+([[:word:]])) ]]; then # empty or [:word:]
            str_suffix="-"
        elif [[ $lcur = [[]*-*[]] ]]; then # host with hyphen
            str_suffix="-"
        elif [[ $lcur = [[]+([!]]) ]]; then # incomplete host with dash
            str_suffix="-"
        elif [[ $lcur = *-[[]+([!]]) ]]; then # incomplete range - host with dash
            str_lprefix="${lcur%\-[*}-"
            lcur="${lcur#"$str_lprefix"}"
        elif [[ $lcur = \[*\]-* ]]; then # first part of hostname range
            str_lprefix="${lcur%\]-*}]-" lcur="${lcur##*\]-}"
        elif [[ $lcur != *-* ]]; then # no hypen
            str_suffix="-"
        else # ip-range
            str_lprefix="${lcur%-*}-" lcur="${lcur##*-}"
        fi
        # networks
        COMPREPLY+=( $( compgen -W '$(_ipset_get_networks)' -- "$lcur" ) )
    fi
    _ipset_complete_hostnames "$lcur"
    if [[ $str_lprefix ]]; then
        COMPREPLY=( $( compgen -P "$str_lprefix" \
            -W '${COMPREPLY[@]}' -- "$lcur" ) )
    fi
    if [[ $str_lprefix2 ]]; then
        COMPREPLY=( $( compgen -P "$str_lprefix2" \
            -W '${COMPREPLY[@]}' -- "$lcur2" ) )
    fi
    _ipset_colon_ltrim "$str_lprefix2$lcur2"
    if ((${#COMPREPLY[@]} == 1)); then
        if [[ $str_type = hash:@(ip|net),port,net && \
            ${COMPREPLY[*]##*,} != */* ]]
        then
            compopt -o nospace
        fi
    fi
fi
}

_ipset_complete_netnet_spec() {
# complete hash:net,net sets
local lcur="$1"
if [[ $lcur = *,* ]]; then
    str_lprefix="$lcur" lcur="${lcur#*,}"
    str_lprefix="${str_lprefix%,*},"
    _ipset_complete_host_spec "$lcur"
    compopt -o nospace
    COMPREPLY+=( $( compgen -P "$str_lprefix" -W '${COMPREPLY[@]}' -- "$lcur" ) )
    if ((${#COMPREPLY[@]} == 1 )); then
        str_glob='@(*/*|\[*\]-*|+([![])-*)'
        [[ ${COMPREPLY[0]#*,} = $str_glob ]] && compopt +o nospace
    fi
else
    _ipset_complete_host_spec "$lcur"
    compopt -o nospace
    if ((${#COMPREPLY[@]} == 1 )); then
        str_glob='@(*/*|\[*\]-\[*\]|+([![])-+([![])|\[*\]-+([![])|+([![])-\[*\])'
        if [[ ${COMPREPLY[0]} = $str_glob ]]; then
            COMPREPLY=( ${COMPREPLY[*]}, )
        else
            COMPREPLY=( ${COMPREPLY[*]}- ${COMPREPLY[*]}, )
        fi
    fi
fi
}

# -----------------------------------------------------------------
# Main
# -----------------------------------------------------------------

_ipset_complete() {
local cur prev cword words ips_version
local str_action str_setname str_type str_filename
local str_glob str_regex str_prefix str_suffix
local str_tmp="" str_var=""
local str_timeout="timeout" str_order="before after" str_forceadd=""
local str_counters="" str_bp_counters="" str_comment="" str_markmask=""
local -i i=x=y=0
local -i got_bashcompl=got_action=action_index=order_index=set_has_timeout=0
local -i got_bp_proto=0
local -i ignore_errors=use_file=names_only=headers_only=save_format=res_sort=0
local arr_sets=() arr_types=() arr_members=() arr_unknown_opts=()
local arr_dupe_cmd_opts=() arr_used_opts=() arr_tmp=()
local arr_opts=(
"-! -exist"
"-o -output"
"-q -quiet"
"-r -resolve"
"-s -sorted"
"-n -name"
"-t -terse"
"-f -file"
)
local arr_icmp_types=(
echo-reply
pong
network-unreachable
host-unreachable
protocol-unreachable
port-unreachable
fragmentation-needed
source-route-failed
network-unknown
host-unknown
network-prohibited
host-prohibited
TOS-network-unreachable
TOS-host-unreachable
communication-prohibited
host-precedence-violation
precedence-cutoff
source-quench
network-redirect
host-redirect
TOS-network-redirect
TOS-host-redirect
echo-request
ping
router-advertisement
router-solicitation
ttl-zero-during-transit
ttl-zero-during-reassembly
ip-header-bad
required-option-missing
timestamp-request
timestamp-reply
address-mask-request
address-mask-reply
)
local arr_icmp6_types=(
no-route
communication-prohibited
address-unreachable
port-unreachable
packet-too-big
ttl-zero-during-transit
ttl-zero-during-reassembly
bad-header
unknown-header-type
unknown-option
echo-request
ping
echo-reply
pong
router-solicitation
router-advertisement
neighbour-solicitation
neigbour-solicitation
neighbour-advertisement
neigbour-advertisement
redirect
)

# at least bash 4 is required
((${BASH_VERSINFO[0]} < 4)) && return 0

COMPREPLY=()

# ipset version check 6.x upwards (to v?) is supported
ips_version="$(ipset version)"
ips_version="${ips_version#ipset v}"
ips_version="${ips_version%,+([[:blank:]])protocol*}"
read -a ips_version <<< ${ips_version//./ }
[[ ${ips_version[0]} = +([[:digit:]]) ]] || return 1
((ips_version[0] < 6)) && return 1

# ipset -ge v6.19 has counters flag
# ipset -ge v6.20 has comment flag
# ipset -ge v6.2? has hash:ip,mark markmask flag
if ((ips_version[0] > 6)); then
    str_counters="counters"
    str_bp_counters="bytes packets"
    str_comment="comment"
    str_markmask="markmask"
    got_bp_proto=1
else
    if ((ips_version[0] == 6 && ips_version[1] >= 19)); then
        str_counters="counters"
        str_bp_counters="bytes packets"
    fi
    if ((ips_version[0] == 6 && ips_version[1] >= 20)); then
        str_comment="comment"
        got_bp_proto=1
    fi
    if ((ips_version[0] == 6 && ips_version[1] >= 21)); then
        str_comment="comment"
        str_markmask="markmask"
        str_forceadd="forceadd"
        got_bp_proto=1
    fi
fi

# expecting _get_comp_words_by_ref() to exist from bash_completion
if declare -f _get_comp_words_by_ref &>/dev/null; then got_bashcompl=1
    _get_comp_words_by_ref -n : cur prev cword words || return
else got_bashcompl=0 # not so neat, but a workaround
    COMP_WORDBREAKS="${COMP_WORDBREAKS//:/}"
    cur="${COMP_WORDS[COMP_CWORD]}"
    prev="${COMP_WORDS[COMP_CWORD-1]}"
    cword=$COMP_CWORD
    for i in ${!COMP_WORDS[@]}; do words[i]="${COMP_WORDS[i]}"; done
fi

if ((got_bashcompl)); then
# current bash completion got a bug i reported:
# https://alioth.debian.org/tracker/index.php?func=detail&aid=314056&group_id=100114&atid=413095
# putting corrected function here, so things don't break
__ltrim_colon_completions() {
    if [[ "$1" == *:* && "$COMP_WORDBREAKS" == *:* ]]; then
        # Remove colon-word prefix from COMPREPLY items
        local colon_word="${1%"${1##*:}"}"
        local i=${#COMPREPLY[*]}
        while [[ $((--i)) -ge 0 ]]; do
            COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}
        done
    fi
}

# construct own known_hosts function from origin
# just remove the __ltrim_colon_completions call
# to avoid unwanted ltrim if we need to work with the list of hosts
# ugly hack - gimme better ;p
if ! declare -F _ipset_known_hosts &>/dev/null; then
eval '_ipset_known_hosts() { '$(declare -f _known_hosts_real | grep -v __ltrim_colon_completions | grep -Ev "^_known_hosts_real.*$" | grep -Ev "^(\{|\})")'; }'
fi
fi

#_DEBUG_NF_COMPLETION=Y
if [[ $_DEBUG_NF_COMPLETION ]]; then
    printf "\nCOMP_WORDBREAKS: <%s>\n" "$COMP_WORDBREAKS"
    printf "COMP_LINE: <%s>\n" "$COMP_LINE"
    printf "COMP_TYPE: <%s>\n" "$COMP_TYPE"
    printf "COMP_POINT: <%s>\n" "$COMP_POINT"
    printf "COMP_KEY: <%s>\n" "$COMP_KEY"
    printf "COMP_CWORD: <%s>\n" "$COMP_CWORD"
    printf "cword: <%s>\n" "$cword"
    printf "cur: <%s> prev: <%s>\n" "$cur" "$prev"
    printf "words:\n" "<%s>\n" "${words[@]}"
fi

# collect information about used options
for ((i=1; i < ${#words[@]}-1; i++)); do
case "${words[i]}" in
    @(create|n|add|del|test|destroy|x|list|save|restore|flush|rename|e|swap|w|help|version))
        [[ ${words[i-1]} = @(-f|-file) ]] && continue # there could be a file named like a command
        if ! ((got_action)); then
            if [[ ${words[i]} != save ]]; then
                got_action=1 action_index=$i str_action=${words[i]}
            elif [[ ${words[i-1]} != @(-o|-output) ]]; then
                got_action=1 action_index=$i str_action=${words[i]}
            fi
            if [[ $str_action = @(create|n|add|del|test|destroy|x|list|save|restore|flush|rename|e|swap|w) ]]
            then str_setname=${words[i+1]} # register the set name
            fi
        fi
    ;;
    -\!|-exist)
        [[ ${words[i-1]} != @(-f|-file) ]] &&\
            ignore_errors=1 arr_used_opts+=(${words[i]})
    ;;
    -f|-file)
        [[ ${words[i-1]} != @(-f|-file) ]] &&\
            use_file=1 str_filename="${words[i+1]}" \
            arr_used_opts+=(${words[i]})
    ;;
    -n|-name)
        [[ ${words[i-1]} != @(-f|-file) ]] &&\
            names_only=1 arr_used_opts+=(${words[i]})
    ;;
    -t|-terse)
        [[ ${words[i-1]} != @(-f|-file) ]] &&\
            headers_only=1 arr_used_opts+=(${words[i]})
    ;;
    -o|-output)
        if [[ ${words[i-1]} != @(-f|-file) ]]; then
            arr_used_opts+=(${words[i]})
            if [[ $prev = @(-o|-output) ]]; then
                save_format=2 # expecting opt-arg
            elif [[ ${words[i+1]} = save ]]; then
                save_format=3 # no -n/-t with -o save
            else
                save_format=1
            fi
        fi
    ;;
    -r|-resolve|-s|-sorted)
        [[ ${words[i-1]} != @(-f|-file) ]] &&\
            res_sort=1 arr_used_opts+=(${words[i]})
    ;;
    -q|-quiet)
        arr_used_opts+=(${words[i]})
    ;;
#    -?*)
#        if [[ ${words[i]#-} != @(q|quiet) ]]; then
#            # don't include filenames
#            if [[ ${words[i-1]} != @(-f|-file|\>) || ${words[i+1]} != \< ]]; then
#                arr_unknown_opts[${#arr_unknown_opts[@]}]="${words[i]}"
#            fi
#        fi
#    ;;
    before|after)
        if ((got_action && ! order_index && i == action_index+3)); then
            order_index=$i str_order=""
        fi
    ;;
    timeout|range|maxelem|family|hashsize|size|netmask|nomatch|counters|bytes|packets|comment|markmask|forceadd)
        if ((got_action && i > action_index+2)); then
            str_tmp="$COMP_LINE"
            [[ $str_setname = ${words[i]} ]] && str_tmp="${str_tmp/${words[i]}/}"
            [[ $str_filename = ${words[i]} ]] && str_tmp="${str_tmp/${words[i]}/}"
            [[ $str_tmp = *${words[i]}* ]] && arr_dupe_cmd_opts[${#arr_dupe_cmd_opts[@]}]="${words[i]}"
        fi
    ;;
esac
done

if [[ $_DEBUG_NF_COMPLETION ]]; then
    printf "\ngot_action: <%s>\n" "$got_action"
    printf "str_action: <%s>\n" "$str_action"
    printf "action_index: <%s>\n" "$action_index"
    printf "order_index: <%s>\n" "$order_index"
    printf "str_setname: <%s>\n" "$str_setname"
    printf "str_filename: <%s>\n" "$str_filename"
    printf "save_format: <%s>\n" "$save_format"
    printf "ignore_errors: <%s>\n" "$ignore_errors"
    printf "names_only: <%s>\n" "$names_only"
    printf "headers_only: <%s>\n" "$headers_only"
#    printf "arr_unknown_opts: <%s>\n" "${arr_unknown_opts[@]}"
    printf "arr_used_opts: <%s>\n" "${arr_used_opts[@]}"
    printf "arr_dupe_cmd_opts: <%s>\n" "${arr_dupe_cmd_opts[@]}"
fi

# invalid combination of options
if ((names_only && headers_only)); then
    return 0
elif ((names_only || headers_only)); then
    if ((res_sort || ignore_errors)) || ((save_format == 3)); then
        return 0
    fi
elif ((ignore_errors)); then
    if ((res_sort || save_format)); then
        return 0
    fi
fi

#case "$cur" in # depend on current
#    \<|\>) # redirection operator
#        compopt -o nospace
#        COMPREPLY=( $( compgen -f ) ) # no $cur, so completion starts without space after redirection
#        return 0
#    ;;
#esac
# catch variables and command substitution
if [[ $cur == \$\(* ]]; then # command substitution
    COMPREPLY=( $(compgen -c -P '$(' ${cur#??}) )
    return 0
elif [[ $cur == \$\{* ]]; then # variables with a leading `${'
    COMPREPLY=( $(compgen -v -P '${' -S '}' ${cur#??}) )
    return 0
elif [[ $cur == \$* ]]; then # variables with a leading `$'
    COMPREPLY=( $(compgen -v -P '$' ${cur#?} ) )
    return 0
fi

case "$prev" in # depend on previous option
    -o|-output)
        # make sure it's not a filename named -o or -output
        if [[ $str_filename != $prev ]]; then
            if ((names_only || headers_only)); then
                COMPREPLY=( $( compgen -W 'plain xml' -- "$cur" ) )
            else
                COMPREPLY=( $( compgen -W 'plain save xml' -- "$cur" ) )
            fi
            return 0
        fi
    ;;
    -f|-file|\<|\>)
        if ((got_bashcompl)); then
            _filedir
        else
            compopt -o nospace
            COMPREPLY=( $( compgen -f -- "$cur" ) )
        fi
        return 0
    ;;
esac

if ((got_action)); then # we got the main action
# Disallow sets with names of options starting with a hyphen
if [[ $str_setname = -?* && $cur != -?* && \
    $str_action = @(create|n|add|del|test|rename|e|swap|w) ]]
then
    for x in ${!arr_opts[@]}; do set -- ${arr_opts[x]}
        [[ $str_setname = @($1|$2) ]] && return 0
    done
fi
if ((cword == action_index+1)) && [[ $str_action = $prev ]]; then
    # depend on previous option which should be the action
    case "$str_action" in
#            create|n|version) :
#            ;;
        help)
            _ipset_get_supported_types
            COMPREPLY=( $( compgen -W '${arr_types[@]}' -- "$cur" ) )
            _ipset_colon_ltrim "$cur"
        ;;
        add|del|rename|e|swap|w|test)
            COMPREPLY=( $( compgen -W '$(ipset list -n)' -- "$cur" ) )
            _ipset_colon_ltrim "$cur"
        ;;
        list|flush|save|destroy|x)
            # we don't know if its an option request, could also be a set
            # named `-*', if the latter is true, show sets and options
            if [[ $cur = -* ]]; then
                _ipset_get_options
                if _ipset_is_set "${cur}*"; then
                     COMPREPLY=( $( compgen -W '${arr_sets[@]}' -- "$cur" ) )
                    _ipset_colon_ltrim "$cur"
                fi
            else
                COMPREPLY=( $( compgen -W '$(ipset list -n)' -- "$cur" ) )
                _ipset_colon_ltrim "$cur"
            fi
        ;;
        restore)
            if [[ $cur = -* ]]; then
                _ipset_get_options
            elif ! [[ $str_filename ]]; then
                # don't show redirector if we have option -f
                COMPREPLY=( \< )
            fi
        ;;
    esac
elif ((cword == action_index+2)) && [[ $str_setname = $prev ]]; then
    case "$str_action" in
#            rename|e) :
#            ;;
        save|restore|list|flush|destroy|x)
            if [[ $cur = -* ]]; then
                _ipset_get_options
            fi
        ;;
        @(create|n))
            _ipset_get_supported_types
            COMPREPLY=( $( compgen -W '${arr_types[@]}' -- "$cur" ) )
            _ipset_colon_ltrim "$cur"
        ;;
        @(swap|w)) # list two sets
            COMPREPLY=( $( compgen -W '$(ipset list -n)' -- "$cur" ) )
            for i in ${!COMPREPLY[@]}; do # remove the dupe setname from the list
                [[ ${COMPREPLY[i]} = $str_setname ]] && unset COMPREPLY[i] && break
            done
            _ipset_colon_ltrim "$cur"
        ;;
        add)
            str_type=$(_ipset_get_set_type "$str_setname")
            case "$str_type" in
                bitmap:ip)
                    _ipset_complete_host_spec "$cur" --v4
                    _ipset_colon_ltrim "$cur"
                ;;
                hash:ip|hash:net|hash:ip,mark)
                    _ipset_complete_host_spec "$cur"
                    _ipset_colon_ltrim "$cur"
                ;;
                hash:net,iface)
                    _ipset_complete_iface_spec "$cur"
                ;;
                hash:@(ip,port|ip,port,ip|ip,port,net|net,port|net,port,net))
                    _ipset_complete_hostport_spec "$cur"
                ;;
                hash:net,net)
                    _ipset_complete_netnet_spec "$cur"
                    _ipset_colon_ltrim "$cur"
                ;;
                bitmap:ip,mac)
                    if [[ $cur = *,* ]]; then
                        str_prefix="$cur" cur="${cur#*,}"
                        str_prefix="${str_prefix%$cur}"
                        str_regex='^([[:xdigit:]]{2})(:[[:xdigit:]]{2}){5}$'
                        x=0 y=0
                        if [[ ${_IPSET_MAC_COMPL_MODE:=both} = both ]]; then
                            x=1 y=1
                        elif [[ $_IPSET_MAC_COMPL_MODE = file ]]; then
                            x=1
                        elif [[ $_IPSET_MAC_COMPL_MODE = system ]]; then
                            y=1
                        fi
                        if ((x)); then
                            if [[ $_IPSET_MACLIST_FILE && -r $_IPSET_MACLIST_FILE ]]
                            then
                                # if a file with mac addresses is in env var, load em
                                str_tmp=$(while read -r mac rest; do
                                    [[ $mac = *([[:blank:]])\#* ]] && continue
                                    mac="${mac//\#*/}"
                                    [[ $mac =~ $str_regex ]] && printf "%s\n" "$mac"
                                    done < "${_IPSET_MACLIST_FILE}")
                                COMPREPLY=( $( compgen -P "$str_prefix" \
                                    -W "$str_tmp" -- "$cur" ) )
                                _ipset_colon_ltrim "$str_prefix$cur"
                            fi
                        fi
                        if ((y)); then
                            # read arp cache, addresses of local interfaces and /etc/ethers
                            str_tmp=$(while read a b addr rest; do
                                [[ $addr =~ $str_regex ]] && printf "%s\n" "$addr"
                                done < <(PATH=$PATH:/sbin command arp -n 2>/dev/null))
                            str_tmp+=" $(while read -r; do
                                [[ $REPLY = *link/loopback* ]] && continue
                                REPLY=${REPLY#*link/*+([[:blank:]])}
                                REPLY=${REPLY%+([[:blank:]])brd*}
                                [[ $REPLY =~ $str_regex ]] && printf "%s\n" "$REPLY"
                                done < <(PATH=$PATH:/sbin command ip -o link show 2>/dev/null))"
                            if [[ -r /etc/ethers ]]; then
                                str_tmp+=" $(while read -r addr rest; do
                                    [[ $addr =~ $str_regex ]] && printf "%s\n" "$addr"
                                    done < /etc/ethers)"
                            fi
                            COMPREPLY+=( $( compgen -P "$str_prefix" -W "$str_tmp" \
                                -- "$cur" ) )
                            _ipset_colon_ltrim "$str_prefix$cur"
                        fi
                    else
                        compopt -o nospace
                        _ipset_complete_host_spec "$cur" --v4 --no-range
                        _ipset_colon_ltrim "$cur"
                        if ((${#COMPREPLY[@]} == 1)); then
                            COMPREPLY=( ${COMPREPLY[*]}, )
                        fi
                    fi
                ;;
                bitmap:port)
                    # complete port [range]
                    _ipset_complete_portrange "$cur"
                ;;
                # show sets if the set to add is of type list:set
                list:*) arr_tmp=() arr_sets=( $(ipset list -n) )
                    _ipset_get_members --names-only "$str_setname"
                    for x in ${!arr_sets[@]}; do
                        [[ ${arr_sets[x]} = $str_setname ]] && continue
                        for y in ${!arr_members[@]}; do
                            [[ ${arr_sets[x]} = ${arr_members[y]} ]] && continue 2
                        done
                        arr_tmp+=("${arr_sets[x]}")
                    done
                    COMPREPLY=( $( compgen -W '${arr_tmp[@]}' -- "$cur" ) )
                    _ipset_colon_ltrim "$cur"
                ;;
            esac
        ;;
        del)
            str_type=$(_ipset_get_set_type "$str_setname")
            if [[ $str_type = bitmap:ip ]]; then
                str_prefix=""
                if [[ ${_IPSET_COMPL_DEL_MODE:=both} = members ]]; then
                    _ipset_complete_elements "$cur"
                elif [[ ${_IPSET_COMPL_DEL_MODE} = spec ]]; then
                    _ipset_complete_host_spec "$cur" --v4
                    _ipset_colon_ltrim "$cur"
                else
                    _ipset_complete_host_spec "$cur" --v4
                    _ipset_complete_elements "$cur"
                    _ipset_colon_ltrim "$cur"
                fi
            elif [[ $str_type = bitmap:port ]]; then
                str_prefix=""
                if [[ ${_IPSET_COMPL_DEL_MODE:=both} = members ]]; then
                    _ipset_complete_elements "$cur"
                elif [[ ${_IPSET_COMPL_DEL_MODE} = spec ]]; then
                    _ipset_complete_portrange "$cur"
                else
                    _ipset_complete_portrange "$cur"
                    _ipset_get_members --names-only "$str_setname"
                    str_glob='?(tcp:|udp:)@([![]*-*|\[?*\]-*)'
                    if [[ $cur = $str_glob ]]; then
                        str_var="${cur#?(tcp:|udp:)}" # offset
                        str_tmp="${cur%"$str_var"}" # proto
                        # identify service number by name, to find the offset
                        if [[ $str_var != +([[:digit:]]) ]]; then
                            if [[ $str_var = \[+([![])\]-* ]]; then
                                str_var="${str_var%%\]*}"
                                str_var="${str_var#\[}"
                            elif  [[ $str_var = *-* ]]; then
                                str_var="${str_var%%-*}"
                            fi
                            str_var=$(_ipset_get_svnum -p "${str_tmp:-all}" -o "$str_var")
                        fi
                        if [[ $str_var = +([[:digit:]]) ]]; then
                            for i in ${!arr_members[@]}; do
                                ((${arr_members[i]} <= $str_var)) && \
                                    unset arr_members[i] || break
                            done
                        fi
                        str_prefix="${cur%-*}-" cur="${cur##*-}"
                    fi
                    COMPREPLY+=( $( compgen -P "$str_prefix" -W '${arr_members[@]}' -- "$cur" ) )
                fi
            elif [[ $str_type = bitmap:ip,mac ]]; then
                str_prefix=""
                if [[ ${_IPSET_COMPL_DEL_MODE:=both} = members ]]; then
                    _ipset_complete_elements "$cur" --no-range
                    _ipset_colon_ltrim "$cur"
                elif [[ ${_IPSET_COMPL_DEL_MODE} = spec ]]; then
                    _ipset_complete_host_spec "$cur" --v4 --no-range
                    _ipset_colon_ltrim "$cur"
                else
                    _ipset_complete_host_spec "$cur" --v4 --no-range
                    _ipset_complete_elements "$cur" --no-range
                    _ipset_colon_ltrim "$cur"
                fi
            elif [[ $str_type = hash:@(ip?(,mark)|net) ]]; then
                str_prefix=""
                if [[ ${_IPSET_COMPL_DEL_MODE:=both} = members ]]; then
                    _ipset_complete_elements "$cur"
                    _ipset_colon_ltrim "$cur"
                elif [[ ${_IPSET_COMPL_DEL_MODE} = spec ]]; then
                    _ipset_complete_host_spec "$cur"
                    _ipset_colon_ltrim "$cur"
                else
                    _ipset_complete_host_spec "$cur"
                    _ipset_complete_elements "$cur"
                    _ipset_colon_ltrim "$cur"
                fi
            elif [[ $str_type = hash:net,net ]]; then
                if [[ ${_IPSET_COMPL_DEL_MODE:=both} = members ]]; then
                    _ipset_complete_elements "$cur"
                    _ipset_colon_ltrim "$cur"
                elif [[ ${_IPSET_COMPL_DEL_MODE} = spec ]]; then
                    _ipset_complete_netnet_spec "$cur"
                    _ipset_colon_ltrim "$cur"
                else
                    _ipset_complete_netnet_spec "$cur"
                    _ipset_complete_elements "$cur"
                    _ipset_colon_ltrim "$cur"
                fi
            elif [[ $str_type = hash:@(ip,port|ip,port,ip|ip,port,net|net,port|net,port,net) ]]
            then
                if [[ ${_IPSET_COMPL_DEL_MODE:=both} = members ]]; then
                    _ipset_complete_elements "$cur" --no-range
                    _ipset_colon_ltrim "$cur"
                elif [[ ${_IPSET_COMPL_DEL_MODE} = spec ]]; then
                    _ipset_complete_hostport_spec "$cur"
                else
                    _ipset_complete_elements "$cur" --no-range
                    _ipset_complete_hostport_spec "$cur"
                    _ipset_colon_ltrim "$cur"
                fi
            elif [[  $str_type = hash:net,iface ]]; then
                if [[ ${_IPSET_COMPL_TEST_MODE:=both} = members ]]; then
                    _ipset_complete_elements "$cur" --no-range
                    _ipset_colon_ltrim "$cur"
                elif [[ ${_IPSET_COMPL_TEST_MODE} = spec ]]; then
                    _ipset_complete_iface_spec "$cur"
                else
                    _ipset_complete_elements "$cur" --no-range
                    _ipset_complete_iface_spec "$cur"
                    _ipset_colon_ltrim "$cur"
                fi
            else
                _ipset_complete_elements "$cur" --no-range
                _ipset_colon_ltrim "$cur"
            fi
        ;;
        test)
            str_type=$(_ipset_get_set_type "$str_setname")
            if [[ $str_type = bitmap:ip ]]; then
                if [[ ${_IPSET_COMPL_TEST_MODE:=both} = members ]]; then
                    _ipset_complete_elements "$cur" --no-range
                elif [[ ${_IPSET_COMPL_TEST_MODE} = spec ]]; then
                    _ipset_complete_host_spec "$cur" --no-range --v4
                else
                    _ipset_complete_elements "$cur" --no-range
                    if ! _ipset_complete_host_spec "$cur" --no-range --v4; then
                        COMPREPLY=()
                    fi
                fi
            elif [[ $str_type = hash:ip?(,mark) ]]; then
                if [[ ${_IPSET_COMPL_TEST_MODE:=both} = members ]]; then
                    _ipset_complete_elements "$cur" --no-range
                    _ipset_colon_ltrim "$cur"
                elif [[ ${_IPSET_COMPL_TEST_MODE} = spec ]]; then
                    _ipset_complete_host_spec "$cur" --no-range
                    _ipset_colon_ltrim "$cur"
                else
                    _ipset_complete_elements "$cur" --no-range
                    if ! _ipset_complete_host_spec "$cur" --no-range; then
                        COMPREPLY=()
                    fi
                    _ipset_colon_ltrim "$cur"
                fi
            elif [[ $str_type = hash:net ]]; then
                if [[ ${_IPSET_COMPL_TEST_MODE:=both} = members ]]; then
                    _ipset_complete_elements "$cur" --no-range
                    _ipset_colon_ltrim "$cur"
                elif [[ ${_IPSET_COMPL_TEST_MODE} = spec ]]; then
                    _ipset_complete_host_spec "$cur"
                    _ipset_colon_ltrim "$cur"
                else
                    _ipset_complete_elements "$cur" --no-range
                    if ! _ipset_complete_host_spec "$cur"; then
                        COMPREPLY=()
                    fi
                    _ipset_colon_ltrim "$cur"
                fi
            elif [[ $str_type = hash:@(ip,port|ip,port,ip|ip,port,net|net,port|net,port,net) ]]
            then
                if [[ ${_IPSET_COMPL_TEST_MODE:=both} = members ]]; then
                    _ipset_complete_elements "$cur" --no-range
                    _ipset_colon_ltrim "$cur"
                elif [[ ${_IPSET_COMPL_TEST_MODE} = spec ]]; then
                    _ipset_complete_hostport_spec "$cur"
                else
                    _ipset_complete_elements "$cur" --no-range
                    _ipset_complete_hostport_spec "$cur"
                    _ipset_colon_ltrim "$cur"
                fi
            elif [[ $str_type = hash:net,iface ]]; then
                if [[ ${_IPSET_COMPL_TEST_MODE:=both} = members ]]; then
                    _ipset_complete_elements "$cur" --no-range
                    _ipset_colon_ltrim "$cur"
                elif [[ ${_IPSET_COMPL_TEST_MODE} = spec ]]; then
                    _ipset_complete_iface_spec "$cur"
                else
                    _ipset_complete_elements "$cur" --no-range
                    _ipset_complete_iface_spec "$cur"
                    _ipset_colon_ltrim "$cur"
                fi
            elif [[ $str_type = bitmap:port ]]; then
                str_prefix="" str_tmp="$cur"
                if [[ $cur = @(tcp|udp):* ]]; then
                    ((got_bp_proto)) || return 0 # supported since ipset v6.20
                    str_prefix="${cur%:*}"
                    str_tmp="${str_tmp#${str_prefix}:}"
                fi
                if [[ ${_IPSET_COMPL_TEST_MODE:=both} = members ]]; then
                    _ipset_complete_elements "$cur" --no-range
                    _ipset_colon_ltrim "$cur"
                elif [[ ${_IPSET_COMPL_TEST_MODE} = spec ]]; then
                    if ((got_bp_proto)); then # supported since ipset v6.20
                        COMPREPLY=( $(compgen -W \
                            'tcp: udp: $(_ipset_get_services -p "$str_prefix")' -- "$str_tmp" ) )
                        [[ ${COMPREPLY[*]} = @(tcp|udp): ]] && compopt -o nospace
                        _ipset_colon_ltrim "$cur"
                    else # only tcp services prior to ipset v6.20
                        COMPREPLY=( $(compgen \
                            -W '$(_ipset_get_services -p tcp)' -- "$cur" ) )
                    fi
                else
                    if ((got_bp_proto)); then # supported since ipset v6.20
                        COMPREPLY=( $(compgen -W \
                            'tcp: udp: $(_ipset_get_services -p "$str_prefix")' -- "$str_tmp" ) )
                        [[ ${COMPREPLY[*]} = @(tcp|udp): ]] && compopt -o nospace
                        _ipset_colon_ltrim "$cur"
                    else # only tcp services prior to ipset v6.20
                        COMPREPLY=( $(compgen \
                            -W '$(_ipset_get_services -p tcp)' -- "$cur" ) )
                    fi
                    _ipset_complete_elements "$cur" --no-range
                    _ipset_colon_ltrim "$cur"
                fi
            else
                _ipset_complete_elements "$cur" --no-range
                _ipset_colon_ltrim "$cur"
            fi
        ;;
    esac
elif ((cword == action_index+3)) && [[ $cur != -* ]]; then
    case "$str_action" in
        add)
            str_type=$(_ipset_get_set_type "$str_setname")
            if _ipset_set_has_option timeout "$str_setname"; then
                str_timeout=timeout
            else
                str_timeout=""
            fi
            if ! _ipset_set_has_option counters "$str_setname"; then
                str_bp_counters=""
            fi
            if ! _ipset_set_has_option comment "$str_setname"; then
                str_comment=""
            fi
            case "$str_type" in
                hash:*net*)
                    COMPREPLY=( $( compgen -W \
                        '$(_ipset_dedupe_cmd_opts $str_timeout $str_bp_counters $str_comment nomatch)' \
                        -- "$cur" ) )
                ;;
                hash:*!(net)*|bitmap:*)
                    COMPREPLY=( $( compgen -W \
                        '$(_ipset_dedupe_cmd_opts $str_timeout $str_bp_counters $str_comment)' \
                        -- "$cur" ) )
                ;;
                list:*)
                    COMPREPLY=( $( compgen -W \
                        '$(_ipset_dedupe_cmd_opts $str_order $str_timeout $str_bp_counters $str_comment)' \
                        -- "$cur" ) )
                ;;
            esac
        ;;
        create|n)
            case "$prev" in
                hash:ip,mark)
                    COMPREPLY=( $( compgen -W \
                        '$(_ipset_dedupe_cmd_opts family hashsize timeout maxelem $str_counters $str_markmask $str_comment $str_forceadd)' \
                        -- "$cur" ) )
                ;;
                hash:*)
                    COMPREPLY=( $( compgen -W \
                        '$(_ipset_dedupe_cmd_opts family hashsize timeout maxelem $str_counters $str_comment $str_forceadd)' \
                        -- "$cur" ) )
                ;;
                bitmap:ip)
                    COMPREPLY=( $( compgen -W \
                        '$(_ipset_dedupe_cmd_opts range netmask timeout $str_counters $str_comment)' \
                    -- "$cur" ) )
                ;;
                bitmap:!(ip)?*)
                    COMPREPLY=( $( compgen -W \
                        '$(_ipset_dedupe_cmd_opts range timeout $str_counters $str_comment)' \
                        -- "$cur" ) )
                ;;
                list:*)
                    COMPREPLY=( $( compgen -W \
                        '$(_ipset_dedupe_cmd_opts size timeout $str_counters $str_comment)' \
                        -- "$cur" ) )
                ;;
            esac
        ;;
        del|test)
            str_type=$(_ipset_get_set_type "$str_setname")
            if [[ $str_type = list:* ]]; then
                COMPREPLY=( $( compgen -W '$str_order' -- "$cur" ) )
            elif [[ $str_action = test && $str_type = hash:*net* ]]; then
                COMPREPLY=( $( compgen -W 'nomatch' -- "$cur" ) )
            fi
        ;;
    esac
elif ((cword == action_index+3)) && [[ $cur = -* ]]; then
    _ipset_get_options
elif ((cword >= action_index+4)) && [[ $cur = -* ]]; then # add all following hyphen options
    if [[ $prev != @(timeout|hashsize|size|family|maxelem|range|netmask|before|after|bytes|packets|comment|markmask) ]]
    then
        _ipset_get_options
    fi
elif ((cword >= action_index+4)); then # add all following non-hyphen options
    case "$str_action" in
        add)
            str_type=$(_ipset_get_set_type "$str_setname")
            if _ipset_set_has_option timeout "$str_setname"; then
                str_timeout=timeout
            else
                str_timeout=""
            fi
            if ! _ipset_set_has_option counters "$str_setname"; then
                str_bp_counters=""
            fi
            if ! _ipset_set_has_option comment "$str_setname"; then
                str_comment=""
            fi
            # validate option argument values
            if [[ ${_IPSET_VALIDATE_INPUT-1} ]]; then
                for ((x=$action_index+3; x < ${#words[@]}; x++)); do
                    [[ ${words[x]} = @(timeout|bytes|packets) && \
                        ${words[x+1]} != @(+([[:digit:]])|0[xX]+([[:xdigit:]])) ]] && return 0
                done
            fi
            case "$str_type" in
                hash:*net*)
                    if [[ $prev != @(timeout|bytes|packets|comment) ]]; then
                        COMPREPLY=( $( compgen -W \
                            '$(_ipset_dedupe_cmd_opts $str_timeout $str_bp_counters $str_comment nomatch)' \
                            -- "$cur" ) )
                    fi
                ;;
                hash:*!(net)*|bitmap:*)
                    if [[ $prev != @(timeout|bytes|packets|comment) ]]; then
                        COMPREPLY=( $( compgen -W \
                            '$(_ipset_dedupe_cmd_opts $str_timeout $str_bp_counters $str_comment)' \
                            -- "$cur" ) )
                    fi
                ;;
                list:*)
                    if [[ $prev = @(before|after) ]] && ((cword-1 == order_index)); then
                        _ipset_complete_elements "$cur"
                        _ipset_colon_ltrim "$cur"
                    elif [[ $prev != @(timeout|bytes|packets) ]]; then
                        COMPREPLY=( $( compgen -W \
                            '$(_ipset_dedupe_cmd_opts $str_order $str_timeout $str_bp_counters $str_comment)' \
                            -- "$cur" ) )
                    fi
                ;;
            esac
        ;;
        create|n)
            # validate option argument values
            if [[ ${_IPSET_VALIDATE_INPUT-1} ]]; then
                for ((x=$action_index+3; x < ${#words[@]}; x++)); do
                    if [[ ${words[x+1]} && ${words[x+1]} != $cur ]]; then
                        case "${words[x]}" in
                            @(hashsize|timeout|size|maxelem|markmask))
                                [[ ${words[x+1]} != @(+([[:digit:]])|0[xX]+([[:xdigit:]])) ]] && return 0
                            ;;
                            family)
                                [[ ${words[x+1]} != inet?(6) ]] && return 0
                            ;;
                            range)
                                case "$str_type" in
                                    bitmap:port)
                                        [[ ${words[x+1]} != *-* ]] && return 0
                                    ;;
                                    *)
                                        [[ ${words[x+1]} != @(*-*|*/+([[:digit:]])) ]] && return 0
                                    ;;
                                esac
                            ;;
                        esac
                    fi
                done
            fi
            case "${words[action_index+2]}" in # must be the set type
                hash:ip,mark)
                    if [[ $prev = family ]]; then
                        COMPREPLY=( $( compgen -W \
                            '$(_ipset_dedupe_cmd_opts inet inet6)' \
                            -- "$cur" ) )
                    elif [[ $prev != @(hashsize|timeout|maxelem|markmask) ]]; then
                        COMPREPLY=( $( compgen -W \
                            '$(_ipset_dedupe_cmd_opts family hashsize timeout maxelem $str_counters $str_markmask $str_comment $str_forceadd)' \
                            -- "$cur" ) )
                    fi
                ;;
                hash:*)
                    if [[ $prev = family ]]; then
                        COMPREPLY=( $( compgen -W \
                            '$(_ipset_dedupe_cmd_opts inet inet6)' \
                            -- "$cur" ) )
                    elif [[ $prev != @(hashsize|timeout|maxelem) ]]; then
                        COMPREPLY=( $( compgen -W \
                            '$(_ipset_dedupe_cmd_opts family hashsize timeout maxelem $str_counters $str_comment $str_forceadd)' \
                            -- "$cur" ) )
                    fi
                ;;
                bitmap:ip)
                    if [[ $prev != @(range|netmask|timeout) ]]; then
                        COMPREPLY=( $( compgen -W \
                            '$(_ipset_dedupe_cmd_opts range netmask timeout $str_counters $str_comment)' \
                            -- "$cur" ) )
                    fi
                ;;
                bitmap:!(ip)?*)
                    if [[ $prev != @(range|timeout) ]]; then
                        COMPREPLY=( $( compgen -W \
                            '$(_ipset_dedupe_cmd_opts range timeout $str_counters $str_comment)' \
                            -- "$cur" ) )
                    fi
                ;;
                list:*)
                    if [[ $prev != @(size|timeout) ]]; then
                        COMPREPLY=( $( compgen -W \
                            '$(_ipset_dedupe_cmd_opts size timeout $str_counters $str_comment)' \
                            -- "$cur" ) )
                    fi
                ;;
            esac
            if [[ ${words[action_index+2]} = bitmap:port && $prev = range ]]; then
                # complete port ranges
                _ipset_complete_portrange "$cur"
            elif [[ ${words[action_index+2]} = bitmap:* && $prev = range ]]; then
                str_prefix=""
                if [[ $cur = @(""|+([[:word:]])) ]]; then # empty or [:word:]
                    :
                elif [[ $cur = [\[]*-*[\]] ]]; then # host with hyphen
                    :
                elif [[ $cur = [[]*([!]]) ]]; then # incomplete host with dash
                    :
                elif [[ $cur = *-[[]+([!]]) ]]; then # incomplete range - host with dash
                    str_prefix="${cur%\-[*}-"
                elif [[ $cur = \[*\]-* ]]; then # first part of hostname range
                    str_prefix="${cur%\]-*}]-"
                elif [[ $cur != *-* ]]; then # no hypen
                    :
                else # ip-range
                    str_prefix="${cur%-*}-"
                fi
                _ipset_complete_host_spec "$cur" --v4
                if ((${#COMPREPLY[@]} == 1)); then
                    if [[ -z $str_prefix  && ${COMPREPLY[*]} != */* ]]; then
                        compopt -o nospace
                        COMPREPLY=( $( compgen -W '${COMPREPLY[*]}/ ${COMPREPLY[*]}-' -- "$cur" ) )
                    fi
                fi
            fi
        ;;
        del|test)
            str_type=$(_ipset_get_set_type "$str_setname")
            case "$str_type" in
                list:*) arr_tmp=()
                    _ipset_get_members --names-only "$str_setname"
                    if [[ $prev = @(before|after) ]] && ((cword-1 == order_index))
                    then
                        case "$prev" in
                            before)
                                for x in ${!arr_members[@]}; do
                                    if [[ ${arr_members[x]} = ${words[action_index+2]} ]]
                                    then
                                        if [[ ${arr_members[x+1]} ]]; then
                                            arr_tmp+=(${arr_members[x+1]})
                                            break
                                        fi
                                    fi
                                done
                                ;;
                            after)
                                for x in ${!arr_members[@]}; do
                                    if [[ ${arr_members[x]} = ${words[action_index+2]} ]]
                                    then
                                        if ((x>0)) && [[ ${arr_members[x-1]} ]]; then
                                            arr_tmp+=(${arr_members[x-1]})
                                            break
                                        fi
                                    fi
                                done
                                ;;
                        esac
                        COMPREPLY=( $( compgen -W '${arr_tmp[@]}' -- "$cur" ) )
                        _ipset_colon_ltrim "$cur"
                    fi
                ;;
            esac
        ;;
    esac
fi
else # we don't have the main action yet
if [[ $prev = - ]] && ((cword == 2)); then
    return 0 # interactive mode, don't complete on anything further
fi
if [[ $cur = -* ]]; then # any option is requested
    _ipset_get_options
else
    # we don't have the action yet, check options to display appropiate actions
    if ((save_format || names_only || headers_only)); then
        COMPREPLY=( $( compgen -W 'list' -- "$cur" ) )
    elif ((res_sort)); then
        COMPREPLY=( $( compgen -W 'list save' -- "$cur" ) )
    elif ((ignore_errors && use_file)); then
        COMPREPLY=( $( compgen -W 'restore' -- "$cur" ) )
    elif ((ignore_errors)); then
        COMPREPLY=( $( compgen -W 'create n add del restore' -- "$cur" ) )
    elif ((use_file)); then
        COMPREPLY=( $( compgen -W 'list save restore' -- "$cur" ) )
    else
    COMPREPLY=( $( compgen -W 'create n add del test destroy x list save \
        restore flush rename e swap w help version' -- "$cur" ) )
    fi
fi
fi
if [[ $_DEBUG_NF_COMPLETION ]]; then
    printf "COMPREPLY:\n"
    printf "<%s>\n" "${COMPREPLY[@]}"
fi
}
complete -F _ipset_complete ipset