blob: 5838a4df9b2517dd28febfedfdcde95a33444ac0 [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
zhang-hared98a5d02013-06-21 18:18:02 +08003# lib/apache
4# Functions to control configuration and operation of apache web server
5
6# Dependencies:
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01007#
8# - ``functions`` file
Dean Troyerd8864fe2014-02-17 11:00:42 -06009# - ``STACK_USER`` must be defined
10#
Stephan Renatuse578eff2013-11-19 13:31:04 +010011# lib/apache exports the following functions:
12#
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010013# - install_apache_wsgi
Gabriel Assis Bezerraa688bc62014-05-27 20:58:22 +000014# - apache_site_config_for
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010015# - enable_apache_site
16# - disable_apache_site
17# - start_apache_server
18# - stop_apache_server
19# - restart_apache_server
zhang-hared98a5d02013-06-21 18:18:02 +080020
21# Save trace setting
Ian Wienand523f4882015-10-13 11:03:03 +110022_XTRACE_LIB_APACHE=$(set +o | grep xtrace)
zhang-hared98a5d02013-06-21 18:18:02 +080023set +o xtrace
24
25# Allow overriding the default Apache user and group, default to
26# current user and his default group.
Stephan Renatuse578eff2013-11-19 13:31:04 +010027APACHE_USER=${APACHE_USER:-$STACK_USER}
zhang-hared98a5d02013-06-21 18:18:02 +080028APACHE_GROUP=${APACHE_GROUP:-$(id -gn $APACHE_USER)}
29
30
31# Set up apache name and configuration directory
Clark Boylancfb9f052016-11-29 10:43:05 -080032# Note that APACHE_CONF_DIR is really more accurately apache's vhost
33# configuration dir but we can't just change this because public interfaces.
zhang-hared98a5d02013-06-21 18:18:02 +080034if is_ubuntu; then
35 APACHE_NAME=apache2
Dean Troyer444a8d52014-06-06 16:36:52 -050036 APACHE_CONF_DIR=${APACHE_CONF_DIR:-/etc/$APACHE_NAME/sites-available}
Clark Boylancfb9f052016-11-29 10:43:05 -080037 APACHE_SETTINGS_DIR=${APACHE_SETTINGS_DIR:-/etc/$APACHE_NAME/conf-enabled}
zhang-hared98a5d02013-06-21 18:18:02 +080038elif is_fedora; then
39 APACHE_NAME=httpd
Dean Troyer444a8d52014-06-06 16:36:52 -050040 APACHE_CONF_DIR=${APACHE_CONF_DIR:-/etc/$APACHE_NAME/conf.d}
Clark Boylancfb9f052016-11-29 10:43:05 -080041 APACHE_SETTINGS_DIR=${APACHE_SETTINGS_DIR:-/etc/$APACHE_NAME/conf.d}
zhang-hared98a5d02013-06-21 18:18:02 +080042elif is_suse; then
43 APACHE_NAME=apache2
Dean Troyer444a8d52014-06-06 16:36:52 -050044 APACHE_CONF_DIR=${APACHE_CONF_DIR:-/etc/$APACHE_NAME/vhosts.d}
Clark Boylancfb9f052016-11-29 10:43:05 -080045 APACHE_SETTINGS_DIR=${APACHE_SETTINGS_DIR:-/etc/$APACHE_NAME/conf.d}
zhang-hared98a5d02013-06-21 18:18:02 +080046fi
Clark Boylan66ce5c22016-10-05 12:11:05 -070047APACHE_LOG_DIR="/var/log/${APACHE_NAME}"
zhang-hared98a5d02013-06-21 18:18:02 +080048
49# Functions
50# ---------
Gregory Haynes4b49e402016-08-31 18:19:51 -070051
52# Enable apache mod and restart apache if it isn't already enabled.
53function enable_apache_mod {
54 local mod=$1
55 # Apache installation, because we mark it NOPRIME
Clark Boylan35649ae2017-05-27 17:52:55 -070056 if is_ubuntu; then
57 # Skip mod_version as it is not a valid mod to enable
58 # on debuntu, instead it is built in.
59 if [[ "$mod" != "version" ]] && ! a2query -m $mod ; then
60 sudo a2enmod $mod
61 restart_apache_server
62 fi
63 elif is_suse; then
64 if ! a2enmod -q $mod ; then
Gregory Haynes4b49e402016-08-31 18:19:51 -070065 sudo a2enmod $mod
66 restart_apache_server
67 fi
68 elif is_fedora; then
69 # pass
70 true
71 else
72 exit_distro_not_supported "apache enable mod"
73 fi
74}
75
Sean Dague604e5982017-04-13 13:28:12 -040076# NOTE(sdague): Install uwsgi including apache module, we need to get
77# to 2.0.6+ to get a working mod_proxy_uwsgi. We can probably build a
78# check for that and do it differently for different platforms.
79function install_apache_uwsgi {
80 local apxs="apxs2"
81 if is_fedora; then
82 apxs="apxs"
83 fi
84
85 # Ubuntu xenial is back level on uwsgi so the proxy doesn't
86 # actually work. Hence we have to build from source for now.
87 #
88 # Centos 7 actually has the module in epel, but there was a big
89 # push to disable epel by default. As such, compile from source
90 # there as well.
91
92 local dir
93 dir=$(mktemp -d)
94 pushd $dir
95 pip_install uwsgi
96 pip download uwsgi -c $REQUIREMENTS_DIR/upper-constraints.txt
97 local uwsgi
98 uwsgi=$(ls uwsgi*)
99 tar xvf $uwsgi
100 cd uwsgi*/apache2
101 sudo $apxs -i -c mod_proxy_uwsgi.c
102 popd
103 # delete the temp directory
104 sudo rm -rf $dir
105
Clark Boylan35649ae2017-05-27 17:52:55 -0700106 if is_ubuntu || is_suse ; then
Sean Dague604e5982017-04-13 13:28:12 -0400107 # we've got to enable proxy and proxy_uwsgi for this to work
108 sudo a2enmod proxy
109 sudo a2enmod proxy_uwsgi
110 elif is_fedora; then
111 # redhat is missing a nice way to turn on/off modules
112 echo "LoadModule proxy_uwsgi_module modules/mod_proxy_uwsgi.so" \
113 | sudo tee /etc/httpd/conf.modules.d/02-proxy-uwsgi.conf
114 fi
115 restart_apache_server
116}
117
zhang-hared98a5d02013-06-21 18:18:02 +0800118# install_apache_wsgi() - Install Apache server and wsgi module
Ian Wienandaee18c72014-02-21 15:35:08 +1100119function install_apache_wsgi {
zhang-hared98a5d02013-06-21 18:18:02 +0800120 # Apache installation, because we mark it NOPRIME
121 if is_ubuntu; then
122 # Install apache2, which is NOPRIME'd
Davanum Srinivasafa8a002016-12-19 09:51:01 -0500123 install_package apache2
124 if python3_enabled; then
125 if is_package_installed libapache2-mod-wsgi; then
126 uninstall_package libapache2-mod-wsgi
127 fi
128 install_package libapache2-mod-wsgi-py3
129 else
130 install_package libapache2-mod-wsgi
131 fi
zhang-hared98a5d02013-06-21 18:18:02 +0800132 elif is_fedora; then
133 sudo rm -f /etc/httpd/conf.d/000-*
134 install_package httpd mod_wsgi
Ian Wienand41e6e122017-08-08 15:06:26 +1000135 # For consistency with Ubuntu, switch to the worker mpm, as
136 # the default is prefork
137 sudo sed -i '/mod_mpm_prefork.so/s/^/#/g' /etc/httpd/conf.modules.d/00-mpm.conf
138 sudo sed -i '/mod_mpm_worker.so/s/^#//g' /etc/httpd/conf.modules.d/00-mpm.conf
zhang-hared98a5d02013-06-21 18:18:02 +0800139 elif is_suse; then
140 install_package apache2 apache2-mod_wsgi
141 else
Gregory Haynes4b49e402016-08-31 18:19:51 -0700142 exit_distro_not_supported "apache wsgi installation"
zhang-hared98a5d02013-06-21 18:18:02 +0800143 fi
Gregory Haynes4b49e402016-08-31 18:19:51 -0700144 # WSGI isn't enabled by default, enable it
145 enable_apache_mod wsgi
Morgan Fainbergd074dc72014-06-24 21:33:39 -0700146}
147
Gabriel Assis Bezerraa688bc62014-05-27 20:58:22 +0000148# apache_site_config_for() - The filename of the site's configuration file.
149# This function uses the global variables APACHE_NAME and APACHE_CONF_DIR.
150#
Sean Dague8f8b2742017-04-13 09:34:12 -0400151# On Ubuntu 14.04+, the site configuration file must have a .conf suffix for a2ensite and a2dissite to
Gabriel Assis Bezerraa688bc62014-05-27 20:58:22 +0000152# recognise it. a2ensite and a2dissite ignore the .conf suffix used as parameter. The default sites'
153# files are 000-default.conf and default-ssl.conf.
154#
Ralf Haferkamp633a1292014-06-16 14:10:05 +0200155# On Fedora and openSUSE, any file in /etc/httpd/conf.d/ whose name ends with .conf is enabled.
Gabriel Assis Bezerraa688bc62014-05-27 20:58:22 +0000156#
157# On RHEL and CentOS, things should hopefully work as in Fedora.
158#
159# The table below summarizes what should happen on each distribution:
160# +----------------------+--------------------+--------------------------+--------------------------+
161# | Distribution | File name | Site enabling command | Site disabling command |
162# +----------------------+--------------------+--------------------------+--------------------------+
Gabriel Assis Bezerraa688bc62014-05-27 20:58:22 +0000163# | Ubuntu 14.04 | site.conf | a2ensite site | a2dissite site |
164# | Fedora, RHEL, CentOS | site.conf.disabled | mv site.conf{.disabled,} | mv site.conf{,.disabled} |
165# +----------------------+--------------------+--------------------------+--------------------------+
166function apache_site_config_for {
167 local site=$@
168 if is_ubuntu; then
Sean Dague8f8b2742017-04-13 09:34:12 -0400169 # Ubuntu 14.04 - Apache 2.4
170 echo $APACHE_CONF_DIR/${site}.conf
Ralf Haferkamp633a1292014-06-16 14:10:05 +0200171 elif is_fedora || is_suse; then
Gabriel Assis Bezerraa688bc62014-05-27 20:58:22 +0000172 # fedora conf.d is only imported if it ends with .conf so this is approx the same
Dean Troyer444a8d52014-06-06 16:36:52 -0500173 local enabled_site_file="$APACHE_CONF_DIR/${site}.conf"
Gabriel Assis Bezerraa688bc62014-05-27 20:58:22 +0000174 if [ -f $enabled_site_file ]; then
175 echo ${enabled_site_file}
176 else
177 echo ${enabled_site_file}.disabled
178 fi
179 fi
180}
181
Jamie Lennox54707012013-09-17 12:07:48 +1000182# enable_apache_site() - Enable a particular apache site
Ian Wienandaee18c72014-02-21 15:35:08 +1100183function enable_apache_site {
Jamie Lennox54707012013-09-17 12:07:48 +1000184 local site=$@
Clark Boylan35649ae2017-05-27 17:52:55 -0700185 # Many of our sites use mod version. Just enable it.
186 enable_apache_mod version
Jamie Lennox54707012013-09-17 12:07:48 +1000187 if is_ubuntu; then
188 sudo a2ensite ${site}
Ralf Haferkamp633a1292014-06-16 14:10:05 +0200189 elif is_fedora || is_suse; then
Dean Troyer444a8d52014-06-06 16:36:52 -0500190 local enabled_site_file="$APACHE_CONF_DIR/${site}.conf"
191 # Do nothing if site already enabled or no site config exists
192 if [[ -f ${enabled_site_file}.disabled ]] && [[ ! -f ${enabled_site_file} ]]; then
193 sudo mv ${enabled_site_file}.disabled ${enabled_site_file}
194 fi
Jamie Lennox54707012013-09-17 12:07:48 +1000195 fi
196}
197
198# disable_apache_site() - Disable a particular apache site
Ian Wienandaee18c72014-02-21 15:35:08 +1100199function disable_apache_site {
Jamie Lennox54707012013-09-17 12:07:48 +1000200 local site=$@
201 if is_ubuntu; then
Chris Dent2fcdaac2017-04-18 16:54:12 +0100202 sudo a2dissite ${site} || true
Ralf Haferkamp633a1292014-06-16 14:10:05 +0200203 elif is_fedora || is_suse; then
Dean Troyer444a8d52014-06-06 16:36:52 -0500204 local enabled_site_file="$APACHE_CONF_DIR/${site}.conf"
205 # Do nothing if no site config exists
206 if [[ -f ${enabled_site_file} ]]; then
207 sudo mv ${enabled_site_file} ${enabled_site_file}.disabled
208 fi
Jamie Lennox54707012013-09-17 12:07:48 +1000209 fi
210}
211
zhang-hared98a5d02013-06-21 18:18:02 +0800212# start_apache_server() - Start running apache server
Ian Wienandaee18c72014-02-21 15:35:08 +1100213function start_apache_server {
zhang-hared98a5d02013-06-21 18:18:02 +0800214 start_service $APACHE_NAME
215}
216
217# stop_apache_server() - Stop running apache server
Ian Wienandaee18c72014-02-21 15:35:08 +1100218function stop_apache_server {
zhang-hared98a5d02013-06-21 18:18:02 +0800219 if [ -n "$APACHE_NAME" ]; then
220 stop_service $APACHE_NAME
221 else
222 exit_distro_not_supported "apache configuration"
223 fi
224}
225
226# restart_apache_server
Ian Wienandaee18c72014-02-21 15:35:08 +1100227function restart_apache_server {
Morgan Fainberg2df00462014-07-15 11:06:36 -0700228 # Apache can be slow to stop, doing an explicit stop, sleep, start helps
229 # to mitigate issues where apache will claim a port it's listening on is
230 # still in use and fail to start.
Sean Dague2b85cf02017-04-13 09:02:14 -0400231 restart_service $APACHE_NAME
zhang-hared98a5d02013-06-21 18:18:02 +0800232}
233
Sean Dague2f8c88e2017-04-13 09:08:39 -0400234function write_uwsgi_config {
235 local file=$1
236 local wsgi=$2
237 local url=$3
238 local http=$4
239 local name=""
240 name=$(basename $wsgi)
rabiaa26baa2017-04-20 10:55:16 +0530241
242 # create a home for the sockets; note don't use /tmp -- apache has
243 # a private view of it on some platforms.
244 local socket_dir='/var/run/uwsgi'
Kirill Zaitsevd0db62a2017-05-26 19:02:52 +0300245
246 # /var/run will be empty on ubuntu after reboot, so we can use systemd-temptiles
247 # to automatically create $socket_dir.
248 sudo mkdir -p /etc/tmpfiles.d/
249 echo "d $socket_dir 0755 $STACK_USER root" | sudo tee /etc/tmpfiles.d/uwsgi.conf
250 sudo systemd-tmpfiles --create /etc/tmpfiles.d/uwsgi.conf
251
rabiaa26baa2017-04-20 10:55:16 +0530252 local socket="$socket_dir/${name}.socket"
Sean Dague2f8c88e2017-04-13 09:08:39 -0400253
254 # always cleanup given that we are using iniset here
255 rm -rf $file
256 iniset "$file" uwsgi wsgi-file "$wsgi"
Sean Dague2f8c88e2017-04-13 09:08:39 -0400257 iniset "$file" uwsgi processes $API_WORKERS
258 # This is running standalone
259 iniset "$file" uwsgi master true
260 # Set die-on-term & exit-on-reload so that uwsgi shuts down
261 iniset "$file" uwsgi die-on-term true
262 iniset "$file" uwsgi exit-on-reload true
263 iniset "$file" uwsgi enable-threads true
264 iniset "$file" uwsgi plugins python
265 # uwsgi recommends this to prevent thundering herd on accept.
266 iniset "$file" uwsgi thunder-lock true
267 # Override the default size for headers from the 4k default.
268 iniset "$file" uwsgi buffer-size 65535
269 # Make sure the client doesn't try to re-use the connection.
270 iniset "$file" uwsgi add-header "Connection: close"
271 # This ensures that file descriptors aren't shared between processes.
272 iniset "$file" uwsgi lazy-apps true
Sean Dague2f8c88e2017-04-13 09:08:39 -0400273
274 # If we said bind directly to http, then do that and don't start the apache proxy
275 if [[ -n "$http" ]]; then
276 iniset "$file" uwsgi http $http
277 else
278 local apache_conf=""
279 apache_conf=$(apache_site_config_for $name)
Chris Dentb90bb1a2017-04-18 16:30:14 +0000280 iniset "$file" uwsgi socket "$socket"
281 iniset "$file" uwsgi chmod-socket 666
Matthew Treinish1fa65362017-06-23 22:32:37 +0000282 echo "ProxyPass \"${url}\" \"unix:${socket}|uwsgi://uwsgi-uds-${name}/\" retry=0 " | sudo tee -a $apache_conf
Sean Dague2f8c88e2017-04-13 09:08:39 -0400283 enable_apache_site $name
Ian Wienandf6a2d2c2017-04-26 10:50:29 +1000284 restart_apache_server
Sean Dague2f8c88e2017-04-13 09:08:39 -0400285 fi
286}
287
Matthew Treinish1fa65362017-06-23 22:32:37 +0000288# For services using chunked encoding, the only services known to use this
289# currently are Glance and Swift, we need to use an http proxy instead of
290# mod_proxy_uwsgi because the chunked encoding gets dropped. See:
291# https://github.com/unbit/uwsgi/issues/1540 You can workaround this on python2
292# but that involves having apache buffer the request before sending it to
Jeremy Liu2f7df512017-07-12 10:09:48 +0800293# uwsgi.
Matthew Treinish1fa65362017-06-23 22:32:37 +0000294function write_local_uwsgi_http_config {
295 local file=$1
296 local wsgi=$2
297 local url=$3
298 name=$(basename $wsgi)
299
300 # create a home for the sockets; note don't use /tmp -- apache has
301 # a private view of it on some platforms.
302
303 # always cleanup given that we are using iniset here
304 rm -rf $file
305 iniset "$file" uwsgi wsgi-file "$wsgi"
306 port=$(get_random_port)
Matthew Treinish1560efe2017-06-30 12:15:26 -0400307 iniset "$file" uwsgi http-socket "127.0.0.1:$port"
Matthew Treinish1fa65362017-06-23 22:32:37 +0000308 iniset "$file" uwsgi processes $API_WORKERS
309 # This is running standalone
310 iniset "$file" uwsgi master true
311 # Set die-on-term & exit-on-reload so that uwsgi shuts down
312 iniset "$file" uwsgi die-on-term true
313 iniset "$file" uwsgi exit-on-reload true
314 iniset "$file" uwsgi enable-threads true
315 iniset "$file" uwsgi plugins python
316 # uwsgi recommends this to prevent thundering herd on accept.
317 iniset "$file" uwsgi thunder-lock true
318 # Override the default size for headers from the 4k default.
319 iniset "$file" uwsgi buffer-size 65535
320 # Make sure the client doesn't try to re-use the connection.
321 iniset "$file" uwsgi add-header "Connection: close"
322 # This ensures that file descriptors aren't shared between processes.
323 iniset "$file" uwsgi lazy-apps true
324 iniset "$file" uwsgi chmod-socket 666
325 iniset "$file" uwsgi http-raw-body true
326 iniset "$file" uwsgi http-chunked-input true
327 iniset "$file" uwsgi http-auto-chunked true
Matthew Treinish82d06102017-06-28 17:42:31 -0400328 iniset "$file" uwsgi http-keepalive false
Matthew Treinishb79531a2017-06-30 12:10:06 -0400329 # Increase socket timeout for slow chunked uploads
330 iniset "$file" uwsgi socket-timeout 30
Matthew Treinish1fa65362017-06-23 22:32:37 +0000331
332 enable_apache_mod proxy
333 enable_apache_mod proxy_http
334 local apache_conf=""
335 apache_conf=$(apache_site_config_for $name)
336 echo "KeepAlive Off" | sudo tee $apache_conf
Matthew Treinisha3488d52017-08-10 14:55:15 -0400337 echo "SetEnv proxy-sendchunked 1" | sudo tee -a $apache_conf
Matthew Treinish1fa65362017-06-23 22:32:37 +0000338 echo "ProxyPass \"${url}\" \"http://127.0.0.1:$port\" retry=0 " | sudo tee -a $apache_conf
339 enable_apache_site $name
340 restart_apache_server
341}
342
Sean Dague2f8c88e2017-04-13 09:08:39 -0400343function remove_uwsgi_config {
344 local file=$1
345 local wsgi=$2
346 local name=""
347 name=$(basename $wsgi)
348
349 rm -rf $file
350 disable_apache_site $name
351}
352
zhang-hared98a5d02013-06-21 18:18:02 +0800353# Restore xtrace
Ian Wienand523f4882015-10-13 11:03:03 +1100354$_XTRACE_LIB_APACHE
zhang-hared98a5d02013-06-21 18:18:02 +0800355
Adam Spiers6a5aa7c2013-10-24 11:27:02 +0100356# Tell emacs to use shell-script-mode
357## Local variables:
358## mode: shell-script
359## End: