blob: 744e111baba4103d4e4da32b6d2c9826a0c05350 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#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>
Li, Shaohuadf520922008-08-13 17:26:01 +08009#include <linux/dirent.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/syscalls.h>
Nye Liu889d51a2008-10-15 22:01:40 -070011#include <linux/utime.h>
Lokesh Vutla08865512017-02-27 14:28:12 -080012#include <linux/file.h>
Mike Rapoport899ee4a2019-09-28 11:02:26 +030013#include <linux/memblock.h>
Christoph Hellwigb2a74d52020-06-06 13:59:54 +020014#include <linux/namei.h>
Christoph Hellwig8fb9f732020-07-23 08:23:40 +020015#include <linux/init_syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Christoph Hellwigbf6419e2020-07-14 08:56:19 +020017static ssize_t __init xwrite(struct file *file, const char *p, size_t count,
18 loff_t *pos)
Yinghai Lu38747432014-08-08 14:23:12 -070019{
20 ssize_t out = 0;
21
22 /* sys_write only can write MAX_RW_COUNT aka 2G-4K bytes at most */
23 while (count) {
Christoph Hellwigbf6419e2020-07-14 08:56:19 +020024 ssize_t rv = kernel_write(file, p, count, pos);
Yinghai Lu38747432014-08-08 14:23:12 -070025
26 if (rv < 0) {
27 if (rv == -EINTR || rv == -EAGAIN)
28 continue;
29 return out ? out : rv;
30 } else if (rv == 0)
31 break;
32
33 p += rv;
34 out += rv;
35 count -= rv;
36 }
37
38 return out;
39}
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static __initdata char *message;
42static void __init error(char *x)
43{
44 if (!message)
45 message = x;
46}
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/* link hash */
49
Mark Huang6a050da2006-05-15 09:44:03 -070050#define N_ALIGN(len) ((((len) + 1) & ~3) + 2)
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static __initdata struct hash {
53 int ino, minor, major;
Al Viro685dd2d2011-07-26 04:34:13 -040054 umode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 struct hash *next;
Mark Huang6a050da2006-05-15 09:44:03 -070056 char name[N_ALIGN(PATH_MAX)];
Linus Torvalds1da177e2005-04-16 15:20:36 -070057} *head[32];
58
59static inline int hash(int major, int minor, int ino)
60{
61 unsigned long tmp = ino + minor + (major << 3);
62 tmp += tmp >> 5;
63 return tmp & 31;
64}
65
H. Peter Anvin2139a7f2006-06-26 00:28:02 -070066static char __init *find_link(int major, int minor, int ino,
Al Viro685dd2d2011-07-26 04:34:13 -040067 umode_t mode, char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
69 struct hash **p, *q;
70 for (p = head + hash(major, minor, ino); *p; p = &(*p)->next) {
71 if ((*p)->ino != ino)
72 continue;
73 if ((*p)->minor != minor)
74 continue;
75 if ((*p)->major != major)
76 continue;
H. Peter Anvin2139a7f2006-06-26 00:28:02 -070077 if (((*p)->mode ^ mode) & S_IFMT)
78 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return (*p)->name;
80 }
Thomas Petazzoni3265e662008-04-29 00:59:43 -070081 q = kmalloc(sizeof(struct hash), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 if (!q)
83 panic("can't allocate link hash entry");
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 q->major = major;
H. Peter Anvin2139a7f2006-06-26 00:28:02 -070085 q->minor = minor;
86 q->ino = ino;
87 q->mode = mode;
Mark Huang6a050da2006-05-15 09:44:03 -070088 strcpy(q->name, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 q->next = NULL;
90 *p = q;
91 return NULL;
92}
93
94static void __init free_hash(void)
95{
96 struct hash **p, *q;
97 for (p = head; p < head + 32; p++) {
98 while (*p) {
99 q = *p;
100 *p = q->next;
Thomas Petazzoni3265e662008-04-29 00:59:43 -0700101 kfree(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
103 }
104}
105
Arnd Bergmanne35c4c62017-11-17 15:31:04 -0800106static long __init do_utime(char *filename, time64_t mtime)
Nye Liu889d51a2008-10-15 22:01:40 -0700107{
Deepa Dinamaniaaed2dd2017-08-02 19:51:15 -0700108 struct timespec64 t[2];
Nye Liu889d51a2008-10-15 22:01:40 -0700109
110 t[0].tv_sec = mtime;
111 t[0].tv_nsec = 0;
112 t[1].tv_sec = mtime;
113 t[1].tv_nsec = 0;
114
115 return do_utimes(AT_FDCWD, filename, t, AT_SYMLINK_NOFOLLOW);
116}
117
118static __initdata LIST_HEAD(dir_list);
119struct dir_entry {
120 struct list_head list;
121 char *name;
Arnd Bergmanne35c4c62017-11-17 15:31:04 -0800122 time64_t mtime;
Nye Liu889d51a2008-10-15 22:01:40 -0700123};
124
Arnd Bergmanne35c4c62017-11-17 15:31:04 -0800125static void __init dir_add(const char *name, time64_t mtime)
Nye Liu889d51a2008-10-15 22:01:40 -0700126{
127 struct dir_entry *de = kmalloc(sizeof(struct dir_entry), GFP_KERNEL);
128 if (!de)
129 panic("can't allocate dir_entry buffer");
130 INIT_LIST_HEAD(&de->list);
131 de->name = kstrdup(name, GFP_KERNEL);
132 de->mtime = mtime;
133 list_add(&de->list, &dir_list);
134}
135
136static void __init dir_utime(void)
137{
138 struct dir_entry *de, *tmp;
139 list_for_each_entry_safe(de, tmp, &dir_list, list) {
140 list_del(&de->list);
141 do_utime(de->name, de->mtime);
142 kfree(de->name);
143 kfree(de);
144 }
145}
146
Arnd Bergmanne35c4c62017-11-17 15:31:04 -0800147static __initdata time64_t mtime;
Nye Liu889d51a2008-10-15 22:01:40 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/* cpio header parsing */
150
151static __initdata unsigned long ino, major, minor, nlink;
Al Viro685dd2d2011-07-26 04:34:13 -0400152static __initdata umode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static __initdata unsigned long body_len, name_len;
154static __initdata uid_t uid;
155static __initdata gid_t gid;
156static __initdata unsigned rdev;
157
158static void __init parse_header(char *s)
159{
160 unsigned long parsed[12];
161 char buf[9];
162 int i;
163
164 buf[8] = '\0';
165 for (i = 0, s += 6; i < 12; i++, s += 8) {
166 memcpy(buf, s, 8);
167 parsed[i] = simple_strtoul(buf, NULL, 16);
168 }
169 ino = parsed[0];
170 mode = parsed[1];
171 uid = parsed[2];
172 gid = parsed[3];
173 nlink = parsed[4];
Arnd Bergmanne35c4c62017-11-17 15:31:04 -0800174 mtime = parsed[5]; /* breaks in y2106 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 body_len = parsed[6];
176 major = parsed[7];
177 minor = parsed[8];
178 rdev = new_encode_dev(MKDEV(parsed[9], parsed[10]));
179 name_len = parsed[11];
180}
181
182/* FSM */
183
184static __initdata enum state {
185 Start,
186 Collect,
187 GotHeader,
188 SkipIt,
189 GotName,
190 CopyFile,
191 GotSymlink,
192 Reset
193} state, next_state;
194
195static __initdata char *victim;
Mark Rustadc34d85a2014-10-13 15:54:07 -0700196static unsigned long byte_count __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197static __initdata loff_t this_header, next_header;
198
Al Virob0a5ab92007-07-26 17:33:59 +0100199static inline void __init eat(unsigned n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 victim += n;
202 this_header += n;
Mark Rustadc34d85a2014-10-13 15:54:07 -0700203 byte_count -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206static __initdata char *collected;
Yinghai Lud97b07c2014-08-08 14:23:14 -0700207static long remains __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208static __initdata char *collect;
209
210static void __init read_into(char *buf, unsigned size, enum state next)
211{
Mark Rustadc34d85a2014-10-13 15:54:07 -0700212 if (byte_count >= size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 collected = victim;
214 eat(size);
215 state = next;
216 } else {
217 collect = collected = buf;
218 remains = size;
219 next_state = next;
220 state = Collect;
221 }
222}
223
224static __initdata char *header_buf, *symlink_buf, *name_buf;
225
226static int __init do_start(void)
227{
228 read_into(header_buf, 110, GotHeader);
229 return 0;
230}
231
232static int __init do_collect(void)
233{
Yinghai Lud97b07c2014-08-08 14:23:14 -0700234 unsigned long n = remains;
Mark Rustadc34d85a2014-10-13 15:54:07 -0700235 if (byte_count < n)
236 n = byte_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 memcpy(collect, victim, n);
238 eat(n);
239 collect += n;
240 if ((remains -= n) != 0)
241 return 1;
242 state = next_state;
243 return 0;
244}
245
246static int __init do_header(void)
247{
Arjan van de Ven2e591bb2006-12-06 20:37:19 -0800248 if (memcmp(collected, "070707", 6)==0) {
249 error("incorrect cpio method used: use -H newc option");
250 return 1;
251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (memcmp(collected, "070701", 6)) {
253 error("no cpio magic");
254 return 1;
255 }
256 parse_header(collected);
257 next_header = this_header + N_ALIGN(name_len) + body_len;
258 next_header = (next_header + 3) & ~3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 state = SkipIt;
260 if (name_len <= 0 || name_len > PATH_MAX)
261 return 0;
262 if (S_ISLNK(mode)) {
263 if (body_len > PATH_MAX)
264 return 0;
265 collect = collected = symlink_buf;
266 remains = N_ALIGN(name_len) + body_len;
267 next_state = GotSymlink;
268 state = Collect;
269 return 0;
270 }
271 if (S_ISREG(mode) || !body_len)
272 read_into(name_buf, N_ALIGN(name_len), GotName);
273 return 0;
274}
275
276static int __init do_skip(void)
277{
Mark Rustadc34d85a2014-10-13 15:54:07 -0700278 if (this_header + byte_count < next_header) {
279 eat(byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return 1;
281 } else {
282 eat(next_header - this_header);
283 state = next_state;
284 return 0;
285 }
286}
287
288static int __init do_reset(void)
289{
Mark Rustadc34d85a2014-10-13 15:54:07 -0700290 while (byte_count && *victim == '\0')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 eat(1);
Mark Rustadc34d85a2014-10-13 15:54:07 -0700292 if (byte_count && (this_header & 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 error("broken padding");
294 return 1;
295}
296
Mark Rustadc34d85a2014-10-13 15:54:07 -0700297static void __init clean_path(char *path, umode_t fmode)
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700298{
Arnd Bergmann046aa122017-05-08 15:57:00 -0700299 struct kstat st;
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700300
Christoph Hellwig716308a2020-07-22 11:15:40 +0200301 if (init_stat(path, &st, AT_SYMLINK_NOFOLLOW) &&
302 (st.mode ^ fmode) & S_IFMT) {
Arnd Bergmann046aa122017-05-08 15:57:00 -0700303 if (S_ISDIR(st.mode))
Christoph Hellwig20cce022020-07-22 11:11:45 +0200304 init_rmdir(path);
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700305 else
Christoph Hellwig8fb9f732020-07-23 08:23:40 +0200306 init_unlink(path);
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700307 }
308}
309
Li Zhijian7c0950d2018-11-30 14:10:09 -0800310static int __init maybe_link(void)
311{
312 if (nlink >= 2) {
313 char *old = find_link(major, minor, ino, mode, collected);
314 if (old) {
315 clean_path(collected, 0);
Christoph Hellwig812931d2020-07-22 11:14:19 +0200316 return (init_link(old, collected) < 0) ? -1 : 1;
Li Zhijian7c0950d2018-11-30 14:10:09 -0800317 }
318 }
319 return 0;
320}
321
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200322static __initdata struct file *wfile;
323static __initdata loff_t wfile_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325static int __init do_name(void)
326{
327 state = SkipIt;
328 next_state = Reset;
329 if (strcmp(collected, "TRAILER!!!") == 0) {
330 free_hash();
331 return 0;
332 }
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700333 clean_path(collected, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (S_ISREG(mode)) {
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700335 int ml = maybe_link();
336 if (ml >= 0) {
337 int openflags = O_WRONLY|O_CREAT;
338 if (ml != 1)
339 openflags |= O_TRUNC;
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200340 wfile = filp_open(collected, openflags, mode);
341 if (IS_ERR(wfile))
342 return 0;
343 wfile_pos = 0;
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700344
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200345 vfs_fchown(wfile, uid, gid);
346 vfs_fchmod(wfile, mode);
347 if (body_len)
348 vfs_truncate(&wfile->f_path, body_len);
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200349 state = CopyFile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351 } else if (S_ISDIR(mode)) {
Christoph Hellwig83ff98c2020-07-22 11:14:59 +0200352 init_mkdir(collected, mode);
Christoph Hellwigb8734982020-07-22 11:13:26 +0200353 init_chown(collected, uid, gid, 0);
Christoph Hellwig10977422020-07-22 11:41:02 +0200354 init_chmod(collected, mode);
Nye Liu889d51a2008-10-15 22:01:40 -0700355 dir_add(collected, mtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 } else if (S_ISBLK(mode) || S_ISCHR(mode) ||
357 S_ISFIFO(mode) || S_ISSOCK(mode)) {
358 if (maybe_link() == 0) {
Christoph Hellwig5fee64f2020-07-22 11:41:20 +0200359 init_mknod(collected, mode, rdev);
Christoph Hellwigb8734982020-07-22 11:13:26 +0200360 init_chown(collected, uid, gid, 0);
Christoph Hellwig10977422020-07-22 11:41:02 +0200361 init_chmod(collected, mode);
Nye Liu889d51a2008-10-15 22:01:40 -0700362 do_utime(collected, mtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
364 }
365 return 0;
366}
367
368static int __init do_copy(void)
369{
Mark Rustadc34d85a2014-10-13 15:54:07 -0700370 if (byte_count >= body_len) {
Christoph Hellwig38b08222020-07-30 08:19:00 +0200371 struct timespec64 t[2] = { };
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200372 if (xwrite(wfile, victim, body_len, &wfile_pos) != body_len)
David Engraf9687fd92014-08-08 14:23:16 -0700373 error("write error");
Christoph Hellwig38b08222020-07-30 08:19:00 +0200374
375 t[0].tv_sec = mtime;
376 t[1].tv_sec = mtime;
377 vfs_utimes(&wfile->f_path, t);
378
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200379 fput(wfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 eat(body_len);
381 state = SkipIt;
382 return 0;
383 } else {
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200384 if (xwrite(wfile, victim, byte_count, &wfile_pos) != byte_count)
David Engraf9687fd92014-08-08 14:23:16 -0700385 error("write error");
Mark Rustadc34d85a2014-10-13 15:54:07 -0700386 body_len -= byte_count;
387 eat(byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return 1;
389 }
390}
391
392static int __init do_symlink(void)
393{
394 collected[N_ALIGN(name_len) + body_len] = '\0';
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700395 clean_path(collected, 0);
Christoph Hellwigcd3acb62020-07-22 11:14:36 +0200396 init_symlink(collected + N_ALIGN(name_len), collected);
Christoph Hellwigb8734982020-07-22 11:13:26 +0200397 init_chown(collected, uid, gid, AT_SYMLINK_NOFOLLOW);
Nye Liu889d51a2008-10-15 22:01:40 -0700398 do_utime(collected, mtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 state = SkipIt;
400 next_state = Reset;
401 return 0;
402}
403
404static __initdata int (*actions[])(void) = {
405 [Start] = do_start,
406 [Collect] = do_collect,
407 [GotHeader] = do_header,
408 [SkipIt] = do_skip,
409 [GotName] = do_name,
410 [CopyFile] = do_copy,
411 [GotSymlink] = do_symlink,
412 [Reset] = do_reset,
413};
414
Yinghai Lud97b07c2014-08-08 14:23:14 -0700415static long __init write_buffer(char *buf, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Mark Rustadc34d85a2014-10-13 15:54:07 -0700417 byte_count = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 victim = buf;
419
420 while (!actions[state]())
421 ;
Mark Rustadc34d85a2014-10-13 15:54:07 -0700422 return len - byte_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Yinghai Lud97b07c2014-08-08 14:23:14 -0700425static long __init flush_buffer(void *bufv, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Alain Knaff30d65db2009-01-04 22:46:17 +0100427 char *buf = (char *) bufv;
Yinghai Lud97b07c2014-08-08 14:23:14 -0700428 long written;
429 long origLen = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (message)
Alain Knaff30d65db2009-01-04 22:46:17 +0100431 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 while ((written = write_buffer(buf, len)) < len && !message) {
433 char c = buf[written];
434 if (c == '0') {
435 buf += written;
436 len -= written;
437 state = Start;
438 } else if (c == 0) {
439 buf += written;
440 len -= written;
441 state = Reset;
442 } else
David Engrafe5eed352019-03-07 16:30:19 -0800443 error("junk within compressed archive");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
Alain Knaff30d65db2009-01-04 22:46:17 +0100445 return origLen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447
Yinghai Lud97b07c2014-08-08 14:23:14 -0700448static unsigned long my_inptr; /* index of next byte to be processed in inbuf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
H. Peter Anvin889c92d2009-01-08 15:14:17 -0800450#include <linux/decompress/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Yinghai Lud97b07c2014-08-08 14:23:14 -0700452static char * __init unpack_to_rootfs(char *buf, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Yinghai Lud97b07c2014-08-08 14:23:14 -0700454 long written;
H. Peter Anvin889c92d2009-01-08 15:14:17 -0800455 decompress_fn decompress;
H. Peter Anvin23a22d52009-01-12 14:24:04 -0800456 const char *compress_name;
457 static __initdata char msg_buf[64];
H. Peter Anvin889c92d2009-01-08 15:14:17 -0800458
Thomas Petazzoni3265e662008-04-29 00:59:43 -0700459 header_buf = kmalloc(110, GFP_KERNEL);
460 symlink_buf = kmalloc(PATH_MAX + N_ALIGN(PATH_MAX) + 1, GFP_KERNEL);
461 name_buf = kmalloc(N_ALIGN(PATH_MAX), GFP_KERNEL);
Alain Knaff30d65db2009-01-04 22:46:17 +0100462
463 if (!header_buf || !symlink_buf || !name_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 panic("can't allocate buffers");
Alain Knaff30d65db2009-01-04 22:46:17 +0100465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 state = Start;
467 this_header = 0;
468 message = NULL;
469 while (!message && len) {
470 loff_t saved_offset = this_header;
471 if (*buf == '0' && !(this_header & 3)) {
472 state = Start;
473 written = write_buffer(buf, len);
474 buf += written;
475 len -= written;
476 continue;
477 }
478 if (!*buf) {
479 buf++;
480 len--;
481 this_header++;
482 continue;
483 }
484 this_header = 0;
H. Peter Anvin23a22d52009-01-12 14:24:04 -0800485 decompress = decompress_method(buf, len, &compress_name);
Daniel M. Weeks6aa7a292014-04-07 15:39:16 -0700486 pr_debug("Detected %s compressed data\n", compress_name);
Phillip Lougher54291362009-12-14 21:45:19 +0000487 if (decompress) {
Yinghai Lud97b07c2014-08-08 14:23:14 -0700488 int res = decompress(buf, len, NULL, flush_buffer, NULL,
H. Peter Anvin889c92d2009-01-08 15:14:17 -0800489 &my_inptr, error);
Phillip Lougher54291362009-12-14 21:45:19 +0000490 if (res)
491 error("decompressor failed");
492 } else if (compress_name) {
H. Peter Anvin23a22d52009-01-12 14:24:04 -0800493 if (!message) {
494 snprintf(msg_buf, sizeof msg_buf,
495 "compression method %s not configured",
496 compress_name);
497 message = msg_buf;
498 }
Phillip Lougherdf37bd12010-04-23 13:18:11 -0400499 } else
David Engrafe5eed352019-03-07 16:30:19 -0800500 error("invalid magic at start of compressed archive");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (state != Reset)
David Engrafe5eed352019-03-07 16:30:19 -0800502 error("junk at the end of compressed archive");
Alain Knaff30d65db2009-01-04 22:46:17 +0100503 this_header = saved_offset + my_inptr;
504 buf += my_inptr;
505 len -= my_inptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
Nye Liu889d51a2008-10-15 22:01:40 -0700507 dir_utime();
Thomas Petazzoni3265e662008-04-29 00:59:43 -0700508 kfree(name_buf);
509 kfree(symlink_buf);
510 kfree(header_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return message;
512}
513
Michael Neuling0a7b35cb2007-02-10 01:44:33 -0800514static int __initdata do_retain_initrd;
515
516static int __init retain_initrd_param(char *str)
517{
518 if (*str)
519 return 0;
520 do_retain_initrd = 1;
521 return 1;
522}
523__setup("retain_initrd", retain_initrd_param);
524
Christoph Hellwigd8ae8a32019-05-13 17:18:30 -0700525#ifdef CONFIG_ARCH_HAS_KEEPINITRD
526static int __init keepinitrd_setup(char *__unused)
527{
528 do_retain_initrd = 1;
529 return 1;
530}
531__setup("keepinitrd", keepinitrd_setup);
532#endif
533
Hendrik Bruecknerffe80182010-09-17 15:24:11 -0700534extern char __initramfs_start[];
535extern unsigned long __initramfs_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536#include <linux/initrd.h>
Haren Myneni9c15e852006-02-10 01:51:05 -0800537#include <linux/kexec.h>
Jan Beulich0f3d2bd2005-09-13 01:25:12 -0700538
Christoph Hellwig4afd58e2019-05-13 17:18:34 -0700539void __weak free_initrd_mem(unsigned long start, unsigned long end)
540{
Mike Rapoport899ee4a2019-09-28 11:02:26 +0300541#ifdef CONFIG_ARCH_KEEP_MEMBLOCK
542 unsigned long aligned_start = ALIGN_DOWN(start, PAGE_SIZE);
543 unsigned long aligned_end = ALIGN(end, PAGE_SIZE);
544
545 memblock_free(__pa(aligned_start), aligned_end - aligned_start);
546#endif
547
Christoph Hellwigf94f7432019-05-13 17:18:37 -0700548 free_reserved_area((void *)start, (void *)end, POISON_FREE_INITMEM,
549 "initrd");
Christoph Hellwig4afd58e2019-05-13 17:18:34 -0700550}
551
Dave Young2965faa2015-09-09 15:38:55 -0700552#ifdef CONFIG_KEXEC_CORE
Linus Torvaldse99332e2020-05-09 17:50:03 -0700553static bool __init kexec_free_initrd(void)
Christoph Hellwig23091e22019-05-13 17:18:21 -0700554{
Haren Myneni9c15e852006-02-10 01:51:05 -0800555 unsigned long crashk_start = (unsigned long)__va(crashk_res.start);
556 unsigned long crashk_end = (unsigned long)__va(crashk_res.end);
557
558 /*
559 * If the initrd region is overlapped with crashkernel reserved region,
560 * free only memory that is not part of crashkernel region.
561 */
Christoph Hellwig23091e22019-05-13 17:18:21 -0700562 if (initrd_start >= crashk_end || initrd_end <= crashk_start)
563 return false;
564
565 /*
566 * Initialize initrd memory region since the kexec boot does not do.
567 */
568 memset((void *)initrd_start, 0, initrd_end - initrd_start);
569 if (initrd_start < crashk_start)
570 free_initrd_mem(initrd_start, crashk_start);
571 if (initrd_end > crashk_end)
572 free_initrd_mem(crashk_end, initrd_end);
573 return true;
Jan Beulich0f3d2bd2005-09-13 01:25:12 -0700574}
Christoph Hellwig23091e22019-05-13 17:18:21 -0700575#else
576static inline bool kexec_free_initrd(void)
577{
578 return false;
579}
580#endif /* CONFIG_KEXEC_CORE */
Jan Beulich0f3d2bd2005-09-13 01:25:12 -0700581
Andrew Mortona841c672019-02-20 22:18:52 -0800582#ifdef CONFIG_BLK_DEV_RAM
Geert Uytterhoeven4ada1e82019-06-28 12:07:03 -0700583static void __init populate_initrd_image(char *err)
Christoph Hellwig7c184ec2019-05-13 17:18:24 -0700584{
585 ssize_t written;
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200586 struct file *file;
587 loff_t pos = 0;
Christoph Hellwig7c184ec2019-05-13 17:18:24 -0700588
589 unpack_to_rootfs(__initramfs_start, __initramfs_size);
590
591 printk(KERN_INFO "rootfs image is not initramfs (%s); looks like an initrd\n",
592 err);
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200593 file = filp_open("/initrd.image", O_WRONLY | O_CREAT, 0700);
594 if (IS_ERR(file))
Christoph Hellwig7c184ec2019-05-13 17:18:24 -0700595 return;
596
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200597 written = xwrite(file, (char *)initrd_start, initrd_end - initrd_start,
598 &pos);
Christoph Hellwig7c184ec2019-05-13 17:18:24 -0700599 if (written != initrd_end - initrd_start)
600 pr_err("/initrd.image: incomplete write (%zd != %ld)\n",
601 written, initrd_end - initrd_start);
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200602 fput(file);
Christoph Hellwig7c184ec2019-05-13 17:18:24 -0700603}
604#endif /* CONFIG_BLK_DEV_RAM */
605
Linus Torvalds9a9e0d62008-03-15 11:53:32 -0700606static int __init populate_rootfs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
Stafford Horne17a9be32017-05-04 21:15:56 +0900608 /* Load the built in initramfs */
Hendrik Bruecknerffe80182010-09-17 15:24:11 -0700609 char *err = unpack_to_rootfs(__initramfs_start, __initramfs_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (err)
Tetsuo Handa499a4582014-01-23 15:54:56 -0800611 panic("%s", err); /* Failed to decompress INTERNAL initramfs */
Christoph Hellwig54c7a892019-05-13 17:18:17 -0700612
Christoph Hellwigafef7882019-05-13 17:18:27 -0700613 if (!initrd_start || IS_ENABLED(CONFIG_INITRAMFS_FORCE))
614 goto done;
615
616 if (IS_ENABLED(CONFIG_BLK_DEV_RAM))
617 printk(KERN_INFO "Trying to unpack rootfs image as initramfs...\n");
618 else
619 printk(KERN_INFO "Unpacking initramfs...\n");
620
621 err = unpack_to_rootfs((char *)initrd_start, initrd_end - initrd_start);
622 if (err) {
Christoph Hellwig9ab6b712020-06-06 13:51:52 +0200623#ifdef CONFIG_BLK_DEV_RAM
Christoph Hellwig7c184ec2019-05-13 17:18:24 -0700624 populate_initrd_image(err);
Christoph Hellwig9ab6b712020-06-06 13:51:52 +0200625#else
626 printk(KERN_EMERG "Initramfs unpacking failed: %s\n", err);
627#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
Christoph Hellwig23091e22019-05-13 17:18:21 -0700629
Christoph Hellwigafef7882019-05-13 17:18:27 -0700630done:
Christoph Hellwig23091e22019-05-13 17:18:21 -0700631 /*
632 * If the initrd region is overlapped with crashkernel reserved region,
633 * free only memory that is not part of crashkernel region.
634 */
Steven Price5d59aa82019-05-17 14:31:47 -0700635 if (!do_retain_initrd && initrd_start && !kexec_free_initrd())
Christoph Hellwig23091e22019-05-13 17:18:21 -0700636 free_initrd_mem(initrd_start, initrd_end);
637 initrd_start = 0;
638 initrd_end = 0;
639
Stafford Horne17a9be32017-05-04 21:15:56 +0900640 flush_delayed_fput();
Linus Torvalds8d610dd2006-12-11 12:12:04 -0800641 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
Linus Torvalds8d610dd2006-12-11 12:12:04 -0800643rootfs_initcall(populate_rootfs);