Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 | .\" $NetBSD: endutxent.3,v 1.4 2004/05/04 02:38:35 atatat Exp $ .\" .\" Copyright (c) 2002 The NetBSD Foundation, Inc. .\" All rights reserved. .\" .\" This code is derived from software contributed to The NetBSD Foundation .\" by Thomas Klausner. .\" .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions .\" are met: .\" 1. Redistributions of source code must retain the above copyright .\" notice, this list of conditions and the following disclaimer. .\" 2. Redistributions in binary form must reproduce the above copyright .\" notice, this list of conditions and the following disclaimer in the .\" documentation and/or other materials provided with the distribution. .\" 3. All advertising materials mentioning features or use of this software .\" must display the following acknowledgement: .\" This product includes software developed by the NetBSD .\" Foundation, Inc. and its contributors. .\" 4. Neither the name of The NetBSD Foundation nor the names of its .\" contributors may be used to endorse or promote products derived .\" from this software without specific prior written permission. .\" .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" .Dd June 29, 2006 .Dt ENDUTXENT 3 .Os .Sh NAME .Nm endutxent , .Nm getutxent , .Nm getutxid , .Nm getutxline , .Nm pututxline , .Nm setutxent .Nd user accounting database functions .Sh LIBRARY .Lb libc .Sh SYNOPSIS .In utmpx.h .Ft void .Fn endutxent void .Ft struct utmpx * .Fn getutxent void .Ft struct utmpx * .Fn getutxid "const struct utmpx *id" .Ft struct utmpx * .Fn getutxline "const struct utmpx *line" .Ft struct utmpx * .Fn pututxline "const struct utmpx *utx" .Ft void .Fn setutxent void .Sh DESCRIPTION These functions provide access to the .Xr utmpx 5 user accounting database. .Pp .Fn getutxent reads the next entry from the database; if the database was not yet open, it also opens it. .Fn setutxent resets the database, so that the next .Fn getutxent call will get the first entry. .Fn endutxent closes the database. .Pp .Fn getutxid returns the next entry of the type specified in its argument's .Va ut_type field, or .Dv NULL if none is found. .Fn getutxline returns the next .Dv LOGIN_PROCESS or .Dv USER_PROCESS entry which has the same name as specified in the .Va ut_line field, or .Dv NULL if no match is found. .Pp .Fn pututxline adds the argument .Xr utmpx 5 entry line to the accounting database, replacing a previous entry for the same user if it exists. Only the superuser may write to the accounting database. .Ss The utmpx structure The .Nm utmpx structure has the following definition: .Pp .Bd -literal struct utmpx { char ut_user[_UTX_USERSIZE]; /* login name */ char ut_id[_UTX_IDSIZE]; /* id */ char ut_line[_UTX_LINESIZE]; /* tty name */ pid_t ut_pid; /* process id creating the entry */ short ut_type; /* type of this entry */ struct timeval ut_tv; /* time entry was created */ char ut_host[_UTX_HOSTSIZE]; /* host name */ __uint32_t ut_pad[16]; /* reserved for future use */ }; .Ed .Pp Valid entries for .Fa ut_type are: .Bl -tag -width ".Dv LOGIN_PROCESSXX" -compact -offset indent .It Dv BOOT_TIME Time of a system boot. .It Dv DEAD_PROCESS A session leader exited. .It Dv EMPTY No valid user accounting information. .It Dv INIT_PROCESS A process spawned by .Xr init 8 . .It Dv LOGIN_PROCESS The session leader of a logged-in user. .It Dv NEW_TIME Time after system clock change. .It Dv OLD_TIME Time before system clock change. .It Dv RUN_LVL Run level. Provided for compatibility, not used. .It Dv USER_PROCESS A user process. .It Dv SHUTDOWN_TIME Time of system shutdown (extension to the standards). .El .Pp For each value of .Fa ut_type , the other fields with meaningful values are as follows: .Bl -tag -width ".Dv LOGIN_PROCESSXX" -compact -offset indent .It Dv BOOT_TIME .Fa ut_tv .It Dv DEAD_PROCESS .Fa ut_id , .Fa ut_pid , .Fa ut_tv .It Dv EMPTY (no others) .It Dv INIT_PROCESS .Fa ut_id , .Fa ut_pid , .Fa ut_tv .It Dv LOGIN_PROCESS .Fa ut_id , .Fa ut_user (implementation-defined name of the login process), .Fa ut_pid , .Fa ut_tv .It Dv NEW_TIME .Fa ut_tv .It Dv OLD_TIME .Fa ut_tv .It Dv RUN_LVL (no used) .It Dv USER_PROCESS .Fa ut_id , .Fa ut_user (login name of the user), .Fa ut_line , .Fa ut_pid , .Fa ut_host (hostname of remote user) .Fa ut_tv .It Dv SHUTDOWN_TIME .Fa ut_tv .El .Ss Other extensions to the standards The .Fa ut_tv value may also be OR-ed with the following masks: .Bl -tag -width XXXX -compact -offset indent .It Dv UTMPX_AUTOFILL_MASK Depending on the .Fa ut_type value, other fields are automatically filled in (as specified in the meaningful fields table above). In particular, the .Fa ut_id field will be set using the convention of the last four characters of the .Fa ut_line field (itself filled in automatically from the tty name of the device connected to the standard input, output or error, whichever is available). Note that it is more efficient to fill in as many values as are already available beforehand, rather than have then automatically filled in. .It Dv UTMPX_DEAD_IF_CORRESPONDING_MASK When .Fa ut_type value is .Dv DEAD_PROCESS, a call to .Fn pututxline will succeed only if a corresponding entry already exists with a .Fa ut_type value of .Dv USER_PROCESS . .El .Pp Note that the above mask values do not show up in any file format, or in any subsequent reads of the data. .Pp To support .Pa wtmpx and .Pa lastlogx equivalent capability, .Fn pututxline automatically writes to the appropriate files. Additional APIs to read these files is available in .Xr endutxent_wtmp 3 and .Xr getlastlogx 3 . .Ss Backward compatibility Successful calls to .Fn pututxline will automatically write equivalent entries into the .Pa utmp , .Pa wtmp and .Pa lastlog files. Programs that read these old files should work as expected. However, directly writing to these files does not make corresponding entries in .Pa utmpx and the .Pa wtmpx and .Pa lastlogx equivalent files, so such write-access is deprecated. .Sh RETURN VALUES .Fn getutxent returns the next entry, or .Dv NULL on failure (end of database or problems reading from the database). .Fn getutxid and .Fn getutxline return the matching structure on success, or .Dv NULL if no match was found. .Pp .Fn pututxline returns the structure that was successfully written, or .Dv NULL is returned and the global variable .Va errno is set to indicate the error. .Sh ERRORS No errors are defined for the .Fn endutxent , .Fn getutxent , .Fn getutxid , .Fn getutxline , and .Fn setutxent functions. .Pp The .Fn pututxline function may fail if: .Bl -tag -width Er .It Bq Er EPERM The process does not have appropriate privileges. .It Bq Er EINVAL The .Dv UTMPX_DEAD_IF_CORRESPONDING_MASK flags was specified along with .Dv DEAD_PROCESS , but no corresponding entry with .Dv USER_PROCESS was found. .El .Pp Other errors may be returned if .Dv UTMPX_AUTOFILL_MASK was specified, and a field could not be auto-filled. .Sh SEE ALSO .Xr endutxent_wtmp 3 , .Xr getlastlogx 3 , .Xr utmpx 5 .Sh STANDARDS The .Fn endutxent , .Fn getutxent , .Fn getutxid , .Fn getutxline , .Fn pututxline , .Fn setutxent all conform to .St -p1003.1-2001 (XSI extension), and previously to .St -xpg4.2 . The fields .Fa ut_user , .Fa ut_id , .Fa ut_line , .Fa ut_pid , .Fa ut_type , and .Fa ut_tv conform to .St -p1003.1-2001 (XSI extension), and previously to .St -xpg4.2 . .\" .Fa ut_host , .\" .Fa ut_session , .\" .Fa ut_exit , .\" and .\" .Fa ut_ss .\" are from .\" SVR3/4? .\" .Dv RUN_LVL .\" is for compatibility with .\" what exactly? .\" .Sh HISTORY .\" The .\" .Nm utmpx , .\" .Nm wtmpx , .\" and .\" .Nm lastlogx .\" files first appeared in .\" SVR3? 4? |