1 /* $OpenBSD: buf.c,v 1.27 2016/10/16 13:35:51 okan Exp $ */
3 * Copyright (c) 2003 Jean-Francois Brousseau <jfb@openbsd.org>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. The name of the author may not be used to endorse or promote products
13 * derived from this software without specific prior written permission.
15 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
16 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
17 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
18 * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
21 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
22 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
23 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
24 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #include "got_error.h"
43 #define SIZE_LEFT(b) ((b)->cb_size - (b)->cb_len)
45 static const struct got_error
*buf_grow(BUF
*, size_t);
48 * Create a new buffer structure and return a pointer to it. This structure
49 * uses dynamically-allocated memory and must be freed with buf_free(), once
50 * the buffer is no longer needed.
52 const struct got_error
*
53 buf_alloc(BUF
**b
, size_t len
)
55 const struct got_error
*err
= NULL
;
57 *b
= malloc(sizeof(**b
));
60 /* Postpone creation of zero-sized buffers */
62 (*b
)->cb_buf
= calloc(1, len
);
63 if ((*b
)->cb_buf
== NULL
) {
64 err
= got_error_from_errno("calloc");
79 * Open the file specified by <path> and load all of its contents into a
81 * Returns the loaded buffer on success or NULL on failure.
82 * Sets errno on error.
84 const struct got_error
*
85 buf_load(BUF
**buf
, FILE *f
)
87 const struct got_error
*err
= NULL
;
95 if (fstat(fileno(f
), &st
) == -1) {
96 err
= got_error_from_errno("fstat");
100 if ((uintmax_t)st
.st_size
> SIZE_MAX
) {
101 err
= got_error_set_errno(EFBIG
,
102 "cannot fit file into memory buffer");
105 err
= buf_alloc(buf
, st
.st_size
);
108 for (bp
= (*buf
)->cb_buf
; ; bp
+= ret
) {
109 len
= SIZE_LEFT(*buf
);
110 ret
= fread(bp
, 1, len
, f
);
111 if (ret
== 0 && ferror(f
)) {
112 err
= got_ferror(f
, GOT_ERR_IO
);
117 (*buf
)->cb_len
+= (size_t)ret
;
138 * Free the buffer <b>'s structural information but do not free the contents
139 * of the buffer. Instead, they are returned and should be freed later using
159 * Empty the contents of the buffer <b> and reset pointers.
164 memset(b
->cb_buf
, 0, b
->cb_size
);
169 * Append a single character <c> to the end of the buffer <b>.
171 const struct got_error
*
172 buf_putc(BUF
*b
, int c
)
174 const struct got_error
*err
= NULL
;
177 if (SIZE_LEFT(b
) == 0) {
178 err
= buf_grow(b
, BUF_INCR
);
182 bp
= b
->cb_buf
+ b
->cb_len
;
189 * Append a string <s> to the end of buffer <b>.
191 const struct got_error
*
192 buf_puts(size_t *newlen
, BUF
*b
, const char *str
)
194 return buf_append(newlen
, b
, str
, strlen(str
));
198 * Return u_char at buffer position <pos>.
201 buf_getc(BUF
*b
, size_t pos
)
203 return (b
->cb_buf
[pos
]);
207 * Append <len> bytes of data pointed to by <data> to the buffer <b>. If the
208 * buffer is too small to accept all data, it will get resized to an
209 * appropriate size to accept all data.
210 * Returns the number of bytes successfully appended to the buffer.
212 const struct got_error
*
213 buf_append(size_t *newlen
, BUF
*b
, const void *data
, size_t len
)
215 const struct got_error
*err
= NULL
;
223 err
= buf_grow(b
, len
- left
);
227 bp
= b
->cb_buf
+ b
->cb_len
;
228 memcpy(bp
, data
, rlen
);
236 * Returns the size of the buffer that is being used.
245 * Write the contents of the buffer <b> to the specified <fd>
248 buf_write_fd(BUF
*b
, int fd
)
258 ret
= write(fd
, bp
, len
);
260 if (errno
== EINTR
|| errno
== EAGAIN
)
273 * Write the contents of the buffer <b> to the file whose path is given in
274 * <path>. If the file does not exist, it is created with mode <mode>.
276 const struct got_error
*
277 buf_write(BUF
*b
, const char *path
, mode_t mode
)
279 const struct got_error
*err
= NULL
;
282 if ((fd
= open(path
, O_WRONLY
|O_CREAT
|O_TRUNC
|O_CLOEXEC
, mode
)) == -1) {
283 err
= got_error_from_errno2("open", path
);
284 if (errno
== EACCES
&& unlink(path
) != -1)
290 if (buf_write_fd(b
, fd
) == -1) {
291 err
= got_error_from_errno("buf_write_fd");
296 if (fchmod(fd
, mode
) < 0)
297 err
= got_error_from_errno2("fchmod", path
);
299 if (close(fd
) == -1 && err
== NULL
)
300 err
= got_error_from_errno2("close", path
);
306 * Write the contents of the buffer <b> to a temporary file whose path is
307 * specified using <template> (see mkstemp.3).
308 * NB. This function will modify <template>, as per mkstemp
310 const struct got_error
*
311 buf_write_stmp(BUF
*b
, char *template)
313 const struct got_error
*err
= NULL
;
316 if ((fd
= mkstemp(template)) == -1)
317 return got_error_from_errno("mkstemp");
319 if (buf_write_fd(b
, fd
) == -1) {
320 err
= got_error_from_errno("buf_write_fd");
321 (void)unlink(template);
324 if (close(fd
) == -1 && err
== NULL
)
325 err
= got_error_from_errno("close");
331 * Grow the buffer <b> by <len> bytes. The contents are unchanged by this
332 * operation regardless of the result.
334 static const struct got_error
*
335 buf_grow(BUF
*b
, size_t len
)
338 buf
= reallocarray(b
->cb_buf
, 1, b
->cb_size
+ len
);
340 return got_error_from_errno("reallocarray");