1
  
2
  
3
  
4
  
5
  
6
  
7
  
8
  
9
  
10
  
11
  
12
  
13
  
14
  
15
  
16
  
17
  
18
  
19
  
20
  
21
  
22
  
23
  
24
  
25
  
26
  
27
  
28
  
29
  
30
  
31
  
32
  
33
  
34
  
35
  
36
  
37
  
38
  
39
  
40
  
41
  
42
  
43
  
44
  
45
  
46
  
47
  
48
  
49
  
50
  
51
  
52
  
53
  
54
  
55
  
56
  
57
  
58
  
59
  
60
  
61
  
62
  
63
  
64
  
65
  
66
  
67
  
68
  
69
  
70
  
71
  
72
  
73
  
74
  
75
  
76
  
77
  
78
  
79
  
80
  
81
  
82
  
83
  
84
  
85
  
86
  
87
  
88
  
89
  
90
  
91
  
92
  
93
  
94
  
95
  
96
  
97
  
98
  
99
  
100
  
101
  
102
  
103
  
104
  
105
  
106
  
107
  
108
  
109
  
110
  
111
  
112
  
113
  
114
  
115
  
116
  
117
  
118
  
119
  
120
  
121
  
122
  
123
  
124
  
125
  
126
  
127
  
128
  
129
  
130
  
131
  
132
  
133
  
134
  
135
  
136
  
137
  
138
  
139
  
140
  
141
  
142
  
143
  
144
  
145
  
146
  
147
  
148
  
149
  
150
  
151
  
152
  
153
  
154
  
155
  
156
  
157
  
158
  
159
  
160
  
161
  
162
  
163
  
164
  
165
  
166
  
167
  
168
  
169
  
170
  
171
  
172
  
173
  
174
  
175
  
176
  
177
  
178
  
179
  
180
  
181
  
182
  
183
  
184
  
185
  
186
  
187
  
188
  
189
  
190
  
191
  
192
  
193
  
194
  
195
  
196
  
197
  
198
  
199
  
200
  
201
  
202
  
203
  
204
  
205
  
206
  
207
  
208
  
209
  
210
  
211
  
212
  
213
  
214
  
215
  
216
  
217
  
218
  
219
  
220
  
221
  
222
  
223
  
224
  
225
  
226
  
227
  
228
  
229
  
230
  
231
  
232
  
233
  
234
  
235
  
236
  
237
  
238
  
239
  
240
  
241
  
242
  
243
  
244
  
245
  
246
  
247
  
248
  
249
  
250
  
251
  
252
  
253
  
254
  
255
  
256
  
257
  
258
  
259
  
260
  
261
  
262
  
263
  
264
  
265
  
266
  
267
  
268
  
269
  
270
  
271
  
272
  
273
  
274
  
275
  
276
  
277
  
278
  
279
  
280
  
281
  
282
  
283
  
284
  
285
  
286
  
287
  
288
  
289
  
290
  
291
  
292
  
293
  
294
  
295
  
296
  
297
  
298
  
299
  
300
  
301
  
302
  
303
  
304
  
305
  
306
  
307
  
308
  
309
  
310
  
311
  
312
  
313
  
314
  
315
  
316
  
317
  
318
  
319
  
320
  
321
  
322
  
323
  
324
  
325
  
326
  
327
  
328
  
329
  
330
  
331
  
332
  
333
  
334
  
335
  
336
  
337
  
338
  
339
  
340
  
341
  
342
  
343
  
344
  
345
  
346
  
347
  
348
  
349
  
350
  
351
  
352
  
353
  
354
  
355
  
356
  
357
  
358
  
359
  
360
  
361
  
362
  
363
  
364
  
365
  
366
  
367
  
368
  
369
  
370
  
371
  
372
  
#!/bin/sh 
# 
# $Id: start,v 1.52 1998/10/31 23:43:48 grubba Exp $ 
 
VERSION=202; BETA=.b; 
 
# Can be set with '--config-dir=DIR' 
DIR=../configurations/ 
LOGDIR=../logs/ 
FILES="default" 
program=base_server/roxenloader.pike 
extra_args="" 
 
# Enable threads (if available) on Solaris. 
# Most other OS's have thread bugs that cause them or Roxen to crash. 
if uname | grep 'SunOS' >/dev/null 2>&1; then 
  if uname -r | grep '5\.[5-9]' >/dev/null 2>&1; then 
    if [ x"$1" != "x--help" ] ; then 
      echo 'Solaris 2.5 or later detected. Enabling threads (if available).' 
    fi 
    DEFINES="$DEFINES -DENABLE_THREADS" 
  fi 
fi 
 
# Roxen will create files as the initial user, 
# which it expects to be able to read as the run-time user. 
umask 022 
 
# Pike default Master-program 
if [ "x$PIKE_MASTER" = "x" ]; then 
  if [ -d share/pike ]; then 
    # This is used with localinstall 
    DEFINES="$DEFINES -Ishare/pike/include" 
    PIKE_MODULE_PATH="$PIKE_MODULE_PATH:share/pike/modules" 
  fi 
  if [ -f lib/master.pike ]; then 
    DEFINES="$DEFINES -mlib/master.pike -Ilib/include" 
    PIKE_MODULE_PATH="$PIKE_MODULE_PATH:lib/modules" 
  elif [ -f lib/pike/master.pike ]; then 
    DEFINES="$DEFINES -mlib/pike/master.pike -Ilib/pike/include" 
    PIKE_MODULE_PATH="$PIKE_MODULE_PATH:lib/pike/modules" 
  fi 
  export PIKE_MODULE_PATH 
else 
  # This is usefull when using several different Pikes. 
  # Specify include and module paths with 
  # PIKE_INCLUDE_PATH and PIKE_MODULE_PATH 
  # they are handled automatically by the master, 
  # so no need to do it here. 
  DEFINES="$DEFINES -m$PIKE_MASTER" 
fi 
 
# Extra module-path 
if [ -d etc/modules ]; then 
  DEFINES="$DEFINES -Metc/modules" 
fi 
 
# Extra include-path 
if [ -d etc/include ]; then 
  DEFINES="$DEFINES -Ietc/include" 
fi 
 
# Extra include-path (2) 
if [ -d base_server ]; then 
  DEFINES="$DEFINES -Ibase_server" 
fi 
 
# Extra program-path 
DEFINES="$DEFINES -P`pwd`" 
 
# Support for adding local pike-modules 
if [ -d ../local/etc/. ]; then 
  # Extra module-path 
  if [ -d ../local/etc/modules/. ]; then 
    DEFINES="$DEFINES -M../local/etc/modules" 
  fi 
 
  # Extra include-path 
  if [ -d ../local/etc/include ]; then 
    DEFINES="$DEFINES -I../local/etc/include" 
  fi 
 
  # Extra program-path 
  DEFINES="$DEFINES -P../local/etc" 
fi 
 
# Extra kludge for HPUX 
# HPUX doesn't like group 60001(nobody) 
if uname | grep 'HP-UX' >/dev/null 2>&1; then 
  echo 'WARNING: Applying kludge for HPUX. (see base_server/privs.pike)' 
  DEFINES="$DEFINES -DHPUX_KLUDGE" 
fi 
 
pike=pike 
if [ -x bin/pike ] ; then pike=bin/pike; fi 
if [ -x bin/roxen ] ; then  pike=bin/roxen; fi 
if [ "x$PIKE" = "x" ]; then :; else 
  if [ -x "$PIKE" ]; then pike="$PIKE"; fi 
fi 
 
gdb=no 
 
####### END PREAMBLE 
 
## Parse all arguments. 
## GNU-style, long options only, except for -D, simply passed on. 
parse_args() { 
 while [ ! c"$1" = "c" ] ; do 
  case $1 in 
  -D*) 
   DEFINES="$DEFINES $1" 
  ;; 
# Used by the 'install' script 
  --truss) 
     pike="truss $pike" 
   ;; 
  --log-dir=*) 
   LOGDIR=`echo $1 | sed -e 's/--log-dir=//'` 
  ;; 
  --config-dir=*) 
   DIR=`echo $1 | sed -e 's/--config-dir=//'` 
   FILES=`echo $1 | sed -e's/--config-dir=//' -e's/\.//g' -e's./..g' -e 's.-..g'` 
  ;; 
  --pid-file=*) 
   extra_args="$extra_args $1" 
  ;; 
  '--debug'|'--with-debug'|'--enable-debug') 
    debug=1 
  ;; 
  '--without-debug') 
    debug=-1 
  ;; 
  '--fd-debug'|'--with-fd-debug'|'--enable-fd-debug') 
    DEFINES="-DFD_DEBUG $DEFINES" 
  ;; 
  '--threads'|'--with-threads'|'--enable-threads') 
    DEFINES="-DENABLE_THREADS $DEFINES" 
  ;; 
  '--no-threads'|'--without-threads'|'--disable-threads') 
    DEFINES="`echo $DEFINES | sed -e 's/-DENABLE_THREADS//'`" 
  ;; 
  '--with-profile'|'--profile') 
    DEFINES="-DPROFILE $DEFINES" 
  ;; 
  '--with-file-profile'|'--file-profile') 
    DEFINES="-DPROFILE -DFILE_PROFILE $DEFINES" 
  ;; 
  '--keep-alive'|'--with-keep-alive'|'--enable-keep-alive') 
    DEFINES="-DKEEP_ALIVE $DEFINES" 
  ;; 
  '--once') 
    once=1 
  ;; 
  '--gdb') 
    gdb=gdb 
    once=1 
  ;; 
  '--program') 
    program="$2" 
    shift 
  ;; 
  '--version') 
    echo Roxen Challenger 1.`expr $VERSION / 100`$BETA`expr $VERSION % 100` 
    exit 0 
  ;; 
  '--help'|'-?') 
  sed -e "s/\\.B/`tput 'bold' 2>/dev/null`/g" -e "s/B\\./`tput 'rmso' 2>/dev/null`/g" << EOF 
.BThis command will start the Roxen serverB.. 
 
The environment variable .BROXEN_ARGSB. can be used to specify 
the default arguments. 
 
   .BArguments:B. 
 
      .B--versionB.:                  Output version information. 
 
      .B--help -?B.:                  This information 
 
      .B--log-dir=DIRB.:              Set the log directory. Defaults to .B../logsB.. 
 
      .B--config-dir=DIRB.:           Use an alternate configuration directory 
                                  Defaults to .B../configurationB.. 
 
      .B--with-threadsB.:             If threads are available, use them. 
 
      .B--without-threadsB.:          Even if threads are enabled by default,  
                                  disable them. 
 
      .B--with-profileB.:             Store runtime profiling information on 
                                  a directory basis. This information is 
                                  not saved on permanent storage, it is only 
                                  available until the next server restart 
                                  This will enable a new 'action' in the 
                                  configuration interface 
 
      .B--with-file-profileB.:        Like .B--with-profileB., but save information  
                                  for each and every file. 
 
      .B--with-keep-aliveB.:          Enable keep alive in the HTTP  
                                  protocol module. This will soon be  
                                  the default. Some clients might have  
                                  problems with keepalive. 
 
      .B--onceB.:                     Run the server only once, in the foreground. 
                                  This is very useful when debugging. 
 
      .B--gdbB.:                      Run the server in gdb. Implies .B--onceB.. 
 
      .B--programB.:                  Start a different program with the roxen 
                                  pike. As an example,  
                                  .B./start --program bin/install.pikeB. will  
                                  start the installation program normally  
                                  started with .B./installB. 
 
      .B--with-debugB.:               Enable debug 
 
      .B--without-debugB.:            Disable all debug 
         
      .B--with-fd-debugB.:            Enable FD debug. 
 
      .B--trussB.:                    (Solaris only). Run the server under 
                                  truss, shows .BallB. system calls. This is  
                                  extremely noisy, and is not intented for  
                                  anything but debug. 
 
      .B--pid-file=<file>B.:          Store the roxen and startscript pids in this 
                                  file. Defaults to .B/tmp/roxen_$UIDB. 
          
  .BArguments passed to pike:B. 
 
       .B-DDEFINEB.:                  Define the symbol .BDEFINEB.. 
 
       .B-d<level>B.:                 Set the runtime pike debug to level. 
                                  This only works if pike is compiled  
                                  with debug. 
 
       .B-s<size>B.:                  Set the stack size. 
 
       .B-M <path>B.:                 Add the path to the pike module path. 
 
       .B-I <path>B.:                 Add the path to the pike include path. 
 
       .B-dtB.:                       Turn of tail recursion optimization. 
 
       .B-tB.:                        Turn on pike level tracing. 
 
       .B-t<level>B.:                 Turn on more pike tracing. This only  
                                  works if pike is compiled with debug. 
 
 
  .BEnvironment variables:B. 
 
     .BROXEN_CONFIGDIRB.:             Same as .B--config-dir=... B. 
     .BROXEN_PID_FILEB.:              Same as .B--pid-file=... B. 
     .BROXEN_LANGB.:                  The default language for all language 
                                  related tags. Defaults to 'en' for english. 
 
EOF 
    tput 'rmso' 2>/dev/null 
    exit 0 
   ;; 
  *) 
    pass="$pass $1" 
   ;; 
  esac 
  shift 
 done 
} 
 
####### END PREAMBLE 
 
parse_args $@ 
 
if [ ! "X$ROXEN_ARGS" = "X" ]; then 
  echo $$: Using $ROXEN_ARGS from ROXEN_ARGS. 
  parse_args $ROXEN_ARGS 
fi 
 
if [ ! "X$pass" = "X" ] ; then set -- $pass ;fi 
 
 
echo $$: Starting the Roxen Challenger World Wide Web server. 
 
./mkdir -p $LOGDIR/debug/ 
 
if [ -z "$debug" ] ; then 
  DEBUG="-DMODULE_DEBUG"; 
else 
  DEBUG="-DDEBUG -DMODULE_DEBUG" 
fi 
 
if [ "x$debug" = "x-1" ] ; then 
  DEBUG=""; 
else :; fi 
 
# 
# Some useful functions 
# 
 
rotate () { 
  b=5; 
  for a in 4 3 2 1 ; do mv -f $1.$a $1.$b 2> /dev/null;  b=$a; done 
} 
 
start_roxen() { 
  args="-DROXEN $DEBUG $DEFINES $pass $program --config-dir=$DIR" 
  if [ "x$gdb" = "xno" ]; then 
    echo "PIKE_MODULE_PATH=$PIKE_MODULE_PATH" 
    echo Executing $pike $args $@ 
    $pike $args $@ 
  else 
    echo Executing gdb $pike $args $@ 
    echo >.gdbinit handle SIGPIPE nostop noprint pass 
    echo >>.gdbinit handle SIGUSR1 nostop noprint pass 
    echo >>.gdbinit handle SIGUSR2 nostop noprint pass 
    echo >>.gdbinit run $args $@ 
    gdb $pike 
    rm .gdbinit 
  fi 
} 
 
# 
# Now do the stuff 
# 
 
if [ -z "$once" ] ; then 
  cat << oo 
Using configuration from $DIR, storing the debug log in $LOGDIR/debug/$FILES.1 
You can use the configuration interface in the server to get debug info. 
oo 
 
  # Try to get rid of some fd's. 
  # Some /bin/sh's have problems detaching otherwise. 
 
  exec >/dev/null 
  exec 2>/dev/null 
  exec </dev/null 
 
  (while : ; do 
    echo $$: "Server restart at `date`" 
    echo $$: "Debug log in $LOGDIR/debug/$FILES.1" 
    rotate $LOGDIR/debug/$FILES 
 
    start_roxen $extra_args 2>>$LOGDIR/debug/$FILES.1 1>&2 
 
    exitcode="$?" 
 
    if [ "$exitcode" -eq "0" ] ; then 
      # Clean shutdown. 
      echo $$: "Roxen shutdown." 
      exit 0 
    fi 
    if [ "$exitcode" -lt "0" ] ; then 
      # Signal death. 
      echo $$: "Roxen died of signal $exitcode. Restarting..." 
    else 
      # Restart. Sleep a few seconds before restarting. 
      echo $$: Roxen died. Restarting in 5 seconds... 
      sleep 5 
    fi 
  done 
     
  echo $$: Not Reached "famous last words" 
 
  ) < /dev/null > $LOGDIR/debug/start_$FILES.output 2>&1 & 
 
else 
  echo $$: "Server restart at `date`" 
  start_roxen $extra_args 
fi