home *** CD-ROM | disk | FTP | other *** search
/ CLIX - Fazer Clix Custa Nix / CLIX-CD.cdr / mac / lib / Net / netent.pm < prev    next >
Text File  |  1997-05-18  |  4KB  |  168 lines

  1. package Net::netent;
  2. use strict;
  3.  
  4. BEGIN { 
  5.     use Exporter   ();
  6.     use vars       qw(@EXPORT @EXPORT_OK %EXPORT_TAGS);
  7.     @EXPORT      = qw(getnetbyname getnetbyaddr getnet);
  8.     @EXPORT_OK   = qw(
  9.             $n_name            @n_aliases
  10.             $n_addrtype     $n_net
  11.            );
  12.     %EXPORT_TAGS = ( FIELDS => [ @EXPORT_OK, @EXPORT ] );
  13. }
  14. use vars      @EXPORT_OK;
  15.  
  16. # Class::Struct forbids use of @ISA
  17. sub import { goto &Exporter::import }
  18.  
  19. use Class::Struct qw(struct);
  20. struct 'Net::netent' => [
  21.    name        => '$',
  22.    aliases    => '@',
  23.    addrtype    => '$',
  24.    net        => '$',
  25. ];
  26.  
  27. sub populate (@) {
  28.     return unless @_;
  29.     my $nob = new();
  30.     $n_name      =    $nob->[0]              = $_[0];
  31.     @n_aliases     = @{ $nob->[1] } = split ' ', $_[1];
  32.     $n_addrtype  =    $nob->[2]          = $_[2];
  33.     $n_net     =    $nob->[3]          = $_[3];
  34.     return $nob;
  35.  
  36. sub getnetbyname ($)  { populate(CORE::getnetbyname(shift)) } 
  37.  
  38. sub getnetbyaddr ($;$) { 
  39.     my ($net, $addrtype);
  40.     $net = shift;
  41.     require Socket if @_;
  42.     $addrtype = @_ ? shift : Socket::AF_INET();
  43.     populate(CORE::getnetbyaddr($net, $addrtype)) 
  44.  
  45. sub getnet($) {
  46.     if ($_[0] =~ /^\d+(?:\.\d+(?:\.\d+(?:\.\d+)?)?)?$/) {
  47.     require Socket;
  48.     &getnetbyaddr(Socket::inet_aton(shift));
  49.     } else {
  50.     &getnetbyname;
  51.     } 
  52.  
  53. 1;
  54. __END__
  55.  
  56. =head1 NAME
  57.  
  58. Net::netent - by-name interface to Perl's built-in getnet*() functions
  59.  
  60. =head1 SYNOPSIS
  61.  
  62.  use Net::netent qw(:FIELDS);
  63.  getnetbyname("loopback")         or die "bad net";
  64.  printf "%s is %08X\n", $n_name, $n_net;
  65.  
  66.  use Net::netent;
  67.  
  68.  $n = getnetbyname("loopback")         or die "bad net";
  69.  { # there's gotta be a better way, eh?
  70.      @bytes = unpack("C4", pack("N", $n->net));
  71.      shift @bytes while @bytes && $bytes[0] == 0;
  72.  }
  73.  printf "%s is %08X [%d.%d.%d.%d]\n", $n->name, $n->net, @bytes;
  74.  
  75. =head1 DESCRIPTION
  76.  
  77. This module's default exports override the core getnetbyname() and
  78. getnetbyaddr() functions, replacing them with versions that return
  79. "Net::netent" objects.  This object has methods that return the similarly
  80. named structure field name from the C's netent structure from F<netdb.h>;
  81. namely name, aliases, addrtype, and net.  The aliases 
  82. method returns an array reference, the rest scalars.  
  83.  
  84. You may also import all the structure fields directly into your namespace
  85. as regular variables using the :FIELDS import tag.  (Note that this still
  86. overrides your core functions.)  Access these fields as variables named
  87. with a preceding C<n_>.  Thus, C<$net_obj-E<gt>name()> corresponds to
  88. $n_name if you import the fields.  Array references are available as
  89. regular array variables, so for example C<@{ $net_obj-E<gt>aliases()
  90. }> would be simply @n_aliases.
  91.  
  92. The getnet() funtion is a simple front-end that forwards a numeric
  93. argument to getnetbyaddr(), and the rest
  94. to getnetbyname().
  95.  
  96. To access this functionality without the core overrides,
  97. pass the C<use> an empty import list, and then access
  98. function functions with their full qualified names.
  99. On the other hand, the built-ins are still available
  100. via the C<CORE::> pseudo-package.
  101.  
  102. =head1 EXAMPLES
  103.  
  104. The getnet() functions do this in the Perl core:
  105.  
  106.     sv_setiv(sv, (I32)nent->n_net);
  107.  
  108. The gethost() functions do this in the Perl core:
  109.  
  110.     sv_setpvn(sv, hent->h_addr, len);
  111.  
  112. That means that the address comes back in binary for the
  113. host functions, and as a regular perl integer for the net ones.
  114. This seems a bug, but here's how to deal with it:
  115.  
  116.  use strict;
  117.  use Socket;
  118.  use Net::netent;
  119.  
  120.  @ARGV = ('loopback') unless @ARGV;
  121.  
  122.  my($n, $net);
  123.  
  124.  for $net ( @ARGV ) {
  125.  
  126.      unless ($n = getnetbyname($net)) {
  127.      warn "$0: no such net: $net\n";
  128.      next;
  129.      }
  130.  
  131.      printf "\n%s is %s%s\n", 
  132.          $net, 
  133.          lc($n->name) eq lc($net) ? "" : "*really* ",
  134.          $n->name;
  135.  
  136.      print "\taliases are ", join(", ", @{$n->aliases}), "\n"
  137.          if @{$n->aliases};     
  138.  
  139.      # this is stupid; first, why is this not in binary?
  140.      # second, why am i going through these convolutions
  141.      # to make it looks right
  142.      {
  143.      my @a = unpack("C4", pack("N", $n->net));
  144.      shift @a while @a && $a[0] == 0;
  145.      printf "\taddr is %s [%d.%d.%d.%d]\n", $n->net, @a;
  146.      }
  147.  
  148.      if ($n = getnetbyaddr($n->net)) {
  149.      if (lc($n->name) ne lc($net)) {
  150.          printf "\tThat addr reverses to net %s!\n", $n->name;
  151.          $net = $n->name;
  152.          redo;
  153.      } 
  154.      }
  155.  }
  156.  
  157. =head1 NOTE
  158.  
  159. While this class is currently implemented using the Class::Struct
  160. module to build a struct-like class, you shouldn't rely upon this.
  161.  
  162. =head1 AUTHOR
  163.  
  164. Tom Christiansen
  165.