2 Unix SMB/CIFS implementation.
4 Copyright (C) T.D.Lee@durham.ac.uk 1999
5 Heavily modified by Andrew Bartlett and Tridge, April 2001
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "system/filesys.h"
23 #include "smbd/smbd.h"
25 /****************************************************************************
26 Reflect connection status in utmp/wtmp files.
27 T.D.Lee@durham.ac.uk September 1999
29 With grateful thanks since then to many who have helped port it to
30 different operating systems. The variety of OS quirks thereby
31 uncovered is amazing...
34 o Always attempt to use programmatic interface (pututline() etc.)
35 Indeed, at present only programmatic use is supported.
36 o The only currently supported programmatic interface to "wtmp{,x}"
37 is through "updwtmp*()" routines.
38 o The "x" (utmpx/wtmpx; HAVE_UTMPX_H) seems preferable.
39 o The HAVE_* items should identify supported features.
40 o If at all possible, avoid "if defined(MY-OS)" constructions.
42 OS observations and status:
43 Almost every OS seems to have its own quirks.
46 Tested on 2.6 and 2.7; should be OK on other flavours.
48 Apparently has utmpx.h but doesn't implement.
50 Has utmpx.h, but (e.g.) no "getutmpx()". (Is this like AIX ?)
52 utmpx.h seems not to set default filenames. non-x better.
54 Not tested. Appears to have "x".
56 Not tested. Appears to lack "x".
59 "updwtmp*()" routines seem absent, so no current wtmp* support.
60 Has "ut_addr": probably trivial to implement (although remember
61 that IPv6 is coming...).
64 No "putut*()" type of interface.
65 No "ut_type" and associated defines.
66 Write files directly. Alternatively use its login(3)/logout(3).
68 Not tested. Resembles FreeBSD, but no login()/logout().
71 Should "lastlog" files, if any, be updated?
72 BSD systems (SunOS 4, FreeBSD):
73 o Prominent mention on man pages.
74 System-V (e.g. Solaris 2):
75 o No mention on man pages, even under "man -k".
76 o Has a "/var/adm/lastlog" file, but pututxline() etc. seem
78 o Despite downplaying (above), nevertheless has <lastlog.h>.
79 So perhaps UN*X "lastlog" facility is intended for tty/terminal only?
82 Each connection requires a small number (starting at 0, working up)
83 to represent the line. This must be unique within and across all
84 smbd processes. It is the 'id_num' from Samba's session.c code.
86 The 4 byte 'ut_id' component is vital to distinguish connections,
87 of which there could be several hundred or even thousand.
88 Entries seem to be printable characters, with optional NULL pads.
90 We need to be distinct from other entries in utmp/wtmp.
92 Observed things: therefore avoid them. Add to this list please.
93 From Solaris 2.x (because that's what I have):
94 'sN' : run-levels; N: [0-9]
96 'CC' : arbitrary things; C: [a-z]
97 'rXNN' : rlogin; N: [0-9]; X: [0-9a-z]
98 'tXNN' : rlogin; N: [0-9]; X: [0-9a-z]
100 'ftpZ' : ftp (Z is the number 255, aka 0377, aka 0xff)
101 Mostly a record uses the same 'ut_id' in both "utmp" and "wtmp",
102 but differences have been seen.
104 Arbitrarily I have chosen to use a distinctive 'SM' for the
107 The remaining two bytes encode the session 'id_num' (see above).
108 Our caller (session.c) should note our 16-bit limitation.
110 ****************************************************************************/
114 * Not WITH_UTMP? Simply supply dummy routines.
117 void sys_utmp_claim(const char *username
, const char *hostname
,
118 const char *id_str
, int id_num
)
121 void sys_utmp_yield(const char *username
, const char *hostname
,
122 const char *id_str
, int id_num
)
125 #else /* WITH_UTMP */
135 /* BSD systems: some may need lastlog.h (SunOS 4), some may not (FreeBSD) */
136 /* Some System-V systems (e.g. Solaris 2) declare this too. */
137 #ifdef HAVE_LASTLOG_H
141 /****************************************************************************
142 Default paths to various {u,w}tmp{,x} files.
143 ****************************************************************************/
147 static const char * const ux_pathname
=
148 # if defined (UTMPX_FILE)
150 # elif defined (_UTMPX_FILE)
152 # elif defined (_PATH_UTMPX)
158 static const char * const wx_pathname
=
159 # if defined (WTMPX_FILE)
161 # elif defined (_WTMPX_FILE)
163 # elif defined (_PATH_WTMPX)
169 #endif /* HAVE_UTMPX_H */
171 static const char * const ut_pathname
=
172 # if defined (UTMP_FILE)
174 # elif defined (_UTMP_FILE)
176 # elif defined (_PATH_UTMP)
182 static const char * const wt_pathname
=
183 # if defined (WTMP_FILE)
185 # elif defined (_WTMP_FILE)
187 # elif defined (_PATH_WTMP)
193 /* BSD-like systems might want "lastlog" support. */
194 #if 0 /* *** Not yet implemented */
195 #ifndef HAVE_PUTUTLINE /* see "pututline_my()" */
196 static const char *ll_pathname
=
197 # if defined (_PATH_LASTLOG) /* what other names (if any?) */
201 # endif /* _PATH_LASTLOG */
202 #endif /* HAVE_PUTUTLINE */
206 * Get name of {u,w}tmp{,x} file.
207 * return: fname contains filename
208 * Possibly empty if this code not yet ported to this system.
210 * utmp{,x}: try "utmp dir", then default (a define)
211 * wtmp{,x}: try "wtmp dir", then "utmp dir", then default (a define)
213 static char *uw_pathname(TALLOC_CTX
*ctx
,
215 const char *uw_default
)
217 char *dirname
= NULL
;
219 /* For w-files, first look for explicit "wtmp dir" */
220 if (uw_name
[0] == 'w') {
221 dirname
= talloc_strdup(ctx
, lp_wtmpdir());
225 trim_char(dirname
,'\0','/');
228 /* For u-files and non-explicit w-dir, look for "utmp dir" */
229 if ((dirname
== NULL
) || (strlen(dirname
) == 0)) {
230 dirname
= talloc_strdup(ctx
, lp_utmpdir());
234 trim_char(dirname
,'\0','/');
237 /* If explicit directory above, use it */
238 if (dirname
&& strlen(dirname
) != 0) {
239 return talloc_asprintf(ctx
,
245 /* No explicit directory: attempt to use default paths */
246 if (strlen(uw_default
) == 0) {
247 /* No explicit setting, no known default.
248 * Has it yet been ported to this OS?
250 DEBUG(2,("uw_pathname: unable to determine pathname\n"));
252 return talloc_strdup(ctx
, uw_default
);
255 #ifndef HAVE_PUTUTLINE
256 /****************************************************************************
257 Update utmp file directly. No subroutine interface: probably a BSD system.
258 ****************************************************************************/
260 static void pututline_my(const char *uname
, struct utmp
*u
, bool claim
)
262 DEBUG(1,("pututline_my: not yet implemented\n"));
263 /* BSD implementor: may want to consider (or not) adjusting "lastlog" */
265 #endif /* HAVE_PUTUTLINE */
269 /****************************************************************************
270 Update wtmp file directly. No subroutine interface: probably a BSD system.
271 Credit: Michail Vidiassov <master@iaas.msu.ru>
272 ****************************************************************************/
274 static void updwtmp_my(const char *wname
, struct utmp
*u
, bool claim
)
282 * may use empty ut_name to distinguish a logout record.
284 * May need "if defined(SUNOS4)" etc. around some of these,
285 * but try to avoid if possible.
288 * man page indicates ut_name and ut_host both NULL
290 * man page appears not to specify (hints non-NULL)
291 * A correspondent suggest at least ut_name should be NULL
293 #if defined(HAVE_UT_UT_NAME)
294 memset((char *)&u
->ut_name
, '\0', sizeof(u
->ut_name
));
296 #if defined(HAVE_UT_UT_HOST)
297 memset((char *)&u
->ut_host
, '\0', sizeof(u
->ut_host
));
300 /* Stolen from logwtmp function in libutil.
301 * May be more locking/blocking is needed?
303 if ((fd
= open(wname
, O_WRONLY
|O_APPEND
, 0)) < 0)
305 if (fstat(fd
, &buf
) == 0) {
306 if (write(fd
, (char *)u
, sizeof(struct utmp
)) != sizeof(struct utmp
))
307 (void) ftruncate(fd
, buf
.st_size
);
311 #endif /* HAVE_UPDWTMP */
313 /****************************************************************************
314 Update via utmp/wtmp (not utmpx/wtmpx).
315 ****************************************************************************/
317 static void utmp_nox_update(struct utmp
*u
, bool claim
)
321 #if defined(PUTUTLINE_RETURNS_UTMP)
323 #endif /* PUTUTLINE_RETURNS_UTMP */
325 uname
= uw_pathname(talloc_tos(), "utmp", ut_pathname
);
329 DEBUG(2,("utmp_nox_update: uname:%s\n", uname
));
331 #ifdef HAVE_PUTUTLINE
332 if (strlen(uname
) != 0) {
336 # if defined(PUTUTLINE_RETURNS_UTMP)
341 DEBUG(2,("utmp_nox_update: pututline() failed\n"));
344 # else /* PUTUTLINE_RETURNS_UTMP */
348 # endif /* PUTUTLINE_RETURNS_UTMP */
350 #else /* HAVE_PUTUTLINE */
351 if (strlen(uname
) != 0) {
352 pututline_my(uname
, u
, claim
);
354 #endif /* HAVE_PUTUTLINE */
356 wname
= uw_pathname(talloc_tos(), "wtmp", wt_pathname
);
360 DEBUG(2,("utmp_nox_update: wname:%s\n", wname
));
361 if (strlen(wname
) != 0) {
365 * updwtmp() and the newer updwtmpx() may be unsymmetrical.
366 * At least one OS, Solaris 2.x declares the former in the
367 * "utmpx" (latter) file and context.
368 * In the Solaris case this is irrelevant: it has both and
369 * we always prefer the "x" case, so doesn't come here.
370 * But are there other systems, with no "x", which lack
374 updwtmp_my(wname
, u
, claim
);
375 #endif /* HAVE_UPDWTMP */
379 /****************************************************************************
380 Copy a string in the utmp structure.
381 ****************************************************************************/
383 static void utmp_strcpy(char *dest
, const char *src
, size_t n
)
387 memset(dest
, '\0', n
);
391 memcpy(dest
, src
, n
);
394 memcpy(dest
, src
, len
);
398 /****************************************************************************
399 Update via utmpx/wtmpx (preferred) or via utmp/wtmp.
400 ****************************************************************************/
402 static void sys_utmp_update(struct utmp
*u
, const char *hostname
, bool claim
)
404 #if !defined(HAVE_UTMPX_H)
405 /* No utmpx stuff. Drop to non-x stuff */
406 utmp_nox_update(u
, claim
);
407 #elif !defined(HAVE_PUTUTXLINE)
408 /* Odd. Have utmpx.h but no "pututxline()". Drop to non-x stuff */
409 DEBUG(1,("utmp_update: have utmpx.h but no pututxline() function\n"));
410 utmp_nox_update(u
, claim
);
411 #elif !defined(HAVE_GETUTMPX)
412 /* Odd. Have utmpx.h but no "getutmpx()". Drop to non-x stuff */
413 DEBUG(1,("utmp_update: have utmpx.h but no getutmpx() function\n"));
414 utmp_nox_update(u
, claim
);
415 #elif !defined(HAVE_UPDWTMPX)
416 /* Have utmpx.h but no "updwtmpx()". Drop to non-x stuff */
417 DEBUG(1,("utmp_update: have utmpx.h but no updwtmpx() function\n"));
418 utmp_nox_update(u
, claim
);
422 struct utmpx ux
, *uxrc
;
426 #if defined(HAVE_UX_UT_SYSLEN)
428 ux
.ut_syslen
= strlen(hostname
) + 1; /* include end NULL */
432 #if defined(HAVE_UT_UT_HOST)
433 utmp_strcpy(ux
.ut_host
, hostname
, sizeof(ux
.ut_host
));
436 uname
= uw_pathname(talloc_tos(), "utmpx", ux_pathname
);
437 wname
= uw_pathname(talloc_tos(), "wtmpx", wx_pathname
);
438 if (uname
&& wname
) {
439 DEBUG(2,("utmp_update: uname:%s wname:%s\n", uname
, wname
));
443 * Check for either uname or wname being empty.
444 * Some systems, such as Redhat 6, have a "utmpx.h" which doesn't
445 * define default filenames.
446 * Also, our local installation has not provided an override.
447 * Drop to non-x method. (E.g. RH6 has good defaults in "utmp.h".)
449 if (!uname
|| !wname
|| (strlen(uname
) == 0) || (strlen(wname
) == 0)) {
450 utmp_nox_update(u
, claim
);
454 uxrc
= pututxline(&ux
);
457 DEBUG(2,("utmp_update: pututxline() failed\n"));
460 updwtmpx(wname
, &ux
);
462 #endif /* HAVE_UTMPX_H */
465 #if defined(HAVE_UT_UT_ID)
466 /****************************************************************************
467 Encode the unique connection number into "ut_id".
468 ****************************************************************************/
470 static int ut_id_encode(int i
, char *fourbyte
)
473 const char *ut_id_encstr
= "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
476 * 'ut_id_encstr' is the character set on which modulo arithmetic is done.
477 * Example: digits would produce the base-10 numbers from '001'.
479 nbase
= strlen(ut_id_encstr
);
481 fourbyte
[0] = ut_id_encstr
[i
% nbase
];
483 fourbyte
[1] = ut_id_encstr
[i
% nbase
];
485 fourbyte
[3] = ut_id_encstr
[i
% nbase
];
487 fourbyte
[2] = ut_id_encstr
[i
% nbase
];
490 /* we do not care about overflows as i is a random number */
493 #endif /* defined(HAVE_UT_UT_ID) */
497 fill a system utmp structure given all the info we can gather
499 static bool sys_utmp_fill(struct utmp
*u
,
500 const char *username
, const char *hostname
,
501 const char *id_str
, int id_num
)
503 struct timeval timeval
;
507 * Several (all?) systems seems to define one as the other.
508 * It is easier and clearer simply to let the following take its course,
509 * rather than to try to detect and optimise.
511 #if defined(HAVE_UT_UT_USER)
512 utmp_strcpy(u
->ut_user
, username
, sizeof(u
->ut_user
));
513 #elif defined(HAVE_UT_UT_NAME)
514 utmp_strcpy(u
->ut_name
, username
, sizeof(u
->ut_name
));
519 * If size limit proves troublesome, then perhaps use "ut_id_encode()".
521 utmp_strcpy(u
->ut_line
, id_str
, sizeof(u
->ut_line
));
523 #if defined(HAVE_UT_UT_PID)
524 u
->ut_pid
= getpid();
529 * Some have one, some the other. Many have both, but defined (aliased).
530 * It is easier and clearer simply to let the following take its course.
531 * But note that we do the more precise ut_tv as the final assignment.
533 #if defined(HAVE_UT_UT_TIME)
534 GetTimeOfDay(&timeval
);
535 u
->ut_time
= timeval
.tv_sec
;
536 #elif defined(HAVE_UT_UT_TV)
537 GetTimeOfDay(&timeval
);
540 #error "with-utmp must have UT_TIME or UT_TV"
543 #if defined(HAVE_UT_UT_HOST)
544 utmp_strcpy(u
->ut_host
, hostname
, sizeof(u
->ut_host
));
547 #if defined(HAVE_UT_UT_ID)
548 if (ut_id_encode(id_num
, u
->ut_id
) != 0) {
549 DEBUG(1,("utmp_fill: cannot encode id %d\n", id_num
));
557 /****************************************************************************
559 ****************************************************************************/
561 void sys_utmp_yield(const char *username
, const char *hostname
,
562 const char *id_str
, int id_num
)
568 #if defined(HAVE_UT_UT_EXIT)
569 u
.ut_exit
.e_termination
= 0;
570 u
.ut_exit
.e_exit
= 0;
573 #if defined(HAVE_UT_UT_TYPE)
574 u
.ut_type
= DEAD_PROCESS
;
577 if (!sys_utmp_fill(&u
, username
, hostname
, id_str
, id_num
))
580 sys_utmp_update(&u
, NULL
, False
);
583 /****************************************************************************
584 Claim a entry in whatever utmp system the OS uses.
585 ****************************************************************************/
587 void sys_utmp_claim(const char *username
, const char *hostname
,
588 const char *id_str
, int id_num
)
594 #if defined(HAVE_UT_UT_TYPE)
595 u
.ut_type
= USER_PROCESS
;
598 if (!sys_utmp_fill(&u
, username
, hostname
, id_str
, id_num
))
601 sys_utmp_update(&u
, hostname
, True
);
604 #endif /* WITH_UTMP */