forked from interchange/interchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFile.pm
768 lines (685 loc) · 18.9 KB
/
File.pm
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
# Vend::File - Interchange file functions
#
# Copyright (C) 2002-2009 Interchange Development Group
# Copyright (C) 1996-2002 Red Hat, Inc.
#
# This program was originally based on Vend 0.2 and 0.3
# Copyright 1995 by Andrew M. Wilcox <[email protected]>
#
# 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., 51 Franklin St, Fifth Floor, Boston,
# MA 02110-1301 USA.
package Vend::File;
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(
absolute_or_relative
allowed_file
catfile
exists_filename
file_allow
file_modification_time
file_name_is_absolute
get_filename
lockfile
log_file_violation
readfile
readfile_db
set_lock_type
unlockfile
writefile
);
use strict;
use Config;
use Fcntl;
use Errno;
my $PERLQQ = 0x0100; # from Encode(3perl)
unless( $ENV{MINIVEND_DISABLE_UTF8} ) {
require Encode;
import Encode qw( is_utf8 );
$PERLQQ = Encode::PERLQQ();
}
use Vend::Util;
use File::Path;
use File::Copy;
use subs qw(logError logGlobal);
use vars qw($VERSION @EXPORT @EXPORT_OK $errstr);
$VERSION = '2.33';
sub writefile {
my($file, $data, $opt) = @_;
my($encoding, $fallback);
if ($::Variable->{MV_UTF8} || $Global::Variable->{MV_UTF8}) {
$encoding = $opt->{encoding} ||= 'utf-8';
undef $encoding if $encoding eq 'raw';
$fallback = $opt->{fallback};
$fallback = $PERLQQ unless defined $fallback;
}
$file = ">>$file" unless $file =~ /^[|>]/;
if (ref $opt and $opt->{umask}) {
$opt->{umask} = umask oct($opt->{umask});
}
eval {
unless($file =~ s/^[|]\s*//) {
if (ref $opt and $opt->{auto_create_dir}) {
my $dir = $file;
$dir =~ s/>+//;
## Need to make this OS-independent, requires File::Spec support
$dir =~ s:[\r\n]::g; # Just in case
$dir =~ s:(.*)/.*:$1: or $dir = '';
if($dir and ! -d $dir) {
eval{
File::Path::mkpath($dir);
};
die "mkpath\n" unless -d $dir;
}
}
# We have checked for beginning > or | previously
open(MVLOGDATA, $file) or die "open\n";
if ($encoding) {
local $PerlIO::encoding::fallback = $fallback;
binmode(MVLOGDATA, ":encoding($encoding)");
}
lockfile(\*MVLOGDATA, 1, 1) or die "lock\n";
seek(MVLOGDATA, 0, 2) or die "seek\n";
if(ref $data) {
print(MVLOGDATA $$data) or die "write to\n";
}
else {
print(MVLOGDATA $data) or die "write to\n";
}
unlockfile(\*MVLOGDATA) or die "unlock\n";
}
else {
my (@args) = grep /\S/, Text::ParseWords::shellwords($file);
open(MVLOGDATA, "|-") || exec @args;
if ($encoding) {
local $PerlIO::encoding::fallback = $fallback;
binmode(MVLOGDATA, ":encoding($encoding)");
}
if(ref $data) {
print(MVLOGDATA $$data) or die "pipe to\n";
}
else {
print(MVLOGDATA $data) or die "pipe to\n";
}
}
close(MVLOGDATA) or die "close\n";
};
my $status = 1;
if ($@) {
::logError ("Could not %s file '%s': %s\nto write this data:\n%s",
$@,
$file,
$!,
substr(ref($data) ? $$data : $data,0,120),
);
$status = 0;
}
if (ref $opt and defined $opt->{umask}) {
$opt->{umask} = umask oct($opt->{umask});
}
return $status;
}
sub file_modification_time {
my ($fn, $tolerate) = @_;
my @s = stat($fn) or ($tolerate and return 0) or die "Can't stat '$fn': $!\n";
return $s[9];
}
sub readfile_db {
my ($name) = @_;
return unless $Vend::Cfg->{FileDatabase};
my ($tab, $col) = split /:+/, $Vend::Cfg->{FileDatabase};
my $db = $Vend::Interpolate::Db{$tab} || ::database_exists_ref($tab)
or return undef;
#::logDebug("tab=$tab exists, db=$db");
# I guess this is the best test
if($col) {
return undef unless $db->column_exists($col);
}
elsif ( $col = $Global::Variable->{LANG} and $db->column_exists($col) ) {
#do nothing
}
else {
$col = 'default';
return undef unless $db->column_exists($col);
}
#::logDebug("col=$col exists, db=$db");
return undef unless $db->record_exists($name);
#::logDebug("ifile=$name exists, db=$db");
return $db->field($name, $col);
}
# Reads in an arbitrary file. Returns the entire contents,
# or undef if the file could not be read.
# Careful, needs the full path, or will be read relative to
# VendRoot..and will return binary. Should be tested by
# the user.
#
# To ensure security in multiple catalog setups, leading /
# is not allowed if $Global::NoAbsolute) is true and the file
# is not part of the TemplateDir, VendRoot, or is owned by the
# defined CatalogUser.
# If catalog FileDatabase is enabled and there are no contents, we can retrieve
# the file from the database.
sub readfile {
my($ifile, $no, $loc, $opt) = @_;
my($contents,$encoding,$fallback);
local($/);
$opt ||= {};
if ($::Variable->{MV_UTF8} || $Global::Variable->{MV_UTF8}) {
$encoding = $opt->{encoding} ||= 'utf-8';
$fallback = $opt->{fallback};
$fallback = $PERLQQ unless defined $fallback;
undef $encoding if $encoding eq 'raw';
}
unless(allowed_file($ifile)) {
log_file_violation($ifile);
return undef;
}
my $file;
if (file_name_is_absolute($ifile) and -f $ifile) {
$file = $ifile;
}
else {
for (".", @{$Vend::Cfg->{TemplateDir} || []}, @{$Global::TemplateDir || []}) {
my $candidate = "$_/$ifile";
log_file_violation($candidate), next if ! allowed_file($candidate);
next if ! -f $candidate;
$file = $candidate;
last;
}
}
if(! $file) {
$contents = readfile_db($ifile);
return undef unless defined $contents;
}
else {
return undef unless open(READIN, "< $file");
$Global::Variable->{MV_FILE} = $file;
binmode(READIN) if $Global::Windows;
if ($encoding) {
local $PerlIO::encoding::fallback = $PERLQQ;
binmode(READIN, ":encoding($encoding)");
}
undef $/;
$contents = <READIN>;
close(READIN);
#::logDebug("done reading contents");
# at this point, $contents should be either raw if encoding is
# not specified or PerlUnicode.
}
if (
$Vend::Cfg->{Locale}
and
(defined $loc ? $loc : $Vend::Cfg->{Locale}->{readfile} )
)
{
Vend::Util::parse_locale(\$contents);
}
return $contents;
}
### flock locking
# sys/file.h:
my $flock_LOCK_SH = 1; # Shared lock
my $flock_LOCK_EX = 2; # Exclusive lock
my $flock_LOCK_NB = 4; # Don't block when locking
my $flock_LOCK_UN = 8; # Unlock
sub flock_lock {
my ($fh, $excl, $wait) = @_;
my $flag = $excl ? $flock_LOCK_EX : $flock_LOCK_SH;
if ($wait) {
my $trylimit = $::Limit->{file_lock_retries} || 5;
my $failedcount = 0;
while (
! flock($fh, $flag)
and
$failedcount < $trylimit
)
{
$failedcount++;
select(undef,undef,undef,0.05 * $failedcount);
}
die "Could not lock file after $trylimit tries: $!\n" if ($failedcount == $trylimit);
return 1;
}
else {
if (! flock($fh, $flag | $flock_LOCK_NB)) {
if ($!{EAGAIN} or $!{EWOULDBLOCK}) {
return 0;
}
else {
die "Could not lock file: $!\n";
}
}
return 1;
}
}
sub flock_unlock {
my ($fh) = @_;
flock($fh, $flock_LOCK_UN) or die "Could not unlock file: $!\n";
}
sub fcntl_lock {
my ($fh, $excl, $wait) = @_;
my $flag = $excl ? F_WRLCK : F_RDLCK;
my $op = $wait ? F_SETLKW : F_SETLK;
my $struct = pack('sslli', $flag, 0, 0, 0, $$);
if ($wait) {
fcntl($fh, $op, $struct) or die "Could not fcntl_lock file: $!\n";
return 1;
}
else {
if (fcntl($fh, $op, $struct) < 0) {
if ($!{EAGAIN} or $!{EWOULDBLOCK}) {
return 0;
}
else {
die "Could not fcntl_lock file: $!\n";
}
}
return 1;
}
}
sub fcntl_unlock {
my ($fh) = @_;
my $struct = pack('sslli', F_UNLCK, 0, 0, 0, $$);
if (fcntl($fh, F_SETLK, $struct) < 0) {
if ($!{EAGAIN} or $!{EWOULDBLOCK}) {
return 0;
}
else {
die "Could not un-fcntl_lock file: $!\n";
}
}
return 1;
}
my $lock_function = \&flock_lock;
my $unlock_function = \&flock_unlock;
sub set_lock_type {
if ($Global::LockType eq 'none') {
::logDebug("using NO locking");
$lock_function = sub {1};
$unlock_function = sub {1};
}
elsif ($Global::LockType =~ /fcntl/i) {
::logDebug("using fcntl(2) locking");
$lock_function = \&fcntl_lock;
$unlock_function = \&fcntl_unlock;
}
else {
$lock_function = \&flock_lock;
$unlock_function = \&flock_unlock;
}
return; # VOID
}
sub lockfile {
&$lock_function(@_);
}
sub unlockfile {
&$unlock_function(@_);
}
### Still necessary, sad to say.....
if($Global::Windows) {
set_lock_type('none');
}
elsif($^O =~ /hpux/) {
set_lock_type('fcntl');
}
# Return a quasi-hashed directory/file combo, creating if necessary
sub exists_filename {
my ($file,$levels,$chars, $dir) = @_;
my $i;
$levels = 1 unless defined $levels;
$chars = 1 unless defined $chars;
$dir = $Vend::Cfg->{ScratchDir} unless $dir;
for($i = 0; $i < $levels; $i++) {
$dir .= "/";
$dir .= substr($file, $i * $chars, $chars);
return 0 unless -d $dir;
}
return -f "$dir/$file" ? 1 : 0;
}
# Return a quasi-hashed directory/file combo, creating if necessary
sub get_filename {
my ($file,$levels,$chars, $dir) = @_;
my $i;
$levels = 1 unless defined $levels;
$chars = 1 unless defined $chars;
# Accomodate PermanentDir not existing in pre-5.3.1 catalogs
# Block is better than always doing -d test
if(! $dir) {
$dir = $Vend::Cfg->{ScratchDir};
}
else {
mkdir $dir, 0777 unless -d $dir;
}
for($i = 0; $i < $levels; $i++) {
$dir .= "/";
$dir .= substr($file, $i * $chars, $chars);
mkdir $dir, 0777 unless -d $dir;
}
die "Couldn't make directory $dir (or parents): $!\n"
unless -d $dir;
return "$dir/$file";
}
# These were stolen from File::Spec
# Can't use that because it INSISTS on object
# calls without returning a blessed object
my $abspat = $^O =~ /win32/i ? qr{^([a-zA-Z]:)?[\\/]} : qr{^/};
my $relpat = qr{\.\.[\\/]};
sub file_name_is_absolute {
my($file) = @_;
$file =~ $abspat;
}
sub absolute_or_relative {
my($file) = @_;
$file =~ $abspat or $file =~ $relpat;
}
sub make_absolute_file {
my ($path, $global) = @_;
# empty string stays empty
return unless length($path);
# is file already an absolute path?
return $path if $path =~ $abspat;
# use global or catalog root?
my $prefix = ($global ? $Global::VendRoot : $Vend::Cfg->{VendRoot});
return catfile($prefix, $path);
}
sub win_catfile {
my $file = pop @_;
return $file unless @_;
my $dir = catdir(@_);
$dir =~ s/(\\\.)$//;
$dir .= "\\" unless substr($dir,length($dir)-1,1) eq "\\";
return $dir.$file;
}
sub unix_catfile {
my $file = pop @_;
return $file unless @_;
my $dir = catdir(@_);
for ($dir) {
$_ .= "/" unless substr($_,length($_)-1,1) eq "/";
}
return $dir.$file;
}
sub unix_path {
my $path_sep = ":";
my $path = $ENV{PATH};
my @path = split $path_sep, $path;
foreach(@path) { $_ = '.' if $_ eq '' }
@path;
}
sub win_path {
local $^W = 1;
my $path = $ENV{PATH} || $ENV{Path} || $ENV{'path'};
my @path = split(';',$path);
foreach(@path) { $_ = '.' if $_ eq '' }
@path;
}
sub win_catdir {
my @args = @_;
for (@args) {
# append a slash to each argument unless it has one there
$_ .= "\\" if $_ eq '' or substr($_,-1) ne "\\";
}
my $result = canonpath(join('', @args));
$result;
}
sub win_canonpath {
my($path) = @_;
$path =~ s/^([a-z]:)/\u$1/;
$path =~ s|/|\\|g;
$path =~ s|\\+|\\|g ; # xx////xx -> xx/xx
$path =~ s|(\\\.)+\\|\\|g ; # xx/././xx -> xx/xx
$path =~ s|^(\.\\)+|| unless $path eq ".\\"; # ./xx -> xx
$path =~ s|\\$||
unless $path =~ m#^([a-z]:)?\\#; # xx/ -> xx
$path .= '.' if $path =~ m#\\$#;
$path;
}
sub unix_canonpath {
my($path) = @_;
$path =~ s|/+|/|g ; # xx////xx -> xx/xx
$path =~ s|(/\.)+/|/|g ; # xx/././xx -> xx/xx
$path =~ s|^(\./)+|| unless $path eq "./"; # ./xx -> xx
$path =~ s|/$|| unless $path eq "/"; # xx/ -> xx
$path;
}
sub unix_catdir {
my @args = @_;
for (@args) {
# append a slash to each argument unless it has one there
$_ .= "/" if $_ eq '' or substr($_,-1) ne "/";
}
my $result = join('', @args);
# remove a trailing slash unless we are root
substr($result,-1) = ""
if length($result) > 1 && substr($result,-1) eq "/";
$result;
}
my $catdir_routine;
my $canonpath_routine;
my $catfile_routine;
my $path_routine;
if($^O =~ /win32/i) {
$catdir_routine = \&win_catdir;
$catfile_routine = \&win_catfile;
$path_routine = \&win_path;
$canonpath_routine = \&win_canonpath;
}
else {
$catdir_routine = \&unix_catdir;
$catfile_routine = \&unix_catfile;
$path_routine = \&unix_path;
$canonpath_routine = \&unix_canonpath;
}
sub path {
return &{$path_routine}(@_);
}
sub catfile {
return &{$catfile_routine}(@_);
}
sub catdir {
return &{$catdir_routine}(@_);
}
sub canonpath {
return &{$canonpath_routine}(@_);
}
#print "catfile a b c --> " . catfile('a', 'b', 'c') . "\n";
#print "catdir a b c --> " . catdir('a', 'b', 'c') . "\n";
#print "canonpath a/b//../../c --> " . canonpath('a/b/../../c') . "\n";
#print "file_name_is_absolute a/b/c --> " . file_name_is_absolute('a/b/c') . "\n";
#print "file_name_is_absolute a:b/c --> " . file_name_is_absolute('a:b/c') . "\n";
#print "file_name_is_absolute /a/b/c --> " . file_name_is_absolute('/a/b/c') . "\n";
my %intrinsic = (
ic_super => sub { return 1 if $Vend::superuser; },
ic_admin => sub { return 1 if $Vend::admin; },
ic_logged => sub {
my ($fn, $checkpath, $write, $sub) = @_;
return 0 unless $Vend::username;
return 0 unless $Vend::Session->{logged_in};
return 0 if $sub and $Vend::login_table ne $sub;
return 1;
},
ic_session => sub {
my ($fn, $checkpath, $write, $sub, $compare) = @_;
my $false = $sub =~ s/^!\s*//;
my $status = length($compare)
? ($Vend::Session->{$sub} eq $compare)
: ($Vend::Session->{$sub});
return ! $false if $status;
return $false;
},
ic_scratch => sub {
my ($fn, $checkpath, $write, $sub, $compare) = @_;
my $false = $sub =~ s/^!\s*//;
my $status = defined $compare && length($compare)
? ($::Scratch->{$sub} eq $compare)
: ($::Scratch->{$sub});
return ! $false if $status;
return $false;
},
ic_userdb => sub {
my ($fn, $checkpath, $write, $profile, $sub, $mode) = @_;
return 0 unless $Vend::username;
return 0 unless $Vend::Session->{logged_in};
$profile ||= 'default';
$sub ||= 'file_acl';
my $u = new Vend::UserDB profile => $profile;
$mode ||= $write ? 'w' : 'r';
my $func = "check_$sub";
my %o = (
location => $fn,
mode => $mode,
);
return undef unless $u->can($func);
my $status = $u->$func( %o );
unless(defined $status) {
$o{location} = $checkpath;
$status = $u->$func( %o );
}
#::logDebug("status=$status back from userdb: " . ::uneval(\%o));
return $status;
},
);
sub _intrinsic {
my ($thing, $fn, $checkpath, $write) = @_;
$thing =~ s/^\s+//;
$thing =~ s/\s+$//;
my @checks = split /\s*;\s*/, $thing;
my $status = 1;
for(@checks) {
my ($check, @args) = split /:/, $_;
my $sub = $intrinsic{$check}
or do {
## $errstr is package global
$errstr = ::errmsg("Bad intrinsic check '%s', denying.", $_);
return undef;
};
unless( $sub->($fn, $checkpath, $write, @args) ) {
## $errstr is package global
$errstr = ::errmsg(
"Failed intrinsic check '%s'%s for %s, denying.",
$_,
$write ? " (write)" : '',
$fn,
);
$status = 0;
last;
}
}
return $status;
}
sub check_user_write {
my $fn = shift;
my $un = $Global::CatalogUser->{$Vend::Cat}
or return undef;
my ($mode,$own, $grown) = (stat($fn))[2,4,5];
return 0 unless defined $own;
my $uid = getpwnam($un);
return 1 if $uid eq $own and $mode & 0200;
return 0 unless $mode & 020;
my @members = split /\s+/, (getgrgid($grown))[3];
for(@members) {
return 1 if $un eq $_;
}
return 0;
}
sub check_user_read {
my $fn = shift;
my $un = $Global::CatalogUser->{$Vend::Cat}
or return undef;
my ($mode,$own, $grown) = (stat($fn))[2,4,5];
return 0 unless defined $own;
my $uid = getpwnam($un);
return 1 if $uid eq $own and $mode & 0400;
return 0 unless $mode & 040;
my @members = split /\s+/, (getgrgid($grown))[3];
for(@members) {
return 1 if $un eq $_;
}
return 0;
}
sub file_control {
my ($fn, $write, $global, @caller) = @_;
return 1 if $Vend::superuser and ! $global;
my $subref = $global ? $Global::FileControl : $Vend::Cfg->{FileControl};
my $f = $fn;
CHECKPATH: {
do {
if(ref($subref->{$f}) eq 'CODE') {
return $subref->{$f}->($fn, $f, $write, @caller);
}
elsif ($subref->{$f}) {
return _intrinsic($subref->{$f}, $fn, $f, $write);
}
} while $f =~ s{/[^/]*$}{};
}
return 1;
}
sub allowed_file {
my $fn = shift;
my $write = shift;
my $status = 1;
$Vend::File::errstr = '';
if( $Global::NoAbsolute
and
$fn !~ $Global::AllowedFileRegex->{$Vend::Cat}
and
absolute_or_relative($fn)
)
{
if($Vend::admin and ! $write and $fn =~ /^$Global::RunDir/ and $fn !~ $relpat) {
$status = 1;
}
else {
$status = $write ? check_user_write($fn) : check_user_read($fn);
}
}
if($status and $Global::FileControl) {
$status &= file_control($fn, $write, 1, caller(0))
or $Vend::File::errstr ||=
::errmsg(
"Denied %s access to %s by global FileControl.",
$write ? 'write' : 'read',
$fn,
);
}
if($status and $Vend::Cfg->{FileControl}) {
$status &= file_control($fn, $write, 0, caller(0))
or $Vend::File::errstr ||=
::errmsg(
"Denied %s access to %s by catalog FileControl.",
$write ? 'write' : 'read',
$fn,
);
}
#::logDebug("allowed_file check for $fn: $status");
return $status;
}
sub log_file_violation {
my ($file, $action) = @_;
my $msg;
unless ($msg = $Vend::File::errstr) {
if ($action) {
$msg = ::errmsg ("%s: Can't use file '%s' with NoAbsolute set",
$action, $file);
} else {
$msg = ::errmsg ("Can't use file '%s' with NoAbsolute set",
$file);
}
}
::logError($msg);
::logGlobal({ level => 'warning' }, $msg);
}
1;
__END__