Branch
Hash :
7ce919e1
Author :
Thomas de Grivel
Date :
2025-09-13T18:56:04
initial import from OpenBSD-current
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
/* $Id: util.c,v 1.14 2024/06/19 13:13:25 claudio Exp $ */
/*
* Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/wait.h>
#include <assert.h>
#include <err.h>
#include <errno.h>
#include <limits.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
#include "extern.h"
static const char *const comps[COMP__MAX] = {
"netproc", /* COMP_NET */
"keyproc", /* COMP_KEY */
"certproc", /* COMP_CERT */
"acctproc", /* COMP_ACCOUNT */
"challengeproc", /* COMP_CHALLENGE */
"fileproc", /* COMP_FILE */
"dnsproc", /* COMP_DNS */
"revokeproc", /* COMP_REVOKE */
};
static const char *const comms[COMM__MAX] = {
"req", /* COMM_REQ */
"thumbprint", /* COMM_THUMB */
"cert", /* COMM_CERT */
"payload", /* COMM_PAY */
"nonce", /* COMM_NONCE */
"token", /* COMM_TOK */
"challenge-op", /* COMM_CHNG_OP */
"challenge-ack", /* COMM_CHNG_ACK */
"account", /* COMM_ACCT */
"acctpro-status", /* COMM_ACCT_STAT */
"csr", /* COMM_CSR */
"csr-op", /* COMM_CSR_OP */
"issuer", /* COMM_ISSUER */
"chain", /* COMM_CHAIN */
"chain-op", /* COMM_CHAIN_OP */
"dns", /* COMM_DNS */
"dnsq", /* COMM_DNSQ */
"dns-address", /* COMM_DNSA */
"dns-family", /* COMM_DNSF */
"dns-length", /* COMM_DNSLEN */
"keyproc-status", /* COMM_KEY_STAT */
"revoke-op", /* COMM_REVOKE_OP */
"revoke-check", /* COMM_REVOKE_CHECK */
"revoke-response", /* COMM_REVOKE_RESP */
};
/*
* This will read a long-sized operation.
* Operations are usually enums, so this should be alright.
* We return 0 on EOF and LONG_MAX on failure.
*/
long
readop(int fd, enum comm comm)
{
ssize_t ssz;
long op;
ssz = read(fd, &op, sizeof(long));
if (ssz == -1) {
warn("read: %s", comms[comm]);
return LONG_MAX;
} else if (ssz && ssz != sizeof(long)) {
warnx("short read: %s", comms[comm]);
return LONG_MAX;
} else if (ssz == 0)
return 0;
return op;
}
char *
readstr(int fd, enum comm comm)
{
size_t sz;
return readbuf(fd, comm, &sz);
}
/*
* Read a buffer from the sender.
* This consists of two parts: the length of the buffer, and the buffer
* itself.
* We allow the buffer to be binary, but NUL-terminate it anyway.
*/
char *
readbuf(int fd, enum comm comm, size_t *sz)
{
ssize_t ssz;
size_t rsz, lsz;
char *p = NULL;
if ((ssz = read(fd, sz, sizeof(size_t))) == -1) {
warn("read: %s length", comms[comm]);
return NULL;
} else if ((size_t)ssz != sizeof(size_t)) {
warnx("short read: %s length", comms[comm]);
return NULL;
} else if (*sz > SIZE_MAX - 1) {
warnx("integer overflow");
return NULL;
} else if ((p = calloc(1, *sz + 1)) == NULL) {
warn("malloc");
return NULL;
}
/* Catch this over several reads. */
rsz = 0;
lsz = *sz;
while (lsz) {
if ((ssz = read(fd, p + rsz, lsz)) == -1) {
warn("read: %s", comms[comm]);
break;
} else if (ssz > 0) {
assert((size_t)ssz <= lsz);
rsz += (size_t)ssz;
lsz -= (size_t)ssz;
}
}
if (lsz) {
warnx("couldn't read buffer: %s", comms[comm]);
free(p);
return NULL;
}
return p;
}
/*
* Wring a long-value to a communication pipe.
* Returns 0 if the reader has terminated, -1 on error, 1 on success.
*/
int
writeop(int fd, enum comm comm, long op)
{
ssize_t ssz;
int er;
if ((ssz = write(fd, &op, sizeof(long))) == -1) {
if ((er = errno) != EPIPE)
warn("write: %s", comms[comm]);
return er == EPIPE ? 0 : -1;
}
if ((size_t)ssz != sizeof(long)) {
warnx("short write: %s", comms[comm]);
return -1;
}
return 1;
}
/*
* Fully write the given buffer.
* Returns 0 if the reader has terminated, -1 on error, 1 on success.
*/
int
writebuf(int fd, enum comm comm, const void *v, size_t sz)
{
ssize_t ssz;
int er, rc = -1;
/*
* First, try to write the length.
* If the other end of the pipe has closed, we allow the short
* write to propagate as a return value of zero.
*/
if ((ssz = write(fd, &sz, sizeof(size_t))) == -1) {
if ((er = errno) != EPIPE)
warn("write: %s length", comms[comm]);
return er == EPIPE ? 0 : -1;
}
/* Now write errors cause us to bail. */
if ((size_t)ssz != sizeof(size_t))
warnx("short write: %s length", comms[comm]);
else if ((ssz = write(fd, v, sz)) == -1) {
if (errno == EPIPE)
rc = 0;
else
warn("write: %s", comms[comm]);
} else if (sz != (size_t)ssz)
warnx("short write: %s", comms[comm]);
else
rc = 1;
return rc;
}
int
writestr(int fd, enum comm comm, const char *v)
{
return writebuf(fd, comm, v, strlen(v));
}
/*
* Make sure that the given process exits properly, i.e., properly
* exiting with EXIT_SUCCESS.
* Returns non-zero on success and zero on failure.
*/
int
checkexit(pid_t pid, enum comp comp)
{
int c, cc;
const char *cp;
if (waitpid(pid, &c, 0) == -1) {
warn("waitpid");
return 0;
} else if (!WIFEXITED(c) && WIFSIGNALED(c)) {
cp = strsignal(WTERMSIG(c));
warnx("signal: %s(%u): %s", comps[comp], pid, cp);
return 0;
} else if (!WIFEXITED(c)) {
warnx("did not exit: %s(%u)", comps[comp], pid);
return 0;
} else if (WEXITSTATUS(c) != EXIT_SUCCESS) {
cc = WEXITSTATUS(c);
dodbg("bad exit: %s(%u): %d", comps[comp], pid, cc);
return 0;
}
return 1;
}
/*
* Make sure that the given process exits properly, i.e., properly
* exiting with EXIT_SUCCESS *or* 2.
* Returns non-zero on success and zero on failure and sets the "rc"
* value to be the exit status.
*/
int
checkexit_ext(int *rc, pid_t pid, enum comp comp)
{
int c;
const char *cp;
*rc = EXIT_FAILURE;
if (waitpid(pid, &c, 0) == -1) {
warn("waitpid");
return 0;
}
if (!WIFEXITED(c) && WIFSIGNALED(c)) {
cp = strsignal(WTERMSIG(c));
warnx("signal: %s(%u): %s", comps[comp], pid, cp);
return 0;
} else if (!WIFEXITED(c)) {
warnx("did not exit: %s(%u)", comps[comp], pid);
return 0;
}
/* Now check extended status. */
if ((*rc = WEXITSTATUS(c)) != EXIT_SUCCESS && *rc != 2) {
dodbg("bad exit: %s(%u): %d", comps[comp], pid, *rc);
return 0;
}
return 1;
}