]> arthur.barton.de Git - netatalk.git/blob - contrib/macusers/macusers.in
Auto-generate Perl scripts so the the path to the interpreter will be
[netatalk.git] / contrib / macusers / macusers.in
1 #!@PERL@
2
3 use strict;
4 use Socket;
5 use vars qw($MAC_PROCESS $PS_STR $MATCH_STR $ASIP_PORT_NO $ASIP_PORT $LSOF);
6
7 # Written for linux; may have to be modified for your brand of Unix.
8
9 # Support for FreeBSD added by Joe Clarke <marcus@marcuscom.com>.
10 # Support could probably be extended for *BSD, but I do not have Net or
11 # OpenBSD machines to test with.  Code has also been cleaned up and made
12 # to compile under strict.
13 #
14 # The new lsof call should also be quicker as it does not involve a 
15 # second pipeline.
16 #
17 # Support has also been added for 16 character usernames.
18
19 $MAC_PROCESS = "afpd";
20 if ( $^O eq "freebsd" ) {
21     $PS_STR    = "-awwxouser,pid,ppid,start,command";
22     $MATCH_STR = '(\w+)\s+(\d+)\s+(\d+)\s+([\d\w:]+)';
23 }
24 else {
25     $PS_STR    = "-ef";
26     $MATCH_STR = '\s*(\w+)\s+(\d+)\s+(\d+)\s+\d+\s+([\d\w:]+)';
27 }
28 $ASIP_PORT    = "afpovertcp";
29 $ASIP_PORT_NO = 548;
30
31 # Change to 0 if you don't have lsof
32 $LSOF = 1;
33 my %mac = ();
34
35 if ( $^O eq "freebsd" ) {
36     open( SOCKSTAT, "sockstat -4 | grep $MAC_PROCESS | grep -v grep |" );
37
38     while (<SOCKSTAT>) {
39         next if ( $_ !~ /$MAC_PROCESS/ );
40         $_ =~ /\S+\s+\S+\s+(\d+)\s+\d+\s+[\w\d]+\s+[\d\.:]+\s+([\d\.]+)/;
41         my ( $pid, $addr, $host );
42         $pid  = $1;
43         $addr = $2;
44         $host = gethostbyaddr( pack( 'C4', split ( /\./, $addr ) ), AF_INET );
45         ($host) = ( $host =~ /(^[\w\d\-]+)/ );
46         $mac{$pid} = $host;
47     }
48     print
49       "PID      UID      Username         Name                 Logintime Mac\n";
50         close(SOCKSTAT);
51 }
52 elsif ( $LSOF == 1 ) {
53     open( LSOF, "lsof -i :$ASIP_PORT |" );
54
55     while (<LSOF>) {
56         next if ( $_ !~ /$ASIP_PORT/ );
57         $_ =~ /\w+\s+(\d+).*->([\w\.-]+).*/;
58         my ( $pid, $host );
59         $pid  = $1;
60         $host = $2;
61         ($host) = ( $host =~ /(^[\w\d\-]+)/ );
62         $mac{$pid} = $host;
63     }
64     print
65       "PID      UID      Username         Name                 Logintime Mac\n";
66     close(LSOF);
67 }
68 else {
69     print "PID      UID      Username         Name                 Logintime\n";
70 }
71
72 open( PS, "ps $PS_STR |" ) || die "Unable to open a pipe to ``ps''";
73
74 while (<PS>) {
75     next if ( $_ !~ /$MAC_PROCESS/ );
76     my ( $user, $pid, $ppid, $time, $name, $uid, $t );
77     $_ =~ /$MATCH_STR/;
78     $user = $1;
79     $pid  = $2;
80     $ppid = $3;
81     $time = $4;
82
83     if ( $ppid != 1 ) {
84         ( $t, $t, $uid, $t, $t, $t, $name, $t, $t ) = getpwnam($user);
85         printf "%-8d %-8d %-16s %-20s %-9s %s\n", $pid, $uid, $user, $name,
86           $time, $mac{$pid};
87     }
88 }
89
90 close(PS);