508d23fc76aa13b29788bf8310df70ff37e2880a
[project/fstools.git] / libfstools / overlay.c
1 /*
2 * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License version 2.1
6 * as published by the Free Software Foundation
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14 #include <sys/stat.h>
15 #include <sys/types.h>
16 #include <sys/mount.h>
17
18 #include <asm/byteorder.h>
19
20 #include <errno.h>
21 #include <string.h>
22 #include <stdio.h>
23 #include <unistd.h>
24 #include <stdlib.h>
25 #include <glob.h>
26 #include <errno.h>
27 #include <dirent.h>
28 #include <fcntl.h>
29
30 #include "libfstools.h"
31 #include "volume.h"
32
33 #ifndef GLOB_ONLYDIR
34 #define GLOB_ONLYDIR 0x100
35 #endif
36
37 #define SWITCH_JFFS2 "/tmp/.switch_jffs2"
38 #define OVERLAYDIR "/rom/overlay"
39
40 static bool keep_sysupgrade;
41
42 static int
43 handle_rmdir(const char *dir)
44 {
45 struct dirent *dt;
46 struct stat st;
47 DIR *d;
48 int fd;
49
50 d = opendir(dir);
51 if (!d)
52 return -1;
53
54 fd = dirfd(d);
55
56 while ((dt = readdir(d)) != NULL) {
57 if (fstatat(fd, dt->d_name, &st, AT_SYMLINK_NOFOLLOW) || S_ISDIR(st.st_mode))
58 continue;
59
60 if (keep_sysupgrade && !strcmp(dt->d_name, "sysupgrade.tgz"))
61 continue;
62
63 unlinkat(fd, dt->d_name, 0);
64 }
65
66 closedir(d);
67 rmdir(dir);
68
69 return 0;
70 }
71
72 void
73 foreachdir(const char *dir, int (*cb)(const char*))
74 {
75 static char *globdir = NULL;
76 static size_t globdirlen = 0;
77 struct stat s = { 0 };
78 size_t dirlen = strlen(dir);
79 glob_t gl;
80 int j;
81
82 if (dirlen + sizeof("/*") > globdirlen) {
83 /* Alloc extra 256 B to avoid too many reallocs */
84 size_t len = dirlen + sizeof("/*") + 256;
85 char *tmp;
86
87 tmp = realloc(globdir, len);
88 if (!tmp)
89 return;
90 globdir = tmp;
91 globdirlen = len;
92 }
93
94 sprintf(globdir, "%s/*", dir);
95
96 /* Include GLOB_MARK as callbacks expect a trailing slash */
97 if (!glob(globdir, GLOB_NOESCAPE | GLOB_MARK | GLOB_ONLYDIR, NULL, &gl))
98 for (j = 0; j < gl.gl_pathc; j++) {
99 char *dir = gl.gl_pathv[j];
100 int len = strlen(gl.gl_pathv[j]);
101 int err;
102
103 /* Quick way of skipping files */
104 if (dir[len - 1] != '/')
105 continue;
106
107 /* lstat needs path without a trailing slash */
108 if (len > 1)
109 dir[len - 1] = '\0';
110 err = lstat(gl.gl_pathv[j], &s);
111 if (len > 1)
112 dir[len - 1] = '/';
113
114 if (!err && !S_ISLNK(s.st_mode))
115 foreachdir(gl.gl_pathv[j], cb);
116 }
117 cb(dir);
118 }
119
120 static void foreach_mount(int (*cb)(const char *, const char *))
121 {
122 FILE *fp = fopen("/proc/mounts", "r");
123 static char line[256];
124
125 if (!fp)
126 return;
127
128 while (fgets(line, sizeof(line), fp)) {
129 char device[32], mount_point[32];
130
131 if (sscanf(line, "%31s %31s %*s %*s %*u %*u", device, mount_point) == 2)
132 cb(device, mount_point);
133 }
134
135 fclose(fp);
136 }
137
138 void
139 overlay_delete(const char *dir, bool _keep_sysupgrade)
140 {
141 keep_sysupgrade = _keep_sysupgrade;
142 foreachdir(dir, handle_rmdir);
143 }
144
145 static int
146 overlay_mount(struct volume *v, char *fs)
147 {
148 if (mkdir("/tmp/overlay", 0755)) {
149 ULOG_ERR("failed to mkdir /tmp/overlay: %m\n");
150 return -1;
151 }
152
153 if (mount(v->blk, "/tmp/overlay", fs, MS_NOATIME, NULL)) {
154 ULOG_ERR("failed to mount -t %s %s /tmp/overlay: %m\n", fs, v->blk);
155 return -1;
156 }
157
158 return 0;
159 }
160
161 /**
162 * move_mount - move mount point to the new root
163 */
164 static int move_mount(const char *device, const char *mount_point)
165 {
166 static const char *prefix = "/tmp/root/";
167
168 if (strncmp(mount_point, prefix, strlen(prefix)))
169 return 0;
170
171 return mount_move(prefix, "/", mount_point + strlen(prefix));
172 }
173
174 static int
175 switch2jffs(struct volume *v)
176 {
177 struct stat s;
178 int ret;
179
180 if (!stat(SWITCH_JFFS2, &s)) {
181 ULOG_ERR("jffs2 switch already running\n");
182 return -1;
183 }
184
185 creat(SWITCH_JFFS2, 0600);
186 ret = mount(v->blk, OVERLAYDIR, "jffs2", MS_NOATIME, NULL);
187 unlink(SWITCH_JFFS2);
188 if (ret) {
189 ULOG_ERR("failed - mount -t jffs2 %s %s: %m\n", v->blk, OVERLAYDIR);
190 return -1;
191 }
192
193 if (mount("none", "/", NULL, MS_NOATIME | MS_REMOUNT, 0)) {
194 ULOG_ERR("failed - mount -o remount,ro none: %m\n");
195 return -1;
196 }
197
198 if (system("cp -a /tmp/root/* /rom/overlay")) {
199 ULOG_ERR("failed - cp -a /tmp/root/* /rom/overlay: %m\n");
200 return -1;
201 }
202
203 if (pivot("/rom", "/mnt")) {
204 ULOG_ERR("failed - pivot /rom /mnt: %m\n");
205 return -1;
206 }
207
208 if (mount_move("/mnt", "/tmp/root", "")) {
209 ULOG_ERR("failed - mount -o move /mnt /tmp/root %m\n");
210 return -1;
211 }
212
213 ret = fopivot("/overlay", "/rom");
214
215 /*
216 * Besides copying overlay data from "tmpfs" to "jffs2" we should also
217 * move mount points that user could create during JFFS2 formatting.
218 * This has to happen after fopivot call because:
219 * 1) It's trivial to find mount points to move then (/tmp/root/...).
220 * 2) We can't do that earlier using /rom/overlay/upper/ as overlay(fs)
221 * doesn't support mounts. Mounting to upper dir don't make overlay
222 * /propagate/ files to the target dir.
223 */
224 foreach_mount(move_mount);
225
226 return ret;
227 }
228
229 int
230 handle_whiteout(const char *dir)
231 {
232 struct stat s;
233 char link[256];
234 ssize_t sz;
235 struct dirent **namelist;
236 int n;
237
238 n = scandir(dir, &namelist, NULL, NULL);
239
240 if (n < 1)
241 return -1;
242
243 while (n--) {
244 char file[256];
245
246 snprintf(file, sizeof(file), "%s%s", dir, namelist[n]->d_name);
247 if (!lstat(file, &s) && S_ISLNK(s.st_mode)) {
248 sz = readlink(file, link, sizeof(link) - 1);
249 if (sz > 0) {
250 char *orig;
251
252 link[sz] = '\0';
253 orig = strstr(&file[1], "/");
254 if (orig && !strcmp(link, "(overlay-whiteout)"))
255 unlink(orig);
256 }
257 }
258 free(namelist[n]);
259 }
260 free(namelist);
261
262 return 0;
263 }
264
265 static char *overlay_fs_name(int type)
266 {
267 switch (type) {
268 case FS_EXT4:
269 return "ext4";
270 case FS_F2FS:
271 return "f2fs";
272 case FS_UBIFS:
273 return "ubifs";
274 case FS_JFFS2:
275 default:
276 return "jffs2";
277 }
278 }
279
280 int
281 jffs2_switch(struct volume *v)
282 {
283 char *mp, *fs_name;
284 int type;
285
286 if (find_overlay_mount("overlayfs:/tmp/root"))
287 return -1;
288
289 if (find_filesystem("overlay")) {
290 ULOG_ERR("overlayfs not supported by kernel\n");
291 return -1;
292 }
293
294 volume_init(v);
295 mp = find_mount_point(v->blk, 0);
296 if (mp) {
297 ULOG_ERR("rootfs_data:%s is already mounted as %s\n", v->blk, mp);
298 return -1;
299 }
300
301 type = volume_identify(v);
302 fs_name = overlay_fs_name(type);
303
304 switch (type) {
305 case FS_NONE:
306 ULOG_ERR("no jffs2 marker found\n");
307 /* fall through */
308
309 case FS_DEADCODE:
310 if (switch2jffs(v))
311 return -1;
312
313 ULOG_INFO("performing overlay whiteout\n");
314 umount2("/tmp/root", MNT_DETACH);
315 foreachdir("/overlay/", handle_whiteout);
316
317 /* try hard to be in sync */
318 ULOG_INFO("syncronizing overlay\n");
319 if (system("cp -a /tmp/root/upper/* / 2>/dev/null"))
320 ULOG_ERR("failed to sync jffs2 overlay\n");
321 break;
322
323 case FS_EXT4:
324 case FS_F2FS:
325 case FS_UBIFS:
326 if (overlay_mount(v, fs_name))
327 return -1;
328 if (mount_move("/tmp", "", "/overlay") || fopivot("/overlay", "/rom")) {
329 ULOG_ERR("switching to %s failed\n", fs_name);
330 return -1;
331 }
332 break;
333 }
334
335 sync();
336 fs_state_set("/overlay", FS_STATE_READY);
337 return 0;
338 }
339
340 static int overlay_mount_fs(struct volume *v)
341 {
342 char *fstype = overlay_fs_name(volume_identify(v));
343
344 if (mkdir("/tmp/overlay", 0755)) {
345 ULOG_ERR("failed to mkdir /tmp/overlay: %m\n");
346 return -1;
347 }
348
349 if (mount(v->blk, "/tmp/overlay", fstype,
350 #ifdef OVL_MOUNT_FULL_ACCESS_TIME
351 MS_RELATIME,
352 #else
353 MS_NOATIME,
354 #endif
355 #ifdef OVL_MOUNT_COMPRESS_ZLIB
356 "compr=zlib"
357 #else
358 NULL
359 #endif
360 )) {
361 ULOG_ERR("failed to mount -t %s %s /tmp/overlay: %m\n",
362 fstype, v->blk);
363 return -1;
364 }
365
366 return 0;
367 }
368
369 enum fs_state fs_state_get(const char *dir)
370 {
371 char *path;
372 char valstr[16];
373 uint32_t val;
374 ssize_t len;
375
376 path = alloca(strlen(dir) + 1 + sizeof("/.fs_state"));
377 sprintf(path, "%s/.fs_state", dir);
378 len = readlink(path, valstr, sizeof(valstr) - 1);
379 if (len < 0)
380 return FS_STATE_UNKNOWN;
381
382 valstr[len] = 0;
383 val = atoi(valstr);
384
385 if (val > __FS_STATE_LAST)
386 return FS_STATE_UNKNOWN;
387
388 return val;
389 }
390
391
392 int fs_state_set(const char *dir, enum fs_state state)
393 {
394 char valstr[16];
395 char *path;
396
397 if (fs_state_get(dir) == state)
398 return 0;
399
400 path = alloca(strlen(dir) + 1 + sizeof("/.fs_state"));
401 sprintf(path, "%s/.fs_state", dir);
402 unlink(path);
403 snprintf(valstr, sizeof(valstr), "%d", state);
404
405 return symlink(valstr, path);
406 }
407
408
409 int mount_overlay(struct volume *v)
410 {
411 char *mp, *fs_name;
412
413 if (!v)
414 return -1;
415
416 mp = find_mount_point(v->blk, 0);
417 if (mp) {
418 ULOG_ERR("rootfs_data:%s is already mounted as %s\n", v->blk, mp);
419 return -1;
420 }
421
422 overlay_mount_fs(v);
423
424 extroot_prefix = "/tmp/overlay";
425 if (!mount_extroot()) {
426 ULOG_INFO("switched to extroot\n");
427 return 0;
428 }
429
430 switch(fs_state_get("/tmp/overlay")) {
431 case FS_STATE_UNKNOWN:
432 fs_state_set("/tmp/overlay", FS_STATE_PENDING);
433 if (fs_state_get("/tmp/overlay") != FS_STATE_PENDING) {
434 ULOG_ERR("unable to set filesystem state\n");
435 break;
436 }
437 case FS_STATE_PENDING:
438 ULOG_INFO("overlay filesystem has not been fully initialized yet\n");
439 overlay_delete("/tmp/overlay", true);
440 break;
441 case FS_STATE_READY:
442 break;
443 }
444
445 fs_name = overlay_fs_name(volume_identify(v));
446 ULOG_INFO("switching to %s overlay\n", fs_name);
447 if (mount_move("/tmp", "", "/overlay") || fopivot("/overlay", "/rom")) {
448 ULOG_ERR("switching to %s failed - fallback to ramoverlay\n", fs_name);
449 return ramoverlay();
450 }
451
452 return -1;
453 }