]> andersk Git - openssh.git/blame - misc.c
- stevesk@cvs.openbsd.org 2001/04/12 20:09:38
[openssh.git] / misc.c
CommitLineData
2d2a2c65 1/* $OpenBSD: misc.c,v 1.5 2001/04/12 20:09:37 stevesk Exp $ */
bcbf86ec 2
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
6d24277f 27#include "includes.h"
2d2a2c65 28RCSID("$OpenBSD: misc.c,v 1.5 2001/04/12 20:09:37 stevesk Exp $");
6d24277f 29
1aa00dcb 30#include "misc.h"
42f11eb2 31#include "log.h"
4ab21f86 32#include "xmalloc.h"
6d24277f 33
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;
6d24277f 53 val = fcntl(fd, F_GETFL, 0);
54 if (val < 0) {
55 error("fcntl(%d, F_GETFL, 0): %s", fd, strerror(errno));
56 return;
57 }
a22aff1f 58 if (val & O_NONBLOCK) {
59 debug("fd %d IS O_NONBLOCK", fd);
6d24277f 60 return;
a22aff1f 61 }
6d24277f 62 debug("fd %d setting O_NONBLOCK", fd);
63 val |= O_NONBLOCK;
64 if (fcntl(fd, F_SETFL, val) == -1)
14a9a859 65 if (errno != ENODEV)
66 error("fcntl(%d, F_SETFL, O_NONBLOCK): %s",
67 fd, strerror(errno));
6d24277f 68}
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}
1aa00dcb 99
3b1a83df 100struct passwd *
101pwcopy(struct passwd *pw)
102{
103 struct passwd *copy = xmalloc(sizeof(*copy));
5649fbbe 104
3b1a83df 105 memset(copy, 0, sizeof(*copy));
106 copy->pw_name = xstrdup(pw->pw_name);
107 copy->pw_passwd = xstrdup(pw->pw_passwd);
5649fbbe 108 copy->pw_gecos = xstrdup(pw->pw_gecos);
3b1a83df 109 copy->pw_uid = pw->pw_uid;
110 copy->pw_gid = pw->pw_gid;
2605addd 111#ifdef HAVE_PW_CLASS_IN_PASSWD
3b1a83df 112 copy->pw_class = xstrdup(pw->pw_class);
2605addd 113#endif
3b1a83df 114 copy->pw_dir = xstrdup(pw->pw_dir);
115 copy->pw_shell = xstrdup(pw->pw_shell);
116 return copy;
117}
118
2d2a2c65 119int a2port(const char *s)
120{
121 long port;
122 char *endp;
123
124 errno = 0;
125 port = strtol(s, &endp, 0);
126 if (s == endp || *endp != '\0' ||
127 (errno == ERANGE && (port == LONG_MIN || port == LONG_MAX)) ||
128 port <= 0 || port > 65535)
129 return 0;
130
131 return port;
132}
133
1aa00dcb 134mysig_t
135mysignal(int sig, mysig_t act)
136{
137#ifdef HAVE_SIGACTION
138 struct sigaction sa, osa;
139
120bf679 140 if (sigaction(sig, NULL, &osa) == -1)
1aa00dcb 141 return (mysig_t) -1;
142 if (osa.sa_handler != act) {
120bf679 143 memset(&sa, 0, sizeof(sa));
1aa00dcb 144 sigemptyset(&sa.sa_mask);
145 sa.sa_flags = 0;
dfef7e7e 146#if defined(SA_RESTART)
d54d99a3 147 if (sig == SIGCHLD)
9535dddf 148 sa.sa_flags |= SA_RESTART;
d54d99a3 149#endif
150#if defined(SA_INTERRUPT)
151 if (sig == SIGALRM)
df538d55 152 sa.sa_flags |= SA_INTERRUPT;
25cd3375 153#endif
1aa00dcb 154 sa.sa_handler = act;
120bf679 155 if (sigaction(sig, &sa, NULL) == -1)
1aa00dcb 156 return (mysig_t) -1;
157 }
158 return (osa.sa_handler);
159#else
160 return (signal(sig, act));
161#endif
162}
This page took 0.150101 seconds and 5 git commands to generate.