71d3c0e5821cd8f76d7d8418b3b0ae6cacc7b21a
[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         plc_api_path_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 /$plc_api_path_noslash https://$PLC_WWW_HOST:$PLC_WWW_SSL_PORT/$plc_api_path_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 /$plc_api_path_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
162    <Directory "/usr/share/plc_api/apache">
163    Options +ExecCGI
164    $(apache_allow)
165    </Directory>
166 </VirtualHost>
167
168 EOF
169
170             fi
171         done >$plc_conf
172
173         # Set custom Apache directives
174         (
175             # could be restricted to boot boxes but harmless..
176             cat <<EOF
177 AddType application/octet-stream .iso
178 AddType application/octet-stream .usb
179 EOF
180             # make sure /PLCAPI can't get accessed if API not enabled here
181             if [ "$PLC_API_ENABLED" != "1" ] ; then
182                 cat <<EOF
183 # mod_wsgi location
184 <Location $PLC_API_PATH>
185     $(apache_forbid)
186 </Location> 
187 EOF
188             fi
189
190             # redirect www requests if not on the right server
191             if [ "$PLC_WWW_ENABLED" != "1" ] ; then
192                 cat <<EOF
193 Redirect /index.html http://$PLC_WWW_HOST:$PLC_WWW_PORT/
194 EOF
195             fi
196         ) >>$plc_conf
197
198         # Make alpina-logs directory writable for bootmanager log upload
199         chown apache:apache $DocumentRoot/alpina-logs/nodes
200
201         # Make the Drupal files upload directory owned by Apache
202         mkdir -p $DocumentRoot/files
203         chown apache:apache $DocumentRoot/files
204
205         # Symlink any (real) files or directories in
206         # /data/var/www/html/* to /var/www/html/. We could descend
207         # into subdirectories, but the code to do so properly would be
208         # madness.
209         for file in /data/$DocumentRoot/* ; do
210             if [ -e "$file" -a ! -h "$file" ] ; then
211                 base=$(basename "$file")
212                 if [ ! -e "$DocumentRoot/$base" ] ; then
213                     ln -nsf "$file" "$DocumentRoot/$base"
214                 fi
215             fi
216         done
217
218         # Cleanup broken symlinks
219         for file in $DocumentRoot/* ; do
220             if [ -h "$file" -a ! -e "$file" ] ; then
221                 rm -f "$file"
222             fi
223         done
224
225         # Old style PHP constants
226         mkdir -p /etc/planetlab/php
227         cat >/etc/planetlab/php/site_constants.php <<"EOF"
228 <?php
229 include('plc_config.php');
230
231 define('PL_API_SERVER', PLC_API_HOST);
232 define('PL_API_PATH', PLC_API_PATH);
233 define('PL_API_PORT', PLC_API_PORT);
234 define('PL_API_CAPABILITY_AUTH_METHOD', 'capability');
235 define('PL_API_CAPABILITY_PASS', PLC_API_MAINTENANCE_PASSWORD);
236 define('PL_API_CAPABILITY_USERNAME', PLC_API_MAINTENANCE_USER);
237 define('WWW_BASE', PLC_WWW_HOST);
238 define('BOOT_BASE', PLC_BOOT_HOST);
239 define('DEBUG', PLC_WWW_DEBUG);
240 define('API_CALL_DEBUG', PLC_API_DEBUG);
241 define('SENDMAIL', PLC_MAIL_ENABLED);
242 define('PLANETLAB_SUPPORT_EMAIL', PLC_NAME . ' Support <' . PLC_MAIL_SUPPORT_ADDRESS . '>');
243 define('PLANETLAB_SUPPORT_EMAIL_ONLY', PLC_MAIL_SUPPORT_ADDRESS);
244 ?>
245 EOF
246
247         ## patch php.ini
248         # memory limit
249         sed -i -e 's,^memory_limit = 32M *;,memory_limit = 80M ; patch myplc -- ,' $php_ini 
250         # log_errors : is On by default
251         # error_log
252         if ! grep '^error_log *=' $php_ini > /dev/null ; then
253           echo 'error_log = /var/log/php.log' >> $php_ini
254           touch /var/log/php.log
255           chmod 666 /var/log/php.log
256         fi
257
258         plc_daemon httpd
259         check
260
261         result "$MESSAGE"
262         ;;
263
264     stop)
265         MESSAGE=$"Stopping web server"
266         dialog "$MESSAGE"
267
268         killproc plc_httpd
269         check
270
271         result "$MESSAGE"
272         ;;
273 esac
274
275 exit $ERRORS