aboutsummaryrefslogtreecommitdiffstats
path: root/ldap/test-user-acl.sh
blob: 9b954c7c37e948101086d648e2cd5df25314e808 (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
#!/bin/sh

# This a test suite for the user ACLs.
# *Every* modification to the schema and/or to the ACLs should be made
# here too! It is crucial that the test suite doesn't break.
#
# Requires a populated database with every possible test case, like
# `populate.ldif'.
# The database remains unchanged, but slapacl needs to have read access,
# so the test suite may have to be run by root.


SLAPACL=/usr/sbin/slapacl
SUFFIXV="ou=virtual,o=mailHosting,dc=fripost,dc=dev"
SUFFIXS="ou=services,o=mailHosting,dc=fripost,dc=dev"
SUFFIX="${SUFFIXV}"

RES=$(tempfile) || exit 1

checkACL () {
    CMD=${SLAPACL}
    BIND="${1},${SUFFIX}"
    if [ -n "${1}" ]; then CMD="${CMD} -D ${BIND}"; fi
    if [ -n "${2}" ]; then BASE="${2},${SUFFIXV}"; else BASE="${SUFFIXV}"; fi
    shift; shift

    ${CMD} -b "${BASE}" "$@" 2>&1 | grep -vixF -e "authcDN: \"${BIND}\""
    N=1
}

msg () {
    /bin/echo -n "  "
    /bin/echo -n "$@"
    /bin/echo -n "... "
}

isOK () {
    # Ensures that every line in "$RES" satisfies the regexp "$1".
    # The total count is the number of "$2" attributes, or the number of lines in "$RES".
    [ -n "${1}" ] || exit 1
    cat > "${RES}"
    if [ -n "${2}" ]; then
        if [ -n "${3}" ]; then
            TOT=$(grep -Pic "^${3} access to ${2}: " < "${RES}")
        else
            TOT=$(grep -Pic "^((write|add|delete|read|search|compare|auth|disclose) access to )?${2}: " < "${RES}")
        fi
    else
        TOT=$(wc -l < "${RES}")
    fi
    FAILS=$(grep -vc "${1}" < "${RES}")
    if [ ${FAILS} -eq 0 ]; then
        /bin/echo -n "OK"
    else
        echo "Fail! (x${FAILS})"; exit 1
    fi
    /bin/echo -n " (${TOT}/${TOT})"
    echo
    # We need a complete test suite
    ([ -n "${TOT}" ] && [ ${TOT} -ne 0 ]) || (echo "Add more test data."; exit 1)
}

search () {
    ldapsearch -Q -LLL -Y EXTERNAL -H ldapi:// "$@"
}


########################################################################


DOMAINS=$(search -u -b "${SUFFIX}" "objectClass=FripostVirtualDomain" dn | \
          grep -i '^ufn: ' | sed -re 's/^ufn: ([^,]+),.*/fvd=\1/')
USERS=$(search -u -b "${SUFFIX}" "objectClass=FripostVirtualUser" dn | \
        grep -i '^ufn: ' | sed -re 's/^ufn: ([^,]+), *([^,]+),.*/fvu=\1,fvd=\2/')
ALIASES=$(search -u  -b "${SUFFIX}" "objectClass=FripostVirtualAlias" dn | \
          grep -i '^ufn: ' | sed -re 's/^ufn: ([^,]+), *([^,]+),.*/fva=\1,fvd=\2/')
LISTS=$(search -u -b "${SUFFIX}" "objectClass=FripostVirtualList" dn | \
      grep -i '^ufn: ' | sed -re 's/^ufn: ([^,]+), *([^,]+),.*/fvl=\1,fvd=\2/')
LISTSC=$(search -u -b "${SUFFIX}" "objectClass=FripostVirtualListCommand" dn | \
       grep -i '^ufn: ' | sed -re 's/^ufn: ([^,]+), *([^,]+), *([^,]+),.*/fvlc=\1,fvl=\2,fvd=\3/')

OPERATTRS="structuralObjectClass entryUUID createTimestamp entryCSN modifiersName modifyTimestamp"


########################################################################


echo "Anonymous users:"


# Anonymous need to bind to any fvu
msg "Have =xd access to \"userPassword\" attributes"
for U in ${USERS}; do
    checkACL "" "${U}" userPassword
done | isOK 'auth(=xd)$'
[ $? -eq 0 ] || exit $?


msg "Have =0 access to the rest of user entries"
for U in ${USERS}; do
    checkACL "" "${U}"
done | grep -v '^userPassword=.*: auth(=xd)$' | isOK '=0$' entry
[ $? -eq 0 ] || exit $?


msg "Have =0 access to alias entries"
for A in ${ALIASES}; do
    checkACL "" "${A}"
done | isOK '=0' entry
[ $? -eq 0 ] || exit $?


msg "Have =0 access to list entries"
for L in ${LISTS}; do
    checkACL "" "${L}"
done | isOK '=0' entry
[ $? -eq 0 ] || exit $?


msg "Have =0 access to domain entries"
for D in ${DOMAINS}; do
    checkACL "" "${D}"
done | isOK '=0' entry
[ $? -eq 0 ] || exit $?


msg "Have =0 access to the base"
checkACL "" "" | isOK '=0' entry
[ $? -eq 0 ] || exit $?


###########################################################################


echo
echo "Authenticated users, access to the base"


usersB () {
    for U in ${USERS}; do
        checkACL "${U}" "" "$@"
    done
}


msg "Have =s access on the base's \"entry\" attribute"
usersB entry | isOK '=s' entry
[ $? -eq 0 ] || exit $?


# Needed to delete domains. They cannot create domains though, as they
# would need =a on the "children" attribute.
msg "Have =z access on the base's \"children\" attribute"
usersB children | isOK '=z$' children
[ $? -eq 0 ] || exit $?


msg "Have =0 access to the operational attributes"
usersB ${OPERATTRS} | isOK '=0$' entryUUID
[ $? -eq 0 ] || exit $?


###########################################################################


echo
echo "Authenticated users, access to domain entries"

# * entry:
#       =s-a for all
#       +rd if children, canAdd{Alias,List}, owner or postmaster
#       +z if owner or postmaster
# * children:
#       =w for all
# * objectClass:
#       =s for all
# * fvd:
#       =rscd if children, canAdd{Alias,List}, owner or postmaster
#       +w if owner or postmaster
# * fripostIsStatusActive
#       =rscd if children, canAdd{Alias,List}, owner or postmaster
#       +w if owner or postmaster
# * fripostCanAddAlias
#       =rscd if canAddAlias, owner or postmaster
#       +w if postmaster
# * fripostCanAddList
#       =rscd if canAddList, owner or postmaster
#       +w if postmaster
# * fripostOwner
#       =s for all
#       +d if children
#       +rc if canAdd{Alias,List}, owner or postmaster
# * fripostPostmaster
#       =s for all
#       +d if children
#       +rc if canAdd{Alias,List}, owner or postmaster
# * fripostOptionalMaildrop
#       =wrscd if owner or postmaster
# * description
#       =rscd if children, canAdd{Alias,List}, owner or postmaster
#       +w if owner or postmaster

usersD () {
    for U in ${USERS}; do
        for D in ${DOMAINS}; do
            checkACL "${U}" "${D}" "$@"
        done
    done
}

msg "Cannot appoint domain Owners or Postmasters; Cannot add a domain"
usersD fripostOwner/add fripostOwner/delete \
       fripostPostmaster/add fripostPostmaster/delete \
       entry/add \
 | isOK 'DENIED$' entry
[ $? -eq 0 ] || exit $?

# We ensure not to give +a/+z access to the \"entry\" attribute of the
# children, unless justified (required to add/delete a child).
msg "Have =w access to \"children\""
usersD children | isOK '=w$' children
[ $? -eq 0 ] || exit $?

msg "Have =s access to \"objectClass\""
usersD objectClass | isOK '=s' objectClass
[ $? -eq 0 ] || exit $?

msg "Have >=s access on \"entry\", \"fripostOwner\" and \"fripostPostmaster\""
usersD entry/search fripostOwner/search fripostPostmaster/search | isOK 'ALLOWED$' entry
[ $? -eq 0 ] || exit $?

msg "Have =0 access to the operational attributes"
usersD ${OPERATTRS} | isOK '=0$' entryUUID
[ $? -eq 0 ] || exit $?


# We check the following permissions:
#  0. Simple user
#  1. canAddAlias (exact,wildcard)
#  2. canAddList (exact,wildcard)
#  3. Owner
#  4. Postmaster

# 0
ATTRS0="entry/read entry/disclose
        fvd/read fvd/search fvd/compare fvd/disclose
        fripostIsStatusActive/read fripostIsStatusActive/search fripostIsStatusActive/compare fripostIsStatusActive/disclose
        fripostOwner/disclose
        fripostPostmaster/disclose
        description/read description/search description/compare description/disclose"
msg "Have >=rscd access to the public attributes of their parent"
for U in ${USERS}; do
    D="$(echo "${U}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
    checkACL "${U}" "${D}" ${ATTRS0}
done | isOK 'ALLOWED$' entry read
[ $? -eq 0 ] || exit $?


# 1
ATTRSA="fripostOwner/read fripostOwner/compare
        fripostPostmaster/read fripostPostmaster/compare
        fripostCanAddAlias/read fripostCanAddAlias/search fripostCanAddAlias/compare fripostCanAddAlias/disclose"
msg "Have >=rscd access to the public attributes and >=a to \"children\" (if CanAddAlias, exact)"
for U in ${USERS}; do
    for D in ${DOMAINS}; do
        search -s base -b "${D},${SUFFIX}" "fripostCanAddAlias=${U},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${D}" children/add ${ATTRS0} ${ATTRSA}
    done
done | isOK 'ALLOWED$' children
[ $? -eq 0 ] || exit $?


# 1
msg "Have >=rscd to the public attributes and >=a to \"children\" (if CanAddAlias, wildcard)"
for U in ${USERS}; do
    DU="$(echo "${U}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
    for D in ${DOMAINS}; do
        search -s base -b "${D},${SUFFIX}" "fripostCanAddAlias=${DU},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${D}" children/add ${ATTRS0} ${ATTRSA}
    done
done | isOK 'ALLOWED$' children
[ $? -eq 0 ] || exit $?


# 2
ATTRSL="fripostOwner/read fripostOwner/compare
        fripostPostmaster/read fripostPostmaster/compare
        fripostCanAddList/read fripostCanAddList/search fripostCanAddList/compare fripostCanAddList/disclose"
msg "Have >=rscd access to the public attributes and >=a to \"children\" (if CanAddList, exact)"
for U in ${USERS}; do
    for D in ${DOMAINS}; do
        search -s base -b "${D},${SUFFIX}" "fripostCanAddList=${U},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${D}" children/add ${ATTRS0} ${ATTRSL}
    done
done | isOK 'ALLOWED$' children
[ $? -eq 0 ] || exit $?


# 2
msg "Have >=rscd access to the public attributes and >=a to \"children\" (if CanAddList, wildcard)"
for U in ${USERS}; do
    DU="$(echo "${U}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
    for D in ${DOMAINS}; do
        search -s base -b "${D},${SUFFIX}" "fripostCanAddList=${DU},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${D}" children/add ${ATTRS0} ${ATTRSL}
    done
done | isOK 'ALLOWED$' children
[ $? -eq 0 ] || exit $?


# 3
# >=w to "children", =zrscd to "entry", >=rscd to "fripostCanAddAlias" and
# "fripostCanAddList", and =wrscd to the rest (other than "Owner" and
# Postmaster")
msg "Have =wrscd to the domain attributes (other than \"canAdd\"), and >=w to \"children\" (if Owner)"
ATTRSO="entry/delete
        fvd/write
        fripostIsStatusActive/write
        fripostOptionalMaildrop/delete fripostOptionalMaildrop/add fripostOptionalMaildrop/read fripostOptionalMaildrop/search fripostOptionalMaildrop/compare fripostOptionalMaildrop/disclose
        description/add description/delete"
for U in ${USERS}; do
    for D in ${DOMAINS}; do
        search -s base -b "${D},${SUFFIX}" "fripostOwner=${U},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${D}" children/write ${ATTRS0} ${ATTRSA} ${ATTRSL} ${ATTRSO}
    done
done | isOK 'ALLOWED$' children
[ $? -eq 0 ] || exit $?


# 4
# >=w to "children", =zrscd to "entry", >=rscd to "fripostCanAddAlias" and
# "fripostCanAddList", and =wrscd to the rest (other than "Owner" and
# Postmaster")
msg "Have =wrscd to the domain attributes, and >=w to \"children\" (if Postmaster)"
ATTRSP="fripostCanAddAlias/add fripostCanAddAlias/delete
        fripostCanAddList/add fripostCanAddList/delete"
for U in ${USERS}; do
    for D in ${DOMAINS}; do
        search -s base -b "${D},${SUFFIX}" "fripostPostmaster=${U},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${D}" children/write ${ATTRS0} ${ATTRSA} ${ATTRSL} ${ATTRSO} ${ATTRSP}
    done
done | isOK 'ALLOWED$' children
[ $? -eq 0 ] || exit $?


# not (0 or 1 or 2 or 3 or 4)
msg "Have no access to the public attributes of irrelevant domains"
for U in ${USERS}; do
    DU="$(echo "${U}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
    for D in ${DOMAINS}; do
        [ "x${DU}" = "x${D}" ] || \
        search -s base -b "${D},${SUFFIX}" "(|(fripostCanAddAlias=${U},${SUFFIX})
                                              (fripostCanAddAlias=${DU},${SUFFIX})
                                              (fripostCanAddList=${U},${SUFFIX})
                                              (fripostCanAddList=${DU},${SUFFIX})
                                              (fripostOwner=${U},${SUFFIX})
                                              (fripostPostmaster=${U},${SUFFIX}))" | grep -q '^dn: ' || \
        checkACL "${U}" "${D}" ${ATTRS0}
    done
done | isOK 'DENIED$' entry read
[ $? -eq 0 ] || exit $?


# not (1 or 2 or 3 or 4)
msg "Do not have >=rc access to \"canAdd{Alias,List}\", \"Owner\", \"Postmaster\" (unless member)"
for U in ${USERS}; do
    DU="$(echo "${U}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
    for D in ${DOMAINS}; do
        search -s base -b "${D},${SUFFIX}" "(|(fripostCanAddAlias=${U},${SUFFIX})
                                              (fripostCanAddAlias=${DU},${SUFFIX})
                                              (fripostCanAddList=${U},${SUFFIX})
                                              (fripostCanAddList=${DU},${SUFFIX})
                                              (fripostOwner=${U},${SUFFIX})
                                              (fripostPostmaster=${U},${SUFFIX}))" | grep -q '^dn: ' || \
        checkACL "${U}" "${D}" ${ATTRSA} ${ATTRSL} entry/add
    done
done | isOK 'DENIED$' entry # "entry" here is useless, but it's just to get the count
[ $? -eq 0 ] || exit $?


# not (1 or 3 or 4)
msg "Have =0 access to \"canAddAlias\" (unless member, Owner, or Postmaster)"
for U in ${USERS}; do
    DU="$(echo "${U}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
    for D in ${DOMAINS}; do
        search -s base -b "${D},${SUFFIX}" "(|(fripostCanAddAlias=${U},${SUFFIX})
                                              (fripostCanAddAlias=${DU},${SUFFIX})
                                              (fripostOwner=${U},${SUFFIX})
                                              (fripostPostmaster=${U},${SUFFIX}))" | grep -q '^dn: ' || \
        checkACL "${U}" "${D}" fripostCanAddAlias entry/add
    done
done | isOK '\(=0\|DENIED\)$' entry # "entry" here is useless, but it's just to get the count
[ $? -eq 0 ] || exit $?


# not (2 or 3 or 4)
msg "Have =0 access to \"canAddList\" (unless member, Owner, or Postmaster)"
for U in ${USERS}; do
    DU="$(echo "${U}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
    for D in ${DOMAINS}; do
        search -s base -b "${D},${SUFFIX}" "(|(fripostCanAddList=${U},${SUFFIX})
                                              (fripostCanAddList=${DU},${SUFFIX})
                                              (fripostOwner=${U},${SUFFIX})
                                              (fripostPostmaster=${U},${SUFFIX}))" | grep -q '^dn: ' || \
        checkACL "${U}" "${D}" fripostCanAddList entry/add
    done
done | isOK '\(=0\|DENIED\)$' entry # "entry" here is useless, but it's just to get the count
[ $? -eq 0 ] || exit $?


# not (3 or 4)
msg "Have =0 access to \"fripostOptionalMaildrop\" (unless Owner or Postmaster)"
for U in ${USERS}; do
    for D in ${DOMAINS}; do
        search -s base -b "${D},${SUFFIX}" "(|(fripostOwner=${U},${SUFFIX})
                                              (fripostPostmaster=${U},${SUFFIX}))" | grep -q '^dn: ' || \
        checkACL "${U}" "${D}" ${ATTRSO}
    done
done | isOK 'DENIED$' entry
[ $? -eq 0 ] || exit $?


# not 4
msg "Do not have >=w access to \"canAdd{Alias,List}\" (unless Postmaster)"
for U in ${USERS}; do
    for D in ${DOMAINS}; do
        search -s base -b "${D},${SUFFIX}" "fripostPostmaster=${U},${SUFFIX}" | grep -q '^dn: ' || \
        checkACL "${U}" "${D}" ${ATTRSP} entry/add
    done
done | isOK 'DENIED$' entry # "entry" here is useless, but it's just to get the count
[ $? -eq 0 ] || exit $?



###########################################################################


echo
echo "Authenticated users, access to user entries"

# * entry:
#       =rsd if account owner
#       +a if domain postmaster
# * children:
#       =0 for all
# * objectClass:
#       =s for all
# * fvu:
#       =wrscd if account owner or domain postmaster
# * userPassword:
#       =w if account owner or domain postmaster
# * fripostIsStatusActive:
#       =wrscd if account owner or domain postmaster
# * fripostUserQuota:
#       =rscd if account owner or domain postmaster
# * fripostOptionalMaildrop:
#       =wrscd if account owner or domain postmaster
# * description:
#       =wrscd if account owner or domain postmaster

usersU () {
    for U in ${USERS}; do
        checkACL "${U}" "${U}" "$@"
    done
}

# They would need write access to their fripostUserQuota.
# In practice they can't write fvu either, since it's single valued.
msg "Have =rscxd access to their \"fripostUserQuota\""
usersU fripostUserQuota | isOK 'read(=rscxd)$'
[ $? -eq 0 ] || exit $?

msg "Have =wd access to their own \"userPassword\""
usersU userPassword | isOK '=w$'
[ $? -eq 0 ] || exit $?

msg "Have =wrscxd access to the other attributes of their own entry"
usersU fvu fripostIsStatusActive fripostOptionalMaildrop description | isOK 'write(=wrscxd)$' fvu
[ $? -eq 0 ] || exit $?

msg "Have >=rsd access to the \"entry\" attribute of their own entry"
usersU entry/read entry/search entry/disclose fvu/read \
    | isOK 'ALLOWED$' fvu # fvu is useless here, but it's just to get the count
[ $? -eq 0 ] || exit $?

msg "Have =0 access to their \"children\" and operational attributes"
usersU children ${OPERATTRS} | isOK '=0$' children
[ $? -eq 0 ] || exit $?

msg "Have =s access to \"objectClass\""
usersD objectClass | isOK '=s' objectClass
[ $? -eq 0 ] || exit $?

msg "Have =0 access to other user entries (unless Postmaster)"
for U1 in ${USERS}; do
    for U2 in ${USERS}; do
        D2="$(echo "${U2}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        [ "x${U1}" = "x${U2}" ] || \
        search -s base -b "${D2},${SUFFIX}" "(fripostPostmaster=${U1},${SUFFIX})" | grep -q '^dn: ' || \
        checkACL "${U1}" "${U2}" entry children \
                                 fvu userPassword \
                                 fripostIsStatusActive \
                                 fripostUserQuota \
                                 fripostOptionalMaildrop \
                                 description
    done
done | isOK '=0$' entry
[ $? -eq 0 ] || exit $?


usersP () {
    for P in ${USERS}; do
        for U in ${USERS}; do
            D="$(echo "${U}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
            [ "x${U}" != "x${P}" ] && \
            search -s base -b "${D},${SUFFIX}" "(fripostPostmaster=${P},${SUFFIX})" | grep -q '^dn: ' && \
            checkACL "${P}" "${U}" "$@"
        done
    done
}

msg "Have =rscxd access to their user's \"fripostUserQuota\" (if Postmaster)"
usersP fripostUserQuota | isOK 'read(=rscxd)$'
[ $? -eq 0 ] || exit $?

msg "Have =wd access to their user's \"userPassword\" (if Postmaster)"
usersP userPassword | isOK '=w$'
[ $? -eq 0 ] || exit $?

msg "Have =wrscxd access to the other attributes of their users' entry (if Postmaster)"
usersP fvu fripostIsStatusActive fripostOptionalMaildrop description | isOK 'write(=wrscxd)$' fvu
[ $? -eq 0 ] || exit $?

# "+a" is needed to create new accounts. "+z" would be required to
# delete such accounts.
msg "Have =arsd access to the \"entry\" attribute of their users' entry (if Postmaster)"
usersP entry | isOK '=arsd$' entry
[ $? -eq 0 ] || exit $?

msg "Have =0 access to their users' \"children\" and operational attributes (if Postmaster)"
usersP children ${OPERATTRS} | isOK '=0$' children
[ $? -eq 0 ] || exit $?


###########################################################################


echo
echo "Authenticated users, access to alias entries"

# * entry:
#       =s for all
#       +a if canAddAlias
#       +zrd if alias owner, domain owner or domain postmaster
# * children:
#       =0 for all
# * objectClass:
#       =s for all
# * fva:
#       =wrscd if alias owner, domain owner or domain postmaster
# * fripostMaildrop:
#       =wrscd if alias owner, domain owner or domain postmaster
# * fripostIsStatusActive:
#       =wrscd if alias owner, domain owner or domain postmaster
# * fripostOwner:
#       =d for all
#       +rsc if alias owner, domain owner or domain postmaster
#       +w if domain owner or domain postmaster
# * description:
#       =wrscd if alias owner, domain owner or domain postmaster

usersA () {
    for U in ${USERS}; do
        for A in ${ALIASES}; do
            checkACL "${U}" "${A}" "$@"
        done
    done
}


msg "Have >=s access to \"entry\" and \"fripostOwner\""
usersA fripostOwner/search entry/search | isOK 'ALLOWED$' entry
[ $? -eq 0 ] || exit $?


msg "Have =0 access to the \"children\" and operational attributes"
usersA children ${OPERATTRS} | isOK '=0$' children
[ $? -eq 0 ] || exit $?

msg "Have =s access to \"objectClass\""
usersD objectClass | isOK '=s' objectClass
[ $? -eq 0 ] || exit $?


ATTRS="entry/delete entry/read entry/disclose 
       fva/write fva/read fva/search fva/compare fva/disclose 
       fripostMaildrop/add fripostMaildrop/delete fripostMaildrop/read fripostMaildrop/search fripostMaildrop/compare fripostMaildrop/disclose
       fripostIsStatusActive/write fripostIsStatusActive/read fripostIsStatusActive/search fripostIsStatusActive/compare fripostIsStatusActive/disclose
       fripostOwner/read fripostOwner/compare fripostOwner/disclose
       description/add description/delete description/read description/search description/compare description/disclose"
ATTRSO="fripostOwner/add fripostOwner/delete"

msg "Can edit alias (if alias Owner)"
for U in ${USERS}; do
    for A in ${ALIASES}; do
        search -s base -b "${A},${SUFFIX}" "fripostOwner=${U},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${A}" ${ATTRS}
    done
done | isOK 'ALLOWED$' entry read
[ $? -eq 0 ] || exit $?


msg "Can edit alias and create new aliases (if domain Owner)"
for U in ${USERS}; do
    for A in ${ALIASES}; do
        DA="$(echo "${A}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        search -s base -b "${DA},${SUFFIX}" "fripostOwner=${U},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${A}" entry/add ${ATTRS}
    done
done | isOK 'ALLOWED$' entry add
[ $? -eq 0 ] || exit $?


msg "Can edit alias and create new aliases (if domain Postmaster)"
for U in ${USERS}; do
    for A in ${ALIASES}; do
        DA="$(echo "${A}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        search -s base -b "${DA},${SUFFIX}" "fripostPostmaster=${U},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${A}" entry/add ${ATTRS}
    done
done | isOK 'ALLOWED$' entry add
[ $? -eq 0 ] || exit $?


# Needed to create new entries. ("+z" is required to delete, btw.)
msg "Have >=a access to \"entry\" (if CanAddAlias, exact)"
for U in ${USERS}; do
    for A in ${ALIASES}; do
        DA="$(echo "${A}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        search -s base -b "${DA},${SUFFIX}" "fripostCanAddAlias=${U},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${A}" entry/add
    done
done | isOK 'ALLOWED$' entry add
[ $? -eq 0 ] || exit $?


# Needed to create new entries. ("+z" is required to delete, btw.)
msg "Have >=a access to \"entry\" (if CanAddAlias, wildcard)"
for U in ${USERS}; do
    DU="$(echo "${U}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
    for A in ${ALIASES}; do
        DA="$(echo "${A}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        search -s base -b "${DA},${SUFFIX}" "fripostCanAddAlias=${DU},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${A}" entry/add
    done
done | isOK 'ALLOWED$' entry add
[ $? -eq 0 ] || exit $?


msg "Do not have >=a access to \"entry\" (unless canAddAlias)"
for U in ${USERS}; do
    DU="$(echo "${U}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
    for A in ${ALIASES}; do
        DA="$(echo "${A}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        search -s base -b "${DA},${SUFFIX}" "(|(fripostCanAddAlias=${U},${SUFFIX})
                                               (fripostCanAddAlias=${DU},${SUFFIX})
                                               (fripostOwner=${U},${SUFFIX})
                                               (fripostPostmaster=${U},${SUFFIX}))" | grep -q '^dn: ' || \
        checkACL "${U}" "${A}" entry/add
    done
done | isOK 'DENIED$' entry add
[ $? -eq 0 ] || exit $?


msg "Cannot manage ownership (unless domain owner/domain postmaster)"
for U in ${USERS}; do
    for A in ${ALIASES}; do
        DA="$(echo "${A}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        search -s base -b "${DA},${SUFFIX}" "(|(fripostOwner=${U},${SUFFIX})
                                               (fripostPostmaster=${U},${SUFFIX}))" | grep -q '^dn: ' || \
        checkACL "${U}" "${A}" ${ATTRSO}
    done
done | isOK 'DENIED$' fripostOwner add
[ $? -eq 0 ] || exit $?


msg "Have no access to aliases entries (unless alias owner/domain owner/domain postmaster)"
for U in ${USERS}; do
    for A in ${ALIASES}; do
        DA="$(echo "${A}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        search -s base -b "${A},${SUFFIX}" "fripostOwner=${U},${SUFFIX}" | grep -q '^dn: ' || \
        search -s base -b "${DA},${SUFFIX}" "(|(fripostOwner=${U},${SUFFIX})
                                               (fripostPostmaster=${U},${SUFFIX}))" | grep -q '^dn: ' || \
        checkACL "${U}" "${A}" ${ATTRS} ${ATTRSO}
    done
done | isOK 'DENIED$' entry delete
[ $? -eq 0 ] || exit $?



###########################################################################


echo
echo "Authenticated users, access to list entries"

# * entry:
#       =s for all
#       +a if canAddList, domain owner or domain postmaster
#       +rd if list owner, domain owner or domain postmaster
# * children:
#       =0 for all
# * fvl:
#       =wrscd if list owner, domain owner or domain postmaster
# * fripostListManager:
#       =rscd if list owner, domain owner or domain postmaster
# * fripostIsStatusActive:
#       =wrscd if list owner, domain owner or domain postmaster
# * fripostIsStatusPending:
#       =rscd if list owner, domain owner or domain postmaster
# * fripostOwner:
#       =d for all
#       +rsc if list owner, domain owner or domain postmaster
#       +w if domain owner or domain postmaster
# * description:
#       =wrscd if list owner, domain owner or domain postmaster

usersL () {
    for U in ${USERS}; do
        for L in ${LISTS}; do
            checkACL "${U}" "${L}" "$@"
        done
    done
}


msg "Have >=s access on \"entry\" and \"fripostOwner\""
usersL fripostOwner/search entry/search | isOK 'ALLOWED$' entry
[ $? -eq 0 ] || exit $?


msg "Have =0 access the \"children\" and operational attributes"
usersL children ${OPERATTRS} | isOK '=0$' children
[ $? -eq 0 ] || exit $?


msg "Cannot change transport"
for U in ${USERS}; do
    for L in ${LISTS}; do
        checkACL "${U}" "${L}" fripostListManager/write
    done
done | isOK 'DENIED$' fripostListManager
[ $? -eq 0 ] || exit $?


msg "Cannot edit pending status; Cannot delete entry"
for U in ${USERS}; do
    for L in ${LISTS}; do
        checkACL "${U}" "${L}" fripostIsStatusPending/write entry/delete
    done
done | isOK 'DENIED$' fripostIsStatusPending
[ $? -eq 0 ] || exit $?


ATTRS="entry/read entry/disclose
       fvl/write fvl/read fvl/search fvl/compare fvl/disclose
       fripostListManager/read fripostListManager/search fripostListManager/compare fripostListManager/disclose
       fripostIsStatusActive/write fripostIsStatusActive/read fripostIsStatusActive/search fripostIsStatusActive/compare fripostIsStatusActive/disclose
       fripostIsStatusPending/read fripostIsStatusPending/search fripostIsStatusPending/compare fripostIsStatusPending/disclose
       fripostOwner/read fripostOwner/compare fripostOwner/disclose
       description/add description/delete description/read description/compare description/disclose"
ATTRS2="fripostOwner/add fripostOwner/delete"

msg "Can edit list (if list Owner)"
for U in ${USERS}; do
    for L in ${LISTS}; do
        search -s base -b "${L},${SUFFIX}" "fripostOwner=${U},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${L}" ${ATTRS}
    done
done | isOK 'ALLOWED$' entry read
[ $? -eq 0 ] || exit $?


msg "Can edit/create list (if domain Owner)"
[ $? -eq 0 ] || exit $?
for U in ${USERS}; do
    for L in ${LISTS}; do
        DL="$(echo "${L}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        search -s base -b "${DL},${SUFFIX}" "fripostOwner=${U},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${L}" ${ATTRS} ${ATTRS2} entry/add
    done
done | isOK 'ALLOWED$' entry add
[ $? -eq 0 ] || exit $?


msg "Can edit/create list (if domain Postmaster)"
[ $? -eq 0 ] || exit $?
for U in ${USERS}; do
    for L in ${LISTS}; do
        DL="$(echo "${L}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        search -s base -b "${DL},${SUFFIX}" "fripostPostmaster=${U},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${L}" ${ATTRS} ${ATTRS2} entry/add
    done
done | isOK 'ALLOWED$' entry add
[ $? -eq 0 ] || exit $?


# Needed to create new entries. ("+z" is required to delete, btw.)
msg "Have >=a access to \"entry\" (if CanAddList, exact)"
for U in ${USERS}; do
    for L in ${LISTS}; do
        DL="$(echo "${L}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        search -s base -b "${DL},${SUFFIX}" "fripostCanAddList=${U},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${L}" entry/add
    done
done | isOK 'ALLOWED$' entry
[ $? -eq 0 ] || exit $?


# Needed to create new entries. ("+z" is required to delete, btw.)
msg "Have >=a access to \"entry\" (if CanAddList, wildcard)"
for U in ${USERS}; do
    DU="$(echo "${U}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
    for L in ${LISTS}; do
        DL="$(echo "${L}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        search -s base -b "${DL},${SUFFIX}" "fripostCanAddList=${DU},${SUFFIX}" | grep -q '^dn: ' && \
        checkACL "${U}" "${L}" entry/add
    done
done | isOK 'ALLOWED$' entry
[ $? -eq 0 ] || exit $?


msg "Do not have >=a access to \"entry\" (unless canAddList)"
for U in ${USERS}; do
    DU="$(echo "${U}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
    for L in ${LISTS}; do
        DL="$(echo "${L}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        search -s base -b "${DL},${SUFFIX}" "(|(fripostCanAddList=${U},${SUFFIX})
                                                (fripostCanAddList=${DU},${SUFFIX})
                                                (fripostOwner=${U},${SUFFIX})
                                                (fripostPostmaster=${U},${SUFFIX}))" | grep -q '^dn: ' || \
        checkACL "${U}" "${L}" entry/add
    done
done | isOK 'DENIED$' entry
[ $? -eq 0 ] || exit $?


msg "Cannot manage ownership (unless domain owner/domain postmaster)"
for U in ${USERS}; do
    for A in ${ALIASES}; do
        DA="$(echo "${A}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        search -s base -b "${DA},${SUFFIX}" "(|(fripostOwner=${U},${SUFFIX})
                                               (fripostPostmaster=${U},${SUFFIX}))" | grep -q '^dn: ' || \
        checkACL "${U}" "${A}" ${ATTRS2}
    done
done | isOK 'DENIED$' fripostOwner add
[ $? -eq 0 ] || exit $?


msg "Have no access to list entries (unless list owner/domain owner/domain postmaster)"
for U in ${USERS}; do
    for L in ${LISTS}; do
        DL="$(echo "${L}" | sed -re 's/.*,(fvd=[^,]+)$/\1/')"
        search -s base -b "${L},${SUFFIX}" "fripostOwner=${U},${SUFFIX}" | grep -q '^dn: ' || \
        search -s base -b "${DL},${SUFFIX}" "(|(fripostOwner=${U},${SUFFIX})
                                                (fripostPostmaster=${U},${SUFFIX}))" | grep -q '^dn: ' || \
        checkACL "${U}" "${L}" ${ATTRS} entry/delete
    done
done | isOK 'DENIED$' entry delete
[ $? -eq 0 ] || exit $?

msg "Have =0 access to the list command entries"
for U in ${USERS}; do
    for LC in ${LISTSC}; do
        checkACL "${U}" "${LC}" 
    done
done | grep -Ev '^(objectClass|creatorsName)=' | isOK '=0$' entry
[ $? -eq 0 ] || exit $?


###########################################################################


SUFFIX="${SUFFIXS}"

echo
echo "Service SMTP"

msg "Can read and search the domain attributes it needs"
for D in ${DOMAINS}; do
    checkACL "cn=SMTP" "${D}" entry objectClass fvd fripostIsStatusActive fripostOptionalMaildrop
done | isOK '=rsd$' entry

msg "Have =0 access on other domain attributes"
for D in ${DOMAINS}; do
    checkACL "cn=SMTP" "${D}" children ${OPERATTRS} fripostCanAddAlias fripostCanAddList fripostOwner fripostPostmaster description
done | isOK 'none(=0)$' children

msg "Can read and search the user attributes it needs"
for U in ${USERS}; do
    checkACL "cn=SMTP" "${U}" entry objectClass fvu fripostIsStatusActive fripostOptionalMaildrop
done | isOK '=rsd$' entry

msg "Have =0 access on other user attributes"
for U in ${USERS}; do
    checkACL "cn=SMTP" "${U}" children ${OPERATTRS} userPassword fripostUser description
done | isOK 'none(=0)$' children

msg "Can read and search the alias attributes it needs"
for A in ${ALIASES}; do
    checkACL "cn=SMTP" "${A}" entry objectClass fva fripostMaildrop fripostIsStatusActive
done | isOK '=rsd$' entry

msg "Have =0 access on other alias attributes"
for A in ${ALIASES}; do
    checkACL "cn=SMTP" "${A}" children ${OPERATTRS} fripostOwner description
done | isOK 'none(=0)$' children

msg "Can read and search the list attributes it needs"
for L in ${LISTS}; do
    checkACL "cn=SMTP" "${L}" entry objectClass fvl fripostIsStatusActive fripostLocalAlias fripostIsStatusPending
done | isOK '=rsd$' entry

msg "Have =0 access on other list attributes"
for L in ${LISTS}; do
    checkACL "cn=SMTP" "${L}" children ${OPERATTRS} fripostListManager fripostOwner description
done | isOK 'none(=0)$' children

msg "Can read and search the list command attributes it needs"
for LC in ${LISTSC}; do
    checkACL "cn=SMTP" "${LC}" entry objectClass fvlc fripostIsStatusActive fripostLocalAlias
done | isOK '=rsd$' entry

msg "Have =0 access on other list command attributes"
for LC in ${LISTSC}; do
    checkACL "cn=SMTP" "${LC}" children ${OPERATTRS} 
done | isOK 'none(=0)$' children


###########################################################################

echo
echo "Service ListCreator"

msg "Have =0 access on domain attributes"
for D in ${DOMAINS}; do
    checkACL "cn=ListCreator" "${D}" entry children ${OPERATTRS} fvd fripostIsStatusActive fripostOptionalMaildrop fripostCanAddAlias fripostCanAddList fripostOwner fripostPostmaster description
done | isOK '=0$' entry

msg "Have =0 access on user attributes"
for U in ${USERS}; do
    checkACL "cn=ListCreator" "${U}" entry children ${OPERATTRS} fvu userPassword fripostIsStatusActive fripostUserQuota fripostOptionalMaildrop description
done | isOK '=0$' entry

msg "Have =0 access on alias attributes"
for A in ${ALIASES}; do
    checkACL "cn=ListCreator" "${A}" entry children ${OPERATTRS} fva fripostMaildrop fripostIsStatusActive fripostOwner description
done | isOK '=0$' entry

msg "Have =zrd access on lists' pending status"
for L in ${LISTS}; do
    checkACL "cn=ListCreator" "${L}" fripostIsStatusPending
done | isOK '=zrd$'

msg "Have =rsd access on lists' entry attribute"
for L in ${LISTS}; do
    checkACL "cn=ListCreator" "${L}" entry
done | isOK '=rsd$'

msg "Have =a access on lists' children attribute"
for L in ${LISTS}; do
    checkACL "cn=ListCreator" "${L}" children
done | isOK '=a$'

msg "Have =0 access on other list attributes"
for L in ${LISTS}; do
    checkACL "cn=ListCreator" "${L}" ${OPERATTRS} fvl fripostListManager fripostIsStatusActive fripostLocalAlias fripostOwner description
done | isOK '=0$' fvl

msg "Have =a access on list commands' entry attribute"
for LC in ${LISTSC}; do
    checkACL "cn=ListCreator" "${LC}" entry
done | isOK '=a$'

msg "Have =0 access on other list command attributes"
for LC in ${LISTSC}; do
    checkACL "cn=ListCreator" "${LC}" children ${OPERATTRS} fvlc fripostLocalAlias
done | isOK '=0$' children


###########################################################################

echo
echo "Service AdminWebPanel"

msg "Have =0 access on domain attributes"
for D in ${DOMAINS}; do
    checkACL "cn=AdminWebPanel" "${D}" entry children ${OPERATTRS} fvd fripostIsStatusActive fripostOptionalMaildrop fripostCanAddAlias fripostCanAddList fripostOwner fripostPostmaster description
done | isOK 'none(=0)$' entry

msg "Have =0 access on user attributes"
for U in ${USERS}; do
    checkACL "cn=AdminWebPanel" "${U}" entry children ${OPERATTRS} fvu userPassword fripostIsStatusActive fripostUserQuota fripostOptionalMaildrop description
done | isOK 'none(=0)$' entry

msg "Have =0 access on alias attributes"
for A in ${ALIASES}; do
    checkACL "cn=AdminWebPanel" "${A}" entry children ${OPERATTRS} fva fripostMaildrop fripostIsStatusActive fripostOwner description
done | isOK 'none(=0)$' entry

msg "Have =0 access on list attributes"
for L in ${LISTS}; do
    checkACL "cn=AdminWebPanel" "${L}" entry children ${OPERATTRS} fvl fripostListManager fripostIsStatusActive fripostLocalAlias fripostOwner description fripostIsStatusPending
done | isOK 'none(=0)$' entry

msg "Have =0 access on other list command attributes"
for LC in ${LISTSC}; do
    checkACL "cn=AdminWebPanel" "${LC}" entry children ${OPERATTRS} fvlc fripostLocalAlias
done | isOK 'none(=0)$' entry

if test -x /usr/bin/sudo && sudo -u fpanel klist >/dev/null; then
    msg "Can SASL authenticate (GSSAPI)"
    DN=$(echo "dn:cn=AdminWebPanel,${SUFFIXS}" | tr [A-Z] [a-z])
    DN2=$(sudo -u fpanel ldapwhoami -Q | tr [A-Z] [a-z])
    if [ "${DN}" = "${DN2}" ]; then echo ok; else echo fail; fi | isOK '^ok$'

    msg "Can proxy authorize"
    for U in ${USERS}; do
        DN=$(echo "dn:${U},${SUFFIXV}" | tr [A-Z] [a-z])
        DN2=$(sudo -u fpanel ldapwhoami -Q -X "${DN}" | tr [A-Z] [a-z])
        if [ "${DN}" = "${DN2}" ]; then echo ok; else echo fail; fi
    done | isOK '^ok$'
else
    echo "WARN: No valid ticket found. Didn't check SSAL authentication"
fi

rm "${RES}"