unix_session.c revision 3970ef31ccf022ca6d11dfb49d296ee0cbcd45a6
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
* Copyright 2015 Lauri Tirkkonen.
* Copyright 2016 Toomas Soome <tsoome@me.com>
*/
#include <strings.h>
#include <fcntl.h>
#include <stdlib.h>
#include <security/pam_appl.h>
#include <security/pam_modules.h>
#include <security/pam_impl.h>
#include <syslog.h>
#include <pwd.h>
#include <shadow.h>
#include <lastlog.h>
#include <ctype.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <libintl.h>
#include <signal.h>
#include <thread.h>
#include <synch.h>
#include <errno.h>
#include <time.h>
#include <string.h>
#include <crypt.h>
#include <assert.h>
#include <nss_dbdefs.h>
#define LASTLOG_LEGACY "/var/adm/lastlog"
struct lastlog_legacy {
#ifdef _LP64
#else
#endif
char ll_line[8];
char ll_host[16];
};
/*
* pam_sm_close_session - Terminate a PAM authenticated session
*/
/*ARGSUSED*/
int
const char **argv)
{
int i;
int debug = 0;
for (i = 0; i < argc; i++) {
debug = 1;
else
}
if (debug)
"pam_unix_session: inside pam_sm_close_session()");
return (PAM_SUCCESS);
}
static int
{
if (legacy)
offset *= sizeof (struct lastlog_legacy);
else
return (-1);
}
return (0);
}
static int
{
struct lastlog_legacy ll_legacy;
void *llp;
if (legacy) {
} else {
}
return (-1);
if (ret < 0) {
goto reread;
uid);
return (-1);
} else if (ret == 0) {
if (nread == 0) {
return (-1);
}
return (-1);
}
}
if (legacy) {
} else {
}
return (0);
}
static int
{
return (-1);
if (ret < 0) {
goto rewrite;
"failed for uid %d: %m", uid);
return (-1);
} else if (ret == 0) {
"write for uid %d", uid);
return (-1);
}
}
return (0);
}
/*ARGSUSED*/
int
const char **argv)
{
int error;
int fdl;
char buffer[NSS_BUFLEN_PASSWD];
int i;
int debug = 0;
for (i = 0; i < argc; i++) {
debug = 1;
else
}
if (debug)
"pam_unix_session: inside pam_sm_open_session()");
!= PAM_SUCCESS ||
!= PAM_SUCCESS ||
!= PAM_SUCCESS) {
return (error);
}
return (PAM_USER_UNKNOWN);
/* report error if ttyn not set */
return (PAM_SESSION_ERR);
return (PAM_USER_UNKNOWN);
}
if (fdl < 0) {
goto reopenll_ro;
} else {
}
}
char timestr[26];
char msg[PAM_MAX_MSG_SIZE];
int ret;
} else {
"Last login: %s", timestr);
}
NULL);
}
}
if (fdl < 0) {
goto reopenll_rw;
return (PAM_SUCCESS);
}
} else {
}
}
if (debug) {
char buf[26];
sizeof (buf));
"user = %s, time = %s, tty = %s, host = %s.",
}
}
return (PAM_SUCCESS);
}