2001-02-11 02:56:35 +03:00
|
|
|
/* $OpenBSD: misc.c,v 1.1 2001/01/21 19:05:52 markus Exp $ */
|
2000-09-16 06:29:08 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2000-08-18 08:01:04 +04:00
|
|
|
#include "includes.h"
|
2001-02-05 21:16:28 +03:00
|
|
|
RCSID("$OpenBSD: misc.c,v 1.1 2001/01/21 19:05:52 markus Exp $");
|
2000-08-18 08:01:04 +04:00
|
|
|
|
2001-02-04 16:20:36 +03:00
|
|
|
#include "misc.h"
|
2001-01-22 08:34:40 +03:00
|
|
|
#include "log.h"
|
2000-08-18 08:01:04 +04:00
|
|
|
|
|
|
|
char *
|
|
|
|
chop(char *s)
|
|
|
|
{
|
|
|
|
char *t = s;
|
|
|
|
while (*t) {
|
|
|
|
if(*t == '\n' || *t == '\r') {
|
|
|
|
*t = '\0';
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
t++;
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
set_nonblock(int fd)
|
|
|
|
{
|
|
|
|
int val;
|
|
|
|
val = fcntl(fd, F_GETFL, 0);
|
|
|
|
if (val < 0) {
|
|
|
|
error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
2000-10-28 07:19:58 +04:00
|
|
|
if (val & O_NONBLOCK) {
|
|
|
|
debug("fd %d IS O_NONBLOCK", fd);
|
2000-08-18 08:01:04 +04:00
|
|
|
return;
|
2000-10-28 07:19:58 +04:00
|
|
|
}
|
2000-08-18 08:01:04 +04:00
|
|
|
debug("fd %d setting O_NONBLOCK", fd);
|
|
|
|
val |= O_NONBLOCK;
|
|
|
|
if (fcntl(fd, F_SETFL, val) == -1)
|
2000-08-29 04:33:50 +04:00
|
|
|
if (errno != ENODEV)
|
|
|
|
error("fcntl(%d, F_SETFL, O_NONBLOCK): %s",
|
|
|
|
fd, strerror(errno));
|
2000-08-18 08:01:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Characters considered whitespace in strsep calls. */
|
|
|
|
#define WHITESPACE " \t\r\n"
|
|
|
|
|
|
|
|
char *
|
|
|
|
strdelim(char **s)
|
|
|
|
{
|
|
|
|
char *old;
|
|
|
|
int wspace = 0;
|
|
|
|
|
|
|
|
if (*s == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
old = *s;
|
|
|
|
|
|
|
|
*s = strpbrk(*s, WHITESPACE "=");
|
|
|
|
if (*s == NULL)
|
|
|
|
return (old);
|
|
|
|
|
|
|
|
/* Allow only one '=' to be skipped */
|
|
|
|
if (*s[0] == '=')
|
|
|
|
wspace = 1;
|
|
|
|
*s[0] = '\0';
|
|
|
|
|
|
|
|
*s += strspn(*s + 1, WHITESPACE) + 1;
|
|
|
|
if (*s[0] == '=' && !wspace)
|
|
|
|
*s += strspn(*s + 1, WHITESPACE) + 1;
|
|
|
|
|
|
|
|
return (old);
|
|
|
|
}
|
2001-02-04 16:20:36 +03:00
|
|
|
|
|
|
|
mysig_t
|
|
|
|
mysignal(int sig, mysig_t act)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_SIGACTION
|
|
|
|
struct sigaction sa, osa;
|
|
|
|
|
2001-02-17 20:10:16 +03:00
|
|
|
if (sigaction(sig, NULL, &osa) == -1)
|
2001-02-04 16:20:36 +03:00
|
|
|
return (mysig_t) -1;
|
|
|
|
if (osa.sa_handler != act) {
|
2001-02-17 20:10:16 +03:00
|
|
|
memset(&sa, 0, sizeof(sa));
|
2001-02-04 16:20:36 +03:00
|
|
|
sigemptyset(&sa.sa_mask);
|
|
|
|
sa.sa_flags = 0;
|
2001-02-16 17:58:12 +03:00
|
|
|
if (sig == SIGCHLD)
|
2001-02-18 06:42:02 +03:00
|
|
|
#if defined(SA_RESTART)
|
2001-02-16 17:58:12 +03:00
|
|
|
sa.sa_flags |= SA_RESTART;
|
2001-02-18 06:42:02 +03:00
|
|
|
#elif defined(SA_INTERRUPT)
|
2001-02-18 05:04:23 +03:00
|
|
|
sa.sa_flags |= SA_INTERRUPT;
|
2001-02-18 06:42:02 +03:00
|
|
|
#else
|
|
|
|
;
|
2001-02-17 19:51:07 +03:00
|
|
|
#endif
|
2001-02-04 16:20:36 +03:00
|
|
|
sa.sa_handler = act;
|
2001-02-17 20:10:16 +03:00
|
|
|
if (sigaction(sig, &sa, NULL) == -1)
|
2001-02-04 16:20:36 +03:00
|
|
|
return (mysig_t) -1;
|
|
|
|
}
|
|
|
|
return (osa.sa_handler);
|
|
|
|
#else
|
|
|
|
return (signal(sig, act));
|
|
|
|
#endif
|
|
|
|
}
|