blob: cd5a1c9643f70695d2731f19e2218e0693cd05bb [file] [log] [blame]
Attila Fazekas22ef5732012-12-16 14:03:06 +01001#!/usr/bin/env bash
2
Dean Troyer0f2d9542013-02-20 17:51:19 -06003# **create_userrc.sh**
4
5# Pre-create rc files and credentials for the default users.
6
7# Warning: This script just for development purposes
Attila Fazekas22ef5732012-12-16 14:03:06 +01008
Adam Spiersc85ade72013-10-01 00:35:16 +01009set -o errexit
10set -o xtrace
11
Attila Fazekas22ef5732012-12-16 14:03:06 +010012ACCOUNT_DIR=./accrc
13
14display_help()
15{
16cat <<EOF
17
18usage: $0 <options..>
19
20This script creates certificates and sourcable rc files per tenant/user.
21
22Target account directory hierarchy:
23target_dir-|
24 |-cacert.pem
25 |-tenant1-name|
26 | |- user1
27 | |- user1-cert.pem
28 | |- user1-pk.pem
29 | |- user2
30 | ..
31 |-tenant2-name..
32 ..
33
34Optional Arguments
35-P include password to the rc files; with -A it assume all users password is the same
36-A try with all user
37-u <username> create files just for the specified user
38-C <tanent_name> create user and tenant, the specifid tenant will be the user's tenant
39-r <name> when combined with -C and the (-u) user exists it will be the user's tenant role in the (-C)tenant (default: Member)
40-p <userpass> password for the user
41--os-username <username>
42--os-password <admin password>
43--os-tenant-name <tenant_name>
44--os-tenant-id <tenant_id>
45--os-auth-url <auth_url>
Jamie Lennoxbd24a8d2013-09-20 16:26:42 +100046--os-cacert <cert file>
Attila Fazekas22ef5732012-12-16 14:03:06 +010047--target-dir <target_directory>
48--skip-tenant <tenant-name>
49--debug
50
51Example:
52$0 -AP
53$0 -P -C mytenant -u myuser -p mypass
54EOF
55}
56
Dean Troyerd8864fe2014-02-17 11:00:42 -060057if ! options=$(getopt -o hPAp:u:r:C: -l os-username:,os-password:,os-tenant-name:,os-tenant-id:,os-auth-url:,target-dir:,skip-tenant:,os-cacert:,help,debug -- "$@"); then
Attila Fazekas22ef5732012-12-16 14:03:06 +010058 display_help
59 exit 1
60fi
61eval set -- $options
62ADDPASS=""
63
64# The services users usually in the service tenant.
65# rc files for service users, is out of scope.
66# Supporting different tanent for services is out of scope.
67SKIP_TENANT=",service," # tenant names are between commas(,)
68MODE=""
69ROLE=Member
70USER_NAME=""
71USER_PASS=""
Chmouel Boudjnah86a8e972014-02-04 15:20:15 +010072while [ $# -gt 0 ]; do
Attila Fazekas22ef5732012-12-16 14:03:06 +010073 case "$1" in
74 -h|--help) display_help; exit 0 ;;
75 --os-username) export OS_USERNAME=$2; shift ;;
76 --os-password) export OS_PASSWORD=$2; shift ;;
77 --os-tenant-name) export OS_TENANT_NAME=$2; shift ;;
78 --os-tenant-id) export OS_TENANT_ID=$2; shift ;;
79 --skip-tenant) SKIP_TENANT="$SKIP_TENANT$2,"; shift ;;
80 --os-auth-url) export OS_AUTH_URL=$2; shift ;;
Jamie Lennoxbd24a8d2013-09-20 16:26:42 +100081 --os-cacert) export OS_CACERT=$2; shift ;;
Attila Fazekas22ef5732012-12-16 14:03:06 +010082 --target-dir) ACCOUNT_DIR=$2; shift ;;
83 --debug) set -o xtrace ;;
84 -u) MODE=${MODE:-one}; USER_NAME=$2; shift ;;
85 -p) USER_PASS=$2; shift ;;
86 -A) MODE=all; ;;
87 -P) ADDPASS="yes" ;;
88 -C) MODE=create; TENANT=$2; shift ;;
89 -r) ROLE=$2; shift ;;
90 (--) shift; break ;;
91 (-*) echo "$0: error - unrecognized option $1" >&2; display_help; exit 1 ;;
92 (*) echo "$0: error - unexpected argument $1" >&2; display_help; exit 1 ;;
93 esac
94 shift
95done
96
97if [ -z "$OS_PASSWORD" ]; then
98 if [ -z "$ADMIN_PASSWORD" ];then
99 echo "The admin password is required option!" >&2
100 exit 2
101 else
102 OS_PASSWORD=$ADMIN_PASSWORD
103 fi
104fi
105
106if [ -z "$OS_TENANT_NAME" -a -z "$OS_TENANT_ID" ]; then
Sean Dague0b865a52013-10-22 11:37:35 -0400107 export OS_TENANT_NAME=admin
Attila Fazekas22ef5732012-12-16 14:03:06 +0100108fi
109
110if [ -z "$OS_USERNAME" ]; then
Sean Dague0b865a52013-10-22 11:37:35 -0400111 export OS_USERNAME=admin
Attila Fazekas22ef5732012-12-16 14:03:06 +0100112fi
113
114if [ -z "$OS_AUTH_URL" ]; then
Sean Dague0b865a52013-10-22 11:37:35 -0400115 export OS_AUTH_URL=http://localhost:5000/v2.0/
Attila Fazekas22ef5732012-12-16 14:03:06 +0100116fi
117
118USER_PASS=${USER_PASS:-$OS_PASSWORD}
119USER_NAME=${USER_NAME:-$OS_USERNAME}
120
121if [ -z "$MODE" ]; then
122 echo "You must specify at least -A or -u parameter!" >&2
123 echo
124 display_help
125 exit 3
126fi
127
128export -n SERVICE_TOKEN SERVICE_ENDPOINT OS_SERVICE_TOKEN OS_SERVICE_ENDPOINT
129
130EC2_URL=http://localhost:8773/service/Cloud
131S3_URL=http://localhost:3333
132
133ec2=`keystone endpoint-get --service ec2 | awk '/\|[[:space:]]*ec2.publicURL/ {print $4}'`
134[ -n "$ec2" ] && EC2_URL=$ec2
135
136s3=`keystone endpoint-get --service s3 | awk '/\|[[:space:]]*s3.publicURL/ {print $4}'`
137[ -n "$s3" ] && S3_URL=$s3
138
139
140mkdir -p "$ACCOUNT_DIR"
141ACCOUNT_DIR=`readlink -f "$ACCOUNT_DIR"`
142EUCALYPTUS_CERT=$ACCOUNT_DIR/cacert.pem
Adam Spiersc85ade72013-10-01 00:35:16 +0100143if [ -e "$EUCALYPTUS_CERT" ]; then
144 mv "$EUCALYPTUS_CERT" "$EUCALYPTUS_CERT.old"
145fi
Attila Fazekas22ef5732012-12-16 14:03:06 +0100146if ! nova x509-get-root-cert "$EUCALYPTUS_CERT"; then
147 echo "Failed to update the root certificate: $EUCALYPTUS_CERT" >&2
Adam Spiersc85ade72013-10-01 00:35:16 +0100148 if [ -e "$EUCALYPTUS_CERT.old" ]; then
149 mv "$EUCALYPTUS_CERT.old" "$EUCALYPTUS_CERT"
150 fi
Attila Fazekas22ef5732012-12-16 14:03:06 +0100151fi
152
153
154function add_entry(){
155 local user_id=$1
156 local user_name=$2
157 local tenant_id=$3
158 local tenant_name=$4
159 local user_passwd=$5
160
161 # The admin user can see all user's secret AWS keys, it does not looks good
162 local line=`keystone ec2-credentials-list --user_id $user_id | grep -E "^\\|[[:space:]]*($tenant_name|$tenant_id)[[:space:]]*\\|" | head -n 1`
163 if [ -z "$line" ]; then
164 keystone ec2-credentials-create --user-id $user_id --tenant-id $tenant_id 1>&2
165 line=`keystone ec2-credentials-list --user_id $user_id | grep -E "^\\|[[:space:]]*($tenant_name|$tenant_id)[[:space:]]*\\|" | head -n 1`
166 fi
167 local ec2_access_key ec2_secret_key
168 read ec2_access_key ec2_secret_key <<< `echo $line | awk '{print $4 " " $6 }'`
169 mkdir -p "$ACCOUNT_DIR/$tenant_name"
170 local rcfile="$ACCOUNT_DIR/$tenant_name/$user_name"
171 # The certs subject part are the tenant ID "dash" user ID, but the CN should be the first part of the DN
172 # Generally the subject DN parts should be in reverse order like the Issuer
173 # The Serial does not seams correctly marked either
174 local ec2_cert="$rcfile-cert.pem"
175 local ec2_private_key="$rcfile-pk.pem"
176 # Try to preserve the original file on fail (best effort)
Adam Spiersc85ade72013-10-01 00:35:16 +0100177 if [ -e "$ec2_private_key" ]; then
178 mv -f "$ec2_private_key" "$ec2_private_key.old"
179 fi
180 if [ -e "$ec2_cert" ]; then
181 mv -f "$ec2_cert" "$ec2_cert.old"
182 fi
Attila Fazekas22ef5732012-12-16 14:03:06 +0100183 # It will not create certs when the password is incorrect
184 if ! nova --os-password "$user_passwd" --os-username "$user_name" --os-tenant-name "$tenant_name" x509-create-cert "$ec2_private_key" "$ec2_cert"; then
Adam Spiersc85ade72013-10-01 00:35:16 +0100185 if [ -e "$ec2_private_key.old" ]; then
186 mv -f "$ec2_private_key.old" "$ec2_private_key"
187 fi
188 if [ -e "$ec2_cert.old" ]; then
189 mv -f "$ec2_cert.old" "$ec2_cert"
190 fi
Attila Fazekas22ef5732012-12-16 14:03:06 +0100191 fi
192 cat >"$rcfile" <<EOF
193# you can source this file
Attila Fazekas5b813bc2013-01-08 16:51:05 +0100194export EC2_ACCESS_KEY="$ec2_access_key"
195export EC2_SECRET_KEY="$ec2_secret_key"
196export EC2_URL="$EC2_URL"
197export S3_URL="$S3_URL"
Attila Fazekas22ef5732012-12-16 14:03:06 +0100198# OpenStack USER ID = $user_id
199export OS_USERNAME="$user_name"
tanlin2b69f232014-02-12 16:11:32 +0800200# OpenStack Tenant ID = $tenant_id
Attila Fazekas22ef5732012-12-16 14:03:06 +0100201export OS_TENANT_NAME="$tenant_name"
202export OS_AUTH_URL="$OS_AUTH_URL"
Jamie Lennoxbd24a8d2013-09-20 16:26:42 +1000203export OS_CACERT="$OS_CACERT"
Attila Fazekas22ef5732012-12-16 14:03:06 +0100204export EC2_CERT="$ec2_cert"
205export EC2_PRIVATE_KEY="$ec2_private_key"
206export EC2_USER_ID=42 #not checked by nova (can be a 12-digit id)
207export EUCALYPTUS_CERT="$ACCOUNT_DIR/cacert.pem"
208export NOVA_CERT="$ACCOUNT_DIR/cacert.pem"
209EOF
210 if [ -n "$ADDPASS" ]; then
211 echo "export OS_PASSWORD=\"$user_passwd\"" >>"$rcfile"
212 fi
213}
214
215#admin users expected
216function create_or_get_tenant(){
217 local tenant_name=$1
218 local tenant_id=`keystone tenant-list | awk '/\|[[:space:]]*'"$tenant_name"'[[:space:]]*\|.*\|/ {print $2}'`
219 if [ -n "$tenant_id" ]; then
220 echo $tenant_id
221 else
222 keystone tenant-create --name "$tenant_name" | awk '/\|[[:space:]]*id[[:space:]]*\|.*\|/ {print $4}'
223 fi
224}
225
226function create_or_get_role(){
227 local role_name=$1
228 local role_id=`keystone role-list| awk '/\|[[:space:]]*'"$role_name"'[[:space:]]*\|/ {print $2}'`
229 if [ -n "$role_id" ]; then
230 echo $role_id
231 else
Attila Fazekas5b813bc2013-01-08 16:51:05 +0100232 keystone role-create --name "$role_name" |awk '/\|[[:space:]]*id[[:space:]]*\|.*\|/ {print $4}'
Attila Fazekas22ef5732012-12-16 14:03:06 +0100233 fi
234}
235
236# Provides empty string when the user does not exists
237function get_user_id(){
238 local user_name=$1
239 keystone user-list | awk '/^\|[^|]*\|[[:space:]]*'"$user_name"'[[:space:]]*\|.*\|/ {print $2}'
240}
241
242if [ $MODE != "create" ]; then
243# looks like I can't ask for all tenant related to a specified user
244 for tenant_id_at_name in `keystone tenant-list | awk 'BEGIN {IGNORECASE = 1} /true[[:space:]]*\|$/ {print $2 "@" $4}'`; do
245 read tenant_id tenant_name <<< `echo "$tenant_id_at_name" | sed 's/@/ /'`
246 if echo $SKIP_TENANT| grep -q ",$tenant_name,"; then
247 continue;
248 fi
249 for user_id_at_name in `keystone user-list --tenant-id $tenant_id | awk 'BEGIN {IGNORECASE = 1} /true[[:space:]]*\|[^|]*\|$/ {print $2 "@" $4}'`; do
250 read user_id user_name <<< `echo "$user_id_at_name" | sed 's/@/ /'`
251 if [ $MODE = one -a "$user_name" != "$USER_NAME" ]; then
Sean Dague0b865a52013-10-22 11:37:35 -0400252 continue;
Attila Fazekas22ef5732012-12-16 14:03:06 +0100253 fi
Sahid Orentino Ferdjaoui1814e672014-02-11 17:56:07 +0100254
255 # Checks for a specific password defined for an user.
256 # Example for an username johndoe:
257 # JOHNDOE_PASSWORD=1234
258 eval SPECIFIC_UPASSWORD="\$${USER_NAME^^}_PASSWORD"
259 if [ -n "$SPECIFIC_UPASSWORD" ]; then
260 USER_PASS=$SPECIFIC_UPASSWORD
261 fi
Attila Fazekas22ef5732012-12-16 14:03:06 +0100262 add_entry "$user_id" "$user_name" "$tenant_id" "$tenant_name" "$USER_PASS"
263 done
264 done
265else
266 tenant_name=$TENANT
267 tenant_id=`create_or_get_tenant "$TENANT"`
268 user_name=$USER_NAME
269 user_id=`get_user_id $user_name`
270 if [ -z "$user_id" ]; then
271 #new user
272 user_id=`keystone user-create --name "$user_name" --tenant-id "$tenant_id" --pass "$USER_PASS" --email "$user_name@example.com" | awk '/\|[[:space:]]*id[[:space:]]*\|.*\|/ {print $4}'`
273 #The password is in the cmd line. It is not a good thing
274 add_entry "$user_id" "$user_name" "$tenant_id" "$tenant_name" "$USER_PASS"
275 else
276 #new role
277 role_id=`create_or_get_role "$ROLE"`
278 keystone user-role-add --user-id "$user_id" --tenant-id "$tenant_id" --role-id "$role_id"
279 add_entry "$user_id" "$user_name" "$tenant_id" "$tenant_name" "$USER_PASS"
280 fi
281fi