/usr/share/perl5/File/Flock.pm is in libfile-flock-perl 2014.01-2.
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 | package File::Flock;
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(lock unlock lock_rename forget_locks);
use Carp;
use POSIX qw(EAGAIN EACCES EWOULDBLOCK ENOENT EEXIST O_EXCL O_CREAT O_RDWR);
use Fcntl qw(LOCK_SH LOCK_EX LOCK_NB LOCK_UN);
use IO::File;
use Data::Structure::Util qw(unbless);
use vars qw($VERSION $debug $av0debug);
BEGIN {
$VERSION = 2014.01;
$debug = 0;
$av0debug = 0;
}
use strict;
no strict qw(refs);
my %locks; # did we create the file?
my %lockHandle;
my %shared;
my %pid;
my %rm;
sub new_flock {
my ($pkg, $file, $shared, $nonblocking) = @_;
lock_flock($file, $shared, $nonblocking) or return undef;
return bless [$file], $pkg;
}
sub DESTROY
{
my ($this) = @_;
unlock_flock($this->[0]);
}
sub lock_flock
{
my ($file, $shared, $nonblocking) = @_;
my $f = new IO::File;
my $created = 0;
my $previous = exists $locks{$file};
# the file may be springing in and out of existence...
OPEN:
for(;;) {
if (-e $file) {
unless (sysopen($f, $file, O_RDWR)) {
redo OPEN if $! == ENOENT;
croak "open $file: $!";
}
} else {
unless (sysopen($f, $file, O_CREAT|O_EXCL|O_RDWR)) {
redo OPEN if $! == EEXIST;
croak "open >$file: $!";
}
print STDERR " {$$ " if $debug; # }
$created = 1;
}
last;
}
$locks{$file} = $created || $locks{$file} || 0;
$shared{$file} = $shared;
$pid{$file} = $$;
$lockHandle{$file} = $f;
my $flags;
$flags = $shared ? LOCK_SH : LOCK_EX;
$flags |= LOCK_NB
if $nonblocking;
local($0) = "$0 - locking $file" if $av0debug && ! $nonblocking;
my $r = flock($f, $flags);
print STDERR " ($$ " if $debug and $r;
if ($r) {
# let's check to make sure the file wasn't
# removed on us!
my $ifile = (stat($file))[1];
my $ihandle;
eval { $ihandle = (stat($f))[1] };
croak $@ if $@;
return 1 if defined $ifile
and defined $ihandle
and $ifile == $ihandle;
# oh well, try again
flock($f, LOCK_UN);
close($f);
return lock_flock($file);
}
return 1 if $r;
if ($nonblocking and
(($! == EAGAIN)
or ($! == EACCES)
or ($! == EWOULDBLOCK)))
{
if (! $previous) {
delete $locks{$file};
delete $lockHandle{$file};
delete $shared{$file};
delete $pid{$file};
}
if ($created) {
# oops, a bad thing just happened.
# We don't want to block, but we made the file.
&background_remove($f, $file);
}
close($f);
return 0;
}
croak "flock $f $flags: $!";
}
#
# get a lock on a file and remove it if it's empty. This is to
# remove files that were created just so that they could be locked.
#
# To do this without blocking, defer any files that are locked to the
# the END block.
#
sub background_remove
{
my ($f, $file) = @_;
if (flock($f, LOCK_EX|LOCK_NB)) {
unlink($file)
if -s $file == 0;
flock($f, LOCK_UN);
return 1;
} else {
$rm{$file} = 1
unless exists $rm{$file};
return 0;
}
}
sub unlock_flock
{
my ($file) = @_;
if (ref $file eq 'File::Flock') {
unbless $file; # avoid destructor later
$file = $file->[0];
}
croak "no lock on $file" unless exists $locks{$file};
my $created = $locks{$file};
my $unlocked = 0;
my $size = -s $file;
if ($created && defined($size) && $size == 0) {
if ($shared{$file}) {
$unlocked =
&background_remove($lockHandle{$file}, $file);
} else {
# {
print STDERR " $$} " if $debug;
unlink($file)
or croak "unlink $file: $!";
}
}
delete $locks{$file};
delete $pid{$file};
my $f = $lockHandle{$file};
delete $lockHandle{$file};
return 0 unless defined $f;
print STDERR " $$) " if $debug;
$unlocked or flock($f, LOCK_UN)
or croak "flock $file UN: $!";
close($f);
return 1;
}
sub lock_rename_flock
{
croak "arguments to lock_rename" unless @_ == 2;
my ($oldfile, $newfile) = @_;
if (ref $oldfile eq 'File::Flock') {
my $obj = $oldfile;
$oldfile = $obj->[0];
$obj->[0] = $newfile;
}
if (exists $locks{$newfile}) {
unlock_flock($newfile);
}
delete $locks{$newfile};
delete $shared{$newfile};
delete $pid{$newfile};
delete $lockHandle{$newfile};
delete $rm{$newfile};
$locks{$newfile} = $locks{$oldfile} if exists $locks{$oldfile};
$shared{$newfile} = $shared{$oldfile} if exists $shared{$oldfile};
$pid{$newfile} = $pid{$oldfile} if exists $pid{$oldfile};
$lockHandle{$newfile} = $lockHandle{$oldfile} if exists $lockHandle{$oldfile};
$rm{$newfile} = $rm{$oldfile} if exists $rm{$oldfile};
delete $locks{$oldfile};
delete $shared{$oldfile};
delete $pid{$oldfile};
delete $lockHandle{$oldfile};
delete $rm{$oldfile};
return 1;
}
sub forget_locks_flock
{
%locks = ();
%shared = ();
%pid = ();
%lockHandle = ();
%rm = ();
}
#
# Unlock any files that are still locked and remove any files
# that were created just so that they could be locked.
#
sub final_cleanup_flock
{
my $f;
for $f (keys %locks) {
unlock_flock($f)
if $pid{$f} == $$;
}
my %bgrm;
for my $file (keys %rm) {
my $f = new IO::File;
if (sysopen($f, $file, O_RDWR)) {
if (flock($f, LOCK_EX|LOCK_NB)) {
unlink($file)
if -s $file == 0;
flock($f, LOCK_UN);
} else {
$bgrm{$file} = 1;
}
close($f);
}
}
if (%bgrm) {
my $ppid = fork;
croak "cannot fork" unless defined $ppid;
my $pppid = $$;
my $b0 = $0;
$0 = "$b0: waiting for child ($ppid) to fork()";
unless ($ppid) {
my $pid = fork;
croak "cannot fork" unless defined $pid;
unless ($pid) {
for my $file (keys %bgrm) {
my $f = new IO::File;
if (sysopen($f, $file, O_RDWR)) {
if (flock($f, LOCK_EX)) {
unlink($file)
if -s $file == 0;
flock($f, LOCK_UN);
}
close($f);
}
}
print STDERR " $pppid] $pppid)" if $debug;
}
kill(9, $$); # exit w/o END or anything else
}
waitpid($ppid, 0);
kill(9, $$); # exit w/o END or anything else
}
%locks = ();
%lockHandle = ();
%shared = ();
%pid = ();
%rm = ();
%bgrm = ();
}
END {
final_cleanup();
}
BEGIN {
if ($File::Flock::Forking::SubprocessEnabled) {
require File::Flock::Subprocess;
*new = *File::Flock::Subprocess::new;
*final_cleanup = *File::Flock::Subprocess::final_cleanup;
*lock = *File::Flock::Subprocess::lock;
*unlock = *File::Flock::Subprocess::unlock;
*lock_rename = *File::Flock::Subprocess::lock_rename;
*forget_locks = *File::Flock::Subprocess::forget_locks;
} else {
*new = *new_flock;
*final_cleanup = *final_cleanup_flock;
*lock = *lock_flock;
*unlock = *unlock_flock;
*lock_rename = *lock_rename_flock;
*forget_locks = *forget_locks_flock;
}
}
1;
__END__
=head1 NAME
File::Flock - file locking with flock
=head1 SYNOPSIS
use File::Flock;
lock($filename);
lock($filename, 'shared');
lock($filename, undef, 'nonblocking');
lock($filename, 'shared', 'nonblocking');
unlock($filename);
lock_rename($oldfilename, $newfilename)
my $lock = new File::Flock '/somefile';
$lock->unlock();
$lock->lock_rename('/new/file');
forget_locks();
=head1 DESCRIPTION
Lock files using the flock() call. If the file to be locked does not
exist, then the file is created. If the file was created then it will
be removed when it is unlocked assuming it's still an empty file.
Locks can be created by new'ing a B<File::Flock> object. Such locks
are automatically removed when the object goes out of scope. The
B<unlock()> method may also be used.
B<lock_rename()> is used to tell File::Flock when a file has been
renamed (and thus the internal locking data that is stored based
on the filename should be moved to a new name). B<unlock()> the
new name rather than the original name.
Locks are released on process exit when the process that created the
lock exits. Subprocesses that exit do not remove locks.
Use forget_locks() or POSIX::_exit() to prevent unlocking on process exit.
=head1 SEE ALSO
See L<File::Flock::Subprocess> for a variant that uses a subprocess to hold
the locks so that the locks survive when the parent process forks.
See L<File::Flock::Forking> for a way to automatically choose between
File::Flock and L<File::Flock::Subprocess>.
=head1 LICENSE
Copyright (C) 1996-2012 David Muir Sharnoff <cpan@dave.sharnoff.org>
Copyright (C) 2013 Google, Inc.
This module may be used/copied/etc on the same terms as Perl itself.
=head1 PACKAGERS
File::Flock is packaged for Fedora by Emmanuel Seyman <emmanuel.seyman@club-internet.fr>.
|