fix the marginal ui output so that it's not prefixed by the
[monkeysphere.git] / src / monkeysphere-authentication
1 #!/usr/bin/env bash
2
3 # monkeysphere-authentication: Monkeysphere authentication admin tool
4 #
5 # The monkeysphere scripts are written by:
6 # Jameson Rollins <jrollins@finestructure.net>
7 # Jamie McClelland <jm@mayfirst.org>
8 # Daniel Kahn Gillmor <dkg@fifthhorseman.net>
9 # Micah Anderson <micah@riseup.net>
10 #
11 # They are Copyright 2008-2009, and are all released under the GPL,
12 # version 3 or later.
13
14 ########################################################################
15 set -e
16
17 # set the pipefail option so pipelines fail on first command failure
18 set -o pipefail
19
20 PGRM=$(basename $0)
21
22 SYSSHAREDIR=${MONKEYSPHERE_SYSSHAREDIR:-"/usr/share/monkeysphere"}
23 export SYSSHAREDIR
24 . "${SYSSHAREDIR}/defaultenv"
25 . "${SYSSHAREDIR}/common"
26
27 SYSDATADIR=${MONKEYSPHERE_SYSDATADIR:-"/var/lib/monkeysphere"}
28 export SYSDATADIR
29
30 # sharedir for authentication functions
31 MASHAREDIR="${SYSSHAREDIR}/ma"
32
33 # datadir for authentication functions
34 MADATADIR="${SYSDATADIR}/authentication"
35
36 # temp directory to enable atomic moves of authorized_keys files
37 MATMPDIR="${MADATADIR}/tmp"
38 export MATMPDIR
39
40 # UTC date in ISO 8601 format if needed
41 DATE=$(date -u '+%FT%T')
42
43 # unset some environment variables that could screw things up
44 unset GREP_OPTIONS
45
46 ########################################################################
47 # FUNCTIONS
48 ########################################################################
49
50 usage() {
51     cat <<EOF >&2
52 usage: $PGRM <subcommand> [options] [args]
53 Monkeysphere authentication admin tool.
54
55 subcommands:
56  update-users (u) [USER]...        update user authorized_keys files
57
58  add-id-certifier (c+) KEYID|FILE  import and tsign a certification key
59    [--domain (-n) DOMAIN]            limit ID certifications to DOMAIN
60    [--trust (-t) TRUST]              trust level of certifier (default: full)
61    [--depth (-d) DEPTH]              trust depth for certifier (default: 1)
62  remove-id-certifier (c-) KEYID    remove a certification key
63  list-id-certifiers (c)            list certification keys
64
65  version (v)                       show version number
66  help (h,?)                        this help
67
68 See ${PGRM}(8) for more info.
69 EOF
70 }
71
72 # function to interact with the gpg core keyring
73 gpg_core() {
74     GNUPGHOME="$GNUPGHOME_CORE"
75     export GNUPGHOME
76
77     gpg --no-greeting --quiet --no-tty "$@"
78 }
79
80 # function to interact with the gpg sphere keyring
81 # FIXME: this function requires only a single argument because of
82 # problems with quote expansion.  this needs to be fixed/improved.
83 gpg_sphere() {
84     GNUPGHOME="$GNUPGHOME_SPHERE"
85     export GNUPGHOME
86  
87     su_monkeysphere_user "gpg --no-greeting --quiet --no-tty $@"
88 }
89
90 # output to stdout the core fingerprint from the gpg core secret
91 # keyring
92 core_fingerprint() {
93     log debug "determining core key fingerprint..."
94     gpg_core --list-secret-key --with-colons \
95         --fixed-list-mode --with-fingerprint \
96         | grep ^fpr: | cut -d: -f10
97 }
98
99 # export signatures from core to sphere
100 gpg_core_sphere_sig_transfer() {
101     log debug "exporting core local sigs to sphere..."
102     gpg_core --export-options export-local-sigs --export | \
103         gpg_sphere "--import-options import-local-sigs --import" 2>&1 | log debug
104 }
105
106 ########################################################################
107 # MAIN
108 ########################################################################
109
110 # set unset default variables
111 AUTHORIZED_USER_IDS="%h/.monkeysphere/authorized_user_ids"
112 RAW_AUTHORIZED_KEYS="%h/.ssh/authorized_keys"
113
114 # load configuration file
115 [ -e ${MONKEYSPHERE_AUTHENTICATION_CONFIG:="${SYSCONFIGDIR}/monkeysphere-authentication.conf"} ] \
116     && . "$MONKEYSPHERE_AUTHENTICATION_CONFIG"
117
118 # set empty config variable with ones from the environment
119 LOG_LEVEL=${MONKEYSPHERE_LOG_LEVEL:=$LOG_LEVEL}
120 KEYSERVER=${MONKEYSPHERE_KEYSERVER:=$KEYSERVER}
121 CHECK_KEYSERVER=${MONKEYSPHERE_CHECK_KEYSERVER:=$CHECK_KEYSERVER}
122 MONKEYSPHERE_USER=${MONKEYSPHERE_MONKEYSPHERE_USER:=$MONKEYSPHERE_USER}
123 PROMPT=${MONKEYSPHERE_PROMPT:=$PROMPT}
124 AUTHORIZED_USER_IDS=${MONKEYSPHERE_AUTHORIZED_USER_IDS:=$AUTHORIZED_USER_IDS}
125 RAW_AUTHORIZED_KEYS=${MONKEYSPHERE_RAW_AUTHORIZED_KEYS:=$RAW_AUTHORIZED_KEYS}
126
127 # other variables
128 REQUIRED_USER_KEY_CAPABILITY=${MONKEYSPHERE_REQUIRED_USER_KEY_CAPABILITY:="a"}
129 GNUPGHOME_CORE=${MONKEYSPHERE_GNUPGHOME_CORE:="${MADATADIR}/core"}
130 GNUPGHOME_SPHERE=${MONKEYSPHERE_GNUPGHOME_SPHERE:="${MADATADIR}/sphere"}
131 CORE_KEYLENGTH=${MONKEYSPHERE_CORE_KEYLENGTH:="2048"}
132 LOG_PREFIX=${MONKEYSPHERE_LOG_PREFIX:='ms: '}
133
134 # export variables needed in su invocation
135 export DATE
136 export MODE
137 export LOG_LEVEL
138 export KEYSERVER
139 export MONKEYSPHERE_USER
140 export PROMPT
141 export CHECK_KEYSERVER
142 export REQUIRED_USER_KEY_CAPABILITY
143 export GNUPGHOME_CORE
144 export GNUPGHOME_SPHERE
145 export GNUPGHOME
146 export CORE_KEYLENGTH
147 export LOG_PREFIX
148
149 # get subcommand
150 COMMAND="$1"
151 [ "$COMMAND" ] || failure "Type '$PGRM help' for usage."
152 shift
153
154 case $COMMAND in
155     'setup'|'setup'|'s')
156         source "${MASHAREDIR}/setup"
157         setup
158         ;;
159
160     'update-users'|'update-user'|'u')
161         source "${MASHAREDIR}/setup"
162         setup
163         source "${MASHAREDIR}/update_users"
164         update_users "$@"
165         ;;
166
167     'add-identity-certifier'|'add-id-certifier'|'add-certifier'|'c+')
168         source "${MASHAREDIR}/setup"
169         setup
170         source "${MASHAREDIR}/add_certifier"
171         add_certifier "$@"
172         ;;
173
174     'remove-identity-certifier'|'remove-id-certifier'|'remove-certifier'|'c-')
175         source "${MASHAREDIR}/setup"
176         setup
177         source "${MASHAREDIR}/remove_certifier"
178         remove_certifier "$@"
179         ;;
180
181     'list-identity-certifiers'|'list-id-certifiers'|'list-certifiers'|'list-certifier'|'c')
182         source "${MASHAREDIR}/setup"
183         setup
184         source "${MASHAREDIR}/list_certifiers"
185         list_certifiers
186         ;;
187
188     'diagnostics'|'d')
189         source "${MASHAREDIR}/setup"
190         setup
191         source "${MASHAREDIR}/diagnostics"
192         diagnostics
193         ;;
194
195     'gpg-cmd')
196         source "${MASHAREDIR}/setup"
197         setup
198         gpg_sphere "$@"
199         ;;
200
201     'version'|'v')
202         version
203         ;;
204
205     '--help'|'help'|'-h'|'h'|'?')
206         usage
207         ;;
208
209     *)
210         failure "Unknown command: '$COMMAND'
211 Type '$PGRM help' for usage."
212         ;;
213 esac