412f6377587551bc32b255e8c37e61e9c990e1c0
[myplc.git] / plc.d / httpd
1 #!/bin/bash
2 #
3 # priority: 600
4 #
5 # Configure Apache web server
6 #
7 # Mark Huang <mlhuang@cs.princeton.edu>
8 # Copyright (C) 2006 The Trustees of Princeton University
9 #
10
11 # Source function library and configuration
12 . /etc/plc.d/functions
13 . /etc/planetlab/plc_config
14
15 # Be verbose
16 set -x
17
18 # Default locations
19 DocumentRoot=/var/www/html
20 php_ini=/etc/php.ini
21 httpd_conf=/etc/httpd/conf/httpd.conf
22 ssl_conf=/etc/httpd/conf.d/ssl.conf
23 plc_conf=/etc/httpd/conf.d/plc.conf
24
25 function disable_file () {
26     file=$1; shift
27     [ -f $file ] && mv -f $file $file.disabled
28 }
29 function enable_file () {
30     file=$1; shift
31     [ ! -f $file ] && mv -f $file.disabled $file
32 }
33
34 case "$1" in
35     start)
36         if [ "$PLC_API_ENABLED" != "1" -a \
37              "$PLC_BOOT_ENABLED" != "1" -a \
38              "$PLC_WWW_ENABLED" != "1" ] ; then
39             exit 0
40         fi
41
42         MESSAGE=$"Starting web server"
43         dialog "$MESSAGE"
44
45         # set document root - not really useful on fedora but just in case
46         sed -i -e "s@^DocumentRoot.*@DocumentRoot \"$DocumentRoot\"@" $httpd_conf
47         # whether WWW is enabled or not : 
48         if [ "$PLC_WWW_ENABLED" != "1" ] ; then
49             # avoid hitting drupal, that would try to connect to the db and create noise
50             disable_file $DocumentRoot/index.php
51         else
52             enable_file $DocumentRoot/index.php
53         fi
54
55         # Set the default include path
56         include_path=".:$DocumentRoot/planetlab/includes:$DocumentRoot/plekit/php:$DocumentRoot/generated:/etc/planetlab/php:/usr/share/plc_api/php"
57         sed -i -e "s@[;]*include_path = \"\.:.*\"@include_path = \"$include_path\"@" $php_ini
58
59         # Set open_basedir so as to avoid leaks
60         open_basedir="$DocumentRoot:/etc/planetlab/php:/usr/share/plc_api/php:/var/log/myslice:/var/tmp/bootmedium:/tmp"
61         sed -i -e "s@[;]*open_basedir =.*@open_basedir = \"$open_basedir\"@" $php_ini
62         
63         # for php-5.3 under fedora12, otherwise issues tons of warning messages
64         # Set timezone in php.ini if not already there
65         if grep '^;date.timezone' $php_ini >& /dev/null; then
66             dialog 'Setting PHP timezone to GMT'
67             sed -i -e 's,^;date.timezone.*,date.timezone = GMT,' $php_ini
68         fi
69
70         if grep '^short_open_tag = Off' $php_ini >& /dev/null; then
71             sed -i -e 's,^short_open_tag = Off,short_open_tag = On,' $php_ini
72         fi
73
74         # Disable default Listen directive
75         sed -i -e '/^Listen/d' $httpd_conf
76
77         plcapi_noslash=$(echo $PLC_API_PATH | sed -e s,/,,g)
78         # Set the port numbers
79         for server in WWW API BOOT ; do
80             enabled=PLC_${server}_ENABLED
81             if [ "${!enabled}" != "1" ] ; then
82                 continue
83             fi
84             hostname=PLC_${server}_HOST
85             http_port=PLC_${server}_PORT
86             https_port=PLC_${server}_SSL_PORT
87
88             # API should always be accessed via SSL
89             if [ "$server" = "API" ] ; then
90                 https_port=${!http_port}
91                 http_port=
92             fi
93
94             echo "# DBG server=$server hostname=${!hostname} http_port=${!http_port} https_port=${!https_port}"
95
96             # Check if we are already listening on these ports
97             skip_http=0
98             skip_https=0
99             for previous_server in WWW API BOOT ; do
100                 if [ "$server" = "$previous_server" ] ; then
101                     break
102                 fi
103                 previous_enabled=PLC_${previous_server}_ENABLED
104                 if [ "${!previous_enabled}" != "1" ] ; then
105                     continue
106                 fi
107                 previous_http_port=PLC_${previous_server}_PORT
108                 previous_https_port=PLC_${previous_server}_SSL_PORT
109
110                 if [ "${!http_port}" = "${!previous_http_port}" ] ; then
111                     skip_http=1
112                 fi
113                 if [ "${!https_port}" = "${!previous_https_port}" ] ; then
114                     skip_https=1
115                 fi
116             done
117
118             # HTTP configuration
119             if [ $skip_http -eq 0 -a -n "${!http_port}" ] ; then
120                 cat <<EOF
121 Listen ${!http_port}
122 <VirtualHost *:${!http_port}>
123     # Make sure that the admin web pages are always accessed via SSL
124     Redirect /db https://$PLC_WWW_HOST:$PLC_WWW_SSL_PORT/db
125     Redirect /planetlab https://$PLC_WWW_HOST:$PLC_WWW_SSL_PORT/planetlab
126 # as a matter of fact most xmlrpc clients won't follow the redirection
127 # so this is mostly rethorical, but just in case...
128    Redirect /$plcapi_noslash https://$PLC_WWW_HOST:$PLC_WWW_SSL_PORT/$plcapi_noslash
129 </VirtualHost>
130
131 EOF
132             fi
133
134             # HTTPS configuration
135             if [ $skip_https -eq 0 -a -n "${!https_port}" ] ; then
136                 # XXX Cannot support NameVirtualHost over SSL. If
137                 # the API, boot, and web servers are all running
138                 # on the same machine, the web server certificate
139                 # takes precedence.
140                 sed -i \
141                     -e "s/^Listen .*/Listen ${!https_port}/" \
142                     -e "s/<VirtualHost _default_:.*>/<VirtualHost _default_:${!https_port}>/" \
143                     $ssl_conf
144             # this is used to locate the right certificates
145             server_lower=$(echo $server | tr 'A-Z' 'a-z')
146             cat <<EOF
147 # create wsgi socket where we have the permission
148 WSGISocketPrefix run/wsgi
149
150 <VirtualHost *:${!https_port}>
151    WSGIScriptAlias /$plcapi_noslash /usr/share/plc_api/apache/plc.wsgi
152 # xxx would be cool to be able to tweak this through config
153    WSGIDaemonProcess plcapi-wsgi-ssl user=apache group=apache processes=1 threads=25
154    WSGIProcessGroup plcapi-wsgi-ssl
155
156    # SSL
157    SSLEngine On
158    SSLCertificateFile /etc/planetlab/${server_lower}_ssl.crt
159    SSLCertificateKeyFile /etc/planetlab/${server_lower}_ssl.key
160    SSLCertificateChainFile /etc/planetlab/${server_lower}_ca_ssl.crt
161 </VirtualHost>
162
163 EOF
164             fi
165         done >$plc_conf
166
167         # Set custom Apache directives
168         (
169             # could be restricted to boot boxes but harmless..
170             cat <<EOF
171 AddType application/octet-stream .iso
172 AddType application/octet-stream .usb
173 EOF
174             # make sure /PLCAPI can't get accessed if API not enabled here
175             if [ "$PLC_API_ENABLED" != "1" ] ; then
176                 cat <<EOF
177 # mod_wsgi location
178 <Location $PLC_API_PATH>
179     Deny from all
180 </Location> 
181 EOF
182             fi
183
184             # redirect www requests if not on the right server
185             if [ "$PLC_WWW_ENABLED" != "1" ] ; then
186                 cat <<EOF
187 Redirect /index.html http://$PLC_WWW_HOST:$PLC_WWW_PORT/
188 EOF
189             fi
190         ) >>$plc_conf
191
192         # Make alpina-logs directory writable for bootmanager log upload
193         chown apache:apache $DocumentRoot/alpina-logs/nodes
194
195         # Make the Drupal files upload directory owned by Apache
196         mkdir -p $DocumentRoot/files
197         chown apache:apache $DocumentRoot/files
198
199         # Symlink any (real) files or directories in
200         # /data/var/www/html/* to /var/www/html/. We could descend
201         # into subdirectories, but the code to do so properly would be
202         # madness.
203         for file in /data/$DocumentRoot/* ; do
204             if [ -e "$file" -a ! -h "$file" ] ; then
205                 base=$(basename "$file")
206                 if [ ! -e "$DocumentRoot/$base" ] ; then
207                     ln -nsf "$file" "$DocumentRoot/$base"
208                 fi
209             fi
210         done
211
212         # Cleanup broken symlinks
213         for file in $DocumentRoot/* ; do
214             if [ -h "$file" -a ! -e "$file" ] ; then
215                 rm -f "$file"
216             fi
217         done
218
219         # Old style PHP constants
220         mkdir -p /etc/planetlab/php
221         cat >/etc/planetlab/php/site_constants.php <<"EOF"
222 <?php
223 include('plc_config.php');
224
225 define('PL_API_SERVER', PLC_API_HOST);
226 define('PL_API_PATH', PLC_API_PATH);
227 define('PL_API_PORT', PLC_API_PORT);
228 define('PL_API_CAPABILITY_AUTH_METHOD', 'capability');
229 define('PL_API_CAPABILITY_PASS', PLC_API_MAINTENANCE_PASSWORD);
230 define('PL_API_CAPABILITY_USERNAME', PLC_API_MAINTENANCE_USER);
231 define('WWW_BASE', PLC_WWW_HOST);
232 define('BOOT_BASE', PLC_BOOT_HOST);
233 define('DEBUG', PLC_WWW_DEBUG);
234 define('API_CALL_DEBUG', PLC_API_DEBUG);
235 define('SENDMAIL', PLC_MAIL_ENABLED);
236 define('PLANETLAB_SUPPORT_EMAIL', PLC_NAME . ' Support <' . PLC_MAIL_SUPPORT_ADDRESS . '>');
237 define('PLANETLAB_SUPPORT_EMAIL_ONLY', PLC_MAIL_SUPPORT_ADDRESS);
238 ?>
239 EOF
240
241         ## patch php.ini
242         # memory limit
243         sed -i -e 's,^memory_limit = 32M *;,memory_limit = 80M ; patch myplc -- ,' $php_ini 
244         # log_errors : is On by default
245         # error_log
246         if ! grep '^error_log *=' $php_ini > /dev/null ; then
247           echo 'error_log = /var/log/php.log' >> $php_ini
248           touch /var/log/php.log
249           chmod 666 /var/log/php.log
250         fi
251
252         plc_daemon httpd
253         check
254
255         result "$MESSAGE"
256         ;;
257
258     stop)
259         MESSAGE=$"Stopping web server"
260         dialog "$MESSAGE"
261
262         killproc plc_httpd
263         check
264
265         result "$MESSAGE"
266         ;;
267 esac
268
269 exit $ERRORS