kernel/async.c: remove async_unregister_domain()
[linux-block.git] / init / initramfs.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2#include <linux/init.h>
3#include <linux/fs.h>
4#include <linux/slab.h>
5#include <linux/types.h>
6#include <linux/fcntl.h>
7#include <linux/delay.h>
8#include <linux/string.h>
df52092f 9#include <linux/dirent.h>
1da177e4 10#include <linux/syscalls.h>
889d51a1 11#include <linux/utime.h>
08865514 12#include <linux/file.h>
899ee4af 13#include <linux/memblock.h>
dd23e809 14#include <linux/mm.h>
b2a74d5f 15#include <linux/namei.h>
8fb9f73e 16#include <linux/init_syscalls.h>
1da177e4 17
bf6419e4
CH
18static ssize_t __init xwrite(struct file *file, const char *p, size_t count,
19 loff_t *pos)
38747439
YL
20{
21 ssize_t out = 0;
22
23 /* sys_write only can write MAX_RW_COUNT aka 2G-4K bytes at most */
24 while (count) {
bf6419e4 25 ssize_t rv = kernel_write(file, p, count, pos);
38747439
YL
26
27 if (rv < 0) {
28 if (rv == -EINTR || rv == -EAGAIN)
29 continue;
30 return out ? out : rv;
31 } else if (rv == 0)
32 break;
33
34 p += rv;
35 out += rv;
36 count -= rv;
37 }
38
39 return out;
40}
41
1da177e4
LT
42static __initdata char *message;
43static void __init error(char *x)
44{
45 if (!message)
46 message = x;
47}
48
dd23e809
FF
49static void panic_show_mem(const char *fmt, ...)
50{
51 va_list args;
52
53 show_mem(0, NULL);
54 va_start(args, fmt);
55 panic(fmt, args);
56 va_end(args);
57}
58
1da177e4
LT
59/* link hash */
60
6a050da4
MH
61#define N_ALIGN(len) ((((len) + 1) & ~3) + 2)
62
1da177e4
LT
63static __initdata struct hash {
64 int ino, minor, major;
685dd2d5 65 umode_t mode;
1da177e4 66 struct hash *next;
6a050da4 67 char name[N_ALIGN(PATH_MAX)];
1da177e4
LT
68} *head[32];
69
70static inline int hash(int major, int minor, int ino)
71{
72 unsigned long tmp = ino + minor + (major << 3);
73 tmp += tmp >> 5;
74 return tmp & 31;
75}
76
2139a7fb 77static char __init *find_link(int major, int minor, int ino,
685dd2d5 78 umode_t mode, char *name)
1da177e4
LT
79{
80 struct hash **p, *q;
81 for (p = head + hash(major, minor, ino); *p; p = &(*p)->next) {
82 if ((*p)->ino != ino)
83 continue;
84 if ((*p)->minor != minor)
85 continue;
86 if ((*p)->major != major)
87 continue;
2139a7fb
PA
88 if (((*p)->mode ^ mode) & S_IFMT)
89 continue;
1da177e4
LT
90 return (*p)->name;
91 }
3265e66b 92 q = kmalloc(sizeof(struct hash), GFP_KERNEL);
1da177e4 93 if (!q)
dd23e809 94 panic_show_mem("can't allocate link hash entry");
1da177e4 95 q->major = major;
2139a7fb
PA
96 q->minor = minor;
97 q->ino = ino;
98 q->mode = mode;
6a050da4 99 strcpy(q->name, name);
1da177e4
LT
100 q->next = NULL;
101 *p = q;
102 return NULL;
103}
104
105static void __init free_hash(void)
106{
107 struct hash **p, *q;
108 for (p = head; p < head + 32; p++) {
109 while (*p) {
110 q = *p;
111 *p = q->next;
3265e66b 112 kfree(q);
1da177e4
LT
113 }
114 }
115}
116
e35c4c64 117static long __init do_utime(char *filename, time64_t mtime)
889d51a1 118{
aaed2dd8 119 struct timespec64 t[2];
889d51a1
NL
120
121 t[0].tv_sec = mtime;
122 t[0].tv_nsec = 0;
123 t[1].tv_sec = mtime;
124 t[1].tv_nsec = 0;
235e5793 125 return init_utimes(filename, t);
889d51a1
NL
126}
127
128static __initdata LIST_HEAD(dir_list);
129struct dir_entry {
130 struct list_head list;
131 char *name;
e35c4c64 132 time64_t mtime;
889d51a1
NL
133};
134
e35c4c64 135static void __init dir_add(const char *name, time64_t mtime)
889d51a1
NL
136{
137 struct dir_entry *de = kmalloc(sizeof(struct dir_entry), GFP_KERNEL);
138 if (!de)
dd23e809 139 panic_show_mem("can't allocate dir_entry buffer");
889d51a1
NL
140 INIT_LIST_HEAD(&de->list);
141 de->name = kstrdup(name, GFP_KERNEL);
142 de->mtime = mtime;
143 list_add(&de->list, &dir_list);
144}
145
146static void __init dir_utime(void)
147{
148 struct dir_entry *de, *tmp;
149 list_for_each_entry_safe(de, tmp, &dir_list, list) {
150 list_del(&de->list);
151 do_utime(de->name, de->mtime);
152 kfree(de->name);
153 kfree(de);
154 }
155}
156
e35c4c64 157static __initdata time64_t mtime;
889d51a1 158
1da177e4
LT
159/* cpio header parsing */
160
161static __initdata unsigned long ino, major, minor, nlink;
685dd2d5 162static __initdata umode_t mode;
1da177e4
LT
163static __initdata unsigned long body_len, name_len;
164static __initdata uid_t uid;
165static __initdata gid_t gid;
166static __initdata unsigned rdev;
167
168static void __init parse_header(char *s)
169{
170 unsigned long parsed[12];
171 char buf[9];
172 int i;
173
174 buf[8] = '\0';
175 for (i = 0, s += 6; i < 12; i++, s += 8) {
176 memcpy(buf, s, 8);
177 parsed[i] = simple_strtoul(buf, NULL, 16);
178 }
179 ino = parsed[0];
180 mode = parsed[1];
181 uid = parsed[2];
182 gid = parsed[3];
183 nlink = parsed[4];
e35c4c64 184 mtime = parsed[5]; /* breaks in y2106 */
1da177e4
LT
185 body_len = parsed[6];
186 major = parsed[7];
187 minor = parsed[8];
188 rdev = new_encode_dev(MKDEV(parsed[9], parsed[10]));
189 name_len = parsed[11];
190}
191
192/* FSM */
193
194static __initdata enum state {
195 Start,
196 Collect,
197 GotHeader,
198 SkipIt,
199 GotName,
200 CopyFile,
201 GotSymlink,
202 Reset
203} state, next_state;
204
205static __initdata char *victim;
c34d85ac 206static unsigned long byte_count __initdata;
1da177e4
LT
207static __initdata loff_t this_header, next_header;
208
b0a5ab93 209static inline void __init eat(unsigned n)
1da177e4
LT
210{
211 victim += n;
212 this_header += n;
c34d85ac 213 byte_count -= n;
1da177e4
LT
214}
215
1da177e4 216static __initdata char *collected;
d97b07c5 217static long remains __initdata;
1da177e4
LT
218static __initdata char *collect;
219
220static void __init read_into(char *buf, unsigned size, enum state next)
221{
c34d85ac 222 if (byte_count >= size) {
1da177e4
LT
223 collected = victim;
224 eat(size);
225 state = next;
226 } else {
227 collect = collected = buf;
228 remains = size;
229 next_state = next;
230 state = Collect;
231 }
232}
233
234static __initdata char *header_buf, *symlink_buf, *name_buf;
235
236static int __init do_start(void)
237{
238 read_into(header_buf, 110, GotHeader);
239 return 0;
240}
241
242static int __init do_collect(void)
243{
d97b07c5 244 unsigned long n = remains;
c34d85ac
MR
245 if (byte_count < n)
246 n = byte_count;
1da177e4
LT
247 memcpy(collect, victim, n);
248 eat(n);
249 collect += n;
250 if ((remains -= n) != 0)
251 return 1;
252 state = next_state;
253 return 0;
254}
255
256static int __init do_header(void)
257{
2e591bbc
AV
258 if (memcmp(collected, "070707", 6)==0) {
259 error("incorrect cpio method used: use -H newc option");
260 return 1;
261 }
1da177e4
LT
262 if (memcmp(collected, "070701", 6)) {
263 error("no cpio magic");
264 return 1;
265 }
266 parse_header(collected);
267 next_header = this_header + N_ALIGN(name_len) + body_len;
268 next_header = (next_header + 3) & ~3;
1da177e4
LT
269 state = SkipIt;
270 if (name_len <= 0 || name_len > PATH_MAX)
271 return 0;
272 if (S_ISLNK(mode)) {
273 if (body_len > PATH_MAX)
274 return 0;
275 collect = collected = symlink_buf;
276 remains = N_ALIGN(name_len) + body_len;
277 next_state = GotSymlink;
278 state = Collect;
279 return 0;
280 }
281 if (S_ISREG(mode) || !body_len)
282 read_into(name_buf, N_ALIGN(name_len), GotName);
283 return 0;
284}
285
286static int __init do_skip(void)
287{
c34d85ac
MR
288 if (this_header + byte_count < next_header) {
289 eat(byte_count);
1da177e4
LT
290 return 1;
291 } else {
292 eat(next_header - this_header);
293 state = next_state;
294 return 0;
295 }
296}
297
298static int __init do_reset(void)
299{
c34d85ac 300 while (byte_count && *victim == '\0')
1da177e4 301 eat(1);
c34d85ac 302 if (byte_count && (this_header & 3))
1da177e4
LT
303 error("broken padding");
304 return 1;
305}
306
c34d85ac 307static void __init clean_path(char *path, umode_t fmode)
2139a7fb 308{
046aa126 309 struct kstat st;
2139a7fb 310
7b81ce7c 311 if (!init_stat(path, &st, AT_SYMLINK_NOFOLLOW) &&
716308a5 312 (st.mode ^ fmode) & S_IFMT) {
046aa126 313 if (S_ISDIR(st.mode))
20cce026 314 init_rmdir(path);
2139a7fb 315 else
8fb9f73e 316 init_unlink(path);
2139a7fb
PA
317 }
318}
319
7c0950d4
LZ
320static int __init maybe_link(void)
321{
322 if (nlink >= 2) {
323 char *old = find_link(major, minor, ino, mode, collected);
324 if (old) {
325 clean_path(collected, 0);
812931d6 326 return (init_link(old, collected) < 0) ? -1 : 1;
7c0950d4
LZ
327 }
328 }
329 return 0;
330}
331
bf6419e4
CH
332static __initdata struct file *wfile;
333static __initdata loff_t wfile_pos;
1da177e4
LT
334
335static int __init do_name(void)
336{
337 state = SkipIt;
338 next_state = Reset;
339 if (strcmp(collected, "TRAILER!!!") == 0) {
340 free_hash();
341 return 0;
342 }
2139a7fb 343 clean_path(collected, mode);
1da177e4 344 if (S_ISREG(mode)) {
2139a7fb
PA
345 int ml = maybe_link();
346 if (ml >= 0) {
347 int openflags = O_WRONLY|O_CREAT;
348 if (ml != 1)
349 openflags |= O_TRUNC;
bf6419e4
CH
350 wfile = filp_open(collected, openflags, mode);
351 if (IS_ERR(wfile))
352 return 0;
353 wfile_pos = 0;
354
355 vfs_fchown(wfile, uid, gid);
356 vfs_fchmod(wfile, mode);
357 if (body_len)
358 vfs_truncate(&wfile->f_path, body_len);
bf6419e4 359 state = CopyFile;
1da177e4
LT
360 }
361 } else if (S_ISDIR(mode)) {
83ff98c3 362 init_mkdir(collected, mode);
b873498f 363 init_chown(collected, uid, gid, 0);
1097742e 364 init_chmod(collected, mode);
889d51a1 365 dir_add(collected, mtime);
1da177e4
LT
366 } else if (S_ISBLK(mode) || S_ISCHR(mode) ||
367 S_ISFIFO(mode) || S_ISSOCK(mode)) {
368 if (maybe_link() == 0) {
5fee64fc 369 init_mknod(collected, mode, rdev);
b873498f 370 init_chown(collected, uid, gid, 0);
1097742e 371 init_chmod(collected, mode);
889d51a1 372 do_utime(collected, mtime);
1da177e4
LT
373 }
374 }
375 return 0;
376}
377
378static int __init do_copy(void)
379{
c34d85ac 380 if (byte_count >= body_len) {
38b08223 381 struct timespec64 t[2] = { };
bf6419e4 382 if (xwrite(wfile, victim, body_len, &wfile_pos) != body_len)
9687fd91 383 error("write error");
38b08223
CH
384
385 t[0].tv_sec = mtime;
386 t[1].tv_sec = mtime;
387 vfs_utimes(&wfile->f_path, t);
388
bf6419e4 389 fput(wfile);
1da177e4
LT
390 eat(body_len);
391 state = SkipIt;
392 return 0;
393 } else {
bf6419e4 394 if (xwrite(wfile, victim, byte_count, &wfile_pos) != byte_count)
9687fd91 395 error("write error");
c34d85ac
MR
396 body_len -= byte_count;
397 eat(byte_count);
1da177e4
LT
398 return 1;
399 }
400}
401
402static int __init do_symlink(void)
403{
404 collected[N_ALIGN(name_len) + body_len] = '\0';
2139a7fb 405 clean_path(collected, 0);
cd3acb6a 406 init_symlink(collected + N_ALIGN(name_len), collected);
b873498f 407 init_chown(collected, uid, gid, AT_SYMLINK_NOFOLLOW);
889d51a1 408 do_utime(collected, mtime);
1da177e4
LT
409 state = SkipIt;
410 next_state = Reset;
411 return 0;
412}
413
414static __initdata int (*actions[])(void) = {
415 [Start] = do_start,
416 [Collect] = do_collect,
417 [GotHeader] = do_header,
418 [SkipIt] = do_skip,
419 [GotName] = do_name,
420 [CopyFile] = do_copy,
421 [GotSymlink] = do_symlink,
422 [Reset] = do_reset,
423};
424
d97b07c5 425static long __init write_buffer(char *buf, unsigned long len)
1da177e4 426{
c34d85ac 427 byte_count = len;
1da177e4
LT
428 victim = buf;
429
430 while (!actions[state]())
431 ;
c34d85ac 432 return len - byte_count;
1da177e4
LT
433}
434
d97b07c5 435static long __init flush_buffer(void *bufv, unsigned long len)
1da177e4 436{
30d65dbf 437 char *buf = (char *) bufv;
d97b07c5
YL
438 long written;
439 long origLen = len;
1da177e4 440 if (message)
30d65dbf 441 return -1;
1da177e4
LT
442 while ((written = write_buffer(buf, len)) < len && !message) {
443 char c = buf[written];
444 if (c == '0') {
445 buf += written;
446 len -= written;
447 state = Start;
448 } else if (c == 0) {
449 buf += written;
450 len -= written;
451 state = Reset;
452 } else
e5eed351 453 error("junk within compressed archive");
1da177e4 454 }
30d65dbf 455 return origLen;
1da177e4
LT
456}
457
d97b07c5 458static unsigned long my_inptr; /* index of next byte to be processed in inbuf */
1da177e4 459
889c92d2 460#include <linux/decompress/generic.h>
1da177e4 461
d97b07c5 462static char * __init unpack_to_rootfs(char *buf, unsigned long len)
1da177e4 463{
d97b07c5 464 long written;
889c92d2 465 decompress_fn decompress;
23a22d57
PA
466 const char *compress_name;
467 static __initdata char msg_buf[64];
889c92d2 468
3265e66b
TP
469 header_buf = kmalloc(110, GFP_KERNEL);
470 symlink_buf = kmalloc(PATH_MAX + N_ALIGN(PATH_MAX) + 1, GFP_KERNEL);
471 name_buf = kmalloc(N_ALIGN(PATH_MAX), GFP_KERNEL);
30d65dbf
AK
472
473 if (!header_buf || !symlink_buf || !name_buf)
dd23e809 474 panic_show_mem("can't allocate buffers");
30d65dbf 475
1da177e4
LT
476 state = Start;
477 this_header = 0;
478 message = NULL;
479 while (!message && len) {
480 loff_t saved_offset = this_header;
481 if (*buf == '0' && !(this_header & 3)) {
482 state = Start;
483 written = write_buffer(buf, len);
484 buf += written;
485 len -= written;
486 continue;
487 }
488 if (!*buf) {
489 buf++;
490 len--;
491 this_header++;
492 continue;
493 }
494 this_header = 0;
23a22d57 495 decompress = decompress_method(buf, len, &compress_name);
6aa7a29a 496 pr_debug("Detected %s compressed data\n", compress_name);
54291362 497 if (decompress) {
d97b07c5 498 int res = decompress(buf, len, NULL, flush_buffer, NULL,
889c92d2 499 &my_inptr, error);
54291362
PL
500 if (res)
501 error("decompressor failed");
502 } else if (compress_name) {
23a22d57
PA
503 if (!message) {
504 snprintf(msg_buf, sizeof msg_buf,
505 "compression method %s not configured",
506 compress_name);
507 message = msg_buf;
508 }
df37bd15 509 } else
e5eed351 510 error("invalid magic at start of compressed archive");
1da177e4 511 if (state != Reset)
e5eed351 512 error("junk at the end of compressed archive");
30d65dbf
AK
513 this_header = saved_offset + my_inptr;
514 buf += my_inptr;
515 len -= my_inptr;
1da177e4 516 }
889d51a1 517 dir_utime();
3265e66b
TP
518 kfree(name_buf);
519 kfree(symlink_buf);
520 kfree(header_buf);
1da177e4
LT
521 return message;
522}
523
0a7b35cb
MN
524static int __initdata do_retain_initrd;
525
526static int __init retain_initrd_param(char *str)
527{
528 if (*str)
529 return 0;
530 do_retain_initrd = 1;
531 return 1;
532}
533__setup("retain_initrd", retain_initrd_param);
534
d8ae8a37
CH
535#ifdef CONFIG_ARCH_HAS_KEEPINITRD
536static int __init keepinitrd_setup(char *__unused)
537{
538 do_retain_initrd = 1;
539 return 1;
540}
541__setup("keepinitrd", keepinitrd_setup);
542#endif
543
ffe8018c
HB
544extern char __initramfs_start[];
545extern unsigned long __initramfs_size;
1da177e4 546#include <linux/initrd.h>
9c15e852 547#include <linux/kexec.h>
0f3d2bd5 548
c72160fe
KW
549void __init reserve_initrd_mem(void)
550{
551 phys_addr_t start;
552 unsigned long size;
553
554 /* Ignore the virtul address computed during device tree parsing */
555 initrd_start = initrd_end = 0;
556
557 if (!phys_initrd_size)
558 return;
559 /*
560 * Round the memory region to page boundaries as per free_initrd_mem()
561 * This allows us to detect whether the pages overlapping the initrd
562 * are in use, but more importantly, reserves the entire set of pages
563 * as we don't want these pages allocated for other purposes.
564 */
565 start = round_down(phys_initrd_start, PAGE_SIZE);
566 size = phys_initrd_size + (phys_initrd_start - start);
567 size = round_up(size, PAGE_SIZE);
568
569 if (!memblock_is_region_memory(start, size)) {
570 pr_err("INITRD: 0x%08llx+0x%08lx is not a memory region",
571 (u64)start, size);
572 goto disable;
573 }
574
575 if (memblock_is_region_reserved(start, size)) {
576 pr_err("INITRD: 0x%08llx+0x%08lx overlaps in-use memory region\n",
577 (u64)start, size);
578 goto disable;
579 }
580
581 memblock_reserve(start, size);
582 /* Now convert initrd to virtual addresses */
583 initrd_start = (unsigned long)__va(phys_initrd_start);
584 initrd_end = initrd_start + phys_initrd_size;
585 initrd_below_start_ok = 1;
586
587 return;
588disable:
589 pr_cont(" - disabling initrd\n");
590 initrd_start = 0;
591 initrd_end = 0;
592}
593
55d5b7dd 594void __weak __init free_initrd_mem(unsigned long start, unsigned long end)
4afd58e1 595{
899ee4af
MR
596#ifdef CONFIG_ARCH_KEEP_MEMBLOCK
597 unsigned long aligned_start = ALIGN_DOWN(start, PAGE_SIZE);
598 unsigned long aligned_end = ALIGN(end, PAGE_SIZE);
599
600 memblock_free(__pa(aligned_start), aligned_end - aligned_start);
601#endif
602
f94f7434
CH
603 free_reserved_area((void *)start, (void *)end, POISON_FREE_INITMEM,
604 "initrd");
4afd58e1
CH
605}
606
2965faa5 607#ifdef CONFIG_KEXEC_CORE
e99332e7 608static bool __init kexec_free_initrd(void)
23091e28 609{
9c15e852
HM
610 unsigned long crashk_start = (unsigned long)__va(crashk_res.start);
611 unsigned long crashk_end = (unsigned long)__va(crashk_res.end);
612
613 /*
614 * If the initrd region is overlapped with crashkernel reserved region,
615 * free only memory that is not part of crashkernel region.
616 */
23091e28
CH
617 if (initrd_start >= crashk_end || initrd_end <= crashk_start)
618 return false;
619
620 /*
621 * Initialize initrd memory region since the kexec boot does not do.
622 */
623 memset((void *)initrd_start, 0, initrd_end - initrd_start);
624 if (initrd_start < crashk_start)
625 free_initrd_mem(initrd_start, crashk_start);
626 if (initrd_end > crashk_end)
627 free_initrd_mem(crashk_end, initrd_end);
628 return true;
0f3d2bd5 629}
23091e28
CH
630#else
631static inline bool kexec_free_initrd(void)
632{
633 return false;
634}
635#endif /* CONFIG_KEXEC_CORE */
0f3d2bd5 636
a841c673 637#ifdef CONFIG_BLK_DEV_RAM
4ada1e81 638static void __init populate_initrd_image(char *err)
7c184ecd
CH
639{
640 ssize_t written;
bf6419e4
CH
641 struct file *file;
642 loff_t pos = 0;
7c184ecd
CH
643
644 unpack_to_rootfs(__initramfs_start, __initramfs_size);
645
646 printk(KERN_INFO "rootfs image is not initramfs (%s); looks like an initrd\n",
647 err);
bf6419e4
CH
648 file = filp_open("/initrd.image", O_WRONLY | O_CREAT, 0700);
649 if (IS_ERR(file))
7c184ecd
CH
650 return;
651
bf6419e4
CH
652 written = xwrite(file, (char *)initrd_start, initrd_end - initrd_start,
653 &pos);
7c184ecd
CH
654 if (written != initrd_end - initrd_start)
655 pr_err("/initrd.image: incomplete write (%zd != %ld)\n",
656 written, initrd_end - initrd_start);
bf6419e4 657 fput(file);
7c184ecd
CH
658}
659#endif /* CONFIG_BLK_DEV_RAM */
660
9a9e0d68 661static int __init populate_rootfs(void)
1da177e4 662{
17a9be31 663 /* Load the built in initramfs */
ffe8018c 664 char *err = unpack_to_rootfs(__initramfs_start, __initramfs_size);
1da177e4 665 if (err)
dd23e809 666 panic_show_mem("%s", err); /* Failed to decompress INTERNAL initramfs */
afef7889
CH
667
668 if (!initrd_start || IS_ENABLED(CONFIG_INITRAMFS_FORCE))
669 goto done;
670
671 if (IS_ENABLED(CONFIG_BLK_DEV_RAM))
a1e6b6c1 672 printk(KERN_INFO "Trying to unpack rootfs image as initramfs...\n");
afef7889
CH
673 else
674 printk(KERN_INFO "Unpacking initramfs...\n");
54c7a891 675
afef7889
CH
676 err = unpack_to_rootfs((char *)initrd_start, initrd_end - initrd_start);
677 if (err) {
9ab6b718 678#ifdef CONFIG_BLK_DEV_RAM
7c184ecd 679 populate_initrd_image(err);
9ab6b718
CH
680#else
681 printk(KERN_EMERG "Initramfs unpacking failed: %s\n", err);
682#endif
1da177e4 683 }
23091e28 684
afef7889 685done:
23091e28
CH
686 /*
687 * If the initrd region is overlapped with crashkernel reserved region,
688 * free only memory that is not part of crashkernel region.
689 */
5d59aa8f 690 if (!do_retain_initrd && initrd_start && !kexec_free_initrd())
23091e28
CH
691 free_initrd_mem(initrd_start, initrd_end);
692 initrd_start = 0;
693 initrd_end = 0;
694
17a9be31 695 flush_delayed_fput();
8d610dd5 696 return 0;
1da177e4 697}
8d610dd5 698rootfs_initcall(populate_rootfs);