1999-10-27 07:42:43 +04:00
|
|
|
/*
|
2004-02-17 08:49:41 +03:00
|
|
|
* Copyright (c) 1999-2004 Damien Miller <djm@mindrot.org>
|
2000-04-03 08:50:43 +04:00
|
|
|
*
|
2004-02-17 08:49:41 +03:00
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
2000-04-03 08:50:43 +04:00
|
|
|
*
|
2004-02-17 08:49:41 +03:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2000-04-03 08:50:43 +04:00
|
|
|
*/
|
2001-02-09 04:55:35 +03:00
|
|
|
|
1999-12-29 17:29:35 +03:00
|
|
|
#ifndef _BSD_MISC_H
|
|
|
|
#define _BSD_MISC_H
|
1999-10-27 07:42:43 +04:00
|
|
|
|
2003-08-29 20:59:52 +04:00
|
|
|
#include "includes.h"
|
1999-10-28 08:12:54 +04:00
|
|
|
|
2003-08-22 03:34:41 +04:00
|
|
|
char *ssh_get_progname(char *);
|
2000-11-17 06:47:20 +03:00
|
|
|
|
2000-11-05 12:08:45 +03:00
|
|
|
#ifndef HAVE_SETSID
|
|
|
|
#define setsid() setpgrp(0, getpid())
|
|
|
|
#endif /* !HAVE_SETSID */
|
|
|
|
|
1999-11-22 08:11:05 +03:00
|
|
|
#ifndef HAVE_SETENV
|
2003-05-18 18:13:38 +04:00
|
|
|
int setenv(const char *, const char *, int);
|
1999-11-22 08:11:05 +03:00
|
|
|
#endif /* !HAVE_SETENV */
|
|
|
|
|
1999-12-30 07:08:44 +03:00
|
|
|
#ifndef HAVE_SETLOGIN
|
2003-05-18 18:13:38 +04:00
|
|
|
int setlogin(const char *);
|
1999-12-30 07:08:44 +03:00
|
|
|
#endif /* !HAVE_SETLOGIN */
|
|
|
|
|
|
|
|
#ifndef HAVE_INNETGR
|
2003-05-18 18:13:38 +04:00
|
|
|
int innetgr(const char *, const char *, const char *, const char *);
|
1999-12-30 07:08:44 +03:00
|
|
|
#endif /* HAVE_INNETGR */
|
|
|
|
|
|
|
|
#if !defined(HAVE_SETEUID) && defined(HAVE_SETREUID)
|
2003-05-18 18:13:38 +04:00
|
|
|
int seteuid(uid_t);
|
1999-12-30 07:08:44 +03:00
|
|
|
#endif /* !defined(HAVE_SETEUID) && defined(HAVE_SETREUID) */
|
|
|
|
|
2001-04-09 18:50:52 +04:00
|
|
|
#if !defined(HAVE_SETEGID) && defined(HAVE_SETRESGID)
|
2003-05-18 18:13:38 +04:00
|
|
|
int setegid(uid_t);
|
2001-04-09 18:50:52 +04:00
|
|
|
#endif /* !defined(HAVE_SETEGID) && defined(HAVE_SETRESGID) */
|
|
|
|
|
2000-08-16 04:35:58 +04:00
|
|
|
#if !defined(HAVE_STRERROR) && defined(HAVE_SYS_ERRLIST) && defined(HAVE_SYS_NERR)
|
2003-05-18 18:13:38 +04:00
|
|
|
const char *strerror(int);
|
2016-08-02 02:44:25 +03:00
|
|
|
#endif
|
2000-07-15 08:59:14 +04:00
|
|
|
|
2012-07-04 02:50:09 +04:00
|
|
|
#if !defined(HAVE_SETLINEBUF)
|
|
|
|
#define setlinebuf(a) (setvbuf((a), NULL, _IOLBF, 0))
|
|
|
|
#endif
|
2001-01-15 05:34:37 +03:00
|
|
|
|
|
|
|
#ifndef HAVE_UTIMES
|
|
|
|
#ifndef HAVE_STRUCT_TIMEVAL
|
|
|
|
struct timeval {
|
|
|
|
long tv_sec;
|
|
|
|
long tv_usec;
|
|
|
|
}
|
|
|
|
#endif /* HAVE_STRUCT_TIMEVAL */
|
|
|
|
|
2003-05-18 18:13:38 +04:00
|
|
|
int utimes(char *, struct timeval *);
|
2001-01-15 05:34:37 +03:00
|
|
|
#endif /* HAVE_UTIMES */
|
|
|
|
|
2019-01-18 03:09:01 +03:00
|
|
|
#ifndef AT_FDCWD
|
|
|
|
# define AT_FDCWD (-2)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_FCHMODAT
|
|
|
|
int fchmodat(int, const char *, mode_t, int);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_FCHOWNAT
|
|
|
|
int fchownat(int, const char *, uid_t, gid_t, int);
|
|
|
|
#endif
|
|
|
|
|
2002-05-08 06:51:31 +04:00
|
|
|
#ifndef HAVE_TRUNCATE
|
2003-05-18 18:13:38 +04:00
|
|
|
int truncate (const char *, off_t);
|
2002-05-08 06:51:31 +04:00
|
|
|
#endif /* HAVE_TRUNCATE */
|
2001-01-15 05:34:37 +03:00
|
|
|
|
2003-03-18 21:21:40 +03:00
|
|
|
#ifndef HAVE_STRUCT_TIMESPEC
|
|
|
|
struct timespec {
|
|
|
|
time_t tv_sec;
|
|
|
|
long tv_nsec;
|
|
|
|
};
|
2019-10-28 13:19:47 +03:00
|
|
|
#endif /* !HAVE_STRUCT_TIMESPEC */
|
2019-10-28 08:00:45 +03:00
|
|
|
|
|
|
|
#if !defined(HAVE_NANOSLEEP) && !defined(HAVE_NSLEEP)
|
2020-01-14 01:42:52 +03:00
|
|
|
# include <time.h>
|
2003-05-18 18:13:38 +04:00
|
|
|
int nanosleep(const struct timespec *, struct timespec *);
|
2003-03-18 21:21:40 +03:00
|
|
|
#endif
|
2002-06-12 20:57:14 +04:00
|
|
|
|
2019-10-28 08:00:45 +03:00
|
|
|
#ifndef HAVE_UTIMENSAT
|
2020-01-14 01:42:52 +03:00
|
|
|
# include <time.h>
|
2019-10-28 08:00:45 +03:00
|
|
|
/* start with the high bits and work down to minimise risk of overlap */
|
|
|
|
# ifndef AT_SYMLINK_NOFOLLOW
|
|
|
|
# define AT_SYMLINK_NOFOLLOW 0x80000000
|
|
|
|
# endif
|
|
|
|
int utimensat(int, const char *, const struct timespec[2], int);
|
|
|
|
#endif /* !HAVE_UTIMENSAT */
|
|
|
|
|
2013-03-15 03:34:25 +04:00
|
|
|
#ifndef HAVE_USLEEP
|
|
|
|
int usleep(unsigned int useconds);
|
|
|
|
#endif
|
|
|
|
|
2003-08-02 17:31:42 +04:00
|
|
|
#ifndef HAVE_TCGETPGRP
|
|
|
|
pid_t tcgetpgrp(int);
|
2003-08-13 14:48:07 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_TCSENDBREAK
|
|
|
|
int tcsendbreak(int, int);
|
|
|
|
#endif
|
2003-08-02 17:31:42 +04:00
|
|
|
|
2004-03-08 14:59:03 +03:00
|
|
|
#ifndef HAVE_UNSETENV
|
2012-02-14 22:03:30 +04:00
|
|
|
int unsetenv(const char *);
|
2004-03-08 14:59:03 +03:00
|
|
|
#endif
|
|
|
|
|
2010-11-09 01:26:23 +03:00
|
|
|
#ifndef HAVE_ISBLANK
|
|
|
|
int isblank(int);
|
|
|
|
#endif
|
|
|
|
|
2013-02-15 04:41:35 +04:00
|
|
|
#ifndef HAVE_GETPGID
|
|
|
|
pid_t getpgid(pid_t);
|
|
|
|
#endif
|
|
|
|
|
2013-05-30 02:29:08 +04:00
|
|
|
#ifndef HAVE_ENDGRENT
|
2015-04-07 03:48:04 +03:00
|
|
|
# define endgrent() do { } while(0)
|
2013-05-30 02:29:08 +04:00
|
|
|
#endif
|
|
|
|
|
2013-08-04 15:48:41 +04:00
|
|
|
#ifndef HAVE_KRB5_GET_ERROR_MESSAGE
|
|
|
|
# define krb5_get_error_message krb5_get_err_text
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_KRB5_FREE_ERROR_MESSAGE
|
2015-04-07 03:48:04 +03:00
|
|
|
# define krb5_free_error_message(a,b) do { } while(0)
|
2013-08-04 15:48:41 +04:00
|
|
|
#endif
|
|
|
|
|
2015-11-29 23:23:53 +03:00
|
|
|
#ifndef HAVE_PLEDGE
|
|
|
|
int pledge(const char *promises, const char *paths[]);
|
|
|
|
#endif
|
|
|
|
|
2016-07-13 07:42:35 +03:00
|
|
|
/* bsd-err.h */
|
|
|
|
#ifndef HAVE_ERR
|
|
|
|
void err(int, const char *, ...) __attribute__((format(printf, 2, 3)));
|
|
|
|
#endif
|
|
|
|
#ifndef HAVE_ERRX
|
|
|
|
void errx(int, const char *, ...) __attribute__((format(printf, 2, 3)));
|
|
|
|
#endif
|
|
|
|
#ifndef HAVE_WARN
|
|
|
|
void warn(const char *, ...) __attribute__((format(printf, 1, 2)));
|
|
|
|
#endif
|
|
|
|
|
2017-03-20 05:38:27 +03:00
|
|
|
#ifndef HAVE_LLABS
|
|
|
|
long long llabs(long long);
|
|
|
|
#endif
|
|
|
|
|
2018-02-26 03:43:48 +03:00
|
|
|
#if defined(HAVE_DECL_BZERO) && HAVE_DECL_BZERO == 0
|
2018-02-24 12:25:22 +03:00
|
|
|
void bzero(void *, size_t);
|
|
|
|
#endif
|
|
|
|
|
2018-02-24 12:46:37 +03:00
|
|
|
#ifndef HAVE_RAISE
|
|
|
|
int raise(int);
|
|
|
|
#endif
|
|
|
|
|
2018-02-25 05:25:15 +03:00
|
|
|
#ifndef HAVE_GETSID
|
|
|
|
pid_t getsid(pid_t);
|
|
|
|
#endif
|
|
|
|
|
2018-02-26 06:37:06 +03:00
|
|
|
#ifndef HAVE_FLOCK
|
|
|
|
# define LOCK_SH 0x01
|
|
|
|
# define LOCK_EX 0x02
|
|
|
|
# define LOCK_NB 0x04
|
|
|
|
# define LOCK_UN 0x08
|
|
|
|
int flock(int, int);
|
|
|
|
#endif
|
|
|
|
|
2018-03-05 11:28:08 +03:00
|
|
|
#ifdef FFLUSH_NULL_BUG
|
|
|
|
# define fflush(x) (_ssh_compat_fflush(x))
|
|
|
|
#endif
|
|
|
|
|
2019-10-29 11:45:03 +03:00
|
|
|
#ifndef HAVE_LOCALTIME_R
|
|
|
|
struct tm *localtime_r(const time_t *, struct tm *);
|
|
|
|
#endif
|
|
|
|
|
2019-11-01 07:22:32 +03:00
|
|
|
#ifndef HAVE_REALPATH
|
2019-11-01 10:17:42 +03:00
|
|
|
#define realpath(x, y) (sftp_realpath((x), (y)))
|
2019-11-01 07:22:32 +03:00
|
|
|
#endif
|
|
|
|
|
1999-12-29 17:29:35 +03:00
|
|
|
#endif /* _BSD_MISC_H */
|