diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-09-14 17:15:42 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-09-14 17:15:42 -0700 |
commit | c3dfc61e25594444e0b9309c18d21bbc2feac1b6 (patch) | |
tree | ebd2b8b15379b490228b9ee3ff8e2efb86362117 /scripts | |
parent | a28e1d45f993eba67edc356eab0c71a80cd35440 (diff) | |
download | vyatta-op-c3dfc61e25594444e0b9309c18d21bbc2feac1b6.tar.gz vyatta-op-c3dfc61e25594444e0b9309c18d21bbc2feac1b6.zip |
Decolorize show system login users
Add last login info (multicolumn output), and get rid of color
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/show-users.pl | 132 |
1 files changed, 78 insertions, 54 deletions
diff --git a/scripts/show-users.pl b/scripts/show-users.pl index d47a535..8bd0825 100644 --- a/scripts/show-users.pl +++ b/scripts/show-users.pl @@ -21,8 +21,8 @@ # **** End License **** use lib "/opt/vyatta/share/perl5"; -use Term::ANSIColor; use Vyatta::Config; +use IO::Seekable; use strict; use warnings; @@ -33,74 +33,98 @@ sub usage { exit 1; } -my %pw; -setpwent(); -while ( my ($u, $p) = getpwent()) { - $pw{$u} = $p; +use constant { + VYATTA => 0x1, + OTHER => 0x2, + LOCKED => 0x4, +}; + +my %filters = ( + 'vyatta' => VYATTA, + 'other' => OTHER, + 'locked' => OTHER|LOCKED, + 'all' => VYATTA|OTHER|LOCKED, +); + +my $filter = 0; +for (@ARGV) { + my $mask = $filters{$_}; + unless ($mask) { + warn "Unknown type $_\n"; + usage(); + } + $filter |= $mask; } -endpwent(); +# Default is everything but locked accounts +$filter |= VYATTA|OTHER if ($filter == 0); +# Read list of Vyatta users my $cfg = new Vyatta::Config; $cfg->setLevel('system login user'); $cfg->{_active_dir_base} = '/opt/vyatta/config/active/'; my %vuser = map { $_ => 1 } $cfg->listOrigNodes(); -sub locked { - return grep { length($pw{$_}) == 1 } @_; -} +# Setup to access lastlog +open (my $lastlog, '<', "/var/log/lastlog") + or die "can't open /var/log/lastlog:$!"; +# Magic values based on binary format of last log +# See /usr/include/bits/utm.h +my $typedef = 'L Z32 Z256'; +my $reclen = length(pack($typedef)); + +sub lastlog { + my $uid = shift; + + sysseek($lastlog, $uid * $reclen, SEEK_SET) + or die "seek failed: $!"; + + my ($rec, $line, $host, $time); + if (sysread($lastlog, $rec, $reclen) == $reclen) { + my ($time, $line, $host) = unpack($typedef, $rec); + return scalar(localtime($time)), $line, $host + if ($time != 0); + } -sub nopasswd { - return grep { length($pw{$_}) == 0 } @_; + return ("never logged in", "", ""); } -sub all { - return @_; -} -sub vyatta { - return grep { $vuser{$_} } @_; -} - -sub other { - return grep { length($pw{$_}) > 1 && ! defined($vuser{$_}) } @_; -} +# Walk password file +# Note: this only works as root +my %users; +setpwent(); +while ( my ($u, $p, $uid) = getpwent()) { + my $l = length($p); + my $status; + my $flag = 0; + + my $type = defined($vuser{$u}) ? 'vyatta' : 'other'; + if ($type eq 'vyatta') { + $flag |= VYATTA; + } elsif ($l != 1) { + $flag |= OTHER; + } -sub login_color { - my $u = shift; - my $p = $pw{$u}; - my $c; - - if (length($p) == 0) { - $c = 'blink red'; # open no password! - } elsif ($vuser{$u}) { - $c = 'green'; # vyatta user - } elsif (length($p) == 1) { - $c = 'blue'; # locked account - } else { - $c = 'yellow'; # non vyatta account + # only works as root, otherwise shadow file is inaccessible + if ($l == 0) { + $type .= '!'; + } if ($l == 1) { + $flag |= LOCKED; + $type .= '-'; } - return color($c) . $u . color('reset'); -} -# show non-locked accounts in color -sub colorize { - return map { login_color($_) } grep { length($pw{$_}) != 1 } @_; + next if (($flag & $filter) == 0); + + my ($time, $line, $host) = lastlog($uid); + # fields to printf + $users{$u} = [ $type, $line, $host, $time ]; } +endpwent(); +close $lastlog; -my %filters = ( - 'all' => \&all, - 'vyatta' => \&vyatta, - 'locked' => \&locked, - 'open' => \&nopasswd, - 'other' => \&other, - 'color' => \&colorize, -); +my $fmt = "%-15s %-7s %-8s %-19s %s\n"; +printf $fmt, "Username","Type","Tty", "From","Last login"; -for (@ARGV) { - my $func = $filters{$_}; - unless ($func) { - warn "Unknown type $_\n"; - usage(); - } - print join("\n", sort($func->(keys %pw))), "\n"; +foreach my $u (sort keys %users) { + printf $fmt, $u, @{$users{$u}}; } |