blob: 4a1213a298aa8e3500d1eed4d3c0ff51c83115cc [file] [log] [blame]
Ben Lindstrom086cf212001-03-05 05:56:40 +00001/* $OpenBSD: misc.c,v 1.2 2001/02/22 21:59:44 markus Exp $ */
Damien Millere4340be2000-09-16 13:29:08 +11002
3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
Damien Miller61c51502000-08-18 14:01:04 +100027#include "includes.h"
Ben Lindstrom086cf212001-03-05 05:56:40 +000028RCSID("$OpenBSD: misc.c,v 1.2 2001/02/22 21:59:44 markus Exp $");
Damien Miller61c51502000-08-18 14:01:04 +100029
Kevin Stevesb6e773a2001-02-04 13:20:36 +000030#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000031#include "log.h"
Damien Miller61c51502000-08-18 14:01:04 +100032
33char *
34chop(char *s)
35{
36 char *t = s;
37 while (*t) {
38 if(*t == '\n' || *t == '\r') {
39 *t = '\0';
40 return s;
41 }
42 t++;
43 }
44 return s;
45
46}
47
48void
49set_nonblock(int fd)
50{
51 int val;
Damien Miller61c51502000-08-18 14:01:04 +100052 val = fcntl(fd, F_GETFL, 0);
53 if (val < 0) {
54 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
55 return;
56 }
Damien Miller69b69aa2000-10-28 14:19:58 +110057 if (val & O_NONBLOCK) {
58 debug("fd %d IS O_NONBLOCK", fd);
Damien Miller61c51502000-08-18 14:01:04 +100059 return;
Damien Miller69b69aa2000-10-28 14:19:58 +110060 }
Damien Miller61c51502000-08-18 14:01:04 +100061 debug("fd %d setting O_NONBLOCK", fd);
62 val |= O_NONBLOCK;
63 if (fcntl(fd, F_SETFL, val) == -1)
Damien Millercaf6dd62000-08-29 11:33:50 +110064 if (errno != ENODEV)
65 error("fcntl(%d, F_SETFL, O_NONBLOCK): %s",
66 fd, strerror(errno));
Damien Miller61c51502000-08-18 14:01:04 +100067}
68
69/* Characters considered whitespace in strsep calls. */
70#define WHITESPACE " \t\r\n"
71
72char *
73strdelim(char **s)
74{
75 char *old;
76 int wspace = 0;
77
78 if (*s == NULL)
79 return NULL;
80
81 old = *s;
82
83 *s = strpbrk(*s, WHITESPACE "=");
84 if (*s == NULL)
85 return (old);
86
87 /* Allow only one '=' to be skipped */
88 if (*s[0] == '=')
89 wspace = 1;
90 *s[0] = '\0';
91
92 *s += strspn(*s + 1, WHITESPACE) + 1;
93 if (*s[0] == '=' && !wspace)
94 *s += strspn(*s + 1, WHITESPACE) + 1;
95
96 return (old);
97}
Kevin Stevesb6e773a2001-02-04 13:20:36 +000098
Ben Lindstrom086cf212001-03-05 05:56:40 +000099struct passwd *
100pwcopy(struct passwd *pw)
101{
102 struct passwd *copy = xmalloc(sizeof(*copy));
103 memset(copy, 0, sizeof(*copy));
104 copy->pw_name = xstrdup(pw->pw_name);
105 copy->pw_passwd = xstrdup(pw->pw_passwd);
106 copy->pw_uid = pw->pw_uid;
107 copy->pw_gid = pw->pw_gid;
108 copy->pw_class = xstrdup(pw->pw_class);
109 copy->pw_dir = xstrdup(pw->pw_dir);
110 copy->pw_shell = xstrdup(pw->pw_shell);
111 return copy;
112}
113
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000114mysig_t
115mysignal(int sig, mysig_t act)
116{
117#ifdef HAVE_SIGACTION
118 struct sigaction sa, osa;
119
Kevin Stevese74ebd02001-02-17 17:10:16 +0000120 if (sigaction(sig, NULL, &osa) == -1)
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000121 return (mysig_t) -1;
122 if (osa.sa_handler != act) {
Kevin Stevese74ebd02001-02-17 17:10:16 +0000123 memset(&sa, 0, sizeof(sa));
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000124 sigemptyset(&sa.sa_mask);
125 sa.sa_flags = 0;
Kevin Steveseff26f22001-02-18 03:42:02 +0000126#if defined(SA_RESTART)
Damien Miller722ccb12001-02-18 15:18:43 +1100127 if (sig == SIGCHLD)
Kevin Steves799bed82001-02-16 14:58:12 +0000128 sa.sa_flags |= SA_RESTART;
Damien Miller722ccb12001-02-18 15:18:43 +1100129#endif
130#if defined(SA_INTERRUPT)
131 if (sig == SIGALRM)
Damien Miller0318e2e2001-02-18 13:04:23 +1100132 sa.sa_flags |= SA_INTERRUPT;
133#endif
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000134 sa.sa_handler = act;
Kevin Stevese74ebd02001-02-17 17:10:16 +0000135 if (sigaction(sig, &sa, NULL) == -1)
Kevin Stevesb6e773a2001-02-04 13:20:36 +0000136 return (mysig_t) -1;
137 }
138 return (osa.sa_handler);
139#else
140 return (signal(sig, act));
141#endif
142}