Imported Upstream version 3.3.0
[platform/upstream/libarchive.git] / libarchive / test / test_acl_posix1e.c
index 9984d44..01167da 100644 (file)
@@ -27,21 +27,14 @@ __FBSDID("$FreeBSD: src/lib/libarchive/test/test_acl_basic.c,v 1.6 2008/10/19 00
 
 /*
  * Exercise the system-independent portion of the ACL support.
- * Check that archive_entry objects can save and restore POSIX.1e-style ACL data.
+ * Check that archive_entry objects can save and restore POSIX.1e-style
+ * ACL data.
  *
  * This should work on all systems, regardless of whether local
  * filesystems support ACLs or not.
  */
 
-struct acl_t {
-       int type;  /* Type of ACL: "access" or "default" */
-       int permset; /* Permissions for this class of users. */
-       int tag; /* Owner, User, Owning group, group, other, etc. */
-       int qual; /* GID or UID of user/group, depending on tag. */
-       const char *name; /* Name of user/group, depending on tag. */
-};
-
-static struct acl_t acls0[] = {
+static struct archive_test_acl_t acls0[] = {
        { ARCHIVE_ENTRY_ACL_TYPE_ACCESS, ARCHIVE_ENTRY_ACL_EXECUTE,
          ARCHIVE_ENTRY_ACL_USER_OBJ, 0, "" },
        { ARCHIVE_ENTRY_ACL_TYPE_ACCESS, ARCHIVE_ENTRY_ACL_READ,
@@ -50,7 +43,7 @@ static struct acl_t acls0[] = {
          ARCHIVE_ENTRY_ACL_OTHER, 0, "" },
 };
 
-static struct acl_t acls1[] = {
+static struct archive_test_acl_t acls1[] = {
        { ARCHIVE_ENTRY_ACL_TYPE_ACCESS, ARCHIVE_ENTRY_ACL_EXECUTE,
          ARCHIVE_ENTRY_ACL_USER_OBJ, -1, "" },
        { ARCHIVE_ENTRY_ACL_TYPE_ACCESS, ARCHIVE_ENTRY_ACL_READ,
@@ -61,7 +54,7 @@ static struct acl_t acls1[] = {
          ARCHIVE_ENTRY_ACL_OTHER, -1, "" },
 };
 
-static struct acl_t acls2[] = {
+static struct archive_test_acl_t acls2[] = {
        { ARCHIVE_ENTRY_ACL_TYPE_ACCESS, ARCHIVE_ENTRY_ACL_EXECUTE | ARCHIVE_ENTRY_ACL_READ,
          ARCHIVE_ENTRY_ACL_USER_OBJ, -1, "" },
        { ARCHIVE_ENTRY_ACL_TYPE_ACCESS, ARCHIVE_ENTRY_ACL_READ,
@@ -80,7 +73,7 @@ static struct acl_t acls2[] = {
  * NFS4 entry types; attempts to set these on top of POSIX.1e
  * attributes should fail.
  */
-static struct acl_t acls_nfs4[] = {
+static struct archive_test_acl_t acls_nfs4[] = {
        /* NFS4 types */
        { ARCHIVE_ENTRY_ACL_TYPE_ALLOW, ARCHIVE_ENTRY_ACL_READ,
          ARCHIVE_ENTRY_ACL_USER, 78, "" },
@@ -104,106 +97,6 @@ static struct acl_t acls_nfs4[] = {
          ARCHIVE_ENTRY_ACL_USER_OBJ, -1, "" },
 };
 
-static void
-set_acls(struct archive_entry *ae, struct acl_t *acls, int n)
-{
-       int i;
-
-       archive_entry_acl_clear(ae);
-       for (i = 0; i < n; i++) {
-               archive_entry_acl_add_entry(ae,
-                   acls[i].type, acls[i].permset, acls[i].tag, acls[i].qual,
-                   acls[i].name);
-       }
-}
-
-static int
-acl_match(struct acl_t *acl, int type, int permset, int tag, int qual, const char *name)
-{
-       if (type != acl->type)
-               return (0);
-       if (permset != acl->permset)
-               return (0);
-       if (tag != acl->tag)
-               return (0);
-       if (tag == ARCHIVE_ENTRY_ACL_USER_OBJ)
-               return (1);
-       if (tag == ARCHIVE_ENTRY_ACL_GROUP_OBJ)
-               return (1);
-       if (tag == ARCHIVE_ENTRY_ACL_OTHER)
-               return (1);
-       if (qual != acl->qual)
-               return (0);
-       if (name == NULL) {
-               if (acl->name == NULL || acl->name[0] == '\0')
-                       return (1);
-               return (0);
-       }
-       if (acl->name == NULL) {
-               if (name[0] == '\0')
-                       return (1);
-               return (0);
-       }
-       return (0 == strcmp(name, acl->name));
-}
-
-static void
-compare_acls(struct archive_entry *ae, struct acl_t *acls, int n, int mode)
-{
-       int *marker = malloc(sizeof(marker[0]) * n);
-       int i;
-       int r;
-       int type, permset, tag, qual;
-       int matched;
-       const char *name;
-
-       for (i = 0; i < n; i++)
-               marker[i] = i;
-
-       while (0 == (r = archive_entry_acl_next(ae,
-                        ARCHIVE_ENTRY_ACL_TYPE_ACCESS,
-                        &type, &permset, &tag, &qual, &name))) {
-               for (i = 0, matched = 0; i < n && !matched; i++) {
-                       if (acl_match(&acls[marker[i]], type, permset,
-                               tag, qual, name)) {
-                               /* We found a match; remove it. */
-                               marker[i] = marker[n - 1];
-                               n--;
-                               matched = 1;
-                       }
-               }
-               if (tag == ARCHIVE_ENTRY_ACL_USER_OBJ) {
-                       if (!matched) printf("No match for user_obj perm\n");
-                       failure("USER_OBJ permset (%02o) != user mode (%02o)",
-                           permset, 07 & (mode >> 6));
-                       assert((permset << 6) == (mode & 0700));
-               } else if (tag == ARCHIVE_ENTRY_ACL_GROUP_OBJ) {
-                       if (!matched) printf("No match for group_obj perm\n");
-                       failure("GROUP_OBJ permset %02o != group mode %02o",
-                           permset, 07 & (mode >> 3));
-                       assert((permset << 3) == (mode & 0070));
-               } else if (tag == ARCHIVE_ENTRY_ACL_OTHER) {
-                       if (!matched) printf("No match for other perm\n");
-                       failure("OTHER permset (%02o) != other mode (%02o)",
-                           permset, mode & 07);
-                       assert((permset << 0) == (mode & 0007));
-               } else {
-                       failure("Could not find match for ACL "
-                           "(type=%d,permset=%d,tag=%d,qual=%d,name=``%s'')",
-                           type, permset, tag, qual, name);
-                       assert(matched == 1);
-               }
-       }
-       assertEqualInt(ARCHIVE_EOF, r);
-       assert((mode_t)(mode & 0777) == (archive_entry_mode(ae) & 0777));
-       failure("Could not find match for ACL "
-           "(type=%d,permset=%d,tag=%d,qual=%d,name=``%s'')",
-           acls[marker[0]].type, acls[marker[0]].permset,
-           acls[marker[0]].tag, acls[marker[0]].qual, acls[marker[0]].name);
-       assert(n == 0); /* Number of ACLs not matched should == 0 */
-       free(marker);
-}
-
 DEFINE_TEST(test_acl_posix1e)
 {
        struct archive_entry *ae;
@@ -223,7 +116,7 @@ DEFINE_TEST(test_acl_posix1e)
         * triggering unnecessary extensions.  It's better to identify
         * trivial ACLs at the point they are being read from disk.
         */
-       set_acls(ae, acls0, sizeof(acls0)/sizeof(acls0[0]));
+       archive_test_set_acls(ae, acls0, sizeof(acls0)/sizeof(acls0[0]));
        failure("Basic ACLs shouldn't be stored as extended ACLs");
        assert(0 == archive_entry_acl_reset(ae, ARCHIVE_ENTRY_ACL_TYPE_ACCESS));
        failure("Basic ACLs should set mode to 0142, not %04o",
@@ -232,19 +125,28 @@ DEFINE_TEST(test_acl_posix1e)
 
 
        /* With any extended ACL entry, we should read back a full set. */
-       set_acls(ae, acls1, sizeof(acls1)/sizeof(acls1[0]));
+       archive_test_set_acls(ae, acls1, sizeof(acls1)/sizeof(acls1[0]));
        failure("One extended ACL should flag all ACLs to be returned.");
+
+       /* Check that entry contains only POSIX.1e types */
+       assert((archive_entry_acl_types(ae) &
+           ARCHIVE_ENTRY_ACL_TYPE_NFS4) == 0);
+       assert((archive_entry_acl_types(ae) &
+           ARCHIVE_ENTRY_ACL_TYPE_POSIX1E) != 0);
+
        assert(4 == archive_entry_acl_reset(ae, ARCHIVE_ENTRY_ACL_TYPE_ACCESS));
-       compare_acls(ae, acls1, sizeof(acls1)/sizeof(acls1[0]), 0142);
+       archive_test_compare_acls(ae, acls1, sizeof(acls1)/sizeof(acls1[0]),
+           ARCHIVE_ENTRY_ACL_TYPE_ACCESS, 0142);
        failure("Basic ACLs should set mode to 0142, not %04o",
            archive_entry_mode(ae)&0777);
        assert((archive_entry_mode(ae) & 0777) == 0142);
 
 
        /* A more extensive set of ACLs. */
-       set_acls(ae, acls2, sizeof(acls2)/sizeof(acls2[0]));
+       archive_test_set_acls(ae, acls2, sizeof(acls2)/sizeof(acls2[0]));
        assertEqualInt(6, archive_entry_acl_reset(ae, ARCHIVE_ENTRY_ACL_TYPE_ACCESS));
-       compare_acls(ae, acls2, sizeof(acls2)/sizeof(acls2[0]), 0543);
+       archive_test_compare_acls(ae, acls2, sizeof(acls2)/sizeof(acls2[0]),
+           ARCHIVE_ENTRY_ACL_TYPE_ACCESS, 0543);
        failure("Basic ACLs should set mode to 0543, not %04o",
            archive_entry_mode(ae)&0777);
        assert((archive_entry_mode(ae) & 0777) == 0543);
@@ -253,7 +155,7 @@ DEFINE_TEST(test_acl_posix1e)
         * Check that clearing ACLs gets rid of them all by repeating
         * the first test.
         */
-       set_acls(ae, acls0, sizeof(acls0)/sizeof(acls0[0]));
+       archive_test_set_acls(ae, acls0, sizeof(acls0)/sizeof(acls0[0]));
        failure("Basic ACLs shouldn't be stored as extended ACLs");
        assert(0 == archive_entry_acl_reset(ae, ARCHIVE_ENTRY_ACL_TYPE_ACCESS));
        failure("Basic ACLs should set mode to 0142, not %04o",
@@ -264,9 +166,9 @@ DEFINE_TEST(test_acl_posix1e)
         * Different types of malformed ACL entries that should
         * fail when added to existing POSIX.1e ACLs.
         */
-       set_acls(ae, acls2, sizeof(acls2)/sizeof(acls2[0]));
+       archive_test_set_acls(ae, acls2, sizeof(acls2)/sizeof(acls2[0]));
        for (i = 0; i < (int)(sizeof(acls_nfs4)/sizeof(acls_nfs4[0])); ++i) {
-               struct acl_t *p = &acls_nfs4[i];
+               struct archive_test_acl_t *p = &acls_nfs4[i];
                failure("Malformed ACL test #%d", i);
                assertEqualInt(ARCHIVE_FAILED,
                    archive_entry_acl_add_entry(ae,