1 /* $OpenBSD: imsg-buffer.c,v 1.11 2017/12/14 09:27:44 kettenis Exp $ */
4 * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
20 #include <sys/socket.h>
29 #include "got_compat.h"
32 static int ibuf_realloc(struct ibuf
*, size_t);
33 static void ibuf_enqueue(struct msgbuf
*, struct ibuf
*);
34 static void ibuf_dequeue(struct msgbuf
*, struct ibuf
*);
41 if ((buf
= calloc(1, sizeof(struct ibuf
))) == NULL
)
43 if ((buf
->buf
= malloc(len
)) == NULL
) {
47 buf
->size
= buf
->max
= len
;
54 ibuf_dynamic(size_t len
, size_t max
)
61 if ((buf
= ibuf_open(len
)) == NULL
)
71 ibuf_realloc(struct ibuf
*buf
, size_t len
)
75 /* on static buffers max is eq size and so the following fails */
76 if (buf
->wpos
+ len
> buf
->max
) {
81 b
= recallocarray(buf
->buf
, buf
->size
, buf
->wpos
+ len
, 1);
85 buf
->size
= buf
->wpos
+ len
;
91 ibuf_add(struct ibuf
*buf
, const void *data
, size_t len
)
93 if (buf
->wpos
+ len
> buf
->size
)
94 if (ibuf_realloc(buf
, len
) == -1)
97 memcpy(buf
->buf
+ buf
->wpos
, data
, len
);
103 ibuf_reserve(struct ibuf
*buf
, size_t len
)
107 if (buf
->wpos
+ len
> buf
->size
)
108 if (ibuf_realloc(buf
, len
) == -1)
111 b
= buf
->buf
+ buf
->wpos
;
117 ibuf_seek(struct ibuf
*buf
, size_t pos
, size_t len
)
119 /* only allowed to seek in already written parts */
120 if (pos
+ len
> buf
->wpos
)
123 return (buf
->buf
+ pos
);
127 ibuf_size(struct ibuf
*buf
)
133 ibuf_left(struct ibuf
*buf
)
135 return (buf
->max
- buf
->wpos
);
139 ibuf_close(struct msgbuf
*msgbuf
, struct ibuf
*buf
)
141 ibuf_enqueue(msgbuf
, buf
);
145 ibuf_write(struct msgbuf
*msgbuf
)
147 struct iovec iov
[IOV_MAX
];
152 memset(&iov
, 0, sizeof(iov
));
153 TAILQ_FOREACH(buf
, &msgbuf
->bufs
, entry
) {
156 iov
[i
].iov_base
= buf
->buf
+ buf
->rpos
;
157 iov
[i
].iov_len
= buf
->wpos
- buf
->rpos
;
162 if ((n
= writev(msgbuf
->fd
, iov
, i
)) == -1) {
165 if (errno
== ENOBUFS
)
170 if (n
== 0) { /* connection closed */
175 msgbuf_drain(msgbuf
, n
);
181 ibuf_free(struct ibuf
*buf
)
185 freezero(buf
->buf
, buf
->size
);
190 msgbuf_init(struct msgbuf
*msgbuf
)
194 TAILQ_INIT(&msgbuf
->bufs
);
198 msgbuf_drain(struct msgbuf
*msgbuf
, size_t n
)
200 struct ibuf
*buf
, *next
;
202 for (buf
= TAILQ_FIRST(&msgbuf
->bufs
); buf
!= NULL
&& n
> 0;
204 next
= TAILQ_NEXT(buf
, entry
);
205 if (buf
->rpos
+ n
>= buf
->wpos
) {
206 n
-= buf
->wpos
- buf
->rpos
;
207 ibuf_dequeue(msgbuf
, buf
);
216 msgbuf_clear(struct msgbuf
*msgbuf
)
220 while ((buf
= TAILQ_FIRST(&msgbuf
->bufs
)) != NULL
)
221 ibuf_dequeue(msgbuf
, buf
);
225 msgbuf_write(struct msgbuf
*msgbuf
)
227 struct iovec iov
[IOV_MAX
];
232 struct cmsghdr
*cmsg
;
235 char buf
[CMSG_SPACE(sizeof(int))];
238 memset(&iov
, 0, sizeof(iov
));
239 memset(&msg
, 0, sizeof(msg
));
240 memset(&cmsgbuf
, 0, sizeof(cmsgbuf
));
241 TAILQ_FOREACH(buf
, &msgbuf
->bufs
, entry
) {
244 iov
[i
].iov_base
= buf
->buf
+ buf
->rpos
;
245 iov
[i
].iov_len
= buf
->wpos
- buf
->rpos
;
254 if (buf
!= NULL
&& buf
->fd
!= -1) {
255 msg
.msg_control
= (caddr_t
)&cmsgbuf
.buf
;
256 msg
.msg_controllen
= sizeof(cmsgbuf
.buf
);
257 cmsg
= CMSG_FIRSTHDR(&msg
);
258 cmsg
->cmsg_len
= CMSG_LEN(sizeof(int));
259 cmsg
->cmsg_level
= SOL_SOCKET
;
260 cmsg
->cmsg_type
= SCM_RIGHTS
;
261 *(int *)CMSG_DATA(cmsg
) = buf
->fd
;
265 if ((n
= sendmsg(msgbuf
->fd
, &msg
, 0)) == -1) {
268 if (errno
== ENOBUFS
)
273 if (n
== 0) { /* connection closed */
279 * assumption: fd got sent if sendmsg sent anything
280 * this works because fds are passed one at a time
282 if (buf
!= NULL
&& buf
->fd
!= -1) {
287 msgbuf_drain(msgbuf
, n
);
293 ibuf_enqueue(struct msgbuf
*msgbuf
, struct ibuf
*buf
)
295 TAILQ_INSERT_TAIL(&msgbuf
->bufs
, buf
, entry
);
300 ibuf_dequeue(struct msgbuf
*msgbuf
, struct ibuf
*buf
)
302 TAILQ_REMOVE(&msgbuf
->bufs
, buf
, entry
);