blob: 425addaf7c69495bc693434a50a1c2bbafaf382f [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
Arnd Bergmann046aa122017-05-08 15:57:00 -0700301 if (!vfs_lstat(path, &st) && (st.mode ^ fmode) & S_IFMT) {
302 if (S_ISDIR(st.mode))
Christoph Hellwig20cce022020-07-22 11:11:45 +0200303 init_rmdir(path);
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700304 else
Christoph Hellwig8fb9f732020-07-23 08:23:40 +0200305 init_unlink(path);
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700306 }
307}
308
Li Zhijian7c0950d2018-11-30 14:10:09 -0800309static int __init maybe_link(void)
310{
311 if (nlink >= 2) {
312 char *old = find_link(major, minor, ino, mode, collected);
313 if (old) {
314 clean_path(collected, 0);
Christoph Hellwig812931d2020-07-22 11:14:19 +0200315 return (init_link(old, collected) < 0) ? -1 : 1;
Li Zhijian7c0950d2018-11-30 14:10:09 -0800316 }
317 }
318 return 0;
319}
320
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200321static __initdata struct file *wfile;
322static __initdata loff_t wfile_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324static int __init do_name(void)
325{
326 state = SkipIt;
327 next_state = Reset;
328 if (strcmp(collected, "TRAILER!!!") == 0) {
329 free_hash();
330 return 0;
331 }
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700332 clean_path(collected, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (S_ISREG(mode)) {
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700334 int ml = maybe_link();
335 if (ml >= 0) {
336 int openflags = O_WRONLY|O_CREAT;
337 if (ml != 1)
338 openflags |= O_TRUNC;
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200339 wfile = filp_open(collected, openflags, mode);
340 if (IS_ERR(wfile))
341 return 0;
342 wfile_pos = 0;
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700343
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200344 vfs_fchown(wfile, uid, gid);
345 vfs_fchmod(wfile, mode);
346 if (body_len)
347 vfs_truncate(&wfile->f_path, body_len);
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200348 state = CopyFile;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
350 } else if (S_ISDIR(mode)) {
Christoph Hellwig83ff98c2020-07-22 11:14:59 +0200351 init_mkdir(collected, mode);
Christoph Hellwigb8734982020-07-22 11:13:26 +0200352 init_chown(collected, uid, gid, 0);
Christoph Hellwig10977422020-07-22 11:41:02 +0200353 init_chmod(collected, mode);
Nye Liu889d51a2008-10-15 22:01:40 -0700354 dir_add(collected, mtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 } else if (S_ISBLK(mode) || S_ISCHR(mode) ||
356 S_ISFIFO(mode) || S_ISSOCK(mode)) {
357 if (maybe_link() == 0) {
Christoph Hellwig5fee64f2020-07-22 11:41:20 +0200358 init_mknod(collected, mode, rdev);
Christoph Hellwigb8734982020-07-22 11:13:26 +0200359 init_chown(collected, uid, gid, 0);
Christoph Hellwig10977422020-07-22 11:41:02 +0200360 init_chmod(collected, mode);
Nye Liu889d51a2008-10-15 22:01:40 -0700361 do_utime(collected, mtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
363 }
364 return 0;
365}
366
367static int __init do_copy(void)
368{
Mark Rustadc34d85a2014-10-13 15:54:07 -0700369 if (byte_count >= body_len) {
Christoph Hellwig38b08222020-07-30 08:19:00 +0200370 struct timespec64 t[2] = { };
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200371 if (xwrite(wfile, victim, body_len, &wfile_pos) != body_len)
David Engraf9687fd92014-08-08 14:23:16 -0700372 error("write error");
Christoph Hellwig38b08222020-07-30 08:19:00 +0200373
374 t[0].tv_sec = mtime;
375 t[1].tv_sec = mtime;
376 vfs_utimes(&wfile->f_path, t);
377
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200378 fput(wfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 eat(body_len);
380 state = SkipIt;
381 return 0;
382 } else {
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200383 if (xwrite(wfile, victim, byte_count, &wfile_pos) != byte_count)
David Engraf9687fd92014-08-08 14:23:16 -0700384 error("write error");
Mark Rustadc34d85a2014-10-13 15:54:07 -0700385 body_len -= byte_count;
386 eat(byte_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return 1;
388 }
389}
390
391static int __init do_symlink(void)
392{
393 collected[N_ALIGN(name_len) + body_len] = '\0';
H. Peter Anvin2139a7f2006-06-26 00:28:02 -0700394 clean_path(collected, 0);
Christoph Hellwigcd3acb62020-07-22 11:14:36 +0200395 init_symlink(collected + N_ALIGN(name_len), collected);
Christoph Hellwigb8734982020-07-22 11:13:26 +0200396 init_chown(collected, uid, gid, AT_SYMLINK_NOFOLLOW);
Nye Liu889d51a2008-10-15 22:01:40 -0700397 do_utime(collected, mtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 state = SkipIt;
399 next_state = Reset;
400 return 0;
401}
402
403static __initdata int (*actions[])(void) = {
404 [Start] = do_start,
405 [Collect] = do_collect,
406 [GotHeader] = do_header,
407 [SkipIt] = do_skip,
408 [GotName] = do_name,
409 [CopyFile] = do_copy,
410 [GotSymlink] = do_symlink,
411 [Reset] = do_reset,
412};
413
Yinghai Lud97b07c2014-08-08 14:23:14 -0700414static long __init write_buffer(char *buf, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Mark Rustadc34d85a2014-10-13 15:54:07 -0700416 byte_count = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 victim = buf;
418
419 while (!actions[state]())
420 ;
Mark Rustadc34d85a2014-10-13 15:54:07 -0700421 return len - byte_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
Yinghai Lud97b07c2014-08-08 14:23:14 -0700424static long __init flush_buffer(void *bufv, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Alain Knaff30d65db2009-01-04 22:46:17 +0100426 char *buf = (char *) bufv;
Yinghai Lud97b07c2014-08-08 14:23:14 -0700427 long written;
428 long origLen = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (message)
Alain Knaff30d65db2009-01-04 22:46:17 +0100430 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 while ((written = write_buffer(buf, len)) < len && !message) {
432 char c = buf[written];
433 if (c == '0') {
434 buf += written;
435 len -= written;
436 state = Start;
437 } else if (c == 0) {
438 buf += written;
439 len -= written;
440 state = Reset;
441 } else
David Engrafe5eed352019-03-07 16:30:19 -0800442 error("junk within compressed archive");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
Alain Knaff30d65db2009-01-04 22:46:17 +0100444 return origLen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Yinghai Lud97b07c2014-08-08 14:23:14 -0700447static unsigned long my_inptr; /* index of next byte to be processed in inbuf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
H. Peter Anvin889c92d2009-01-08 15:14:17 -0800449#include <linux/decompress/generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Yinghai Lud97b07c2014-08-08 14:23:14 -0700451static char * __init unpack_to_rootfs(char *buf, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Yinghai Lud97b07c2014-08-08 14:23:14 -0700453 long written;
H. Peter Anvin889c92d2009-01-08 15:14:17 -0800454 decompress_fn decompress;
H. Peter Anvin23a22d52009-01-12 14:24:04 -0800455 const char *compress_name;
456 static __initdata char msg_buf[64];
H. Peter Anvin889c92d2009-01-08 15:14:17 -0800457
Thomas Petazzoni3265e662008-04-29 00:59:43 -0700458 header_buf = kmalloc(110, GFP_KERNEL);
459 symlink_buf = kmalloc(PATH_MAX + N_ALIGN(PATH_MAX) + 1, GFP_KERNEL);
460 name_buf = kmalloc(N_ALIGN(PATH_MAX), GFP_KERNEL);
Alain Knaff30d65db2009-01-04 22:46:17 +0100461
462 if (!header_buf || !symlink_buf || !name_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 panic("can't allocate buffers");
Alain Knaff30d65db2009-01-04 22:46:17 +0100464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 state = Start;
466 this_header = 0;
467 message = NULL;
468 while (!message && len) {
469 loff_t saved_offset = this_header;
470 if (*buf == '0' && !(this_header & 3)) {
471 state = Start;
472 written = write_buffer(buf, len);
473 buf += written;
474 len -= written;
475 continue;
476 }
477 if (!*buf) {
478 buf++;
479 len--;
480 this_header++;
481 continue;
482 }
483 this_header = 0;
H. Peter Anvin23a22d52009-01-12 14:24:04 -0800484 decompress = decompress_method(buf, len, &compress_name);
Daniel M. Weeks6aa7a292014-04-07 15:39:16 -0700485 pr_debug("Detected %s compressed data\n", compress_name);
Phillip Lougher54291362009-12-14 21:45:19 +0000486 if (decompress) {
Yinghai Lud97b07c2014-08-08 14:23:14 -0700487 int res = decompress(buf, len, NULL, flush_buffer, NULL,
H. Peter Anvin889c92d2009-01-08 15:14:17 -0800488 &my_inptr, error);
Phillip Lougher54291362009-12-14 21:45:19 +0000489 if (res)
490 error("decompressor failed");
491 } else if (compress_name) {
H. Peter Anvin23a22d52009-01-12 14:24:04 -0800492 if (!message) {
493 snprintf(msg_buf, sizeof msg_buf,
494 "compression method %s not configured",
495 compress_name);
496 message = msg_buf;
497 }
Phillip Lougherdf37bd12010-04-23 13:18:11 -0400498 } else
David Engrafe5eed352019-03-07 16:30:19 -0800499 error("invalid magic at start of compressed archive");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (state != Reset)
David Engrafe5eed352019-03-07 16:30:19 -0800501 error("junk at the end of compressed archive");
Alain Knaff30d65db2009-01-04 22:46:17 +0100502 this_header = saved_offset + my_inptr;
503 buf += my_inptr;
504 len -= my_inptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
Nye Liu889d51a2008-10-15 22:01:40 -0700506 dir_utime();
Thomas Petazzoni3265e662008-04-29 00:59:43 -0700507 kfree(name_buf);
508 kfree(symlink_buf);
509 kfree(header_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return message;
511}
512
Michael Neuling0a7b35cb2007-02-10 01:44:33 -0800513static int __initdata do_retain_initrd;
514
515static int __init retain_initrd_param(char *str)
516{
517 if (*str)
518 return 0;
519 do_retain_initrd = 1;
520 return 1;
521}
522__setup("retain_initrd", retain_initrd_param);
523
Christoph Hellwigd8ae8a32019-05-13 17:18:30 -0700524#ifdef CONFIG_ARCH_HAS_KEEPINITRD
525static int __init keepinitrd_setup(char *__unused)
526{
527 do_retain_initrd = 1;
528 return 1;
529}
530__setup("keepinitrd", keepinitrd_setup);
531#endif
532
Hendrik Bruecknerffe80182010-09-17 15:24:11 -0700533extern char __initramfs_start[];
534extern unsigned long __initramfs_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535#include <linux/initrd.h>
Haren Myneni9c15e852006-02-10 01:51:05 -0800536#include <linux/kexec.h>
Jan Beulich0f3d2bd2005-09-13 01:25:12 -0700537
Christoph Hellwig4afd58e2019-05-13 17:18:34 -0700538void __weak free_initrd_mem(unsigned long start, unsigned long end)
539{
Mike Rapoport899ee4a2019-09-28 11:02:26 +0300540#ifdef CONFIG_ARCH_KEEP_MEMBLOCK
541 unsigned long aligned_start = ALIGN_DOWN(start, PAGE_SIZE);
542 unsigned long aligned_end = ALIGN(end, PAGE_SIZE);
543
544 memblock_free(__pa(aligned_start), aligned_end - aligned_start);
545#endif
546
Christoph Hellwigf94f7432019-05-13 17:18:37 -0700547 free_reserved_area((void *)start, (void *)end, POISON_FREE_INITMEM,
548 "initrd");
Christoph Hellwig4afd58e2019-05-13 17:18:34 -0700549}
550
Dave Young2965faa2015-09-09 15:38:55 -0700551#ifdef CONFIG_KEXEC_CORE
Linus Torvaldse99332e2020-05-09 17:50:03 -0700552static bool __init kexec_free_initrd(void)
Christoph Hellwig23091e22019-05-13 17:18:21 -0700553{
Haren Myneni9c15e852006-02-10 01:51:05 -0800554 unsigned long crashk_start = (unsigned long)__va(crashk_res.start);
555 unsigned long crashk_end = (unsigned long)__va(crashk_res.end);
556
557 /*
558 * If the initrd region is overlapped with crashkernel reserved region,
559 * free only memory that is not part of crashkernel region.
560 */
Christoph Hellwig23091e22019-05-13 17:18:21 -0700561 if (initrd_start >= crashk_end || initrd_end <= crashk_start)
562 return false;
563
564 /*
565 * Initialize initrd memory region since the kexec boot does not do.
566 */
567 memset((void *)initrd_start, 0, initrd_end - initrd_start);
568 if (initrd_start < crashk_start)
569 free_initrd_mem(initrd_start, crashk_start);
570 if (initrd_end > crashk_end)
571 free_initrd_mem(crashk_end, initrd_end);
572 return true;
Jan Beulich0f3d2bd2005-09-13 01:25:12 -0700573}
Christoph Hellwig23091e22019-05-13 17:18:21 -0700574#else
575static inline bool kexec_free_initrd(void)
576{
577 return false;
578}
579#endif /* CONFIG_KEXEC_CORE */
Jan Beulich0f3d2bd2005-09-13 01:25:12 -0700580
Andrew Mortona841c672019-02-20 22:18:52 -0800581#ifdef CONFIG_BLK_DEV_RAM
Geert Uytterhoeven4ada1e82019-06-28 12:07:03 -0700582static void __init populate_initrd_image(char *err)
Christoph Hellwig7c184ec2019-05-13 17:18:24 -0700583{
584 ssize_t written;
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200585 struct file *file;
586 loff_t pos = 0;
Christoph Hellwig7c184ec2019-05-13 17:18:24 -0700587
588 unpack_to_rootfs(__initramfs_start, __initramfs_size);
589
590 printk(KERN_INFO "rootfs image is not initramfs (%s); looks like an initrd\n",
591 err);
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200592 file = filp_open("/initrd.image", O_WRONLY | O_CREAT, 0700);
593 if (IS_ERR(file))
Christoph Hellwig7c184ec2019-05-13 17:18:24 -0700594 return;
595
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200596 written = xwrite(file, (char *)initrd_start, initrd_end - initrd_start,
597 &pos);
Christoph Hellwig7c184ec2019-05-13 17:18:24 -0700598 if (written != initrd_end - initrd_start)
599 pr_err("/initrd.image: incomplete write (%zd != %ld)\n",
600 written, initrd_end - initrd_start);
Christoph Hellwigbf6419e2020-07-14 08:56:19 +0200601 fput(file);
Christoph Hellwig7c184ec2019-05-13 17:18:24 -0700602}
603#endif /* CONFIG_BLK_DEV_RAM */
604
Linus Torvalds9a9e0d62008-03-15 11:53:32 -0700605static int __init populate_rootfs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Stafford Horne17a9be32017-05-04 21:15:56 +0900607 /* Load the built in initramfs */
Hendrik Bruecknerffe80182010-09-17 15:24:11 -0700608 char *err = unpack_to_rootfs(__initramfs_start, __initramfs_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (err)
Tetsuo Handa499a4582014-01-23 15:54:56 -0800610 panic("%s", err); /* Failed to decompress INTERNAL initramfs */
Christoph Hellwig54c7a892019-05-13 17:18:17 -0700611
Christoph Hellwigafef7882019-05-13 17:18:27 -0700612 if (!initrd_start || IS_ENABLED(CONFIG_INITRAMFS_FORCE))
613 goto done;
614
615 if (IS_ENABLED(CONFIG_BLK_DEV_RAM))
616 printk(KERN_INFO "Trying to unpack rootfs image as initramfs...\n");
617 else
618 printk(KERN_INFO "Unpacking initramfs...\n");
619
620 err = unpack_to_rootfs((char *)initrd_start, initrd_end - initrd_start);
621 if (err) {
Christoph Hellwig9ab6b712020-06-06 13:51:52 +0200622#ifdef CONFIG_BLK_DEV_RAM
Christoph Hellwig7c184ec2019-05-13 17:18:24 -0700623 populate_initrd_image(err);
Christoph Hellwig9ab6b712020-06-06 13:51:52 +0200624#else
625 printk(KERN_EMERG "Initramfs unpacking failed: %s\n", err);
626#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
Christoph Hellwig23091e22019-05-13 17:18:21 -0700628
Christoph Hellwigafef7882019-05-13 17:18:27 -0700629done:
Christoph Hellwig23091e22019-05-13 17:18:21 -0700630 /*
631 * If the initrd region is overlapped with crashkernel reserved region,
632 * free only memory that is not part of crashkernel region.
633 */
Steven Price5d59aa82019-05-17 14:31:47 -0700634 if (!do_retain_initrd && initrd_start && !kexec_free_initrd())
Christoph Hellwig23091e22019-05-13 17:18:21 -0700635 free_initrd_mem(initrd_start, initrd_end);
636 initrd_start = 0;
637 initrd_end = 0;
638
Stafford Horne17a9be32017-05-04 21:15:56 +0900639 flush_delayed_fput();
Linus Torvalds8d610dd2006-12-11 12:12:04 -0800640 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
Linus Torvalds8d610dd2006-12-11 12:12:04 -0800642rootfs_initcall(populate_rootfs);