blob: 49a4e22147b5037dcdbe24c21f329ed4b8ef9952 [file] [log] [blame]
Jamey Sharp153f0112011-05-05 12:03:47 -07001#!/bin/sh
Linus Torvalds1da177e2005-04-16 15:20:36 -07002# Copyright (C) Martin Schlemmer <azarah@nosferatu.za.org>
Oleg Verychf6112ec2007-02-06 02:18:20 +01003# Copyright (C) 2006 Sam Ravnborg <sam@ravnborg.org>
Sam Ravnborgd39a206b2006-04-11 13:24:32 +02004#
Linus Torvalds1da177e2005-04-16 15:20:36 -07005# Released under the terms of the GNU GPL
6#
Sam Ravnborgd39a206b2006-04-11 13:24:32 +02007# Generate a cpio packed initramfs. It uses gen_init_cpio to generate
Alain Knaffa26ee602009-01-07 00:10:27 -08008# the cpio archive, and then compresses it.
Sam Ravnborgd39a206b2006-04-11 13:24:32 +02009# The script may also be used to generate the inputfile used for gen_init_cpio
10# This script assumes that gen_init_cpio is located in usr/ directory
11
12# error out on errors
13set -e
14
15usage() {
16cat << EOF
17Usage:
Masahiro Yamada96680972020-01-05 00:02:34 +090018$0 [-o <file>] [-l <dep_list>] [-u <uid>] [-g <gid>] {-d | <cpio_source>} ...
Alain Knaffa26ee602009-01-07 00:10:27 -080019 -o <file> Create compressed initramfs file named <file> using
20 gen_init_cpio and compressor depending on the extension
Masahiro Yamada96680972020-01-05 00:02:34 +090021 -l <dep_list> Create dependency list named <dep_list>
Sam Ravnborgd39a206b2006-04-11 13:24:32 +020022 -u <uid> User ID to map to user ID 0 (root).
Mike Frysinger4c6f2eb2007-05-10 22:44:28 -070023 <uid> is only meaningful if <cpio_source> is a
24 directory. "squash" forces all files to uid 0.
Sam Ravnborgd39a206b2006-04-11 13:24:32 +020025 -g <gid> Group ID to map to group ID 0 (root).
Mike Frysinger4c6f2eb2007-05-10 22:44:28 -070026 <gid> is only meaningful if <cpio_source> is a
27 directory. "squash" forces all files to gid 0.
Sam Ravnborgd39a206b2006-04-11 13:24:32 +020028 <cpio_source> File list or directory for cpio archive.
Oleg Verychf6112ec2007-02-06 02:18:20 +010029 If <cpio_source> is a .cpio file it will be used
Sam Ravnborgd39a206b2006-04-11 13:24:32 +020030 as direct input to initramfs.
31 -d Output the default cpio list.
32
33All options except -o and -l may be repeated and are interpreted
34sequentially and immediately. -u and -g states are preserved across
35<cpio_source> options so an explicit "-u 0 -g 0" is required
36to reset the root/group mapping.
37EOF
38}
39
Oleg Verychf6112ec2007-02-06 02:18:20 +010040# awk style field access
41# $1 - field number; rest is argument string
42field() {
43 shift $1 ; echo $1
44}
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046default_initramfs() {
Sam Ravnborgd39a206b2006-04-11 13:24:32 +020047 cat <<-EOF >> ${output}
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 # This is a very simple, default initramfs
49
50 dir /dev 0755 0 0
51 nod /dev/console 0600 0 0 c 5 1
52 dir /root 0700 0 0
Sam Ravnborgd39a206b2006-04-11 13:24:32 +020053 # file /kinit usr/kinit/kinit 0755 0 0
54 # slink /init kinit 0755 0 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 EOF
56}
57
58filetype() {
59 local argv1="$1"
60
61 # symlink test must come before file test
62 if [ -L "${argv1}" ]; then
63 echo "slink"
64 elif [ -f "${argv1}" ]; then
65 echo "file"
66 elif [ -d "${argv1}" ]; then
67 echo "dir"
68 elif [ -b "${argv1}" -o -c "${argv1}" ]; then
69 echo "nod"
70 elif [ -p "${argv1}" ]; then
71 echo "pipe"
72 elif [ -S "${argv1}" ]; then
73 echo "sock"
74 else
75 echo "invalid"
76 fi
77 return 0
78}
79
Sam Ravnborgd39a206b2006-04-11 13:24:32 +020080print_mtime() {
81 local my_mtime="0"
82
83 if [ -e "$1" ]; then
84 my_mtime=$(find "$1" -printf "%T@\n" | sort -r | head -n 1)
85 fi
86
87 echo "# Last modified: ${my_mtime}" >> ${output}
88 echo "" >> ${output}
89}
90
91list_parse() {
Masahiro Yamada96680972020-01-05 00:02:34 +090092 if [ -z "$dep_list" -o -L "$1" ]; then
Michal Marek590abbd2016-09-23 09:56:05 +020093 return
94 fi
Masahiro Yamada96680972020-01-05 00:02:34 +090095 echo "$1" | sed 's/:/\\:/g; s/$/ \\/' >> $dep_list
Sam Ravnborgd39a206b2006-04-11 13:24:32 +020096}
97
98# for each file print a line in following format
99# <filetype> <name> <path to file> <octal mode> <uid> <gid>
100# for links, devices etc the format differs. See gen_init_cpio for details
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101parse() {
102 local location="$1"
Jamey Sharp153f0112011-05-05 12:03:47 -0700103 local name="/${location#${srcdir}}"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 # change '//' into '/'
Jamey Sharp153f0112011-05-05 12:03:47 -0700105 name=$(echo "$name" | sed -e 's://*:/:g')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 local mode="$2"
107 local uid="$3"
108 local gid="$4"
109 local ftype=$(filetype "${location}")
110 # remap uid/gid to 0 if necessary
Mike Frysinger4c6f2eb2007-05-10 22:44:28 -0700111 [ "$root_uid" = "squash" ] && uid=0 || [ "$uid" -eq "$root_uid" ] && uid=0
112 [ "$root_gid" = "squash" ] && gid=0 || [ "$gid" -eq "$root_gid" ] && gid=0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 local str="${mode} ${uid} ${gid}"
114
Jamey Sharp153f0112011-05-05 12:03:47 -0700115 [ "${ftype}" = "invalid" ] && return 0
116 [ "${location}" = "${srcdir}" ] && return 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 case "${ftype}" in
119 "file")
120 str="${ftype} ${name} ${location} ${str}"
121 ;;
122 "nod")
Masahiro Yamadacc976612019-12-30 22:20:06 +0900123 local dev="`LC_ALL=C ls -l "${location}"`"
Oleg Verychf6112ec2007-02-06 02:18:20 +0100124 local maj=`field 5 ${dev}`
125 local min=`field 6 ${dev}`
126 maj=${maj%,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Oleg Verychf6112ec2007-02-06 02:18:20 +0100128 [ -b "${location}" ] && dev="b" || dev="c"
129
130 str="${ftype} ${name} ${str} ${dev} ${maj} ${min}"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 ;;
132 "slink")
Felix Fietkaub5a5e4c72008-04-02 14:50:05 +0200133 local target=`readlink "${location}"`
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 str="${ftype} ${name} ${target} ${str}"
135 ;;
136 *)
137 str="${ftype} ${name} ${str}"
138 ;;
139 esac
140
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200141 echo "${str}" >> ${output}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 return 0
144}
145
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200146unknown_option() {
147 printf "ERROR: unknown option \"$arg\"\n" >&2
148 printf "If the filename validly begins with '-', " >&2
149 printf "then it must be prefixed\n" >&2
150 printf "by './' so that it won't be interpreted as an option." >&2
151 printf "\n" >&2
152 usage >&2
153 exit 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200156header() {
157 printf "\n#####################\n# $1\n" >> ${output}
158}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200160# process one directory (incl sub-directories)
161dir_filelist() {
Masahiro Yamada96680972020-01-05 00:02:34 +0900162 header "$1"
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200163
164 srcdir=$(echo "$1" | sed -e 's://*:/:g')
Andrzej Pietrasiewiczf55f2322018-08-17 14:03:19 +0200165 dirlist=$(find "${srcdir}" -printf "%p %m %U %G\n" | LANG=C sort)
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200166
167 # If $dirlist is only one line, then the directory is empty
168 if [ "$(echo "${dirlist}" | wc -l)" -gt 1 ]; then
Masahiro Yamada96680972020-01-05 00:02:34 +0900169 print_mtime "$1"
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200170
171 echo "${dirlist}" | \
172 while read x; do
Masahiro Yamada96680972020-01-05 00:02:34 +0900173 list_parse $x
174 parse $x
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200175 done
176 fi
177}
178
179# if only one file is specified and it is .cpio file then use it direct as fs
180# if a directory is specified then add all files in given direcotry to fs
Masahiro Yamadaa4c968e2020-01-05 00:02:28 +0900181# if a regular file is specified assume it is in gen_init_cpio format
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200182input_file() {
183 source="$1"
184 if [ -f "$1" ]; then
Masahiro Yamada96680972020-01-05 00:02:34 +0900185 header "$1"
Michael Forney1fe7d2b2018-02-06 22:41:17 -0800186 is_cpio="$(echo "$1" | sed 's/^.*\.cpio\(\..*\)\{0,1\}/cpio/')"
Jamey Sharp153f0112011-05-05 12:03:47 -0700187 if [ $2 -eq 0 -a ${is_cpio} = "cpio" ]; then
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200188 cpio_file=$1
Alex Landauc299ec22007-04-26 00:17:29 -0700189 echo "$1" | grep -q '^.*\.cpio\..*' && is_cpio_compressed="compressed"
Masahiro Yamada96680972020-01-05 00:02:34 +0900190 [ -n "$dep_list" ] && echo "$1" >> $dep_list
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200191 return 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 fi
Masahiro Yamada96680972020-01-05 00:02:34 +0900193 print_mtime "$1" >> ${output}
194 cat "$1" >> ${output}
195 if [ -n "$dep_list" ]; then
196 echo "$1 \\" >> $dep_list
Sam Ravnborg46ed9812006-04-30 23:56:33 +0200197 cat "$1" | while read type dir file perm ; do
Jamey Sharp153f0112011-05-05 12:03:47 -0700198 if [ "$type" = "file" ]; then
Masahiro Yamada96680972020-01-05 00:02:34 +0900199 echo "$file \\" >> $dep_list
Sam Ravnborg46ed9812006-04-30 23:56:33 +0200200 fi
201 done
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200202 fi
203 elif [ -d "$1" ]; then
204 dir_filelist "$1"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 else
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200206 echo " ${prog}: Cannot open '$1'" >&2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 exit 1
208 fi
209}
210
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200211prog=$0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212root_uid=0
213root_gid=0
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200214dep_list=
215cpio_file=
216cpio_list=
217output="/dev/stdout"
218output_file=""
Alex Landauc299ec22007-04-26 00:17:29 -0700219is_cpio_compressed=
Michal Marek6ae9ecb2011-03-31 15:47:55 +0200220compr="gzip -n -9 -f"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222while [ $# -gt 0 ]; do
223 arg="$1"
224 shift
225 case "$arg" in
Masahiro Yamada96680972020-01-05 00:02:34 +0900226 "-l") # files included in initramfs - used by kbuild
227 dep_list="$1"
228 echo "deps_initramfs := \\" > $dep_list
229 shift
230 ;;
231 "-o") # generate compressed cpio image named $1
232 output_file="$1"
233 cpio_list="$(mktemp ${TMPDIR:-/tmp}/cpiolist.XXXXXX)"
234 output=${cpio_list}
235 echo "$output_file" | grep -q "\.gz$" \
236 && [ -x "`which gzip 2> /dev/null`" ] \
237 && compr="gzip -n -9 -f"
238 echo "$output_file" | grep -q "\.bz2$" \
239 && [ -x "`which bzip2 2> /dev/null`" ] \
240 && compr="bzip2 -9 -f"
241 echo "$output_file" | grep -q "\.lzma$" \
242 && [ -x "`which lzma 2> /dev/null`" ] \
243 && compr="lzma -9 -f"
244 echo "$output_file" | grep -q "\.xz$" \
245 && [ -x "`which xz 2> /dev/null`" ] \
246 && compr="xz --check=crc32 --lzma2=dict=1MiB"
247 echo "$output_file" | grep -q "\.lzo$" \
248 && [ -x "`which lzop 2> /dev/null`" ] \
249 && compr="lzop -9 -f"
250 echo "$output_file" | grep -q "\.lz4$" \
251 && [ -x "`which lz4 2> /dev/null`" ] \
252 && compr="lz4 -l -9 -f"
253 echo "$output_file" | grep -q "\.cpio$" && compr="cat"
254 shift
255 ;;
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200256 "-u") # map $1 to uid=0 (root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 root_uid="$1"
Rob Landley595a22a2017-07-06 15:35:43 -0700258 [ "$root_uid" = "-1" ] && root_uid=$(id -u || echo 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 shift
260 ;;
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200261 "-g") # map $1 to gid=0 (root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 root_gid="$1"
Rob Landley595a22a2017-07-06 15:35:43 -0700263 [ "$root_gid" = "-1" ] && root_gid=$(id -g || echo 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 shift
265 ;;
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200266 "-d") # display default initramfs list
Masahiro Yamada96680972020-01-05 00:02:34 +0900267 default_initramfs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 ;;
269 "-h")
270 usage
271 exit 0
272 ;;
273 *)
274 case "$arg" in
275 "-"*)
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200276 unknown_option
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 ;;
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200278 *) # input file/dir - process it
279 input_file "$arg" "$#"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 ;;
281 esac
282 ;;
283 esac
284done
285
Alain Knaffa26ee602009-01-07 00:10:27 -0800286# If output_file is set we will generate cpio archive and compress it
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300287# we are careful to delete tmp files
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200288if [ ! -z ${output_file} ]; then
289 if [ -z ${cpio_file} ]; then
Michal Mareka8b80172011-03-31 23:16:42 +0200290 timestamp=
291 if test -n "$KBUILD_BUILD_TIMESTAMP"; then
292 timestamp="$(date -d"$KBUILD_BUILD_TIMESTAMP" +%s || :)"
293 if test -n "$timestamp"; then
294 timestamp="-t $timestamp"
295 fi
296 fi
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200297 cpio_tfile="$(mktemp ${TMPDIR:-/tmp}/cpiofile.XXXXXX)"
Michal Mareka8b80172011-03-31 23:16:42 +0200298 usr/gen_init_cpio $timestamp ${cpio_list} > ${cpio_tfile}
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200299 else
300 cpio_tfile=${cpio_file}
301 fi
302 rm ${cpio_list}
Alex Landauc299ec22007-04-26 00:17:29 -0700303 if [ "${is_cpio_compressed}" = "compressed" ]; then
304 cat ${cpio_tfile} > ${output_file}
305 else
Alain Knaffab59d3b2009-02-19 13:39:21 -0800306 (cat ${cpio_tfile} | ${compr} - > ${output_file}) \
307 || (rm -f ${output_file} ; false)
Alex Landauc299ec22007-04-26 00:17:29 -0700308 fi
Sam Ravnborgd39a206b2006-04-11 13:24:32 +0200309 [ -z ${cpio_file} ] && rm ${cpio_tfile}
310fi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311exit 0