blob: a073c9052611b20c4c25fcab0e0bc28e0ba37b68 [file] [log] [blame]
Damien Miller69b69aa2000-10-28 14:19:58 +11001/* $OpenBSD: util.c,v 1.6 2000/10/27 07:32:19 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"
Damien Miller69b69aa2000-10-28 14:19:58 +110028RCSID("$OpenBSD: util.c,v 1.6 2000/10/27 07:32:19 markus Exp $");
Damien Miller61c51502000-08-18 14:01:04 +100029
Kevin Stevesb6e773a2001-02-04 13:20:36 +000030#include "misc.h"
Damien Miller61c51502000-08-18 14:01:04 +100031#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000032#include "log.h"
Damien Miller61c51502000-08-18 14:01:04 +100033
34char *
35chop(char *s)
36{
37 char *t = s;
38 while (*t) {
39 if(*t == '\n' || *t == '\r') {
40 *t = '\0';
41 return s;
42 }
43 t++;
44 }
45 return s;
46
47}
48
49void
50set_nonblock(int fd)
51{
52 int val;
Damien Miller61c51502000-08-18 14:01:04 +100053 val = fcntl(fd, F_GETFL, 0);
54 if (val < 0) {
55 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
56 return;
57 }
Damien Miller69b69aa2000-10-28 14:19:58 +110058 if (val & O_NONBLOCK) {
59 debug("fd %d IS O_NONBLOCK", fd);
Damien Miller61c51502000-08-18 14:01:04 +100060 return;
Damien Miller69b69aa2000-10-28 14:19:58 +110061 }
Damien Miller61c51502000-08-18 14:01:04 +100062 debug("fd %d setting O_NONBLOCK", fd);
63 val |= O_NONBLOCK;
64 if (fcntl(fd, F_SETFL, val) == -1)
Damien Millercaf6dd62000-08-29 11:33:50 +110065 if (errno != ENODEV)
66 error("fcntl(%d, F_SETFL, O_NONBLOCK): %s",
67 fd, strerror(errno));
Damien Miller61c51502000-08-18 14:01:04 +100068}
69
70/* Characters considered whitespace in strsep calls. */
71#define WHITESPACE " \t\r\n"
72
73char *
74strdelim(char **s)
75{
76 char *old;
77 int wspace = 0;
78
79 if (*s == NULL)
80 return NULL;
81
82 old = *s;
83
84 *s = strpbrk(*s, WHITESPACE "=");
85 if (*s == NULL)
86 return (old);
87
88 /* Allow only one '=' to be skipped */
89 if (*s[0] == '=')
90 wspace = 1;
91 *s[0] = '\0';
92
93 *s += strspn(*s + 1, WHITESPACE) + 1;
94 if (*s[0] == '=' && !wspace)
95 *s += strspn(*s + 1, WHITESPACE) + 1;
96
97 return (old);
98}
Kevin Stevesb6e773a2001-02-04 13:20:36 +000099
100mysig_t
101mysignal(int sig, mysig_t act)
102{
103#ifdef HAVE_SIGACTION
104 struct sigaction sa, osa;
105
106 if (sigaction(sig, 0, &osa) == -1)
107 return (mysig_t) -1;
108 if (osa.sa_handler != act) {
109 memset(&sa, 0, sizeof sa);
110 sigemptyset(&sa.sa_mask);
111 sa.sa_flags = 0;
112 sa.sa_handler = act;
113 if (sigaction(sig, &sa, 0) == -1)
114 return (mysig_t) -1;
115 }
116 return (osa.sa_handler);
117#else
118 return (signal(sig, act));
119#endif
120}