summaryrefslogtreecommitdiff
path: root/pam_gdm
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2016-08-15 13:48:00 -0400
committerRay Strode <rstrode@redhat.com>2016-08-19 14:56:30 -0400
commit714b6af29b916ac7da0cdab6f83460574ed49cf2 (patch)
tree0f27d0dfe98eda2606103bb054b03753271d9f67 /pam_gdm
parenteee37ace9b14284d44eed8049f25ac390a0c1dc1 (diff)
downloadgdm-714b6af29b916ac7da0cdab6f83460574ed49cf2.tar.gz
pam_gdm: add stub pam module
It doesn't do anything yet, but it will eventually get used for autologin purposes, and maybe other things. https://bugzilla.gnome.org/show_bug.cgi?id=769950
Diffstat (limited to 'pam_gdm')
-rw-r--r--pam_gdm/Makefile.am37
-rw-r--r--pam_gdm/pam_gdm.c78
2 files changed, 115 insertions, 0 deletions
diff --git a/pam_gdm/Makefile.am b/pam_gdm/Makefile.am
new file mode 100644
index 00000000..5ea69d78
--- /dev/null
+++ b/pam_gdm/Makefile.am
@@ -0,0 +1,37 @@
+END_OF_LIST =
+
+AM_CPPFLAGS = \
+ -I$(srcdir) \
+ -I$(builddir) \
+ -I$(top_srcdir) \
+ -I$(top_builddir) \
+ -DG_LOG_DOMAIN=\"Gdm\" \
+ -DDMCONFDIR=\""$(dmconfdir)"\" \
+ -DDATADIR=\""$(datadir)"\" \
+ $(END_OF_LIST)
+
+pam_gdm_la_SOURCES = \
+ pam_gdm.c \
+ $(END_OF_LIST)
+
+pam_gdm_la_CFLAGS = \
+ $(PAM_CFLAGS) \
+ $(END_OF_LIST)
+
+pam_gdm_la_LDFLAGS = \
+ -module \
+ -export-dynamic \
+ -avoid-version \
+ -shared \
+ $(END_OF_LIST)
+
+pam_gdm_la_LIBADD = \
+ $(PAM_LIBS) \
+ $(END_OF_LIST)
+
+
+pam_gdm_LTLIBRARIES = \
+ pam_gdm.la \
+ $(END_OF_LIST)
+
+pam_gdmdir = $(libdir)/security
diff --git a/pam_gdm/pam_gdm.c b/pam_gdm/pam_gdm.c
new file mode 100644
index 00000000..90a05573
--- /dev/null
+++ b/pam_gdm/pam_gdm.c
@@ -0,0 +1,78 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2016 Red Hat, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+#include <security/_pam_macros.h>
+#include <security/pam_ext.h>
+#include <security/pam_misc.h>
+#include <security/pam_modules.h>
+#include <security/pam_modutil.h>
+
+int
+pam_sm_authenticate (pam_handle_t *pamh,
+ int flags,
+ int argc,
+ const char **argv)
+{
+ return PAM_SUCCESS;
+}
+
+int
+pam_sm_setcred (pam_handle_t *pamh,
+ int flags,
+ int argc,
+ const char **argv)
+{
+ return PAM_SUCCESS;
+}
+
+int
+pam_sm_acct_mgmt (pam_handle_t *pamh,
+ int flags,
+ int argc,
+ const char **argv)
+{
+ return PAM_SUCCESS;
+}
+
+int
+pam_sm_chauthtok (pam_handle_t *pamh,
+ int flags,
+ int argc,
+ const char **argv)
+{
+ return PAM_SUCCESS;
+}
+
+int
+pam_sm_open_session (pam_handle_t *pamh,
+ int flags,
+ int argc,
+ const char **argv)
+{
+ return PAM_SUCCESS;
+}
+
+int
+pam_sm_close_session (pam_handle_t *pamh,
+ int flags,
+ int argc,
+ const char **argv)
+{
+ return PAM_SUCCESS;
+}