forked from openwall/john
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit.sh
executable file
·81 lines (77 loc) · 3.75 KB
/
.pre-commit.sh
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
#!/bin/sh
#
#######################################################
# This is a git pre-commit hook. It is a local hook,
# BUT will do nothing until installed on your local
# git repo.
#
# To install:
# ln -s ../../.pre-commit.sh .git/hooks/pre-commit
#
#######################################################
# enforcement of JtR requirements for:
# 1. Disallow scripts without exec bit set
# 2. Disallow source with exec bit set
# 3. Disallow text files with trailing WS
# 4. Disallow text files with DOS EOL
# 5. Disallow text files missing closing EOL
#
# x. TODO: other problems that can be quickly
# validated.
#######################################################
########################################################
# test 1. Make sure scripts have execute bit set
########################################################
SCRIPT_FILE_PATTERN='\.(pl|py|sh|rb)(\..+)?$'
SCRIPT_FILES=`git diff --cached --name-only | grep -E $SCRIPT_FILE_PATTERN`
SCRIPT_FILES="$SCRIPT_FILES"`git diff --cached --name-only | grep -E '(benchmark-unify|relbench)'`
if [ "x$SCRIPT_FILES" != "x" ] ; then
# 1. missing exec bit on a script file.
SCRIPT_LISTING=`echo "$SCRIPT_FILES" | xargs ls -l`
echo "$SCRIPT_LISTING" | cut -b 4 | grep -v -q x && \
echo 'COMMIT REJECTED Found script files WITHOUT execute bit set:' && echo "$SCRIPT_LISTING" | grep ^-..- && exit 1
fi
########################################################
# Tests 2/3/4/5. Make sure source does not have execute bit set
########################################################
TXT_FILE_PATTERN='\.(ac|cl|c|h|txt|S|s|in|chr|conf|txt|md|asm|cin|dep|gost|legacy|macros|stub|m4|cu|bash_completion|zsh_completion|lst)(\..+)?$'
TXT_FILES=`git diff --cached --name-only | grep -E $TXT_FILE_PATTERN`
TXT_FILES="$TXT_FILES"`git diff --cached --name-only | grep -E ^doc/`
if [ "x$TXT_FILES" != "x" ] ; then
# 2. exec attrib
TXT_LISTING=`echo "$TXT_FILES" | xargs ls -l`
echo "$TXT_LISTING" | cut -b 4 | grep -q x && \
echo 'COMMIT REJECTED Found src/text files WITH execute bit set:' && echo "$TXT_LISTING" | grep ^-..x && exit 1
# 3. Trailing spaces
TXT_LISTING=`echo "$TXT_FILES" | xargs grep -l '[ ]$'`
if [ "x$TXT_LISTING" != "x" ] ; then
echo 'COMMIT REJECTED Found src/text files lines containing trailing whitespace:' && echo "$TXT_LISTING" && exit 1
fi
# 4. DOS eol's
TXT_LISTING=`echo "$TXT_FILES" | xargs grep -lU $'\x0D'`
if [ "x$TXT_LISTING" != "x" ] ; then
echo 'COMMIT REJECTED Found src/text files WITH DOS line endings:' && echo "$TXT_LISTING" && exit 1
fi
# 5. missing final EOL
# this is by far the most costly test. We should fine a more effiecent implementation. It is not bad on
# a couple file commit, but if it is dozens or 100's of files, it is slow (the multi shelling of tail I guess)
# ** Found a much faster way, using perl, BUT perl may not be installed. Use the perl mode, if perl is there.
if [ -e /usr/bin/perl ] ; then
echo $TXT_FILES | \
xargs perl -e '$r=0; foreach $n (@ARGV)
{
if (open(F,"<",$n)) { seek(F,-1,2); read(F,$c,1);
if($c ne "\n") { $r=1; print "Missing final EOL in file $n\n"; }
close(F); exit($r); }
}'
if [ "x$?" != "x0" ] ; then echo 'COMMIT REJECTED Found src/text files missing final EOL:' && exit 1 ; fi
else
# slow but should be portable.
MISSING_EOF=""
for f in $TXT_FILES; do if [ -e "$f" ]; then if [ -n "$(tail -c 1 <"$f")" ]; then echo "missing final EOL in file $f" && MISSING_EOF="Yup" ; fi ; fi ; done
if [ "x$MISSING_EOF" != "x" ] ; then
echo 'COMMIT REJECTED Found src/text files missing final EOL:' && exit 1
fi
fi
fi
exit 0