~akopytov/percona-xtrabackup/bug1166888-2.1

« back to all changes in this revision

Viewing changes to src/libarchive/libarchive/test/test_acl_freebsd.c

  • Committer: Alexey Kopytov
  • Date: 2012-02-10 20:05:56 UTC
  • mto: (391.1.5 staging)
  • mto: This revision was merged to the branch mainline in revision 390.
  • Revision ID: akopytov@gmail.com-20120210200556-6kx41z8wwrqfucro
Rebase of the parallel compression patch on new trunk + post-review
fixes.

Implementation of parallel compression and streaming for XtraBackup.

This revision implements the following changes:

* InnoDB files are now streamed by the xtrabackup binary rather than
innobackupex. As a result, integrity is now verified by xtrabackup and
thus tar4ibd is no longer needed, so it was removed.

* xtrabackup binary now accepts the new '--stream' option which has
exactly the same semantics as the '--stream' option in
innobackupex: it tells xtrabackup to stream all files to the standard
output in the specified format rather than storing them locally.

* The xtrabackup binary can now do parallel compression using the
quicklz library. Two new options were added to xtrabackup to support
this feature:

- '--compress' tells xtrabackup to compress all output data, including
the transaction log file and meta data files, using the specified
compression algorithm. The only currently supported algorithm is
'quicklz'. The resulting files have the qpress archive format,
i.e. every *.qp file produced by xtrabackup is essentially a one-file
qpress archive and can be extracted and uncompressed by the qpress
file archiver (http://www.quicklz.com/).

- '--compress-threads' specifies the number of worker threads used by
xtrabackup for parallel data compression. This option defaults to 1.

Parallel compression ('--compress-threads') can be used together with
parallel file copying ('--parallel'). For example, '--parallel=4
--compress --compress-threads=2' will create 4 IO threads that will
read the data and pipe it to 2 compression threads.

* To support simultaneous compression and streaming, a new custom
streaming format called 'xbstream' was introduced to XtraBackup in
addition to the 'tar' format. That was required to overcome some
limitations of traditional archive formats such as 'tar', 'cpio' and
others that do not allow streaming dynamically generated files, for
example dynamically compressed files.  Other advantages of xbstream over
traditional streaming/archive formats include ability to stream multiple
files concurrently (so it is possible to use streaming in the xbstream
format together with the --parallel option) and more compact data
storage.

* To allow streaming and extracting files to/from the xbstream format
produced by xtrabackup, a new utility aptly called 'xbstream' was
added to the XtraBackup distribution. This utility has a tar-like
interface:

- with the '-x' option it extracts files from the stream read from its
standard input to the current directory unless specified otherwise
with the '-C' option.

- with the '-c' option it streams files specified on the command line
to its standard output.

The utility also tries to minimize its impact on the OS page cache by
using the appropriate posix_fadvise() calls when available.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-
 
2
 * Copyright (c) 2003-2008 Tim Kientzle
 
3
 * All rights reserved.
 
4
 *
 
5
 * Redistribution and use in source and binary forms, with or without
 
6
 * modification, are permitted provided that the following conditions
 
7
 * are met:
 
8
 * 1. Redistributions of source code must retain the above copyright
 
9
 *    notice, this list of conditions and the following disclaimer.
 
10
 * 2. Redistributions in binary form must reproduce the above copyright
 
11
 *    notice, this list of conditions and the following disclaimer in the
 
12
 *    documentation and/or other materials provided with the distribution.
 
13
 *
 
14
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
 
15
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
16
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 
17
 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
 
18
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 
19
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
20
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
21
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
22
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 
23
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
24
 */
 
25
#include "test.h"
 
26
__FBSDID("$FreeBSD: head/lib/libarchive/test/test_acl_freebsd.c 189427 2009-03-06 04:21:23Z kientzle $");
 
27
 
 
28
#if defined(__FreeBSD__) && __FreeBSD__ > 4
 
29
#include <sys/acl.h>
 
30
 
 
31
struct myacl_t {
 
32
        int type;  /* Type of ACL: "access" or "default" */
 
33
        int permset; /* Permissions for this class of users. */
 
34
        int tag; /* Owner, User, Owning group, group, other, etc. */
 
35
        int qual; /* GID or UID of user/group, depending on tag. */
 
36
        const char *name; /* Name of user/group, depending on tag. */
 
37
};
 
38
 
 
39
static struct myacl_t acls2[] = {
 
40
        { ARCHIVE_ENTRY_ACL_TYPE_ACCESS, ARCHIVE_ENTRY_ACL_EXECUTE | ARCHIVE_ENTRY_ACL_READ,
 
41
          ARCHIVE_ENTRY_ACL_USER_OBJ, -1, "" },
 
42
        { ARCHIVE_ENTRY_ACL_TYPE_ACCESS, ARCHIVE_ENTRY_ACL_READ,
 
43
          ARCHIVE_ENTRY_ACL_USER, 77, "user77" },
 
44
        { ARCHIVE_ENTRY_ACL_TYPE_ACCESS, 0,
 
45
          ARCHIVE_ENTRY_ACL_USER, 78, "user78" },
 
46
        { ARCHIVE_ENTRY_ACL_TYPE_ACCESS, ARCHIVE_ENTRY_ACL_READ,
 
47
          ARCHIVE_ENTRY_ACL_GROUP_OBJ, -1, "" },
 
48
        { ARCHIVE_ENTRY_ACL_TYPE_ACCESS, 0007,
 
49
          ARCHIVE_ENTRY_ACL_GROUP, 78, "group78" },
 
50
        { ARCHIVE_ENTRY_ACL_TYPE_ACCESS,
 
51
          ARCHIVE_ENTRY_ACL_WRITE | ARCHIVE_ENTRY_ACL_EXECUTE,
 
52
          ARCHIVE_ENTRY_ACL_OTHER, -1, "" },
 
53
        { ARCHIVE_ENTRY_ACL_TYPE_ACCESS,
 
54
          ARCHIVE_ENTRY_ACL_WRITE | ARCHIVE_ENTRY_ACL_READ | ARCHIVE_ENTRY_ACL_EXECUTE,
 
55
          ARCHIVE_ENTRY_ACL_MASK, -1, "" },
 
56
        { 0, 0, 0, 0, NULL }
 
57
};
 
58
 
 
59
static void
 
60
set_acls(struct archive_entry *ae, struct myacl_t *acls)
 
61
{
 
62
        int i;
 
63
 
 
64
        archive_entry_acl_clear(ae);
 
65
        for (i = 0; acls[i].name != NULL; i++) {
 
66
                archive_entry_acl_add_entry(ae,
 
67
                    acls[i].type, acls[i].permset, acls[i].tag, acls[i].qual,
 
68
                    acls[i].name);
 
69
        }
 
70
}
 
71
 
 
72
static int
 
73
acl_match(acl_entry_t aclent, struct myacl_t *myacl)
 
74
{
 
75
        gid_t g, *gp;
 
76
        uid_t u, *up;
 
77
        acl_tag_t tag_type;
 
78
        acl_permset_t opaque_ps;
 
79
        int permset = 0;
 
80
 
 
81
        acl_get_tag_type(aclent, &tag_type);
 
82
 
 
83
        /* translate the silly opaque permset to a bitmap */
 
84
        acl_get_permset(aclent, &opaque_ps);
 
85
        if (acl_get_perm_np(opaque_ps, ACL_EXECUTE))
 
86
                permset |= ARCHIVE_ENTRY_ACL_EXECUTE;
 
87
        if (acl_get_perm_np(opaque_ps, ACL_WRITE))
 
88
                permset |= ARCHIVE_ENTRY_ACL_WRITE;
 
89
        if (acl_get_perm_np(opaque_ps, ACL_READ))
 
90
                permset |= ARCHIVE_ENTRY_ACL_READ;
 
91
 
 
92
        if (permset != myacl->permset)
 
93
                return (0);
 
94
 
 
95
        switch (tag_type) {
 
96
        case ACL_USER_OBJ:
 
97
                if (myacl->tag != ARCHIVE_ENTRY_ACL_USER_OBJ) return (0);
 
98
                break;
 
99
        case ACL_USER:
 
100
                if (myacl->tag != ARCHIVE_ENTRY_ACL_USER)
 
101
                        return (0);
 
102
                up = acl_get_qualifier(aclent);
 
103
                u = *up;
 
104
                acl_free(up);
 
105
                if ((uid_t)myacl->qual != u)
 
106
                        return (0);
 
107
                break;
 
108
        case ACL_GROUP_OBJ:
 
109
                if (myacl->tag != ARCHIVE_ENTRY_ACL_GROUP_OBJ) return (0);
 
110
                break;
 
111
        case ACL_GROUP:
 
112
                if (myacl->tag != ARCHIVE_ENTRY_ACL_GROUP)
 
113
                        return (0);
 
114
                gp = acl_get_qualifier(aclent);
 
115
                g = *gp;
 
116
                acl_free(gp);
 
117
                if ((gid_t)myacl->qual != g)
 
118
                        return (0);
 
119
                break;
 
120
        case ACL_MASK:
 
121
                if (myacl->tag != ARCHIVE_ENTRY_ACL_MASK) return (0);
 
122
                break;
 
123
        case ACL_OTHER:
 
124
                if (myacl->tag != ARCHIVE_ENTRY_ACL_OTHER) return (0);
 
125
                break;
 
126
        }
 
127
        return (1);
 
128
}
 
129
 
 
130
static void
 
131
compare_acls(acl_t acl, struct myacl_t *myacls)
 
132
{
 
133
        int *marker;
 
134
        int entry_id = ACL_FIRST_ENTRY;
 
135
        int matched;
 
136
        int i, n;
 
137
        acl_entry_t acl_entry;
 
138
 
 
139
        /* Count ACL entries in myacls array and allocate an indirect array. */
 
140
        for (n = 0; myacls[n].name != NULL; ++n)
 
141
                continue;
 
142
        marker = malloc(sizeof(marker[0]) * n);
 
143
        for (i = 0; i < n; i++)
 
144
                marker[i] = i;
 
145
 
 
146
        /*
 
147
         * Iterate over acls in system acl object, try to match each
 
148
         * one with an item in the myacls array.
 
149
         */
 
150
        while (1 == acl_get_entry(acl, entry_id, &acl_entry)) {
 
151
                /* After the first time... */
 
152
                entry_id = ACL_NEXT_ENTRY;
 
153
 
 
154
                /* Search for a matching entry (tag and qualifier) */
 
155
                for (i = 0, matched = 0; i < n && !matched; i++) {
 
156
                        if (acl_match(acl_entry, &myacls[marker[i]])) {
 
157
                                /* We found a match; remove it. */
 
158
                                marker[i] = marker[n - 1];
 
159
                                n--;
 
160
                                matched = 1;
 
161
                        }
 
162
                }
 
163
 
 
164
                /* TODO: Print out more details in this case. */
 
165
                failure("ACL entry on file that shouldn't be there");
 
166
                assert(matched == 1);
 
167
        }
 
168
 
 
169
        /* Dump entries in the myacls array that weren't in the system acl. */
 
170
        for (i = 0; i < n; ++i) {
 
171
                failure(" ACL entry missing from file: "
 
172
                    "type=%d,permset=%d,tag=%d,qual=%d,name=``%s''\n",
 
173
                    myacls[marker[i]].type, myacls[marker[i]].permset,
 
174
                    myacls[marker[i]].tag, myacls[marker[i]].qual,
 
175
                    myacls[marker[i]].name);
 
176
                assert(0); /* Record this as a failure. */
 
177
        }
 
178
        free(marker);
 
179
}
 
180
 
 
181
#endif
 
182
 
 
183
 
 
184
/*
 
185
 * Verify ACL restore-to-disk.  This test is FreeBSD-specific.
 
186
 */
 
187
 
 
188
DEFINE_TEST(test_acl_freebsd)
 
189
{
 
190
#if !defined(__FreeBSD__)
 
191
        skipping("FreeBSD-specific ACL restore test");
 
192
#elif __FreeBSD__ < 5
 
193
        skipping("ACL restore supported only on FreeBSD 5.0 and later");
 
194
#else
 
195
        struct stat st;
 
196
        struct archive *a;
 
197
        struct archive_entry *ae;
 
198
        int n, fd;
 
199
        acl_t acl;
 
200
 
 
201
        /*
 
202
         * First, do a quick manual set/read of ACL data to
 
203
         * verify that the local filesystem does support ACLs.
 
204
         * If it doesn't, we'll simply skip the remaining tests.
 
205
         */
 
206
        acl = acl_from_text("u::rwx,u:1:rw,g::rwx,g:15:rx,o::rwx,m::rwx");
 
207
        assert((void *)acl != NULL);
 
208
        /* Create a test file and try to set an ACL on it. */
 
209
        fd = open("pretest", O_WRONLY | O_CREAT | O_EXCL, 0777);
 
210
        failure("Could not create test file?!");
 
211
        if (!assert(fd >= 0)) {
 
212
                acl_free(acl);
 
213
                return;
 
214
        }
 
215
 
 
216
        n = acl_set_fd(fd, acl);
 
217
        acl_free(acl);
 
218
        if (n != 0 && errno == EOPNOTSUPP) {
 
219
                close(fd);
 
220
                skipping("ACL tests require that ACL support be enabled on the filesystem");
 
221
                return;
 
222
        }
 
223
        failure("acl_set_fd(): errno = %d (%s)",
 
224
            errno, strerror(errno));
 
225
        assertEqualInt(0, n);
 
226
        close(fd);
 
227
 
 
228
        /* Create a write-to-disk object. */
 
229
        assert(NULL != (a = archive_write_disk_new()));
 
230
        archive_write_disk_set_options(a,
 
231
            ARCHIVE_EXTRACT_TIME | ARCHIVE_EXTRACT_PERM | ARCHIVE_EXTRACT_ACL);
 
232
 
 
233
        /* Populate an archive entry with some metadata, including ACL info */
 
234
        ae = archive_entry_new();
 
235
        assert(ae != NULL);
 
236
        archive_entry_set_pathname(ae, "test0");
 
237
        archive_entry_set_mtime(ae, 123456, 7890);
 
238
        archive_entry_set_size(ae, 0);
 
239
        set_acls(ae, acls2);
 
240
        assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
 
241
        archive_entry_free(ae);
 
242
 
 
243
        /* Close the archive. */
 
244
        assertEqualIntA(a, ARCHIVE_OK, archive_write_close(a));
 
245
        assertEqualInt(ARCHIVE_OK, archive_write_finish(a));
 
246
 
 
247
        /* Verify the data on disk. */
 
248
        assertEqualInt(0, stat("test0", &st));
 
249
        assertEqualInt(st.st_mtime, 123456);
 
250
        acl = acl_get_file("test0", ACL_TYPE_ACCESS);
 
251
        assert(acl != (acl_t)NULL);
 
252
        compare_acls(acl, acls2);
 
253
        acl_free(acl);
 
254
#endif
 
255
}