Logging, Log File Rotation, and Syslog Tutorial

Logging Overview:

To identify problems and trends, and to trouble-shoot them, requires observing events over a period of time (historical monitoring).  Since it is generally impossible to observe all events as they occur, most daemons record important events to files known as log files

Early services managed their own files.  Today most (but not all!) can use the logging daemon syslog to collect, filter, store, alert, and forward logging data.  Syslog has the added benefit of somewhat standardizing log file formats, making it much easier to examine log data with various standard tools.  However some daemons may need to have their default logging configuration changed to have them take advantage of syslog (or indeed, provide any log data at all).

An important part of a system administrator's job is to regularly check various log files.  Be sure to learn where your hosts keep their log files as the directory is different for different flavors of *nix.

For most distributions of Linux, you should examine various log files in /var/log, especially the main (default) log file messages.  Use the dmesg command (and /var/log/boot.log) to see boot problems, hardware issues (and identification).  Copy /tmp/install.log to someplace safe.  (Must do this on first boot as /tmp gets erased on reboot.)  The secure log is also very important to monitor.

Other log files include audit/* (for SE Linux and related log messages), wtmp is a log of who logged in and when (This is a binary file, so view with last command and manage with the Linux sessreg command).  utmp is a binary file (not a log) of who's logged in now.  Two related files may exist (create these as empty files to use): btmp (a log of failed login attempts) and lastlog (not a log file but a sparse file — examine it with ls -l and du), which shows the last login per user id (view with finger and lastlog commands).

Note that most network devices (routers, switches, printers) today can produce syslog data.  You should examine these log files too.

Collect logging data from all important sources, including network devices, printers, workstations, and Windows servers.

Log files need to be examined or they are useless.  However it would be foolish to try to read all log data, all the time.  Usually summaries of the data are sufficient to alert you to potential problems, at which time you would then examine the relevant log entries.  This can be partially automated with log alerting and parsing tools (such as logwatch, logcheck, swatch, logsurfer, and SEC), GUI tools to examine and mange log files, and standard text processing tools such as grep, tail, tail -f, and less  (For example:  grep service logFile |grep date |less.)

Use SNMP/RMON to monitor network devices and networks.

Most hosts today ship with a basic syslog daemon but a number of replacement versions (that are compatible) include many new features.  Some of these replacements are:

New syslog IETF standards (RFCs) for syslog are being developed, to address security issues.

Windows (and Macintosh) System Logs:

Non Unix/Linux systems also maintain log files, but usually not in syslog format.  Windows systems uses binary event logs, that automatically overwrite themselves (!) when full.  However binary the format is publicly available and a number of Perl and other tools exists to convert these to text.

Windows logs are consistent across all Windows versions and services (e.g., Event ID 529 always means a failed login).  And as event logging is built into the OS it is generally more secure than syslog.

Windows provides no mechanism to forward events to a central loghost.  Instead there are a number of third party tools for this such as Kiwi syslog for Windows, EventReporter, Snare for Windows, and even roll-your-own with Perl module Win32::EventLog.

The Windows event log is really 3 logs: the system log, the security log, and the application log.  (Think of these as 3 syslog facilities.)  Each log is stored in a separate file in ...\system32\conf\SysEvent.Evt, ...\SecEvent.Evt, and ...\AppEvent.Evt.

Applications must register themselves to be able to use the event log service (see registry key HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Eventlog\Application).

System and service event logging is controlled by the Windows Audit Policy (Control Panel→Administrative Tools→Local Security Policy→Audit Policy).

Windows provides logevent (equivalent to the Unix/Linux logger command line tool) to create event log messages.

For older Macintosh systems (OS9 and earlier) you can use the syslog compatible netlogger tool.

Other Logging Issues:

Syslog Overview:

What gets logged by syslogd and where it goes is controlled by /etc/syslog.conf.  In the past (and to a small extent today), servers had hard-coded filenames to use for their log files.  This is a very inflexible scheme, and log files would wind up scattered all over the disk.  A modern system uses syslog to centralize logging.  A single configuration file can control what gets logged (and what gets ignored), and where the log messages should go. 

Here's how it works:  A developer uses the syslog API function (or uses the logger program in shell scripts) to send log messages to syslogd.  The information passed to syslogd includes the source of the log message (called a facility) and the priority of the log message.

syslogd then matches the facility and priority against selectors (combinations of facilities and priorities) in its configuration file.  For the selector(s) that match the messages is sent to the corresponding destination(s).

Note that many PAM modules send log messages to syslogd.  Also, some systems have a separate log daemon for the kernel, klogd, that you may need to configure.

Most log files go under /var/log directory.  Besides the more specific log files, there is a general system log file usually called messages.  Other important log files to monitor include: boot.log, dmesg (also the dmesg command), maillog, secure, wtmp (examine with the last command), and yum.log (or whatever system you use instead, to see what was installed recently).

Log files contain sensitive information!  You must protect these files by setting permissions carefully!

Syslog.conf Syntax:

Aside from blank lines and comment lines, syslog.conf has lines with two parts:

Each log message is matched against the selectors.  For each matching selector, the associated action is done.

Syslog Selectors — Facilities and Priorities:

The source of a log message is referred to as a facility.  For example any email related program that sends a log message uses the mail facility no matter what the name of the program actually was.

There is no way to define your own facilities but there are many predefined ones:

Note that syslog trusts the software to use the correct facility when sending a log message.

Due to the limited number of facilities available, it is inevitable that some services will wind up using the same facility for their log messages.  Syslog allows programs to supply an identifying string, known as a tag, that syslog will prepend to each line of the log messages.  This permits easy selection using grep or other tools, to filter only the log messages of interest.

Priorities:

The priority is one of the following eight levels, which are ranked in order from high to low priority:

When specifying a priority, that and all higher ones are selected too.  A selector is one or more facilities (separated by commas), a dot, then the priority.  More complex selectors are possible too; one such is shown below.)  Some example selectors:

mail.*       mail facility, any priority
mail.debug   mail facility, debug or higher priority (same as *)
mail,news.*  all messages from mail or news
auth.warning all security messages of warning or higher priority
*.info       all messages from any facility except debug msgs
*.=info      any facility, info msgs only (and not higher)
*.!err       any facility, pri <= err only
*.!=alert    any facility, any priority except alert
*.info;mail,news,authpriv.none
             all msgs with info or higher priority except
             mail, news, and authpriv

That last one is tricky.  Using multiple selectors on a single line this way allows you to specify a general category first, then for the matching log messages you can specify exceptions.  Always go from most general selector to most specific or your setup may not log what you think it should!

Syslog Actions — files, users, pipes:

Log messages don't only have to go to files, you can direct them to user terminals, run them through other programs (with a pipe, to email, pager, or just a log file analyzer), or send them to another host running syslogd.

(This last is handy if you have a network of computers you must monitor.  Besides consolidating many log files, there is great security in using a remote log server that has no other services on it.  This is because when a server is hacked the attacker usually destroys the log files.  This scheme protects against disk crashes too.)

Here's the syntax for the actions:

Using logger:

   logger [-p facility.priority] [-t tag] message

The default selector is user.info, and the default tag is logger.

Log File Rotation:

One problem with log files is that over time they grow.  When a system is experiencing problems the log files can grow very large, very quickly.  Periodically trimming or removing log files is necessary.  This is known as log file rotation and is a service usually run via cron.

The most popular scheme is to rename a log file log as log.1 and to start a new log file.  Next time, log.1 is renamed to log.2, log is renamed to log.1, and a new log file is started.  This continues for N previous files.

Since dealing with log file rotation is a common problem most Unix systems have a standard way to deal with it.  On Solaris9 you have /usr/sbin/logadm (/usr/lib/newsyslog on earlier Solaris).

On Linux you have the logrotate command.  This command runs via the cron facility.  You can set your log rotation policy for any log file by editing the file logrotate.conf, or editing files in the /etc/logrotate.d directory.  Here's a sample logrotate.conf file:

#Global settings:

# rotate log files weekly
weekly
# keep 4 weeks worth of backlogs
rotate 4
# Create new (empty) log files after rotating old ones
create 0644 root root

# Per log file settings:

/var/log/cups/*_log {
    missingok
    notifempty
    errors root
    postrotate
        /etc/init.d/cups condrestart >/dev/null 2>&1 || true
    endscript
}

Links: