home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / Syslog.pm < prev    next >
Text File  |  2003-11-07  |  17KB  |  593 lines

  1. package Sys::Syslog;
  2. require 5.000;
  3. require Exporter;
  4. require DynaLoader;
  5. use Carp;
  6.  
  7. @ISA = qw(Exporter DynaLoader);
  8. @EXPORT = qw(openlog closelog setlogmask syslog);
  9. @EXPORT_OK = qw(setlogsock);
  10. $VERSION = '0.04';
  11.  
  12. # it would be nice to try stream/unix first, since that will be
  13. # most efficient. However streams are dodgy - see _syslog_send_stream
  14. #my @connectMethods = ( 'stream', 'unix', 'tcp', 'udp' );
  15. my @connectMethods = ( 'tcp', 'udp', 'unix', 'stream', 'console' );
  16. if ($^O =~ /^(freebsd|linux)$/) {
  17.     @connectMethods = grep { $_ ne 'udp' } @connectMethods;
  18. }
  19. my @defaultMethods = @connectMethods;
  20. my $syslog_path = undef;
  21. my $transmit_ok = 0;
  22. my $current_proto = undef;
  23. my $failed = undef;
  24. my $fail_time = undef;
  25.  
  26. use Socket;
  27. use Sys::Hostname;
  28.  
  29. =head1 NAME
  30.  
  31. Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl interface to the UNIX syslog(3) calls
  32.  
  33. =head1 SYNOPSIS
  34.  
  35.     use Sys::Syslog;                          # all except setlogsock, or:
  36.     use Sys::Syslog qw(:DEFAULT setlogsock);  # default set, plus setlogsock
  37.  
  38.     setlogsock $sock_type;
  39.     openlog $ident, $logopt, $facility;       # don't forget this
  40.     syslog $priority, $format, @args;
  41.     $oldmask = setlogmask $mask_priority;
  42.     closelog;
  43.  
  44. =head1 DESCRIPTION
  45.  
  46. Sys::Syslog is an interface to the UNIX C<syslog(3)> program.
  47. Call C<syslog()> with a string priority and a list of C<printf()> args
  48. just like C<syslog(3)>.
  49.  
  50. Syslog provides the functions:
  51.  
  52. =over 4
  53.  
  54. =item openlog $ident, $logopt, $facility
  55.  
  56. I<$ident> is prepended to every message.  I<$logopt> contains zero or
  57. more of the words I<pid>, I<ndelay>, I<nowait>.  The cons option is
  58. ignored, since the failover mechanism will drop down to the console
  59. automatically if all other media fail.  I<$facility> specifies the
  60. part of the system to report about, for example LOG_USER or LOG_LOCAL0:
  61. see your C<syslog(3)> documentation for the facilities available in
  62. your system.
  63.  
  64. B<You should use openlog() before calling syslog().>
  65.  
  66. =item syslog $priority, $format, @args
  67.  
  68. If I<$priority> permits, logs I<($format, @args)>
  69. printed as by C<printf(3V)>, with the addition that I<%m>
  70. is replaced with C<"$!"> (the latest error message).
  71.  
  72. If you didn't use openlog() before using syslog(), syslog will try to
  73. guess the I<$ident> by extracting the shortest prefix of I<$format>
  74. that ends in a ":".
  75.  
  76. =item setlogmask $mask_priority
  77.  
  78. Sets log mask I<$mask_priority> and returns the old mask.
  79.  
  80. =item setlogsock $sock_type [$stream_location] (added in 5.004_02)
  81.  
  82. Sets the socket type to be used for the next call to
  83. C<openlog()> or C<syslog()> and returns TRUE on success,
  84. undef on failure.
  85.  
  86. A value of 'unix' will connect to the UNIX domain socket (in some
  87. systems a character special device) returned by the C<_PATH_LOG> macro
  88. (if your system defines it), or F</dev/log> or F</dev/conslog>,
  89. whatever is writable.  A value of 'stream' will connect to the stream
  90. indicated by the pathname provided as the optional second parameter.
  91. (For example Solaris and IRIX require 'stream' instead of 'unix'.)
  92. A value of 'inet' will connect to an INET socket (either tcp or udp,
  93. tried in that order) returned by getservbyname(). 'tcp' and 'udp' can
  94. also be given as values. The value 'console' will send messages
  95. directly to the console, as for the 'cons' option in the logopts in
  96. openlog().
  97.  
  98. A reference to an array can also be passed as the first parameter.
  99. When this calling method is used, the array should contain a list of
  100. sock_types which are attempted in order.
  101.  
  102. The default is to try tcp, udp, unix, stream, console.
  103.  
  104. Giving an invalid value for sock_type will croak.
  105.  
  106. =item closelog
  107.  
  108. Closes the log file.
  109.  
  110. =back
  111.  
  112. Note that C<openlog> now takes three arguments, just like C<openlog(3)>.
  113.  
  114. =head1 EXAMPLES
  115.  
  116.     openlog($program, 'cons,pid', 'user');
  117.     syslog('info', 'this is another test');
  118.     syslog('mail|warning', 'this is a better test: %d', time);
  119.     closelog();
  120.  
  121.     syslog('debug', 'this is the last test');
  122.  
  123.     setlogsock('unix');
  124.     openlog("$program $$", 'ndelay', 'user');
  125.     syslog('notice', 'fooprogram: this is really done');
  126.  
  127.     setlogsock('inet');
  128.     $! = 55;
  129.     syslog('info', 'problem was %m'); # %m == $! in syslog(3)
  130.  
  131. =head1 SEE ALSO
  132.  
  133. L<syslog(3)>
  134.  
  135. =head1 AUTHOR
  136.  
  137. Tom Christiansen E<lt>F<tchrist@perl.com>E<gt> and Larry Wall
  138. E<lt>F<larry@wall.org>E<gt>.
  139.  
  140. UNIX domain sockets added by Sean Robinson
  141. E<lt>F<robinson_s@sc.maricopa.edu>E<gt> with support from Tim Bunce 
  142. E<lt>F<Tim.Bunce@ig.co.uk>E<gt> and the perl5-porters mailing list.
  143.  
  144. Dependency on F<syslog.ph> replaced with XS code by Tom Hughes
  145. E<lt>F<tom@compton.nu>E<gt>.
  146.  
  147. Code for constant()s regenerated by Nicholas Clark E<lt>F<nick@ccl4.org>E<gt>.
  148.  
  149. Failover to different communication modes by Nick Williams
  150. E<lt>F<Nick.Williams@morganstanley.com>E<gt>.
  151.  
  152. =cut
  153.  
  154. sub AUTOLOAD {
  155.     # This AUTOLOAD is used to 'autoload' constants from the constant()
  156.     # XS function.
  157.     
  158.     my $constname;
  159.     our $AUTOLOAD;
  160.     ($constname = $AUTOLOAD) =~ s/.*:://;
  161.     croak "&Sys::Syslog::constant not defined" if $constname eq 'constant';
  162.     my ($error, $val) = constant($constname);
  163.     if ($error) {
  164.     croak $error;
  165.     }
  166.     *$AUTOLOAD = sub { $val };
  167.     goto &$AUTOLOAD;
  168. }
  169.  
  170. bootstrap Sys::Syslog $VERSION;
  171.  
  172. $maskpri = &LOG_UPTO(&LOG_DEBUG);
  173.  
  174. sub openlog {
  175.     ($ident, $logopt, $facility) = @_;  # package vars
  176.     $lo_pid = $logopt =~ /\bpid\b/;
  177.     $lo_ndelay = $logopt =~ /\bndelay\b/;
  178.     $lo_nowait = $logopt =~ /\bnowait\b/;
  179.     return 1 unless $lo_ndelay;
  180.     &connect;
  181.  
  182. sub closelog {
  183.     $facility = $ident = '';
  184.     &disconnect;
  185.  
  186. sub setlogmask {
  187.     local($oldmask) = $maskpri;
  188.     $maskpri = shift;
  189.     $oldmask;
  190. }
  191.  
  192. sub setlogsock {
  193.     local($setsock) = shift;
  194.     $syslog_path = shift;
  195.     &disconnect if $connected;
  196.     $transmit_ok = 0;
  197.     @fallbackMethods = ();
  198.     @connectMethods = @defaultMethods;
  199.     if (ref $setsock eq 'ARRAY') {
  200.     @connectMethods = @$setsock;
  201.     } elsif (lc($setsock) eq 'stream') {
  202.     unless (defined $syslog_path) {
  203.         my @try = qw(/dev/log /dev/conslog);
  204.         if (length &_PATH_LOG) { # Undefined _PATH_LOG is "".
  205.         unshift @try, &_PATH_LOG;
  206.             }
  207.         for my $try (@try) {
  208.         if (-w $try) {
  209.             $syslog_path = $try;
  210.             last;
  211.         }
  212.         }
  213.         carp "stream passed to setlogsock, but could not find any device"
  214.         unless defined $syslog_path;
  215.         }
  216.     unless (-w $syslog_path) {
  217.         carp "stream passed to setlogsock, but $syslog_path is not writable";
  218.         return undef;
  219.     } else {
  220.         @connectMethods = ( 'stream' );
  221.     }
  222.     } elsif (lc($setsock) eq 'unix') {
  223.         if (length _PATH_LOG() && !defined $syslog_path) {
  224.         $syslog_path = _PATH_LOG();
  225.         @connectMethods = ( 'unix' );
  226.         } else {
  227.         carp 'unix passed to setlogsock, but path not available';
  228.         return undef;
  229.         }
  230.     } elsif (lc($setsock) eq 'tcp') {
  231.     if (getservbyname('syslog', 'tcp') || getservbyname('syslogng', 'tcp')) {
  232.         @connectMethods = ( 'tcp' );
  233.     } else {
  234.         carp "tcp passed to setlogsock, but tcp service unavailable";
  235.         return undef;
  236.     }
  237.     } elsif (lc($setsock) eq 'udp') {
  238.     if (getservbyname('syslog', 'udp')) {
  239.         @connectMethods = ( 'udp' );
  240.     } else {
  241.         carp "udp passed to setlogsock, but udp service unavailable";
  242.         return undef;
  243.     }
  244.     } elsif (lc($setsock) eq 'inet') {
  245.     @connectMethods = ( 'tcp', 'udp' );
  246.     } elsif (lc($setsock) eq 'console') {
  247.     @connectMethods = ( 'console' );
  248.     } else {
  249.         carp "Invalid argument passed to setlogsock; must be 'stream', 'unix', 'tcp', 'udp' or 'inet'";
  250.     }
  251.     return 1;
  252. }
  253.  
  254. sub syslog {
  255.     local($priority) = shift;
  256.     local($mask) = shift;
  257.     local($message, $whoami);
  258.     local(@words, $num, $numpri, $numfac, $sum);
  259.     local($facility) = $facility;    # may need to change temporarily.
  260.  
  261.     croak "syslog: expecting argument \$priority" unless $priority;
  262.     croak "syslog: expecting argument \$format"   unless $mask;
  263.  
  264.     @words = split(/\W+/, $priority, 2);# Allow "level" or "level|facility".
  265.     undef $numpri;
  266.     undef $numfac;
  267.     foreach (@words) {
  268.     $num = &xlate($_);        # Translate word to number.
  269.     if (/^kern$/ || $num < 0) {
  270.         croak "syslog: invalid level/facility: $_";
  271.     }
  272.     elsif ($num <= &LOG_PRIMASK) {
  273.         croak "syslog: too many levels given: $_" if defined($numpri);
  274.         $numpri = $num;
  275.         return 0 unless &LOG_MASK($numpri) & $maskpri;
  276.     }
  277.     else {
  278.         croak "syslog: too many facilities given: $_" if defined($numfac);
  279.         $facility = $_;
  280.         $numfac = $num;
  281.     }
  282.     }
  283.  
  284.     croak "syslog: level must be given" unless defined($numpri);
  285.  
  286.     if (!defined($numfac)) {    # Facility not specified in this call.
  287.     $facility = 'user' unless $facility;
  288.     $numfac = &xlate($facility);
  289.     }
  290.  
  291.     &connect unless $connected;
  292.  
  293.     $whoami = $ident;
  294.  
  295.     if (!$whoami && $mask =~ /^(\S.*?):\s?(.*)/) {
  296.     $whoami = $1;
  297.     $mask = $2;
  298.     } 
  299.  
  300.     unless ($whoami) {
  301.     ($whoami = getlogin) ||
  302.         ($whoami = getpwuid($<)) ||
  303.         ($whoami = 'syslog');
  304.     }
  305.  
  306.     $whoami .= "[$$]" if $lo_pid;
  307.  
  308.     $mask =~ s/%m/$!/g;
  309.     $mask .= "\n" unless $mask =~ /\n$/;
  310.     $message = sprintf ($mask, @_);
  311.  
  312.     $sum = $numpri + $numfac;
  313.     my $buf = "<$sum>$whoami: $message\0";
  314.  
  315.     # it's possible that we'll get an error from sending
  316.     # (e.g. if method is UDP and there is no UDP listener,
  317.     # then we'll get ECONNREFUSED on the send). So what we
  318.     # want to do at this point is to fallback onto a different
  319.     # connection method.
  320.     while (scalar @fallbackMethods || $syslog_send) {
  321.     if ($failed && (time - $fail_time) > 60) {
  322.         # it's been a while... maybe things have been fixed
  323.         @fallbackMethods = ();
  324.         disconnect();
  325.         $transmit_ok = 0; # make it look like a fresh attempt
  326.         &connect;
  327.         }
  328.     if ($connected && !connection_ok()) {
  329.         # Something was OK, but has now broken. Remember coz we'll
  330.         # want to go back to what used to be OK.
  331.         $failed = $current_proto unless $failed;
  332.         $fail_time = time;
  333.         disconnect();
  334.     }
  335.     &connect unless $connected;
  336.     $failed = undef if ($current_proto && $failed && $current_proto eq $failed);
  337.     if ($syslog_send) {
  338.         if (&{$syslog_send}($buf)) {
  339.         $transmit_ok++;
  340.         return 1;
  341.         }
  342.         # typically doesn't happen, since errors are rare from write().
  343.         disconnect();
  344.     }
  345.     }
  346.     # could not send, could not fallback onto a working
  347.     # connection method. Lose.
  348.     return 0;
  349. }
  350.  
  351. sub _syslog_send_console {
  352.     my ($buf) = @_;
  353.     chop($buf); # delete the NUL from the end
  354.     # The console print is a method which could block
  355.     # so we do it in a child process and always return success
  356.     # to the caller.
  357.     if (my $pid = fork) {
  358.     if ($lo_nowait) {
  359.         return 1;
  360.     } else {
  361.         if (waitpid($pid, 0) >= 0) {
  362.             return ($? >> 8);
  363.         } else {
  364.         # it's possible that the caller has other
  365.         # plans for SIGCHLD, so let's not interfere
  366.         return 1;
  367.         }
  368.     }
  369.     } else {
  370.         if (open(CONS, ">/dev/console")) {
  371.         my $ret = print CONS $buf . "\r";
  372.         exit ($ret) if defined $pid;
  373.         close CONS;
  374.     }
  375.     exit if defined $pid;
  376.     }
  377. }
  378.  
  379. sub _syslog_send_stream {
  380.     my ($buf) = @_;
  381.     # XXX: this only works if the OS stream implementation makes a write 
  382.     # look like a putmsg() with simple header. For instance it works on 
  383.     # Solaris 8 but not Solaris 7.
  384.     # To be correct, it should use a STREAMS API, but perl doesn't have one.
  385.     return syswrite(SYSLOG, $buf, length($buf));
  386. }
  387. sub _syslog_send_socket {
  388.     my ($buf) = @_;
  389.     return syswrite(SYSLOG, $buf, length($buf));
  390.     #return send(SYSLOG, $buf, 0);
  391. }
  392.  
  393. sub xlate {
  394.     local($name) = @_;
  395.     $name = uc $name;
  396.     $name = "LOG_$name" unless $name =~ /^LOG_/;
  397.     $name = "Sys::Syslog::$name";
  398.     # Can't have just eval { &$name } || -1 because some LOG_XXX may be zero.
  399.     my $value = eval { &$name };
  400.     defined $value ? $value : -1;
  401. }
  402.  
  403. sub connect {
  404.     @fallbackMethods = @connectMethods unless (scalar @fallbackMethods);
  405.     if ($transmit_ok && $current_proto) {
  406.     # Retry what we were on, because it's worked in the past.
  407.     unshift(@fallbackMethods, $current_proto);
  408.     }
  409.     $connected = 0;
  410.     my @errs = ();
  411.     my $proto = undef;
  412.     while ($proto = shift(@fallbackMethods)) {
  413.     my $fn = "connect_$proto";
  414.     $connected = &$fn(\@errs) unless (!defined &$fn);
  415.     last if ($connected);
  416.     }
  417.  
  418.     $transmit_ok = 0;
  419.     if ($connected) {
  420.     $current_proto = $proto;
  421.         local($old) = select(SYSLOG); $| = 1; select($old);
  422.     } else {
  423.     @fallbackMethods = ();
  424.     foreach my $err (@errs) {
  425.         carp $err;
  426.     }
  427.     croak "no connection to syslog available";
  428.     }
  429. }
  430.  
  431. sub connect_tcp {
  432.     my ($errs) = @_;
  433.     unless ($host) {
  434.     require Sys::Hostname;
  435.     my($host_uniq) = Sys::Hostname::hostname();
  436.     ($host) = $host_uniq =~ /([A-Za-z0-9_.-]+)/; # allow FQDN (inc _)
  437.     }
  438.     my $tcp = getprotobyname('tcp');
  439.     if (!defined $tcp) {
  440.     push(@{$errs}, "getprotobyname failed for tcp");
  441.     return 0;
  442.     }
  443.     my $syslog = getservbyname('syslog','tcp');
  444.     $syslog = getservbyname('syslogng','tcp') unless (defined $syslog);
  445.     if (!defined $syslog) {
  446.     push(@{$errs}, "getservbyname failed for tcp");
  447.     return 0;
  448.     }
  449.  
  450.     my $this = sockaddr_in($syslog, INADDR_ANY);
  451.     my $that = sockaddr_in($syslog, inet_aton($host));
  452.     if (!$that) {
  453.     push(@{$errs}, "can't lookup $host");
  454.     return 0;
  455.     }
  456.     if (!socket(SYSLOG,AF_INET,SOCK_STREAM,$tcp)) {
  457.     push(@{$errs}, "tcp socket: $!");
  458.     return 0;
  459.     }
  460.     setsockopt(SYSLOG, SOL_SOCKET, SO_KEEPALIVE, 1);
  461.     setsockopt(SYSLOG, IPPROTO_TCP, TCP_NODELAY, 1);
  462.     if (!CORE::connect(SYSLOG,$that)) {
  463.     push(@{$errs}, "tcp connect: $!");
  464.     return 0;
  465.     }
  466.     $syslog_send = \&_syslog_send_socket;
  467.     return 1;
  468. }
  469.  
  470. sub connect_udp {
  471.     my ($errs) = @_;
  472.     unless ($host) {
  473.     require Sys::Hostname;
  474.     my($host_uniq) = Sys::Hostname::hostname();
  475.     ($host) = $host_uniq =~ /([A-Za-z0-9_.-]+)/; # allow FQDN (inc _)
  476.     }
  477.     my $udp = getprotobyname('udp');
  478.     if (!defined $udp) {
  479.     push(@{$errs}, "getprotobyname failed for udp");
  480.     return 0;
  481.     }
  482.     my $syslog = getservbyname('syslog','udp');
  483.     if (!defined $syslog) {
  484.     push(@{$errs}, "getservbyname failed for udp");
  485.     return 0;
  486.     }
  487.     my $this = sockaddr_in($syslog, INADDR_ANY);
  488.     my $that = sockaddr_in($syslog, inet_aton($host));
  489.     if (!$that) {
  490.     push(@{$errs}, "can't lookup $host");
  491.     return 0;
  492.     }
  493.     if (!socket(SYSLOG,AF_INET,SOCK_DGRAM,$udp)) {
  494.     push(@{$errs}, "udp socket: $!");
  495.     return 0;
  496.     }
  497.     if (!CORE::connect(SYSLOG,$that)) {
  498.     push(@{$errs}, "udp connect: $!");
  499.     return 0;
  500.     }
  501.     # We want to check that the UDP connect worked. However the only
  502.     # way to do that is to send a message and see if an ICMP is returned
  503.     _syslog_send_socket("");
  504.     if (!connection_ok()) {
  505.     push(@{$errs}, "udp connect: nobody listening");
  506.     return 0;
  507.     }
  508.     $syslog_send = \&_syslog_send_socket;
  509.     return 1;
  510. }
  511.  
  512. sub connect_stream {
  513.     my ($errs) = @_;
  514.     # might want syslog_path to be variable based on syslog.h (if only
  515.     # it were in there!)
  516.     $syslog_path = '/dev/conslog'; 
  517.     if (!-w $syslog_path) {
  518.     push(@{$errs}, "stream $syslog_path is not writable");
  519.     return 0;
  520.     }
  521.     if (!open(SYSLOG, ">" . $syslog_path)) {
  522.     push(@{$errs}, "stream can't open $syslog_path: $!");
  523.     return 0;
  524.     }
  525.     $syslog_send = \&_syslog_send_stream;
  526.     return 1;
  527. }
  528.  
  529. sub connect_unix {
  530.     my ($errs) = @_;
  531.     if (length _PATH_LOG()) {
  532.     $syslog_path = _PATH_LOG();
  533.     } else {
  534.         push(@{$errs}, "_PATH_LOG not available in syslog.h");
  535.     return 0;
  536.     }
  537.     my $that = sockaddr_un($syslog_path);
  538.     if (!$that) {
  539.     push(@{$errs}, "can't locate $syslog_path");
  540.     return 0;
  541.     }
  542.     if (!socket(SYSLOG,AF_UNIX,SOCK_STREAM,0)) {
  543.     push(@{$errs}, "unix stream socket: $!");
  544.     return 0;
  545.     }
  546.     if (!CORE::connect(SYSLOG,$that)) {
  547.         if (!socket(SYSLOG,AF_UNIX,SOCK_DGRAM,0)) {
  548.         push(@{$errs}, "unix dgram socket: $!");
  549.         return 0;
  550.     }
  551.         if (!CORE::connect(SYSLOG,$that)) {
  552.         push(@{$errs}, "unix dgram connect: $!");
  553.         return 0;
  554.     }
  555.     }
  556.     $syslog_send = \&_syslog_send_socket;
  557.     return 1;
  558. }
  559.  
  560. sub connect_console {
  561.     my ($errs) = @_;
  562.     if (!-w '/dev/console') {
  563.     push(@{$errs}, "console is not writable");
  564.     return 0;
  565.     }
  566.     $syslog_send = \&_syslog_send_console;
  567.     return 1;
  568. }
  569.  
  570. # to test if the connection is still good, we need to check if any
  571. # errors are present on the connection. The errors will not be raised
  572. # by a write. Instead, sockets are made readable and the next read
  573. # would cause the error to be returned. Unfortunately the syslog 
  574. # 'protocol' never provides anything for us to read. But with 
  575. # judicious use of select(), we can see if it would be readable...
  576. sub connection_ok {
  577.     return 1 if (defined $current_proto && $current_proto eq 'console');
  578.     my $rin = '';
  579.     vec($rin, fileno(SYSLOG), 1) = 1;
  580.     my $ret = select $rin, undef, $rin, 0;
  581.     return ($ret ? 0 : 1);
  582. }
  583.  
  584. sub disconnect {
  585.     close SYSLOG;
  586.     $connected = 0;
  587.     $syslog_send = undef;
  588. }
  589.  
  590. 1;
  591.