2019-11-04 02:53:01 +05:30
|
|
|
<div align="right">
|
|
|
|
[![License Badge][]][License]<br />[![Travis Status][]][Travis]<br />[![Coverity Status][]][Coverity Scan]
|
|
|
|
</div>
|
|
|
|
```
|
|
|
|
__ __ __
|
|
|
|
.-----.--.--.-----| |--| .-----.-----.--| |
|
|
|
|
|__ --| | |__ --| <| | _ | _ | _ |
|
|
|
|
|_____|___ |_____|__|__|__|_____|___ |_____|
|
|
|
|
|_____| |_____|
|
|
|
|
```
|
2018-08-03 02:20:06 +05:30
|
|
|
Table of Contents
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
* [Introduction](#introduction)
|
|
|
|
* [Build & Install](#build--install)
|
|
|
|
* [Building from GIT](#building-from-git)
|
|
|
|
* [Origin & References](#origin--references)
|
|
|
|
|
|
|
|
Introduction
|
|
|
|
------------
|
|
|
|
|
2019-10-31 12:37:02 +05:30
|
|
|
This is the continuation of the original Debian/Ubuntu syslog daemon,
|
|
|
|
updated with full [RFC3164][] and [RFC5424][] support from NetBSD and
|
2019-11-03 16:53:05 +05:30
|
|
|
FreeBSD. The package includes the `libsyslog.{a,so}` library and a
|
|
|
|
`syslog.h` header file replacement, two system log daemons, `syslogd`
|
|
|
|
and `klogd`, and one command line tool called `logger`.
|
2019-10-31 12:37:02 +05:30
|
|
|
|
2019-11-03 16:53:05 +05:30
|
|
|
`libsyslog` and `syslog/syslog.h`, derived directly from NetBSD, expose
|
|
|
|
`syslogp()` and other new features available only in [RFC5424][]:
|
2019-10-31 12:37:02 +05:30
|
|
|
|
|
|
|
- https://netbsd.gw.com/cgi-bin/man-cgi?syslog+3+NetBSD-current
|
2018-08-03 02:20:06 +05:30
|
|
|
|
|
|
|
The `syslogd` daemon is an enhanced version of the standard Berkeley
|
2019-10-31 12:37:02 +05:30
|
|
|
utility program, updated with DNA from FreeBSD. It is responsible for
|
|
|
|
providing logging of messages received from programs and facilities on
|
|
|
|
the local host as well as from remote hosts. Although compatible with
|
|
|
|
standard C-library implementations of the `syslog()` API (GLIBC, musl
|
|
|
|
libc, uClibc), `libsyslog` must be used in your application to unlock
|
|
|
|
the new [RFC5424][] `syslogp()` API.
|
2018-08-03 02:20:06 +05:30
|
|
|
|
|
|
|
The `klogd` daemon listens to kernel message sources and is responsible
|
|
|
|
for prioritizing and processing operating system messages. The `klogd`
|
|
|
|
daemon can run as a client of `syslogd` or optionally as a standalone
|
|
|
|
program. `klogd` can now be used to decode EIP addresses if it can
|
|
|
|
determine a `System.map` file.
|
|
|
|
|
2019-10-31 12:37:02 +05:30
|
|
|
The included `logger` tool can be used from the command line, or script,
|
|
|
|
to send RFC5424 formatted messages using `libsyslog` to `syslogd` for
|
|
|
|
local or remote logging.
|
|
|
|
|
|
|
|
Main differences from the original sysklogd package are:
|
2018-08-03 02:20:06 +05:30
|
|
|
|
2019-11-02 18:39:42 +05:30
|
|
|
- Support for `include /etc/syslog.d/*.conf`, see example .conf
|
2018-09-24 23:35:19 +05:30
|
|
|
- Built-in log-rotation support, with compression by default, useful for
|
|
|
|
embedded systems. No need for cron and a separate logrotate daemon
|
2019-10-31 12:37:02 +05:30
|
|
|
- Full [RFC3164][] and [RFC5424][] support
|
|
|
|
- Includes timestamp and hostname, RFC3164 style, in remote logging
|
|
|
|
- Support for sending RFC5424 style remote syslog messages
|
|
|
|
- Includes a `logger` tool with RFC5424 capabilities (`msgid` etc.)
|
|
|
|
- Includes a library and system header replacement for logging
|
2018-08-03 02:20:06 +05:30
|
|
|
- FreeBSD socket receive buffer size patch
|
|
|
|
- Avoid blocking `syslogd` if console is backed up
|
|
|
|
- Touch PID file on `SIGHUP`, for integration with [Finit][]
|
2018-09-24 23:35:19 +05:30
|
|
|
- GNU configure & build system to ease porting/cross-compiling
|
2018-09-25 13:46:17 +05:30
|
|
|
- Support for configuring remote syslog timeout
|
2018-08-03 02:20:06 +05:30
|
|
|
|
|
|
|
|
|
|
|
Build & Install
|
|
|
|
---------------
|
|
|
|
|
|
|
|
The GNU Configure & Build system use `/usr/local` as the default install
|
|
|
|
prefix. In many cases this is useful, but this means the configuration
|
|
|
|
files and cache files will also use that same prefix. Most users have
|
|
|
|
come to expect those files in `/etc/` and `/var/run/` and configure has
|
|
|
|
a few useful options that are recommended to use:
|
|
|
|
|
|
|
|
$ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
|
|
|
|
$ make -j5
|
|
|
|
$ sudo make install-strip
|
|
|
|
|
|
|
|
You may want to remove the `--prefix=/usr` option.
|
|
|
|
|
|
|
|
|
|
|
|
Building from GIT
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
If you want to contribute, or just try out the latest but unreleased
|
|
|
|
features, then you need to know a few things about the [GNU build
|
|
|
|
system][buildsystem]:
|
|
|
|
|
|
|
|
- `configure.ac` and a per-directory `Makefile.am` are key files
|
|
|
|
- `configure` and `Makefile.in` are generated from `autogen.sh`,
|
|
|
|
they are not stored in GIT but automatically generated for the
|
|
|
|
release tarballs
|
|
|
|
- `Makefile` is generated by `configure` script
|
|
|
|
|
|
|
|
To build from GIT you first need to clone the repository and run the
|
|
|
|
`autogen.sh` script. This requires `automake` and `autoconf` to be
|
|
|
|
installed on your system.
|
|
|
|
|
|
|
|
git clone https://github.com/troglobit/sysklogd.git
|
|
|
|
cd sysklogd/
|
|
|
|
./autogen.sh
|
|
|
|
./configure && make
|
|
|
|
|
|
|
|
GIT sources are a moving target and are not recommended for production
|
|
|
|
systems, unless you know what you are doing!
|
|
|
|
|
|
|
|
|
|
|
|
Origin & References
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
This is the continuation of the original sysklogd by [Martin Schulze][].
|
2019-10-31 12:37:02 +05:30
|
|
|
Now maintained and heavilty updated by [Joachim Nilsson][]. Please file
|
|
|
|
bug reports, or send pull requests for bug fixes and proposed extensions
|
|
|
|
at [GitHub][].
|
2018-08-03 02:20:06 +05:30
|
|
|
|
2019-10-31 12:37:02 +05:30
|
|
|
[RFC3164]: https://tools.ietf.org/html/rfc3164
|
|
|
|
[RFC5424]: https://tools.ietf.org/html/rfc5424
|
2018-08-03 02:20:06 +05:30
|
|
|
[Martin Schulze]: http://www.infodrom.org/projects/sysklogd/
|
|
|
|
[Joachim Nilsson]: http://troglobit.com
|
|
|
|
[Finit]: https://github.com/troglobit/finit
|
|
|
|
[GitHub]: https://github.com/troglobit/sysklogd
|
|
|
|
[buildsystem]: https://airs.com/ian/configure/
|
|
|
|
[License]: https://en.wikipedia.org/wiki/GPL_license
|
|
|
|
[License Badge]: https://img.shields.io/badge/License-GPL%20v2-blue.svg
|
|
|
|
[Travis]: https://travis-ci.org/troglobit/sysklogd
|
|
|
|
[Travis Status]: https://travis-ci.org/troglobit/sysklogd.png?branch=master
|
2019-11-03 22:29:51 +05:30
|
|
|
[Coverity Scan]: https://scan.coverity.com/projects/19540
|
|
|
|
[Coverity Status]: https://scan.coverity.com/projects/19540/badge.svg
|