bb4267
From 72962208c42ea202f1e31f2f3ac1b523cd545b06 Mon Sep 17 00:00:00 2001
bb4267
From: Steve Grubb <sgrubb@redhat.com>
bb4267
Date: Fri, 3 Aug 2018 11:33:05 +0200
bb4267
Subject: [PATCH] Add audit events around user life cycle
bb4267
bb4267
---
bb4267
 Makefile.am        | 18 ++++++-------
bb4267
 apps/lchage.c      |  5 ++++
bb4267
 apps/lchsh.c       |  7 +++++
bb4267
 apps/lgroupadd.c   |  5 ++++
bb4267
 apps/lgroupdel.c   |  6 +++++
bb4267
 apps/lgroupmod.c   | 36 +++++++++++++++++++++++++
bb4267
 apps/luseradd.c    | 16 +++++++++++
bb4267
 apps/luserdel.c    | 17 ++++++++++++
bb4267
 apps/lusermod.c    | 38 +++++++++++++++++++++++++-
bb4267
 configure.ac       | 17 ++++++++++++
bb4267
 lib/common.c       | 66 +++++++++++++++++++++++++++++++++++++++++++++-
bb4267
 lib/user_private.h | 15 +++++++++++
bb4267
 12 files changed, 235 insertions(+), 11 deletions(-)
bb4267
bb4267
diff --git a/Makefile.am b/Makefile.am
bb4267
index 080f97e8cc81a77dd0413c3b6fe7fe8002499393..9f099bd71941a869274a502a3130802731d83c24 100644
bb4267
--- a/Makefile.am
bb4267
+++ b/Makefile.am
bb4267
@@ -116,7 +116,7 @@ apps_libapputil_la_LDFLAGS = $(GOBJECT_LIBS) -lpam -lpam_misc $(SELINUX_LIBS)
bb4267
 
bb4267
 apps_lchage_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS)
bb4267
 apps_lchage_LDADD = lib/libuser.la $(LTLIBINTL)
bb4267
-apps_lchage_LDFLAGS = $(GMODULE_LIBS) -lpopt
bb4267
+apps_lchage_LDFLAGS = $(GMODULE_LIBS) -lpopt $(AUDIT_LIBS)
bb4267
 
bb4267
 apps_lchfn_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS)
bb4267
 apps_lchfn_LDADD = apps/libapputil.la lib/libuser.la $(LTLIBINTL)
bb4267
@@ -124,19 +124,19 @@ apps_lchfn_LDFLAGS = $(GMODULE_LIBS) -lpopt
bb4267
 
bb4267
 apps_lchsh_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS)
bb4267
 apps_lchsh_LDADD = apps/libapputil.la lib/libuser.la $(LTLIBINTL)
bb4267
-apps_lchsh_LDFLAGS = $(GMODULE_LIBS) -lpopt
bb4267
+apps_lchsh_LDFLAGS = $(GMODULE_LIBS) -lpopt $(AUDIT_LIBS)
bb4267
 
bb4267
 apps_lgroupadd_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS)
bb4267
 apps_lgroupadd_LDADD = lib/libuser.la $(LTLIBINTL)
bb4267
-apps_lgroupadd_LDFLAGS = $(GMODULE_LIBS) -lpopt
bb4267
+apps_lgroupadd_LDFLAGS = $(GMODULE_LIBS) -lpopt $(AUDIT_LIBS)
bb4267
 
bb4267
 apps_lgroupdel_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS)
bb4267
 apps_lgroupdel_LDADD = lib/libuser.la $(LTLIBINTL)
bb4267
-apps_lgroupdel_LDFLAGS = $(GMODULE_LIBS) -lpopt
bb4267
+apps_lgroupdel_LDFLAGS = $(GMODULE_LIBS) -lpopt $(AUDIT_LIBS)
bb4267
 
bb4267
 apps_lgroupmod_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS)
bb4267
 apps_lgroupmod_LDADD = lib/libuser.la $(LTLIBINTL)
bb4267
-apps_lgroupmod_LDFLAGS = $(GMODULE_LIBS) -lpopt
bb4267
+apps_lgroupmod_LDFLAGS = $(GMODULE_LIBS) -lpopt $(AUDIT_LIBS)
bb4267
 
bb4267
 apps_lid_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS)
bb4267
 apps_lid_LDADD = lib/libuser.la $(LTLIBINTL)
bb4267
@@ -152,15 +152,15 @@ apps_lpasswd_LDFLAGS = $(GMODULE_LIBS) -lpopt
bb4267
 
bb4267
 apps_luseradd_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS)
bb4267
 apps_luseradd_LDADD = lib/libuser.la $(LTLIBINTL)
bb4267
-apps_luseradd_LDFLAGS = $(GMODULE_LIBS) -lpopt
bb4267
+apps_luseradd_LDFLAGS = $(GMODULE_LIBS) -lpopt $(AUDIT_LIBS)
bb4267
 
bb4267
 apps_luserdel_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS)
bb4267
 apps_luserdel_LDADD = lib/libuser.la $(LTLIBINTL)
bb4267
-apps_luserdel_LDFLAGS = $(GMODULE_LIBS) -lpopt
bb4267
+apps_luserdel_LDFLAGS = $(GMODULE_LIBS) -lpopt $(AUDIT_LIBS)
bb4267
 
bb4267
 apps_lusermod_CPPFLAGS = $(AM_CPPFLAGS) $(LOCALEDIR_CPPFLAGS)
bb4267
 apps_lusermod_LDADD = lib/libuser.la $(LTLIBINTL)
bb4267
-apps_lusermod_LDFLAGS = $(GMODULE_LIBS) -lpopt
bb4267
+apps_lusermod_LDFLAGS = $(GMODULE_LIBS) -lpopt $(AUDIT_LIBS)
bb4267
 
bb4267
 lib_libuser_la_SOURCES = lib/common.c lib/config.c lib/entity.c lib/error.c \
bb4267
 	lib/fs.c lib/getdate.y lib/internal.h lib/misc.c lib/modules.c \
bb4267
@@ -170,7 +170,7 @@ lib_libuser_la_CPPFLAGS = $(GMODULE_CFLAGS) -Ilib $(LOCALEDIR_CPPFLAGS) \
bb4267
 	-DMODULEDIR='"$(pkglibdir)"' -DNSCD='"$(NSCD)"' \
bb4267
 	-DSYSCONFDIR='"$(sysconfdir)"'
bb4267
 lib_libuser_la_LDFLAGS = $(GMODULE_LIBS) $(CRYPT_LIBS) $(SELINUX_LIBS) \
bb4267
-	-version-info 6:2:5
bb4267
+	$(AUDIT_LIBS) -version-info 6:2:5
bb4267
 lib_libuser_la_LIBADD = $(LTLIBINTL)
bb4267
 
bb4267
 modules_libuser_files_la_SOURCES = modules/files.c
bb4267
diff --git a/apps/lchage.c b/apps/lchage.c
bb4267
index bad296ccf0755dd6781b1a2e6397dccb1f7dbd12..1a4f04883062cb11f15a2e34d37e127fef2a374e 100644
bb4267
--- a/apps/lchage.c
bb4267
+++ b/apps/lchage.c
bb4267
@@ -29,6 +29,7 @@
bb4267
 #include <popt.h>
bb4267
 #include <glib.h>
bb4267
 #include "../lib/user.h"
bb4267
+#include "../lib/user_private.h"
bb4267
 #include "apputil.h"
bb4267
 
bb4267
 #define INVALID_LONG LONG_MIN
bb4267
@@ -239,8 +240,12 @@ main(int argc, const char **argv)
bb4267
 			fprintf(stderr,
bb4267
 				_("Failed to modify aging information for %s: "
bb4267
 				  "%s\n"), user, lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_USER_MGMT, "change-age", user,
bb4267
+				AUDIT_NO_ID, 0);
bb4267
 			return 3;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_USER_MGMT, "change-age", user,
bb4267
+				AUDIT_NO_ID, 1);
bb4267
 
bb4267
 		lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD);
bb4267
 	}
bb4267
diff --git a/apps/lchsh.c b/apps/lchsh.c
bb4267
index 7c8a9246d4548a7f6fbacce91cdfdf4372799943..555ed2ea7b0d5a90bf37a7f23c398b382ac45a38 100644
bb4267
--- a/apps/lchsh.c
bb4267
+++ b/apps/lchsh.c
bb4267
@@ -26,6 +26,7 @@
bb4267
 #include <string.h>
bb4267
 #include <unistd.h>
bb4267
 #include "../lib/user.h"
bb4267
+#include "../lib/user_private.h"
bb4267
 #include "apputil.h"
bb4267
 
bb4267
 int
bb4267
@@ -120,6 +121,8 @@ main(int argc, const char **argv)
bb4267
 				      NULL, &error) == FALSE) {
bb4267
 			fprintf(stderr, _("Shell not changed: %s\n"),
bb4267
 				lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_USER_MGMT, "change-shell", user,
bb4267
+				AUDIT_NO_ID, 0);
bb4267
 			return 1;
bb4267
 		}
bb4267
 		/* Modify the in-memory structure's shell attribute. */
bb4267
@@ -132,9 +135,13 @@ main(int argc, const char **argv)
bb4267
 		if (lu_user_modify(ctx, ent, &error)) {
bb4267
 			g_print(_("Shell changed.\n"));
bb4267
 			lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD);
bb4267
+			lu_audit_logger(AUDIT_USER_MGMT, "change-shell", user,
bb4267
+				AUDIT_NO_ID, 1);
bb4267
 		} else {
bb4267
 			fprintf(stderr, _("Shell not changed: %s\n"),
bb4267
 				lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_USER_MGMT, "change-shell", user,
bb4267
+				AUDIT_NO_ID, 0);
bb4267
 			return 1;
bb4267
 		}
bb4267
 	}
bb4267
diff --git a/apps/lgroupadd.c b/apps/lgroupadd.c
bb4267
index d73ee864adac9e5dbc7d98392190db225d116143..3fa2a1df5ac5838ef256541c07ae6028e4f6a80b 100644
bb4267
--- a/apps/lgroupadd.c
bb4267
+++ b/apps/lgroupadd.c
bb4267
@@ -118,6 +118,8 @@ main(int argc, const char **argv)
bb4267
 	if (lu_group_add(ctx, ent, &error) == FALSE) {
bb4267
 		fprintf(stderr, _("Group creation failed: %s\n"),
bb4267
 			lu_strerror(error));
bb4267
+		lu_audit_logger(AUDIT_ADD_GROUP, "add-group", name,
bb4267
+				AUDIT_NO_ID, 0);
bb4267
 		return 2;
bb4267
 	}
bb4267
 
bb4267
@@ -127,5 +129,8 @@ main(int argc, const char **argv)
bb4267
 
bb4267
 	lu_end(ctx);
bb4267
 
bb4267
+	lu_audit_logger(AUDIT_ADD_GROUP, "add-group", name,
bb4267
+				AUDIT_NO_ID, 1);
bb4267
+
bb4267
 	return 0;
bb4267
 }
bb4267
diff --git a/apps/lgroupdel.c b/apps/lgroupdel.c
bb4267
index e0fd6c6d42f55eef82f0790f551721972c129b5f..c5ccbed95cb834719cd109a81e6f979bb737dc71 100644
bb4267
--- a/apps/lgroupdel.c
bb4267
+++ b/apps/lgroupdel.c
bb4267
@@ -24,6 +24,7 @@
bb4267
 #include <locale.h>
bb4267
 #include <popt.h>
bb4267
 #include "../lib/user.h"
bb4267
+#include "../lib/user_private.h"
bb4267
 #include "apputil.h"
bb4267
 
bb4267
 int
bb4267
@@ -90,6 +91,8 @@ main(int argc, const char **argv)
bb4267
 	if (lu_group_delete(ctx, ent, &error) == FALSE) {
bb4267
 		fprintf(stderr, _("Group %s could not be deleted: %s\n"),
bb4267
 			group, lu_strerror(error));
bb4267
+		lu_audit_logger(AUDIT_DEL_GROUP, "delete-group", group,
bb4267
+				AUDIT_NO_ID, 0);
bb4267
 		return 3;
bb4267
 	}
bb4267
 
bb4267
@@ -99,5 +102,8 @@ main(int argc, const char **argv)
bb4267
 
bb4267
 	lu_end(ctx);
bb4267
 
bb4267
+	lu_audit_logger(AUDIT_DEL_GROUP, "delete-group", group,
bb4267
+			AUDIT_NO_ID, 1);
bb4267
+
bb4267
 	return 0;
bb4267
 }
bb4267
diff --git a/apps/lgroupmod.c b/apps/lgroupmod.c
bb4267
index 21170e06f37370d7b2f2d936048ae7abf24fd181..0ad0ae4f39d32435b4668ef15ec678d8ea319e5c 100644
bb4267
--- a/apps/lgroupmod.c
bb4267
+++ b/apps/lgroupmod.c
bb4267
@@ -138,8 +138,14 @@ main(int argc, const char **argv)
bb4267
 		    == FALSE) {
bb4267
 			fprintf(stderr, _("Failed to set password for group "
bb4267
 				"%s: %s\n"), group, lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_GRP_MGMT,
bb4267
+					"changing-group-passwd", group,
bb4267
+					AUDIT_NO_ID, 0);
bb4267
 			return 4;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_GRP_MGMT,
bb4267
+				"changing-group-passwd", group,
bb4267
+				AUDIT_NO_ID, 1);
bb4267
 	}
bb4267
 
bb4267
 	if (cryptedUserPassword) {
bb4267
@@ -147,8 +153,14 @@ main(int argc, const char **argv)
bb4267
 				     &error) == FALSE) {
bb4267
 			fprintf(stderr, _("Failed to set password for group "
bb4267
 				"%s: %s\n"), group, lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_GRP_MGMT,
bb4267
+					"changing-group-passwd", group,
bb4267
+					AUDIT_NO_ID, 0);
bb4267
 			return 5;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_GRP_MGMT,
bb4267
+				"changing-group-passwd", group,
bb4267
+				AUDIT_NO_ID, 1);
bb4267
 	}
bb4267
 
bb4267
 	if (lock) {
bb4267
@@ -156,8 +168,14 @@ main(int argc, const char **argv)
bb4267
 			fprintf(stderr,
bb4267
 				_("Group %s could not be locked: %s\n"), group,
bb4267
 				lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_GRP_MGMT,
bb4267
+					"changing-group-lock", group,
bb4267
+					AUDIT_NO_ID, 0);
bb4267
 			return 6;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_GRP_MGMT,
bb4267
+				"changing-group-lock", group,
bb4267
+				AUDIT_NO_ID, 1);
bb4267
 	}
bb4267
 
bb4267
 	if (unlock) {
bb4267
@@ -165,8 +183,14 @@ main(int argc, const char **argv)
bb4267
 			fprintf(stderr,
bb4267
 				_("Group %s could not be unlocked: %s\n"),
bb4267
 				group, lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_GRP_MGMT,
bb4267
+					"changing-group-lock", group,
bb4267
+					AUDIT_NO_ID, 0);
bb4267
 			return 7;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_GRP_MGMT,
bb4267
+				"changing-group-lock", group,
bb4267
+				AUDIT_NO_ID, 1);
bb4267
 	}
bb4267
 
bb4267
 	change = gid || addAdmins || remAdmins || addMembers || remMembers;
bb4267
@@ -241,8 +265,14 @@ main(int argc, const char **argv)
bb4267
 	if (change && lu_group_modify(ctx, ent, &error) == FALSE) {
bb4267
 		fprintf(stderr, _("Group %s could not be modified: %s\n"),
bb4267
 			group, lu_strerror(error));
bb4267
+		lu_audit_logger(AUDIT_GRP_MGMT,
bb4267
+				"changing-group-members", group,
bb4267
+				AUDIT_NO_ID, 0);
bb4267
 		return 8;
bb4267
 	}
bb4267
+	lu_audit_logger(AUDIT_GRP_MGMT,
bb4267
+			"changing-group-members", group,
bb4267
+			AUDIT_NO_ID, 1);
bb4267
 	if (gidNumber != LU_VALUE_INVALID_ID) {
bb4267
 		users = lu_users_enumerate_by_group_full(ctx, gid, &error);
bb4267
 
bb4267
@@ -256,8 +286,14 @@ main(int argc, const char **argv)
bb4267
 			fprintf(stderr,
bb4267
 				_("Group %s could not be modified: %s\n"),
bb4267
 				group, lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_GRP_MGMT,
bb4267
+				"changing-group-id", group,
bb4267
+				AUDIT_NO_ID, 0);
bb4267
 			return 8;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_GRP_MGMT,
bb4267
+			"changing-group-id", group,
bb4267
+			AUDIT_NO_ID, 1);
bb4267
 	}
bb4267
 
bb4267
 	lu_ent_free(ent);
bb4267
diff --git a/apps/luseradd.c b/apps/luseradd.c
bb4267
index 7839183c00f892ad50f77f5aed6ada07cd3c125b..9d7f4f10a9c6f849e551f017f05c2e67e4a56259 100644
bb4267
--- a/apps/luseradd.c
bb4267
+++ b/apps/luseradd.c
bb4267
@@ -210,8 +210,12 @@ main(int argc, const char **argv)
bb4267
 				lu_error_free(&error);
bb4267
 			}
bb4267
 			lu_end(ctx);
bb4267
+			lu_audit_logger(AUDIT_ADD_GROUP, "add-group", name,
bb4267
+					AUDIT_NO_ID, 0);
bb4267
 			return 1;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_ADD_GROUP, "add-group", name,
bb4267
+				AUDIT_NO_ID, 1);
bb4267
 	}
bb4267
 
bb4267
 	/* Retrieve the group ID. */
bb4267
@@ -259,9 +263,13 @@ main(int argc, const char **argv)
bb4267
 	if (lu_user_add(ctx, ent, &error) == FALSE) {
bb4267
 		fprintf(stderr, _("Account creation failed: %s.\n"),
bb4267
 			lu_strerror(error));
bb4267
+		lu_audit_logger(AUDIT_ADD_USER, "add-user", name,
bb4267
+					AUDIT_NO_ID, 0);
bb4267
+
bb4267
 		return 3;
bb4267
 	}
bb4267
         lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD);
bb4267
+	lu_audit_logger(AUDIT_ADD_USER, "add-user", name, AUDIT_NO_ID, 1);
bb4267
 
bb4267
 	/* If we don't have the the don't-create-home flag, create the user's
bb4267
 	 * home directory. */
bb4267
@@ -282,8 +290,12 @@ main(int argc, const char **argv)
bb4267
 					&error) == FALSE) {
bb4267
 			fprintf(stderr, _("Error creating %s: %s.\n"),
bb4267
 				homeDirectory, lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_USER_MGMT, "add-home-dir", name,
bb4267
+				uidNumber, 0);
bb4267
 			return 7;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_USER_MGMT, "add-home-dir", name,
bb4267
+				uidNumber, 1);
bb4267
 
bb4267
 		/* Create a mail spool for the user. */
bb4267
 		if (lu_mail_spool_create(ctx, ent, &error) != TRUE) {
bb4267
@@ -311,8 +323,12 @@ main(int argc, const char **argv)
bb4267
 			fprintf(stderr, _("Error setting password for user "
bb4267
 					  "%s: %s.\n"), name,
bb4267
 				lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_USER_CHAUTHTOK, "updating-password",
bb4267
+					name, uidNumber, 0);
bb4267
 			return 3;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_USER_CHAUTHTOK, "updating-password",
bb4267
+					name, uidNumber, 1);
bb4267
 	}
bb4267
 	lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD);
bb4267
 
bb4267
diff --git a/apps/luserdel.c b/apps/luserdel.c
bb4267
index 2f39a4ffb8ae47ac5dc3c84270b54a8ca68c7403..7e20fa7ea9bf4082967bc6931a8557936bfda0a2 100644
bb4267
--- a/apps/luserdel.c
bb4267
+++ b/apps/luserdel.c
bb4267
@@ -26,6 +26,7 @@
bb4267
 #include <string.h>
bb4267
 #include <unistd.h>
bb4267
 #include "../lib/user.h"
bb4267
+#include "../lib/user_private.h"
bb4267
 #include "apputil.h"
bb4267
 
bb4267
 int
bb4267
@@ -93,8 +94,12 @@ main(int argc, const char **argv)
bb4267
 	if (lu_user_delete(ctx, ent, &error) == FALSE) {
bb4267
 		fprintf(stderr, _("User %s could not be deleted: %s.\n"),
bb4267
 			user, lu_strerror(error));
bb4267
+		lu_audit_logger(AUDIT_DEL_USER, "delete-user", user,
bb4267
+				AUDIT_NO_ID, 0);
bb4267
 		return 3;
bb4267
 	}
bb4267
+	lu_audit_logger(AUDIT_DEL_USER, "delete-user", user,
bb4267
+			AUDIT_NO_ID, 1);
bb4267
 
bb4267
 	lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD);
bb4267
 
bb4267
@@ -126,9 +131,15 @@ main(int argc, const char **argv)
bb4267
 				fprintf(stderr, _("Group %s could not be "
bb4267
 						  "deleted: %s.\n"), tmp,
bb4267
 					lu_strerror(error));
bb4267
+				lu_audit_logger_with_group (AUDIT_DEL_GROUP,
bb4267
+					"delete-group", user, AUDIT_NO_ID,
bb4267
+					tmp, 0);
bb4267
 				return 7;
bb4267
 			}
bb4267
 		}
bb4267
+		lu_audit_logger_with_group (AUDIT_DEL_GROUP,
bb4267
+					    "delete-group", user,
bb4267
+					    AUDIT_NO_ID, tmp, 1);
bb4267
 		lu_ent_free(group_ent);
bb4267
 		lu_nscd_flush_cache(LU_NSCD_CACHE_GROUP);
bb4267
 	}
bb4267
@@ -138,8 +149,14 @@ main(int argc, const char **argv)
bb4267
 			fprintf(stderr,
bb4267
 				_("Error removing home directory: %s.\n"),
bb4267
 				lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_USER_MGMT,
bb4267
+					"deleting-home-directory", user,
bb4267
+					AUDIT_NO_ID, 0);
bb4267
 			return 9;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_USER_MGMT, "deleting-home-directory", user,
bb4267
+				AUDIT_NO_ID, 1);
bb4267
+
bb4267
 		/* Delete the user's mail spool. */
bb4267
 		if (lu_mail_spool_remove(ctx, ent, &error) != TRUE) {
bb4267
 			fprintf(stderr, _("Error removing mail spool: %s"),
bb4267
diff --git a/apps/lusermod.c b/apps/lusermod.c
bb4267
index afec147475736f0b814b5e1f30c77064f3915c20..143157f114c93960fb879d9e6e0c1fb914f3ffcb 100644
bb4267
--- a/apps/lusermod.c
bb4267
+++ b/apps/lusermod.c
bb4267
@@ -179,8 +179,13 @@ main(int argc, const char **argv)
bb4267
 			fprintf(stderr,
bb4267
 				_("Failed to set password for user %s: %s.\n"),
bb4267
 				user, lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_USER_CHAUTHTOK, 
bb4267
+					"updating-password", user,
bb4267
+					uidNumber, 0);
bb4267
 			return 5;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_USER_CHAUTHTOK, "updating-password",
bb4267
+				user, uidNumber, 0);
bb4267
 	}
bb4267
 
bb4267
 	/* If we need to change a user's crypted password, try to change it,
bb4267
@@ -192,8 +197,13 @@ main(int argc, const char **argv)
bb4267
 			fprintf(stderr,
bb4267
 				_("Failed to set password for user %s: %s.\n"),
bb4267
 				user, lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_USER_CHAUTHTOK, 
bb4267
+					"updating-password", user,
bb4267
+					uidNumber, 0);
bb4267
 			return 6;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_USER_CHAUTHTOK, "updating-password",
bb4267
+				user, uidNumber, 0);
bb4267
 	}
bb4267
 
bb4267
 	/* If we need to lock/unlock the user's account, do that. */
bb4267
@@ -202,16 +212,26 @@ main(int argc, const char **argv)
bb4267
 			fprintf(stderr,
bb4267
 				_("User %s could not be locked: %s.\n"),
bb4267
 				user, lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_USER_CHAUTHTOK, 
bb4267
+					"locking-account", user,
bb4267
+					uidNumber, 0);
bb4267
 			return 7;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_USER_CHAUTHTOK, "locking-account",
bb4267
+				user, uidNumber, 0);
bb4267
 	}
bb4267
 	if (unlock) {
bb4267
 		if (lu_user_unlock(ctx, ent, &error) == FALSE) {
bb4267
 			fprintf(stderr,
bb4267
 				_("User %s could not be unlocked: %s.\n"),
bb4267
 				user, lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_USER_CHAUTHTOK, 
bb4267
+					"unlocking-account", user,
bb4267
+					uidNumber, 0);
bb4267
 			return 8;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_USER_CHAUTHTOK, "unlocking-account",
bb4267
+				user, uidNumber, 0);
bb4267
 	}
bb4267
 
bb4267
 	/* Determine if we actually need to change anything. */
bb4267
@@ -274,8 +294,13 @@ main(int argc, const char **argv)
bb4267
 	if (change && (lu_user_modify(ctx, ent, &error) == FALSE)) {
bb4267
 		fprintf(stderr, _("User %s could not be modified: %s.\n"),
bb4267
 			user, lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_USER_MGMT, 
bb4267
+					"modify-account", user,
bb4267
+					uidNumber, 0);
bb4267
 		return 9;
bb4267
 	}
bb4267
+	lu_audit_logger(AUDIT_USER_MGMT, "modify-account",
bb4267
+			user, uidNumber, 1);
bb4267
 	lu_nscd_flush_cache(LU_NSCD_CACHE_PASSWD);
bb4267
 
bb4267
 	/* If the user's name changed, we need to update supplemental
bb4267
@@ -322,12 +347,19 @@ main(int argc, const char **argv)
bb4267
 				}
bb4267
 			}
bb4267
 			/* Save the changes to the group. */
bb4267
-			if (lu_group_modify(ctx, group, &error) == FALSE)
bb4267
+			if (lu_group_modify(ctx, group, &error) == FALSE) {
bb4267
 				fprintf(stderr, _("Group %s could not be "
bb4267
 						  "modified: %s.\n"),
bb4267
 					lu_ent_get_first_string(group,
bb4267
 								LU_GROUPNAME),
bb4267
 					lu_strerror(error));
bb4267
+				lu_audit_logger_with_group(AUDIT_USER_MGMT, 
bb4267
+						    "update-member-in-group", user, uidNumber,
bb4267
+						    lu_ent_get_first_string(group, LU_GROUPNAME),0);
bb4267
+			} else
bb4267
+				lu_audit_logger_with_group(AUDIT_USER_MGMT, 
bb4267
+						    "update-member-in-group", user, uidNumber,
bb4267
+						    lu_ent_get_first_string(group, LU_GROUPNAME),1);
bb4267
 			lu_ent_free(group);
bb4267
 		}
bb4267
 		g_ptr_array_free(groups, TRUE);
bb4267
@@ -353,8 +385,12 @@ main(int argc, const char **argv)
bb4267
 			fprintf(stderr, _("Error moving %s to %s: %s.\n"),
bb4267
 				oldHomeDirectory, homeDirectory,
bb4267
 				lu_strerror(error));
bb4267
+			lu_audit_logger(AUDIT_USER_MGMT, "moving-home-dir",
bb4267
+					user, uidNumber, 0);
bb4267
 			return 12;
bb4267
 		}
bb4267
+		lu_audit_logger(AUDIT_USER_MGMT, "moving-home-dir",
bb4267
+				user, uidNumber, 1);
bb4267
 	}
bb4267
 	g_free(oldHomeDirectory);
bb4267
 
bb4267
diff --git a/configure.ac b/configure.ac
bb4267
index 3e68b16a1f65ff5e5e3e905c1ffce8993e562176..0bd4a67d4c77fa1b701d74dbeab908a192dbf4d7 100644
bb4267
--- a/configure.ac
bb4267
+++ b/configure.ac
bb4267
@@ -118,6 +118,23 @@ if test "x$selinux" != xno ; then
bb4267
 fi
bb4267
 AC_SUBST(SELINUX_LIBS)
bb4267
 
bb4267
+AC_ARG_WITH(audit,
bb4267
+AS_HELP_STRING([--with-audit],[log using Linux Audit in addition to syslog]),
bb4267
+use_audit=$withval,
bb4267
+use_audit=auto)
bb4267
+if test x$use_audit != xno ; then
bb4267
+        AC_SEARCH_LIBS([audit_open], [audit])
bb4267
+        if test x$ac_cv_search_audit_open = xno ; then
bb4267
+                if test x$use_audit != xauto ; then
bb4267
+                        AC_MSG_ERROR([requested Linux Audit, but libaudit was not found])
bb4267
+                fi
bb4267
+        else
bb4267
+                AC_DEFINE(WITH_AUDIT,1,[Define if you want to use Linux Audit.])
bb4267
+		AUDIT_LIBS=-laudit
bb4267
+        fi
bb4267
+fi
bb4267
+AC_SUBST(AUDIT_LIBS)
bb4267
+
bb4267
 AC_C_CONST
bb4267
 AC_TYPE_UID_T
bb4267
 AC_TYPE_MODE_T
bb4267
diff --git a/lib/common.c b/lib/common.c
bb4267
index fc5df7461111908ff3eae59608ce0a51d62e155e..dce7e570ec9c92b56b28f15ab503fb7a641b660e 100644
bb4267
--- a/lib/common.c
bb4267
+++ b/lib/common.c
bb4267
@@ -16,9 +16,10 @@
bb4267
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
bb4267
  */
bb4267
 
bb4267
-#include <config.h>
bb4267
+#include "config.h"
bb4267
 #include <glib.h>
bb4267
 #include <string.h>
bb4267
+#include <stdlib.h>
bb4267
 
bb4267
 #include "internal.h"
bb4267
 #include "user_private.h"
bb4267
@@ -111,3 +112,66 @@ lu_common_sgroup_default(struct lu_module *module,
bb4267
 	g_return_val_if_fail(name != NULL, FALSE);
bb4267
 	return lu_common_group_default(module, name, is_system, ent, error);
bb4267
 }
bb4267
+
bb4267
+#ifdef WITH_AUDIT
bb4267
+static int audit_fd = 0;
bb4267
+
bb4267
+/* result - 1 is "success" and 0 is "failed" */
bb4267
+void lu_audit_logger(int type, const char *op, const char *name,
bb4267
+                        unsigned int id, unsigned int result)
bb4267
+{
bb4267
+	if (audit_fd == 0) {
bb4267
+		/* First time through */
bb4267
+		audit_fd = audit_open();
bb4267
+		if (audit_fd < 0) {
bb4267
+			/* You get these only when the kernel doesn't have
bb4267
+			 * audit compiled in. */
bb4267
+			if (	   (errno == EINVAL)
bb4267
+				|| (errno == EPROTONOSUPPORT)
bb4267
+				|| (errno == EAFNOSUPPORT))
bb4267
+					return;
bb4267
+			fputs("Cannot open audit interface - aborting.\n", stderr);
bb4267
+			exit(EXIT_FAILURE);
bb4267
+		}
bb4267
+	}
bb4267
+	if (audit_fd < 0)
bb4267
+		return;
bb4267
+	audit_log_acct_message(audit_fd, type, NULL, op, name, id,
bb4267
+		NULL, NULL, NULL, (int) result);
bb4267
+}
bb4267
+
bb4267
+/* result - 1 is "success" and 0 is "failed" */
bb4267
+void lu_audit_logger_with_group (int type, const char *op, const char *name,
bb4267
+		unsigned int id, const char *grp, unsigned int result)
bb4267
+{
bb4267
+	int len;
bb4267
+	char enc_group[(LOGIN_NAME_MAX*2)+1], buf[1024];
bb4267
+
bb4267
+	if (audit_fd == 0) {
bb4267
+		/* First time through */
bb4267
+		audit_fd = audit_open();
bb4267
+		if (audit_fd < 0) {
bb4267
+			/* You get these only when the kernel doesn't have
bb4267
+			 * audit compiled in. */
bb4267
+			if (	   (errno == EINVAL)
bb4267
+				|| (errno == EPROTONOSUPPORT)
bb4267
+				|| (errno == EAFNOSUPPORT))
bb4267
+					return;
bb4267
+			fputs("Cannot open audit interface - aborting.\n", stderr);
bb4267
+			exit(EXIT_FAILURE);
bb4267
+		}
bb4267
+	}
bb4267
+	if (audit_fd < 0)
bb4267
+		return;
bb4267
+	len = strnlen(grp, sizeof(enc_group)/2);
bb4267
+	if (audit_value_needs_encoding(grp, len)) {
bb4267
+		snprintf(buf, sizeof(buf), "%s grp=%s", op,
bb4267
+			audit_encode_value(enc_group, grp, len));
bb4267
+	} else {
bb4267
+		snprintf(buf, sizeof(buf), "%s grp=\"%s\"", op, grp);
bb4267
+	}
bb4267
+	audit_log_acct_message(audit_fd, type, NULL, buf, name, id,
bb4267
+			NULL, NULL, NULL, (int) result);
bb4267
+}
bb4267
+#endif
bb4267
+
bb4267
diff --git a/lib/user_private.h b/lib/user_private.h
bb4267
index a4869c138d51519539b6939406cdb0fee23ab7f6..02b813c47ee359db774bb85a2aa7aa12e18d3067 100644
bb4267
--- a/lib/user_private.h
bb4267
+++ b/lib/user_private.h
bb4267
@@ -34,6 +34,9 @@
bb4267
 #ifdef WITH_SELINUX
bb4267
 #include <selinux/selinux.h>
bb4267
 #endif
bb4267
+#ifdef WITH_AUDIT
bb4267
+#include <libaudit.h>
bb4267
+#endif
bb4267
 #include "user.h"
bb4267
 
bb4267
 G_BEGIN_DECLS
bb4267
@@ -357,6 +360,18 @@ id_t lu_get_first_unused_id(struct lu_context *ctx, enum lu_entity_type type,
bb4267
 /* Append a copy of VALUES to DEST */
bb4267
 void lu_util_append_values(GValueArray *dest, GValueArray *values);
bb4267
 
bb4267
+#ifdef WITH_AUDIT
bb4267
+void lu_audit_logger(int type, const char *op, const char *name,
bb4267
+		     unsigned int id, unsigned int result);
bb4267
+void lu_audit_logger_with_group(int type, const char *op, const char *name,
bb4267
+				 unsigned int id, const char *grp,
bb4267
+				 unsigned int result);
bb4267
+#else
bb4267
+#define lu_audit_logger(a, b, c, d, e)
bb4267
+#define lu_audit_logger_with_group(a, b, c, d, e, f)
bb4267
+#endif
bb4267
+#define AUDIT_NO_ID	((unsigned int) -1)
bb4267
+
bb4267
 G_END_DECLS
bb4267
 
bb4267
 #endif
bb4267
-- 
bb4267
2.17.1
bb4267