1999-10-27 03:42:43 +00:00
|
|
|
/*
|
2003-05-18 14:13:38 +00:00
|
|
|
* Copyright (c) 1999-2003 Damien Miller. All rights reserved.
|
2000-04-03 04:50:43 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
1999-10-27 03:42:43 +00:00
|
|
|
|
2000-08-16 00:35:58 +00:00
|
|
|
#include "includes.h"
|
2003-01-09 22:53:12 +00:00
|
|
|
#include "xmalloc.h"
|
1999-10-27 03:42:43 +00:00
|
|
|
|
2003-08-13 10:48:07 +00:00
|
|
|
RCSID("$Id: bsd-misc.c,v 1.17 2003/08/13 10:48:07 dtucker Exp $");
|
2001-02-09 01:55:35 +00:00
|
|
|
|
2003-01-09 22:53:12 +00:00
|
|
|
/*
|
|
|
|
* NB. duplicate __progname in case it is an alias for argv[0]
|
|
|
|
* Otherwise it may get clobbered by setproctitle()
|
|
|
|
*/
|
2000-11-17 03:47:20 +00:00
|
|
|
char *get_progname(char *argv0)
|
|
|
|
{
|
|
|
|
#ifdef HAVE___PROGNAME
|
|
|
|
extern char *__progname;
|
|
|
|
|
2003-01-09 22:53:12 +00:00
|
|
|
return xstrdup(__progname);
|
2000-11-17 03:47:20 +00:00
|
|
|
#else
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
if (argv0 == NULL)
|
2003-05-18 14:13:38 +00:00
|
|
|
return ("unknown"); /* XXX */
|
2000-11-17 03:47:20 +00:00
|
|
|
p = strrchr(argv0, '/');
|
|
|
|
if (p == NULL)
|
|
|
|
p = argv0;
|
|
|
|
else
|
|
|
|
p++;
|
2003-01-09 22:53:12 +00:00
|
|
|
|
2003-05-18 14:13:38 +00:00
|
|
|
return (xstrdup(p));
|
2000-11-17 03:47:20 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1999-12-30 04:08:44 +00:00
|
|
|
#ifndef HAVE_SETLOGIN
|
|
|
|
int setlogin(const char *name)
|
|
|
|
{
|
2003-05-18 14:13:38 +00:00
|
|
|
return (0);
|
1999-12-30 04:08:44 +00:00
|
|
|
}
|
|
|
|
#endif /* !HAVE_SETLOGIN */
|
|
|
|
|
|
|
|
#ifndef HAVE_INNETGR
|
|
|
|
int innetgr(const char *netgroup, const char *host,
|
|
|
|
const char *user, const char *domain)
|
|
|
|
{
|
2003-05-18 14:13:38 +00:00
|
|
|
return (0);
|
1999-12-30 04:08:44 +00:00
|
|
|
}
|
|
|
|
#endif /* HAVE_INNETGR */
|
|
|
|
|
|
|
|
#if !defined(HAVE_SETEUID) && defined(HAVE_SETREUID)
|
|
|
|
int seteuid(uid_t euid)
|
|
|
|
{
|
2003-05-18 14:13:38 +00:00
|
|
|
return (setreuid(-1, euid));
|
1999-12-30 04:08:44 +00:00
|
|
|
}
|
|
|
|
#endif /* !defined(HAVE_SETEUID) && defined(HAVE_SETREUID) */
|
2000-07-15 04:59:14 +00:00
|
|
|
|
2001-04-09 14:50:52 +00:00
|
|
|
#if !defined(HAVE_SETEGID) && defined(HAVE_SETRESGID)
|
|
|
|
int setegid(uid_t egid)
|
|
|
|
{
|
2003-05-18 14:13:38 +00:00
|
|
|
return(setresgid(-1, egid, -1));
|
2001-04-09 14:50:52 +00:00
|
|
|
}
|
|
|
|
#endif /* !defined(HAVE_SETEGID) && defined(HAVE_SETRESGID) */
|
|
|
|
|
2000-08-16 00:35:58 +00:00
|
|
|
#if !defined(HAVE_STRERROR) && defined(HAVE_SYS_ERRLIST) && defined(HAVE_SYS_NERR)
|
|
|
|
const char *strerror(int e)
|
2000-07-15 04:59:14 +00:00
|
|
|
{
|
2000-08-16 00:35:58 +00:00
|
|
|
extern int sys_nerr;
|
|
|
|
extern char *sys_errlist[];
|
|
|
|
|
2001-03-13 23:38:20 +00:00
|
|
|
if ((e >= 0) && (e < sys_nerr))
|
2003-05-18 14:13:38 +00:00
|
|
|
return (sys_errlist[e]);
|
|
|
|
|
|
|
|
return ("unlisted error");
|
2000-07-15 04:59:14 +00:00
|
|
|
}
|
2000-08-16 00:35:58 +00:00
|
|
|
#endif
|
2001-01-15 02:34:37 +00:00
|
|
|
|
|
|
|
#ifndef HAVE_UTIMES
|
|
|
|
int utimes(char *filename, struct timeval *tvp)
|
|
|
|
{
|
|
|
|
struct utimbuf ub;
|
|
|
|
|
2002-07-08 21:09:41 +00:00
|
|
|
ub.actime = tvp[0].tv_sec;
|
|
|
|
ub.modtime = tvp[1].tv_sec;
|
2001-01-15 02:34:37 +00:00
|
|
|
|
2003-05-18 14:13:38 +00:00
|
|
|
return (utime(filename, &ub));
|
2001-01-15 02:34:37 +00:00
|
|
|
}
|
|
|
|
#endif
|
2002-05-08 02:51:31 +00:00
|
|
|
|
|
|
|
#ifndef HAVE_TRUNCATE
|
2003-05-18 14:13:38 +00:00
|
|
|
int truncate(const char *path, off_t length)
|
2002-05-08 02:51:31 +00:00
|
|
|
{
|
|
|
|
int fd, ret, saverrno;
|
|
|
|
|
|
|
|
fd = open(path, O_WRONLY);
|
|
|
|
if (fd < 0)
|
2003-05-18 14:13:38 +00:00
|
|
|
return (-1);
|
2002-05-08 02:51:31 +00:00
|
|
|
|
|
|
|
ret = ftruncate(fd, length);
|
|
|
|
saverrno = errno;
|
2003-05-18 14:13:38 +00:00
|
|
|
close(fd);
|
2002-05-08 02:51:31 +00:00
|
|
|
if (ret == -1)
|
|
|
|
errno = saverrno;
|
2003-05-18 14:13:38 +00:00
|
|
|
|
2002-05-08 02:51:31 +00:00
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
#endif /* HAVE_TRUNCATE */
|
|
|
|
|
2002-06-12 16:57:14 +00:00
|
|
|
#if !defined(HAVE_SETGROUPS) && defined(SETGROUPS_NOOP)
|
|
|
|
/*
|
|
|
|
* Cygwin setgroups should be a noop.
|
|
|
|
*/
|
|
|
|
int
|
2002-06-13 21:34:57 +00:00
|
|
|
setgroups(size_t size, const gid_t *list)
|
2002-06-12 16:57:14 +00:00
|
|
|
{
|
2003-05-18 14:13:38 +00:00
|
|
|
return (0);
|
2002-06-12 16:57:14 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-03-18 18:21:40 +00: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;
|
|
|
|
tremain.tv_sec = time2wait.tv_sec -
|
|
|
|
(tstop.tv_sec - tstart.tv_sec);
|
|
|
|
tremain.tv_usec = time2wait.tv_usec -
|
|
|
|
(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;
|
|
|
|
}
|
|
|
|
TIMEVAL_TO_TIMESPEC(&tremain, rem)
|
|
|
|
|
|
|
|
return(rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2003-08-02 13:31:42 +00:00
|
|
|
#ifndef HAVE_TCGETPGRP
|
|
|
|
pid_t
|
|
|
|
tcgetpgrp(int fd)
|
|
|
|
{
|
2003-08-02 13:33:48 +00:00
|
|
|
int ctty_pgrp;
|
2003-08-02 13:31:42 +00:00
|
|
|
|
2003-08-02 14:36:16 +00:00
|
|
|
if (ioctl(fd, TIOCGPGRP, &ctty_pgrp) == -1)
|
2003-08-02 13:31:42 +00:00
|
|
|
return(-1);
|
|
|
|
else
|
|
|
|
return(ctty_pgrp);
|
|
|
|
}
|
|
|
|
#endif /* HAVE_TCGETPGRP */
|
|
|
|
|
2003-08-13 10:48:07 +00: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 */
|