]> CyberLeo.Net >> Repos - CDN/flag.git/blob - flag
Add Python crc32 algo
[CDN/flag.git] / flag
1 #!/bin/sh
2
3 #set -x
4
5 # Places for flags:
6 # $HOME/.flag-cache <- Autogenerated flag (refreshed when hostname changes)
7 # /etc/flag <- Site admin's flag
8 # $HOME/.flag <- Local user's flag
9 # Check them in that order.
10
11 # Name available algos as algo_something() and left-align for autodetection
12 # Order the algos by priority: the first one that is correct will be used
13 algo_cksum_linux() { printf '%08x\n' $(cksum) | head -n 1; }
14 algo_cksum_freebsd() { printf '%08x\n' $(cksum -o 3) | head -n 1; }
15 algo_crc32() { crc32 /dev/stdin; }
16 algo_crc32sum() { crc32sum; }
17 algo_crc32sum_linux() { crc32sum-linux; }
18 algo_crc32sum_freebsd() { crc32sum-freebsd; }
19 algo_python() { python -c 'import sys; import zlib; print "%08x\n" % (zlib.crc32("".join(sys.stdin.readlines())) & 0xFFFFFFFF)'; }
20 algo_ruby() { ruby -e 'require "zlib"; printf "%08x\n", Zlib.crc32(STDIN.readlines.join)'; }
21 algo_php() { php -r 'printf("%08x\n", crc32(file_get_contents("/dev/stdin")));'; }
22 algo_perl() { perl -e 'use String::CRC32; printf("%08x\n", crc32(*STDIN));'; }
23
24 find_crc32_algo() {
25   sed -e '/^algo_[^(]*()/!d; s/().*$//' "${0}" | while read algo
26   do
27     if [ "$(printf "meow" | "${algo}" 2>/dev/null)" = "8a106afe" ]
28     then
29       echo "${algo}"
30       break
31     fi
32   done
33 }
34
35 hash_string() {
36   # Hash the passed string into 8 hex characters
37   [ "${crc32_algo}" ] || crc32_algo="$(find_crc32_algo)"
38   if [ -z "${crc32_algo}" ]
39   then
40     echo "No crc32 algo found!" >&2
41     echo "deadbeef"
42     return 1
43   else
44     printf "%s" "${*}" | "${crc32_algo}" 2>/dev/null | awk '{print $1}'
45     return 0
46   fi
47 }
48
49 flagcache(){
50   myhost="$(/bin/hostname -f)"
51   cache="${HOME}/.flag-cache"
52   if [ -f "${cache}" ]
53   then
54     flag_hex="$(awk '/^'${myhost}'/{print $2}' "${cache}")"
55   fi
56   if [ -z "${flag_hex}" ]
57   then
58     flag_hex="$(hash_string "${myhost}")" && printf "%s\t%s\n" "${myhost}" "${flag_hex}" >> "${cache}"
59   fi
60   echo "${flag_hex}"
61 }
62
63 if [ -f "${HOME}/.flag" ]
64 then
65   flag_hex="$(cat "${HOME}/.flag")"
66 fi
67
68 if [ -z "${flag_hex}" ] && [ -f "/etc/flag" ]
69 then
70   flag_hex="$(cat "/etc/flag")"
71 fi
72
73 if [ -z "${flag_hex}" ]
74 then
75   flag_hex="$(flagcache)"
76 fi
77
78 # Now we definitely have flag_hex
79 firstchar() {
80   char="$(printf '%c' "${data}")"
81   data="${data##${char}}"
82 }
83
84 hexdec() {
85   if [ -z "${1}" ]
86   then
87     echo "0"
88     return
89   fi
90   echo $(( 0x${1} + 0 ))
91 }
92
93 flag() {
94   if [ -z "${1}" ]
95   then
96     echo "Usage: flag 'hexcode' [symbol] [shellmode]" >&2
97     echo "Generates an ANSI color flag using the specified hex codes" >&2
98     echo "Uses the optional symbol (or ' ') to draw the flag" >&2
99     echo "shellmode encapsulates all nonprintable codes in \[\] to" >&2
100     echo " give the shell hints on how long the string is, for proper" >&2
101     echo " wrapping of command prompts." >&2
102     return
103   fi
104   data="${1}"
105   sym="${2}"
106   shm="${3}"
107   [ -n "${shm}" ] && open='\\[' shut='\\]'
108   while [ -n "${data}" ]
109   do
110     firstchar
111     ord=$(hexdec "${char}")
112     bright="0"
113     [ "$(( ${ord} & 8 ))" -gt 0 ] && bright="1;7"
114     colour="$(( ${ord} & 7 ))"
115     printf "${open}\033[%s;3%s;4%sm${shut}%s" "${bright}" "${colour}" "${colour}" "${sym:-${char}}"
116   done
117   printf "${open}\033[0m${shut}"
118 }
119
120 pebkac() {
121    echo "Usage: $(basename "${0}") [-s #] [-e]" >&2
122    echo "Produces a neat little ansi colour 'flag' based off" >&2
123    echo " a hash of the machine's hostname (or settable via" >&2
124    echo " ~/.flag or /etc/flag) which can uniquely visually" >&2
125    echo " identify a machine, at a glance. Useful for placing" >&2
126    echo " into /etc/issue or your bash prompt, so that you" >&2
127    echo " don't send stupid commands to the wrong machine." >&2
128    echo " " >&2
129    echo " -s #   Specify which character should be used to" >&2
130    echo "         render the flag. If empty, use the hex code." >&2
131    echo " -e     Turn on bash encapsulation mode, to provide" >&2
132    echo "         hints to Bash on what is or is not printable" >&2
133    echo "         so it can wrap your commands appropriately" >&2
134    echo "         when used in your prompt" >&2
135    echo " " >&2
136    echo "This machine's flag is as such: ($(flag "${flag_hex}"))" >&2
137    exit 1
138 }
139
140 symbol=""
141 shellmode=""
142
143 while [ -n "${1}" ]
144 do
145   case "${1}" in
146   -s)  shift; symbol="${1}" ;;
147   -e)  shellmode="yes" ;;
148   *)   pebkac ;;
149   esac
150   shift
151 done
152 flag "${flag_hex}" "${symbol}" "${shellmode}"
153