blob: 7aa5718d0deb4f8a84cfe2f0b87de43209f1d2dd [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
Elliott Hughes9a1d3972020-08-07 15:55:02 -070028
29#pragma once
30
31/**
32 * @file utmp.h
33 * @brief POSIX login records.
34 */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080035
36#include <sys/cdefs.h>
37#include <sys/types.h>
38#include <time.h>
39
40#define _PATH_UTMP "/var/run/utmp"
41#define _PATH_WTMP "/var/log/wtmp"
42#define _PATH_LASTLOG "/var/log/lastlog"
43
Calin Juravle7d8f3032014-05-06 15:36:02 +010044#ifdef __LP64__
45#define UT_NAMESIZE 32
46#define UT_LINESIZE 32
47#define UT_HOSTSIZE 256
48#else
49#define UT_NAMESIZE 8
50#define UT_LINESIZE 8
51#define UT_HOSTSIZE 16
52#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080053
Mike Frysinger68af0ad2015-10-09 18:48:51 -040054#define EMPTY 0
55#define RUN_LVL 1
56#define BOOT_TIME 2
57#define NEW_TIME 3
58#define OLD_TIME 4
59#define INIT_PROCESS 5
60#define LOGIN_PROCESS 6
61#define USER_PROCESS 7
62#define DEAD_PROCESS 8
63#define ACCOUNTING 9
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080064
Elliott Hughes9a1d3972020-08-07 15:55:02 -070065struct lastlog {
66 time_t ll_time;
67 char ll_line[UT_LINESIZE];
68 char ll_host[UT_HOSTSIZE];
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080069};
70
Elliott Hughes9a1d3972020-08-07 15:55:02 -070071struct exit_status {
72 short int e_termination;
73 short int e_exit;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080074};
75
Elliott Hughes9a1d3972020-08-07 15:55:02 -070076struct utmp {
77 short int ut_type;
78 pid_t ut_pid;
79 char ut_line[UT_LINESIZE];
80 char ut_id[4];
81 char ut_user[UT_NAMESIZE];
82 char ut_host[UT_HOSTSIZE];
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080083
Elliott Hughes9a1d3972020-08-07 15:55:02 -070084 struct exit_status ut_exit;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080085
Elliott Hughes9a1d3972020-08-07 15:55:02 -070086 long int ut_session;
87 struct timeval ut_tv;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080088
Elliott Hughes9a1d3972020-08-07 15:55:02 -070089 int32_t ut_addr_v6[4];
90 char unused[20];
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080091};
92
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080093#define ut_name ut_user
94#define ut_time ut_tv.tv_sec
95#define ut_addr ut_addr_v6[0]
96
97__BEGIN_DECLS
98
Elliott Hughes9a1d3972020-08-07 15:55:02 -070099/**
100 * Does nothing.
101 */
zijunzhaod9755062023-01-18 21:59:22 +0000102int utmpname(const char* _Nonnull __path);
Elliott Hughes9a1d3972020-08-07 15:55:02 -0700103/**
104 * Does nothing.
105 */
Elliott Hughes9216a642015-10-26 19:29:12 -0700106void setutent(void);
Elliott Hughes9a1d3972020-08-07 15:55:02 -0700107/**
108 * Does nothing.
109 */
zijunzhaod9755062023-01-18 21:59:22 +0000110struct utmp* _Nullable getutent(void);
Elliott Hughes9a1d3972020-08-07 15:55:02 -0700111/**
112 * Does nothing.
113 */
zijunzhaod9755062023-01-18 21:59:22 +0000114struct utmp* _Nullable pututline(const struct utmp* _Nonnull __entry);
Elliott Hughes9a1d3972020-08-07 15:55:02 -0700115/**
116 * Does nothing.
117 */
Elliott Hughes9216a642015-10-26 19:29:12 -0700118void endutent(void);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800119
Elliott Hughes9a1d3972020-08-07 15:55:02 -0700120/**
121 * [login_tty(3)](https://www.man7.org/linux/man-pages/man3/login_tty.3.html)
122 * prepares for login on the given file descriptor.
123 *
124 * See also forkpty() which combines openpty(), fork(), and login_tty().
125 *
126 * Returns 0 on success and returns -1 and sets `errno` on failure.
127 *
128 * Available since API level 23.
129 */
Elliott Hughesfaa74342017-08-11 17:34:44 -0700130int login_tty(int __fd) __INTRODUCED_IN(23);
Elliott Hughes65f0df72014-12-03 14:39:20 -0800131
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800132__END_DECLS