TLS fixes for OpenSSL.
[exim.git] / src / src / exicyclog.src
CommitLineData
059ec3d9 1#! /bin/sh
059ec3d9 2
0a49a7a4 3# Copyright (c) University of Cambridge, 1995 - 2007
059ec3d9
PH
4# See the file NOTICE for conditions of use and distribution.
5
3d240ff7
PH
6# This script takes the following command line arguments:
7# -l dir Log file directory
8# -k days Number of days to keep the log files
9
059ec3d9
PH
10# Except when they appear in comments, the following placeholders in this
11# source are replaced when it is turned into a runnable script:
12#
13# CONFIGURE_FILE_USE_NODE
14# CONFIGURE_FILE_USE_EUID
15# CONFIGURE_FILE
16# BIN_DIRECTORY
17# EXICYCLOG_MAX
18# COMPRESS_COMMAND
19# COMPRESS_SUFFIX
20# CHOWN_COMMAND
21# CHGRP_COMMAND
dae9d94e
NM
22# CHMOD_COMMAND
23# TOUCH_COMMAND
059ec3d9
PH
24# MV_COMMAND
25# RM_COMMAND
26
27# PROCESSED_FLAG
28
29# This is a shell script for cycling exim main and reject log files. Each time
30# it is run, the files get "shuffled down" by one, the current one (e.g.
31# mainlog) becoming mainlog.01, the previous mainlog.01 becoming mainlog.02,
8e669ac1
PH
32# and so on, up to the limit configured here. When the number to keep is
33# greater than 99 (not common, but some people do it), three digits are used
34# (e.g. mainlog.001). The same shuffling happens to the reject logs. All
18ce445d 35# renamed files with numbers greater than 1 are compressed.
059ec3d9
PH
36
37# This script should be called regularly (e.g. daily) by a root crontab
38# entry of the form
39
40# 1 0 * * * /opt/exim/bin/exicyclog
41
42# The following lines are generated from Exim's configuration file when
43# this source is built into a script, but you can subsequently edit them
44# without rebuilding things, as long are you are careful not to overwrite
45# the script in the next Exim rebuild/install. "Keep" is the number of old log
3d240ff7
PH
46# files that are required to be kept. Its value can be overridden by the -k
47# command line option. "Compress" and "suffix" define your chosen compression
48# method. The others are provided because the location of certain commands
49# varies from OS to OS. Sigh.
059ec3d9
PH
50
51keep=EXICYCLOG_MAX
52compress=COMPRESS_COMMAND
53suffix=COMPRESS_SUFFIX
54
059ec3d9 55chgrp=CHGRP_COMMAND
dae9d94e 56chmod=CHMOD_COMMAND
5c3a378f 57chown=CHOWN_COMMAND
059ec3d9
PH
58mv=MV_COMMAND
59rm=RM_COMMAND
5c3a378f 60touch=TOUCH_COMMAND
059ec3d9
PH
61
62# End of editable lines
63#########################################################################
64
3d240ff7
PH
65# Sort out command line options.
66
67while [ $# -gt 0 ] ; do
68 case "$1" in
69 -l) log_file_path=$2
70 shift
71 ;;
72 -k) keep=$2
73 shift
74 ;;
75 *) echo "** exicyclog: unknown option $1"
76 exit 1
77 ;;
78 esac
79 shift
80done
81
059ec3d9
PH
82# Some operating systems have different versions in which the commands live
83# in different places. We have a fudge that will search the usual suspects if
84# requested.
85
5c3a378f 86for cmd in chgrp chmod chown mv rm touch; do
059ec3d9
PH
87 eval "oldcmd=\$$cmd"
88 if [ "$oldcmd" != "look_for_it" ] ; then continue ; fi
89 newcmd=$cmd
90 for dir in /bin /usr/bin /usr/sbin /usr/etc ; do
91 if [ -f $dir/$cmd ] ; then
92 newcmd=$dir/$cmd
93 break
94 fi
95 done
96 eval $cmd=$newcmd
97done
98
99# See if this installation is using the esoteric "USE_EUID" feature of Exim,
100# in which it uses the effective user id as a suffix for the configuration file
101# name. In order for this to work, exicyclog must be run under the appropriate
102# euid.
103
104if [ "CONFIGURE_FILE_USE_EUID" = "yes" ]; then
105 euid=.`id -u`
106fi
107
108# See if this installation is using the esoteric "USE_NODE" feature of Exim,
109# in which it uses the host's name as a suffix for the configuration file name.
110
111if [ "CONFIGURE_FILE_USE_NODE" = "yes" ]; then
112 hostsuffix=.`uname -n`
113fi
114
115# Now find the configuration file name. This has got complicated because the
116# CONFIGURE_FILE value may now be a list of files. The one that is used is the
117# first one that exists. Mimic the code in readconf.c by testing first for the
118# suffixed file in each case.
119
120set `awk -F: '{ for (i = 1; i <= NF; i++) print $i }' <<End
121CONFIGURE_FILE
122End
123`
124while [ "$config" = "" -a $# -gt 0 ] ; do
125 if [ -f "$1$euid$hostsuffix" ] ; then
126 config="$1$euid$hostsuffix"
127 elif [ -f "$1$euid" ] ; then
128 config="$1$euid"
129 elif [ -f "$1$hostsuffix" ] ; then
130 config="$1$hostsuffix"
131 elif [ -f "$1" ] ; then
132 config="$1"
133 fi
134 shift
135done
136
137# Determine if the log file path is set, and where the spool directory is.
138# Search for an exim_path setting in the configure file; otherwise use the bin
139# directory. Call that version of Exim to find the spool directory and log file
3d240ff7
PH
140# path, unless log_file_path was set above by a command line option. BEWARE: a
141# tab character is needed in the command below. It has had a nasty tendency to
142# get lost in the past. Use a variable to hold a space and a tab to keep the
143# tab in one place.
059ec3d9
PH
144
145st=' '
146exim_path=`grep "^[$st]*exim_path" $config | sed "s/.*=[$st]*//"`
147if test "$exim_path" = ""; then exim_path=BIN_DIRECTORY/exim; fi
148
149spool_directory=`$exim_path -C $config -bP spool_directory | sed 's/.*=[ ]*//'`
3d240ff7
PH
150
151if [ "$log_file_path" = "" ] ; then
152 log_file_path=`$exim_path -C $config -bP log_file_path | sed 's/.*=[ ]*//'`
153fi
059ec3d9
PH
154
155# If log_file_path contains only "syslog" then no Exim log files are in use.
156# We can't cycle anything. Complain and give up.
157
158if [ "$log_file_path" = "syslog" ] ; then
159 echo "*** Exim is logging to syslog - no log files to cycle ***"
160 exit 1
161fi
162
163# Otherwise, remove ":syslog" or "syslog:" (some spaces allowed) and inspect
164# what remains. The simplistic regex originally used failed when a filename
165# contained "syslog", so we have to use three less general ones, because sed
166# doesn't have much power in its regexs.
167
168log_file_path=`echo "$log_file_path" | \
169 sed 's/^ *:\{0,1\} *syslog *:\{0,1\} *//;s/: *syslog *:/:/;s/: *syslog *$//'`
170
4aac9b49
PH
171# If log_file_path is empty, try and get the compiled in default by using
172# /dev/null as the configuration file.
173
174if [ "$log_file_path" = "" ]; then
175 log_file_path=`$exim_path -C /dev/null -bP log_file_path | sed 's/.*=[ ]*//'`
176 log_file_path=`echo "$log_file_path" | \
177 sed 's/^ *:\{0,1\} *syslog *:\{0,1\} *//;s/: *syslog *:/:/;s/: *syslog *$//'`
178fi
179
180# If log_file_path is still empty, the logs we are interested in are probably
181# called "mainlog" and "rejectlog" in the directory called "log" in the spool
182# directory. Otherwise we fish out the directory from the given path, and also
183# the names of the logs.
059ec3d9
PH
184
185if [ "$log_file_path" = "" ]; then
186 logdir=$spool_directory/log
187 mainlog=mainlog
188 rejectlog=rejectlog
dae9d94e 189 paniclog=paniclog
059ec3d9
PH
190else
191 logdir=`echo $log_file_path | sed 's?/[^/]*$??'`
192 logbase=`echo $log_file_path | sed 's?^.*/??'`
193 mainlog=`echo $logbase | sed 's/%s/main/'`
194 rejectlog=`echo $logbase | sed 's/%s/reject/'`
dae9d94e 195 paniclog=`echo $logbase | sed 's/%s/panic/'`
059ec3d9
PH
196fi
197
198# Get into the log directory to do the business.
199
3d240ff7 200cd $logdir || exit 1
059ec3d9
PH
201
202# If there is no main log file, do nothing.
203
204if [ ! -f $mainlog ]; then exit; fi
205
206# Find out the owner and group of the main log file so that we can re-instate
207# this on moved and compressed files, since some operating systems may change
208# things. This is a tedious bit of code, but it should work both in operating
209# systems where the -l option of ls gives the user and group, and those in which
210# you need -lg. The condition is that, if the fifth field of the output from
211# ls consists entirely of digits, then the third and fourth fields are the user
212# and group.
213
214a=`ls -lg $mainlog`
215b=`ls -l $mainlog`
216
217# These statements work fine in the Bourne or Korn shells, but not in Bash.
218# So for the benefit of systems whose /bin/sh is really Bash, they have been
219# changed to a messier form.
220
221# user=`echo "$a\n$b\n" | awk 'BEGIN { OFS=""} { if ($5 ~ /^[0-9]+$/) print $3; }'`
222# group=`echo "$a\n$b\n" | awk 'BEGIN { OFS=""} { if ($5 ~ /^[0-9]+$/) print $4; }'`
223
224user=`echo "$a
225$b
226" | awk 'BEGIN { OFS=""} { if ($5 ~ /^[0-9]+$/) { print $3; exit; } }'`
227
228group=`echo "$a
229$b
230" | awk 'BEGIN { OFS=""} { if ($5 ~ /^[0-9]+$/) { print $4; exit; } }'`
231
232# Now do the job. First remove the files that have "fallen off the bottom".
233# Look for both the compressed and uncompressed forms.
234
235if [ $keep -lt 10 ]; then keept=0$keep; else keept=$keep; fi;
236
237if [ -f $mainlog.$keept ]; then $rm $mainlog.$keept; fi;
238if [ -f $mainlog.$keept.$suffix ]; then $rm $mainlog.$keept.$suffix; fi;
239
240if [ -f $rejectlog.$keept ]; then $rm $rejectlog.$keept; fi;
241if [ -f $rejectlog.$keept.$suffix ]; then $rm $rejectlog.$keept.$suffix; fi;
242
df40aca4
NM
243if [ -f $paniclog.$keept ]; then $rm $paniclog.$keept; fi;
244if [ -f $paniclog.$keept.$suffix ]; then $rm $paniclog.$keept.$suffix; fi;
dae9d94e 245
059ec3d9
PH
246# Now rename all the previous old files by increasing their numbers by 1.
247# When the number is less than 10, insert a leading zero.
248
249count=$keep
18ce445d 250if [ $count -lt 10 ]; then countt=0$count; else countt=$count; fi
059ec3d9
PH
251
252while [ $count -gt 1 ]; do
17792b53 253 old=`expr -- $count - 1`
18ce445d 254 if [ $keep -gt 99 ]; then
8e669ac1 255 if [ $old -lt 10 ]; then oldt=00$old
18ce445d
PH
256 elif [ $old -lt 100 ]; then oldt=0$old
257 else oldt=$old
8e669ac1
PH
258 fi
259 else
18ce445d 260 if [ $old -lt 10 ]; then oldt=0$old; else oldt=$old; fi;
8e669ac1 261 fi
059ec3d9
PH
262 if [ -f $mainlog.$oldt ]; then
263 $mv $mainlog.$oldt $mainlog.$countt
264 elif [ -f $mainlog.$oldt.$suffix ]; then
265 $mv $mainlog.$oldt.$suffix $mainlog.$countt.$suffix
266 fi
267 if [ -f $rejectlog.$oldt ]; then
268 $mv $rejectlog.$oldt $rejectlog.$countt
269 elif [ -f $rejectlog.$oldt.$suffix ]; then
270 $mv $rejectlog.$oldt.$suffix $rejectlog.$countt.$suffix
271 fi
dae9d94e
NM
272 if [ -f $paniclog.$oldt ]; then
273 $mv $paniclog.$oldt $paniclog.$countt
274 elif [ -f $paniclog.$oldt.$suffix ]; then
275 $mv $paniclog.$oldt.$suffix $paniclog.$countt.$suffix
276 fi
059ec3d9
PH
277 count=$old
278 countt=$oldt
279done
280
18ce445d
PH
281# Now rename the current files as 01 or 001 if keeping more than 99
282
283if [ $keep -gt 99 ]; then first=001; else first=01; fi
059ec3d9
PH
284
285if [ -f $mainlog ]; then
18ce445d
PH
286 $mv $mainlog $mainlog.$first
287 $chown $user:$group $mainlog.$first
dae9d94e
NM
288 $touch $mainlog
289 $chown $user:$group $mainlog
290 $chmod 640 $mainlog
059ec3d9
PH
291fi
292
293if [ -f $rejectlog ]; then
18ce445d
PH
294 $mv $rejectlog $rejectlog.$first
295 $chown $user:$group $rejectlog.$first
dae9d94e
NM
296 $touch $rejectlog
297 $chown $user:$group $rejectlog
298 $chmod 640 $rejectlog
299fi
300
301if [ -f $paniclog ]; then
302 $mv $paniclog $paniclog.$first
df40aca4 303 $chown $user:$group $paniclog.$first
dae9d94e
NM
304 $touch $paniclog
305 $chown $user:$group $paniclog
306 $chmod 640 $paniclog
059ec3d9
PH
307fi
308
18ce445d 309# Now scan the (0)02 and later files, compressing where necessary, and
059ec3d9
PH
310# ensuring that their owners and groups are correct.
311
312count=2;
313
314while [ $count -le $keep ]; do
18ce445d
PH
315 if [ $keep -gt 99 ]; then
316 if [ $count -lt 10 ]; then countt=00$count
317 elif [ $count -lt 100 ]; then countt=0$count
318 else countt=$count
8e669ac1
PH
319 fi
320 else
18ce445d 321 if [ $count -lt 10 ]; then countt=0$count; else countt=$count; fi
8e669ac1 322 fi
059ec3d9
PH
323 if [ -f $mainlog.$countt ]; then $compress $mainlog.$countt; fi
324 if [ -f $mainlog.$countt.$suffix ]; then
325 $chown $user:$group $mainlog.$countt.$suffix
326 fi
327 if [ -f $rejectlog.$countt ]; then $compress $rejectlog.$countt; fi
328 if [ -f $rejectlog.$countt.$suffix ]; then
329 $chown $user:$group $rejectlog.$countt.$suffix
330 fi
dae9d94e
NM
331 if [ -f $paniclog.$countt ]; then $compress $paniclog.$countt; fi
332 if [ -f $paniclog.$countt.$suffix ]; then
333 $chown $user:$group $paniclog.$countt.$suffix
334 fi
335
17792b53 336 count=`expr -- $count + 1`
059ec3d9
PH
337done
338
339# End of exicyclog