Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | # Used to find files installed in sysroot which are not tracked by sstate manifest |
| 4 | |
| 5 | # Global vars |
| 6 | tmpdir= |
| 7 | |
| 8 | usage () { |
| 9 | cat << EOF |
| 10 | Welcome to sysroot cruft finding utility. |
| 11 | $0 <OPTION> |
| 12 | |
| 13 | Options: |
| 14 | -h, --help |
| 15 | Display this help and exit. |
| 16 | |
| 17 | --tmpdir=<tmpdir> |
| 18 | Specify tmpdir, will use the environment variable TMPDIR if it is not specified. |
| 19 | Something like /OE/oe-core/tmp-eglibc (no / at the end). |
| 20 | |
| 21 | --whitelist=<whitelist-file> |
| 22 | Text file, each line is regular expression for paths we want to ignore in resulting diff. |
| 23 | You can use diff file from the script output, if it contains only expected exceptions. |
| 24 | '#' is used as regexp delimiter, so you don't need to prefix forward slashes in paths. |
| 25 | ^ and $ is automatically added, so provide only the middle part. |
| 26 | Lines starting with '#' are ignored as comments. |
| 27 | All paths are relative to "sysroots" directory. |
| 28 | Directories don't end with forward slash. |
| 29 | EOF |
| 30 | } |
| 31 | |
| 32 | # Print error information and exit. |
| 33 | echo_error () { |
| 34 | echo "ERROR: $1" >&2 |
| 35 | exit 1 |
| 36 | } |
| 37 | |
| 38 | while [ -n "$1" ]; do |
| 39 | case $1 in |
| 40 | --tmpdir=*) |
| 41 | tmpdir=`echo $1 | sed -e 's#^--tmpdir=##' | xargs readlink -e` |
| 42 | [ -d "$tmpdir" ] || echo_error "Invalid argument to --tmpdir" |
| 43 | shift |
| 44 | ;; |
| 45 | --whitelist=*) |
| 46 | fwhitelist=`echo $1 | sed -e 's#^--whitelist=##' | xargs readlink -e` |
| 47 | [ -f "$fwhitelist" ] || echo_error "Invalid argument to --whitelist" |
| 48 | shift |
| 49 | ;; |
| 50 | --help|-h) |
| 51 | usage |
| 52 | exit 0 |
| 53 | ;; |
| 54 | *) |
| 55 | echo "Invalid arguments $*" |
| 56 | echo_error "Try '$0 -h' for more information." |
| 57 | ;; |
| 58 | esac |
| 59 | done |
| 60 | |
| 61 | # sstate cache directory, use environment variable TMPDIR |
| 62 | # if it was not specified, otherwise, error. |
| 63 | [ -n "$tmpdir" ] || tmpdir=$TMPDIR |
| 64 | [ -n "$tmpdir" ] || echo_error "No tmpdir found!" |
| 65 | [ -d "$tmpdir" ] || echo_error "Invalid tmpdir \"$tmpdir\"" |
| 66 | |
| 67 | OUTPUT=${tmpdir}/sysroot.cruft.`date "+%s"` |
| 68 | |
| 69 | # top level directories |
| 70 | WHITELIST="[^/]*" |
| 71 | |
| 72 | # generated by base-passwd recipe |
| 73 | WHITELIST="${WHITELIST} \ |
| 74 | .*/etc/group-\? \ |
| 75 | .*/etc/passwd-\? \ |
| 76 | " |
| 77 | # generated by pseudo-native |
| 78 | WHITELIST="${WHITELIST} \ |
| 79 | .*/var/pseudo \ |
| 80 | .*/var/pseudo/[^/]* \ |
| 81 | " |
| 82 | |
| 83 | # generated by package.bbclass:SHLIBSDIRS = "${PKGDATA_DIR}/${MLPREFIX}shlibs" |
| 84 | WHITELIST="${WHITELIST} \ |
| 85 | .*/shlibs \ |
| 86 | .*/pkgdata \ |
| 87 | " |
| 88 | |
| 89 | # generated by python |
| 90 | WHITELIST="${WHITELIST} \ |
| 91 | .*\.pyc \ |
| 92 | .*\.pyo \ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 93 | .*/__pycache__ \ |
| 94 | " |
| 95 | |
| 96 | # generated by lua |
| 97 | WHITELIST="${WHITELIST} \ |
| 98 | .*\.luac \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 99 | " |
| 100 | |
| 101 | # generated by sgml-common-native |
| 102 | WHITELIST="${WHITELIST} \ |
| 103 | .*/etc/sgml/sgml-docbook.bak \ |
| 104 | " |
| 105 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 106 | # generated by php |
| 107 | WHITELIST="${WHITELIST} \ |
| 108 | .*/usr/lib/php5/php/.channels/.* \ |
| 109 | .*/usr/lib/php5/php/.registry/.* \ |
| 110 | .*/usr/lib/php5/php/.depdb \ |
| 111 | .*/usr/lib/php5/php/.depdblock \ |
| 112 | .*/usr/lib/php5/php/.filemap \ |
| 113 | .*/usr/lib/php5/php/.lock \ |
| 114 | " |
| 115 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 116 | # generated by toolchain |
| 117 | WHITELIST="${WHITELIST} \ |
| 118 | [^/]*-tcbootstrap/lib \ |
| 119 | " |
| 120 | |
| 121 | # generated by useradd.bbclass |
| 122 | WHITELIST="${WHITELIST} \ |
| 123 | [^/]*/home \ |
| 124 | [^/]*/home/xuser \ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 125 | [^/]*/home/xuser/.bashrc \ |
| 126 | [^/]*/home/xuser/.profile \ |
| 127 | [^/]*/home/builder \ |
| 128 | [^/]*/home/builder/.bashrc \ |
| 129 | [^/]*/home/builder/.profile \ |
| 130 | " |
| 131 | |
| 132 | # generated by image.py for WIC |
| 133 | # introduced in oe-core commit 861ce6c5d4836df1a783be3b01d2de56117c9863 |
| 134 | WHITELIST="${WHITELIST} \ |
| 135 | [^/]*/imgdata \ |
| 136 | [^/]*/imgdata/[^/]*\.env \ |
| 137 | " |
| 138 | |
| 139 | # generated by fontcache.bbclass |
| 140 | WHITELIST="${WHITELIST} \ |
| 141 | .*/var/cache/fontconfig/ \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 142 | " |
| 143 | |
| 144 | SYSROOTS="`readlink -f ${tmpdir}`/sysroots/" |
| 145 | |
| 146 | mkdir ${OUTPUT} |
| 147 | find ${tmpdir}/sstate-control -name \*.populate-sysroot\* -o -name \*.populate_sysroot\* -o -name \*.package\* | xargs cat | grep sysroots | \ |
| 148 | sed 's#/$##g; s#///*#/#g' | \ |
| 149 | # work around for paths ending with / for directories and multiplied // (e.g. paths to native sysroot) |
| 150 | sort | sed "s#^${SYSROOTS}##g" > ${OUTPUT}/master.list.all.txt |
| 151 | sort -u ${OUTPUT}/master.list.all.txt > ${OUTPUT}/master.list.txt # -u because some directories are listed for more recipes |
| 152 | find ${tmpdir}/sysroots/ | \ |
| 153 | sort | sed "s#^${SYSROOTS}##g" > ${OUTPUT}/sysroot.list.txt |
| 154 | |
| 155 | diff ${OUTPUT}/master.list.all.txt ${OUTPUT}/master.list.txt > ${OUTPUT}/duplicates.txt |
| 156 | diff ${OUTPUT}/master.list.txt ${OUTPUT}/sysroot.list.txt > ${OUTPUT}/diff.all.txt |
| 157 | |
| 158 | grep "^> ." ${OUTPUT}/diff.all.txt | sed 's/^> //g' > ${OUTPUT}/diff.txt |
| 159 | for item in ${WHITELIST}; do |
| 160 | sed -i "\\#^${item}\$#d" ${OUTPUT}/diff.txt; |
| 161 | echo "${item}" >> ${OUTPUT}/used.whitelist.txt |
| 162 | done |
| 163 | |
| 164 | if [ -s "$fwhitelist" ] ; then |
| 165 | cat $fwhitelist >> ${OUTPUT}/used.whitelist.txt |
| 166 | cat $fwhitelist | grep -v '^#' | while read item; do |
| 167 | sed -i "\\#^${item}\$#d" ${OUTPUT}/diff.txt; |
| 168 | done |
| 169 | fi |
| 170 | # too many false positives for directories |
| 171 | # echo "Following files are installed in sysroot at least twice" |
| 172 | # cat ${OUTPUT}/duplicates |
| 173 | |
| 174 | RESULT=`cat ${OUTPUT}/diff.txt | wc -l` |
| 175 | |
| 176 | if [ "${RESULT}" != "0" ] ; then |
| 177 | echo "ERROR: ${RESULT} issues were found." |
| 178 | echo "ERROR: Following files are installed in sysroot, but not tracked by sstate:" |
| 179 | cat ${OUTPUT}/diff.txt |
| 180 | else |
| 181 | echo "INFO: All files are tracked by sstate or were explicitly ignored by this script" |
| 182 | fi |
| 183 | |
| 184 | echo "INFO: Output written in: ${OUTPUT}" |
| 185 | exit ${RESULT} |