/usr/sbin/recvstats is in hylafax-server 3:6.0.6-8.
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 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 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 | #! /bin/bash
# $Id$
#
# HylaFAX Facsimile Software
#
# Copyright (c) 1990-1996 Sam Leffler
# Copyright (c) 1991-1996 Silicon Graphics, Inc.
# HylaFAX is a trademark of Silicon Graphics
#
# Permission to use, copy, modify, distribute, and sell this software and
# its documentation for any purpose is hereby granted without fee, provided
# that (i) the above copyright notices and this permission notice appear in
# all copies of the software and related documentation, and (ii) the names of
# Sam Leffler and Silicon Graphics may not be used in any advertising or
# publicity relating to the software without the specific, prior written
# permission of Sam Leffler and Silicon Graphics.
#
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
#
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
# OF THIS SOFTWARE.
#
# security
NOCLOBBER_ON="set -o noclobber"
NOCLOBBER_OFF="set +o noclobber"
#
# Print Statistics about Received Facsimile.
#
SPOOL=/var/spool/hylafax
. $SPOOL/bin/common-functions
test -f $SPOOL/etc/setup.cache || {
cat<<EOF
FATAL ERROR: $SPOOL/etc/setup.cache is missing!
The file $SPOOL/etc/setup.cache is not present. This
probably means the machine has not been setup using the faxsetup(8)
command. Read the documentation on setting up HylaFAX before you
startup a server system.
EOF
hfExit 1
}
. $SPOOL/etc/setup.cache
FILES=
SORTKEY=-sender # default is to sort by sender
TODAY="`date +'%D %H:%M'`"
AGE="360" # report statistics for last year
SINCEDT=
ENDDT=
while [ x"$1" != x"" ] ; do
case $1 in
-send*|-csi|-dest*|-speed|-rate|-format|-cidname|-cidnumber)
SORTKEY=$1;;
-age) shift; AGE=$1;;
-since) shift; SINCEDT=$1;;
-end) shift; ENDDT=$1;;
-*) echo "Usage: $0 [-sortkey] [-age days] [-since date] [-end date] [files]"
hfExit 1
;;
*) FILES="$FILES $1";;
esac
shift
done
if [ -z "$FILES" ]; then
FILES=$SPOOL/log/xferfaxlog
fi
#
# Construct awk rules to collect information according
# to the desired sort key. There are multiple rules for
# dealing with the different formats that have existed
# over time.
#
case $SORTKEY in
-send*|-csi)
AWKRULES='
$2 == "RECV" && NF == 9 { acct($3, $7, $8, $5, $6, $9); }
$2 == "RECV" && NF == 11 { acct($6, $9, $10, $7, $8, $11); }
$2 == "RECV" && NF == 12 { acct($7, $10, $11, $8, $9, $12); }
$2 == "RECV" && NF == 13 { acct($9, $11, $12, getBR($10), getDF($10), $13); }
$2 == "RECV" && NF == 14 { acct($9, $11, $13, getBR($10), getDF($10), $14); }
$2 == "RECV" && NF == 16 { acct($9, $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 17 { acct($9, $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 18 { acct($9, $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 19 { acct($9, $11, $13, getBR($10), getDFfromDCS($19), $14, $15, $16); }
'
;;
-cidname)
AWKRULES='
$2 == "RECV" && NF == 16 { acct($15, $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 17 { acct($15, $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 18 { acct($15, $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 19 { acct($15, $11, $13, getBR($10), getDFfromDCS($19), $14, $15, $16); }
'
;;
-cidnumber)
AWKRULES='
$2 == "RECV" && NF == 16 { acct($16, $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 17 { acct($16, $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 18 { acct($16, $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 19 { acct($16, $11, $13, getBR($10), getDFfromDCS($19), $14, $15, $16); }
'
;;
-dest*)
AWKRULES='
$2 == "RECV" && NF == 9 { acct($4, $7, $8, $5, $6, $9); }
$2 == "RECV" && NF == 11 { acct($5, $9, $10, $7, $8, $11); }
$2 == "RECV" && NF == 12 { acct($6, $10, $11, $8, $9, $12); }
$2 == "RECV" && NF == 14 { acct($8, $11, $13, getBR($10), getDF($10), $14); }
$2 == "RECV" && NF == 16 { acct($8, $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 17 { acct($8, $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 18 { acct($8, $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 19 { acct($8, $11, $13, getBR($10), getDFfromDCS($19), $14, $15, $16); }
'
;;
-speed|-rate)
AWKRULES='
$2 == "RECV" && NF == 9 { acct($5, $7, $8, $5, $6, $9); }
$2 == "RECV" && NF == 11 { acct($7, $9, $10, $7, $8, $11); }
$2 == "RECV" && NF == 12 { acct($8, $10, $11, $8, $9, $12); }
$2 == "RECV" && NF == 13 { acct(getBR($10), $11, $12, getBR($10), getDF($10), $13); }
$2 == "RECV" && NF == 14 { acct(getBR($10), $11, $13, getBR($10), getDF($10), $14); }
$2 == "RECV" && NF == 16 { acct(getBR($10), $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 17 { acct(getBR($10), $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 18 { acct(getBR($10), $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 19 { acct(getBR($10), $11, $13, getBR($10), getDFfromDCS($19), $14, $15, $16); }
'
;;
-format)
AWKRULES='
$2 == "RECV" && NF == 9 { acct($6, $7, $8, $5, $6, $9); }
$2 == "RECV" && NF == 11 { acct($8, $9, $10, $7, $8, $11); }
$2 == "RECV" && NF == 12 { acct($9, $10, $11, $8, $9, $12); }
$2 == "RECV" && NF == 13 { acct(getDF($10), $11, $12, getBR($10), getDF($10), $13); }
$2 == "RECV" && NF == 14 { acct(getDF($10), $11, $13, getBR($10), getDF($10), $14); }
$2 == "RECV" && NF == 16 { acct(getDF($10), $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 17 { acct(getDF($10), $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 18 { acct(getDF($10), $11, $13, getBR($10), getDF($10), $14, $15, $16); }
$2 == "RECV" && NF == 19 { acct(getDF($10), $11, $13, getBR($10), getDFfromDCS($19), $14, $15, $16); }
'
;;
esac
#
# Generate an awk program to process the statistics file.
#
SetupPrivateTmp
tmpAwk=$TMPDIR/xferfax$$
($CAT<<'EOF'
#
# Setup date conversion data structures.
#
function setupDateTimeStuff()
{
daysInMonth[ 0] = 31; daysInMonth[ 1] = 28; daysInMonth[ 2] = 31;
daysInMonth[ 3] = 30; daysInMonth[ 4] = 31; daysInMonth[ 5] = 30;
daysInMonth[ 6] = 31; daysInMonth[ 7] = 31; daysInMonth[ 8] = 30;
daysInMonth[ 9] = 31; daysInMonth[10] = 30; daysInMonth[11] = 31;
FULLDAY = 24 * 60 * 60;
}
#
# Convert hh:mm:ss to seconds.
#
function cvtTime(s)
{
t = i = 0;
for (n = split(s, a, ":"); i++ < n; )
t = t*60 + a[i];
return t;
}
#
# Convert MM/DD/YY hh:mm to seconds.
# NB: this does not deal with leap years.
#
function cvtDateTime(s)
{
yday = substr(s,7,2);
if (yday < 70)
yday += 30;
else
yday -= 70;
yday = yday*365 + substr(s,4,2) - 1;
mon = substr(s,1,2) - 1;
for (i = 0; i < mon; i++)
yday += daysInMonth[i];
return yday*FULLDAY + cvtTime(substr(s,10) ":00");
}
function setupDigits()
{
digits[0] = "0"; digits[1] = "1"; digits[2] = "2";
digits[3] = "3"; digits[4] = "4"; digits[5] = "5";
digits[6] = "6"; digits[7] = "7"; digits[8] = "8";
digits[9] = "9";
}
#
# Format seconds as hh:mm:ss.
#
function fmtTime(t)
{
v = int(t/3600);
result = "";
if (v > 0) {
if (v >= 10)
result = digits[int(v/10)];
result = result digits[int(v%10)] ":";
t -= v*3600;
}
v = int(t/60);
if (v >= 10 || result != "")
result = result digits[int(v/10)];
result = result digits[int(v%10)];
t -= v*60;
return (result ":" digits[int(t/10)] digits[int(t%10)]);
}
#
# Setup map for histogram calculations
# and indexed table for decoding params.
#
function setupMaps(s, map, names)
{
n = split(s, a, ":");
for (i = 1; i <= n; i++) {
map[a[i]] = i;
names[i-1] = a[i];
}
}
#
# Add pages to a histogram.
#
function addToMap(key, ix, pages, map)
{
if (key == "") {
for (i in map)
key = key ":";
}
n = split(key, a, ":");
a[map[ix]] += pages;
t = a[1];
for (i = 2; i <= n; i++)
t = t ":" a[i];
return t;
}
#
# Return the name of the item with the
# largest number of accumulated pages.
#
function bestInMap(totals, map)
{
n = split(totals, a, ":");
imax = 1; max = -1;
for (j = 1; j <= n; j++)
if (a[j] > max) {
max = a[j];
imax = j;
}
split(map, a, ":");
return a[imax];
}
#
# Sort array a[l..r]
#
function qsort(a, l, r) {
i = l;
k = r+1;
item = a[l];
for (;;) {
while (i < r) {
i++;
if (a[i] >= item)
break;
}
while (k > l) {
k--;
if (a[k] <= item)
break;
}
if (i >= k)
break;
t = a[i]; a[i] = a[k]; a[k] = t;
}
t = a[l]; a[l] = a[k]; a[k] = t;
if (k != 0 && l < k-1)
qsort(a, l, k-1);
if (k+1 < r)
qsort(a, k+1, r);
}
function getBR(params)
{
if ((int(int(params) / 2097152) % 2) == 1) {
return brNames[int(int(params) / 8) % 16];
} else {
return brNames[int(int(params) / 2) % 8];
}
}
function getDF(params)
{
if ((int(int(params) / 2097152) % 2) == 1) {
return dfNames[int(int(params) / 16384) % 4];
} else {
return dfNames[int(int(params) / 512) % 4];
}
}
function hex(n) {
# GNU Awk 3.1.3 has a type conversion error from hex strings,
# so we have to do it the hard way
val = 0;
for (position = 1; position <= length(n); position++) {
val = val * 16;
char = tolower(substr(n, position, 1));
if (char == "a") val = val + 10;
else if (char == "b") val = val + 11;
else if (char == "c") val = val + 12;
else if (char == "d") val = val + 13;
else if (char == "e") val = val + 14;
else if (char == "f") val = val + 15;
else val = val + int(char);
}
return val;
}
function isBitSet(bit, dcs) {
byte = int((bit - 1) / 8);
pos = 7 - ((bit - 1) % 8);
dcsbyte = hex(substr(dcs, (byte*3+1), 2));
return int(int(dcsbyte / (2 ^ pos)) % 2);
}
function getDFfromDCS(dcs)
{
if (substr(dcs, 1, 1) == "\"")
dcs = substr(dcs, 2);
if (substr(dcs, length(dcs), 1) == "\"")
dcs = substr(dcs, 1, length(dcs)-1);
if (isBitSet(68, dcs)) {
if (isBitSet(69, dcs))
return dfNames[6];
return dfNames[5];
}
if (isBitSet(78, dcs) || isBitSet(79, dcs))
return dfNames[4];
if (isBitSet(31, dcs))
return dfNames[3];
if (isBitSet(26, dcs))
return dfNames[2];
if (isBitSet(16, dcs))
return dfNames[1];
return dfNames[0];
}
#
# Accumulate a statistics record.
#
function acct(key, pages, time, br, df, status, cidname, cidnumber)
{
if (cvtDateTime($1) < KEEPSINCE || cvtDateTime($1) > KEEPEND)
return;
gsub("\"", "", key);
gsub("^ +", "", key);
gsub(" +$", "", key);
recvpages[key] += pages;
if (pages == 0 && time > 60)
time = 0;
recvtime[key] += cvtTime(time);
gsub("\"", "", status);
if (status != "")
recverrs[key]++;
gsub("\"", "", br);
recvrate[key] = addToMap(recvrate[key], br, pages, rateMap);
gsub("\"", "", df);
recvdata[key] = addToMap(recvdata[key], df, pages, dataMap);
gsub("\"", "", cidname);
gsub("\"", "", cidnumber);
lastcidname[key] = cidname;
lastcidnumber[key] = cidnumber;
}
#
# Print a rule between the stats and the totals line.
#
function printRule(n, s)
{
r = "";
while (n-- >= 0)
r = r s;
printf "%s\n", r;
}
BEGIN { FS="\t";
rates = "2400:4800:7200:9600:12000:14400:16800:19200:21600:24000:26400:28800:31200:33600";
setupMaps(rates, rateMap, brNames);
datas = "1-D MH:2-D MR:2-D Uncompressed Mode:2-D MMR:JBIG:JPEG Greyscale:JPEG Full-color";
setupMaps(datas, dataMap, dfNames);
setupDateTimeStuff();
if (SINCEDT == "")
KEEPSINCE = cvtDateTime(TODAY) - AGE*FULLDAY;
else
KEEPSINCE = cvtDateTime(SINCEDT);
if (ENDDT == "")
KEEPEND = cvtDateTime(TODAY);
else
KEEPEND = cvtDateTime(ENDDT);
}
END { OFS="\t"; setupDigits();
maxlen = 15;
nsorted = 0;
for (i in recvpages) {
l = length(i);
if (l > maxlen)
maxlen = l;
sorted[nsorted++] = i;
}
qsort(sorted, 0, nsorted-1);
fmt = "%-" maxlen "." maxlen "s" " %-" maxlen "." maxlen "s" " %-" maxlen "." maxlen "s"; # e.g. %-24.24s
printf fmt " %5s %8s %6s %4s %7s %7s\n",
"Sender", "CIDName", "CIDNumber", "Pages", "Time", "Pg/min",
"Errs", "TypRate", "TypData";
tpages = 0;
ttime = 0;
terrs = 0;
for (k = 0; k < nsorted; k++) {
i = sorted[k];
t = recvtime[i]/60; if (t == 0) t = 1;
n = recvpages[i]; if (n == 0) n = 1;
brate = best
printf fmt " %5d %8s %6.1f %4d %7d %7s\n",
i, lastcidname[i], lastcidnumber[i], recvpages[i], fmtTime(recvtime[i]),
recvpages[i] / t, recverrs[i],
bestInMap(recvrate[i], rates),
bestInMap(recvdata[i], datas);
tpages += recvpages[i];
ttime += recvtime[i];
terrs += recverrs[i];
}
printRule(maxlen+1+maxlen+1+maxlen+1+5+1+8+6+1+4+1+7+1+7, "-");
t = ttime/60; if (t == 0) t = 1;
printf fmt " %5d %8s %6.1f %4d\n",
"Total", "", "", tpages, fmtTime(ttime), tpages/t, terrs;
}
EOF
echo "$AWKRULES"
)>$tmpAwk
$AWK -f $tmpAwk -v TODAY="$TODAY" -v AGE="$AGE" -v SINCEDT="$SINCEDT" -v ENDDT="$ENDDT" $FILES
# cleanup
hfExit 0
|