2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 09:57:41 +00:00
sudo/compat.h

130 lines
3.1 KiB
C
Raw Normal View History

1995-01-13 17:39:02 +00:00
/*
* CU sudo version 1.6
1999-02-03 04:32:19 +00:00
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
1995-01-13 17:39:02 +00:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 1, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
1996-09-08 00:21:42 +00:00
* Please send bugs, changes, problems to sudo-bugs@courtesan.com
1995-04-09 22:58:55 +00:00
*
1999-01-17 23:16:20 +00:00
* $Sudo$
1995-01-13 17:39:02 +00:00
*/
#ifndef _SUDO_COMPAT_H
#define _SUDO_COMPAT_H
/*
* Macros that may be missing on some Operating Systems
*/
/* Deal with ansi stuff reasonably. */
#ifndef __P
# if defined (__cplusplus) || defined (__STDC__)
# define __P(args) args
1995-01-13 17:39:02 +00:00
# else
# define __P(args) ()
1995-01-13 17:39:02 +00:00
# endif
#endif /* __P */
/*
* Some systems (ie ISC V/386) do not define MAXPATHLEN even in param.h
*/
#ifndef MAXPATHLEN
# define MAXPATHLEN 1024
#endif
/*
* Some systems do not define MAXHOSTNAMELEN.
*/
#ifndef MAXHOSTNAMELEN
# define MAXHOSTNAMELEN 64
#endif
1995-03-31 22:27:35 +00:00
/*
* 4.2BSD lacks FD_* macros (we only use FD_SET and FD_ZERO)
*/
#ifndef FD_SETSIZE
#define FD_SET(fd, fds) ((fds) -> fds_bits[0] |= (1 << (fd)))
#define FD_ZERO(fds) ((fds) -> fds_bits[0] = 0)
#endif /* !FD_SETSIZE */
1995-03-28 05:44:58 +00:00
/*
* Posix versions for those without...
*/
#ifndef _S_IFMT
# define _S_IFMT S_IFMT
#endif /* _S_IFMT */
#ifndef _S_IFREG
# define _S_IFREG S_IFREG
#endif /* _S_IFREG */
1995-09-04 19:28:15 +00:00
#ifndef _S_IFDIR
# define _S_IFDIR S_IFDIR
#endif /* _S_IFDIR */
1995-03-28 05:44:58 +00:00
#ifndef S_ISREG
# define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
#endif /* S_ISREG */
1995-09-04 19:28:15 +00:00
#ifndef S_ISDIR
# define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
#endif /* S_ISDIR */
1995-03-28 05:44:58 +00:00
1995-07-06 18:47:52 +00:00
/*
* Some OS's may not have this.
*/
#ifndef S_IRWXU
# define S_IRWXU 0000700 /* rwx for owner */
#endif /* S_IRWXU */
1998-09-09 00:45:17 +00:00
/*
* In case this is not defined in <sys/types.h> or <sys/select.h>
1998-09-09 00:45:17 +00:00
*/
#ifndef howmany
#define howmany(x, y) (((x) + ((y) - 1)) / (y))
#endif
/*
* These should be defined in <unistd.h> but not everyone has them.
*/
#ifndef STDIN_FILENO
# define STDIN_FILENO 0
#endif
#ifndef STDOUT_FILENO
# define STDOUT_FILENO 1
#endif
#ifndef STDERR_FILENO
# define STDERR_FILENO 2
#endif
1995-01-13 17:39:02 +00:00
/*
1996-10-09 17:37:18 +00:00
* Emulate seteuid() for AIX via setuidx() -- needed for some versions of AIX
1995-01-13 17:39:02 +00:00
*/
#ifdef _AIX
# include <sys/id.h>
# define seteuid(_EUID) (setuidx(ID_EFFECTIVE|ID_REAL, _EUID))
1996-10-09 17:37:18 +00:00
# undef HAVE_SETEUID
# define HAVE_SETEUID 1
1996-10-08 23:11:45 +00:00
#endif /* _AIX */
/*
1996-10-09 17:37:18 +00:00
* Emulate seteuid() for HP-UX via setresuid(2) and seteuid(2) for others.
1996-10-08 23:11:45 +00:00
*/
1996-10-09 17:37:18 +00:00
#ifndef HAVE_SETEUID
# ifdef __hpux
# define seteuid(_EUID) (setresuid((uid_t) -1, _EUID, (uid_t) -1))
1996-10-09 17:37:18 +00:00
# else
# define seteuid(_EUID) (setreuid((uid_t) -1, _EUID))
1996-10-09 17:37:18 +00:00
# endif /* __hpux */
#endif /* HAVE_SETEUID */
1995-01-13 17:39:02 +00:00
#endif /* _SUDO_COMPAT_H */