blob: d249f8af8334a647b948926e2a9290fab26a63ba [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
Elliott Hughesdbf5b2e2023-04-03 16:30:39 -070033 * @brief No-op implementation of non-POSIX login records. See <utmpx.h> for the POSIX equivalents.
Elliott Hughes9a1d3972020-08-07 15:55:02 -070034 */
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 {
Elliott Hughesdbf5b2e2023-04-03 16:30:39 -070072 short e_termination;
73 short e_exit;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080074};
75
Elliott Hughes9a1d3972020-08-07 15:55:02 -070076struct utmp {
Elliott Hughesdbf5b2e2023-04-03 16:30:39 -070077 short ut_type;
Elliott Hughes9a1d3972020-08-07 15:55:02 -070078 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 Hughesdbf5b2e2023-04-03 16:30:39 -070086 long ut_session;
Elliott Hughes9a1d3972020-08-07 15:55:02 -070087 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/**
Elliott Hughesdbf5b2e2023-04-03 16:30:39 -0700100 * Returns -1 and sets errno to ENOTSUP.
Elliott Hughes9a1d3972020-08-07 15:55:02 -0700101 */
zijunzhaod9755062023-01-18 21:59:22 +0000102int utmpname(const char* _Nonnull __path);
Elliott Hughesdbf5b2e2023-04-03 16:30:39 -0700103
Elliott Hughes9a1d3972020-08-07 15:55:02 -0700104/**
105 * Does nothing.
106 */
Elliott Hughes9216a642015-10-26 19:29:12 -0700107void setutent(void);
Elliott Hughesdbf5b2e2023-04-03 16:30:39 -0700108
Elliott Hughes9a1d3972020-08-07 15:55:02 -0700109/**
Elliott Hughesdbf5b2e2023-04-03 16:30:39 -0700110 * Does nothing and returns null.
Elliott Hughes9a1d3972020-08-07 15:55:02 -0700111 */
zijunzhaod9755062023-01-18 21:59:22 +0000112struct utmp* _Nullable getutent(void);
Elliott Hughesdbf5b2e2023-04-03 16:30:39 -0700113
Elliott Hughes9a1d3972020-08-07 15:55:02 -0700114/**
Elliott Hughesdbf5b2e2023-04-03 16:30:39 -0700115 * Does nothing and returns null.
Elliott Hughes9a1d3972020-08-07 15:55:02 -0700116 */
zijunzhaod9755062023-01-18 21:59:22 +0000117struct utmp* _Nullable pututline(const struct utmp* _Nonnull __entry);
Elliott Hughesdbf5b2e2023-04-03 16:30:39 -0700118
Elliott Hughes9a1d3972020-08-07 15:55:02 -0700119/**
120 * Does nothing.
121 */
Elliott Hughes9216a642015-10-26 19:29:12 -0700122void endutent(void);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800123
Elliott Hughes9a1d3972020-08-07 15:55:02 -0700124/**
125 * [login_tty(3)](https://www.man7.org/linux/man-pages/man3/login_tty.3.html)
126 * prepares for login on the given file descriptor.
127 *
128 * See also forkpty() which combines openpty(), fork(), and login_tty().
129 *
130 * Returns 0 on success and returns -1 and sets `errno` on failure.
131 *
132 * Available since API level 23.
133 */
Elliott Hughesfaa74342017-08-11 17:34:44 -0700134int login_tty(int __fd) __INTRODUCED_IN(23);
Elliott Hughes65f0df72014-12-03 14:39:20 -0800135
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800136__END_DECLS