Added a check that ensures that the configuration file is not readable or writable by anyone except the user running the script. This closes a potential security hole on shared machines. Changed the umask during the creation of the configuration file so that the permission bits are set that way too. Added a comment to clarify the superficially recursive nature of the configuration database and the configuration data source.

This commit is contained in:
ian%hixie.ch 2002-02-01 06:36:27 +00:00
Родитель 2787ed1409
Коммит 3a41393898
1 изменённых файлов: 15 добавлений и 0 удалений

Просмотреть файл

@ -38,6 +38,9 @@ sub init {
my($app) = @_;
$self->SUPER::init(@_);
require Data::Dumper; import Data::Dumper; # DEPENDENCY
# This next line isn't recursive thinking. The configuration
# details for all the various databases, including this one, come
# from the dataSource.configuration data source.
$self->{'_FILENAME'} = $app->getService('dataSource.configuration')->configurationFilename;
}
@ -143,6 +146,7 @@ sub doRead {
my $self = shift;
my($filename) = @_;
if (-e $filename) {
$self->assert($self->doPermissionsCheck($filename), 1, "Configuration file '$filename' has the wrong permissions: it has to be only accessible by this user since it can contain passwords. Running without configuration file");
local *FILE; # ugh
$self->assert(open(FILE, "<$filename"), 1, "Could not open configuration file '$filename' for reading: $!");
local $/ = undef; # slurp entire file (no record delimiter)
@ -159,7 +163,18 @@ sub doWrite {
my $self = shift;
my($filename, $contents) = @_;
local *FILE; # ugh
my $umask = umask(0077); # XXX this might be UNIX-specific # XXX THIS IS PLATFORM SPECIFIC CODE XXX
$self->assert(open(FILE, ">$filename"), 1, "Could not open configuration file '$filename' for writing: $!");
$self->assert(FILE->print($contents), 1, "Could not dump settings to configuration file '$filename': $!");
$self->assert(close(FILE), 1, "Could not close configuration file '$filename': $!");
umask($umask); # XXX this might be UNIX-specific # XXX THIS IS PLATFORM SPECIFIC CODE XXX
}
sub doPermissionsCheck {
my $self = shift;
my($filename) = @_;
# XXX this might be UNIX-specific # XXX THIS IS PLATFORM SPECIFIC CODE XXX
my($dev, $ino, $mode, $nlink, $uid, $gid, $rdev, $size, $atime, $mtime, $ctime, $blksize, $blocks) = stat($filename);
return (($mode & 07077) == 0 and # checks that the permissions are at most -xrw------
$uid == $>); # checks that the file's owner is the same as the user running the script
}