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
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
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
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
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
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
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
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
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
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
|
#-*- perl -*-
#
# Copyright (C) 2001 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
# $FML: Kernel.pm,v 1.57 2001/10/13 03:11:08 fukachan Exp $
#
package FML::Process::Kernel;
use strict;
use Carp;
=head1 NAME
FML::Process::Kernel - provide fml core functions
=head1 SYNOPSIS
use FML::Process::Kernel;
$curproc = new FML::Process::Kernel;
$curproc->prepare($args);
... snip ...
=head1 DESCRIPTION
This modules is the base class of fml processes.
It provides basic core functions.
See L<FML::Process::Flow> on where and how each function is used
in the process flow.
=head1 METHODS
=head2 C<new($args)>
1. import variables such as C<$ml_home_dir> via C<libexec/loader>
2. determine C<$fml_version> for further library loading
3. initialize current process struct C<$curproc> such as
$curproc->{ main_cf }
$curproc->{ config }
$curproc->{ pcb }
For example, this C<main_cf> provides the pointer to /etc/fml/main.cf
parameters.
4. load and evaluate configuration files
e.g. C</var/spool/ml/elena/config.cf> for C<elena> mailing list.
5. initialize signal handlders
=cut
use FML::Process::Flow;
use FML::Parse;
use FML::Header;
use FML::Config;
use FML::Log qw(Log LogWarn LogError);
use File::SimpleLock;
use FML::Messages;
# Descriptions: constructor
# Arguments: $self $args
# Side Effects: none
# Return Value: FML::Process::Kernel object
sub new
{
my ($self, $args) = @_;
my ($curproc) = {}; # alloc memory as the struct current_process.
my ($cfargs) = {};
# import variables
my (@import_vars) = qw(ml_home_prefix ml_home_dir program_name);
my $var;
IMPORT_CHECK:
for $var (@import_vars) {
if (defined $args->{ $var }) {
$cfargs->{ $var } = $args->{ $var };
}
else {
if ($var eq 'ml_home_dir') {
next IMPORT_CHECK unless $args->{ need_ml_name };
}
# critical error
croak("Error: variable=$var is not defined");
}
}
# error if we need $ml_home_dir but is not specified.
if ($args->{ need_ml_name }) {
unless ($cfargs->{ ml_home_dir }) {
croak("specify ml_home_dir or ml_name");
}
}
# import XXX_dir variables from /etc/fml/main.cf
for my $dir_var (qw(lib_dir libexec_dir share_dir)) {
if (defined $args->{ main_cf }->{ $dir_var }) {
$cfargs->{ 'fml_'.$dir_var } = $args->{ main_cf }->{ $dir_var };
}
}
# import $fml_version
if (defined $args->{ fml_version }) {
$cfargs->{ fml_version } = "fml-devel ". $args->{ fml_version };
}
# for more convenience, save the parent configuration
$curproc->{ main_cf } = $args->{ main_cf };
# bind FML::Config object to $curproc
use FML::Config;
$curproc->{ config } = new FML::Config $cfargs;
# initialize PCB
use FML::PCB;
$curproc->{ pcb } = new FML::PCB;
bless $curproc, $self;
# load config.cf files, which is passed from loader.
$curproc->load_config_files( $args->{ cf_list } );
# initialize signal
$curproc->_signal_init;
# debug
if ($0 =~ /loader/) {
eval q{
require Data::Dumper; Data::Dumper->import();
print "// FML::Process::Kernel::new()\n";
$Data::Dumper::Varname = 'curproc';
print Dumper( $curproc );
sleep 2;
$Data::Dumper::Varname = 'args';
print Dumper( $args );
sleep 2;
};
}
return $curproc;
}
# Descriptions: set up default signal handling
# Arguments: $self $args
# Side Effects: none
# Return Value: none
sub _signal_init
{
my ($curproc, $args) = @_;
$SIG{'ALRM'} = $SIG{'INT'} = $SIG{'QUIT'} = $SIG{'TERM'} = sub {
my ($signal) = @_;
Log("SIG$signal trapped");
sleep 1;
croak("SIG$signal trapped");
};
}
=head2 C<prepare($args)>
preparation before the main part starts.
It parses the message injected from STDIN to set up
a set of the header and the body object.
=cut
# Descriptions: preliminary works before the main part
# Arguments: $self $args
# Side Effects: none
# Return Value: same as parse_incoming_message()
sub prepare
{
my ($curproc, $args) = @_;
$curproc->parse_incoming_message($args);
}
=head2 C<lock($args)>
locks the current process.
It is a giant lock now.
=head2 C<unlock($args)>
unlocks the current process.
It is a giant lock now.
=cut
# Descriptions:
# Arguments: $self $args
# Side Effects:
# Return Value: none
sub lock
{
my ($curproc, $args) = @_;
# lock information
my $config = $curproc->{ config };
my $lock_dir = $config->{ lock_dir };
my $lock_file = $config->{ lock_file };
my $lock_type = $config->{ lock_type };
unless (-d $lock_dir) {
use File::Path;
mkpath($lock_dir, 0, 0755);
}
unless (-f $lock_file) {
use FileHandle;
my $fh = new FileHandle $lock_file, "a";
if (defined $fh) {
print $fh "\n";
$fh->close if $fh;
}
}
require File::SimpleLock;
my $lockobj = new File::SimpleLock;
return 0 unless $lock_file ;
my $r = $lockobj->lock( { file => $lock_file } );
if ($r) {
my $pcb = $curproc->{ pcb };
$pcb->set('lock', 'object', $lockobj);
$pcb->set('lock', 'file', $lock_file);
Log( "locked $lock_file" );
}
else {
croak("Error: cannot lock");
}
}
# Descriptions:
# Arguments: $self $args
# Side Effects:
# Return Value: none
sub unlock
{
my ($curproc, $args) = @_;
my $pcb = $curproc->{ pcb };
my $lockobj = $pcb->get('lock', 'object');
my $lock_file = $pcb->get('lock', 'file');
my $r = $lockobj->unlock( { file => $lock_file } );
if ($r) {
Log( "unlocked $lock_file");
}
else {
croak("Error: cannot lock");
}
}
=head2 C<verify_sender_credential($args)>
verify the mail sender is valid or not.
If valid, it sets the adddress within $curproc->{ credential } object.
=cut
# Descriptions:
# Arguments: $self $args
# Side Effects:
# Return Value: none
sub verify_sender_credential
{
my ($curproc, $args) = @_;
my $msg = $curproc->{'incoming_message'};
my $from = $msg->{'header'}->get('from');
use Mail::Address;
my ($addr, @addrs) = Mail::Address->parse($from);
# extract the first address as a sender.
$from = $addr->address;
$from =~ s/\n$//o;
# XXX "@addrs must be empty" is valid.
unless (@addrs) {
# XXX o.k. From: is proven to be valid now.
# XXX log it anyway
Log("sender: $from");
use FML::Credential;
$curproc->{'credential'} = new FML::Credential;
$curproc->{'credential'}->set( 'sender', $from );
}
else {
Log("invalid From:");
}
}
=head2 C<simple_loop_check($args)>
loop checks following rules of $config->{ header_loop_check_rules }.
The autual check is done by header->C<$rule()> for a C<rule>.
See C<FML::Header> object for more details.
=cut
# Descriptions: top level of loop checks
# Arguments: $self $args
# Side Effects: none
# Return Value: none
sub simple_loop_check
{
my ($curproc, $args) = @_;
my $config = $curproc->{ config };
my $r_msg = $curproc->{ incoming_message };
my $header = $r_msg->{ header };
my $match = 0;
for my $rule (split(/\s+/, $config->{ header_loop_check_rules })) {
if ($header->can($rule)) {
$match = $header->$rule($config, $args) ? $rule : 0;
}
else {
Log("header->${rule}() is undefined");
}
last if $match;
}
if ($match) {
Log("mail loop detected for $match");
}
}
=head2 C<load_config_files($files)>
read several configuration C<@$files>.
The variable evaluation (expansion) is done on demand when
$config->get() of FETCH() method is called.
=cut
# Descriptions: load configuration files and evaluate variables
# Arguments: $self $args
# Side Effects: none
# Return Value: none
sub load_config_files
{
my ($curproc, $files) = @_;
# load configuration variables from given files e.g. /some/where.cf
# XXX overload variables from each $cf
for my $cf (@$files) {
$curproc->{ config }->overload( $cf );
}
# XXX We need to expand variables after we load all *cf files.
# XXX 2001/05/05 changed to dynamic expansion for hook
# $curproc->{ config }->expand_variables();
}
=head2 C<parse_incoming_message($args)>
C<preapre()> method calls this to
parse the message to a set of header and body.
$curproc->{'incoming_message'} holds the parsed message
which consists of a set of
$curproc->{'incoming_message'}->{ header }
and
$curproc->{'incoming_message'}->{ body }.
The C<header> is C<FML::Header> object.
The C<body> is C<Mail::Message> object.
=cut
# Descriptions: parse the message to a set of header and body
# Arguments: $self $args
# Side Effects: $curproc->{'incoming_message'} is set up
# Return Value: none
sub parse_incoming_message
{
my ($curproc, $args) = @_;
# parse incoming mail to cut off it to the header and the body.
use FML::Parse;
# malloc the incoming message on memory.
# $r_msg is the reference to the memory area.
my $msg = new FML::Parse $curproc, \*STDIN;
# store the message to $curproc
$curproc->{ incoming_message }->{ message } = $msg;
$curproc->{ incoming_message }->{ header } = $msg->rfc822_message_header;
$curproc->{ incoming_message }->{ body } = $msg->rfc822_message_body;
}
=head1 CREDENTIAL
=head2 C<premit_post($args)>
permit posting.
The restriction rules follows the order of C<post_restrictions>.
=head2 C<premit_command($args)>
permit fml command use.
The restriction rules follows the order of C<command_restrictions>.
=cut
sub permit_post
{
my ($curproc, $args) = @_;
$curproc->_check_resitrictions($args, 'post');
}
sub permit_command
{
my ($curproc, $args) = @_;
$curproc->_check_resitrictions($args, 'command');
}
sub _check_resitrictions
{
my ($curproc, $args, $type) = @_;
my $config = $curproc->{ config };
my $cred = $curproc->{ credential }; # user credential
for my $rule (split(/\s+/, $config->{ "${type}_restrictions" })) {
if ($rule eq 'reject_system_accounts') {
my $match = $cred->match_system_accounts($curproc, $args);
if ($match) {
Log("${rule}: $match matches sender address");
return 0;
}
}
elsif ($rule eq 'permit_members_only') {
# Q: the mail sender is a ML member?
if ($cred->is_member($curproc, $args)) {
# A: Yes, we permit to distribute this article.
return 1;
}
else {
# A: No, deny distribution
my $sender = $cred->sender;
Log("$sender is not a ML member");
Log( $cred->error() );
$curproc->reply_message_nl('kern.not_member',
"you are not a ML member." );
$curproc->reply_message( " your address: $sender" );
}
}
elsif ($rule eq 'reject') {
return 0;
}
else {
LogWarn("unknown rule=$rule");
}
}
}
=head1 MESSAGE HANDLING
=head2 C<reply_message($msg)>
C<reply_message($msg)> holds message C<$msg> sent back to the mail
sender.
To send a plain text,
reply_message( "message" );
but to attach an image file, please use in the following way:
reply_message( {
type => "image/gif",
path => "aaa00123.gif",
filename => "logo.gif",
disposition => "attachment",
});
If you attach a plain text with the charset = iso-2022-jp,
reply_message( {
type => "text/plain; charset=iso-2022-jp",
path => "/etc/fml/main.cf",
filename => "main.cf",
disposition => "main.cf example",
});
=cut
sub reply_message
{
my ($curproc, $msg) = @_;
my $pcb = $curproc->{ pcb };
my $category = 'reply_message';
if (ref($msg) eq 'HASH') {
my $rarray = $pcb->get($category, 'queue') || [];
$rarray->[ $#$rarray + 1 ] = $msg;
$pcb->set($category, 'queue', $rarray);
}
# XXX treat $msg string in separete way.
# XXX collect all text messages at one special area by default.
else {
my $msg0 = $pcb->get($category, 'text') || undef;
$msg .= "\n" unless $msg =~ /\n$/;
$pcb->set($category, 'text', $msg0.$msg);
}
}
=head2 C<reply_message_nl($class, $default_msg, $args)>
This is a wrapper for C<reply_message()> with natural language support.
The message in natural language corresponding with C<$class> is sent.
If translation fails, $default_msg, English by default, is used.
We need parameters in some cases.
They are stored in $args if needed.
$curproc->reply_message_nl('kern.not_member',
"you are not a ML member." );
=cut
sub reply_message_nl
{
my ($curproc, $class, $default_msg, $args) = @_;
my $config = $curproc->{ config };
my $dir = $config->{ message_message_dir };
my $buf = '';
use File::Spec;
$class =~ s@\.@/@; # XXX replace the first "." only
my $file = File::Spec->catfile($dir, $class);
if (-f $file) {
use FileHandle;
my $fh = new FileHandle $file;
if (defined $fh) {
while (<$fh>) { $buf .= $_;}
close($fh);
}
}
if (defined $buf) {
use FML::Language::ISO2022JP qw(STR2JIS);
if ($buf =~ /\$/) {
$config->expand_variable_in_buffer(\$buf, $args);
}
$curproc->reply_message( STR2JIS( $buf ) );
}
else {
$curproc->reply_message($default_msg);
}
}
=head2 C<inform_reply_messages($args)>
inform the error messages to the sender or maintainer.
C<inform_reply_messages($args)> checks existence of message(s) of the
following category.
category description
----------------------------------
reply_message message sent back to the mail sender
system_message message sent to this list maintainer
Prepare the message and queue it in by C<Mail::Delivery::Queue>.
=cut
# Descriptions: msg (message to return to the sender) is either of
# text/plain if only "text" is defined.
# msg = header + get(message, text)
# OR
# multipart/mixed if both "text" and "queue" is defined.
# $r = get(message, queue)
# msg = header + "text" + $r->[0] + $r->[1] + ...
#
# Arguments: $self $args
# Side Effects:
# Return Value: none
sub inform_reply_messages
{
my ($curproc, $args) = @_;
my $pcb = $curproc->{ pcb };
# inject message string to queue in
for my $category ('reply_message', 'system_message') {
if (defined($pcb->get($category, 'text')) ||
defined($pcb->get($category, 'queue') )) {
$curproc->queue_in($category);
}
}
}
=head2 C<queue_in($category, $optargs)>
=cut
sub queue_in
{
my ($curproc, $category, $optargs) = @_;
my $config = $curproc->{ config };
# default values
my $sender = $config->{ maintainer };
my $charset = $config->{ "${category}_charset" } || 'us-ascii';
my $subject = $config->{ "${category}_subject" };
my $recipient = undef; # by default. used as sanity check later
if (defined $curproc->{ credential }) {
$recipient = $curproc->{ credential }->sender();
}
# overwrite
if (defined $optargs) {
$sender = $optargs->{'sender'} if defined $optargs->{'sender'};
$charset = $optargs->{'charset'} if defined $optargs->{'charset'};
$subject = $optargs->{'subject'} if defined $optargs->{'subject'};
$recipient = $optargs->{'recipient'} if defined $optargs->{'recipient'};
}
# cheap sanity check
unless (defined($sender) && defined($recipient)) {
my $reason = '';
use Carp;
$reason = "no sender specified\n" unless defined $sender;
$reason = "no recipient specified\n" unless defined $recipient;
croak("panic: queue_in()\n\treason: $reason\n");
}
#
# start building a message
#
use Mail::Message::Compose;
my $pcb = $curproc->{ pcb };
my $string = $pcb->get($category, 'text') || undef;
my $is_multipart = $pcb->get($category, 'queue') ? 1 : 0;
my $msg;
if ($is_multipart) {
$msg = new Mail::Message::Compose
From => $sender,
To => $recipient,
Subject => $subject,
Type => "multipart/mixed";
_add_info_on_header($config, $msg);
if (defined $string) {
$msg->attach(Type => "text/plain; charset=$charset",
Data => $string,
);
}
my $a = $pcb->get($category, 'queue');
for my $q ( @$a ) {
$msg->attach(Type => $q->{ type },
Path => $q->{ path },
Filename => $q->{ filename },
Disposition => $q->{ disposition });
}
}
# text/plain format message (by default).
else {
$msg = new Mail::Message::Compose
From => $sender,
To => $recipient,
Subject => $subject,
Data => $string;
$msg->attr('content-type.charset' => $charset);
_add_info_on_header($config, $msg);
}
use Mail::Delivery::Queue;
my $queue_dir = $config->{ mqueue_dir };
my $queue = new Mail::Delivery::Queue { directory => $queue_dir };
my $qid = $queue->id();
$queue->set('sender', $sender);
$queue->set('recipients', [ $recipient ]);
$queue->in( $msg ) && Log("queue=$qid in");
$queue->setrunnable();
# return queue object
return $queue;
}
sub _add_info_on_header
{
my ($config, $msg) = @_;
my $ml_name = $config->{ "ml_name" };
my $version = $config->{ "fml_version" };
$msg->attr('X-ML-Name' => $ml_name);
use FML::Header;
my $args = {
type => 'MIME::Lite',
message => $msg,
};
FML::Header->add_software_info($config, $args);
FML::Header->add_rfc2369($config, $args);
}
=head2 C<queue_flush($queue)>
flush all queue.
C<TODO:>
flush C<$queue>, that is, send mail specified by C<$queue>.
=cut
sub queue_flush
{
my ($curproc, $queue) = @_;
my $config = $curproc->{ config };
my $queue_dir = $config->{ mqueue_dir };
use FML::Process::QueueManager;
my $obj = new FML::Process::QueueManager { directory => $queue_dir };
$obj->send($curproc);
}
=head2 C<expand_variables_in_file>
expand $xxx variables in template (e.g. $help_file). return file name
string, which is a new template converted by this routine.
For example, it expands
welcome to $ml_name ML
to
welcome to elena ML
C<Caution:>
We need to convert charset of the specified file in some language.
For example, Japanese message is ISO-2022-JP but programs love euc-jp
since it is easy to use euc-jp.
=cut
# Descriptions: expand $xxx variables in template (e.g. $help_file).
# 1. in Japanese case, convert kanji code: iso-2022-jp -> euc
# 2. expand variables: $ml_name -> elena
# 3. back kanji code: euc -> iso-2022-jp
# 4. return the new created template
# Arguments: $self $filename_string $args
# Side Effects: none
# Return Value: a new filepath (string) to be prepared
sub prepare_file_to_return
{
my ($curproc, $args) = @_;
my $config = $curproc->{ config };
my $tmp_dir = $config->{ tmp_dir };
my $tmpf = "$tmp_dir/$$";
my $src_file = $args->{ src };
my $charset_out = $args->{ charset };
-d $tmp_dir || mkdir $tmp_dir;
use FileHandle;
my $rh = new FileHandle $src_file;
my $wh = new FileHandle "> $tmpf";
use FML::Language::ISO2022JP qw(STR2JIS);
if (defined($rh) && defined($wh)) {
while (<$rh>) {
if (/\$/) { $config->expand_variable_in_buffer(\$_, $args);}
$wh->print(STR2JIS($_));
}
close($wh);
close($rh);
}
return (-s $tmpf ? $tmpf : undef);
}
=head1 MISCELLANEOUS METHODS
=head2 C<load_module($args, $module)>
load model dependent module.
return the object for C<$module>.
=cut
sub load_module
{
my ($curproc, $args, $pkg) = @_;
# fake use() to do "use FML::Ticket::$model;"
eval qq{ require $pkg; $pkg->import();};
unless ($@) {
return $pkg->new($curproc, $args);
}
else {
Log($@);
}
}
=head1 AUTHOR
Ken'ichi Fukamachi
=head1 COPYRIGHT
Copyright (C) 2001 Ken'ichi Fukamachi
All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.
=head1 HISTORY
FML::Process::Kernel appeared in fml5 mailing list driver package.
See C<http://www.fml.org/> for more details.
=cut
1;
|