home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December (Special) / PCWorld_2005-12_Special_cd.bin / Bezpecnost / lsti / lsti.exe / framework-2.5.exe / Syslog.pm < prev    next >
Text File  |  2005-01-27  |  17KB  |  600 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.05';
  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.     # Log to UDP port on $remotehost instead of logging locally
  132.     setlogsock('udp');
  133.     $Sys::Syslog::host = $remotehost;
  134.     openlog($program, 'ndelay', 'user');
  135.     syslog('info', 'something happened over here');
  136.  
  137. =head1 SEE ALSO
  138.  
  139. L<syslog(3)>
  140.  
  141. =head1 AUTHOR
  142.  
  143. Tom Christiansen E<lt>F<tchrist@perl.com>E<gt> and Larry Wall
  144. E<lt>F<larry@wall.org>E<gt>.
  145.  
  146. UNIX domain sockets added by Sean Robinson
  147. E<lt>F<robinson_s@sc.maricopa.edu>E<gt> with support from Tim Bunce 
  148. E<lt>F<Tim.Bunce@ig.co.uk>E<gt> and the perl5-porters mailing list.
  149.  
  150. Dependency on F<syslog.ph> replaced with XS code by Tom Hughes
  151. E<lt>F<tom@compton.nu>E<gt>.
  152.  
  153. Code for constant()s regenerated by Nicholas Clark E<lt>F<nick@ccl4.org>E<gt>.
  154.  
  155. Failover to different communication modes by Nick Williams
  156. E<lt>F<Nick.Williams@morganstanley.com>E<gt>.
  157.  
  158. =cut
  159.  
  160. sub AUTOLOAD {
  161.     # This AUTOLOAD is used to 'autoload' constants from the constant()
  162.     # XS function.
  163.     
  164.     my $constname;
  165.     our $AUTOLOAD;
  166.     ($constname = $AUTOLOAD) =~ s/.*:://;
  167.     croak "&Sys::Syslog::constant not defined" if $constname eq 'constant';
  168.     my ($error, $val) = constant($constname);
  169.     if ($error) {
  170.     croak $error;
  171.     }
  172.     *$AUTOLOAD = sub { $val };
  173.     goto &$AUTOLOAD;
  174. }
  175.  
  176. bootstrap Sys::Syslog $VERSION;
  177.  
  178. $maskpri = &LOG_UPTO(&LOG_DEBUG);
  179.  
  180. sub openlog {
  181.     ($ident, $logopt, $facility) = @_;  # package vars
  182.     $lo_pid = $logopt =~ /\bpid\b/;
  183.     $lo_ndelay = $logopt =~ /\bndelay\b/;
  184.     $lo_nowait = $logopt =~ /\bnowait\b/;
  185.     return 1 unless $lo_ndelay;
  186.     &connect;
  187.  
  188. sub closelog {
  189.     $facility = $ident = '';
  190.     &disconnect;
  191.  
  192. sub setlogmask {
  193.     local($oldmask) = $maskpri;
  194.     $maskpri = shift;
  195.     $oldmask;
  196. }
  197.  
  198. sub setlogsock {
  199.     local($setsock) = shift;
  200.     $syslog_path = shift;
  201.     &disconnect if $connected;
  202.     $transmit_ok = 0;
  203.     @fallbackMethods = ();
  204.     @connectMethods = @defaultMethods;
  205.     if (ref $setsock eq 'ARRAY') {
  206.     @connectMethods = @$setsock;
  207.     } elsif (lc($setsock) eq 'stream') {
  208.     unless (defined $syslog_path) {
  209.         my @try = qw(/dev/log /dev/conslog);
  210.         if (length &_PATH_LOG) { # Undefined _PATH_LOG is "".
  211.         unshift @try, &_PATH_LOG;
  212.             }
  213.         for my $try (@try) {
  214.         if (-w $try) {
  215.             $syslog_path = $try;
  216.             last;
  217.         }
  218.         }
  219.         carp "stream passed to setlogsock, but could not find any device"
  220.         unless defined $syslog_path;
  221.         }
  222.     unless (-w $syslog_path) {
  223.         carp "stream passed to setlogsock, but $syslog_path is not writable";
  224.         return undef;
  225.     } else {
  226.         @connectMethods = ( 'stream' );
  227.     }
  228.     } elsif (lc($setsock) eq 'unix') {
  229.         if (length _PATH_LOG() && !defined $syslog_path) {
  230.         $syslog_path = _PATH_LOG();
  231.         @connectMethods = ( 'unix' );
  232.         } else {
  233.         carp 'unix passed to setlogsock, but path not available';
  234.         return undef;
  235.         }
  236.     } elsif (lc($setsock) eq 'tcp') {
  237.     if (getservbyname('syslog', 'tcp') || getservbyname('syslogng', 'tcp')) {
  238.         @connectMethods = ( 'tcp' );
  239.     } else {
  240.         carp "tcp passed to setlogsock, but tcp service unavailable";
  241.         return undef;
  242.     }
  243.     } elsif (lc($setsock) eq 'udp') {
  244.     if (getservbyname('syslog', 'udp')) {
  245.         @connectMethods = ( 'udp' );
  246.     } else {
  247.         carp "udp passed to setlogsock, but udp service unavailable";
  248.         return undef;
  249.     }
  250.     } elsif (lc($setsock) eq 'inet') {
  251.     @connectMethods = ( 'tcp', 'udp' );
  252.     } elsif (lc($setsock) eq 'console') {
  253.     @connectMethods = ( 'console' );
  254.     } else {
  255.         carp "Invalid argument passed to setlogsock; must be 'stream', 'unix', 'tcp', 'udp' or 'inet'";
  256.     }
  257.     return 1;
  258. }
  259.  
  260. sub syslog {
  261.     local($priority) = shift;
  262.     local($mask) = shift;
  263.     local($message, $whoami);
  264.     local(@words, $num, $numpri, $numfac, $sum);
  265.     local($facility) = $facility;    # may need to change temporarily.
  266.  
  267.     croak "syslog: expecting argument \$priority" unless $priority;
  268.     croak "syslog: expecting argument \$format"   unless $mask;
  269.  
  270.     @words = split(/\W+/, $priority, 2);# Allow "level" or "level|facility".
  271.     undef $numpri;
  272.     undef $numfac;
  273.     foreach (@words) {
  274.     $num = &xlate($_);        # Translate word to number.
  275.     if (/^kern$/ || $num < 0) {
  276.         croak "syslog: invalid level/facility: $_";
  277.     }
  278.     elsif ($num <= &LOG_PRIMASK) {
  279.         croak "syslog: too many levels given: $_" if defined($numpri);
  280.         $numpri = $num;
  281.         return 0 unless &LOG_MASK($numpri) & $maskpri;
  282.     }
  283.     else {
  284.         croak "syslog: too many facilities given: $_" if defined($numfac);
  285.         $facility = $_;
  286.         $numfac = $num;
  287.     }
  288.     }
  289.  
  290.     croak "syslog: level must be given" unless defined($numpri);
  291.  
  292.     if (!defined($numfac)) {    # Facility not specified in this call.
  293.     $facility = 'user' unless $facility;
  294.     $numfac = &xlate($facility);
  295.     }
  296.  
  297.     &connect unless $connected;
  298.  
  299.     $whoami = $ident;
  300.  
  301.     if (!$whoami && $mask =~ /^(\S.*?):\s?(.*)/) {
  302.     $whoami = $1;
  303.     $mask = $2;
  304.     } 
  305.  
  306.     unless ($whoami) {
  307.     ($whoami = getlogin) ||
  308.         ($whoami = getpwuid($<)) ||
  309.         ($whoami = 'syslog');
  310.     }
  311.  
  312.     $whoami .= "[$$]" if $lo_pid;
  313.  
  314.     $mask =~ s/%m/$!/g;
  315.     $mask .= "\n" unless $mask =~ /\n$/;
  316.     $message = sprintf ($mask, @_);
  317.  
  318.     $sum = $numpri + $numfac;
  319.     my $buf = "<$sum>$whoami: $message\0";
  320.  
  321.     # it's possible that we'll get an error from sending
  322.     # (e.g. if method is UDP and there is no UDP listener,
  323.     # then we'll get ECONNREFUSED on the send). So what we
  324.     # want to do at this point is to fallback onto a different
  325.     # connection method.
  326.     while (scalar @fallbackMethods || $syslog_send) {
  327.     if ($failed && (time - $fail_time) > 60) {
  328.         # it's been a while... maybe things have been fixed
  329.         @fallbackMethods = ();
  330.         disconnect();
  331.         $transmit_ok = 0; # make it look like a fresh attempt
  332.         &connect;
  333.         }
  334.     if ($connected && !connection_ok()) {
  335.         # Something was OK, but has now broken. Remember coz we'll
  336.         # want to go back to what used to be OK.
  337.         $failed = $current_proto unless $failed;
  338.         $fail_time = time;
  339.         disconnect();
  340.     }
  341.     &connect unless $connected;
  342.     $failed = undef if ($current_proto && $failed && $current_proto eq $failed);
  343.     if ($syslog_send) {
  344.         if (&{$syslog_send}($buf)) {
  345.         $transmit_ok++;
  346.         return 1;
  347.         }
  348.         # typically doesn't happen, since errors are rare from write().
  349.         disconnect();
  350.     }
  351.     }
  352.     # could not send, could not fallback onto a working
  353.     # connection method. Lose.
  354.     return 0;
  355. }
  356.  
  357. sub _syslog_send_console {
  358.     my ($buf) = @_;
  359.     chop($buf); # delete the NUL from the end
  360.     # The console print is a method which could block
  361.     # so we do it in a child process and always return success
  362.     # to the caller.
  363.     if (my $pid = fork) {
  364.     if ($lo_nowait) {
  365.         return 1;
  366.     } else {
  367.         if (waitpid($pid, 0) >= 0) {
  368.             return ($? >> 8);
  369.         } else {
  370.         # it's possible that the caller has other
  371.         # plans for SIGCHLD, so let's not interfere
  372.         return 1;
  373.         }
  374.     }
  375.     } else {
  376.         if (open(CONS, ">/dev/console")) {
  377.         my $ret = print CONS $buf . "\r";
  378.         exit ($ret) if defined $pid;
  379.         close CONS;
  380.     }
  381.     exit if defined $pid;
  382.     }
  383. }
  384.  
  385. sub _syslog_send_stream {
  386.     my ($buf) = @_;
  387.     # XXX: this only works if the OS stream implementation makes a write 
  388.     # look like a putmsg() with simple header. For instance it works on 
  389.     # Solaris 8 but not Solaris 7.
  390.     # To be correct, it should use a STREAMS API, but perl doesn't have one.
  391.     return syswrite(SYSLOG, $buf, length($buf));
  392. }
  393. sub _syslog_send_socket {
  394.     my ($buf) = @_;
  395.     return syswrite(SYSLOG, $buf, length($buf));
  396.     #return send(SYSLOG, $buf, 0);
  397. }
  398.  
  399. sub xlate {
  400.     local($name) = @_;
  401.     return $name+0 if $name =~ /^\s*\d+\s*$/;
  402.     $name = uc $name;
  403.     $name = "LOG_$name" unless $name =~ /^LOG_/;
  404.     $name = "Sys::Syslog::$name";
  405.     # Can't have just eval { &$name } || -1 because some LOG_XXX may be zero.
  406.     my $value = eval { &$name };
  407.     defined $value ? $value : -1;
  408. }
  409.  
  410. sub connect {
  411.     @fallbackMethods = @connectMethods unless (scalar @fallbackMethods);
  412.     if ($transmit_ok && $current_proto) {
  413.     # Retry what we were on, because it's worked in the past.
  414.     unshift(@fallbackMethods, $current_proto);
  415.     }
  416.     $connected = 0;
  417.     my @errs = ();
  418.     my $proto = undef;
  419.     while ($proto = shift(@fallbackMethods)) {
  420.     my $fn = "connect_$proto";
  421.     $connected = &$fn(\@errs) unless (!defined &$fn);
  422.     last if ($connected);
  423.     }
  424.  
  425.     $transmit_ok = 0;
  426.     if ($connected) {
  427.     $current_proto = $proto;
  428.         local($old) = select(SYSLOG); $| = 1; select($old);
  429.     } else {
  430.     @fallbackMethods = ();
  431.     foreach my $err (@errs) {
  432.         carp $err;
  433.     }
  434.     croak "no connection to syslog available";
  435.     }
  436. }
  437.  
  438. sub connect_tcp {
  439.     my ($errs) = @_;
  440.     unless ($host) {
  441.     require Sys::Hostname;
  442.     my($host_uniq) = Sys::Hostname::hostname();
  443.     ($host) = $host_uniq =~ /([A-Za-z0-9_.-]+)/; # allow FQDN (inc _)
  444.     }
  445.     my $tcp = getprotobyname('tcp');
  446.     if (!defined $tcp) {
  447.     push(@{$errs}, "getprotobyname failed for tcp");
  448.     return 0;
  449.     }
  450.     my $syslog = getservbyname('syslog','tcp');
  451.     $syslog = getservbyname('syslogng','tcp') unless (defined $syslog);
  452.     if (!defined $syslog) {
  453.     push(@{$errs}, "getservbyname failed for tcp");
  454.     return 0;
  455.     }
  456.  
  457.     my $this = sockaddr_in($syslog, INADDR_ANY);
  458.     my $that = sockaddr_in($syslog, inet_aton($host));
  459.     if (!$that) {
  460.     push(@{$errs}, "can't lookup $host");
  461.     return 0;
  462.     }
  463.     if (!socket(SYSLOG,AF_INET,SOCK_STREAM,$tcp)) {
  464.     push(@{$errs}, "tcp socket: $!");
  465.     return 0;
  466.     }
  467.     setsockopt(SYSLOG, SOL_SOCKET, SO_KEEPALIVE, 1);
  468.     setsockopt(SYSLOG, IPPROTO_TCP, TCP_NODELAY, 1);
  469.     if (!CORE::connect(SYSLOG,$that)) {
  470.     push(@{$errs}, "tcp connect: $!");
  471.     return 0;
  472.     }
  473.     $syslog_send = \&_syslog_send_socket;
  474.     return 1;
  475. }
  476.  
  477. sub connect_udp {
  478.     my ($errs) = @_;
  479.     unless ($host) {
  480.     require Sys::Hostname;
  481.     my($host_uniq) = Sys::Hostname::hostname();
  482.     ($host) = $host_uniq =~ /([A-Za-z0-9_.-]+)/; # allow FQDN (inc _)
  483.     }
  484.     my $udp = getprotobyname('udp');
  485.     if (!defined $udp) {
  486.     push(@{$errs}, "getprotobyname failed for udp");
  487.     return 0;
  488.     }
  489.     my $syslog = getservbyname('syslog','udp');
  490.     if (!defined $syslog) {
  491.     push(@{$errs}, "getservbyname failed for udp");
  492.     return 0;
  493.     }
  494.     my $this = sockaddr_in($syslog, INADDR_ANY);
  495.     my $that = sockaddr_in($syslog, inet_aton($host));
  496.     if (!$that) {
  497.     push(@{$errs}, "can't lookup $host");
  498.     return 0;
  499.     }
  500.     if (!socket(SYSLOG,AF_INET,SOCK_DGRAM,$udp)) {
  501.     push(@{$errs}, "udp socket: $!");
  502.     return 0;
  503.     }
  504.     if (!CORE::connect(SYSLOG,$that)) {
  505.     push(@{$errs}, "udp connect: $!");
  506.     return 0;
  507.     }
  508.     # We want to check that the UDP connect worked. However the only
  509.     # way to do that is to send a message and see if an ICMP is returned
  510.     _syslog_send_socket("");
  511.     if (!connection_ok()) {
  512.     push(@{$errs}, "udp connect: nobody listening");
  513.     return 0;
  514.     }
  515.     $syslog_send = \&_syslog_send_socket;
  516.     return 1;
  517. }
  518.  
  519. sub connect_stream {
  520.     my ($errs) = @_;
  521.     # might want syslog_path to be variable based on syslog.h (if only
  522.     # it were in there!)
  523.     $syslog_path = '/dev/conslog'; 
  524.     if (!-w $syslog_path) {
  525.     push(@{$errs}, "stream $syslog_path is not writable");
  526.     return 0;
  527.     }
  528.     if (!open(SYSLOG, ">" . $syslog_path)) {
  529.     push(@{$errs}, "stream can't open $syslog_path: $!");
  530.     return 0;
  531.     }
  532.     $syslog_send = \&_syslog_send_stream;
  533.     return 1;
  534. }
  535.  
  536. sub connect_unix {
  537.     my ($errs) = @_;
  538.     if (length _PATH_LOG()) {
  539.     $syslog_path = _PATH_LOG();
  540.     } else {
  541.         push(@{$errs}, "_PATH_LOG not available in syslog.h");
  542.     return 0;
  543.     }
  544.     my $that = sockaddr_un($syslog_path);
  545.     if (!$that) {
  546.     push(@{$errs}, "can't locate $syslog_path");
  547.     return 0;
  548.     }
  549.     if (!socket(SYSLOG,AF_UNIX,SOCK_STREAM,0)) {
  550.     push(@{$errs}, "unix stream socket: $!");
  551.     return 0;
  552.     }
  553.     if (!CORE::connect(SYSLOG,$that)) {
  554.         if (!socket(SYSLOG,AF_UNIX,SOCK_DGRAM,0)) {
  555.         push(@{$errs}, "unix dgram socket: $!");
  556.         return 0;
  557.     }
  558.         if (!CORE::connect(SYSLOG,$that)) {
  559.         push(@{$errs}, "unix dgram connect: $!");
  560.         return 0;
  561.     }
  562.     }
  563.     $syslog_send = \&_syslog_send_socket;
  564.     return 1;
  565. }
  566.  
  567. sub connect_console {
  568.     my ($errs) = @_;
  569.     if (!-w '/dev/console') {
  570.     push(@{$errs}, "console is not writable");
  571.     return 0;
  572.     }
  573.     $syslog_send = \&_syslog_send_console;
  574.     return 1;
  575. }
  576.  
  577. # to test if the connection is still good, we need to check if any
  578. # errors are present on the connection. The errors will not be raised
  579. # by a write. Instead, sockets are made readable and the next read
  580. # would cause the error to be returned. Unfortunately the syslog 
  581. # 'protocol' never provides anything for us to read. But with 
  582. # judicious use of select(), we can see if it would be readable...
  583. sub connection_ok {
  584.     return 1 if (defined $current_proto && $current_proto eq 'console');
  585.     my $rin = '';
  586.     vec($rin, fileno(SYSLOG), 1) = 1;
  587.     my $ret = select $rin, undef, $rin, 0;
  588.     return ($ret ? 0 : 1);
  589. }
  590.  
  591. sub disconnect {
  592.     close SYSLOG;
  593.     $connected = 0;
  594.     $syslog_send = undef;
  595. }
  596.  
  597. 1;
  598.