Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / portal / components / portal-mariadb / resources / config / mariadb / docker-entrypoint.sh
1 #!/bin/bash
2
3 set -eo pipefail
4
5 # logging functions
6 mysql_log() {
7     local type
8     type="$1"; shift
9     printf '%s [%s] [Entrypoint]: %s\n' "$(date --rfc-3339=seconds)" "$type" "$*"
10 }
11 mysql_note() {
12     mysql_log Note "$@"
13 }
14 mysql_warn() {
15     mysql_log Warn "$@" >&2
16 }
17 mysql_error() {
18     mysql_log ERROR "$@" >&2
19     exit 1
20 }
21
22 # usage: file_env VAR [DEFAULT]
23 #    ie: file_env 'XYZ_DB_PASSWORD' 'example'
24 # (will allow for "$XYZ_DB_PASSWORD_FILE" to fill in the value of
25 #  "$XYZ_DB_PASSWORD" from a file, especially for Docker's secrets feature)
26 file_env() {
27     local var
28     var="$1"
29     local fileVar
30     fileVar="${var}_FILE"
31     local def
32     def="${2:-}"
33     if [ "${!var:-}" ] && [ "${!fileVar:-}" ]; then
34         mysql_error "Both $var and $fileVar are set (but are exclusive)"
35     fi
36     local val
37     val="$def"
38     # val="${!var}"
39     # val="$(< "${!fileVar}")"
40     # eval replacement of the bashism equivalents above presents no security issue here
41     # since var and fileVar variables contents are derived from the file_env() function arguments.
42     # This method is only called inside this script with a limited number of possible values.
43     if [ "${!var:-}" ]; then
44         eval val=\$$var
45     elif [ "${!fileVar:-}" ]; then
46         val="$(< "$(eval echo "\$$fileVar")")"
47     fi
48     export "$var"="$val"
49     unset "$fileVar"
50 }
51
52
53 # usage: docker_process_init_files [file [file [...]]]
54 #    ie: docker_process_init_files /always-initdb.d/*
55 # process initializer files, based on file extensions
56 docker_process_init_files() {
57     # mysql here for backwards compatibility "${mysql[@]}"
58     mysql=( docker_process_sql )
59
60     echo
61     local f
62     for f; do
63         case "$f" in
64             *.sh)
65                 # https://github.com/docker-library/postgres/issues/450#issuecomment-393167936
66                 # https://github.com/docker-library/postgres/pull/452
67                 if [ -x "$f" ]; then
68                     mysql_note "$0: running $f"
69                     "$f"
70                 else
71                     mysql_note "$0: sourcing $f"
72                     . "$f"
73                 fi
74                 ;;
75             *.sql)    mysql_note "$0: running $f"; docker_process_sql < "$f"; echo ;;
76             *.sql.gz) mysql_note "$0: running $f"; gunzip -c "$f" | docker_process_sql; echo ;;
77             *.sql.xz) mysql_note "$0: running $f"; xzcat "$f" | docker_process_sql; echo ;;
78             *)        mysql_warn "$0: ignoring $f" ;;
79         esac
80         echo
81     done
82 }
83
84 mysql_check_config() {
85     local toRun
86     local errors
87     toRun=( "$@" --verbose --help --log-bin-index="$(mktemp -u)" )
88     if ! errors="$("${toRun[@]}" 2>&1 >/dev/null)"; then
89         mysql_error "$(printf 'mysqld failed while attempting to check config\n\tcommand was: ')${toRun[*]}$(printf'\n\t')$errors"
90     fi
91 }
92
93 # Fetch value from server config
94 # We use mysqld --verbose --help instead of my_print_defaults because the
95 # latter only show values present in config files, and not server defaults
96 mysql_get_config() {
97     local conf
98     conf="$1"; shift
99     "$@" --verbose --help --log-bin-index="$(mktemp -u)" 2>/dev/null \
100         | awk -v conf="$conf" '$1 == conf && /^[^ \t]/ { sub(/^[^ \t]+[ \t]+/, ""); print; exit }'
101     # match "datadir      /some/path with/spaces in/it here" but not "--xyz=abc\n     datadir (xyz)"
102 }
103
104 # Do a temporary startup of the MySQL server, for init purposes
105 docker_temp_server_start() {
106     "$@" --skip-networking --socket="${SOCKET}" &
107     mysql_note "Waiting for server startup"
108     local i
109     for i in $(seq 30 -1 0); do
110         # only use the root password if the database has already been initializaed
111         # so that it won't try to fill in a password file when it hasn't been set yet
112         extraArgs=""
113         if [ -z "$DATABASE_ALREADY_EXISTS" ]; then
114             extraArgs=${extraArgs}" --dont-use-mysql-root-password"
115         fi
116         if echo 'SELECT 1' |docker_process_sql ${extraArgs} --database=mysql >/dev/null 2>&1; then
117             break
118         fi
119         sleep 1
120     done
121     if [ "$i" = 0 ]; then
122         mysql_error "Unable to start server."
123     fi
124 }
125
126 # Stop the server. When using a local socket file mysqladmin will block until
127 # the shutdown is complete.
128 docker_temp_server_stop() {
129     if ! mysqladmin --defaults-extra-file=<( _mysql_passfile ) shutdown -uroot --socket="${SOCKET}"; then
130         mysql_error "Unable to shut down server."
131     fi
132 }
133
134 # Verify that the minimally required password settings are set for new databases.
135 docker_verify_minimum_env() {
136     if [ -z "$MYSQL_ROOT_PASSWORD" -a -z "$MYSQL_ALLOW_EMPTY_PASSWORD" -a -z "$MYSQL_RANDOM_ROOT_PASSWORD" ]; then
137         mysql_error "$(printf'Database is uninitialized and password option is not specified\n\tYou need to specify one of MYSQL_ROOT_PASSWORD, MYSQL_ALLOW_EMPTY_PASSWORD and MYSQL_RANDOM_ROOT_PASSWORD')"
138     fi
139 }
140
141 # creates folders for the database
142 # also ensures permission for user mysql of run as root
143 docker_create_db_directories() {
144     local user
145     user="$(id -u)"
146
147     # TODO other directories that are used by default? like /var/lib/mysql-files
148     # see https://github.com/docker-library/mysql/issues/562
149     mkdir -p "$DATADIR"
150
151     if [ "$user" = "0" ]; then
152         # this will cause less disk access than `chown -R`
153         find "$DATADIR" \! -user mysql -exec chown mysql '{}' +
154     fi
155 }
156
157 # initializes the database directory
158 docker_init_database_dir() {
159     mysql_note "Initializing database files"
160     installArgs=" --datadir=$DATADIR --rpm "
161     if { mysql_install_db --help || :; } | grep -q -- '--auth-root-authentication-method'; then
162         # beginning in 10.4.3, install_db uses "socket" which only allows system user root to connect, switch back to "normal" to allow mysql root without a password
163         # see https://github.com/MariaDB/server/commit/b9f3f06857ac6f9105dc65caae19782f09b47fb3
164         # (this flag doesn't exist in 10.0 and below)
165         installArgs=${installArgs}" --auth-root-authentication-method=normal"
166     fi
167     # "Other options are passed to mysqld." (so we pass all "mysqld" arguments directly here)
168     mysql_install_db ${installArgs} "$(echo ${@} | sed 's/^ *[^ ]* *//')"
169     mysql_note "Database files initialized"
170 }
171
172 if [ -z "$DATADIR" ]; then
173     DATADIR='unknown'
174 fi
175 if [ -z "$SOCKET" ]; then
176     SOCKET='unknown'
177 fi
178 if [ -z "$DATABASE_ALREADY_EXISTS" ]; then
179     DATABASE_ALREADY_EXISTS='false'
180 fi
181
182 # Loads various settings that are used elsewhere in the script
183 # This should be called after mysql_check_config, but before any other functions
184 docker_setup_env() {
185     # Get config
186     DATADIR="$(mysql_get_config 'datadir' "$@")"
187     SOCKET="$(mysql_get_config 'socket' "$@")"
188
189     # Initialize values that might be stored in a file
190     file_env 'MYSQL_ROOT_HOST' '%'
191     file_env 'MYSQL_DATABASE'
192     file_env 'MYSQL_USER'
193     file_env 'MYSQL_PASSWORD'
194     file_env 'MYSQL_ROOT_PASSWORD'
195     file_env 'PORTAL_DB_TABLES'
196
197     if [ -d "$DATADIR/mysql" ]; then
198         DATABASE_ALREADY_EXISTS='true'
199     fi
200 }
201
202 # Execute sql script, passed via stdin
203 # usage: docker_process_sql [--dont-use-mysql-root-password] [mysql-cli-args]
204 #    ie: docker_process_sql --database=mydb <<<'INSERT ...'
205 #    ie: docker_process_sql --dont-use-mysql-root-password --database=mydb <my-file.sql
206 docker_process_sql() {
207     passfileArgs=""
208     if [ '--dont-use-mysql-root-password' = "$1" ]; then
209         passfileArgs=${passfileArgs}" $1"
210         shift
211     fi
212     # args sent in can override this db, since they will be later in the command
213     if [ -n "$MYSQL_DATABASE" ]; then
214         set -- --database="$MYSQL_DATABASE" "$@"
215     fi
216
217     mysql --defaults-extra-file=<( _mysql_passfile ${passfileArgs}) --protocol=socket -uroot -hlocalhost --socket="${SOCKET}" "$@"
218 }
219
220 # Initializes database with timezone info and root password, plus optional extra db/user
221 docker_setup_db() {
222     # Load timezone info into database
223     if [ -z "$MYSQL_INITDB_SKIP_TZINFO" ]; then
224         {
225             # Aria in 10.4+ is slow due to "transactional" (crash safety)
226             # https://jira.mariadb.org/browse/MDEV-23326
227             # https://github.com/docker-library/mariadb/issues/262
228             local tztables
229             tztables=( time_zone time_zone_leap_second time_zone_name time_zone_transition time_zone_transition_type )
230             for table in "${tztables[@]}"; do
231                 echo "/*!100400 ALTER TABLE $table TRANSACTIONAL=0 */;"
232             done
233
234             # sed is for https://bugs.mysql.com/bug.php?id=20545
235             mysql_tzinfo_to_sql /usr/share/zoneinfo \
236                 | sed 's/Local time zone must be set--see zic manual page/FCTY/'
237
238             for table in "${tztables[@]}"; do
239                 echo "/*!100400 ALTER TABLE $table TRANSACTIONAL=1 */;"
240             done
241         } | docker_process_sql --dont-use-mysql-root-password --database=mysql
242         # tell docker_process_sql to not use MYSQL_ROOT_PASSWORD since it is not set yet
243     fi
244     # Generate random root password
245     if [ -n "$MYSQL_RANDOM_ROOT_PASSWORD" ]; then
246         export MYSQL_ROOT_PASSWORD="$(pwgen -1 32)"
247         mysql_note "GENERATED ROOT PASSWORD: $MYSQL_ROOT_PASSWORD"
248     fi
249     # Sets root password and creates root users for non-localhost hosts
250     local rootCreate
251     rootCreate=
252     # default root to listen for connections from anywhere
253     if [ -n "$MYSQL_ROOT_HOST" ] && [ "$MYSQL_ROOT_HOST" != 'localhost' ]; then
254         # no, we don't care if read finds a terminating character in this heredoc
255         # https://unix.stackexchange.com/questions/265149/why-is-set-o-errexit-breaking-this-read-heredoc-expression/265151#265151
256         read -r -d '' rootCreate <<-EOSQL || true
257             CREATE USER 'root'@'${MYSQL_ROOT_HOST}' IDENTIFIED BY '${MYSQL_ROOT_PASSWORD}' ;
258             GRANT ALL ON *.* TO 'root'@'${MYSQL_ROOT_HOST}' WITH GRANT OPTION ;
259 EOSQL
260     fi
261
262     # tell docker_process_sql to not use MYSQL_ROOT_PASSWORD since it is just now being set
263     docker_process_sql --dont-use-mysql-root-password --database=mysql <<-EOSQL
264         -- What's done in this file shouldn't be replicated
265         --  or products like mysql-fabric won't work
266         SET @@SESSION.SQL_LOG_BIN=0;
267
268         DELETE FROM mysql.user WHERE user NOT IN ('mysql.sys', 'mariadb.sys', 'mysqlxsys', 'root') OR host NOT IN ('localhost') ;
269         SET PASSWORD FOR 'root'@'localhost'=PASSWORD('${MYSQL_ROOT_PASSWORD}') ;
270         -- 10.1: https://github.com/MariaDB/server/blob/d925aec1c10cebf6c34825a7de50afe4e630aff4/scripts/mysql_secure_installation.sh#L347-L365
271         -- 10.5: https://github.com/MariaDB/server/blob/00c3a28820c67c37ebbca72691f4897b57f2eed5/scripts/mysql_secure_installation.sh#L351-L369
272         DELETE FROM mysql.db WHERE Db='test' OR Db='test\_%' ;
273
274         GRANT ALL ON *.* TO 'root'@'localhost' WITH GRANT OPTION ;
275         FLUSH PRIVILEGES ;
276         ${rootCreate}
277         DROP DATABASE IF EXISTS test ;
278 EOSQL
279
280     # Creates a custom database and user if specified
281     if [ -n "$MYSQL_DATABASE" ]; then
282         mysql_note "Creating database ${MYSQL_DATABASE}"
283         echo "CREATE DATABASE IF NOT EXISTS \`$MYSQL_DATABASE\` ;" |docker_process_sql --database=mysql
284     fi
285
286     if [ -n "$MYSQL_USER" ] && [ -n "$MYSQL_PASSWORD" ]; then
287         mysql_note "Creating user ${MYSQL_USER}"
288         echo "CREATE USER '$MYSQL_USER'@'%' IDENTIFIED BY '$MYSQL_PASSWORD' ;" |docker_process_sql --database=mysql
289
290         if [ -n "$MYSQL_DATABASE" ]; then
291             mysql_note "Giving user ${MYSQL_USER} access to schema ${MYSQL_DATABASE}"
292             echo "GRANT ALL ON \`$(echo $MYSQL_DATABASE | sed 's@_@\\_@g')\`.* TO '$MYSQL_USER'@'%' ;" | docker_process_sql --database=mysql
293         fi
294
295         echo "FLUSH PRIVILEGES ;" | docker_process_sql --database=mysql
296     fi
297 }
298
299 _mysql_passfile() {
300     # echo the password to the "file" the client uses
301     # the client command will use process substitution to create a file on the fly
302     # ie: --defaults-extra-file=<( _mysql_passfile )
303     if [ '--dont-use-mysql-root-password' != "$1" ] && [ -n "$MYSQL_ROOT_PASSWORD" ]; then
304         cat <<-EOF
305             [client]
306             password="${MYSQL_ROOT_PASSWORD}"
307 EOF
308     fi
309 }
310
311 # check arguments for an option that would cause mysqld to stop
312 # return true if there is one
313 _mysql_want_help() {
314     local arg
315     for arg; do
316         case "$arg" in
317             -'?'|--help|--print-defaults|-V|--version)
318                 return 0
319                 ;;
320         esac
321     done
322     return 1
323 }
324
325 _main() {
326     # if command starts with an option, prepend mysqld
327     if echo "$1" | grep '^-' >/dev/null; then
328         set -- mysqld "$@"
329     fi
330
331     # skip setup if they aren't running mysqld or want an option that stops mysqld
332     if [ "$1" = 'mysqld' ] && ! _mysql_want_help "$@"; then
333         mysql_note "Entrypoint script for MySQL Server ${MARIADB_VERSION} started."
334
335         mysql_check_config "$@"
336         # Load various environment variables
337         docker_setup_env "$@"
338         docker_create_db_directories
339
340         # If container is started as root user, restart as dedicated mysql user
341         if [ "$(id -u)" = "0" ]; then
342             mysql_note "Switching to dedicated user 'mysql'"
343             exec gosu mysql "$0" "$@"
344         fi
345
346         # there's no database, so it needs to be initialized
347         if [ -z "$DATABASE_ALREADY_EXISTS" ]; then
348             docker_verify_minimum_env
349
350             # check dir permissions to reduce likelihood of half-initialized database
351             ls /docker-entrypoint-initdb.d/ > /dev/null
352
353             docker_init_database_dir "$@"
354
355             mysql_note "Starting temporary server"
356             docker_temp_server_start "$@"
357             mysql_note "Temporary server started."
358
359             docker_setup_db
360             docker_process_init_files /docker-entrypoint-initdb.d/*
361
362             for i in $(echo $PORTAL_DB_TABLES | sed "s/,/ /g")
363                 do
364                     echo "Granting portal user ALL PRIVILEGES for table $i"
365                     echo "GRANT ALL ON \`$i\`.* TO '$MYSQL_USER'@'%' ;" | "${mysql[@]}"
366                 done
367
368             mysql_note "Stopping temporary server"
369             docker_temp_server_stop
370             mysql_note "Temporary server stopped"
371
372             echo
373             mysql_note "MySQL init process done. Ready for start up."
374             echo
375         fi
376     fi
377     exec "$@"
378 }
379
380 # If we are sourced from elsewhere, don't perform any further actions
381 # https://stackoverflow.com/questions/2683279/how-to-detect-if-a-script-is-being-sourced/2942183#2942183
382 if [ "$(basename $0)" = "docker-entrypoint.sh" ]; then
383     _main "$@"
384 fi