/usr/share/perl5/Unix/ConfigFile.pm is in libunix-configfile-perl 0.6-1.
This file is owned by root:root, with mode 0o644.
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 | package Unix::ConfigFile;
# $Id: ConfigFile.pm,v 1.6 2000/05/02 15:49:19 ssnodgra Exp $
use 5.004;
use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $LOCKEXT);
use Carp;
use IO::File;
use Fcntl qw(:flock);
use Text::Tabs;
require Exporter;
@ISA = qw(Exporter);
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
@EXPORT = qw(
);
$VERSION = '0.06';
# Package variables
my $SALTCHARS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789/.";
# Preloaded methods go here.
# Create a new ConfigFile (or, more likely, a ConfigFile subclass) object.
# Opens the specified file and calls the read method (which will be located
# in the subclass package) to initialize the object data structures
sub new {
my ($pkg, $filename, %opt) = @_;
# Initialize the object reference
my $this = {
filename => $filename,
handle => undef,
locked => 0,
lockfh => undef,
lockfile => "$filename.lock",
locking => "dotlock",
mode => "r+",
seq => [ ]
};
bless $this, $pkg;
# Set options
$this->lockfile($opt{lockfile}) if defined $opt{lockfile};
$this->locking($opt{locking}) if defined $opt{locking};
$this->mode($opt{mode}) if defined $opt{mode};
# Get a filehandle
my $fh = new IO::File $this->filename, $this->mode;
return undef unless defined($fh);
$this->fh($fh);
# Do file locking - this must happen before read is called or we could
# end up with stale data in memory
if ($this->mode eq "r") {
$this->lock("shared") or return undef;
}
else {
$this->lock() or return undef;
}
# Initialize object structure from the file
if (exists $opt{readopts}) {
$this->read($this->fh, $opt{readopts}) or return undef;
}
else {
$this->read($this->fh) or return undef;
}
return $this;
}
# Commit in-memory changes to disk
sub commit {
my ($this, %opt) = @_;
return 0 if $this->mode eq "r";
my $tempname = $this->filename . ".tmp." . $$;
my $fh = new IO::File ">$tempname" or return 0;
my ($mode, $uid, $gid) = (stat $this->fh)[2,4,5];
chown $uid, $gid, $tempname;
chmod $mode, $tempname;
if (exists $opt{writeopts}) {
$this->write($fh, $opt{writeopts}) or return 0;
}
else {
$this->write($fh) or return 0;
}
undef $fh;
if (defined $opt{backup}) {
rename $this->filename, $this->filename . $opt{backup};
}
return rename $tempname, $this->filename;
}
# This method is absolutely necessary to prevent leftover lock files
sub DESTROY {
my $this = shift;
$this->unlock() or croak "Can't unlock file: $!";
$this->fh->close();
}
# Filename accessor
sub filename {
my $this = shift;
@_ ? $this->{filename} = shift : $this->{filename};
}
# Filehandle accessor
sub fh {
my $this = shift;
@_ ? $this->{handle} = shift : $this->{handle};
}
# Locking method accessor
sub locking {
my $this = shift;
return $this->{locking} unless @_;
my $lockmethod = shift;
return undef unless grep { $lockmethod eq $_ } qw(flock dotlock none);
$this->{locking} = $lockmethod;
}
# Lock filehandle accessor
sub lockfh {
my $this = shift;
@_ ? $this->{lockfh} = shift : $this->{lockfh};
}
# Lock file name accessor
sub lockfile {
my $this = shift;
@_ ? $this->{lockfile} = shift : $this->{lockfile};
}
# Mode accessor
sub mode {
my $this = shift;
return $this->{mode} unless @_;
my $mode = shift;
return undef unless grep { $mode eq $_ } qw(r r+ w);
$this->{mode} = $mode;
}
# Obtain a lock on the file. You can pass "shared" to request a shared lock;
# the default is exclusive. This function is somewhat inconsistent at the
# moment since it will block with the flock method but return an error if the
# dotlock method fails.
sub lock {
my $this = shift;
return 1 if ($this->locking eq "none");
return 0 if $this->{locked};
if ($this->locking eq "flock") {
@_ ? flock $this->fh, LOCK_SH : flock $this->fh, LOCK_EX;
}
elsif ($this->locking eq "dotlock") {
# We only support exclusive locks with dotlock
my $fh = new IO::File $this->lockfile, O_CREAT|O_EXCL|O_RDWR;
return 0 unless defined($fh);
$this->lockfh($fh);
}
$this->{locked} = 1;
}
# Unlock the file
sub unlock {
my $this = shift;
# NOTE: Originally I wasn't unlinking the lock file unless the lock
# filehandle was defined. This led to the rather unexpected discovery
# the Perl would sometimes destroy the filehandle before destroying
# the object during program shutdown. Thus, we now check if locked
# is set, which happens only if a lock is successfully acquired.
# This also prevents us from unlinking someone else's lock file.
return 1 if ($this->locking eq "none");
return 0 unless $this->{locked};
$this->{locked} = 0;
if ($this->locking eq "flock") {
flock $this->fh, LOCK_UN;
return 1;
}
elsif ($this->locking eq "dotlock") {
$this->lockfh->close() if defined($this->lockfh);
my $result = unlink $this->lockfile;
return ($result == 1);
}
}
# Encrypts a plaintext password with a random salt
# This is provided for use with the subclasses
sub encpass {
my ($this, $pass) = @_;
my $salt = substr($SALTCHARS, int(rand(length($SALTCHARS))), 1) .
substr($SALTCHARS, int(rand(length($SALTCHARS))), 1);
crypt($pass, $salt);
}
# Return the file sequence
sub sequence {
my $this = shift;
return @{$this->{seq}};
}
# Append information to the file sequence
sub seq_append {
my $this = shift;
push @{$this->{seq}}, @_;
}
# Insert information into the file sequence before the given data
sub seq_insert {
my $this = shift;
my $data = shift;
for (my $i = 0; $i < @{$this->{seq}}; $i++) {
if ($this->{seq}[$i] eq $data) {
splice @{$this->{seq}}, $i, 0, @_;
return 1;
}
}
return 0;
}
# Remove the specified data from the file sequence
sub seq_remove {
my ($this, $data) = @_;
for (my $i = 0; $i < @{$this->{seq}}; $i++) {
if ($this->{seq}[$i] eq $data) {
splice @{$this->{seq}}, $i, 1;
return 1;
}
}
return 0;
}
# Joinwrap is a utility function that happens to be useful in several modules
# This thing was a bitch to get working 100% right, so use caution. :-)
sub joinwrap {
my ($this, $linelen, $head, $indent, $delim, $tail, @list) = @_;
my $result = "";
my $line = 0;
$linelen -= length(expand($tail));
while (@list) {
my $curline = $result ? $indent : $head;
$curline =~ s/%n/$line/;
my $appended = 0;
while (@list && length(expand($curline . $delim . $list[0])) <= $linelen) {
$curline .= $delim if $appended;
$curline .= shift @list;
$appended++;
}
# Special case - element is longer than linelen
$curline .= shift @list unless $appended;
# Append newline if this isn't the first line
$result .= "\n" if $result;
$result .= $curline;
# Append tail unless this is the last line
$result .= $tail if @list;
$line++;
}
$result ? $result : $head;
}
# Autoload methods go after =cut, and are processed by the autosplit program.
1;
__END__
=head1 NAME
Unix::ConfigFile - Perl interface to various Unix configuration files
=head1 SYNOPSIS
use Unix::ConfigFile;
=head1 DESCRIPTION
The Unix::ConfigFile module provides a base class from which the other
Unix::*File modules are derived. It provides some basic facilities like file
opening, locking, and closing. You do not need to use this module directly
unless you are developing a derived module for an unsupported configuration
file. However, some of the methods documented here are intended for public
use by users of Unix::ConfigFile submodules, so you may find this
documentation useful even if you are not developing your own module.
The ConfigFile object also provides a sequencing API for modules that wish to
preserve the order of the configuration file they read and write. The
sequencer maintains a list of arbitrary data that a submodule may append,
insert, and delete from. Use of the sequencer is completely optional.
A module that subclasses from Unix::ConfigFile must, at a minimum, provide two
methods, called "read" and "write". Both methods will receive a filehandle as
a parameter (besides the regular object parameter). The read method is called
after the file is opened. It is expected to read in the configuration file
and initialize the subclass-specific data structures associated with the
object. The write method is called when an object is committed and is
expected to write out the new configuration to the supplied filehandle.
=head1 USER METHODS
=head2 commit( [%OPTIONS] )
This writes any changes you have made to the object back to disk. If you do
not call commit, none of your changes will be reflected in the file you are
modifying. Commit may not be called on files opened in read-only mode. There
are some optional parameters that may be provided; these are passed in the form
of key => value pairs. The "backup" option allows you to specify a file
extension that will be used to save a backup of the original file. The
"writeopts" option passes module-specific options through to the write method.
It will accept any scalar for its value; typically this will be a list or hash
reference. Commit returns 1 on success and 0 on failure.
=head2 encpass( PASSWORD )
This method encrypts the supplied plaintext password using a random salt and
returns the encrypted password. Note that this method does not actually make
any use of the object that it is invoked on, and could be called as a class
method.
=head2 new( FILENAME [,%OPTIONS] )
The new method constructs a new ConfigFile (or subclass) object using the
specified FILENAME. There are several optional parameters that may be
specified. Options must be passed as keyed pairs in the form of option =>
value. Valid options are "locking", "lockfile", "mode", and "readopts". The
locking option determines what style of file locking is used; available styles
are "dotlock", "flock", and "none". The default locking style is "dotlock".
The "none" locking style causes no locking to be done, and all lock and unlock
requests will return success. The lockfile option can be used to specify the
lock filename used with dotlocking. The default is "FILENAME.lock", where
FILENAME is the name of the file being opened. The mode option allows the
file open mode to be specified. The default mode is "r+" (read/write), but
"r" and "w" are accepted as well. Finally, the readopts option allows
module-specific options to be passed through to the read method. It will
accept any scalar for its value; typically this will be a list or hash
reference.
=head1 DEVELOPER METHODS
=head2 joinwrap( LENGTH, HEAD, INDENT, DELIM, TAIL, @LIST )
This is a utility function that may be called as an object or class method.
As the name suggests, this method is basically a version of the join function
that incorporates line wrapping. The specified list will be joined together,
with each list element separated by the specified delimiter. The first line
of output will be prefixed with the HEAD parameter. If a line exceeds the
length parameter, output is wrapped to the next line and the INDENT parameter
is used to prefix the line. In addition, the TAIL parameter will be added to
the end of every line generated except the final one. There is one case where
the resulting string can exceed the specified line length - if a single list
element, plus HEAD or INDENT, exceeds that length. One final feature is that
if the HEAD or INDENT parameters contain the text '%n', it will be replaced
with the current line number, beginning at 0.
=head2 sequence( )
Returns the current sequence list associated with the object. This is a list
of arbitrary data maintained by a ConfigFile submodule. The ConfigFile module
does not care what is contained in the list.
=head2 seq_append( @DATA )
Appends that specified data to the end of the sequence list.
=head2 seq_insert( KEY, @DATA )
Inserts the data into the sequence list before the data that matches the
specified key.
=head2 seq_remove( KEY )
Removes the data from the sequence list that matches the specified key.
=head1 AUTHOR
Steve Snodgrass, ssnodgra@fore.com
=head1 SEE ALSO
Unix::AliasFile, Unix::AutomountFile, Unix::GroupFile, Unix::PasswdFile
=cut
|