Skip to content

Latest commit

 

History

History
executable file
·
993 lines (808 loc) · 32.9 KB

IcculusFinger_daemon.pl

File metadata and controls

executable file
·
993 lines (808 loc) · 32.9 KB
 
May 9, 2002
May 9, 2002
1
#!/usr/bin/perl -w -T
Jan 11, 2002
Jan 11, 2002
2
3
#-----------------------------------------------------------------------------
#
Jan 29, 2002
Jan 29, 2002
4
# Copyright (C) 2002 Ryan C. Gordon (icculus@icculus.org)
Jan 11, 2002
Jan 11, 2002
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Revision history:
# (1.0 series comments removed. Check the download archives if you need them.)
# 2.0.0 : Rewrite into an actual finger daemon. MILLIONS of changes.
Jan 24, 2002
Jan 24, 2002
26
27
# 2.0.1 : Fixed > and < conversion.
# MUCH better Lynx support (thanks, Chunky_Ks)
Jan 25, 2002
Jan 25, 2002
28
# Added an "embed" arg.
Jan 29, 2002
Jan 29, 2002
29
30
# changed \r and \n in protocol chatter to \015 and \012.
# Made syslogging optional.
Jan 29, 2002
Jan 29, 2002
31
# Added "root" as a fakeuser.
Apr 21, 2002
Apr 21, 2002
32
# 2.0.2 : Added "time" and "ipaddr" fakeusers.
May 1, 2002
May 1, 2002
33
# 2.0.3 : Added "linkdigest" arg, and made it the default for text output.
May 4, 2002
May 4, 2002
34
35
# 2.0.4 : Added "noarchive" tagblocks and optional "plan written on"
# date/time output.
May 9, 2002
May 9, 2002
36
37
# 2.0.5 : Can now run as a full daemon, without inetd. Bunch of secutity
# cleanups, and enables taint mode (-T).
Jan 11, 2002
Jan 11, 2002
38
39
#-----------------------------------------------------------------------------
May 4, 2002
May 4, 2002
40
41
# !!! TODO: Let [img] tags nest inside [link] tags.
# !!! TODO: Make [center] tags attempt to format plain text.
Jan 11, 2002
Jan 11, 2002
42
43
44
45
46
47
48
use strict; # don't touch this line, nootch.
use warnings; # don't touch this line, either.
use DBI; # or this. I guess. Maybe.
# Version of IcculusFinger. Change this if you are forking the code.
May 9, 2002
May 9, 2002
49
my $version = "v2.0.5";
Jan 11, 2002
Jan 11, 2002
50
51
52
53
54
55
56
#-----------------------------------------------------------------------------#
# CONFIGURATION VARIABLES: Change to suit your needs... #
#-----------------------------------------------------------------------------#
# This is a the hostname you want to claim to be...
Jan 11, 2002
Jan 11, 2002
57
58
59
# This reports "Finger info for $user\@$host ..." in the web interface,
# and is used for listing finger requests to finger clients:
# "Finger $user?section=sectionname\@$host", etc.
Jan 11, 2002
Jan 11, 2002
60
61
my $host = 'icculus.org';
Jan 11, 2002
Jan 11, 2002
62
63
64
65
# This is the URL for fingering accounts, for when we need to generate
# URLs. "$url?user=$user&section=sectionname".
my $base_url = 'http://icculus.org/cgi-bin/finger/finger.pl';
May 9, 2002
May 9, 2002
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
# Turn the process into a daemon. This will handle creating/answering socket
# connections, and forking off children to handle them. This flag can be
# toggle via command line options (--daemonize, --no-daemonize, -d), but this
# sets the default. Daemonizing tends to speed up processing (since the
# script stays loaded/compiled), but may cause problems on systems that
# don't have a functional fork() or IO::Socket::INET package. If you don't
# daemonize, this program reads requests from stdin and writes results to
# stdout, which makes it suitable for command line use or execution from
# inetd and equivalents.
my $daemonize = 0;
# This is only used when daemonized. Specify the port on which to listen for
# incoming connections. The RFC standard finger port is 79.
my $server_port = 79;
# Set this to immediately drop priveledges by setting uid and gid to these
# values. Set to undef to notattempt to drop privs. You will probably need to
# leave these as undef and run as root (risky!) if you plan to enable
# $the use_homedir variable, below.
#my $wanted_uid = undef;
#my $wanted_gid = undef;
my $wanted_uid = 1056; # (This is the uid of "finger" ON _MY_ SYSTEM.)
my $wanted_gid = 971; # (This is the gid of "iccfinger" ON _MY_ SYSTEM.)
# This is only used when daemonized. Specify the maximum number of finger
# requests to service at once. A separate child process is fork()ed off for
# each request, and if there are more requests then this value, the extra
# clients will be made to wait until some of the current requests are
# serviced. 5 to 10 is usually a good number. Set it higher if you get a
# massive amount of finger requests simultaneously.
my $max_connects = 5;
Jan 29, 2002
Jan 29, 2002
98
99
100
101
# Set this to non-zero to log all finger requests via the standard Unix
# syslog facility (requires Sys::Syslog qw(:DEFAULT setlogsock) ...)
my $use_syslog = 1;
Jan 11, 2002
Jan 11, 2002
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
# Set $use_homedir to something nonzero if want to read planfiles from the
# standard Unix location ("/home/$user/.plan"). Note that this is a security
# hole, as it means that either IcculusFinger must run as root to insure
# access to a user's homedir, or user's have to surrender a little more
# privacy to give a non-root user access to their homedirs. You should
# consider setting this to zero and reading the comments for $fingerspace,
# below. Note that IcculusFinger comes with a perl script for automating the
# moving of a system's planfiles from the the insecure method to the more
# secure $fingerspace method, including creating the symlinks so your users
# won't really notice a difference.
my $use_homedir = 0;
# If you set $use_homedir to 0, this is the directory that contains the
# planfiles in the format "$fingerdir$username" Note that THIS MUST HAVE
# THE TRAILING DIR SEPARATOR! This is ignored if $use_homedir is NOT zero.
my $fingerspace = '/fingerspace/';
# This is the maximum amount of data that IcculusFinger will read from a
# planfile. If this cuts off in the middle of an opened formatting tag,
# tough luck. IcculusFinger reads the entire planfile (up to the max you
# specify here) into memory before processing tags. Theoretically, this could
# be changed to handle tags on the fly, in which case users that would
# otherwise be over the limit might not be after processing sections, etc,
# but this is not the case here and now.
# Note that images specified inside [img] tags, etc are not counted towards
# this limit (since the web browser would be requesting those images
# separately), and only applies to the max bytes to be read directly from the
# planfile. This is merely here to prevent someone from symlinking their
# planfile to /dev/zero or something that could fill all available memory.
# This value is specified in bytes.
my $max_plan_size = (100 * 1024);
# This is the maximum size, in bytes, that a finger request can be. This is
# to prevent malicious finger clients from trying to fill all of system
# memory.
my $max_request_size = 1024;
# This is what is reported to the finger client if the desired user's planfile
# is missing or empty, or the user is unknown (we make NO distinction, for
# the sake of security and privacy). This string can use IcculusFinger
# markup tags (we'll convert as appropriate), but must NOT use HTML directly,
# since it will confuse the regular finger client users. You should not
# leave this blank or undef it, since that's confusing for everyone.
my $no_report_string = "[center][i]Nothing to report.[/i][/center]";
May 4, 2002
May 4, 2002
147
148
149
150
# List at the bottom of the finger output (above wittyremark) when the .plan
# was last updated?
my $show_revision_date = 1;
Jan 11, 2002
Jan 11, 2002
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
# This is the default title for the webpage. The user can override it with
# the [title] tag in their .plan file. Do not use HTML. You can specify an
# empty string (""), but not undef; however, you should REALLY have a
# default here...
my $title = "IcculusFinger $version";
# Alternately, you can populate this array with strings, and IcculusFinger
# will randomly pick one at runtime. Note that the user's [title] tags also
# land in here, so you are interfering with their ability to override the
# title if you add to this array. The $title variable above is used only if
# this array is empty, and thus gives you a comfortable default in case the
# user doesn't supply her own title. Do as you will.
my @title_array;
# If you are a content-Nazi, you can prevent the user's [title] tags from
# being included in the parsing.
my $permit_user_titles = 1;
# This is printed after the credits at the bottom. Change it to whatever you
# like. Do not use HTML. You can specify an empty string (""), but undef
# doesn't fly here. The user can change this with [wittyremark] tags.
my $wittyremark = "Stick it in the camel and go.";
# Alternately, you can populate this array with strings, and IcculusFinger
# will randomly pick one at runtime. Note that the user's [wittyremark] tags
# also land in here, so you are interfering with their ability to override
# if you add to this array. The $wittyremark variable above is used only if
# this array is empty, and thus gives you a comfortable default in case the
# user doesn't supply her own content. Do as you will.
my @wittyremark_array;
# If you are a content-Nazi, you can prevent the user's [wittyremark] tags
# from being included in the parsing.
my $permit_user_wittyremarks = 1;
# You can screw up your output with this, if you like.
# You can append "?debug=1" to your finger request to enable this without
# changing the source.
my $debug = 0;
# This is the URL to where the script can be obtained. Feel free to change
# it if you you are forking the code, but unless you've got a good reason,
# I'd appreciate it if you'd leave my (ahem) official IcculusFinger webpage
# in this variable. Set it to undef to not supply a link at all in the
# final HTML output.
#my $scripturl = undef;
#my $scripturl = "/misc/finger.pl";
my $scripturl = "http://icculus.org/IcculusFinger/";
# This is only used in the HTML-formatted output.
# I'd prefer you leave this be, but change it if you must.
my $html_credits = (defined $scripturl) ?
"Powered by <a href=\"$scripturl\">IcculusFinger $version</a>" :
"Powered by IcculusFinger $version" ;
# This is only used in the plaintext-formatted output.
# I'd prefer you leave this be, but change it if you must.
my $text_credits = "Powered by IcculusFinger $version" .
((defined $scripturl) ? " ($scripturl)" : "");
# Set this to zero to disable planfile archive lookups.
my $use_database = 1;
# This is the host to connect to for database access.
my $dbhost = 'localhost';
# This is the username for the database connection.
my $dbuser = 'fingermgr';
# The database password can be entered in three ways: Either hardcode it into
# $dbpass, (which is a security risk, but is faster if you have a completely
# closed system), or leave $dbpass set to undef, in which case this script
# will try to read the password from the file specified in $dbpassfile (which
# means that this script and the database can be touched by anyone with read
# access to that file), or leave both undef to have DBI get the password from
# the DBI_PASS environment variable, which is the most secure, but least
# convenient.
my $dbpass = undef;
my $dbpassfile = '/etc/IcculusFinger_dbpass.txt';
# The name of the database to use once connected to the database server.
my $dbname = 'IcculusFinger';
# The name of the table inside the database we're using.
my $dbtable_archive = 'finger_archive';
# These are special finger accounts; when a user queries for this fake
# user, we hand back the string returned from the attached function as if
# it was the contents of a planfile. Be careful with this, as it opens up
# potential security holes.
# These subs do NOT have a maximum size limit imposed by the
# $max_plan_size setting, above.
# This hash is checked before actual planfiles, so you can override an
# existing user through this mechanism.
my %fakeusers; # the hash has to exist; don't comment this line.
$fakeusers{'fortune'} = sub {
return(`/usr/games/fortune`);
};
Jan 29, 2002
Jan 29, 2002
253
254
255
256
$fakeusers{'root'} = sub {
return("ph34r me, for i am root. I'm l33t as kittens.");
};
Apr 21, 2002
Apr 21, 2002
257
258
259
260
261
262
263
$fakeusers{'time'} = sub {
return("At the sound of the beep, it will be: " . scalar localtime() .
"\012\012\012\012 ...[b][i][u]BEEP.[/u][/i][/b]");
};
# This works if run from qmail's tcp-env, and not tcpd.
May 1, 2002
May 1, 2002
264
# also note that this is pretty useless for hits through the web
Apr 21, 2002
Apr 21, 2002
265
266
# interface, since the webserver's IP will be reported, not the
# browser's IP.
May 9, 2002
May 9, 2002
267
268
$fakeusers{'ipaddr'} = sub {
if (defined $ENV{'TCPREMOTEIP'}) {
Apr 21, 2002
Apr 21, 2002
269
return("Your IP address appears to be $ENV{'TCPREMOTEIP'}");
May 9, 2002
May 9, 2002
270
271
272
273
} else {
return(undef);
}
};
Jan 11, 2002
Jan 11, 2002
274
275
276
277
278
279
280
281
282
283
284
285
#-----------------------------------------------------------------------------#
# The rest is probably okay without you laying yer dirty mits on it. #
#-----------------------------------------------------------------------------#
my $is_web_interface = 0;
my $do_html_formatting = 0;
my $browser = "";
my $wanted_section = undef;
my $output_text = "";
my $archive_date = undef;
my $archive_time = undef;
Jan 11, 2002
Jan 11, 2002
286
287
my $list_sections = 0;
my $list_archives = 0;
Jan 25, 2002
Jan 25, 2002
288
my $embed = 0;
May 1, 2002
May 1, 2002
289
my $do_link_digest = undef;
Jan 11, 2002
Jan 11, 2002
290
May 4, 2002
May 4, 2002
291
Jan 11, 2002
Jan 11, 2002
292
293
294
295
296
297
298
299
my $did_output_start = 0;
sub output_start {
my ($user, $host) = @_;
return if ((not $is_web_interface) and (not $do_html_formatting));
return if $did_output_start;
$did_output_start = 1;
Jan 25, 2002
Jan 25, 2002
300
print <<__EOF__ if not $embed;
Jan 11, 2002
Jan 11, 2002
301
302
303
304
305
306
307
308
309
310
311
312
<html>
<head>
<title> $title </title>
</head>
<body>
<center><h1>Finger info for $user\@$host...</h1></center>
<hr>
__EOF__
Jan 24, 2002
Jan 24, 2002
313
print "\n<pre>\n" if ($browser !~ /Lynx/);
Jan 11, 2002
Jan 11, 2002
314
315
316
317
318
}
sub output_ending {
Jan 24, 2002
Jan 24, 2002
319
if (($is_web_interface) or ($do_html_formatting) and ($browser !~ /Lynx/)) {
Jan 11, 2002
Jan 11, 2002
320
321
322
print(" </pre>\n");
}
Jan 25, 2002
Jan 25, 2002
323
324
return if $embed;
May 4, 2002
May 4, 2002
325
326
327
328
329
my $revision = undef;
if (($show_revision_date) and (defined $archive_date)) {
$revision = "When this .plan was written: $archive_date";
}
Jan 11, 2002
Jan 11, 2002
330
if ($do_html_formatting) {
May 4, 2002
May 4, 2002
331
332
$revision = ((defined $revision) ? "$revision<br>\n" : '');
Jan 11, 2002
Jan 11, 2002
333
334
335
336
337
print <<__EOF__;
<hr>
<center>
<font size="-3">
May 4, 2002
May 4, 2002
338
$revision
Jan 11, 2002
Jan 11, 2002
339
340
341
342
343
344
345
346
347
$html_credits<br>
<i>$wittyremark</i>
</font>
</center>
__EOF__
} else {
# !!! FIXME : Make that ------ line fit the length of the strings.
print "-------------------------------------------------------------------------\n";
May 4, 2002
May 4, 2002
348
print "$revision\n" if (defined $revision);
Jan 11, 2002
Jan 11, 2002
349
350
351
352
353
354
355
356
357
358
359
360
361
362
print "$text_credits\n";
print "$wittyremark\n\n";
}
if (($is_web_interface) or ($do_html_formatting)) {
print(" </body>\n");
print("</html>\n");
print("\n");
}
}
sub parse_args {
my $args = shift;
May 1, 2002
May 1, 2002
363
364
if ((defined $args) and ($args ne '')) {
$args =~ s/\A\?//;
Jan 11, 2002
Jan 11, 2002
365
May 1, 2002
May 1, 2002
366
367
368
if ($args =~ s/(\A|&)web=(.*?)(&|\Z)/$1/) {
$is_web_interface = $2;
}
Jan 11, 2002
Jan 11, 2002
369
May 1, 2002
May 1, 2002
370
371
372
if ($args =~ s/(\A|&)html=(.*?)(&|\Z)/$1/) {
$do_html_formatting = $2;
}
Jan 11, 2002
Jan 11, 2002
373
May 1, 2002
May 1, 2002
374
375
376
if ($args =~ s/(\A|&)browser=(.*?)(&|\Z)/$1/) {
$browser = $2;
}
Jan 11, 2002
Jan 11, 2002
377
May 1, 2002
May 1, 2002
378
379
380
if ($args =~ s/(\A|&)debug=(.*?)(&|\Z)/$1/) {
$debug = $2;
}
Jan 11, 2002
Jan 11, 2002
381
May 1, 2002
May 1, 2002
382
383
384
385
if ($args =~ s/(\A|&)section=(.*?)(&|\Z)/$1/) {
$wanted_section = $2;
$wanted_section =~ tr/A-Z/a-z/;
}
Jan 11, 2002
Jan 11, 2002
386
May 1, 2002
May 1, 2002
387
388
389
if ($args =~ s/(\A|&)date=(.*?)(&|\Z)/$1/) {
$archive_date = $2;
}
Jan 11, 2002
Jan 11, 2002
390
May 1, 2002
May 1, 2002
391
392
393
if ($args =~ s/(\A|&)time=(.*?)(&|\Z)/$1/) {
$archive_time = $2;
}
Jan 11, 2002
Jan 11, 2002
394
May 1, 2002
May 1, 2002
395
396
397
if ($args =~ s/(\A|&)listsections=(.*?)(&|\Z)/$1/) {
$list_sections = $2;
}
Jan 11, 2002
Jan 11, 2002
398
May 1, 2002
May 1, 2002
399
400
401
if ($args =~ s/(\A|&)listarchives=(.*?)(&|\Z)/$1/) {
$list_archives = $2;
}
Jan 11, 2002
Jan 11, 2002
402
May 1, 2002
May 1, 2002
403
404
405
406
407
408
409
if ($args =~ s/(\A|&)embed=(.*?)(&|\Z)/$1/) {
$embed = $2;
}
if ($args =~ s/(\A|&)linkdigest=(.*?)(&|\Z)/$1/) {
$do_link_digest = $2;
}
Jan 25, 2002
Jan 25, 2002
410
411
}
May 1, 2002
May 1, 2002
412
413
414
# default behaviours that depend on output target...
$do_link_digest = !$do_html_formatting if (not defined $do_link_digest);
Jan 11, 2002
Jan 11, 2002
415
416
417
418
return($args);
}
May 4, 2002
May 4, 2002
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
sub get_sqldate {
my $mtime = shift;
my @t = localtime($mtime);
$t[5] = "0000" . ($t[5] + 1900);
$t[5] =~ s/.*?(\d\d\d\d)\Z/$1/;
$t[4] = "00" . ($t[4] + 1);
$t[4] =~ s/.*?(\d\d)\Z/$1/;
$t[3] = "00" . $t[3];
$t[3] =~ s/.*?(\d\d)\Z/$1/;
$t[2] = "00" . $t[2];
$t[2] =~ s/.*?(\d\d)\Z/$1/;
$t[1] = "00" . $t[1];
$t[1] =~ s/.*?(\d\d)\Z/$1/;
$t[0] = "00" . $t[0];
$t[0] =~ s/.*?(\d\d)\Z/$1/;
return('' . ($t[5]) . '-' . ($t[4]) . '-' . ($t[3]) . ' ' .
($t[2]) . ':' . ($t[1]) . ':' . ($t[0]));
}
Jan 11, 2002
Jan 11, 2002
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
sub get_database_link {
if (not defined $dbpass) {
if (defined $dbpassfile) {
open(FH, $dbpassfile) or return("failed to open $dbpassfile: $!\n");
$dbpass = <FH>;
chomp($dbpass);
$dbpass =~ s/\A\s*//;
$dbpass =~ s/\s*\Z//;
close(FH);
}
}
my $dsn = "DBI:mysql:database=$dbname;host=$dbhost";
$_[0] = DBI->connect($dsn, $dbuser, $dbpass) or
return(DBI::errstr);
return(undef);
}
sub load_archive_list {
Jan 11, 2002
Jan 11, 2002
460
my $user = shift;
Jan 11, 2002
Jan 11, 2002
461
462
463
my $link;
my $err = get_database_link($link);
return($err) if defined $err;
Jan 11, 2002
Jan 11, 2002
464
Jan 11, 2002
Jan 11, 2002
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
my $u = $link->quote($user);
my $sql = "select postdate from $dbtable_archive where username=$u" .
" order by postdate desc";
my $sth = $link->prepare($sql);
if (not $sth->execute()) {
$link->disconnect();
return "can't execute the query: $sth->errstr";
}
my @archivelist;
while (my @row = $sth->fetchrow_array()) {
push @archivelist, $row[0];
}
if ($#archivelist < 0) {
$output_text = ''; # will use $no_report_string.
} else {
$output_text = "Available archives:\n";
foreach (@archivelist) {
my ($d, $t) = /(\d\d\d\d-\d\d-\d\d) (\d\d:\d\d:\d\d)/;
$t =~ s/(..):(..):(..)/$1-$2-$3/;
if ($do_html_formatting) {
my $url = "$base_url?user=$user&date=$d&time=$t";
$output_text .= " \[link=\"$url\"\]$_\[/link\]\n";
} else {
$output_text .= " finger $user\@$host?&date=$d&time=$t\n";
}
}
}
$sth->finish();
$link->disconnect();
return(undef);
}
sub load_archive {
my $user = shift;
Jan 11, 2002
Jan 11, 2002
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
my $sqldate;
if (defined $archive_date) {
if ($archive_date =~ /\A\d\d\d\d-\d\d-\d\d\Z/) {
$sqldate = $archive_date;
} else {
return("Archive date must be in yyyy-mm-dd format.");
}
} else {
my @t = localtime(time());
$t[5] = "0000" . ($t[5] + 1900);
$t[5] =~ s/.*?(\d\d\d\d)\Z/$1/;
$t[4] = "00" . ($t[4] + 1);
$t[4] =~ s/.*?(\d\d)\Z/$1/;
$t[3] = "00" . $t[3];
$t[3] =~ s/.*?(\d\d)\Z/$1/;
$sqldate = '' . ($t[5]) . '-' . ($t[4]) . '-' . ($t[3]);
}
if (defined $archive_time) {
if ($archive_time =~ /\A(\d\d)-(\d\d)-(\d\d)\Z/) {
$sqldate .= " $1:$2:$3";
} else {
return("Archive date must be in hh-mm-ss format.");
}
} else {
$sqldate .= " 23:59:59"; # end of day.
}
Jan 11, 2002
Jan 11, 2002
533
534
535
my $link;
my $err = get_database_link($link);
return($err) if defined $err;
Jan 11, 2002
Jan 11, 2002
536
537
my $u = $link->quote($user);
Jan 11, 2002
Jan 11, 2002
538
539
my $sql = "select postdate, text from $dbtable_archive where username=$u" .
" and postdate<='$sqldate' order by postdate desc limit 1";
Jan 11, 2002
Jan 11, 2002
540
541
542
543
544
545
546
547
my $sth = $link->prepare($sql);
if (not $sth->execute()) {
$link->disconnect();
return "can't execute the query: $sth->errstr";
}
my @row = $sth->fetchrow_array();
if (not @row) {
Jan 11, 2002
Jan 11, 2002
548
$output_text = ''; # will use $no_report_string.
Jan 11, 2002
Jan 11, 2002
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
} else {
$row[1] =~ s/(\A.{0, $max_plan_size}).*\Z/$1/s;
$archive_date = $row[0];
$output_text = $row[1];
}
$sth->finish();
$link->disconnect();
return(undef);
}
sub load_file {
my $user = shift;
my $fname = ($use_homedir) ? "/home/$user/.plan" : "$fingerspace$user";
my $errormsg = undef;
if (not -f "$fname") { # this is NOT an error.
$output_text = "";
} else {
May 4, 2002
May 4, 2002
569
my $modtime = (stat($fname))[9];
Jan 11, 2002
Jan 11, 2002
570
571
572
573
574
575
576
577
if (not open(FINGER, '<', "$fname")) {
$errormsg = "Couldn't open planfile: $!";
} else {
if (not defined read(FINGER, $output_text, $max_plan_size)) {
$errormsg = "Couldn't read planfile: $!";
}
close(FINGER);
}
May 4, 2002
May 4, 2002
578
579
$archive_date = get_sqldate($modtime);
Jan 11, 2002
Jan 11, 2002
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
}
return($errormsg);
}
sub verify_and_load_request {
my ($args, $user) = @_;
my $errormsg = undef;
if ((defined $args) and ($args ne '')) {
$errormsg = "Unrecognized query arguments: \"$args\"";
} elsif (not defined $user) {
$errormsg = "No user specified.";
} elsif ($user =~ /\@/) {
$errormsg = "Finger request forwarding is forbidden.";
} elsif (length($user) > 20) {
# The 20 char limit is just for safety against potential buffer overflows
# in finger servers, but it's more or less arbitrary.
# !!! TODO FIXME: Check for bogus characters in username/host.
$errormsg = "Bogus user specified.";
} else {
if (defined $fakeusers{$user}) {
$output_text = $fakeusers{$user}->();
}
Jan 29, 2002
Jan 29, 2002
605
elsif ($list_archives) {
Jan 11, 2002
Jan 11, 2002
606
$errormsg = load_archive_list($user);
Jan 29, 2002
Jan 29, 2002
607
}
Jan 11, 2002
Jan 11, 2002
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
elsif ((defined $archive_date) or (defined $archive_time)) {
$errormsg = load_archive($user);
} else {
$errormsg = load_file($user);
}
}
if (defined $errormsg) {
output_start($user, $host);
print " <center><h1>" if $do_html_formatting;
print "$errormsg";
print "</h1></center>" if $do_html_formatting;
print "\n";
output_ending();
return(0);
}
return(1);
}
sub do_fingering {
my ($query_string, $user) = @_;
May 1, 2002
May 1, 2002
631
my @link_digest;
Jan 11, 2002
Jan 11, 2002
632
633
634
635
636
637
638
639
640
641
if ($debug) {
$title = "debugging...";
output_start($user, $host);
print("WARNING: Debug output is enabled in this finger request!\n");
print("Original query string: \"$query_string\"\n");
print("fingering $user ...\n");
print("HTML formatting: $do_html_formatting ...\n");
print("Is web interface: $is_web_interface ...\n");
print("Browser: $browser ...\n");
May 1, 2002
May 1, 2002
642
643
print("Embedding: $embed ...\n");
print("Doing link digest: $do_link_digest ...\n");
Jan 11, 2002
Jan 11, 2002
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
}
if ((not defined $output_text) or ($output_text eq "")) {
$output_text = $no_report_string;
}
# Change [title][/title] tags.
while ($output_text =~ s/\[title\](.*?)\[\/title\](\r\n|\n|\b)//is) {
push @title_array, $1 if $permit_user_titles;
}
# Change [wittyremark][/wittyremark] tags.
while ($output_text =~ s/\[wittyremark\](.*?)\[\/wittyremark\](\r\n|\n|\b)//is) {
push @wittyremark_array, $1 if $permit_user_wittyremarks;
}
Jan 11, 2002
Jan 11, 2002
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
# !!! FIXME: Make this a separate subroutine?
if ($list_sections) {
my @sectionlist;
while ($output_text =~ s/\[section=\"(.*?)\"\](\r\n|\n|\b)(.*?)\[\/section\](\r\n|\n|\b)/$3/is) {
push @sectionlist, $1;
}
$output_text = "Available sections:\n";
if ($do_html_formatting) {
foreach (@sectionlist) {
my $url = "$base_url?user=$user&section=$_";
$output_text .= " \[link=\"$url\"\]$_\[/link\]\n";
}
} else {
foreach (@sectionlist) {
$output_text .= " finger $user\@$host?section=$_\n";
}
}
}
Jan 11, 2002
Jan 11, 2002
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
# Select a section.
while ($output_text =~ s/\[defaultsection=\"(\w*)\"\](\r\n|\n|\b)//) {
$wanted_section = $1 if (not defined $wanted_section);
}
if (defined $wanted_section) {
print("Using specific section: $wanted_section ...\n") if $debug;
# !!! FIXME: Why isn't the substitution working? I need to assign $2 directly for some reason...
if ($output_text =~ s/\[section=\"$wanted_section\"\](\r\n|\n|\b)(.*?)\[\/section\](\r\n|\n|\b)/$2/is) {
$output_text = $2;
} else {
$output_text = "section \"$wanted_section\" not found.\n";
}
} else {
1 while ($output_text =~ s/\[section=\".*?\"\](.*?)\[\/section\](\r\n|\n|\b)/$1/is);
}
if (($do_html_formatting) or ($is_web_interface)) {
# HTMLify some characters...
1 while ($output_text =~ s/</&lt;/s);
1 while ($output_text =~ s/>/&gt;/s);
}
# Change [b][/b] tags.
if ($do_html_formatting) {
1 while ($output_text =~ s/\[b](.*?)\[\/b\]/<b>$1<\/b>/is);
} else {
1 while ($output_text =~ s/\[b](.*?)\[\/b\]/$1/is);
}
# Change [i][/i] tags.
if ($do_html_formatting) {
1 while ($output_text =~ s/\[i](.*?)\[\/i\]/<i>$1<\/i>/is);
} else {
1 while ($output_text =~ s/\[i](.*?)\[\/i\]/$1/is);
}
# Change [u][/u] tags.
if ($do_html_formatting) {
1 while ($output_text =~ s/\[u](.*?)\[\/u\]/<u>$1<\/u>/is);
} else {
1 while ($output_text =~ s/\[u](.*?)\[\/u\]/$1/is);
}
# Change [center][/center] tags.
if ($do_html_formatting) {
if ($browser =~ /Opera/) {
while ($output_text =~ /\[center](.*?)\[\/center\]/is) {
my $buf = $1;
1 while ($buf =~ s/\n/<br>/s);
$output_text =~ s/\[center](.*?)\[\/center\]/<\/pre><center><code>$buf<\/code><\/center><pre>/is;
}
} else {
1 while ($output_text =~ s/\[center](.*?)\[\/center\]/<center>$1<\/center>/is);
}
} else {
1 while ($output_text =~ s/\[center](.*?)\[\/center\]/$1/is);
}
# Change [font][/font] tags.
if ($do_html_formatting) {
1 while ($output_text =~ s/\[font (.*?)](.*?)\[\/font\]/<font $1>$2<\/font>/is);
} else {
1 while ($output_text =~ s/\[font (.*?)](.*?)\[\/font\]/$2/is);
}
# Change [link][/link] tags.
if ($do_html_formatting) {
1 while ($output_text =~ s/\[link=\"(.*?)\"\](.*?)\[\/link\]/<a href=\"$1\">$2<\/a>/is);
May 1, 2002
May 1, 2002
750
751
752
753
754
755
756
} elsif ($do_link_digest) {
my $x = $#link_digest + 2; # start at one.
while ($output_text =~ s/\[link=\"(.*?)\"\](.*?)\[\/link\]/$2 \[$x\]/is) {
push @link_digest, $1;
$x++;
}
} else { # ugly-ass text output.
Jan 11, 2002
Jan 11, 2002
757
758
759
760
761
762
763
764
765
766
1 while ($output_text =~ s/\[link=\"(.*?)\"\](.*?)\[\/link\]/$2 \[$1\]/is);
}
# Change [img][/img] tags.
if ($do_html_formatting) {
1 while ($output_text =~ s/\[img=\"(.*?)\"\](.*?)\[\/img\]/<img src=\"$1\" alt=\"$2\">/is);
} else {
1 while ($output_text =~ s/\[img=\"(.*?)\"\](.*?)\[\/img\]/$2/is);
}
May 4, 2002
May 4, 2002
767
768
769
# Ditch [noarchive][/noarchive] tags ... those are metadata.
1 while ($output_text =~ s/\[noarchive](.*?)\[\/noarchive\]/$1/is);
Jan 11, 2002
Jan 11, 2002
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
if ($do_html_formatting) {
# try to make URLs into hyperlinks in the HTML output.
1 while ($output_text =~ s/(?<!href=")(?<!src=")(?<!">)\b([a-zA-Z]+?:\/\/[-~=\w&\.\/?]+)/<a href="$1">$1<\/a>/);
# try to make email addresses into hyperlinks in the HTML output.
1 while ($output_text =~ s/\b(?<!href="mailto:)(?<!">)\b([\w\.]+?\@[\w\.]+)(\b|\.)/<a href=\"mailto:$1\">$1<\/a>/);
# HTMLify newlines.
#1 while ($output_text =~ s/\r//s);
#1 while ($output_text =~ s/(?<!<br>)\n/<br>\n/s);
}
# this has to be done after any possible URL detection...
# convert ampersands for the browser.
if (($do_html_formatting) or ($is_web_interface)) {
Jan 24, 2002
Jan 24, 2002
785
786
787
788
1 while ($output_text =~ s/(?<!">)\&(?!lt)(?!gt)(?!amp)/&amp;/s);
}
if ($do_html_formatting and ($browser =~ /Lynx/)) {
Jan 29, 2002
Jan 29, 2002
789
790
791
# !!! FIXME: executable regexps suck.
# !!! FIXME: This doesn't work very well.
1 while ($output_text =~ s/^( +)/"&nbsp;" x length($1)/mse);
Jan 24, 2002
Jan 24, 2002
792
793
1 while ($output_text =~ s/\r//s);
1 while ($output_text =~ s/\n/<br>/s);
Jan 11, 2002
Jan 11, 2002
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
}
if ($#title_array >= 0) {
$title = $title_array[int(rand($#title_array + 1))];
}
if ($#wittyremark_array >= 0) {
$wittyremark = $wittyremark_array[int(rand($#wittyremark_array + 1))];
}
# Pick a random title...
if ($debug) {
my $x;
$x = $#title_array + 1;
print("Number of titles: $x ...\n");
print(" titles:\n");
foreach (@title_array) {
print(" - [$_]\n");
}
print("Chosen: [$title].\n");
$x = $#wittyremark_array + 1;
print("Number of witty remarks: $x ...\n");
print(" witty remarks:\n");
foreach (@wittyremark_array) {
print(" - [$_]\n");
}
print("Chosen: [$wittyremark].\n");
May 1, 2002
May 1, 2002
824
825
826
$x = $#link_digest + 1;
print("Items in link digest: $x ... \n");
Jan 11, 2002
Jan 11, 2002
827
828
829
830
831
832
833
834
835
print("\n");
print("Actual finger output begins below line...\n");
print("---------------------------------------------------\n");
}
if ((not $do_html_formatting) and (not $is_web_interface)) {
$output_text = "$title\n\n" . $output_text;
}
May 1, 2002
May 1, 2002
836
837
838
839
840
841
842
843
844
845
if (($do_link_digest) and ($#link_digest >= 0)) {
$output_text .= "\n\n";
my $idx = 0;
foreach (@link_digest) {
$idx++; # start at one.
$output_text .= " [$idx] $_\n";
}
}
Jan 11, 2002
Jan 11, 2002
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
1 while ($output_text =~ s/\A\n//s); # Remove starting newlines.
1 while ($output_text =~ s/\n\Z//s); # Remove trailing newlines.
output_start($user, $host);
print("$output_text\n");
output_ending();
}
sub read_request {
my $ch;
my $count;
my $retval = '';
for ($count = 0; $count < $max_request_size; $count++) {
Jan 29, 2002
Jan 29, 2002
861
# !!! FIXME: A timeout would be great, here.
Jan 11, 2002
Jan 11, 2002
862
$ch = getc(STDIN);
Jan 29, 2002
Jan 29, 2002
863
if ($ch ne "\015") {
Jan 29, 2002
Jan 29, 2002
864
last if (($ch eq '') or ($ch eq "\012"));
Jan 11, 2002
Jan 11, 2002
865
866
867
868
869
870
871
872
$retval .= $ch;
}
}
return($retval);
}
May 9, 2002
May 9, 2002
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
sub finger_mainline {
my $query_string = read_request();
if ($use_syslog) {
syslog("info", "finger request: \"$query_string\"\n")
or die("Couldn't write to syslog: $!\n");
}
my ($user, $args) = $query_string =~ /\A(.*?)(\?.*|\b)\Z/;
$user =~ tr/A-Z/a-z/ if defined $user;
$args = parse_args($args);
if (verify_and_load_request($args, $user)) {
do_fingering($query_string, $user)
}
return(0);
}
sub syslog_and_die {
my $err = shift;
$err .= "\n";
syslog("info", $err) if ($use_syslog);
die($err);
}
sub go_to_background {
use POSIX 'setsid';
chdir('/') or syslog_and_die("Can't chdir to '/': $!");
open STDIN,'/dev/null' or syslog_and_die("Can't read '/dev/null': $!");
open STDOUT,'>/dev/null' or syslog_and_die("Can't write '/dev/null': $!");
defined(my $pid=fork) or syslog_and_die("Can't fork: $!");
exit if $pid;
setsid or syslog_and_die("Can't start new session: $!");
open STDERR,'>&STDOUT' or syslog_and_die("Can't duplicate stdout: $!");
}
sub drop_privileges {
delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
$ENV{'PATH'} = '/usr/bin:/usr/local/bin';
$) = $wanted_gid if (defined $wanted_gid);
$> = $wanted_uid if (defined $wanted_uid);
}
Jan 11, 2002
Jan 11, 2002
921
922
# Mainline.
May 9, 2002
May 9, 2002
923
924
925
926
927
928
929
foreach (@ARGV) {
$daemonize = 1, next if $_ eq '--daemonize';
$daemonize = 1, next if $_ eq '-d';
$daemonize = 0, next if $_ eq '--no-daemonize';
die("Unknown command line \"$_\".\n");
}
Jan 11, 2002
Jan 11, 2002
930
Jan 29, 2002
Jan 29, 2002
931
932
933
934
935
if ($use_syslog) {
use Sys::Syslog qw(:DEFAULT setlogsock);
setlogsock("unix");
openlog("fingerd", "user") or die("Couldn't open syslog: $!\n");
}
Jan 11, 2002
Jan 11, 2002
936
937
May 9, 2002
May 9, 2002
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
my $retval = 0;
if (not $daemonize) {
drop_privileges();
$retval = finger_mainline();
} else {
go_to_background();
# clean up zombies from future forks...
use POSIX ":sys_wait_h";
$SIG{CHLD} = sub { 1 until (waitpid(-1, WNOHANG) == -1); };
use IO::Socket::INET;
my $listensock = IO::Socket::INET->new(LocalPort => $server_port,
Type => SOCK_STREAM,
ReuseAddr => 1,
Listen => $max_connects);
syslog_and_die("couldn't create listen socket: $!") if (not $listensock);
drop_privileges();
while (1)
{
my $client = $listensock->accept();
syslog_and_die("accept() failed: $!") if (not $client);
my $ip = $client->peerhost();
syslog("info", "connection from $ip") if ($use_syslog);
$ENV{'TCPREMOTEIP'} = $ip;
my $kidpid = fork();
syslog_and_die("fork() failed: $!") if (not defined $kidpid);
if ($kidpid == 0) { # this is the child process.
close($listensock); # no need for listen socket in child.
local *FH = $client;
open(STDIN, "<&FH") or syslog_and_die("no STDIN reassign: $!");
open(STDERR, ">&FH") or syslog_and_die("no STDERR reassign: $!");
open(STDOUT, ">&FH") or syslog_and_die("no STDOUT reassign: $!");
my $retval = finger_mainline();
close($client);
exit $retval;
}
close($client); # parent has no use for this socket.
}
close($listensock); # probably won't ever hit this.
Jan 11, 2002
Jan 11, 2002
987
988
}
May 9, 2002
May 9, 2002
989
exit $retval;
Jan 11, 2002
Jan 11, 2002
990
991
# end of finger.pl ...