chiark / gitweb /
Fix service file to match installed elogind binary location
[elogind.git] / src / test / test-copy.c
1 /***
2   This file is part of systemd
3
4   Copyright 2014 Ronny Chevalier
5
6   systemd is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as published by
8   the Free Software Foundation; either version 2.1 of the License, or
9   (at your option) any later version.
10
11   systemd is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   Lesser General Public License for more details.
15
16   You should have received a copy of the GNU Lesser General Public License
17   along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <unistd.h>
21
22 #include "alloc-util.h"
23 #include "copy.h"
24 #include "fd-util.h"
25 #include "fileio.h"
26 #include "fs-util.h"
27 #include "log.h"
28 #include "macro.h"
29 #include "mkdir.h"
30 #include "path-util.h"
31 #include "rm-rf.h"
32 #include "string-util.h"
33 #include "strv.h"
34 #include "user-util.h"
35 #include "util.h"
36
37 #if 0 /// UNNEEDED by elogind
38 static void test_copy_file(void) {
39         _cleanup_free_ char *buf = NULL;
40         char fn[] = "/tmp/test-copy_file.XXXXXX";
41         char fn_copy[] = "/tmp/test-copy_file.XXXXXX";
42         size_t sz = 0;
43         int fd;
44
45         log_info("%s", __func__);
46
47         fd = mkostemp_safe(fn);
48         assert_se(fd >= 0);
49         close(fd);
50
51         fd = mkostemp_safe(fn_copy);
52         assert_se(fd >= 0);
53         close(fd);
54
55         assert_se(write_string_file(fn, "foo bar bar bar foo", WRITE_STRING_FILE_CREATE) == 0);
56
57         assert_se(copy_file(fn, fn_copy, 0, 0644, 0, COPY_REFLINK) == 0);
58
59         assert_se(read_full_file(fn_copy, &buf, &sz) == 0);
60         assert_se(streq(buf, "foo bar bar bar foo\n"));
61         assert_se(sz == 20);
62
63         unlink(fn);
64         unlink(fn_copy);
65 }
66
67 static void test_copy_file_fd(void) {
68         char in_fn[] = "/tmp/test-copy-file-fd-XXXXXX";
69         char out_fn[] = "/tmp/test-copy-file-fd-XXXXXX";
70         _cleanup_close_ int in_fd = -1, out_fd = -1;
71         char text[] = "boohoo\nfoo\n\tbar\n";
72         char buf[64] = {0};
73
74         log_info("%s", __func__);
75
76         in_fd = mkostemp_safe(in_fn);
77         assert_se(in_fd >= 0);
78         out_fd = mkostemp_safe(out_fn);
79         assert_se(out_fd >= 0);
80
81         assert_se(write_string_file(in_fn, text, WRITE_STRING_FILE_CREATE) == 0);
82         assert_se(copy_file_fd("/a/file/which/does/not/exist/i/guess", out_fd, COPY_REFLINK) < 0);
83         assert_se(copy_file_fd(in_fn, out_fd, COPY_REFLINK) >= 0);
84         assert_se(lseek(out_fd, SEEK_SET, 0) == 0);
85
86         assert_se(read(out_fd, buf, sizeof(buf)) == sizeof(text) - 1);
87         assert_se(streq(buf, text));
88
89         unlink(in_fn);
90         unlink(out_fn);
91 }
92
93 static void test_copy_tree(void) {
94         char original_dir[] = "/tmp/test-copy_tree/";
95         char copy_dir[] = "/tmp/test-copy_tree-copy/";
96         char **files = STRV_MAKE("file", "dir1/file", "dir1/dir2/file", "dir1/dir2/dir3/dir4/dir5/file");
97         char **links = STRV_MAKE("link", "file",
98                                  "link2", "dir1/file");
99         char **p, **link;
100         const char *unixsockp;
101         struct stat st;
102
103         log_info("%s", __func__);
104
105         (void) rm_rf(copy_dir, REMOVE_ROOT|REMOVE_PHYSICAL);
106         (void) rm_rf(original_dir, REMOVE_ROOT|REMOVE_PHYSICAL);
107
108         STRV_FOREACH(p, files) {
109                 _cleanup_free_ char *f;
110
111                 assert_se((f = strappend(original_dir, *p)));
112
113                 assert_se(mkdir_parents(f, 0755) >= 0);
114                 assert_se(write_string_file(f, "file", WRITE_STRING_FILE_CREATE) == 0);
115         }
116
117         STRV_FOREACH_PAIR(link, p, links) {
118                 _cleanup_free_ char *f, *l;
119
120                 assert_se((f = strappend(original_dir, *p)));
121                 assert_se((l = strappend(original_dir, *link)));
122
123                 assert_se(mkdir_parents(l, 0755) >= 0);
124                 assert_se(symlink(f, l) == 0);
125         }
126
127         unixsockp = strjoina(original_dir, "unixsock");
128         assert_se(mknod(unixsockp, S_IFSOCK|0644, 0) >= 0);
129
130         assert_se(copy_tree(original_dir, copy_dir, UID_INVALID, GID_INVALID, COPY_REFLINK|COPY_MERGE) == 0);
131
132         STRV_FOREACH(p, files) {
133                 _cleanup_free_ char *buf = NULL, *f;
134                 size_t sz = 0;
135
136                 assert_se((f = strappend(copy_dir, *p)));
137
138                 assert_se(access(f, F_OK) == 0);
139                 assert_se(read_full_file(f, &buf, &sz) == 0);
140                 assert_se(streq(buf, "file\n"));
141         }
142
143         STRV_FOREACH_PAIR(link, p, links) {
144                 _cleanup_free_ char *target = NULL, *f, *l;
145
146                 assert_se((f = strjoin(original_dir, *p)));
147                 assert_se((l = strjoin(copy_dir, *link)));
148
149                 assert_se(readlink_and_canonicalize(l, NULL, &target) == 0);
150                 assert_se(path_equal(f, target));
151         }
152
153         unixsockp = strjoina(copy_dir, "unixsock");
154         assert_se(stat(unixsockp, &st) >= 0);
155         assert_se(S_ISSOCK(st.st_mode));
156
157         assert_se(copy_tree(original_dir, copy_dir, UID_INVALID, GID_INVALID, COPY_REFLINK) < 0);
158         assert_se(copy_tree("/tmp/inexistent/foo/bar/fsdoi", copy_dir, UID_INVALID, GID_INVALID, COPY_REFLINK) < 0);
159
160         (void) rm_rf(copy_dir, REMOVE_ROOT|REMOVE_PHYSICAL);
161         (void) rm_rf(original_dir, REMOVE_ROOT|REMOVE_PHYSICAL);
162 }
163 #endif // 0
164
165 static void test_copy_bytes(void) {
166         _cleanup_close_pair_ int pipefd[2] = {-1, -1};
167         _cleanup_close_ int infd = -1;
168         int r, r2;
169         char buf[1024], buf2[1024];
170
171         infd = open("/usr/lib/os-release", O_RDONLY|O_CLOEXEC);
172         if (infd < 0)
173                 infd = open("/etc/os-release", O_RDONLY|O_CLOEXEC);
174         assert_se(infd >= 0);
175
176         assert_se(pipe2(pipefd, O_CLOEXEC) == 0);
177
178         r = copy_bytes(infd, pipefd[1], (uint64_t) -1, 0);
179         assert_se(r == 0);
180
181         r = read(pipefd[0], buf, sizeof(buf));
182         assert_se(r >= 0);
183
184         assert_se(lseek(infd, 0, SEEK_SET) == 0);
185         r2 = read(infd, buf2, sizeof(buf2));
186         assert_se(r == r2);
187
188         assert_se(strneq(buf, buf2, r));
189
190         /* test copy_bytes with invalid descriptors */
191         r = copy_bytes(pipefd[0], pipefd[0], 1, 0);
192         assert_se(r == -EBADF);
193
194         r = copy_bytes(pipefd[1], pipefd[1], 1, 0);
195         assert_se(r == -EBADF);
196
197         r = copy_bytes(pipefd[1], infd, 1, 0);
198         assert_se(r == -EBADF);
199 }
200
201 static void test_copy_bytes_regular_file(const char *src, bool try_reflink, uint64_t max_bytes) {
202         char fn2[] = "/tmp/test-copy-file-XXXXXX";
203         char fn3[] = "/tmp/test-copy-file-XXXXXX";
204         _cleanup_close_ int fd = -1, fd2 = -1, fd3 = -1;
205         int r;
206         struct stat buf, buf2, buf3;
207
208         log_info("%s try_reflink=%s max_bytes=%" PRIu64, __func__, yes_no(try_reflink), max_bytes);
209
210         fd = open(src, O_RDONLY | O_CLOEXEC | O_NOCTTY);
211         assert_se(fd >= 0);
212
213         fd2 = mkostemp_safe(fn2);
214         assert_se(fd2 >= 0);
215
216         fd3 = mkostemp_safe(fn3);
217         assert_se(fd3 >= 0);
218
219         r = copy_bytes(fd, fd2, max_bytes, try_reflink ? COPY_REFLINK : 0);
220         if (max_bytes == (uint64_t) -1)
221                 assert_se(r == 0);
222         else
223                 assert_se(IN_SET(r, 0, 1));
224
225         assert_se(lseek(fd2, 0, SEEK_SET) == 0);
226
227         r = copy_bytes(fd2, fd3, max_bytes, try_reflink ? COPY_REFLINK : 0);
228         if (max_bytes == (uint64_t) -1)
229                 assert_se(r == 0);
230         else
231                 /* We cannot distinguish between the input being exactly max_bytes
232                  * or longer than max_bytes (without trying to read one more byte,
233                  * or calling stat, or FION_READ, etc, and we don't want to do any
234                  * of that). So we expect "truncation" since we know that file we
235                  * are copying is exactly max_bytes bytes. */
236                 assert_se(r == 1);
237
238         assert_se(fstat(fd, &buf) == 0);
239         assert_se(fstat(fd2, &buf2) == 0);
240         assert_se(fstat(fd3, &buf3) == 0);
241
242         assert_se((uint64_t) buf2.st_size == MIN((uint64_t) buf.st_size, max_bytes));
243         assert_se(buf3.st_size == buf2.st_size);
244
245         unlink(fn2);
246         unlink(fn3);
247 }
248
249 int main(int argc, char *argv[]) {
250 #if 0 /// UNNEEDED by elogind
251         test_copy_file();
252         test_copy_file_fd();
253         test_copy_tree();
254 #endif // 0
255         test_copy_bytes();
256         test_copy_bytes_regular_file(argv[0], false, (uint64_t) -1);
257         test_copy_bytes_regular_file(argv[0], true, (uint64_t) -1);
258         test_copy_bytes_regular_file(argv[0], false, 1000); /* smaller than copy buffer size */
259         test_copy_bytes_regular_file(argv[0], true, 1000);
260         test_copy_bytes_regular_file(argv[0], false, 32000); /* larger than copy buffer size */
261         test_copy_bytes_regular_file(argv[0], true, 32000);
262
263         return 0;
264 }