blob: 62cc0e78c945defc13dcd09f376e7a929a0ed715 [file] [log] [blame]
andre2ff7b5d2000-06-03 14:57:40 +00001#ifndef _HAVE_LOGINREC_H_
2#define _HAVE_LOGINREC_H_
3
4/*
5 * Copyright (c) 2000 Andre Lucas. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
andre2ff7b5d2000-06-03 14:57:40 +000015 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
Kevin Stevesef4eea92001-02-05 12:42:17 +000028/**
andre2ff7b5d2000-06-03 14:57:40 +000029 ** loginrec.h: platform-independent login recording and lastlog retrieval
30 **/
31
32#include "includes.h"
33
Damien Miller08f66d92019-01-20 09:58:45 +110034struct ssh;
35
andre2ff7b5d2000-06-03 14:57:40 +000036/**
37 ** you should use the login_* calls to work around platform dependencies
38 **/
39
andre2ff7b5d2000-06-03 14:57:40 +000040/*
41 * login_netinfo structure
42 */
43
andre61e67252000-06-04 17:07:49 +000044union login_netinfo {
45 struct sockaddr sa;
46 struct sockaddr_in sa_in;
47 struct sockaddr_storage sa_storage;
48};
andre2ff7b5d2000-06-03 14:57:40 +000049
andre2ff7b5d2000-06-03 14:57:40 +000050/*
51 * * logininfo structure *
52 */
andre2ff7b5d2000-06-03 14:57:40 +000053/* types - different to utmp.h 'type' macros */
54/* (though set to the same value as linux, openbsd and others...) */
55#define LTYPE_LOGIN 7
56#define LTYPE_LOGOUT 8
57
58/* string lengths - set very long */
59#define LINFO_PROGSIZE 64
60#define LINFO_LINESIZE 64
Damien Millerd82a2602010-06-22 15:02:39 +100061#define LINFO_NAMESIZE 512
andre2ff7b5d2000-06-03 14:57:40 +000062#define LINFO_HOSTSIZE 256
63
64struct logininfo {
andre2ff7b5d2000-06-03 14:57:40 +000065 char progname[LINFO_PROGSIZE]; /* name of program (for PAM) */
66 int progname_null;
andre2ff7b5d2000-06-03 14:57:40 +000067 short int type; /* type of login (LTYPE_*) */
Damien Miller34ee4202010-11-05 10:52:37 +110068 pid_t pid; /* PID of login process */
69 uid_t uid; /* UID of this user */
andre2ff7b5d2000-06-03 14:57:40 +000070 char line[LINFO_LINESIZE]; /* tty/pty name */
71 char username[LINFO_NAMESIZE]; /* login username */
72 char hostname[LINFO_HOSTSIZE]; /* remote hostname */
andre2ff7b5d2000-06-03 14:57:40 +000073 /* 'exit_status' structure components */
74 int exit; /* process exit status */
75 int termination; /* process termination status */
andre2ff7b5d2000-06-03 14:57:40 +000076 /* struct timeval (sys/time.h) isn't always available, if it isn't we'll
77 * use time_t's value as tv_sec and set tv_usec to 0
78 */
79 unsigned int tv_sec;
Kevin Stevesef4eea92001-02-05 12:42:17 +000080 unsigned int tv_usec;
andre61e67252000-06-04 17:07:49 +000081 union login_netinfo hostaddr; /* caller's host address(es) */
andre2ff7b5d2000-06-03 14:57:40 +000082}; /* struct logininfo */
83
andre2ff7b5d2000-06-03 14:57:40 +000084/*
85 * login recording functions
86 */
andre6bb92372000-06-19 08:20:03 +000087
88/** 'public' functions */
89
andre2ff7b5d2000-06-03 14:57:40 +000090/* construct a new login entry */
Damien Miller34ee4202010-11-05 10:52:37 +110091struct logininfo *login_alloc_entry(pid_t pid, const char *username,
andre2ff7b5d2000-06-03 14:57:40 +000092 const char *hostname, const char *line);
andre61e67252000-06-04 17:07:49 +000093/* free a structure */
andre2ff7b5d2000-06-03 14:57:40 +000094void login_free_entry(struct logininfo *li);
andre61e67252000-06-04 17:07:49 +000095/* fill out a pre-allocated structure with useful information */
Damien Miller34ee4202010-11-05 10:52:37 +110096int login_init_entry(struct logininfo *li, pid_t pid, const char *username,
andre61e67252000-06-04 17:07:49 +000097 const char *hostname, const char *line);
98/* place the current time in a logininfo struct */
andre2ff7b5d2000-06-03 14:57:40 +000099void login_set_current_time(struct logininfo *li);
andre61e67252000-06-04 17:07:49 +0000100
andre6bb92372000-06-19 08:20:03 +0000101/* record the entry */
102int login_login (struct logininfo *li);
103int login_logout(struct logininfo *li);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000104#ifdef LOGIN_NEEDS_UTMPX
105int login_utmp_only(struct logininfo *li);
106#endif
andre6bb92372000-06-19 08:20:03 +0000107
108/** End of public functions */
andre61e67252000-06-04 17:07:49 +0000109
andre2ff7b5d2000-06-03 14:57:40 +0000110/* record the entry */
111int login_write (struct logininfo *li);
andre2ff7b5d2000-06-03 14:57:40 +0000112int login_log_entry(struct logininfo *li);
113
andre6bb92372000-06-19 08:20:03 +0000114/* set the network address based on network address type */
115void login_set_addr(struct logininfo *li, const struct sockaddr *sa,
116 const unsigned int sa_size);
117
andre2ff7b5d2000-06-03 14:57:40 +0000118/*
andre61e67252000-06-04 17:07:49 +0000119 * lastlog retrieval functions
andre2ff7b5d2000-06-03 14:57:40 +0000120 */
121/* lastlog *entry* functions fill out a logininfo */
Damien Miller34ee4202010-11-05 10:52:37 +1100122struct logininfo *login_get_lastlog(struct logininfo *li, const uid_t uid);
andre2ff7b5d2000-06-03 14:57:40 +0000123/* lastlog *time* functions return time_t equivalent (uint) */
Damien Miller34ee4202010-11-05 10:52:37 +1100124unsigned int login_get_lastlog_time(const uid_t uid);
andre2ff7b5d2000-06-03 14:57:40 +0000125
126/* produce various forms of the line filename */
Damien Miller52c8afe2005-06-19 10:19:43 +1000127char *line_fullname(char *dst, const char *src, u_int dstsize);
andre2ff7b5d2000-06-03 14:57:40 +0000128char *line_stripname(char *dst, const char *src, int dstsize);
129char *line_abbrevname(char *dst, const char *src, int dstsize);
130
Damien Miller08f66d92019-01-20 09:58:45 +1100131void record_failed_login(struct ssh *, const char *, const char *,
132 const char *);
Darren Tucker42d9dc72005-02-02 17:10:11 +1100133
andre2ff7b5d2000-06-03 14:57:40 +0000134#endif /* _HAVE_LOGINREC_H_ */