2004-08-15 10:40:59 +02:00
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
/*
|
2004-02-17 06:49:41 +01:00
|
|
|
* Copyright (c) 1999-2004 Damien Miller <djm@mindrot.org>
|
2000-04-03 06:50:43 +02:00
|
|
|
*
|
2004-02-17 06:49:41 +01: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 06:50:43 +02:00
|
|
|
*
|
2004-02-17 06:49:41 +01: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 06:50:43 +02:00
|
|
|
*/
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2000-08-16 02:35:58 +02:00
|
|
|
#include "includes.h"
|
2006-03-15 04:42:54 +01:00
|
|
|
|
2007-04-29 04:06:55 +02:00
|
|
|
#include <sys/types.h>
|
2006-08-24 11:45:33 +02:00
|
|
|
#ifdef HAVE_SYS_SELECT_H
|
|
|
|
# include <sys/select.h>
|
|
|
|
#endif
|
2006-08-24 11:43:16 +02:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
# include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
|
2006-07-24 06:51:00 +02:00
|
|
|
#include <string.h>
|
2006-03-15 04:42:54 +01:00
|
|
|
#include <signal.h>
|
2006-08-24 11:43:16 +02:00
|
|
|
#include <stdlib.h>
|
2013-11-03 06:30:46 +01:00
|
|
|
#include <time.h>
|
2007-04-29 04:06:55 +02:00
|
|
|
#include <unistd.h>
|
2006-03-15 04:42:54 +01:00
|
|
|
|
2004-08-13 10:37:21 +02:00
|
|
|
#ifndef HAVE___PROGNAME
|
2004-07-17 06:07:42 +02:00
|
|
|
char *__progname;
|
|
|
|
#endif
|
2001-02-09 02:55:35 +01:00
|
|
|
|
2003-01-09 23:53:12 +01:00
|
|
|
/*
|
|
|
|
* NB. duplicate __progname in case it is an alias for argv[0]
|
|
|
|
* Otherwise it may get clobbered by setproctitle()
|
|
|
|
*/
|
2003-08-22 01:34:41 +02:00
|
|
|
char *ssh_get_progname(char *argv0)
|
2000-11-17 04:47:20 +01:00
|
|
|
{
|
2015-02-25 18:12:58 +01:00
|
|
|
char *p, *q;
|
2000-11-17 04:47:20 +01:00
|
|
|
#ifdef HAVE___PROGNAME
|
|
|
|
extern char *__progname;
|
|
|
|
|
2015-02-25 18:12:58 +01:00
|
|
|
p = __progname;
|
2000-11-17 04:47:20 +01:00
|
|
|
#else
|
|
|
|
if (argv0 == NULL)
|
2003-05-18 16:13:38 +02:00
|
|
|
return ("unknown"); /* XXX */
|
2000-11-17 04:47:20 +01:00
|
|
|
p = strrchr(argv0, '/');
|
|
|
|
if (p == NULL)
|
|
|
|
p = argv0;
|
|
|
|
else
|
|
|
|
p++;
|
|
|
|
#endif
|
2015-02-25 18:12:58 +01:00
|
|
|
if ((q = strdup(p)) == NULL) {
|
|
|
|
perror("strdup");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
return q;
|
2000-11-17 04:47:20 +01:00
|
|
|
}
|
|
|
|
|
1999-12-30 05:08:44 +01:00
|
|
|
#ifndef HAVE_SETLOGIN
|
|
|
|
int setlogin(const char *name)
|
|
|
|
{
|
2003-05-18 16:13:38 +02:00
|
|
|
return (0);
|
1999-12-30 05:08:44 +01:00
|
|
|
}
|
|
|
|
#endif /* !HAVE_SETLOGIN */
|
|
|
|
|
|
|
|
#ifndef HAVE_INNETGR
|
2016-08-02 01:44:25 +02:00
|
|
|
int innetgr(const char *netgroup, const char *host,
|
2016-08-02 02:01:52 +02:00
|
|
|
const char *user, const char *domain)
|
1999-12-30 05:08:44 +01:00
|
|
|
{
|
2003-05-18 16:13:38 +02:00
|
|
|
return (0);
|
1999-12-30 05:08:44 +01:00
|
|
|
}
|
|
|
|
#endif /* HAVE_INNETGR */
|
|
|
|
|
|
|
|
#if !defined(HAVE_SETEUID) && defined(HAVE_SETREUID)
|
|
|
|
int seteuid(uid_t euid)
|
|
|
|
{
|
2003-05-18 16:13:38 +02:00
|
|
|
return (setreuid(-1, euid));
|
1999-12-30 05:08:44 +01:00
|
|
|
}
|
|
|
|
#endif /* !defined(HAVE_SETEUID) && defined(HAVE_SETREUID) */
|
2000-07-15 06:59:14 +02:00
|
|
|
|
2001-04-09 16:50:52 +02:00
|
|
|
#if !defined(HAVE_SETEGID) && defined(HAVE_SETRESGID)
|
|
|
|
int setegid(uid_t egid)
|
|
|
|
{
|
2003-05-18 16:13:38 +02:00
|
|
|
return(setresgid(-1, egid, -1));
|
2001-04-09 16:50:52 +02:00
|
|
|
}
|
|
|
|
#endif /* !defined(HAVE_SETEGID) && defined(HAVE_SETRESGID) */
|
|
|
|
|
2000-08-16 02:35:58 +02:00
|
|
|
#if !defined(HAVE_STRERROR) && defined(HAVE_SYS_ERRLIST) && defined(HAVE_SYS_NERR)
|
|
|
|
const char *strerror(int e)
|
2000-07-15 06:59:14 +02:00
|
|
|
{
|
2000-08-16 02:35:58 +02:00
|
|
|
extern int sys_nerr;
|
|
|
|
extern char *sys_errlist[];
|
2016-08-02 01:44:25 +02:00
|
|
|
|
2001-03-14 00:38:20 +01:00
|
|
|
if ((e >= 0) && (e < sys_nerr))
|
2003-05-18 16:13:38 +02:00
|
|
|
return (sys_errlist[e]);
|
|
|
|
|
|
|
|
return ("unlisted error");
|
2000-07-15 06:59:14 +02:00
|
|
|
}
|
2000-08-16 02:35:58 +02:00
|
|
|
#endif
|
2001-01-15 03:34:37 +01:00
|
|
|
|
|
|
|
#ifndef HAVE_UTIMES
|
|
|
|
int utimes(char *filename, struct timeval *tvp)
|
|
|
|
{
|
|
|
|
struct utimbuf ub;
|
|
|
|
|
2002-07-08 23:09:41 +02:00
|
|
|
ub.actime = tvp[0].tv_sec;
|
|
|
|
ub.modtime = tvp[1].tv_sec;
|
2016-08-02 01:44:25 +02:00
|
|
|
|
2003-05-18 16:13:38 +02:00
|
|
|
return (utime(filename, &ub));
|
2001-01-15 03:34:37 +01:00
|
|
|
}
|
2016-08-02 01:44:25 +02:00
|
|
|
#endif
|
2002-05-08 04:51:31 +02:00
|
|
|
|
|
|
|
#ifndef HAVE_TRUNCATE
|
2003-05-18 16:13:38 +02:00
|
|
|
int truncate(const char *path, off_t length)
|
2002-05-08 04:51:31 +02:00
|
|
|
{
|
|
|
|
int fd, ret, saverrno;
|
|
|
|
|
|
|
|
fd = open(path, O_WRONLY);
|
|
|
|
if (fd < 0)
|
2003-05-18 16:13:38 +02:00
|
|
|
return (-1);
|
2002-05-08 04:51:31 +02:00
|
|
|
|
|
|
|
ret = ftruncate(fd, length);
|
|
|
|
saverrno = errno;
|
2003-05-18 16:13:38 +02:00
|
|
|
close(fd);
|
2002-05-08 04:51:31 +02:00
|
|
|
if (ret == -1)
|
|
|
|
errno = saverrno;
|
2003-05-18 16:13:38 +02:00
|
|
|
|
2002-05-08 04:51:31 +02:00
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
#endif /* HAVE_TRUNCATE */
|
|
|
|
|
2003-03-18 19:21:40 +01:00
|
|
|
#if !defined(HAVE_NANOSLEEP) && !defined(HAVE_NSLEEP)
|
|
|
|
int nanosleep(const struct timespec *req, struct timespec *rem)
|
|
|
|
{
|
|
|
|
int rc, saverrno;
|
|
|
|
extern int errno;
|
|
|
|
struct timeval tstart, tstop, tremain, time2wait;
|
|
|
|
|
|
|
|
TIMESPEC_TO_TIMEVAL(&time2wait, req)
|
|
|
|
(void) gettimeofday(&tstart, NULL);
|
|
|
|
rc = select(0, NULL, NULL, NULL, &time2wait);
|
|
|
|
if (rc == -1) {
|
|
|
|
saverrno = errno;
|
|
|
|
(void) gettimeofday (&tstop, NULL);
|
|
|
|
errno = saverrno;
|
2016-08-02 01:44:25 +02:00
|
|
|
tremain.tv_sec = time2wait.tv_sec -
|
2003-03-18 19:21:40 +01:00
|
|
|
(tstop.tv_sec - tstart.tv_sec);
|
2016-08-02 01:44:25 +02:00
|
|
|
tremain.tv_usec = time2wait.tv_usec -
|
2003-03-18 19:21:40 +01:00
|
|
|
(tstop.tv_usec - tstart.tv_usec);
|
|
|
|
tremain.tv_sec += tremain.tv_usec / 1000000L;
|
|
|
|
tremain.tv_usec %= 1000000L;
|
|
|
|
} else {
|
|
|
|
tremain.tv_sec = 0;
|
|
|
|
tremain.tv_usec = 0;
|
|
|
|
}
|
2007-06-11 06:34:53 +02:00
|
|
|
if (rem != NULL)
|
|
|
|
TIMEVAL_TO_TIMESPEC(&tremain, rem)
|
2003-03-18 19:21:40 +01:00
|
|
|
|
|
|
|
return(rc);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-03-15 00:34:25 +01:00
|
|
|
#if !defined(HAVE_USLEEP)
|
|
|
|
int usleep(unsigned int useconds)
|
|
|
|
{
|
|
|
|
struct timespec ts;
|
|
|
|
|
|
|
|
ts.tv_sec = useconds / 1000000;
|
|
|
|
ts.tv_nsec = (useconds % 1000000) * 1000;
|
|
|
|
return nanosleep(&ts, NULL);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-08-02 15:31:42 +02:00
|
|
|
#ifndef HAVE_TCGETPGRP
|
|
|
|
pid_t
|
|
|
|
tcgetpgrp(int fd)
|
|
|
|
{
|
2003-08-02 15:33:48 +02:00
|
|
|
int ctty_pgrp;
|
2003-08-02 15:31:42 +02:00
|
|
|
|
2003-08-02 16:36:16 +02:00
|
|
|
if (ioctl(fd, TIOCGPGRP, &ctty_pgrp) == -1)
|
2003-08-02 15:31:42 +02:00
|
|
|
return(-1);
|
|
|
|
else
|
|
|
|
return(ctty_pgrp);
|
|
|
|
}
|
|
|
|
#endif /* HAVE_TCGETPGRP */
|
|
|
|
|
2003-08-13 12:48:07 +02:00
|
|
|
#ifndef HAVE_TCSENDBREAK
|
|
|
|
int
|
|
|
|
tcsendbreak(int fd, int duration)
|
|
|
|
{
|
|
|
|
# if defined(TIOCSBRK) && defined(TIOCCBRK)
|
|
|
|
struct timeval sleepytime;
|
|
|
|
|
|
|
|
sleepytime.tv_sec = 0;
|
|
|
|
sleepytime.tv_usec = 400000;
|
|
|
|
if (ioctl(fd, TIOCSBRK, 0) == -1)
|
|
|
|
return (-1);
|
|
|
|
(void)select(0, 0, 0, 0, &sleepytime);
|
|
|
|
if (ioctl(fd, TIOCCBRK, 0) == -1)
|
|
|
|
return (-1);
|
|
|
|
return (0);
|
|
|
|
# else
|
|
|
|
return -1;
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
#endif /* HAVE_TCSENDBREAK */
|
2003-08-25 03:16:21 +02:00
|
|
|
|
|
|
|
mysig_t
|
|
|
|
mysignal(int sig, mysig_t act)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_SIGACTION
|
|
|
|
struct sigaction sa, osa;
|
|
|
|
|
|
|
|
if (sigaction(sig, NULL, &osa) == -1)
|
|
|
|
return (mysig_t) -1;
|
|
|
|
if (osa.sa_handler != act) {
|
|
|
|
memset(&sa, 0, sizeof(sa));
|
|
|
|
sigemptyset(&sa.sa_mask);
|
|
|
|
sa.sa_flags = 0;
|
|
|
|
#ifdef SA_INTERRUPT
|
|
|
|
if (sig == SIGALRM)
|
|
|
|
sa.sa_flags |= SA_INTERRUPT;
|
|
|
|
#endif
|
|
|
|
sa.sa_handler = act;
|
|
|
|
if (sigaction(sig, &sa, NULL) == -1)
|
|
|
|
return (mysig_t) -1;
|
|
|
|
}
|
|
|
|
return (osa.sa_handler);
|
|
|
|
#else
|
2003-12-18 01:34:06 +01:00
|
|
|
#undef signal
|
2003-08-25 03:16:21 +02:00
|
|
|
return (signal(sig, act));
|
|
|
|
#endif
|
|
|
|
}
|
2005-05-27 13:13:40 +02:00
|
|
|
|
|
|
|
#ifndef HAVE_STRDUP
|
|
|
|
char *
|
|
|
|
strdup(const char *str)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
char *cp;
|
|
|
|
|
|
|
|
len = strlen(str) + 1;
|
|
|
|
cp = malloc(len);
|
|
|
|
if (cp != NULL)
|
2005-11-01 23:07:31 +01:00
|
|
|
return(memcpy(cp, str, len));
|
|
|
|
return NULL;
|
2005-05-27 13:13:40 +02:00
|
|
|
}
|
|
|
|
#endif
|
2010-11-08 23:26:23 +01:00
|
|
|
|
|
|
|
#ifndef HAVE_ISBLANK
|
2013-02-15 01:50:03 +01:00
|
|
|
int
|
|
|
|
isblank(int c)
|
2010-11-08 23:26:23 +01:00
|
|
|
{
|
|
|
|
return (c == ' ' || c == '\t');
|
|
|
|
}
|
|
|
|
#endif
|
2013-02-15 01:41:35 +01:00
|
|
|
|
|
|
|
#ifndef HAVE_GETPGID
|
|
|
|
pid_t
|
|
|
|
getpgid(pid_t pid)
|
|
|
|
{
|
2013-02-15 04:55:38 +01:00
|
|
|
#if defined(HAVE_GETPGRP) && !defined(GETPGRP_VOID)
|
|
|
|
return getpgrp(pid);
|
|
|
|
#elif defined(HAVE_GETPGRP)
|
2013-02-15 01:41:35 +01:00
|
|
|
if (pid == 0)
|
|
|
|
return getpgrp();
|
|
|
|
#endif
|
2013-02-15 04:55:38 +01:00
|
|
|
|
2013-02-15 01:41:35 +01:00
|
|
|
errno = ESRCH;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
2015-11-29 21:23:53 +01:00
|
|
|
|
|
|
|
#ifndef HAVE_PLEDGE
|
|
|
|
int
|
|
|
|
pledge(const char *promises, const char *paths[])
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2016-07-14 02:59:09 +02:00
|
|
|
|
|
|
|
#ifndef HAVE_MBTOWC
|
|
|
|
/* a mbtowc that only supports ASCII */
|
|
|
|
int
|
|
|
|
mbtowc(wchar_t *pwc, const char *s, size_t n)
|
|
|
|
{
|
|
|
|
if (s == NULL || *s == '\0')
|
|
|
|
return 0; /* ASCII is not state-dependent */
|
|
|
|
if (*s < 0 || *s > 0x7f || n < 1) {
|
|
|
|
errno = EOPNOTSUPP;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (pwc != NULL)
|
|
|
|
*pwc = *s;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
2017-03-20 03:38:27 +01:00
|
|
|
|
|
|
|
#ifndef HAVE_LLABS
|
|
|
|
long long
|
|
|
|
llabs(long long j)
|
|
|
|
{
|
|
|
|
return (j < 0 ? -j : j);
|
|
|
|
}
|
|
|
|
#endif
|