]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-copy.c
Merge pull request #2844 from yarda/uaccess-3dprinters
[thirdparty/systemd.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 "util.h"
35
36 static void test_copy_file(void) {
37 _cleanup_free_ char *buf = NULL;
38 char fn[] = "/tmp/test-copy_file.XXXXXX";
39 char fn_copy[] = "/tmp/test-copy_file.XXXXXX";
40 size_t sz = 0;
41 int fd;
42
43 log_info("%s", __func__);
44
45 fd = mkostemp_safe(fn, O_RDWR|O_CLOEXEC);
46 assert_se(fd >= 0);
47 close(fd);
48
49 fd = mkostemp_safe(fn_copy, O_RDWR|O_CLOEXEC);
50 assert_se(fd >= 0);
51 close(fd);
52
53 assert_se(write_string_file(fn, "foo bar bar bar foo", WRITE_STRING_FILE_CREATE) == 0);
54
55 assert_se(copy_file(fn, fn_copy, 0, 0644, 0) == 0);
56
57 assert_se(read_full_file(fn_copy, &buf, &sz) == 0);
58 assert_se(streq(buf, "foo bar bar bar foo\n"));
59 assert_se(sz == 20);
60
61 unlink(fn);
62 unlink(fn_copy);
63 }
64
65 static void test_copy_file_fd(void) {
66 char in_fn[] = "/tmp/test-copy-file-fd-XXXXXX";
67 char out_fn[] = "/tmp/test-copy-file-fd-XXXXXX";
68 _cleanup_close_ int in_fd = -1, out_fd = -1;
69 char text[] = "boohoo\nfoo\n\tbar\n";
70 char buf[64] = {0};
71
72 log_info("%s", __func__);
73
74 in_fd = mkostemp_safe(in_fn, O_RDWR);
75 assert_se(in_fd >= 0);
76 out_fd = mkostemp_safe(out_fn, O_RDWR);
77 assert_se(out_fd >= 0);
78
79 assert_se(write_string_file(in_fn, text, WRITE_STRING_FILE_CREATE) == 0);
80 assert_se(copy_file_fd("/a/file/which/does/not/exist/i/guess", out_fd, true) < 0);
81 assert_se(copy_file_fd(in_fn, out_fd, true) >= 0);
82 assert_se(lseek(out_fd, SEEK_SET, 0) == 0);
83
84 assert_se(read(out_fd, buf, sizeof(buf)) == sizeof(text) - 1);
85 assert_se(streq(buf, text));
86
87 unlink(in_fn);
88 unlink(out_fn);
89 }
90
91 static void test_copy_tree(void) {
92 char original_dir[] = "/tmp/test-copy_tree/";
93 char copy_dir[] = "/tmp/test-copy_tree-copy/";
94 char **files = STRV_MAKE("file", "dir1/file", "dir1/dir2/file", "dir1/dir2/dir3/dir4/dir5/file");
95 char **links = STRV_MAKE("link", "file",
96 "link2", "dir1/file");
97 char **p, **link;
98
99 log_info("%s", __func__);
100
101 (void) rm_rf(copy_dir, REMOVE_ROOT|REMOVE_PHYSICAL);
102 (void) rm_rf(original_dir, REMOVE_ROOT|REMOVE_PHYSICAL);
103
104 STRV_FOREACH(p, files) {
105 char *f = strjoina(original_dir, *p);
106
107 assert_se(mkdir_parents(f, 0755) >= 0);
108 assert_se(write_string_file(f, "file", WRITE_STRING_FILE_CREATE) == 0);
109 }
110
111 STRV_FOREACH_PAIR(link, p, links) {
112 char *f = strjoina(original_dir, *p);
113 char *l = strjoina(original_dir, *link);
114
115 assert_se(mkdir_parents(l, 0755) >= 0);
116 assert_se(symlink(f, l) == 0);
117 }
118
119 assert_se(copy_tree(original_dir, copy_dir, true) == 0);
120
121 STRV_FOREACH(p, files) {
122 _cleanup_free_ char *buf = NULL;
123 size_t sz = 0;
124 char *f = strjoina(copy_dir, *p);
125
126 assert_se(access(f, F_OK) == 0);
127 assert_se(read_full_file(f, &buf, &sz) == 0);
128 assert_se(streq(buf, "file\n"));
129 }
130
131 STRV_FOREACH_PAIR(link, p, links) {
132 _cleanup_free_ char *target = NULL;
133 char *f = strjoina(original_dir, *p);
134 char *l = strjoina(copy_dir, *link);
135
136 assert_se(readlink_and_canonicalize(l, &target) == 0);
137 assert_se(path_equal(f, target));
138 }
139
140 assert_se(copy_tree(original_dir, copy_dir, false) < 0);
141 assert_se(copy_tree("/tmp/inexistent/foo/bar/fsdoi", copy_dir, false) < 0);
142
143 (void) rm_rf(copy_dir, REMOVE_ROOT|REMOVE_PHYSICAL);
144 (void) rm_rf(original_dir, REMOVE_ROOT|REMOVE_PHYSICAL);
145 }
146
147 static void test_copy_bytes(void) {
148 _cleanup_close_pair_ int pipefd[2] = {-1, -1};
149 _cleanup_close_ int infd = -1;
150 int r, r2;
151 char buf[1024], buf2[1024];
152
153 infd = open("/usr/lib/os-release", O_RDONLY|O_CLOEXEC);
154 if (infd < 0)
155 infd = open("/etc/os-release", O_RDONLY|O_CLOEXEC);
156 assert_se(infd >= 0);
157
158 assert_se(pipe2(pipefd, O_CLOEXEC) == 0);
159
160 r = copy_bytes(infd, pipefd[1], (uint64_t) -1, false);
161 assert_se(r == 0);
162
163 r = read(pipefd[0], buf, sizeof(buf));
164 assert_se(r >= 0);
165
166 assert_se(lseek(infd, 0, SEEK_SET) == 0);
167 r2 = read(infd, buf2, sizeof(buf2));
168 assert_se(r == r2);
169
170 assert_se(strneq(buf, buf2, r));
171
172 /* test copy_bytes with invalid descriptors */
173 r = copy_bytes(pipefd[0], pipefd[0], 1, false);
174 assert_se(r == -EBADF);
175
176 r = copy_bytes(pipefd[1], pipefd[1], 1, false);
177 assert_se(r == -EBADF);
178
179 r = copy_bytes(pipefd[1], infd, 1, false);
180 assert_se(r == -EBADF);
181 }
182
183 static void test_copy_bytes_regular_file(const char *src, bool try_reflink, uint64_t max_bytes) {
184 char fn2[] = "/tmp/test-copy-file-XXXXXX";
185 char fn3[] = "/tmp/test-copy-file-XXXXXX";
186 _cleanup_close_ int fd = -1, fd2 = -1, fd3 = -1;
187 int r;
188 struct stat buf, buf2, buf3;
189
190 log_info("%s try_reflink=%s max_bytes=%" PRIu64, __func__, yes_no(try_reflink), max_bytes);
191
192 fd = open(src, O_RDONLY | O_CLOEXEC | O_NOCTTY);
193 assert_se(fd >= 0);
194
195 fd2 = mkostemp_safe(fn2, O_RDWR);
196 assert_se(fd2 >= 0);
197
198 fd3 = mkostemp_safe(fn3, O_WRONLY);
199 assert_se(fd3 >= 0);
200
201 r = copy_bytes(fd, fd2, max_bytes, try_reflink);
202 if (max_bytes == (uint64_t) -1)
203 assert_se(r == 0);
204 else
205 assert_se(IN_SET(r, 0, 1));
206
207 assert_se(lseek(fd2, 0, SEEK_SET) == 0);
208
209 r = copy_bytes(fd2, fd3, max_bytes, try_reflink);
210 if (max_bytes == (uint64_t) -1)
211 assert_se(r == 0);
212 else
213 /* We cannot distinguish between the input being exactly max_bytes
214 * or longer than max_bytes (without trying to read one more byte,
215 * or calling stat, or FION_READ, etc, and we don't want to do any
216 * of that). So we expect "truncation" since we know that file we
217 * are copying is exactly max_bytes bytes. */
218 assert_se(r == 1);
219
220 assert_se(fstat(fd, &buf) == 0);
221 assert_se(fstat(fd2, &buf2) == 0);
222 assert_se(fstat(fd3, &buf3) == 0);
223
224 assert_se((uint64_t) buf2.st_size == MIN((uint64_t) buf.st_size, max_bytes));
225 assert_se(buf3.st_size == buf2.st_size);
226
227 unlink(fn2);
228 unlink(fn3);
229 }
230
231 int main(int argc, char *argv[]) {
232 test_copy_file();
233 test_copy_file_fd();
234 test_copy_tree();
235 test_copy_bytes();
236 test_copy_bytes_regular_file(argv[0], false, (uint64_t) -1);
237 test_copy_bytes_regular_file(argv[0], true, (uint64_t) -1);
238 test_copy_bytes_regular_file(argv[0], false, 1000); /* smaller than copy buffer size */
239 test_copy_bytes_regular_file(argv[0], true, 1000);
240 test_copy_bytes_regular_file(argv[0], false, 32000); /* larger than copy buffer size */
241 test_copy_bytes_regular_file(argv[0], true, 32000);
242
243 return 0;
244 }