#! /bin/bash # Checks for conflicts between all dll's that are loaded by the programs or dlls given as arguments. # cygcheck searches PATH to find arguments that are not absolute pathnames. final_dec=0 final_guard_dec=0 guard=0x10000 #set -x cygcheck "$@" | while read -r file do [ -n "$file" ] && [ "$file" = "${file#Found:}" ] && objdump -p "$file" | sed -n -e '2 {s:\\:/:g; s/^/ /; s/: .*$//; h}' -e '/ImageBase/ {s/ImageBase/ /; G; h}' -e '/SizeOfImage/ {s/SizeOfImage//; G; s/[\t\n]//gp; Q}' done | sort -f -u -k 2 | while read size base name do conflict="" base_dec=$(( 0x$base )) if [ "$final_dec" -ge "$base_dec" ] then conflict="CONFLICT End: $final_dec Start:$base_dec" else [ "$final_guard_dec" -ge "$base_dec" ] && conflict="GUARD CONFLICT End: $final_dec Start:$base_dec" fi echo $name $base $size $conflict final_dec=$(( 0x$base + 0x$size )) final_guard_dec=$(( $final_dec + $guard )) done