OSDN Git Service

LDP: Update POT and ja.po to LDP v3.77
[linuxjm/LDP_man-pages.git] / po4a / utmp / po / utmp.pot
1 # SOME DESCRIPTIVE TITLE
2 # Copyright (C) YEAR Free Software Foundation, Inc.
3 # This file is distributed under the same license as the PACKAGE package.
4 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5 #
6 #, fuzzy
7 msgid ""
8 msgstr ""
9 "Project-Id-Version: PACKAGE VERSION\n"
10 "POT-Creation-Date: 2015-01-11 03:53+0900\n"
11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 "Language-Team: LANGUAGE <LL@li.org>\n"
14 "Language: \n"
15 "MIME-Version: 1.0\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
18
19 #. type: TH
20 #: build/C/man3/getutent.3:31
21 #, no-wrap
22 msgid "GETUTENT"
23 msgstr ""
24
25 #. type: TH
26 #: build/C/man3/getutent.3:31 build/C/man3/updwtmp.3:29 build/C/man5/utmp.5:30
27 #, no-wrap
28 msgid "2014-08-19"
29 msgstr ""
30
31 #. type: TH
32 #: build/C/man3/getutent.3:31 build/C/man3/getutmp.3:26 build/C/man3/login.3:25 build/C/man3/updwtmp.3:29 build/C/man5/utmp.5:30
33 #, no-wrap
34 msgid "Linux Programmer's Manual"
35 msgstr ""
36
37 #. type: SH
38 #: build/C/man3/getutent.3:32 build/C/man3/getutmp.3:27 build/C/man3/login.3:26 build/C/man3/updwtmp.3:30 build/C/man5/utmp.5:31
39 #, no-wrap
40 msgid "NAME"
41 msgstr ""
42
43 #. type: Plain text
44 #: build/C/man3/getutent.3:35
45 msgid ""
46 "getutent, getutid, getutline, pututline, setutent, endutent, utmpname - "
47 "access utmp file entries"
48 msgstr ""
49
50 #. type: SH
51 #: build/C/man3/getutent.3:35 build/C/man3/getutmp.3:29 build/C/man3/login.3:28 build/C/man3/updwtmp.3:32 build/C/man5/utmp.5:33
52 #, no-wrap
53 msgid "SYNOPSIS"
54 msgstr ""
55
56 #. type: Plain text
57 #: build/C/man3/getutent.3:37 build/C/man3/login.3:30 build/C/man5/utmp.5:35
58 msgid "B<#include E<lt>utmp.hE<gt>>"
59 msgstr ""
60
61 #. type: Plain text
62 #: build/C/man3/getutent.3:39
63 msgid "B<struct utmp *getutent(void);>"
64 msgstr ""
65
66 #. type: Plain text
67 #: build/C/man3/getutent.3:41
68 msgid "B<struct utmp *getutid(const struct utmp *>I<ut>B<);>"
69 msgstr ""
70
71 #. type: Plain text
72 #: build/C/man3/getutent.3:43
73 msgid "B<struct utmp *getutline(const struct utmp *>I<ut>B<);>"
74 msgstr ""
75
76 #. type: Plain text
77 #: build/C/man3/getutent.3:45
78 msgid "B<struct utmp *pututline(const struct utmp *>I<ut>B<);>"
79 msgstr ""
80
81 #. type: Plain text
82 #: build/C/man3/getutent.3:47
83 msgid "B<void setutent(void);>"
84 msgstr ""
85
86 #. type: Plain text
87 #: build/C/man3/getutent.3:49
88 msgid "B<void endutent(void);>"
89 msgstr ""
90
91 #. type: Plain text
92 #: build/C/man3/getutent.3:51
93 msgid "B<int utmpname(const char *>I<file>B<);>"
94 msgstr ""
95
96 #. type: SH
97 #: build/C/man3/getutent.3:51 build/C/man3/getutmp.3:37 build/C/man3/login.3:36 build/C/man3/updwtmp.3:45 build/C/man5/utmp.5:35
98 #, no-wrap
99 msgid "DESCRIPTION"
100 msgstr ""
101
102 #. type: Plain text
103 #: build/C/man3/getutent.3:54
104 msgid ""
105 "New applications should use the POSIX.1-specified \"utmpx\" versions of "
106 "these functions; see CONFORMING TO."
107 msgstr ""
108
109 #. type: Plain text
110 #: build/C/man3/getutent.3:63
111 msgid ""
112 "B<utmpname>()  sets the name of the utmp-format file for the other utmp "
113 "functions to access.  If B<utmpname>()  is not used to set the filename "
114 "before the other functions are used, they assume B<_PATH_UTMP>, as defined "
115 "in I<E<lt>paths.hE<gt>>."
116 msgstr ""
117
118 #. type: Plain text
119 #: build/C/man3/getutent.3:68
120 msgid ""
121 "B<setutent>()  rewinds the file pointer to the beginning of the utmp file.  "
122 "It is generally a good idea to call it before any of the other functions."
123 msgstr ""
124
125 #. type: Plain text
126 #: build/C/man3/getutent.3:73
127 msgid ""
128 "B<endutent>()  closes the utmp file.  It should be called when the user code "
129 "is done accessing the file with the other functions."
130 msgstr ""
131
132 #. type: Plain text
133 #: build/C/man3/getutent.3:80
134 msgid ""
135 "B<getutent>()  reads a line from the current file position in the utmp "
136 "file.  It returns a pointer to a structure containing the fields of the "
137 "line.  The definition of this structure is shown in B<utmp>(5)."
138 msgstr ""
139
140 #. type: Plain text
141 #: build/C/man3/getutent.3:96
142 msgid ""
143 "B<getutid>()  searches forward from the current file position in the utmp "
144 "file based upon I<ut>.  If I<ut-E<gt>ut_type> is one of B<RUN_LVL>, "
145 "B<BOOT_TIME>, B<NEW_TIME>, or B<OLD_TIME>, B<getutid>()  will find the first "
146 "entry whose I<ut_type> field matches I<ut-E<gt>ut_type>.  If "
147 "I<ut-E<gt>ut_type> is one of B<INIT_PROCESS>, B<LOGIN_PROCESS>, "
148 "B<USER_PROCESS>, or B<DEAD_PROCESS>, B<getutid>()  will find the first entry "
149 "whose I<ut_id> field matches I<ut-E<gt>ut_id>."
150 msgstr ""
151
152 #. type: Plain text
153 #: build/C/man3/getutent.3:106
154 msgid ""
155 "B<getutline>()  searches forward from the current file position in the utmp "
156 "file.  It scans entries whose I<ut_type> is B<USER_PROCESS> or "
157 "B<LOGIN_PROCESS> and returns the first one whose I<ut_line> field matches "
158 "I<ut-E<gt>ut_line>."
159 msgstr ""
160
161 #. type: Plain text
162 #: build/C/man3/getutent.3:118
163 msgid ""
164 "B<pututline>()  writes the I<utmp> structure I<ut> into the utmp file.  It "
165 "uses B<getutid>()  to search for the proper place in the file to insert the "
166 "new entry.  If it cannot find an appropriate slot for I<ut>, B<pututline>()  "
167 "will append the new entry to the end of the file."
168 msgstr ""
169
170 #. type: SH
171 #: build/C/man3/getutent.3:118 build/C/man3/getutmp.3:51 build/C/man3/login.3:94
172 #, no-wrap
173 msgid "RETURN VALUE"
174 msgstr ""
175
176 #. type: Plain text
177 #: build/C/man3/getutent.3:127
178 msgid ""
179 "B<getutent>(), B<getutid>(), and B<getutline>()  return a pointer to a "
180 "I<struct utmp> on success, and NULL on failure (which includes the \"record "
181 "not found\" case).  This I<struct utmp> is allocated in static storage, and "
182 "may be overwritten by subsequent calls."
183 msgstr ""
184
185 #. type: Plain text
186 #: build/C/man3/getutent.3:133
187 msgid "On success B<pututline>()  returns I<ut>; on failure, it returns NULL."
188 msgstr ""
189
190 #. type: Plain text
191 #: build/C/man3/getutent.3:136
192 msgid ""
193 "B<utmpname>()  returns 0 if the new name was successfully stored, or -1 on "
194 "failure."
195 msgstr ""
196
197 #. type: Plain text
198 #: build/C/man3/getutent.3:140
199 msgid ""
200 "In the event of an error, these functions I<errno> set to indicate the "
201 "cause."
202 msgstr ""
203
204 #. type: SH
205 #: build/C/man3/getutent.3:140
206 #, no-wrap
207 msgid "ERRORS"
208 msgstr ""
209
210 #. type: TP
211 #: build/C/man3/getutent.3:141
212 #, no-wrap
213 msgid "B<ENOMEM>"
214 msgstr ""
215
216 #. type: Plain text
217 #: build/C/man3/getutent.3:144
218 msgid "Out of memory."
219 msgstr ""
220
221 #. type: TP
222 #: build/C/man3/getutent.3:144
223 #, no-wrap
224 msgid "B<ESRCH>"
225 msgstr ""
226
227 #. type: Plain text
228 #: build/C/man3/getutent.3:147
229 msgid "Record not found."
230 msgstr ""
231
232 #. type: Plain text
233 #: build/C/man3/getutent.3:154
234 msgid ""
235 "B<setutent>(), B<pututline>(), and the B<getut*>()  functions can also fail "
236 "for the reasons described in B<open>(2)."
237 msgstr ""
238
239 #. type: SH
240 #: build/C/man3/getutent.3:154 build/C/man3/login.3:99 build/C/man3/updwtmp.3:58 build/C/man5/utmp.5:224
241 #, no-wrap
242 msgid "FILES"
243 msgstr ""
244
245 #. type: Plain text
246 #: build/C/man3/getutent.3:156
247 msgid "/var/run/utmp\tdatabase of currently logged-in users"
248 msgstr ""
249
250 #. type: Plain text
251 #: build/C/man3/getutent.3:158
252 msgid "/var/log/wtmp\tdatabase of past user logins"
253 msgstr ""
254
255 #. type: SH
256 #: build/C/man3/getutent.3:158 build/C/man3/getutmp.3:62 build/C/man3/login.3:112 build/C/man3/updwtmp.3:62 build/C/man5/utmp.5:228
257 #, no-wrap
258 msgid "CONFORMING TO"
259 msgstr ""
260
261 #. type: Plain text
262 #: build/C/man3/getutent.3:160
263 msgid "XPG2, SVr4."
264 msgstr ""
265
266 #. type: Plain text
267 #: build/C/man3/getutent.3:169
268 msgid ""
269 "In XPG2 and SVID 2 the function B<pututline>()  is documented to return "
270 "void, and that is what it does on many systems (AIX, HP-UX).  HP-UX "
271 "introduces a new function B<_pututline>()  with the prototype given above "
272 "for B<pututline>()."
273 msgstr ""
274
275 #. type: Plain text
276 #: build/C/man3/getutent.3:173
277 msgid ""
278 "All these functions are obsolete now on non-Linux systems.  POSIX.1-2001, "
279 "following SUSv1, does not have any of these functions, but instead uses"
280 msgstr ""
281
282 #. type: Plain text
283 #: build/C/man3/getutent.3:175
284 msgid "B<#include E<lt>utmpx.hE<gt>>"
285 msgstr ""
286
287 #. type: Plain text
288 #: build/C/man3/getutent.3:177
289 msgid "B<struct utmpx *getutxent(void);>"
290 msgstr ""
291
292 #. type: Plain text
293 #: build/C/man3/getutent.3:179
294 msgid "B<struct utmpx *getutxid(const struct utmpx *);>"
295 msgstr ""
296
297 #. type: Plain text
298 #: build/C/man3/getutent.3:181
299 msgid "B<struct utmpx *getutxline(const struct utmpx *);>"
300 msgstr ""
301
302 #. type: Plain text
303 #: build/C/man3/getutent.3:183
304 msgid "B<struct utmpx *pututxline(const struct utmpx *);>"
305 msgstr ""
306
307 #. type: Plain text
308 #: build/C/man3/getutent.3:185
309 msgid "B<void setutxent(void);>"
310 msgstr ""
311
312 #. type: Plain text
313 #: build/C/man3/getutent.3:187
314 msgid "B<void endutxent(void);>"
315 msgstr ""
316
317 #. type: Plain text
318 #: build/C/man3/getutent.3:196
319 msgid ""
320 "These functions are provided by glibc, and perform the same task as their "
321 "equivalents without the \"x\", but use I<struct utmpx>, defined on Linux to "
322 "be the same as I<struct utmp>.  For completeness, glibc also provides "
323 "B<utmpxname>(), although this function is not specified by POSIX.1."
324 msgstr ""
325
326 #. type: Plain text
327 #: build/C/man3/getutent.3:204
328 msgid ""
329 "On some other systems, the I<utmpx> structure is a superset of the I<utmp> "
330 "structure, with additional fields, and larger versions of the existing "
331 "fields, and parallel files are maintained, often I</var/*/utmpx> and "
332 "I</var/*/wtmpx>."
333 msgstr ""
334
335 #. type: Plain text
336 #: build/C/man3/getutent.3:212
337 msgid ""
338 "Linux glibc on the other hand does not use a parallel I<utmpx> file since "
339 "its I<utmp> structure is already large enough.  The \"x\" functions listed "
340 "above are just aliases for their counterparts without the \"x\" (e.g., "
341 "B<getutxent>()  is an alias for B<getutent>())."
342 msgstr ""
343
344 #. type: SH
345 #: build/C/man3/getutent.3:212 build/C/man3/getutmp.3:65 build/C/man3/login.3:115 build/C/man3/updwtmp.3:65 build/C/man5/utmp.5:280
346 #, no-wrap
347 msgid "NOTES"
348 msgstr ""
349
350 #. type: SS
351 #: build/C/man3/getutent.3:213
352 #, no-wrap
353 msgid "Glibc notes"
354 msgstr ""
355
356 #. type: Plain text
357 #: build/C/man3/getutent.3:216
358 msgid "The above functions are not thread-safe.  Glibc adds reentrant versions"
359 msgstr ""
360
361 #. type: Plain text
362 #: build/C/man3/getutent.3:221
363 #, no-wrap
364 msgid ""
365 "B<#define _GNU_SOURCE>    /* or _SVID_SOURCE or _BSD_SOURCE;\n"
366 "\\&                          see B<feature_test_macros>(7) */\n"
367 "B<#include E<lt>utmp.hE<gt>>\n"
368 msgstr ""
369
370 #. type: Plain text
371 #: build/C/man3/getutent.3:223
372 #, no-wrap
373 msgid "B<int getutent_r(struct utmp *>I<ubuf>B<, struct utmp **>I<ubufp>B<);>\n"
374 msgstr ""
375
376 #. type: Plain text
377 #: build/C/man3/getutent.3:226
378 #, no-wrap
379 msgid ""
380 "B<int getutid_r(struct utmp *>I<ut>B<,>\n"
381 "B<              struct utmp *>I<ubuf>B<, struct utmp **>I<ubufp>B<);>\n"
382 msgstr ""
383
384 #. type: Plain text
385 #: build/C/man3/getutent.3:229
386 #, no-wrap
387 msgid ""
388 "B<int getutline_r(struct utmp *>I<ut>B<,>\n"
389 "B<                struct utmp *>I<ubuf>B<, struct utmp **>I<ubufp>B<);>\n"
390 msgstr ""
391
392 #. type: Plain text
393 #: build/C/man3/getutent.3:241
394 msgid ""
395 "These functions are GNU extensions, analogs of the functions of the same "
396 "name without the _r suffix.  The I<ubuf> argument gives these functions a "
397 "place to store their result.  On success they return 0, and a pointer to the "
398 "result is written in I<*ubufp>.  On error, these functions return -1.  There "
399 "are no utmpx equivalents of the above functions.  (POSIX.1 does not specify "
400 "such functions.)"
401 msgstr ""
402
403 #. type: SH
404 #: build/C/man3/getutent.3:241
405 #, no-wrap
406 msgid "EXAMPLE"
407 msgstr ""
408
409 #. type: Plain text
410 #: build/C/man3/getutent.3:249
411 msgid ""
412 "The following example adds and removes a utmp record, assuming it is run "
413 "from within a pseudo terminal.  For usage in a real application, you should "
414 "check the return values of B<getpwuid>(3)  and B<ttyname>(3)."
415 msgstr ""
416
417 #. type: Plain text
418 #: build/C/man3/getutent.3:256
419 #, no-wrap
420 msgid ""
421 "#include E<lt>string.hE<gt>\n"
422 "#include E<lt>stdlib.hE<gt>\n"
423 "#include E<lt>pwd.hE<gt>\n"
424 "#include E<lt>unistd.hE<gt>\n"
425 "#include E<lt>utmp.hE<gt>\n"
426 msgstr ""
427
428 #. type: Plain text
429 #: build/C/man3/getutent.3:261
430 #, no-wrap
431 msgid ""
432 "int\n"
433 "main(int argc, char *argv[])\n"
434 "{\n"
435 "    struct utmp entry;\n"
436 msgstr ""
437
438 #. type: Plain text
439 #: build/C/man3/getutent.3:263
440 #, no-wrap
441 msgid "    system(\"echo before adding entry:;who\");\n"
442 msgstr ""
443
444 #. type: Plain text
445 #: build/C/man3/getutent.3:275
446 #, no-wrap
447 msgid ""
448 "    entry.ut_type = USER_PROCESS;\n"
449 "    entry.ut_pid = getpid();\n"
450 "    strcpy(entry.ut_line, ttyname(STDIN_FILENO) + strlen(\"/dev/\"));\n"
451 "    /* only correct for ptys named /dev/tty[pqr][0-9a-z] */\n"
452 "    strcpy(entry.ut_id, ttyname(STDIN_FILENO) + strlen(\"/dev/tty\"));\n"
453 "    time(&entry.ut_time);\n"
454 "    strcpy(entry.ut_user, getpwuid(getuid())-E<gt>pw_name);\n"
455 "    memset(entry.ut_host, 0, UT_HOSTSIZE);\n"
456 "    entry.ut_addr = 0;\n"
457 "    setutent();\n"
458 "    pututline(&entry);\n"
459 msgstr ""
460
461 #. type: Plain text
462 #: build/C/man3/getutent.3:277
463 #, no-wrap
464 msgid "    system(\"echo after adding entry:;who\");\n"
465 msgstr ""
466
467 #. type: Plain text
468 #: build/C/man3/getutent.3:284
469 #, no-wrap
470 msgid ""
471 "    entry.ut_type = DEAD_PROCESS;\n"
472 "    memset(entry.ut_line, 0, UT_LINESIZE);\n"
473 "    entry.ut_time = 0;\n"
474 "    memset(entry.ut_user, 0, UT_NAMESIZE);\n"
475 "    setutent();\n"
476 "    pututline(&entry);\n"
477 msgstr ""
478
479 #. type: Plain text
480 #: build/C/man3/getutent.3:286
481 #, no-wrap
482 msgid "    system(\"echo after removing entry:;who\");\n"
483 msgstr ""
484
485 #. type: Plain text
486 #: build/C/man3/getutent.3:290
487 #, no-wrap
488 msgid ""
489 "    endutent();\n"
490 "    exit(EXIT_SUCCESS);\n"
491 "}\n"
492 msgstr ""
493
494 #.  .PP
495 #.  Note that the \fIutmp\fP struct from libc5 has changed in libc6.
496 #.  Because of this,
497 #.  binaries using the old libc5 struct will corrupt
498 #.  .IR /var/run/utmp " and/or " /var/log/wtmp .
499 #.  .SH BUGS
500 #.  This man page is based on the libc5 one, things may work differently now.
501 #. type: SH
502 #: build/C/man3/getutent.3:291 build/C/man3/getutmp.3:76 build/C/man3/login.3:130 build/C/man3/updwtmp.3:81 build/C/man5/utmp.5:338
503 #, no-wrap
504 msgid "SEE ALSO"
505 msgstr ""
506
507 #. type: Plain text
508 #: build/C/man3/getutent.3:294
509 msgid "B<getutmp>(3), B<utmp>(5)"
510 msgstr ""
511
512 #. type: SH
513 #: build/C/man3/getutent.3:294 build/C/man3/getutmp.3:80 build/C/man3/login.3:133 build/C/man3/updwtmp.3:84 build/C/man5/utmp.5:352
514 #, no-wrap
515 msgid "COLOPHON"
516 msgstr ""
517
518 #. type: Plain text
519 #: build/C/man3/getutent.3:302 build/C/man3/getutmp.3:88 build/C/man3/login.3:141 build/C/man3/updwtmp.3:92 build/C/man5/utmp.5:360
520 msgid ""
521 "This page is part of release 3.77 of the Linux I<man-pages> project.  A "
522 "description of the project, information about reporting bugs, and the latest "
523 "version of this page, can be found at "
524 "\\%http://www.kernel.org/doc/man-pages/."
525 msgstr ""
526
527 #. type: TH
528 #: build/C/man3/getutmp.3:26
529 #, no-wrap
530 msgid "GETUTMP"
531 msgstr ""
532
533 #. type: TH
534 #: build/C/man3/getutmp.3:26
535 #, no-wrap
536 msgid "2014-04-08"
537 msgstr ""
538
539 #. type: TH
540 #: build/C/man3/getutmp.3:26 build/C/man5/utmp.5:30
541 #, no-wrap
542 msgid "Linux"
543 msgstr ""
544
545 #. type: Plain text
546 #: build/C/man3/getutmp.3:29
547 msgid "getutmp, getutmpx - copy utmp structure to utmpx, and vice versa"
548 msgstr ""
549
550 #. type: Plain text
551 #: build/C/man3/getutmp.3:33
552 #, no-wrap
553 msgid ""
554 "B<#define _GNU_SOURCE>             /* See feature_test_macros(7) */\n"
555 "B<#include E<lt>utmpx.hE<gt>>\n"
556 msgstr ""
557
558 #. type: Plain text
559 #: build/C/man3/getutmp.3:36
560 #, no-wrap
561 msgid ""
562 "B< void getutmp(const struct utmpx *>I<ux>B<, struct utmp *>I<u>B<);>\n"
563 "B< void getutmpx(const struct utmp *>I<u>B<, struct utmpx *>I<ux>B<);>\n"
564 msgstr ""
565
566 #. type: Plain text
567 #: build/C/man3/getutmp.3:51
568 msgid ""
569 "The B<getutmp>()  function copies the fields of the I<utmpx> structure "
570 "pointed to by I<ux> to the corresponding fields of the I<utmp> structure "
571 "pointed to by I<u>.  The B<getutmpx>()  function performs the converse "
572 "operation."
573 msgstr ""
574
575 #. type: Plain text
576 #: build/C/man3/getutmp.3:53
577 msgid "These functions do not return a value."
578 msgstr ""
579
580 #. type: SH
581 #: build/C/man3/getutmp.3:53
582 #, no-wrap
583 msgid "VERSIONS"
584 msgstr ""
585
586 #. type: Plain text
587 #: build/C/man3/getutmp.3:55
588 msgid "These functions first appeared in glibc in version 2.1.1."
589 msgstr ""
590
591 #. type: SH
592 #: build/C/man3/getutmp.3:55
593 #, no-wrap
594 msgid "ATTRIBUTES"
595 msgstr ""
596
597 #. type: SS
598 #: build/C/man3/getutmp.3:56
599 #, no-wrap
600 msgid "Multithreading (see pthreads(7))"
601 msgstr ""
602
603 #. type: Plain text
604 #: build/C/man3/getutmp.3:62
605 msgid "The B<getutmp>()  and B<getutmpx>()  functions are thread-safe."
606 msgstr ""
607
608 #. type: Plain text
609 #: build/C/man3/getutmp.3:65
610 msgid ""
611 "These functions are nonstandard, but appear on a few other systems, such as "
612 "Solaris and NetBSD."
613 msgstr ""
614
615 #.  e.g., on Solaris, the utmpx structure is rather larger than utmp.
616 #. type: Plain text
617 #: build/C/man3/getutmp.3:76
618 msgid ""
619 "These functions exist primarily for compatibility with other systems where "
620 "the I<utmp> and I<utmpx> structures contain different fields, or the size of "
621 "corresponding fields differs.  On Linux, the two structures contain the same "
622 "fields, and the fields have the same sizes."
623 msgstr ""
624
625 #. type: Plain text
626 #: build/C/man3/getutmp.3:80
627 msgid "B<utmpdump>(1), B<getutent>(3), B<utmp>(5)"
628 msgstr ""
629
630 #. type: TH
631 #: build/C/man3/login.3:25
632 #, no-wrap
633 msgid "LOGIN"
634 msgstr ""
635
636 #. type: TH
637 #: build/C/man3/login.3:25
638 #, no-wrap
639 msgid "2004-05-06"
640 msgstr ""
641
642 #. type: TH
643 #: build/C/man3/login.3:25 build/C/man3/updwtmp.3:29
644 #, no-wrap
645 msgid "GNU"
646 msgstr ""
647
648 #. type: Plain text
649 #: build/C/man3/login.3:28
650 msgid "login, logout - write utmp and wtmp entries"
651 msgstr ""
652
653 #. type: Plain text
654 #: build/C/man3/login.3:32
655 msgid "B<void login(const struct utmp *>I<ut>B<);>"
656 msgstr ""
657
658 #. type: Plain text
659 #: build/C/man3/login.3:34
660 msgid "B<int logout(const char *>I<ut_line>B<);>"
661 msgstr ""
662
663 #. type: Plain text
664 #: build/C/man3/login.3:36
665 msgid "Link with I<-lutil>."
666 msgstr ""
667
668 #. type: Plain text
669 #: build/C/man3/login.3:41
670 msgid ""
671 "The utmp file records who is currently using the system.  The wtmp file "
672 "records all logins and logouts.  See B<utmp>(5)."
673 msgstr ""
674
675 #. type: Plain text
676 #: build/C/man3/login.3:48
677 msgid ""
678 "The function B<login>()  takes the supplied I<struct utmp>, I<ut>, and "
679 "writes it to both the utmp and the wtmp file."
680 msgstr ""
681
682 #. type: Plain text
683 #: build/C/man3/login.3:52
684 msgid "The function B<logout>()  clears the entry in the utmp file again."
685 msgstr ""
686
687 #. type: SS
688 #: build/C/man3/login.3:52
689 #, no-wrap
690 msgid "GNU details"
691 msgstr ""
692
693 #. type: Plain text
694 #: build/C/man3/login.3:78
695 msgid ""
696 "More precisely, B<login>()  takes the argument I<ut> struct, fills the field "
697 "I<ut-E<gt>ut_type> (if there is such a field) with the value "
698 "B<USER_PROCESS>, and fills the field I<ut-E<gt>ut_pid> (if there is such a "
699 "field) with the process ID of the calling process.  Then it tries to fill "
700 "the field I<ut-E<gt>ut_line>.  It takes the first of I<stdin>, I<stdout>, "
701 "I<stderr> that is a terminal, and stores the corresponding pathname minus a "
702 "possible leading I</dev/> into this field, and then writes the struct to the "
703 "utmp file.  On the other hand, if no terminal name was found, this field is "
704 "filled with \"???\" and the struct is not written to the utmp file.  After "
705 "this, the struct is written to the wtmp file."
706 msgstr ""
707
708 #. type: Plain text
709 #: build/C/man3/login.3:94
710 msgid ""
711 "The B<logout>()  function searches the utmp file for an entry matching the "
712 "I<ut_line> argument.  If a record is found, it is updated by zeroing out the "
713 "I<ut_name> and I<ut_host> fields, updating the I<ut_tv> timestamp field and "
714 "setting I<ut_type> (if there is such a field) to B<DEAD_PROCESS>."
715 msgstr ""
716
717 #. type: Plain text
718 #: build/C/man3/login.3:99
719 msgid ""
720 "The B<logout>()  function returns 1 if the entry was successfully written to "
721 "the database, or 0 if an error occurred."
722 msgstr ""
723
724 #. type: TP
725 #: build/C/man3/login.3:100
726 #, no-wrap
727 msgid "I</var/run/utmp>"
728 msgstr ""
729
730 #. type: Plain text
731 #: build/C/man3/login.3:106
732 msgid ""
733 "user accounting database, configured through B<_PATH_UTMP> in "
734 "I<E<lt>paths.hE<gt>>"
735 msgstr ""
736
737 #. type: TP
738 #: build/C/man3/login.3:106 build/C/man3/updwtmp.3:59
739 #, no-wrap
740 msgid "I</var/log/wtmp>"
741 msgstr ""
742
743 #. type: Plain text
744 #: build/C/man3/login.3:112
745 msgid ""
746 "user accounting log file, configured through B<_PATH_WTMP> in "
747 "I<E<lt>paths.hE<gt>>"
748 msgstr ""
749
750 #. type: Plain text
751 #: build/C/man3/login.3:115
752 msgid "Not in POSIX.1-2001.  Present on the BSDs."
753 msgstr ""
754
755 #. type: Plain text
756 #: build/C/man3/login.3:130
757 msgid ""
758 "Note that the member I<ut_user> of I<struct utmp> is called I<ut_name> in "
759 "BSD.  Therefore, I<ut_name> is defined as an alias for I<ut_user> in "
760 "I<E<lt>utmp.hE<gt>>."
761 msgstr ""
762
763 #. type: Plain text
764 #: build/C/man3/login.3:133
765 msgid "B<getutent>(3), B<utmp>(5)"
766 msgstr ""
767
768 #. type: TH
769 #: build/C/man3/updwtmp.3:29
770 #, no-wrap
771 msgid "UPDWTMP"
772 msgstr ""
773
774 #. type: Plain text
775 #: build/C/man3/updwtmp.3:32
776 msgid "updwtmp, logwtmp - append an entry to the wtmp file"
777 msgstr ""
778
779 #. type: Plain text
780 #: build/C/man3/updwtmp.3:35
781 #, no-wrap
782 msgid "B<#include E<lt>utmp.hE<gt>>\n"
783 msgstr ""
784
785 #. type: Plain text
786 #: build/C/man3/updwtmp.3:37
787 #, no-wrap
788 msgid "B<void updwtmp(const char *>I<wtmp_file>B<, const struct utmp *>I<ut>B<);>\n"
789 msgstr ""
790
791 #. type: Plain text
792 #: build/C/man3/updwtmp.3:40
793 #, no-wrap
794 msgid ""
795 "B<void logwtmp(const char *>I<line>B<, const char *>I<name>B<, const char "
796 "*>I<host>B<);>\n"
797 msgstr ""
798
799 #. type: Plain text
800 #: build/C/man3/updwtmp.3:45
801 msgid "For B<logwtmp>(), link with I<-lutil>."
802 msgstr ""
803
804 #. type: Plain text
805 #: build/C/man3/updwtmp.3:50
806 msgid "B<updwtmp>()  appends the utmp structure I<ut> to the wtmp file."
807 msgstr ""
808
809 #. type: Plain text
810 #: build/C/man3/updwtmp.3:58
811 msgid ""
812 "B<logwtmp>()  constructs a utmp structure using I<line>, I<name>, I<host>, "
813 "current time and current process ID.  Then it calls B<updwtmp>()  to append "
814 "the structure to the wtmp file."
815 msgstr ""
816
817 #. type: Plain text
818 #: build/C/man3/updwtmp.3:62
819 msgid "database of past user logins"
820 msgstr ""
821
822 #. type: Plain text
823 #: build/C/man3/updwtmp.3:65
824 msgid "Not in POSIX.1-2001.  Present on Solaris, NetBSD, and perhaps other systems."
825 msgstr ""
826
827 #. type: Plain text
828 #: build/C/man3/updwtmp.3:69
829 msgid ""
830 "For consistency with the other \"utmpx\" functions (see B<getutxent>(3)), "
831 "glibc provides (since version 2.1):"
832 msgstr ""
833
834 #. type: Plain text
835 #: build/C/man3/updwtmp.3:72
836 #, no-wrap
837 msgid "B<#include E<lt>utmpx.hE<gt>>\n"
838 msgstr ""
839
840 #. type: Plain text
841 #: build/C/man3/updwtmp.3:74
842 #, no-wrap
843 msgid ""
844 "B<void updwtmpx (const char *>I<wtmpx_file>B<, const struct utmpx "
845 "*>I<utx>B<);>\n"
846 msgstr ""
847
848 #. type: Plain text
849 #: build/C/man3/updwtmp.3:81
850 msgid ""
851 "This function performs the same task as B<updwtmp>(), but differs in that it "
852 "takes a I<utmpx> structure as its last argument."
853 msgstr ""
854
855 #. type: Plain text
856 #: build/C/man3/updwtmp.3:84
857 msgid "B<getutxent>(3), B<wtmp>(5)"
858 msgstr ""
859
860 #. type: TH
861 #: build/C/man5/utmp.5:30
862 #, no-wrap
863 msgid "UTMP"
864 msgstr ""
865
866 #. type: Plain text
867 #: build/C/man5/utmp.5:33
868 msgid "utmp, wtmp - login records"
869 msgstr ""
870
871 #. type: Plain text
872 #: build/C/man5/utmp.5:42
873 msgid ""
874 "The I<utmp> file allows one to discover information about who is currently "
875 "using the system.  There may be more users currently using the system, "
876 "because not all programs use utmp logging."
877 msgstr ""
878
879 #. type: Plain text
880 #: build/C/man5/utmp.5:52
881 msgid ""
882 "B<Warning:> I<utmp> must not be writable by the user class \"other\", "
883 "because many system programs (foolishly)  depend on its integrity.  You risk "
884 "faked system logfiles and modifications of system files if you leave I<utmp> "
885 "writable to any user other than the owner and group owner of the file."
886 msgstr ""
887
888 #. type: Plain text
889 #: build/C/man5/utmp.5:60
890 msgid ""
891 "The file is a sequence of I<utmp> structures, declared as follows in "
892 "I<E<lt>utmp.hE<gt>> (note that this is only one of several definitions "
893 "around; details depend on the version of libc):"
894 msgstr ""
895
896 #. type: Plain text
897 #: build/C/man5/utmp.5:64
898 #, no-wrap
899 msgid "/* Values for ut_type field, below */\n"
900 msgstr ""
901
902 #. type: Plain text
903 #: build/C/man5/utmp.5:79
904 #, no-wrap
905 msgid ""
906 "#define EMPTY         0 /* Record does not contain valid info\n"
907 "                           (formerly known as UT_UNKNOWN on Linux) */\n"
908 "#define RUN_LVL       1 /* Change in system run-level (see\n"
909 "                           B<init>(8)) */\n"
910 "#define BOOT_TIME     2 /* Time of system boot (in I<ut_tv>) */\n"
911 "#define NEW_TIME      3 /* Time after system clock change\n"
912 "                           (in I<ut_tv>) */\n"
913 "#define OLD_TIME      4 /* Time before system clock change\n"
914 "                           (in I<ut_tv>) */\n"
915 "#define INIT_PROCESS  5 /* Process spawned by B<init>(8) */\n"
916 "#define LOGIN_PROCESS 6 /* Session leader process for user login */\n"
917 "#define USER_PROCESS  7 /* Normal process */\n"
918 "#define DEAD_PROCESS  8 /* Terminated process */\n"
919 "#define ACCOUNTING    9 /* Not implemented */\n"
920 msgstr ""
921
922 #. type: Plain text
923 #: build/C/man5/utmp.5:83
924 #, no-wrap
925 msgid ""
926 "#define UT_LINESIZE      32\n"
927 "#define UT_NAMESIZE      32\n"
928 "#define UT_HOSTSIZE     256\n"
929 msgstr ""
930
931 #. type: Plain text
932 #: build/C/man5/utmp.5:88
933 #, no-wrap
934 msgid ""
935 "struct exit_status {              /* Type for ut_exit, below */\n"
936 "    short int e_termination;      /* Process termination status */\n"
937 "    short int e_exit;             /* Process exit status */\n"
938 "};\n"
939 msgstr ""
940
941 #. type: Plain text
942 #: build/C/man5/utmp.5:116
943 #, no-wrap
944 msgid ""
945 "struct utmp {\n"
946 "    short   ut_type;              /* Type of record */\n"
947 "    pid_t   ut_pid;               /* PID of login process */\n"
948 "    char    ut_line[UT_LINESIZE]; /* Device name of tty - \"/dev/\" */\n"
949 "    char    ut_id[4];             /* Terminal name suffix,\n"
950 "                                     or inittab(5) ID */\n"
951 "    char    ut_user[UT_NAMESIZE]; /* Username */\n"
952 "    char    ut_host[UT_HOSTSIZE]; /* Hostname for remote login, or\n"
953 "                                     kernel version for run-level\n"
954 "                                     messages */\n"
955 "    struct  exit_status ut_exit;  /* Exit status of a process\n"
956 "                                     marked as DEAD_PROCESS; not\n"
957 "                                     used by Linux init (1 */\n"
958 "    /* The ut_session and ut_tv fields must be the same size when\n"
959 "       compiled 32- and 64-bit.  This allows data files and shared\n"
960 "       memory to be shared between 32- and 64-bit applications. */\n"
961 "#if __WORDSIZE == 64 && defined __WORDSIZE_COMPAT32\n"
962 "    int32_t ut_session;           /* Session ID (B<getsid>(2)),\n"
963 "                                     used for windowing */\n"
964 "    struct {\n"
965 "        int32_t tv_sec;           /* Seconds */\n"
966 "        int32_t tv_usec;          /* Microseconds */\n"
967 "    } ut_tv;                      /* Time entry was made */\n"
968 "#else\n"
969 "     long   ut_session;           /* Session ID */\n"
970 "     struct timeval ut_tv;        /* Time entry was made */\n"
971 "#endif\n"
972 msgstr ""
973
974 #. type: Plain text
975 #: build/C/man5/utmp.5:122
976 #, no-wrap
977 msgid ""
978 "    int32_t ut_addr_v6[4];        /* Internet address of remote\n"
979 "                                     host; IPv4 address uses\n"
980 "                                     just ut_addr_v6[0] */\n"
981 "    char __unused[20];            /* Reserved for future use */\n"
982 "};\n"
983 msgstr ""
984
985 #. type: Plain text
986 #: build/C/man5/utmp.5:130
987 #, no-wrap
988 msgid ""
989 "/* Backward compatibility hacks */\n"
990 "#define ut_name ut_user\n"
991 "#ifndef _NO_UT_TIME\n"
992 "#define ut_time ut_tv.tv_sec\n"
993 "#endif\n"
994 "#define ut_xtime ut_tv.tv_sec\n"
995 "#define ut_addr ut_addr_v6[0]\n"
996 msgstr ""
997
998 #. type: Plain text
999 #: build/C/man5/utmp.5:140
1000 msgid ""
1001 "This structure gives the name of the special file associated with the user's "
1002 "terminal, the user's login name, and the time of login in the form of "
1003 "B<time>(2).  String fields are terminated by a null byte (\\(aq\\e0\\(aq)  "
1004 "if they are shorter than the size of the field."
1005 msgstr ""
1006
1007 #. type: Plain text
1008 #: build/C/man5/utmp.5:157
1009 msgid ""
1010 "The first entries ever created result from B<init>(1)  processing "
1011 "B<inittab>(5).  Before an entry is processed, though, B<init>(1)  cleans up "
1012 "utmp by setting I<ut_type> to B<DEAD_PROCESS>, clearing I<ut_user>, "
1013 "I<ut_host>, and I<ut_time> with null bytes for each record which I<ut_type> "
1014 "is not B<DEAD_PROCESS> or B<RUN_LVL> and where no process with PID I<ut_pid> "
1015 "exists.  If no empty record with the needed I<ut_id> can be found, "
1016 "B<init>(1)  creates a new one.  It sets I<ut_id> from the inittab, I<ut_pid> "
1017 "and I<ut_time> to the current values, and I<ut_type> to B<INIT_PROCESS>."
1018 msgstr ""
1019
1020 #. type: Plain text
1021 #: build/C/man5/utmp.5:176
1022 msgid ""
1023 "B<mingetty>(8)  (or B<agetty>(8))  locates the entry by the PID, changes "
1024 "I<ut_type> to B<LOGIN_PROCESS>, changes I<ut_time>, sets I<ut_line>, and "
1025 "waits for connection to be established.  B<login>(1), after a user has been "
1026 "authenticated, changes I<ut_type> to B<USER_PROCESS>, changes I<ut_time>, "
1027 "and sets I<ut_host> and I<ut_addr>.  Depending on B<mingetty>(8)  (or "
1028 "B<agetty>(8))  and B<login>(1), records may be located by I<ut_line> instead "
1029 "of the preferable I<ut_pid>."
1030 msgstr ""
1031
1032 #. type: Plain text
1033 #: build/C/man5/utmp.5:182
1034 msgid ""
1035 "When B<init>(1)  finds that a process has exited, it locates its utmp entry "
1036 "by I<ut_pid>, sets I<ut_type> to B<DEAD_PROCESS>, and clears I<ut_user>, "
1037 "I<ut_host> and I<ut_time> with null bytes."
1038 msgstr ""
1039
1040 #. type: Plain text
1041 #: build/C/man5/utmp.5:194
1042 msgid ""
1043 "B<xterm>(1)  and other terminal emulators directly create a B<USER_PROCESS> "
1044 "record and generate the I<ut_id> by using the string that suffix part of the "
1045 "terminal name (the characters following I</dev/[pt]ty>).  If they find a "
1046 "B<DEAD_PROCESS> for this ID, they recycle it, otherwise they create a new "
1047 "entry.  If they can, they will mark it as B<DEAD_PROCESS> on exiting and it "
1048 "is advised that they null I<ut_line>, I<ut_time>, I<ut_user>, and I<ut_host> "
1049 "as well."
1050 msgstr ""
1051
1052 #. type: Plain text
1053 #: build/C/man5/utmp.5:202
1054 msgid ""
1055 "B<telnetd>(8)  sets up a B<LOGIN_PROCESS> entry and leaves the rest to "
1056 "B<login>(1)  as usual.  After the telnet session ends, B<telnetd>(8)  cleans "
1057 "up utmp in the described way."
1058 msgstr ""
1059
1060 #. type: Plain text
1061 #: build/C/man5/utmp.5:224
1062 msgid ""
1063 "The I<wtmp> file records all logins and logouts.  Its format is exactly like "
1064 "I<utmp> except that a null username indicates a logout on the associated "
1065 "terminal.  Furthermore, the terminal name B<~> with username B<shutdown> or "
1066 "B<reboot> indicates a system shutdown or reboot and the pair of terminal "
1067 "names B<|>/B<}> logs the old/new system time when B<date>(1)  changes it.  "
1068 "I<wtmp> is maintained by B<login>(1), B<init>(1), and some versions of "
1069 "B<getty>(8)  (e.g., B<mingetty>(8)  or B<agetty>(8)).  None of these "
1070 "programs creates the file, so if it is removed, record-keeping is turned "
1071 "off."
1072 msgstr ""
1073
1074 #. type: Plain text
1075 #: build/C/man5/utmp.5:226
1076 msgid "/var/run/utmp"
1077 msgstr ""
1078
1079 #. type: Plain text
1080 #: build/C/man5/utmp.5:228
1081 msgid "/var/log/wtmp"
1082 msgstr ""
1083
1084 #. type: Plain text
1085 #: build/C/man5/utmp.5:247
1086 msgid ""
1087 "POSIX.1 does not specify a I<utmp> structure, but rather one named I<utmpx>, "
1088 "with specifications for the fields I<ut_type>, I<ut_pid>, I<ut_line>, "
1089 "I<ut_id>, I<ut_user>, and I<ut_tv>.  POSIX.1 does not specify the lengths of "
1090 "the I<ut_line> and I<ut_user> fields."
1091 msgstr ""
1092
1093 #. type: Plain text
1094 #: build/C/man5/utmp.5:253
1095 msgid ""
1096 "Linux defines the I<utmpx> structure to be the same as the I<utmp> "
1097 "structure."
1098 msgstr ""
1099
1100 #. type: SS
1101 #: build/C/man5/utmp.5:253
1102 #, no-wrap
1103 msgid "Comparison with historical systems"
1104 msgstr ""
1105
1106 #. type: Plain text
1107 #: build/C/man5/utmp.5:256
1108 msgid ""
1109 "Linux utmp entries conform neither to v7/BSD nor to System V; they are a mix "
1110 "of the two."
1111 msgstr ""
1112
1113 #. type: Plain text
1114 #: build/C/man5/utmp.5:263
1115 msgid ""
1116 "v7/BSD has fewer fields; most importantly it lacks I<ut_type>, which causes "
1117 "native v7/BSD-like programs to display (for example) dead or login entries.  "
1118 "Further, there is no configuration file which allocates slots to sessions.  "
1119 "BSD does so because it lacks I<ut_id> fields."
1120 msgstr ""
1121
1122 #. type: Plain text
1123 #: build/C/man5/utmp.5:275
1124 msgid ""
1125 "In Linux (as in System V), the I<ut_id> field of a record will never change "
1126 "once it has been set, which reserves that slot without needing a "
1127 "configuration file.  Clearing I<ut_id> may result in race conditions leading "
1128 "to corrupted utmp entries and potential security holes.  Clearing the "
1129 "abovementioned fields by filling them with null bytes is not required by "
1130 "System V semantics, but makes it possible to run many programs which assume "
1131 "BSD semantics and which do not modify utmp.  Linux uses the BSD conventions "
1132 "for line contents, as documented above."
1133 msgstr ""
1134
1135 #.  mtk: What is the referrent of "them" in the following sentence?
1136 #.  System V only uses the type field to mark them and logs
1137 #.  informative messages such as \fB"new time"\fP in the line field.
1138 #. type: Plain text
1139 #: build/C/man5/utmp.5:280
1140 msgid "System V has no I<ut_host> or I<ut_addr_v6> fields."
1141 msgstr ""
1142
1143 #. type: Plain text
1144 #: build/C/man5/utmp.5:288
1145 msgid ""
1146 "Unlike various other systems, where utmp logging can be disabled by removing "
1147 "the file, utmp must always exist on Linux.  If you want to disable "
1148 "B<who>(1), then do not make utmp world readable."
1149 msgstr ""
1150
1151 #. type: Plain text
1152 #: build/C/man5/utmp.5:291
1153 msgid ""
1154 "The file format is machine-dependent, so it is recommended that it be "
1155 "processed only on the machine architecture where it was created."
1156 msgstr ""
1157
1158 #. type: Plain text
1159 #: build/C/man5/utmp.5:312
1160 msgid ""
1161 "Note that on I<biarch> platforms, that is, systems which can run both 32-bit "
1162 "and 64-bit applications (x86-64, ppc64, s390x, etc.), I<ut_tv> is the same "
1163 "size in 32-bit mode as in 64-bit mode.  The same goes for I<ut_session> and "
1164 "I<ut_time> if they are present.  This allows data files and shared memory to "
1165 "be shared between 32-bit and 64-bit applications.  This is achieved by "
1166 "changing the type of I<ut_session> to I<int32_t>, and that of I<ut_tv> to a "
1167 "struct with two I<int32_t> fields I<tv_sec> and I<tv_usec>.  Since I<ut_tv> "
1168 "may not be the same as I<struct timeval>, then instead of the call:"
1169 msgstr ""
1170
1171 #. type: Plain text
1172 #: build/C/man5/utmp.5:316
1173 #, no-wrap
1174 msgid "gettimeofday((struct timeval *) &ut.ut_tv, NULL);\n"
1175 msgstr ""
1176
1177 #. type: Plain text
1178 #: build/C/man5/utmp.5:320
1179 msgid "the following method of setting this field is recommended:"
1180 msgstr ""
1181
1182 #. type: Plain text
1183 #: build/C/man5/utmp.5:325
1184 #, no-wrap
1185 msgid ""
1186 "struct utmp ut;\n"
1187 "struct timeval tv;\n"
1188 msgstr ""
1189
1190 #. type: Plain text
1191 #: build/C/man5/utmp.5:329
1192 #, no-wrap
1193 msgid ""
1194 "gettimeofday(&tv, NULL);\n"
1195 "ut.ut_tv.tv_sec = tv.tv_sec;\n"
1196 "ut.ut_tv.tv_usec = tv.tv_usec;\n"
1197 msgstr ""
1198
1199 #. type: Plain text
1200 #: build/C/man5/utmp.5:352
1201 msgid ""
1202 "B<ac>(1), B<date>(1), B<last>(1), B<login>(1), B<utmpdump>(1), B<who>(1), "
1203 "B<getutent>(3), B<getutmp>(3), B<login>(3), B<logout>(3), B<logwtmp>(3), "
1204 "B<updwtmp>(3), B<init>(1)"
1205 msgstr ""