| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | #!/bin/sh | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # openssl-format-source  | 
					
						
							|  |  |  | # - format source tree according to OpenSSL coding style using indent | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # usage: | 
					
						
							|  |  |  | #   openssl-format-source [-v] [-n] [file|directory] ... | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # note: the indent options assume GNU indent v2.2.10 which was released | 
					
						
							|  |  |  | #       Feb-2009 so if you have an older indent the options may not  | 
					
						
							|  |  |  | #	match what is expected | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # any marked block comment blocks have to be moved to align manually after | 
					
						
							|  |  |  | # the reformatting has been completed as marking a block causes indent to  | 
					
						
							|  |  |  | # not move it at all ... | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PATH=/usr/local/bin:/bin:/usr/bin:$PATH | 
					
						
							|  |  |  | export PATH | 
					
						
							| 
									
										
										
										
											2015-01-20 23:18:23 +08:00
										 |  |  | HERE="`dirname $0`" | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | set -e | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-09 17:47:03 +08:00
										 |  |  | INDENT=indent | 
					
						
							|  |  |  | uname -s | grep BSD > /dev/null && type gindent > /dev/null 2>&1 && INDENT=gindent | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | if [ $# -eq 0 ]; then | 
					
						
							|  |  |  |   echo "usage: $0 [-v] [-n] [-c] [sourcefile|sourcedir] ..." >&2 | 
					
						
							|  |  |  |   exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | VERBOSE=false | 
					
						
							|  |  |  | DONT=false | 
					
						
							|  |  |  | STOPARGS=false | 
					
						
							|  |  |  | COMMENTS=false | 
					
						
							| 
									
										
										
										
											2015-02-01 22:51:46 +08:00
										 |  |  | CHANGED=false | 
					
						
							| 
									
										
										
										
											2015-01-21 02:53:56 +08:00
										 |  |  | DEBUG="" | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-20 22:14:24 +08:00
										 |  |  | # for this exercise, we want to force the openssl style, so we roll | 
					
						
							|  |  |  | # our own indent profile, which is at a well known location | 
					
						
							| 
									
										
										
										
											2015-01-20 23:18:23 +08:00
										 |  |  | INDENT_PROFILE="$HERE/indent.pro" | 
					
						
							| 
									
										
										
										
											2015-01-20 22:14:24 +08:00
										 |  |  | export INDENT_PROFILE | 
					
						
							| 
									
										
										
										
											2015-01-21 06:13:39 +08:00
										 |  |  | if [ ! -f "$INDENT_PROFILE" ]; then | 
					
						
							| 
									
										
										
										
											2015-01-20 22:14:24 +08:00
										 |  |  |   echo "$0: unable to locate the openssl indent.pro file" >&2 | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  |   exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Extra arguments; for adding the comment-formatting | 
					
						
							|  |  |  | INDENT_ARGS="" | 
					
						
							|  |  |  | for i  | 
					
						
							|  |  |  | do | 
					
						
							|  |  |  |   if [ "$STOPARGS" != "true" ]; then | 
					
						
							|  |  |  |     case $i in | 
					
						
							|  |  |  |       --) STOPARGS="true"; continue;; | 
					
						
							|  |  |  |       -n) DONT="true"; continue;; | 
					
						
							|  |  |  |       -v) VERBOSE="true";  | 
					
						
							|  |  |  | 	  echo "INDENT_PROFILE=$INDENT_PROFILE"; | 
					
						
							|  |  |  | 	  continue;; | 
					
						
							|  |  |  |       -c) COMMENTS="true";  | 
					
						
							|  |  |  |       	  INDENT_ARGS="-fc1 -fca -cdb -sc";  | 
					
						
							|  |  |  | 	  continue;; | 
					
						
							| 
									
										
										
										
											2015-01-21 02:49:04 +08:00
										 |  |  |       -nc) COMMENTS="true"; | 
					
						
							|  |  |  | 	  continue;; | 
					
						
							| 
									
										
										
										
											2015-01-21 02:53:56 +08:00
										 |  |  |       -d) DEBUG='eval tee "$j.pre" |' | 
					
						
							|  |  |  | 	  continue;; | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  |     esac | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if [ -d "$i" ]; then | 
					
						
							|  |  |  |     LIST=`find "$i" -name '*.[ch]' -print` | 
					
						
							|  |  |  |   else  | 
					
						
							|  |  |  |     if [ ! -f "$i" ]; then | 
					
						
							|  |  |  |       echo "$0: source file not found: $i" >&2 | 
					
						
							|  |  |  |       exit 1 | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     LIST="$i" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   for j in $LIST | 
					
						
							|  |  |  |   do | 
					
						
							|  |  |  |     # ignore symlinks - we only ever process the base file - so if we | 
					
						
							|  |  |  |     # expand a directory tree we need to ignore any located symlinks | 
					
						
							|  |  |  |     if [ -d "$i" ]; then | 
					
						
							|  |  |  |       if [ -h "$j" ]; then | 
					
						
							|  |  |  | 	continue; | 
					
						
							|  |  |  |       fi | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if [ "$DONT" = "false" ]; then | 
					
						
							|  |  |  |       tmp=$(mktemp /tmp/indent.XXXXXX) | 
					
						
							|  |  |  |       trap 'rm -f "$tmp"' HUP INT TERM EXIT | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-21 21:51:38 +08:00
										 |  |  |       case `basename $j` in  | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | 	# the list of files that indent is unable to handle correctly | 
					
						
							|  |  |  | 	# that we simply leave alone for manual formatting now | 
					
						
							| 
									
										
										
										
											2015-01-22 00:37:58 +08:00
										 |  |  | 	obj_dat.h|aes_core.c|aes_x86core.c|ecp_nistz256.c) | 
					
						
							| 
									
										
										
										
											2015-01-21 21:51:38 +08:00
										 |  |  | 	  echo "skipping $j" | 
					
						
							|  |  |  | 	  ;; | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | 	*) | 
					
						
							|  |  |  | 	  if [ "$COMMENTS" = "true" ]; then | 
					
						
							|  |  |  | 	    # we have to mark single line comments as /*- ...*/ to stop indent | 
					
						
							|  |  |  | 	    # messing with them, run expand then indent as usual but with the | 
					
						
							|  |  |  | 	    # the process-comments options and then undo that marking, and then  | 
					
						
							|  |  |  | 	    # finally re-run indent without process-comments so the marked-to- | 
					
						
							|  |  |  | 	    # be-ignored comments we did automatically end up getting moved  | 
					
						
							|  |  |  | 	    # into the right possition within the code as indent leaves marked  | 
					
						
							|  |  |  | 	    # comments entirely untouched - we appear to have no way to avoid  | 
					
						
							|  |  |  | 	    # the double processing and get the desired output | 
					
						
							| 
									
										
										
										
											2015-01-20 22:17:02 +08:00
										 |  |  | 	    cat "$j" | \ | 
					
						
							|  |  |  | 	    expand | \ | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | 	    perl -0 -np \ | 
					
						
							| 
									
										
										
										
											2015-01-20 22:12:10 +08:00
										 |  |  | 	      -e 's/(\n#[ \t]*ifdef[ \t]+__cplusplus\n[^\n]*\n#[ \t]*endif\n)/\n\/**INDENT-OFF**\/$1\/**INDENT-ON**\/\n/g;' \ | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | 	      -e 's/(\n\/\*\!)/\n\/**/g;' \ | 
					
						
							| 
									
										
										
										
											2015-01-21 23:28:57 +08:00
										 |  |  | 	      -e 's/(STACK_OF|LHASH_OF)\(([^ \t,\)]+)\)( |\n)/$1_$2_$3/g;' \ | 
					
						
							| 
									
										
										
										
											2015-01-20 22:17:02 +08:00
										 |  |  | 	      | \ | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | 	    perl -np \ | 
					
						
							|  |  |  | 	      -e 's/^([ \t]*)\/\*([ \t]+.*)\*\/[ \t]*$/if (length("$1$2")<75) {$c="-"}else{$c=""}; "$1\/*$c$2*\/"/e;' \ | 
					
						
							|  |  |  | 	      -e 's/^\/\* ((Copyright|=|----).*)$/\/*-$1/;' \ | 
					
						
							| 
									
										
										
										
											2015-01-21 23:28:57 +08:00
										 |  |  | 	      -e 's/^((DECLARE|IMPLEMENT)_(EXTERN_ASN1|ASN1|ADB|STACK_OF|PKCS12_STACK_OF).*)$/\/**INDENT-OFF**\/\n$1\n\/**INDENT-ON**\//;' \ | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | 	      -e 's/^([ \t]*(make_dh|make_dh_bn|make_rfc5114_td)\(.*\)[ \t,]*)$/\/**INDENT-OFF**\/\n$1\n\/**INDENT-ON**\//;' \ | 
					
						
							|  |  |  | 	      -e 's/^(ASN1_ADB_TEMPLATE\(.*)$/\/**INDENT-OFF**\/\n$1\n\/**INDENT-ON**\//;' \ | 
					
						
							| 
									
										
										
										
											2015-03-02 21:26:29 +08:00
										 |  |  | 	      -e 's/^((ASN1|ADB)_.*_(end|END)\(.*[\){=,;]+[ \t]*)$/$1\n\/**INDENT-ON**\//;' \ | 
					
						
							| 
									
										
										
										
											2015-01-20 22:12:10 +08:00
										 |  |  | 	      -e '/ASN1_(ITEM_ref|ITEM_ptr|ITEM_rptr|PCTX)/ || s/^((ASN1|ADB)_[^\*]*[){=,]+[ \t]*)$/\/**INDENT-OFF**\/\n$1/;' \ | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | 	      -e 's/^(} (ASN1|ADB)_[^\*]*[\){=,;]+)$/$1\n\/**INDENT-ON**\//;' \ | 
					
						
							|  |  |  | 	      | \ | 
					
						
							| 
									
										
										
										
											2015-08-09 17:47:03 +08:00
										 |  |  | 	      $DEBUG $INDENT $INDENT_ARGS | \ | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | 	      perl -np \ | 
					
						
							|  |  |  | 		-e 's/^([ \t]*)\/\*-(.*)\*\/[ \t]*$/$1\/*$2*\//;' \ | 
					
						
							|  |  |  | 		-e 's/^\/\*-((Copyright|=|----).*)$/\/* $1/;' \ | 
					
						
							| 
									
										
										
										
											2015-08-09 17:47:03 +08:00
										 |  |  | 	      | $INDENT | \ | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | 	      perl -0 -np \ | 
					
						
							|  |  |  | 		-e 's/\/\*\*INDENT-(ON|OFF)\*\*\/\n//g;' \ | 
					
						
							|  |  |  | 	      | perl -np \ | 
					
						
							|  |  |  | 	        -e 's/(STACK_OF|LHASH_OF)_([^ \t,]+)_( |\/)/$1($2)$3/g;' \ | 
					
						
							|  |  |  | 	        -e 's/(STACK_OF|LHASH_OF)_([^ \t,]+)_$/$1($2)/g;' \ | 
					
						
							| 
									
										
										
										
											2015-01-20 23:18:23 +08:00
										 |  |  | 	      | perl "$HERE"/su-filter.pl \ | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | 	      > "$tmp" | 
					
						
							|  |  |  | 	  else | 
					
						
							| 
									
										
										
										
											2015-08-09 17:47:03 +08:00
										 |  |  | 	    expand "$j" | $INDENT $INDENT_ARGS > "$tmp" | 
					
						
							| 
									
										
										
										
											2015-01-21 21:51:38 +08:00
										 |  |  | 	  fi; | 
					
						
							| 
									
										
										
										
											2015-02-01 22:51:46 +08:00
										 |  |  | 	  if cmp -s "$tmp" "$j"; then | 
					
						
							|  |  |  | 	    if [ "$VERBOSE" = "true" ]; then | 
					
						
							|  |  |  | 	      echo "$j unchanged" | 
					
						
							|  |  |  | 	    fi | 
					
						
							|  |  |  | 	    rm "$tmp" | 
					
						
							|  |  |  | 	  else | 
					
						
							|  |  |  | 	    if [ "$VERBOSE" = "true" ]; then | 
					
						
							|  |  |  | 	      echo "$j changed" | 
					
						
							|  |  |  | 	    fi | 
					
						
							|  |  |  | 	    CHANGED=true | 
					
						
							|  |  |  | 	    mv "$tmp" "$j" | 
					
						
							|  |  |  | 	  fi | 
					
						
							| 
									
										
										
										
											2015-01-05 18:17:50 +08:00
										 |  |  | 	  ;; | 
					
						
							|  |  |  |       esac | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |   done | 
					
						
							|  |  |  | done | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-01 22:51:46 +08:00
										 |  |  | if [ "$VERBOSE" = "true" ]; then | 
					
						
							|  |  |  |   echo | 
					
						
							|  |  |  |   if [ "$CHANGED" = "true" ]; then | 
					
						
							|  |  |  |     echo "SOURCE WAS MODIFIED" | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     echo "SOURCE WAS NOT MODIFIED" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | fi |