We could use the standard (C11) _Noreturn qualifier, but it will be deprecated in C23, and replaced by C++'s [[noreturn]], which is compatible with the GCC attribute, so let's directly use the attribute, and in the future we'll be able to switch to [[]]. Signed-off-by: Alejandro Colomar <alx@kernel.org>
		
			
				
	
	
		
			254 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			254 lines
		
	
	
		
			5.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* $Id$ */
 | 
						|
/* some useful defines */
 | 
						|
 | 
						|
#ifndef _DEFINES_H_
 | 
						|
#define _DEFINES_H_
 | 
						|
 | 
						|
#include "config.h"
 | 
						|
 | 
						|
#include <stdbool.h>
 | 
						|
#include <locale.h>
 | 
						|
 | 
						|
#define gettext_noop(String) (String)
 | 
						|
/* #define gettext_def(String) "#define String" */
 | 
						|
 | 
						|
#ifdef ENABLE_NLS
 | 
						|
# include <libintl.h>
 | 
						|
# define _(Text) gettext (Text)
 | 
						|
#else
 | 
						|
# undef bindtextdomain
 | 
						|
# define bindtextdomain(Domain, Directory)	(NULL)
 | 
						|
# undef textdomain
 | 
						|
# define textdomain(Domain)	(NULL)
 | 
						|
# define _(Text) Text
 | 
						|
# define ngettext(Msgid1, Msgid2, N) \
 | 
						|
    ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
 | 
						|
#endif
 | 
						|
 | 
						|
#include <stdlib.h>
 | 
						|
#include <string.h>
 | 
						|
 | 
						|
#include <errno.h>
 | 
						|
 | 
						|
#include <sys/stat.h>
 | 
						|
#include <sys/types.h>
 | 
						|
#include <sys/wait.h>
 | 
						|
 | 
						|
#include <unistd.h>
 | 
						|
 | 
						|
/*
 | 
						|
 * crypt(3), crypt_gensalt(3), and their
 | 
						|
 * feature test macros may be defined in here.
 | 
						|
 */
 | 
						|
#if HAVE_CRYPT_H
 | 
						|
# include <crypt.h>
 | 
						|
#endif
 | 
						|
 | 
						|
#include <sys/time.h>
 | 
						|
#include <time.h>
 | 
						|
 | 
						|
#ifdef HAVE_MEMSET_EXPLICIT
 | 
						|
# define memzero(ptr, size) memset_explicit((ptr), 0, (size))
 | 
						|
#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)
 | 
						|
{
 | 
						|
	ptr = memset(ptr, '\0', size);
 | 
						|
	__asm__ __volatile__ ("" : : "r"(ptr) : "memory");
 | 
						|
}
 | 
						|
#endif					/* !HAVE_MEMSET_S && !HAVE_EXPLICIT_BZERO */
 | 
						|
 | 
						|
#define strzero(s) memzero(s, strlen(s))	/* warning: evaluates twice */
 | 
						|
 | 
						|
#include <dirent.h>
 | 
						|
 | 
						|
/*
 | 
						|
 * 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
 | 
						|
 | 
						|
/* 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
 | 
						|
 | 
						|
/* cleaner than lots of #ifdefs everywhere - use this as follows:
 | 
						|
   SYSLOG((LOG_CRIT, "user %s cracked root", user)); */
 | 
						|
#ifdef ENABLE_NLS
 | 
						|
/* 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
 | 
						|
   trust the formatted time received from the unix domain (or worse,
 | 
						|
   UDP) socket.  -MM */
 | 
						|
/* Avoid translated PAM error messages: Set LC_ALL to "C".
 | 
						|
 * --Nekral */
 | 
						|
#define SYSLOG(x)							\
 | 
						|
	do {								\
 | 
						|
		char *old_locale = setlocale (LC_ALL, NULL);		\
 | 
						|
		char *saved_locale = NULL;				\
 | 
						|
		if (NULL != old_locale) {				\
 | 
						|
			saved_locale = strdup (old_locale);		\
 | 
						|
		}							\
 | 
						|
		if (NULL != saved_locale) {				\
 | 
						|
			(void) setlocale (LC_ALL, "C");			\
 | 
						|
		}							\
 | 
						|
		syslog x ;						\
 | 
						|
		if (NULL != saved_locale) {				\
 | 
						|
			(void) setlocale (LC_ALL, saved_locale);	\
 | 
						|
			free (saved_locale);				\
 | 
						|
		}							\
 | 
						|
	} while (false)
 | 
						|
#else				/* !ENABLE_NLS */
 | 
						|
#define SYSLOG(x) syslog x
 | 
						|
#endif				/* !ENABLE_NLS */
 | 
						|
 | 
						|
/* 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)
 | 
						|
 | 
						|
#include <termios.h>
 | 
						|
#define STTY(fd, termio) tcsetattr(fd, TCSANOW, termio)
 | 
						|
#define GTTY(fd, termio) tcgetattr(fd, termio)
 | 
						|
#define TERMIO struct termios
 | 
						|
 | 
						|
/*
 | 
						|
 * 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
 | 
						|
 | 
						|
#define WIDTHOF(x)   (sizeof(x) * CHAR_BIT)
 | 
						|
#define NITEMS(arr)  (sizeof((arr)) / sizeof((arr)[0]))
 | 
						|
 | 
						|
/* 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
 | 
						|
 | 
						|
#define SHADOW_SP_FLAG_UNSET ((unsigned long int)-1)
 | 
						|
 | 
						|
#ifdef WITH_AUDIT
 | 
						|
#ifdef __u8			/* in case we use pam < 0.80 */
 | 
						|
#undef __u8
 | 
						|
#endif
 | 
						|
#ifdef __u32
 | 
						|
#undef __u32
 | 
						|
#endif
 | 
						|
 | 
						|
#include <libaudit.h>
 | 
						|
#endif
 | 
						|
 | 
						|
/* To be used for verified unused parameters */
 | 
						|
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 | 
						|
# define unused    __attribute__((unused))
 | 
						|
# define NORETURN  __attribute__((__noreturn__))
 | 
						|
# define format_attr(type, index, check) __attribute__((format (type, index, check)))
 | 
						|
#else
 | 
						|
# define unused
 | 
						|
# define NORETURN
 | 
						|
# define format_attr(type, index, check)
 | 
						|
#endif
 | 
						|
 | 
						|
/* Maximum length of usernames */
 | 
						|
#include <utmp.h>
 | 
						|
#define USER_NAME_MAX_LENGTH (sizeof (((struct utmp *)NULL)->ut_user))
 | 
						|
 | 
						|
/* Maximum length of passwd entry */
 | 
						|
#define PASSWD_ENTRY_MAX_LENGTH 32768
 | 
						|
 | 
						|
#if (__GNUC__ >= 11) && !defined(__clang__)
 | 
						|
# define ATTR_MALLOC(deallocator)  [[gnu::malloc(deallocator)]]
 | 
						|
#else
 | 
						|
# define ATTR_MALLOC(deallocator)
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef HAVE_SECURE_GETENV
 | 
						|
#  define shadow_getenv(name) secure_getenv(name)
 | 
						|
# else
 | 
						|
#  define shadow_getenv(name) getenv(name)
 | 
						|
#endif
 | 
						|
 | 
						|
#endif				/* _DEFINES_H_ */
 |