utmp.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /* The `struct utmp' type, describing entries in the utmp file. GNU version.
  2. Copyright (C) 1993-2016 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _UTMP_H
  16. # error "Never include <bits/utmp.h> directly; use <utmp.h> instead."
  17. #endif
  18. #include <paths.h>
  19. #include <sys/time.h>
  20. #include <sys/types.h>
  21. #include <bits/wordsize.h>
  22. #define UT_LINESIZE 32
  23. #define UT_NAMESIZE 32
  24. #define UT_HOSTSIZE 256
  25. /* The structure describing an entry in the database of
  26. previous logins. */
  27. struct lastlog
  28. {
  29. #ifdef __WORDSIZE_TIME64_COMPAT32
  30. int32_t ll_time;
  31. #else
  32. __time_t ll_time;
  33. #endif
  34. char ll_line[UT_LINESIZE];
  35. char ll_host[UT_HOSTSIZE];
  36. };
  37. /* The structure describing the status of a terminated process. This
  38. type is used in `struct utmp' below. */
  39. struct exit_status
  40. {
  41. short int e_termination; /* Process termination status. */
  42. short int e_exit; /* Process exit status. */
  43. };
  44. /* The structure describing an entry in the user accounting database. */
  45. struct utmp
  46. {
  47. short int ut_type; /* Type of login. */
  48. pid_t ut_pid; /* Process ID of login process. */
  49. char ut_line[UT_LINESIZE]; /* Devicename. */
  50. char ut_id[4]; /* Inittab ID. */
  51. char ut_user[UT_NAMESIZE]; /* Username. */
  52. char ut_host[UT_HOSTSIZE]; /* Hostname for remote login. */
  53. struct exit_status ut_exit; /* Exit status of a process marked
  54. as DEAD_PROCESS. */
  55. /* The ut_session and ut_tv fields must be the same size when compiled
  56. 32- and 64-bit. This allows data files and shared memory to be
  57. shared between 32- and 64-bit applications. */
  58. #ifdef __WORDSIZE_TIME64_COMPAT32
  59. int32_t ut_session; /* Session ID, used for windowing. */
  60. struct
  61. {
  62. int32_t tv_sec; /* Seconds. */
  63. int32_t tv_usec; /* Microseconds. */
  64. } ut_tv; /* Time entry was made. */
  65. #else
  66. long int ut_session; /* Session ID, used for windowing. */
  67. struct timeval ut_tv; /* Time entry was made. */
  68. #endif
  69. int32_t ut_addr_v6[4]; /* Internet address of remote host. */
  70. char __glibc_reserved[20]; /* Reserved for future use. */
  71. };
  72. /* Backwards compatibility hacks. */
  73. #define ut_name ut_user
  74. #ifndef _NO_UT_TIME
  75. /* We have a problem here: `ut_time' is also used otherwise. Define
  76. _NO_UT_TIME if the compiler complains. */
  77. # define ut_time ut_tv.tv_sec
  78. #endif
  79. #define ut_xtime ut_tv.tv_sec
  80. #define ut_addr ut_addr_v6[0]
  81. /* Values for the `ut_type' field of a `struct utmp'. */
  82. #define EMPTY 0 /* No valid user accounting information. */
  83. #define RUN_LVL 1 /* The system's runlevel. */
  84. #define BOOT_TIME 2 /* Time of system boot. */
  85. #define NEW_TIME 3 /* Time after system clock changed. */
  86. #define OLD_TIME 4 /* Time when system clock changed. */
  87. #define INIT_PROCESS 5 /* Process spawned by the init process. */
  88. #define LOGIN_PROCESS 6 /* Session leader of a logged in user. */
  89. #define USER_PROCESS 7 /* Normal process. */
  90. #define DEAD_PROCESS 8 /* Terminated process. */
  91. #define ACCOUNTING 9
  92. /* Old Linux name for the EMPTY type. */
  93. #define UT_UNKNOWN EMPTY
  94. /* Tell the user that we have a modern system with UT_HOST, UT_PID,
  95. UT_TYPE, UT_ID and UT_TV fields. */
  96. #define _HAVE_UT_TYPE 1
  97. #define _HAVE_UT_PID 1
  98. #define _HAVE_UT_ID 1
  99. #define _HAVE_UT_TV 1
  100. #define _HAVE_UT_HOST 1