Initial commit for Tizen
[profile/extras/shadow-utils.git] / libmisc / sulog.c
1 /*
2  * Copyright (c) 1989 - 1992, Julianne Frances Haugh
3  * Copyright (c) 1996 - 2000, Marek Michałkiewicz
4  * Copyright (c) 2001 - 2005, Tomasz Kłoczko
5  * Copyright (c) 2008       , Nicolas François
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the copyright holders or contributors may not be used to
17  *    endorse or promote products derived from this software without
18  *    specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23  * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
24  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include <config.h>
34
35 #ident "$Id: sulog.c 2849 2009-04-30 21:08:49Z nekral-guest $"
36
37 #include <sys/types.h>
38 #include <sys/stat.h>
39 #include <stdio.h>
40 #include <time.h>
41 #include "prototypes.h"
42 #include "defines.h"
43 #include "getdef.h"
44
45 /*
46  * sulog - log a SU command execution result
47  */
48 void sulog (const char *tty, bool success, const char *oldname, const char *name)
49 {
50         char *sulog_file;
51         time_t now;
52         struct tm *tm;
53         FILE *fp;
54         mode_t oldmask;
55         gid_t oldgid = 0;
56
57         if (success) {
58                 SYSLOG ((LOG_INFO,
59                         "Successful su for %s by %s",name,oldname));
60         } else {
61                 SYSLOG ((LOG_NOTICE,
62                         "FAILED su for %s by %s",name,oldname));
63         }
64
65         if ((sulog_file = getdef_str ("SULOG_FILE")) == (char *) 0)
66                 return;
67
68         oldgid = getgid ();
69         oldmask = umask (077);
70         /* Switch to group root to avoid creating the sulog file with
71          * the wrong group ownership. */
72         if ((oldgid != 0) && (setgid (0) != 0)) {
73                 SYSLOG ((LOG_INFO,
74                          "su session not logged to %s", sulog_file));
75                 /* Continue, but do not switch back to oldgid later */
76                 oldgid = 0;
77         }
78         fp = fopen (sulog_file, "a+");
79         (void) umask (oldmask);
80         if ((oldgid != 0) && (setgid (oldgid) != 0)) {
81                 perror ("setgid");
82                 SYSLOG ((LOG_ERR,
83                          "can't switch back to group `%d' in sulog",
84                          oldgid));
85                 /* Do not return if the group permission were raised. */
86                 exit (EXIT_FAILURE);
87         }
88         if (fp == (FILE *) 0) {
89                 return;         /* can't open or create logfile */
90         }
91
92         (void) time (&now);
93         tm = localtime (&now);
94
95         fprintf (fp, "SU %.02d/%.02d %.02d:%.02d %c %s %s-%s\n",
96                  tm->tm_mon + 1, tm->tm_mday, tm->tm_hour, tm->tm_min,
97                  success ? '+' : '-', tty, oldname, name);
98
99         (void) fflush (fp);
100         fsync (fileno (fp));
101         fclose (fp);
102         /* TODO: log if failure */
103 }
104