-
Notifications
You must be signed in to change notification settings - Fork 0
/
peflagsall.in
354 lines (323 loc) · 9.38 KB
/
peflagsall.in
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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
#!@POSIXSHELL@
#
# Copyright (c) 2009,2011 Charles Wilson
# Based on rebaseall by Jason Tishler
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# See the COPYING file for full license information.
# Define constants
tp1=${0%/*}
tp2=${tp1:-.}
PATH=$(cd $tp2 && pwd):@bindir@:/bin
ProgramName=${0##*/}
ProgramOptions='p:d:t:s:T:knvh'
DefaultExtraArgs=
DefaultTSAware=1
DefaultDynBase=0
DefaultKeep=
DefaultDoNothing=
DefaultVerbose=
DefaultFileList=
DefaultSuffixes='exe|dll|so|oct'
# Define functions
usage_string="usage: $ProgramName [-p extra_args] [-d bool] [-t bool] [-s suffix] [-T FileList | -] [-vnh]"
short_usage ()
{
echo "$usage_string" 1>&2
exit 1
}
long_help ()
{
echo "$usage_string"
echo "When invoked with no arguments, $ProgramName modifies every cygwin $DefaultSuffixes"
echo "on the system: .exe files have their tsaware flag set, while .dll, .so and .oct"
echo "files have their dynamicbase flag removed. However, if any of [-d|-t|-s] are"
echo "specified then ONLY the actions so specified will occur."
echo " -p extra_args pass extra_args to peflags.exe"
echo " -d bool set the dynamicbase flag to 'bool' on all specified files"
echo " -t bool set the tsaware flag to 'bool' on all specified files"
echo " -s suffix search for all files with the specified suffix(es)"
echo " default: 'exe|dll|so|oct'"
echo " -T FileList in addition to files located via the normal search and"
echo " suffix list, also operate on files listed in FileList"
echo " May be '-' which indicates stdin"
echo " -n do not modify any files, but display the peflags commands"
echo " -k keep all temporary files"
echo " -v verbose mode"
echo " -h show this help"
echo "bool may be '0', '1', 'true', 'false', 'yes', or 'no'"
echo "Note: peflagsall will NOT set the dynamicbase flag on executables, nor will"
echo " it set the tsaware flag on dlls. If you must do this, use peflags itself"
exit 0
}
check_args_for_help()
{
# we do this early, so that we can print help before
# the process-check.
for a in "$@"
do
case "$a" in
"--help"|"-help"|"-h") long_help ;;
esac
done
}
to_bool_result=
to_bool()
{
case "$1" in
[Tt][Rr][Uu][Ee] ) to_bool_result=1;;
[Ff][Aa][Ll][Ss][Ee] ) to_bool_result=0;;
[Yy][Ee][Ss] ) to_bool_result=1;;
[Nn][Oo] ) to_bool_result=0;;
[Yy] ) to_bool_result=1;;
[Nn] ) to_bool_result=0;;
1|0 ) to_bool_result=$1;;
*) echo "Bad bool argument '$1'" 1>&2
short_usage
exit 1
esac
}
cleanup()
{
if test -z "$Keep"
then
rm -f "$TmpFile" "$ExeFile" "$DllFile"
else
echo "Saving temp files '$TmpDir/peflags_*' (may not exist)" 1>&2
fi
exit $ExitCode
}
verbose_only()
{
if test -n "$Verbose"
then
echo "$@" 1>&2
fi
}
# Set traps
trap cleanup 1 2 15
# Set defaults
ExtraArgs=$DefaultExtraArgs
TSAware=$DefaultTSAware
DynBase=$DefaultDynBase
Keep=$DefaultKeep
DoNothing=$DefaultDoNothing
Verbose=$DefaultVerbose
FileList=$DefaultFileList
Suffixes=$DefaultSuffixes
# Argument accumulators
ArgSuffixes=
ArgTSAware=
ArgDynBase=
# First see if caller requested help
check_args_for_help "$@"
# Determine platform
Platform=`uname -s`
case $Platform in
*MINGW* | *mingw* ) Platform=mingw ;;
*CYGWIN* | *cygwin* ) Platform=cygwin ;;
*MSYS* | *msys* ) Platform=msys ;;
* )
echo "Unsupported platform: $Platform" 1>&2
exit 1
;;
esac
# Verify only ash or dash processes are running
ProcessResult=0
case $Platform in
mingw|msys )
/bin/ps -s | /bin/gawk '\
# Count number of running ash or dash. \
/\/bin\/(d)?ash(\.exe)?$/{ ash_cnt++; } \
# Count number of ps and gawk. \
/\/bin\/ps(\.exe)?$/{ cnt++; } \
/\/bin\/gawk(\.exe)?$/{ cnt++; } \
END{ \
# Uncomment for testing: \
# printf "TOTAL: %d CNT: %d ASH_CNT: %d\n", NR, cnt, ash_cnt; \
# Only one of ps and gawk each may run. \
if (cnt > 2) \
exit 0; \
# The total number of allowed processes is one less than the \
# number of input lines. The extra line is the ps header output. \
if (NR - cnt - ash_cnt > 1) \
exit 0; \
# All is well. \
exit 1; \
}'
ProcessResult=$?
;;
cygwin )
grep -E -q -i -v '/d?ash(.exe)?$' /proc/[0-9]*/exename
ProcessResult=$?
;;
esac
if [ $ProcessResult -eq 0 -a -z "$RebaseDebug" ]
then
echo "$ProgramName: only ash or dash processes are allowed during this process."
echo " Exit all Cygwin processes and stop all Cygwin services."
echo " Execute ash (or dash) from Start/Run... or a cmd or command window."
echo " Execute '/bin/peflagsall' from ash (or dash)."
exit 2
fi
# Parse command line arguments
while getopts $ProgramOptions Option "$@"
do
case $Option in
p) ExtraArgs="$OPTARG";;
d) to_bool "$OPTARG"; ArgDynBase=$to_bool_result;;
t) to_bool "$OPTARG"; ArgTSAware=$to_bool_result;;
s)
if test -z "$ArgSuffixes"
then
ArgSuffixes="$OPTARG"
else
ArgSuffixes="$ArgSuffixes|$OPTARG"
fi
;;
n) DoNothing=:;;
k) Keep=1;;
T) FileList="$OPTARG";;
v) Verbose=-v;;
h) long_help;;
\?) short_usage;;
esac
done
# Evaluate command line arguments
if test -n "$ArgSuffixes" || test -n "$ArgDynBase" || test -n "$ArgTSAware"
then
echo "Using custom arguments; all default behavior suppressed" 1>&2
Suffixes="$ArgSuffixes"
DynBase="$ArgDynBase"
TSAware="$ArgTSAware"
fi
if test -z "$Suffixes"
then
echo "Error: must specify suffixes (-s) when default behavior is suppressed" 1>&2
short_usage
fi
# Set temp directory
TmpDir="${TMP:-${TEMP:-/tmp}}"
# Validate temp directory
if [ ! -d "$TmpDir" ]
then
echo "$ProgramName: '$TmpDir' is not a directory" 1>&2
exit 2
fi
if [ ! -w "$TmpDir" ]
then
echo "$ProgramName: '$TmpDir' is not writable" 1>&2
exit 2
fi
# Validate user supplied file list, if necessary
if [ -n "$FileList" -a ! -r "$FileList" -a "$FileList" != - ]
then
echo "$ProgramName: '$FileList' is not readable" 1>&2
exit 2
fi
# Set temp files
TmpFile="$TmpDir/peflags.lst"
ExeFile="$TmpDir/peflags_exe.lst"
DllFile="$TmpDir/peflags_dll.lst"
# Create file list
case $Platform in
cygwin)
find /etc/setup -name '*.lst.gz' | xargs gzip -d -c |
grep -E "\.($Suffixes)\$" |
sed -e '/cygwin1\.dll$/d' -e '/cyglsa.*\.dll$/d' \
-e '/sys-root\/mingw/d' -e 's/^/\//' \
-e '/d?ash\.exe$/d' -e '/peflags\.exe$/d' >"${TmpFile}"
;;
msys)
for f in /bin /lib
do
find $f -type f |
grep -E "\.($Suffixes)\$" |
sed -e '/msys-1\.0.*\.dll$/d' -e '/cygwin1\.dll$/d' \
-e '/cyglsa.*\.dll$/d' -e '/d?ash\.exe$/d' \
-e '/peflags\.exe$/d' >>"$TmpFile"
done
;;
mingw) ;; # no automatic files; only command line
esac
# Append user supplied file list, if any
if [ -n "$FileList" ]
then
cat "$FileList" >>"$TmpFile"
fi
# Split file list into two groups: exe's, and everything else
# (presumably, DLLs by any name).
sed -n -e '/\.[Ee][Xx][Ee]$/p' < "$TmpFile" > "$ExeFile"
sed -e '/\.[Ee][Xx][Ee]$/d' < "$TmpFile" > "$DllFile"
NumExes=`cat "$ExeFile" | sed -n '$='`
NumDlls=`cat "$DllFile" | sed -n '$='`
# Prepare to do exes
DoExes=
TSAwareCmd="--tsaware=$TSAware"
if test -n "$NumExes" && test "$NumExes" -gt 0
then
if test -n "$TSAware" || test -n "$ExtraArgs"
then
DoExes=1
if test -z "$TSAware"
then
TSAwareCmd=
fi
else
verbose_only "Not processing $NumExes executables; neither -t nor -p specified"
fi
else
verbose_only "No executable files to process"
fi
# Prepare to do dlls
DoDlls=
DynBaseCmd="--dynamicbase=$DynBase"
if test -n "$NumDlls" && test "$NumDlls" -gt 0
then
if test -n "$DynBase" || test -n "$ExtraArgs"
then
DoDlls=1
if test -z "$DynBase"
then
DynBaseCmd=
fi
else
verbose_only "Not processing $NumDlls dlls; neither -d nor -p specified"
fi
else
verbose_only "No dlls to process"
fi
if test -n "$DoExes"
then
if test -n "$DoNothing" || test -n "$Verbose"
then
echo "peflags $Verbose $ExtraArgs $TSAwareCmd -T $ExeFile" 1>&2
fi
$DoNothing peflags $Verbose $ExtraArgs $TSAwareCmd -T "$ExeFile"
fi
ExitCode=$?
if test "$ExitCode" -eq 0
then
if test -n "$DoDlls" ; then
if test -n "$DoNothing" || test -n "$Verbose"
then
echo "peflags $Verbose $ExtraArgs $DynBaseCmd -T $DllFile" 1>&2
fi
$DoNothing peflags $Verbose $ExtraArgs $DynBaseCmd -T "$DllFile"
fi
ExitCode=$?
fi
# Clean up
cleanup