/usr/lib/news/bin/controlchan is in inn 1:1.7.2q-44+b2.
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 | #! /usr/bin/perl -w
require '/usr/lib/news/innshellvars.pl';
# convert INN 1.x variables to 2.x style
$inn::syslog_facility = 'news';
$inn::pgpverify = 'true';
$inn::mta = $inn::sendmail;
$inn::pathbin = $inn::newsbin;
$inn::tmpdir = $inn::spooltemp;
$inn::pathhost = `$inn::innconfval pathhost`;
$inn::version = '1.7.2+insync-1.1d+debian';
## $Id: controlchan.in,v 1.7 2002/11/21 00:03:15 vinocur Exp $
##
## Channel feed program to route control messages to an appropriate handler.
##
## Copyright 2001 by Marco d'Itri <md@linux.it>
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted provided that the following conditions
## are met:
##
## 1. Redistributions of source code must retain the above copyright
## notice, this list of conditions and the following disclaimer.
##
## 2. Redistributions in binary form must reproduce the above copyright
## notice, this list of conditions and the following disclaimer in the
## documentation and/or other materials provided with the distribution.
##
## Give this program its own newsfeed. Make sure that you've created
## the newsgroup control.cancel so that you don't have to scan through
## cancels, which this program won't process anyway.
##
## Make a newsfeeds entry like this:
##
## controlchan!\
## :!*,control,control.*,!control.cancel\
## :Tc,Wnsm\
## :@prefix@/bin/controlchan
require 5.004_03;
use strict;
delete @ENV{'IFS', 'CDPATH', 'ENV', 'BASH_ENV'};
# globals
my ($cachedctl, $curmsgid);
my $lastctl = 0;
my $use_syslog = 0;
my $debug = 0;
# setup logging ###########################################################
# do not log to syslog if stderr is connected to a console
if (not -t 2) {
eval { require INN::Syslog; import INN::Syslog; $use_syslog = 1; };
eval { require Sys::Syslog; import Sys::Syslog; $use_syslog = 1; }
unless $use_syslog;
}
if ($use_syslog) {
eval "sub Sys::Syslog::_PATH_LOG { '/dev/log' }" if $^O eq 'dec_osf';
Sys::Syslog::setlogsock('unix') if $^O =~ /linux|dec_osf/;
openlog('controlchan', 'pid', $inn::syslog_facility);
}
logmsg('starting');
# load modules from the control directory #################################
opendir(CTL, $inn::controlprogs)
or logdie("Cannot open $inn::controlprogs", 'crit');
foreach (readdir CTL) {
next if not /^([a-z\.]+\.pl)$/ or not -f "$inn::controlprogs/$_";
eval { require "$inn::controlprogs/$1" };
if ($@) {
$@ =~ s/\n/ /g;
logdie($@, 'crit');
}
logmsg("loaded $inn::controlprogs/$1", 'debug');
}
closedir CTL;
# main loop ###############################################################
while (<STDIN>) {
chop;
my ($token, $sitepath, $msgid) = split(/\s+/, $_);
next if not defined $token;
$sitepath ||= '';
$curmsgid = $msgid || '';
my $artfh = open_article($token);
next if not defined $artfh;
# suck in headers and body, normalize the strange ones
my (@headers, @body, %hdr);
if (not parse_article($artfh, \@headers, \@body, \%hdr)) {
close $artfh;
next;
}
close $artfh or logdie('sm died with status ' . ($? >> 8));
next if not exists $hdr{control};
$curmsgid = $hdr{'message-id'};
my $sender = cleanaddr($hdr{sender} || $hdr{from});
my $replyto = cleanaddr($hdr{'reply-to'} || $hdr{from});
my (@progparams, $progname);
if ($hdr{control} =~ /\s/) {
$hdr{control} =~ /^(\S+)\s+(.+)?/;
$progname = lc $1;
@progparams = split(/\s+/, lc $2) if $2;
} else {
$progname = lc $hdr{control};
}
next if $progname eq 'cancel';
if ($progname !~ /^([a-z]+)$/) {
logmsg("Naughty control in article $curmsgid ($progname)");
next;
}
$progname = $1;
# Do we want to process the message? Let's check the permissions.
my ($action, $logname, $newsgrouppats) =
ctlperm($progname, $sender, $progparams[0],
$token, \@headers, \@body);
next if $action eq 'drop';
if ($action eq '_pgpfail') {
my $type = '';
if ($progname and $progname eq 'newgroup') {
if ($progparams[1] and $progparams[1] eq 'moderated') {
$type = 'm ';
} else {
$type = 'y ';
}
}
logmsg("skipping $progname $type$sender"
. "(pgpverify failed) in $curmsgid");
next;
}
# used by checkgroups. Convert from perl regexp to grep regexp.
if (local $_ = $newsgrouppats) {
s/\$\|/|/g;
s/[^\\]\.[^*]/?/g;
s/\$//;
s/\.\*/*/g;
s/\\([\$\+\.])/$1/g;
$progparams[0] = $_;
}
# find the appropriate module and call it
my $subname = "control_$progname";
my $subfind = \&$subname;
if (not defined &$subfind) {
if ($logname) {
logger($logname, "Unknown control message by $sender",
\@headers, \@body);
} else {
logmsg("Unknown \"$progname\" control by $sender");
}
next;
}
my $approved = $hdr{approved} ? 1 : 0;
logmsg("$subname, " . join(' ', @progparams)
. " $sender $replyto $token, $sitepath, $action"
. ($logname ? "=$logname" : '') .", $approved");
&$subfind(\@progparams, $sender, $replyto, $sitepath,
$action, $logname, $approved, \@headers, \@body);
}
closelog() if $use_syslog;
exit 0;
print $inn::most_logs.$inn::syslog_facility.$inn::mta.
$inn::pathhost.$inn::tmpdir.$inn::sendmail.$inn::version.
$inn::pathbin.$inn::innconfval.$inn::spooltemp.$
$inn::newsmaster.$inn::locks; # lint food
# misc functions ##########################################################
sub parse_article {
my ($artfh, $headers, $body, $hdr) = @_;
my $h;
my %uniquehdr = map { $_ => 1 } qw(date followup-to from message-id
newsgroups path reply-to subject sender);
while (<$artfh>) {
chop;
last if /^$/;
push @$headers, $_;
if (/^(\S+):\s+(.+)/) {
$h = lc $1;
if (exists $hdr->{$h}) {
if (exists $uniquehdr{$h}) {
logmsg("Multiple $1 headers in article $curmsgid");
return 0;
}
$hdr->{$h} .= ' ' . $2;
} else {
$hdr->{$h} = $2;
}
next;
} elsif (/^\s+(.+)/) {
if (defined $h) {
$hdr->{$h} .= ' ' . $1;
next;
}
}
logmsg("Broken headers in article $curmsgid");
return 0;
}
# article is empty or does not exist
return 0 if not @$headers;
chop (@$body = <$artfh>);
return 1;
}
# Strip a mail address, innd-style.
sub cleanaddr {
local $_ = shift;
s/(\s+)?\(.*\)(\s+)?//g;
s/.*<(.*)>.*/$1/;
s/[^-a-zA-Z0-9+_.@%]/_/g; # protect MTA
s/^-/_/; # protect MTA
return $_;
}
# Read and cache control.ctl.
sub readctlfile {
my $mtime = (stat($inn::ctlfile))[9];
return $cachedctl if $lastctl == $mtime; # mtime has not changed.
$lastctl = $mtime;
my @ctllist;
open(CTLFILE, $inn::ctlfile)
or logdie("Cannot open $inn::ctlfile", 'crit');
while (<CTLFILE>) {
chop;
# Not a comment or blank? Convert wildmat to regex
next if not /^(\s+)?[^\#]/ or /^$/;
if (not /:(?:doit|doifarg|drop|log|mail|verify-.*)(?:=.*)?$/) {
s/.*://;
logmsg("$_ is not a valid action for control.ctl", 'err');
next;
}
# Convert to a : separated list of regexps
s/^all:/*:/i;
s/([\$\+\.])/\\$1/g;
s/\*/.*/g;
s/\?/./g;
s/(.*)/^$1\$/;
s/:/\$:^/g;
s/\|/\$|^/g;
push @ctllist, $_;
}
close CTLFILE;
logmsg('warning: control.ctl is empty!', 'err') if not @ctllist;
return $cachedctl = [ reverse @ctllist ];
}
# Parse a control message's permissions.
sub ctlperm {
my ($type, $sender, $newsgroup, $token, $headers, $body) = @_;
my $action = 'drop'; # default
my ($logname, $hier);
# newgroup and rmgroup require newsgroup names; check explicitly for that
# here and return drop if the newsgroup is missing (to avoid a bunch of
# warnings from undefined values later on in permission checking).
if ($type eq 'newgroup' or $type eq 'rmgroup') {
unless ($newsgroup) {
return ('drop', undef, undef);
}
}
my $ctllist = readctlfile();
foreach (@$ctllist) {
my @ctlline = split /:/;
# 0: type 1: from@addr 2: group.* 3: action
if ($type =~ /$ctlline[0]/ and $sender =~ /$ctlline[1]/i and
($type !~ /(?:new|rm)group/ or $newsgroup =~ /$ctlline[2]/)) {
$action = $ctlline[3];
$action =~ s/\^(.+)\$/$1/;
$action =~ s/\\//g;
$hier = $ctlline[2] if $type eq 'checkgroups';
last;
}
}
($action, $logname) = split(/=/, $action);
if ($action =~ /^verify-(.+)/) {
my $keyowner = $1;
if ($inn::pgpverify and $inn::pgpverify =~ /^(?:true|on|yes)$/i) {
my $pgpresult = defined &local_pgpverify ?
local_pgpverify($token, $headers, $body) : pgpverify($token);
if ($keyowner eq $pgpresult) {
$action = 'doit';
} else {
$action = '_pgpfail';
}
} else {
$action = 'mail';
}
}
return ($action, $logname, $hier);
}
# Write stuff to a log or send mail to the news admin.
sub logger {
my ($logfile, $message, $headers, $body) = @_;
if ($logfile eq 'mail') {
my $mail = sendmail($message);
print $mail map { s/^~/~~/; "$_\n" } @$headers;
print $mail "$_\n" . join ('', map { s/^~/~~/; "$_\n" } @$body)
if $body;
close $mail or logdie("Cannot send mail: $!");
return;
}
if ($logfile =~ /^([^.\/].*)/) {
$logfile = $1;
} else {
logmsg("Invalid log file: $logfile", 'err');
$logfile = 'control';
}
$logfile = "$inn::most_logs/$logfile.log" unless $logfile =~ /^\//;
my $lockfile = $logfile;
$lockfile =~ s#.*/##;
$lockfile = "$inn::locks/LOCK.$lockfile";
shlock($lockfile);
open(LOGFILE, ">>$logfile") or logdie("Cannot open $logfile: $!");
print LOGFILE "$message\n";
foreach (@$headers, '', @$body, '') {
print LOGFILE " $_\n";
}
close LOGFILE;
unlink $lockfile;
}
# write to syslog or errlog
sub logmsg {
my ($msg, $lvl) = @_;
return if $lvl and $lvl eq 'debug' and not $debug;
if ($use_syslog) {
syslog($lvl || 'notice', '%s', $msg);
} else {
print STDERR (scalar localtime) . ": $msg\n";
}
}
# log a message and then die
sub logdie {
my ($msg, $lvl) = @_;
$msg .= " ($curmsgid)" if $curmsgid;
logmsg($msg, $lvl || 'err');
exit 1;
}
# wrappers executing external programs ####################################
# Open an article appropriately to our storage method (or lack thereof).
sub open_article {
my $token = shift;
return *ART if open(ART, $token);
logmsg("Cannot open article $token: $!");
return undef;
}
sub pgpverify {
my $token = shift;
open(PGPCHECK, "$inn::newsbin/pgpverify < $token |") or goto ERROR;
my $pgpresult = <PGPCHECK>;
close PGPCHECK or goto ERROR;
$pgpresult ||= '';
chop $pgpresult;
return $pgpresult;
ERROR:
logmsg("pgpverify failed: $!", 'debug');
return '';
}
sub ctlinnd {
my ($cmd, @args) = @_;
my $st = system("$inn::newsbin/ctlinnd", '-s', $cmd, @args);
logdie('Cannot run ctlinnd: ' . $!) if $st == -1;
logdie('ctlinnd returned status ' . ($st & 255)) if $st > 0;
}
sub shlock {
my $lockfile = shift;
my $locktry = 0;
while ($locktry < 60) {
if (system("$inn::newsbin/shlock", '-p', $$, '-f', $lockfile) == 0) {
return 1;
}
$locktry++;
sleep 2;
}
my $lockreason;
if (open(LOCKFILE, $lockfile)) {
$lockreason = 'held by ' . (<LOCKFILE> || '?');
close LOCKFILE;
} else {
$lockreason = $!;
}
logdie("Cannot get lock $lockfile: $lockreason");
return undef;
}
# If $body is not defined, returns a file handle which must be closed.
# Don't forget checking the return value of close().
# $addresses may be a scalar or a reference to a list of addresses.
# If not defined, $inn::newsmaster is the default.
# parts of this code stolen from innmail.pl
sub sendmail {
my ($subject, $addresses, $body) = @_;
$addresses = [ $addresses || $inn::newsmaster ] if not ref $addresses;
$subject ||= '(no subject)';
# fix up all addresses
my @addrs = map { s#[^-a-zA-Z0-9+_.@%]##g; $_ } @$addresses;
my $sm = $inn::mta;
if ($sm =~ /%s/) {
$sm = sprintf($sm, join(' ', @addrs));
} else {
$sm .= ' ' . join(' ', @addrs);
}
# fork and spawn the MTA whitout using the shell
my $pid = open(MTA, '|-');
logdie('Cannot fork: ' . $!) if $pid < 0;
if ($pid == 0) {
exec(split(/\s+/, $sm)) or logdie("Cannot exec $sm: $!");
}
print MTA 'To: ' . join(",\n\t", @addrs) . "\nSubject: $subject\n\n";
return *MTA if not defined $body;
$body = join("\n", @$body) if ref $body eq 'ARRAY';
print MTA $body . "\n";
close MTA or logdie("Execution of $sm failed: $!");
return 1;
}
|