/usr/lib/news/bin/scanlogs is in inn2 2.5.2+20110413-1build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #! /bin/bash
. /usr/lib/news/innshellvars
## $Id: scanlogs.in 9062 2010-05-20 19:05:30Z iulius $
##
## Summarize INN log files and rotate them.
## Used by news.daily.
##
## Optional arguments:
## norotate Do not rotate logfiles.
## Directory where old log files are kept.
OLD=${MOST_LOGS}/OLD
## Files defined in innshellvars. We repeat them for clarity.
ERRLOG=${MOST_LOGS}/errlog
LOG=${MOST_LOGS}/news
## If you want to archive the active file, enable this line.
ACTIVEFILE=${ACTIVE}
## Where these programs, if used, write their logs.
## We also have to find innfeed's log file.
CONTROLBATCH=${MOST_LOGS}/controlbatch.log
INNFEEDCONF=${PATHETC}/innfeed.conf
if [ -f "${INNFEEDCONF}" ]; then
INNFEEDLOG=`${AWK} '{gsub(/:|#/, " & ")} {if ($1 == "log-file" && $2 == ":") print $3}' ${INNFEEDCONF}`
fi
INNFEED=
for F in "${INNFEEDLOG}" ; do
test -f "${MOST_LOGS}/${F}" && INNFEED="${INNFEED} ${MOST_LOGS}/${F}"
done
test -z "${INNFEED}" && test -f "${MOST_LOGS}/innfeed.log" && INNFEED="${MOST_LOGS}/innfeed.log"
NNTPSEND=${MOST_LOGS}/nntpsend.log
PERLNOCEM=${MOST_LOGS}/perl-nocem.log
SENDIHAVE=${MOST_LOGS}/send-ihave.log
SENDNNTP=${MOST_LOGS}/send-nntp.log
SENDUUCP=${MOST_LOGS}/send-uucp.log
LIVEFILES="${CONTROLBATCH} ${INNFEED} ${NNTPSEND} ${PERLNOCEM} ${SENDIHAVE} ${SENDNNTP} ${SENDUUCP}"
## Where news.daily places expire output, unless noexplog was used.
EXPLOG=${MOST_LOGS}/expire.log
## If you divide your news syslog into separate files, list them here.
SYSLOG_CRIT=${MOST_LOGS}/news.crit
SYSLOG_ERR=${MOST_LOGS}/news.err
SYSLOG_NOTICE=${MOST_LOGS}/news.notice
SYSLOGS="${SYSLOG_CRIT} ${SYSLOG_ERR} ${SYSLOG_NOTICE}"
## Where tally control processor is found.
TALLY_CONTROL=${PATHBIN}/tally.control
UNWANTED_LOG=${MOST_LOGS}/unwanted.log
CONTROL_LOG=${MOST_LOGS}/control.log
CONTROL_DATA=
test -f ${MOST_LOGS}/newgroup.log && CONTROL_DATA=${MOST_LOGS}/newgroup.log
test -f ${MOST_LOGS}/rmgroup.log \
&& CONTROL_DATA="${CONTROL_DATA} ${MOST_LOGS}/rmgroup.log"
## Build up the list of log files to process.
LOGS="${ERRLOG} ${LOG} ${ACTIVEFILE} ${EXPLOG} ${SYSLOGS} ${UNWANTED_LOG}"
for F in ${LIVEFILES} ; do
test -n "${F}" -a -f "${F}" && LOGS="${LOGS} ${F}"
done
test -n "${CONTROL_DATA}" && LOGS="${LOGS} ${CONTROL_LOG}"
for F in checkgroups default ihave newgroup rmgroup sendme sendsys \
senduuname version miscctl badcontrol failedpgp badpgp; do
test -f ${MOST_LOGS}/${F}.log && LOGS="${LOGS} ${MOST_LOGS}/${F}.log"
done
PROGNAME=scanlogs
LOCK=${LOCKS}/LOCK.${PROGNAME}
## Set defaults.
ROTATE=true
## Parse JCL.
for I
do
case "X${I}" in
Xnorotate)
ROTATE=false
;;
*)
echo "Unknown flag ${I}" 1>&2
exit 1
;;
esac
done
## Make sure every log exists.
for F in ${LOGS} ; do
test ! -f ${F} && touch ${F}
done
## Rotate the logs?
if ${ROTATE} ; then
## Lock out others.
shlock -p $$ -f ${LOCK} || {
echo "$0: Locked by `cat ${LOCK}`"
exit 1
}
trap "rm -f ${LOCK}; exit 0" 1 2 3 15
HERE=`pwd`
cd ${MOST_LOGS}
test ! -d ${OLD} && mkdir ${OLD}
ctlinnd -s logmode
PAUSED=false
ctlinnd -s pause "Flushing log and syslog files" 2>&1 && PAUSED=true
OUTPUT=`ctlinnd flushlogs 2>&1`
if [ "$OUTPUT" != "Ok" -a "$OUTPUT" != "In debug mode" ]; then
echo "$OUTPUT"
echo 'Cannot flush logs.'
rm -f ${LOCK}
exit 1
fi
## Make sure these .old files exist, in case innd is down.
for F in ${LOG} ${ERRLOG} ; do
if [ ! -f ${F}.old ]; then
rm -f ${F}.old
cp ${F} ${F}.old
cat /dev/null >${F}
fi
done
## Copy syslog files, truncating old inode since syslog has it open.
for F in ${SYSLOGS}; do
rm -f ${F}.old
cp ${F} ${F}.old
cat /dev/null >${F}
done
ctlinnd -s logmode
## Make a copy of the active file.
if [ -n ${ACTIVEFILE} ] ; then
BASE=`basename ${ACTIVEFILE}`
rm -f ${OLD}/${BASE}.old
cp ${ACTIVEFILE} ${OLD}/${BASE}.old
fi
## These are live files, so use link rather than copy.
for F in ${LIVEFILES} ; do
if [ -f ${F} ]; then
rm -f ${F}.old ${F}.new
ln ${F} ${F}.old
touch ${F}.new
chmod 0660 ${F}.new
mv ${F}.new ${F}
fi
done
## Tally control messages if we logged them.
test -n "${CONTROL_DATA}" && cat ${CONTROL_DATA} | ${TALLY_CONTROL}
${PAUSED} && ctlinnd -s go "Flushing log and syslog files" 2>&1
cd ${OLD}
for F in ${LOGS}; do
## Process the current (just-flushed) log.
BASE=`basename ${F}`
rm -f ${OLD}/${BASE}
case ${F} in
${SYSLOG_CRIT}|${ERRLOG}|${LOG}|${SYSLOG_NOTICE})
## Make a link that can be deleted (since if not rotating
## we delete the copy that is made in ${TMPDIR}).
mv ${F}.old ${OLD}/${BASE}
rm -f ${OLD}/${BASE}.0
ln ${OLD}/${BASE} ${OLD}/${BASE}.0
;;
${ACTIVEFILE})
mv ${BASE}.old ${OLD}/${BASE}
;;
${SYSLOG_ERR})
mv ${F}.old ${OLD}/${BASE}
;;
${UNWANTED_LOG})
## Rotate and compress the file.
BASE=`basename ${F}`
if [ ! -f ${BASE} -a -f ../${BASE} ]; then
cp ../${BASE} ${BASE}
chmod 0440 ${BASE}
fi
if [ -f ${BASE} ]; then
${LOG_COMPRESS} <${BASE} >${BASE}.0${Z} && rm -f ${BASE}
chmod 0440 ${BASE}.0${Z}
## Do rotation.
if [ X${LOGCYCLES} = X ]; then
LOGCYCLES=3
fi
EXT=${LOGCYCLES}
rm -f ${BASE}.${LOGCYCLES}${Z}
while [ ${EXT} -gt 0 ] ; do
NEXT=${EXT}
EXT=`expr ${EXT} - 1`
test -f ${BASE}.${EXT}${Z} \
&& rm -f ${BASE}.${NEXT}${Z} \
&& mv ${BASE}.${EXT}${Z} ${BASE}.${NEXT}${Z}
done
fi
## innreport assumes where unwanted.log exists, so leave it
## and process later.
;;
*)
if [ -f ${F}.old ]; then
mv ${F}.old ${OLD}/${BASE}
else
rm -f ${OLD}/${BASE} ${F}.new
touch ${F}.new
chmod 0660 ${F}.new
ln ${F} ${F}.old
mv ${F}.new ${F}
mv ${F}.old ${OLD}/${BASE}
fi
;;
esac
done
cd ${HERE}
else
## Don't use the real OLD directory, instead use TMPDIR.
OLD=${TMPDIR}
## Make a snapshot of what we need for below.
ctlinnd -s pause "Snapshot log and syslog files" 2>&1
for F in ${SYSLOG_CRIT} ${ERRLOG} ${LOG} ${SYSLOG_NOTICE} ; do
BASE=`basename ${F}`
rm -f ${OLD}/${BASE}.0
cp ${F} ${OLD}/${BASE}.0
done
ctlinnd -s go "Snapshot log and syslog files" 2>&1
fi
##
## We now (finally!) have copies of the log files where we need them.
##
## Display syslog critical messages.
BASE=`basename ${SYSLOG_CRIT}`
OLD_SYSLOG=${OLD}/${BASE}.0
if [ -s ${OLD_SYSLOG} ] ; then
echo Syslog critical messages:
cat ${OLD_SYSLOG}
echo ---------
echo ''
fi
rm -f ${OLD_SYSLOG}
## Display error log.
BASE=`basename ${ERRLOG}`
OLD_ERRLOG=${OLD}/${BASE}.0
if [ -s ${OLD_ERRLOG} ] ; then
echo Error log:
cat ${OLD_ERRLOG}
echo ---------
echo ''
fi
rm -f ${OLD_ERRLOG}
## Scan for various problems in articles we were offered or sent...
BASE=`basename ${LOG}`
OLD_LOG=${OLD}/${BASE}.0
## and summarize syslog information.
BASE=`basename ${SYSLOG_NOTICE}`
OLD_SYSLOG=${OLD}/${BASE}.0
INNREPORT=${TMPDIR}/innreport$$
if [ -s ${OLD_SYSLOG} -o -s ${OLD_LOG} ] ; then
${PATHBIN}/innreport -f ${PATHETC}/innreport.conf ${OLD_SYSLOG} ${OLD_LOG} > ${INNREPORT}
if [ -s ${INNREPORT} ] ; then
cat ${INNREPORT}
echo ---------
echo ''
fi
fi
rm -f ${OLD_LOG} ${OLD_SYSLOG} ${INNREPORT}
## Now that innreport has finished, we can move unwanted.log. This
## file is not reset because it keeps the count of unwanted newsgroups.
if ${ROTATE} ; then
BASE=`basename ${UNWANTED_LOG}`
if [ -f ${UNWANTED_LOG}.old ]; then
mv ${UNWANTED_LOG}.old ${OLD}/${BASE}
else
rm -f ${OLD}/${BASE}
cp ${UNWANTED_LOG} ${OLD}/${BASE}
chmod 0660 ${OLD}/${BASE}
fi
fi
## Compress and rotate the logs.
if ${ROTATE} ; then
cd ${OLD}
if [ X${LOGCYCLES} = X ]; then
LOGCYCLES=3
fi
for F in ${LOGS} ; do
## Skip if it's unwanted.log, since it's already rotated.
if [ ${F} = ${UNWANTED_LOG} ]; then
continue
fi
## Skip if file doesn't exist.
BASE=`basename ${F}`
test -f ${BASE} || continue
## Compress the file.
${LOG_COMPRESS} <${BASE} >${BASE}.0${Z} && rm -f ${BASE}
chmod 0440 ${BASE}.0${Z}
## Do rotation.
EXT=${LOGCYCLES}
rm -f ${BASE}.${LOGCYCLES}${Z}
while [ ${EXT} -gt 0 ] ; do
NEXT=${EXT}
EXT=`expr ${EXT} - 1`
test -f ${BASE}.${EXT}${Z} \
&& rm -f ${BASE}.${NEXT}${Z} \
&& mv ${BASE}.${EXT}${Z} ${BASE}.${NEXT}${Z}
done
done
## Remove lock.
rm -f ${LOCK}
fi
## All done.
exit 0
|