From 046928b67420934a8dc5cfe03d383eb3035948d7 Mon Sep 17 00:00:00 2001 From: rufustfirefly Date: Tue, 15 May 2001 13:35:53 +0000 Subject: [PATCH] patched by Joe Clarke for FreeBSD compatibility --- contrib/macusers/macusers | 106 ++++++++++++++++++++++---------------- 1 file changed, 63 insertions(+), 43 deletions(-) diff --git a/contrib/macusers/macusers b/contrib/macusers/macusers index 8870beeb..e0adbd96 100755 --- a/contrib/macusers/macusers +++ b/contrib/macusers/macusers @@ -1,53 +1,73 @@ -#! /usr/bin/perl -# $Id: macusers,v 1.2 2001-05-07 12:49:19 rufustfirefly Exp $ +#!/usr/bin/perl + +use strict; +use vars qw($MAC_PROCESS $PS_STR $MATCH_STR $ASIP_PORT $LSOF); # Written for linux; may have to be modified for your brand of Unix. -$MAC_PROCESS="afpd"; -$PS_STR="-ef"; -$ASIP_PORT="afpovertcp"; +# Support for FreeBSD added by Joe Clarke . +# Support could probably be extended for *BSD, but I do not have Net or +# OpenBSD machines to test with. Code has also been cleaned up and made +# to compile under strict. +# +# The new lsof call should also be quicker as it does not involve a +# second pipeline. +# +# Support has also been added for 16 character usernames. + +$MAC_PROCESS = "afpd"; +if ( $^O eq "freebsd" ) { + $PS_STR = "-awwxouser,pid,ppid,start,command"; + $MATCH_STR = '(\w+)\s+(\d+)\s+(\d+)\s+([\d\w:]+)'; +} +else { + $PS_STR = "-ef"; + $MATCH_STR = '\s*(\w+)\s+(\d+)\s+(\d+)\s+\d+\s+([\d\w:]+)'; +} +$ASIP_PORT = "afpovertcp"; # Change to 0 if you don't have lsof -$LSOF=1; - -if ($LSOF == 1 ) -{ - open(LSOF,"lsof -i | grep $ASIP_PORT |"); - - while() - { - if ($_ !~ /$ASIP_PORT/) - { - next; - } - $_=~/\w+\s+(\d+).*->([\w-]+).*/; - $pid=$1; $host=$2; - $mac{$pid}=$host; - } - - close(LSOF); - print "PID UID Usercode Name Logintime Mac\n"; +$LSOF = 1; +my %mac = (); + +if ( $LSOF == 1 ) { + open( LSOF, "lsof -i :$ASIP_PORT |" ); + + while () { + next if ( $_ !~ /$ASIP_PORT/ ); + $_ =~ /\w+\s+(\d+).*->([\w\.-]+).*/; + my ( $pid, $host ); + $pid = $1; + $host = $2; + ($host) = ( $host =~ /(^[\w\d\-]+)/ ); + $mac{$pid} = $host; + } + + close(LSOF); + print +"PID UID Username Name Logintime Mac\n"; } -else -{ - print "PID UID Usercode Name Logintime\n"; +else { + print + "PID UID Username Name Logintime\n"; } -open(PS," ps $PS_STR |") || die "cannot do ps"; - -while() -{ - if ($_ !~ /$MAC_PROCESS/ ) - { - next; - } - $_=~ /\s*(\w+)\s+(\d+)\s+(\d+)\s+\d+\s+([\d\w:]+)/; - $user=$1; $pid=$2; $ppid=$3; $time=$4; - if ($ppid != 1) - { - ($t,$t,$uid,$t,$t,$t,$name,$t,$t)=getpwnam($user); - printf "%-8d %-8d %-8s %-20s %-9s %s\n",$pid,$uid,$user,$name,$time,$mac{$pid}; - } +open( PS, "ps $PS_STR |" ) || die "Unable to open a pipe to ``ps''"; + +while () { + next if ( $_ !~ /$MAC_PROCESS/ ); + my ( $user, $pid, $ppid, $time, $name, $uid, $t ); + $_ =~ /$MATCH_STR/; + $user = $1; + $pid = $2; + $ppid = $3; + $time = $4; + + if ( $ppid != 1 ) { + ( $t, $t, $uid, $t, $t, $t, $name, $t, $t ) = getpwnam($user); + printf "%-8d %-8d %-16s %-20s %-9s %s\n", $pid, $uid, $user, + $name, $time, $mac{$pid}; + } } -close(PS); +close(PS); -- 2.39.2