2007-11-11 05:16:11 +05:30
|
|
|
/* $Id$ */
|
2007-10-07 17:14:02 +05:30
|
|
|
/* some useful defines */
|
|
|
|
|
|
|
|
#ifndef _DEFINES_H_
|
|
|
|
#define _DEFINES_H_
|
|
|
|
|
2021-06-24 16:09:27 +05:30
|
|
|
#include "config.h"
|
|
|
|
|
2022-12-02 21:21:05 +05:30
|
|
|
#include <stdbool.h>
|
2022-12-02 21:36:47 +05:30
|
|
|
#include <locale.h>
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
#define gettext_noop(String) (String)
|
|
|
|
/* #define gettext_def(String) "#define String" */
|
|
|
|
|
2008-06-14 01:35:51 +05:30
|
|
|
#ifdef ENABLE_NLS
|
2007-10-07 17:14:02 +05:30
|
|
|
# include <libintl.h>
|
|
|
|
# define _(Text) gettext (Text)
|
|
|
|
#else
|
|
|
|
# undef bindtextdomain
|
2008-06-14 01:35:51 +05:30
|
|
|
# define bindtextdomain(Domain, Directory) (NULL)
|
2007-10-07 17:14:02 +05:30
|
|
|
# undef textdomain
|
2008-06-14 01:35:51 +05:30
|
|
|
# define textdomain(Domain) (NULL)
|
2007-10-07 17:14:02 +05:30
|
|
|
# define _(Text) Text
|
2007-10-07 17:16:52 +05:30
|
|
|
# define ngettext(Msgid1, Msgid2, N) \
|
|
|
|
((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
|
|
|
|
2021-12-28 23:49:32 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2022-12-02 21:28:12 +05:30
|
|
|
#include <errno.h>
|
2007-10-07 17:14:59 +05:30
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2021-12-30 18:55:49 +05:30
|
|
|
#include <sys/wait.h>
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2022-12-03 02:09:15 +05:30
|
|
|
#include <unistd.h>
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2021-06-24 16:09:27 +05:30
|
|
|
/*
|
|
|
|
* crypt(3), crypt_gensalt(3), and their
|
|
|
|
* feature test macros may be defined in here.
|
|
|
|
*/
|
|
|
|
#if HAVE_CRYPT_H
|
|
|
|
# include <crypt.h>
|
|
|
|
#endif
|
|
|
|
|
2021-12-30 20:42:15 +05:30
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2023-01-24 20:09:41 +05:30
|
|
|
#ifdef HAVE_MEMSET_EXPLICIT
|
|
|
|
# define memzero(ptr, size) memset_explicit((ptr), 0, (size))
|
2022-01-03 19:33:34 +05:30
|
|
|
#elif defined HAVE_EXPLICIT_BZERO /* !HAVE_MEMSET_S */
|
|
|
|
# define memzero(ptr, size) explicit_bzero((ptr), (size))
|
|
|
|
#else /* !HAVE_MEMSET_S && HAVE_EXPLICIT_BZERO */
|
|
|
|
static inline void memzero(void *ptr, size_t size)
|
|
|
|
{
|
2023-01-24 20:14:35 +05:30
|
|
|
ptr = memset(ptr, '\0', size);
|
|
|
|
__asm__ __volatile__ ("" : : "r"(ptr) : "memory");
|
2022-01-03 19:33:34 +05:30
|
|
|
}
|
|
|
|
#endif /* !HAVE_MEMSET_S && !HAVE_EXPLICIT_BZERO */
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
#define strzero(s) memzero(s, strlen(s)) /* warning: evaluates twice */
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2021-12-30 18:39:29 +05:30
|
|
|
#include <dirent.h>
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Possible cases:
|
|
|
|
* - /usr/include/shadow.h exists and includes the shadow group stuff.
|
|
|
|
* - /usr/include/shadow.h exists, but we use our own gshadow.h.
|
|
|
|
*/
|
|
|
|
#include <shadow.h>
|
|
|
|
#if defined(SHADOWGRP) && !defined(GSHADOW)
|
|
|
|
#include "gshadow_.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
#ifndef NGROUPS_MAX
|
|
|
|
#ifdef NGROUPS
|
|
|
|
#define NGROUPS_MAX NGROUPS
|
|
|
|
#else
|
|
|
|
#define NGROUPS_MAX 64
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <syslog.h>
|
|
|
|
|
|
|
|
#ifndef LOG_WARN
|
|
|
|
#define LOG_WARN LOG_WARNING
|
|
|
|
#endif
|
|
|
|
|
2007-10-07 17:14:32 +05:30
|
|
|
/* LOG_NOWAIT is deprecated */
|
|
|
|
#ifndef LOG_NOWAIT
|
|
|
|
#define LOG_NOWAIT 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* LOG_AUTH is deprecated, use LOG_AUTHPRIV instead */
|
|
|
|
#ifndef LOG_AUTHPRIV
|
|
|
|
#define LOG_AUTHPRIV LOG_AUTH
|
|
|
|
#endif
|
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
/* cleaner than lots of #ifdefs everywhere - use this as follows:
|
|
|
|
SYSLOG((LOG_CRIT, "user %s cracked root", user)); */
|
2008-06-14 01:35:51 +05:30
|
|
|
#ifdef ENABLE_NLS
|
2007-10-07 17:14:02 +05:30
|
|
|
/* Temporarily set LC_TIME to "C" to avoid strange dates in syslog.
|
|
|
|
This is a workaround for a more general syslog(d) design problem -
|
|
|
|
syslogd should log the current system time for each event, and not
|
2007-10-07 17:14:32 +05:30
|
|
|
trust the formatted time received from the unix domain (or worse,
|
|
|
|
UDP) socket. -MM */
|
2008-02-03 23:23:21 +05:30
|
|
|
/* Avoid translated PAM error messages: Set LC_ALL to "C".
|
|
|
|
* --Nekral */
|
2007-10-07 17:14:02 +05:30
|
|
|
#define SYSLOG(x) \
|
|
|
|
do { \
|
2011-09-19 02:14:09 +05:30
|
|
|
char *old_locale = setlocale (LC_ALL, NULL); \
|
2008-06-15 05:11:38 +05:30
|
|
|
char *saved_locale = NULL; \
|
|
|
|
if (NULL != old_locale) { \
|
|
|
|
saved_locale = strdup (old_locale); \
|
|
|
|
} \
|
|
|
|
if (NULL != saved_locale) { \
|
|
|
|
(void) setlocale (LC_ALL, "C"); \
|
|
|
|
} \
|
2007-10-07 17:14:02 +05:30
|
|
|
syslog x ; \
|
2008-06-15 05:11:38 +05:30
|
|
|
if (NULL != saved_locale) { \
|
|
|
|
(void) setlocale (LC_ALL, saved_locale); \
|
|
|
|
free (saved_locale); \
|
2007-10-07 17:14:02 +05:30
|
|
|
} \
|
2008-06-15 05:11:38 +05:30
|
|
|
} while (false)
|
2007-10-07 17:16:07 +05:30
|
|
|
#else /* !ENABLE_NLS */
|
2007-10-07 17:14:02 +05:30
|
|
|
#define SYSLOG(x) syslog x
|
2007-10-07 17:16:07 +05:30
|
|
|
#endif /* !ENABLE_NLS */
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:14:32 +05:30
|
|
|
/* The default syslog settings can now be changed here,
|
|
|
|
in just one place. */
|
|
|
|
|
|
|
|
#ifndef SYSLOG_OPTIONS
|
|
|
|
/* #define SYSLOG_OPTIONS (LOG_PID | LOG_CONS | LOG_NOWAIT) */
|
|
|
|
#define SYSLOG_OPTIONS (LOG_PID)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SYSLOG_FACILITY
|
|
|
|
#define SYSLOG_FACILITY LOG_AUTHPRIV
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define OPENLOG(progname) openlog(progname, SYSLOG_OPTIONS, SYSLOG_FACILITY)
|
|
|
|
|
2022-12-03 02:22:19 +05:30
|
|
|
#include <termios.h>
|
|
|
|
#define STTY(fd, termio) tcsetattr(fd, TCSANOW, termio)
|
|
|
|
#define GTTY(fd, termio) tcgetattr(fd, termio)
|
|
|
|
#define TERMIO struct termios
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Password aging constants
|
|
|
|
*
|
|
|
|
* DAY - seconds / day
|
|
|
|
* WEEK - seconds / week
|
|
|
|
* SCALE - seconds / aging unit
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Solaris defines this in shadow.h */
|
|
|
|
#ifndef DAY
|
|
|
|
#define DAY (24L*3600L)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define WEEK (7*DAY)
|
|
|
|
|
|
|
|
#ifdef ITI_AGING
|
|
|
|
#define SCALE 1
|
|
|
|
#else
|
|
|
|
#define SCALE DAY
|
|
|
|
#endif
|
|
|
|
|
2023-01-18 17:08:18 +05:30
|
|
|
#define WIDTHOF(x) (sizeof(x) * CHAR_BIT)
|
2022-12-22 18:21:20 +05:30
|
|
|
#define NITEMS(arr) (sizeof((arr)) / sizeof((arr)[0]))
|
2023-03-13 06:21:12 +05:30
|
|
|
#define STRLEN(s) (NITEMS(s) - 1)
|
2022-12-22 18:21:20 +05:30
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
/* Copy string pointed by B to array A with size checking. It was originally
|
|
|
|
in lmain.c but is _very_ useful elsewhere. Some setuid root programs with
|
|
|
|
very sloppy coding used to assume that BUFSIZ will always be enough... */
|
|
|
|
|
|
|
|
/* danger - side effects */
|
|
|
|
#define STRFCPY(A,B) \
|
|
|
|
(strncpy((A), (B), sizeof(A) - 1), (A)[sizeof(A) - 1] = '\0')
|
|
|
|
|
|
|
|
#ifndef PASSWD_FILE
|
|
|
|
#define PASSWD_FILE "/etc/passwd"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef GROUP_FILE
|
|
|
|
#define GROUP_FILE "/etc/group"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SHADOW_FILE
|
|
|
|
#define SHADOW_FILE "/etc/shadow"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SHADOWGRP
|
|
|
|
#ifndef SGROUP_FILE
|
|
|
|
#define SGROUP_FILE "/etc/gshadow"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* string to use for the pw_passwd field in /etc/passwd when using
|
|
|
|
* shadow passwords - most systems use "x" but there are a few
|
|
|
|
* exceptions, so it can be changed here if necessary. --marekm
|
|
|
|
*/
|
|
|
|
#ifndef SHADOW_PASSWD_STRING
|
|
|
|
#define SHADOW_PASSWD_STRING "x"
|
|
|
|
#endif
|
|
|
|
|
2008-06-14 01:35:51 +05:30
|
|
|
#define SHADOW_SP_FLAG_UNSET ((unsigned long int)-1)
|
|
|
|
|
2007-10-07 17:17:01 +05:30
|
|
|
#ifdef WITH_AUDIT
|
|
|
|
#ifdef __u8 /* in case we use pam < 0.80 */
|
|
|
|
#undef __u8
|
|
|
|
#endif
|
|
|
|
#ifdef __u32
|
|
|
|
#undef __u32
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <libaudit.h>
|
|
|
|
#endif
|
|
|
|
|
2008-01-06 18:42:09 +05:30
|
|
|
/* To be used for verified unused parameters */
|
|
|
|
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
|
2023-02-08 00:09:36 +05:30
|
|
|
# define unused __attribute__((unused))
|
|
|
|
# define NORETURN __attribute__((__noreturn__))
|
2022-08-05 21:10:42 +05:30
|
|
|
# define format_attr(type, index, check) __attribute__((format (type, index, check)))
|
2008-01-06 18:42:09 +05:30
|
|
|
#else
|
|
|
|
# define unused
|
2023-02-08 00:09:36 +05:30
|
|
|
# define NORETURN
|
2022-08-05 21:10:42 +05:30
|
|
|
# define format_attr(type, index, check)
|
2008-01-06 18:42:09 +05:30
|
|
|
#endif
|
|
|
|
|
2009-04-23 02:12:48 +05:30
|
|
|
/* Maximum length of usernames */
|
2022-12-21 23:06:57 +05:30
|
|
|
#include <utmp.h>
|
|
|
|
#define USER_NAME_MAX_LENGTH (sizeof (((struct utmp *)NULL)->ut_user))
|
2009-04-23 02:12:48 +05:30
|
|
|
|
2022-10-07 16:06:59 +05:30
|
|
|
/* Maximum length of passwd entry */
|
|
|
|
#define PASSWD_ENTRY_MAX_LENGTH 32768
|
|
|
|
|
2022-09-29 02:39:19 +05:30
|
|
|
#if (__GNUC__ >= 11) && !defined(__clang__)
|
|
|
|
# define ATTR_MALLOC(deallocator) [[gnu::malloc(deallocator)]]
|
|
|
|
#else
|
|
|
|
# define ATTR_MALLOC(deallocator)
|
|
|
|
#endif
|
|
|
|
|
2019-03-31 20:29:45 +05:30
|
|
|
#ifdef HAVE_SECURE_GETENV
|
|
|
|
# define shadow_getenv(name) secure_getenv(name)
|
|
|
|
# else
|
|
|
|
# define shadow_getenv(name) getenv(name)
|
|
|
|
#endif
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
#endif /* _DEFINES_H_ */
|