Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 | #! /bin/sh # SPDX-License-Identifier: GPL-2.0 # Copyright (c) 2020, Google LLC. All rights reserved. # Author: Saravana Kannan <saravanak@google.com> function help() { cat << EOF Usage: $(basename $0) [-c|-d|-m|-f] [filter options] <list of devices> This script needs to be run on the target device once it has booted to a shell. The script takes as input a list of one or more device directories under /sys/devices and then lists the probe dependency chain (suppliers and parents) of these devices. It does a breadth first search of the dependency chain, so the last entry in the output is close to the root of the dependency chain. By default it lists the full path to the devices under /sys/devices. It also takes an optional modifier flag as the first parameter to change what information is listed in the output. If the requested information is not available, the device name is printed. -c lists the compatible string of the dependencies -d lists the driver name of the dependencies that have probed -m lists the module name of the dependencies that have a module -f list the firmware node path of the dependencies -g list the dependencies as edges and nodes for graphviz -t list the dependencies as edges for tsort The filter options provide a way to filter out some dependencies: --allow-no-driver By default dependencies that don't have a driver attached are ignored. This is to avoid following device links to "class" devices that are created when the consumer probes (as in, not a probe dependency). If you want to follow these links anyway, use this flag. --exclude-devlinks Don't follow device links when tracking probe dependencies. --exclude-parents Don't follow parent devices when tracking probe dependencies. EOF } function dev_to_detail() { local i=0 while [ $i -lt ${#OUT_LIST[@]} ] do local C=${OUT_LIST[i]} local S=${OUT_LIST[i+1]} local D="'$(detail_chosen $C $S)'" if [ ! -z "$D" ] then # This weirdness is needed to work with toybox when # using the -t option. printf '%05u\t%s\n' ${i} "$D" | tr -d \' fi i=$((i+2)) done } function already_seen() { local i=0 while [ $i -lt ${#OUT_LIST[@]} ] do if [ "$1" = "${OUT_LIST[$i]}" ] then # if-statement treats 0 (no-error) as true return 0 fi i=$(($i+2)) done # if-statement treats 1 (error) as false return 1 } # Return 0 (no-error/true) if parent was added function add_parent() { if [ ${ALLOW_PARENTS} -eq 0 ] then return 1 fi local CON=$1 # $CON could be a symlink path. So, we need to find the real path and # then go up one level to find the real parent. local PARENT=$(realpath $CON/..) while [ ! -e ${PARENT}/driver ] do if [ "$PARENT" = "/sys/devices" ] then return 1 fi PARENT=$(realpath $PARENT/..) done CONSUMERS+=($PARENT) OUT_LIST+=(${CON} ${PARENT}) return 0 } # Return 0 (no-error/true) if one or more suppliers were added function add_suppliers() { local CON=$1 local RET=1 if [ ${ALLOW_DEVLINKS} -eq 0 ] then return 1 fi SUPPLIER_LINKS=$(ls -1d $CON/supplier:* 2>/dev/null) for SL in $SUPPLIER_LINKS; do SYNC_STATE=$(cat $SL/sync_state_only) # sync_state_only links are proxy dependencies. # They can also have cycles. So, don't follow them. if [ "$SYNC_STATE" != '0' ] then continue fi SUPPLIER=$(realpath $SL/supplier) if [ ! -e $SUPPLIER/driver -a ${ALLOW_NO_DRIVER} -eq 0 ] then continue fi CONSUMERS+=($SUPPLIER) OUT_LIST+=(${CON} ${SUPPLIER}) RET=0 done return $RET } function detail_compat() { f=$1/of_node/compatible if [ -e $f ] then echo -n $(cat $f) else echo -n $1 fi } function detail_module() { f=$1/driver/module if [ -e $f ] then echo -n $(basename $(realpath $f)) else echo -n $1 fi } function detail_driver() { f=$1/driver if [ -e $f ] then echo -n $(basename $(realpath $f)) else echo -n $1 fi } function detail_fwnode() { f=$1/firmware_node if [ ! -e $f ] then f=$1/of_node fi if [ -e $f ] then echo -n $(realpath $f) else echo -n $1 fi } function detail_graphviz() { if [ "$2" != "ROOT" ] then echo -n "\"$(basename $2)\"->\"$(basename $1)\"" else echo -n "\"$(basename $1)\"" fi } function detail_tsort() { echo -n "\"$2\" \"$1\"" } function detail_device() { echo -n $1; } alias detail=detail_device ALLOW_NO_DRIVER=0 ALLOW_DEVLINKS=1 ALLOW_PARENTS=1 while [ $# -gt 0 ] do ARG=$1 case $ARG in --help) help exit 0 ;; -c) alias detail=detail_compat ;; -m) alias detail=detail_module ;; -d) alias detail=detail_driver ;; -f) alias detail=detail_fwnode ;; -g) alias detail=detail_graphviz ;; -t) alias detail=detail_tsort ;; --allow-no-driver) ALLOW_NO_DRIVER=1 ;; --exclude-devlinks) ALLOW_DEVLINKS=0 ;; --exclude-parents) ALLOW_PARENTS=0 ;; *) # Stop at the first argument that's not an option. break ;; esac shift done function detail_chosen() { detail $1 $2 } if [ $# -eq 0 ] then help exit 1 fi CONSUMERS=($@) OUT_LIST=() # Do a breadth first, non-recursive tracking of suppliers. The parent is also # considered a "supplier" as a device can't probe without its parent. i=0 while [ $i -lt ${#CONSUMERS[@]} ] do CONSUMER=$(realpath ${CONSUMERS[$i]}) i=$(($i+1)) if already_seen ${CONSUMER} then continue fi # If this is not a device with a driver, we don't care about its # suppliers. if [ ! -e ${CONSUMER}/driver -a ${ALLOW_NO_DRIVER} -eq 0 ] then continue fi ROOT=1 # Add suppliers to CONSUMERS list and output the consumer details. # # We don't need to worry about a cycle in the dependency chain causing # infinite loops. That's because the kernel doesn't allow cycles in # device links unless it's a sync_state_only device link. And we ignore # sync_state_only device links inside add_suppliers. if add_suppliers ${CONSUMER} then ROOT=0 fi if add_parent ${CONSUMER} then ROOT=0 fi if [ $ROOT -eq 1 ] then OUT_LIST+=(${CONSUMER} "ROOT") fi done # Can NOT combine sort and uniq using sort -suk2 because stable sort in toybox # isn't really stable. dev_to_detail | sort -k2 -k1 | uniq -f 1 | sort | cut -f2- exit 0 |