Blame


1 b0003f58 2021-03-08 op /* $OpenBSD: imsg.c,v 1.16 2017/12/14 09:27:44 kettenis Exp $ */
2 b0003f58 2021-03-08 op
3 b0003f58 2021-03-08 op /*
4 b0003f58 2021-03-08 op * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
5 b0003f58 2021-03-08 op *
6 b0003f58 2021-03-08 op * Permission to use, copy, modify, and distribute this software for any
7 b0003f58 2021-03-08 op * purpose with or without fee is hereby granted, provided that the above
8 b0003f58 2021-03-08 op * copyright notice and this permission notice appear in all copies.
9 b0003f58 2021-03-08 op *
10 b0003f58 2021-03-08 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 b0003f58 2021-03-08 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 b0003f58 2021-03-08 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 b0003f58 2021-03-08 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 b0003f58 2021-03-08 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 b0003f58 2021-03-08 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 b0003f58 2021-03-08 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 b0003f58 2021-03-08 op */
18 a625907c 2021-03-19 op
19 a625907c 2021-03-19 op #include "compat.h"
20 b0003f58 2021-03-08 op
21 b0003f58 2021-03-08 op #include <sys/types.h>
22 b0003f58 2021-03-08 op #include <sys/socket.h>
23 b0003f58 2021-03-08 op #include <sys/uio.h>
24 b0003f58 2021-03-08 op
25 b0003f58 2021-03-08 op #include <errno.h>
26 b0003f58 2021-03-08 op #include <stdlib.h>
27 b0003f58 2021-03-08 op #include <string.h>
28 b0003f58 2021-03-08 op #include <unistd.h>
29 b0003f58 2021-03-08 op
30 b0003f58 2021-03-08 op #include "imsg.h"
31 b0003f58 2021-03-08 op
32 b0003f58 2021-03-08 op int imsg_fd_overhead = 0;
33 b0003f58 2021-03-08 op
34 b0003f58 2021-03-08 op static int imsg_get_fd(struct imsgbuf *);
35 b0003f58 2021-03-08 op
36 b0003f58 2021-03-08 op void
37 b0003f58 2021-03-08 op imsg_init(struct imsgbuf *ibuf, int fd)
38 b0003f58 2021-03-08 op {
39 b0003f58 2021-03-08 op msgbuf_init(&ibuf->w);
40 b0003f58 2021-03-08 op memset(&ibuf->r, 0, sizeof(ibuf->r));
41 b0003f58 2021-03-08 op ibuf->fd = fd;
42 b0003f58 2021-03-08 op ibuf->w.fd = fd;
43 b0003f58 2021-03-08 op ibuf->pid = getpid();
44 b0003f58 2021-03-08 op TAILQ_INIT(&ibuf->fds);
45 b0003f58 2021-03-08 op }
46 b0003f58 2021-03-08 op
47 b0003f58 2021-03-08 op ssize_t
48 b0003f58 2021-03-08 op imsg_read(struct imsgbuf *ibuf)
49 b0003f58 2021-03-08 op {
50 b0003f58 2021-03-08 op struct msghdr msg;
51 b0003f58 2021-03-08 op struct cmsghdr *cmsg;
52 b0003f58 2021-03-08 op union {
53 b0003f58 2021-03-08 op struct cmsghdr hdr;
54 b0003f58 2021-03-08 op char buf[CMSG_SPACE(sizeof(int) * 1)];
55 b0003f58 2021-03-08 op } cmsgbuf;
56 b0003f58 2021-03-08 op struct iovec iov;
57 b0003f58 2021-03-08 op ssize_t n = -1;
58 b0003f58 2021-03-08 op int fd;
59 b0003f58 2021-03-08 op struct imsg_fd *ifd;
60 b0003f58 2021-03-08 op
61 b0003f58 2021-03-08 op memset(&msg, 0, sizeof(msg));
62 b0003f58 2021-03-08 op memset(&cmsgbuf, 0, sizeof(cmsgbuf));
63 b0003f58 2021-03-08 op
64 b0003f58 2021-03-08 op iov.iov_base = ibuf->r.buf + ibuf->r.wpos;
65 b0003f58 2021-03-08 op iov.iov_len = sizeof(ibuf->r.buf) - ibuf->r.wpos;
66 b0003f58 2021-03-08 op msg.msg_iov = &iov;
67 b0003f58 2021-03-08 op msg.msg_iovlen = 1;
68 b0003f58 2021-03-08 op msg.msg_control = &cmsgbuf.buf;
69 b0003f58 2021-03-08 op msg.msg_controllen = sizeof(cmsgbuf.buf);
70 b0003f58 2021-03-08 op
71 b0003f58 2021-03-08 op if ((ifd = calloc(1, sizeof(struct imsg_fd))) == NULL)
72 b0003f58 2021-03-08 op return (-1);
73 b0003f58 2021-03-08 op
74 b0003f58 2021-03-08 op again:
75 b0003f58 2021-03-08 op if (getdtablecount() + imsg_fd_overhead +
76 b0003f58 2021-03-08 op (int)((CMSG_SPACE(sizeof(int))-CMSG_SPACE(0))/sizeof(int))
77 b0003f58 2021-03-08 op >= getdtablesize()) {
78 b0003f58 2021-03-08 op errno = EAGAIN;
79 b0003f58 2021-03-08 op free(ifd);
80 b0003f58 2021-03-08 op return (-1);
81 b0003f58 2021-03-08 op }
82 b0003f58 2021-03-08 op
83 b0003f58 2021-03-08 op if ((n = recvmsg(ibuf->fd, &msg, 0)) == -1) {
84 b0003f58 2021-03-08 op if (errno == EINTR)
85 b0003f58 2021-03-08 op goto again;
86 b0003f58 2021-03-08 op goto fail;
87 b0003f58 2021-03-08 op }
88 b0003f58 2021-03-08 op
89 b0003f58 2021-03-08 op ibuf->r.wpos += n;
90 b0003f58 2021-03-08 op
91 b0003f58 2021-03-08 op for (cmsg = CMSG_FIRSTHDR(&msg); cmsg != NULL;
92 b0003f58 2021-03-08 op cmsg = CMSG_NXTHDR(&msg, cmsg)) {
93 b0003f58 2021-03-08 op if (cmsg->cmsg_level == SOL_SOCKET &&
94 b0003f58 2021-03-08 op cmsg->cmsg_type == SCM_RIGHTS) {
95 b0003f58 2021-03-08 op int i;
96 b0003f58 2021-03-08 op int j;
97 b0003f58 2021-03-08 op
98 b0003f58 2021-03-08 op /*
99 b0003f58 2021-03-08 op * We only accept one file descriptor. Due to C
100 b0003f58 2021-03-08 op * padding rules, our control buffer might contain
101 b0003f58 2021-03-08 op * more than one fd, and we must close them.
102 b0003f58 2021-03-08 op */
103 b0003f58 2021-03-08 op j = ((char *)cmsg + cmsg->cmsg_len -
104 b0003f58 2021-03-08 op (char *)CMSG_DATA(cmsg)) / sizeof(int);
105 b0003f58 2021-03-08 op for (i = 0; i < j; i++) {
106 b0003f58 2021-03-08 op fd = ((int *)CMSG_DATA(cmsg))[i];
107 b0003f58 2021-03-08 op if (ifd != NULL) {
108 b0003f58 2021-03-08 op ifd->fd = fd;
109 b0003f58 2021-03-08 op TAILQ_INSERT_TAIL(&ibuf->fds, ifd,
110 b0003f58 2021-03-08 op entry);
111 b0003f58 2021-03-08 op ifd = NULL;
112 b0003f58 2021-03-08 op } else
113 b0003f58 2021-03-08 op close(fd);
114 b0003f58 2021-03-08 op }
115 b0003f58 2021-03-08 op }
116 b0003f58 2021-03-08 op /* we do not handle other ctl data level */
117 b0003f58 2021-03-08 op }
118 b0003f58 2021-03-08 op
119 b0003f58 2021-03-08 op fail:
120 b0003f58 2021-03-08 op free(ifd);
121 b0003f58 2021-03-08 op return (n);
122 b0003f58 2021-03-08 op }
123 b0003f58 2021-03-08 op
124 b0003f58 2021-03-08 op ssize_t
125 b0003f58 2021-03-08 op imsg_get(struct imsgbuf *ibuf, struct imsg *imsg)
126 b0003f58 2021-03-08 op {
127 b0003f58 2021-03-08 op size_t av, left, datalen;
128 b0003f58 2021-03-08 op
129 b0003f58 2021-03-08 op av = ibuf->r.wpos;
130 b0003f58 2021-03-08 op
131 b0003f58 2021-03-08 op if (IMSG_HEADER_SIZE > av)
132 b0003f58 2021-03-08 op return (0);
133 b0003f58 2021-03-08 op
134 b0003f58 2021-03-08 op memcpy(&imsg->hdr, ibuf->r.buf, sizeof(imsg->hdr));
135 b0003f58 2021-03-08 op if (imsg->hdr.len < IMSG_HEADER_SIZE ||
136 b0003f58 2021-03-08 op imsg->hdr.len > MAX_IMSGSIZE) {
137 b0003f58 2021-03-08 op errno = ERANGE;
138 b0003f58 2021-03-08 op return (-1);
139 b0003f58 2021-03-08 op }
140 b0003f58 2021-03-08 op if (imsg->hdr.len > av)
141 b0003f58 2021-03-08 op return (0);
142 b0003f58 2021-03-08 op datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
143 b0003f58 2021-03-08 op ibuf->r.rptr = ibuf->r.buf + IMSG_HEADER_SIZE;
144 b0003f58 2021-03-08 op if (datalen == 0)
145 b0003f58 2021-03-08 op imsg->data = NULL;
146 b0003f58 2021-03-08 op else if ((imsg->data = malloc(datalen)) == NULL)
147 b0003f58 2021-03-08 op return (-1);
148 b0003f58 2021-03-08 op
149 b0003f58 2021-03-08 op if (imsg->hdr.flags & IMSGF_HASFD)
150 b0003f58 2021-03-08 op imsg->fd = imsg_get_fd(ibuf);
151 b0003f58 2021-03-08 op else
152 b0003f58 2021-03-08 op imsg->fd = -1;
153 b0003f58 2021-03-08 op
154 b0003f58 2021-03-08 op memcpy(imsg->data, ibuf->r.rptr, datalen);
155 b0003f58 2021-03-08 op
156 b0003f58 2021-03-08 op if (imsg->hdr.len < av) {
157 b0003f58 2021-03-08 op left = av - imsg->hdr.len;
158 b0003f58 2021-03-08 op memmove(&ibuf->r.buf, ibuf->r.buf + imsg->hdr.len, left);
159 b0003f58 2021-03-08 op ibuf->r.wpos = left;
160 b0003f58 2021-03-08 op } else
161 b0003f58 2021-03-08 op ibuf->r.wpos = 0;
162 b0003f58 2021-03-08 op
163 b0003f58 2021-03-08 op return (datalen + IMSG_HEADER_SIZE);
164 b0003f58 2021-03-08 op }
165 b0003f58 2021-03-08 op
166 b0003f58 2021-03-08 op int
167 b0003f58 2021-03-08 op imsg_compose(struct imsgbuf *ibuf, uint32_t type, uint32_t peerid, pid_t pid,
168 b0003f58 2021-03-08 op int fd, const void *data, uint16_t datalen)
169 b0003f58 2021-03-08 op {
170 b0003f58 2021-03-08 op struct ibuf *wbuf;
171 b0003f58 2021-03-08 op
172 b0003f58 2021-03-08 op if ((wbuf = imsg_create(ibuf, type, peerid, pid, datalen)) == NULL)
173 b0003f58 2021-03-08 op return (-1);
174 b0003f58 2021-03-08 op
175 b0003f58 2021-03-08 op if (imsg_add(wbuf, data, datalen) == -1)
176 b0003f58 2021-03-08 op return (-1);
177 b0003f58 2021-03-08 op
178 b0003f58 2021-03-08 op wbuf->fd = fd;
179 b0003f58 2021-03-08 op
180 b0003f58 2021-03-08 op imsg_close(ibuf, wbuf);
181 b0003f58 2021-03-08 op
182 b0003f58 2021-03-08 op return (1);
183 b0003f58 2021-03-08 op }
184 b0003f58 2021-03-08 op
185 b0003f58 2021-03-08 op int
186 b0003f58 2021-03-08 op imsg_composev(struct imsgbuf *ibuf, uint32_t type, uint32_t peerid, pid_t pid,
187 b0003f58 2021-03-08 op int fd, const struct iovec *iov, int iovcnt)
188 b0003f58 2021-03-08 op {
189 b0003f58 2021-03-08 op struct ibuf *wbuf;
190 b0003f58 2021-03-08 op int i, datalen = 0;
191 b0003f58 2021-03-08 op
192 b0003f58 2021-03-08 op for (i = 0; i < iovcnt; i++)
193 b0003f58 2021-03-08 op datalen += iov[i].iov_len;
194 b0003f58 2021-03-08 op
195 b0003f58 2021-03-08 op if ((wbuf = imsg_create(ibuf, type, peerid, pid, datalen)) == NULL)
196 b0003f58 2021-03-08 op return (-1);
197 b0003f58 2021-03-08 op
198 b0003f58 2021-03-08 op for (i = 0; i < iovcnt; i++)
199 b0003f58 2021-03-08 op if (imsg_add(wbuf, iov[i].iov_base, iov[i].iov_len) == -1)
200 b0003f58 2021-03-08 op return (-1);
201 b0003f58 2021-03-08 op
202 b0003f58 2021-03-08 op wbuf->fd = fd;
203 b0003f58 2021-03-08 op
204 b0003f58 2021-03-08 op imsg_close(ibuf, wbuf);
205 b0003f58 2021-03-08 op
206 b0003f58 2021-03-08 op return (1);
207 b0003f58 2021-03-08 op }
208 b0003f58 2021-03-08 op
209 b0003f58 2021-03-08 op /* ARGSUSED */
210 b0003f58 2021-03-08 op struct ibuf *
211 b0003f58 2021-03-08 op imsg_create(struct imsgbuf *ibuf, uint32_t type, uint32_t peerid, pid_t pid,
212 b0003f58 2021-03-08 op uint16_t datalen)
213 b0003f58 2021-03-08 op {
214 b0003f58 2021-03-08 op struct ibuf *wbuf;
215 b0003f58 2021-03-08 op struct imsg_hdr hdr;
216 b0003f58 2021-03-08 op
217 b0003f58 2021-03-08 op datalen += IMSG_HEADER_SIZE;
218 b0003f58 2021-03-08 op if (datalen > MAX_IMSGSIZE) {
219 b0003f58 2021-03-08 op errno = ERANGE;
220 b0003f58 2021-03-08 op return (NULL);
221 b0003f58 2021-03-08 op }
222 b0003f58 2021-03-08 op
223 b0003f58 2021-03-08 op hdr.type = type;
224 b0003f58 2021-03-08 op hdr.flags = 0;
225 b0003f58 2021-03-08 op hdr.peerid = peerid;
226 b0003f58 2021-03-08 op if ((hdr.pid = pid) == 0)
227 b0003f58 2021-03-08 op hdr.pid = ibuf->pid;
228 b0003f58 2021-03-08 op if ((wbuf = ibuf_dynamic(datalen, MAX_IMSGSIZE)) == NULL) {
229 b0003f58 2021-03-08 op return (NULL);
230 b0003f58 2021-03-08 op }
231 b0003f58 2021-03-08 op if (imsg_add(wbuf, &hdr, sizeof(hdr)) == -1)
232 b0003f58 2021-03-08 op return (NULL);
233 b0003f58 2021-03-08 op
234 b0003f58 2021-03-08 op return (wbuf);
235 b0003f58 2021-03-08 op }
236 b0003f58 2021-03-08 op
237 b0003f58 2021-03-08 op int
238 b0003f58 2021-03-08 op imsg_add(struct ibuf *msg, const void *data, uint16_t datalen)
239 b0003f58 2021-03-08 op {
240 b0003f58 2021-03-08 op if (datalen)
241 b0003f58 2021-03-08 op if (ibuf_add(msg, data, datalen) == -1) {
242 b0003f58 2021-03-08 op ibuf_free(msg);
243 b0003f58 2021-03-08 op return (-1);
244 b0003f58 2021-03-08 op }
245 b0003f58 2021-03-08 op return (datalen);
246 b0003f58 2021-03-08 op }
247 b0003f58 2021-03-08 op
248 b0003f58 2021-03-08 op void
249 b0003f58 2021-03-08 op imsg_close(struct imsgbuf *ibuf, struct ibuf *msg)
250 b0003f58 2021-03-08 op {
251 b0003f58 2021-03-08 op struct imsg_hdr *hdr;
252 b0003f58 2021-03-08 op
253 b0003f58 2021-03-08 op hdr = (struct imsg_hdr *)msg->buf;
254 b0003f58 2021-03-08 op
255 b0003f58 2021-03-08 op hdr->flags &= ~IMSGF_HASFD;
256 b0003f58 2021-03-08 op if (msg->fd != -1)
257 b0003f58 2021-03-08 op hdr->flags |= IMSGF_HASFD;
258 b0003f58 2021-03-08 op
259 b0003f58 2021-03-08 op hdr->len = (uint16_t)msg->wpos;
260 b0003f58 2021-03-08 op
261 b0003f58 2021-03-08 op ibuf_close(&ibuf->w, msg);
262 b0003f58 2021-03-08 op }
263 b0003f58 2021-03-08 op
264 b0003f58 2021-03-08 op void
265 b0003f58 2021-03-08 op imsg_free(struct imsg *imsg)
266 b0003f58 2021-03-08 op {
267 b0003f58 2021-03-08 op freezero(imsg->data, imsg->hdr.len - IMSG_HEADER_SIZE);
268 b0003f58 2021-03-08 op }
269 b0003f58 2021-03-08 op
270 b0003f58 2021-03-08 op static int
271 b0003f58 2021-03-08 op imsg_get_fd(struct imsgbuf *ibuf)
272 b0003f58 2021-03-08 op {
273 b0003f58 2021-03-08 op int fd;
274 b0003f58 2021-03-08 op struct imsg_fd *ifd;
275 b0003f58 2021-03-08 op
276 b0003f58 2021-03-08 op if ((ifd = TAILQ_FIRST(&ibuf->fds)) == NULL)
277 b0003f58 2021-03-08 op return (-1);
278 b0003f58 2021-03-08 op
279 b0003f58 2021-03-08 op fd = ifd->fd;
280 b0003f58 2021-03-08 op TAILQ_REMOVE(&ibuf->fds, ifd, entry);
281 b0003f58 2021-03-08 op free(ifd);
282 b0003f58 2021-03-08 op
283 b0003f58 2021-03-08 op return (fd);
284 b0003f58 2021-03-08 op }
285 b0003f58 2021-03-08 op
286 b0003f58 2021-03-08 op int
287 b0003f58 2021-03-08 op imsg_flush(struct imsgbuf *ibuf)
288 b0003f58 2021-03-08 op {
289 b0003f58 2021-03-08 op while (ibuf->w.queued)
290 b0003f58 2021-03-08 op if (msgbuf_write(&ibuf->w) <= 0)
291 b0003f58 2021-03-08 op return (-1);
292 b0003f58 2021-03-08 op return (0);
293 b0003f58 2021-03-08 op }
294 b0003f58 2021-03-08 op
295 b0003f58 2021-03-08 op void
296 b0003f58 2021-03-08 op imsg_clear(struct imsgbuf *ibuf)
297 b0003f58 2021-03-08 op {
298 b0003f58 2021-03-08 op int fd;
299 b0003f58 2021-03-08 op
300 b0003f58 2021-03-08 op msgbuf_clear(&ibuf->w);
301 b0003f58 2021-03-08 op while ((fd = imsg_get_fd(ibuf)) != -1)
302 b0003f58 2021-03-08 op close(fd);
303 b0003f58 2021-03-08 op }