/usr/lib/perl5/Sys/Utmp.pm is in libsys-utmp-perl 1.6-4build3.
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 | #*****************************************************************************
#* *
#* Gellyfish Software *
#* *
#* *
#*****************************************************************************
#* *
#* MODULE : Sys::Utmp *
#* *
#* AUTHOR : JNS *
#* *
#* DESCRIPTION : Object(ish) interface to utmp information *
#* *
#* *
#*****************************************************************************
#* *
#* $Log: Utmp.pm,v $
#* Revision 1.5 2004/03/02 20:28:08 jonathan
#* Put back in CVS
#*
#* Revision 1.5 2001/09/14 07:28:51 gellyfish
#* * Fixed coredump in PL_sv_free
#* * Tainted ut_host
#* * fixed backward compatibillity problem
#*
#* Revision 1.4 2001/09/10 07:16:10 gellyfish
#* Fixed memory leakage in getutent()
#*
#* Revision 1.3 2001/03/27 06:55:36 gellyfish
#* Added utmpname()
#*
#* Revision 1.2 2001/02/12 15:05:31 gellyfish
#* Added BSD support
#*
#* Revision 1.1 2001/02/09 22:27:30 gellyfish
#* Initial revision
#*
#* *
#* *
#*****************************************************************************
package Sys::Utmp;
=head1 NAME
Sys::Utmp - Object(ish) Interface to UTMP files.
=head1 SYNOPSIS
use Sys::Utmp;
my $utmp = Sys::Utmp->new();
while ( my $utent = $utmp->getutent() )
{
if ( $utent->user_process )
{
print $utent->ut_user,"\n";
}
}
$utmp->endutent;
See also examples/pwho in the distribution directory.
=head1 DESCRIPTION
Sys::Utmp provides a vaguely object oriented interface to the Unix user
accounting file ( sometimes /etc/utmp or /var/run/utmp). Whilst it would
prefer to use the getutent() function from the systems C libraries it
will attempt to provide its own if they are missing.
This may not be the module that you are looking for - there is a User::Utmp
which provides a different procedural interface and may well be more complete
for your purposes.
=head2 METHODS
=over 4
=item new
The constructor of the class. Arguments may be provided in Key => Value
pairs : it currently takes one argument 'Filename' which will set the file
which is to be used in place of that defined in _PATH_UTMP.
=item getutent
Iterates of the records in the utmp file returning a Sys::Utmp::Utent object
for each record in turn - the methods that are available on these objects
are descrived in the L<Sys::Utmp::Utent> documentation. If called in a list
context it will return a list containing the elements of th Utent entry
rather than an object. If the import flag ':fields' is used then constants
defining the indexes into this list will be defined, these are uppercase
versions of the methods described in L<Sys::Utmp::Utent>.
=item setutent
Rewinds the file pointer on the utmp filehandle so repeated searches can be
done.
=item endutent
Closes the file handle on the utmp file.
=item utmpname SCALAR filename
Sets the file that will be used in place of that defined in _PATH_UTMP.
It is not defined what will happen if this is done between two calls to
getutent() - it is recommended that endutent() is called first.
=back
=cut
use strict;
use Carp;
require Exporter;
require DynaLoader;
use vars qw(
@ISA
%EXPORT_TAGS
@EXPORT_OK
@EXPORT
$VERSION
$AUTOLOAD
@constants
);
@ISA = qw(Exporter DynaLoader);
BEGIN
{
@constants = qw(
ACCOUNTING
BOOT_TIME
DEAD_PROCESS
EMPTY
INIT_PROCESS
LOGIN_PROCESS
NEW_TIME
OLD_TIME
RUN_LVL
USER_PROCESS
);
}
use Sys::Utmp::Utent;
BEGIN
{
%EXPORT_TAGS = (
'constants' => [ @constants ],
'fields' => [ @Sys::Utmp::Utent::EXPORT]
);
@EXPORT_OK = ( @{ $EXPORT_TAGS{'constants'} }, @{ $EXPORT_TAGS{'fields'}} );
}
$VERSION = '1.6';
sub new
{
my ( $proto, %args ) = @_;
my $self = {};
my $class = ref($proto) || $proto;
bless $self, $class;
if ( exists $args{Filename} and -s $args{Filename} )
{
$self->utmpname($args{Filename});
}
return $self;
}
sub AUTOLOAD
{
my ( $self ) = @_;
my $constname;
return if $AUTOLOAD =~ /DESTROY/;
($constname = $AUTOLOAD) =~ s/.*:://;
croak "& not defined" if $constname eq 'constant';
my $val = constant($constname, @_ ? $_[0] : 0);
if ($! != 0)
{
croak "Your vendor has not defined Sys::Utmp macro $constname";
}
{
no strict 'refs';
*{$AUTOLOAD} = sub { $val };
}
goto &$AUTOLOAD;
}
1;
bootstrap Sys::Utmp $VERSION;
__END__
=head2 EXPORT
No methods or constants are exported by default.
=head2 Exportable constants
These constants are exportable under the tag ':constants':
ACCOUNTING
BOOT_TIME
DEAD_PROCESS
EMPTY
INIT_PROCESS
LOGIN_PROCESS
NEW_TIME
OLD_TIME
RUN_LVL
USER_PROCESS
These are the values that will be found in the ut_type field of the
L<Sys::Utmp::Utent> object.
These constants are exported under the tag ':fields' :
UT_USER
UT_ID
UT_LINE
UT_PID
UT_TYPE
UT_HOST
UT_TIME
These provide the indexes into the list returned when C<getutent> is called
in list context.
=head1 BUGS
Probably. This module has been tested on Linux, Solaris, FreeBSD ,SCO
Openserver and SCO UnixWare and found to work on those platforms.
If you have difficulty building the module or it doesnt behave as expected
then please contact the author including if appropriate your /usr/include/utmp.h
=head1 AUTHOR
Jonathan Stowe, E<lt>jns@gellyfish.comE<gt>
=head1 LICENCE
This Software is Copyright Netscalibur UK 2001,
Jonathan Stowe 2001-2006
This Software is published as-is with no warranty express or implied.
This is free software and can be distributed under the same terms as
Perl itself.
=head1 SEE ALSO
L<perl>. L<Sys::Utmp::Utent>
=cut
|