summaryrefslogtreecommitdiff
path: root/regress/lib/libutil
diff options
context:
space:
mode:
authorTobias Stoeckmann <tobias@cvs.openbsd.org>2022-04-23 08:57:53 +0000
committerTobias Stoeckmann <tobias@cvs.openbsd.org>2022-04-23 08:57:53 +0000
commit61e697b9f27beeed025e086558ed79ad05fae595 (patch)
tree3852d358be58486a571840d5541c76a98135c9f5 /regress/lib/libutil
parentf1150915c1d18b3476ae27cc0fabc2af5f1cef6f (diff)
Verify sizes before arithmetic operations
Unsigned overflows are not a bug in C but we have to make sure that requested buffer sizes will be actually available. If not, set errno to ERANGE and return an error value. ok deraadt, millert
Diffstat (limited to 'regress/lib/libutil')
-rw-r--r--regress/lib/libutil/Makefile4
-rw-r--r--regress/lib/libutil/imsg/Makefile12
-rw-r--r--regress/lib/libutil/imsg/ibuf_test.c172
3 files changed, 186 insertions, 2 deletions
diff --git a/regress/lib/libutil/Makefile b/regress/lib/libutil/Makefile
index 7641be2de0e..762d36cd606 100644
--- a/regress/lib/libutil/Makefile
+++ b/regress/lib/libutil/Makefile
@@ -1,8 +1,8 @@
-# $OpenBSD: Makefile,v 1.4 2019/05/13 10:00:29 rob Exp $
+# $OpenBSD: Makefile,v 1.5 2022/04/23 08:57:52 tobias Exp $
# Makefile for regress/libutil
-SUBDIR= bcrypt_pbkdf ber fmt_scaled pkcs5_pbkdf2
+SUBDIR= bcrypt_pbkdf ber fmt_scaled imsg pkcs5_pbkdf2
include:
diff --git a/regress/lib/libutil/imsg/Makefile b/regress/lib/libutil/imsg/Makefile
new file mode 100644
index 00000000000..e0a20efa6e1
--- /dev/null
+++ b/regress/lib/libutil/imsg/Makefile
@@ -0,0 +1,12 @@
+# $OpenBSD: Makefile,v 1.1 2022/04/23 08:57:52 tobias Exp $
+
+REGRESS_TARGETS= run-regress
+
+LDFLAGS= -lutil
+
+CLEANFILES= ibuf_test ibuf_test.d
+
+run-regress: ibuf_test
+ ${.OBJDIR}/ibuf_test
+
+.include <bsd.regress.mk>
diff --git a/regress/lib/libutil/imsg/ibuf_test.c b/regress/lib/libutil/imsg/ibuf_test.c
new file mode 100644
index 00000000000..a85b31a4d85
--- /dev/null
+++ b/regress/lib/libutil/imsg/ibuf_test.c
@@ -0,0 +1,172 @@
+/* $OpenBSD: ibuf_test.c,v 1.1 2022/04/23 08:57:52 tobias Exp $
+*/
+/*
+ * Copyright (c) Tobias Stoeckmann <tobias@openbsd.org>
+ *
+ * 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 AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR 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/queue.h>
+#include <sys/types.h>
+#include <sys/uio.h>
+
+#include <imsg.h>
+#include <limits.h>
+#include <stdint.h>
+#include <stdio.h>
+
+int
+test_ibuf_open(void) {
+ struct ibuf *buf;
+
+ if ((buf = ibuf_open(0)) == NULL)
+ return 1;
+
+ ibuf_free(buf);
+ return 0;
+}
+
+int
+test_ibuf_dynamic(void) {
+ struct ibuf *buf;
+
+ if (ibuf_dynamic(100, 0) != NULL)
+ return 1;
+
+ if ((buf = ibuf_dynamic(10, SIZE_MAX)) == NULL)
+ return 1;
+
+ ibuf_free(buf);
+ return 0;
+}
+
+int
+test_ibuf_reserve(void) {
+ struct ibuf *buf;
+ int ret;
+
+ if ((buf = ibuf_dynamic(10, SIZE_MAX)) == NULL) {
+ return 1;
+ }
+
+ if (ibuf_reserve(buf, SIZE_MAX) != NULL) {
+ ibuf_free(buf);
+ return 1;
+ }
+
+ if (ibuf_reserve(buf, 10) == NULL) {
+ ibuf_free(buf);
+ return 1;
+ }
+
+ ret = (ibuf_reserve(buf, SIZE_MAX) != NULL);
+
+ ibuf_free(buf);
+ return ret;
+}
+
+int
+test_ibuf_seek(void) {
+ struct ibuf *buf;
+ int ret;
+
+ if ((buf = ibuf_open(10)) == NULL)
+ return 1;
+
+ ret = (ibuf_seek(buf, 1, SIZE_MAX) != NULL);
+
+ ibuf_free(buf);
+ return ret;
+}
+
+int
+test_msgbuf_drain(void) {
+ struct msgbuf msgbuf;
+ struct ibuf *buf;
+
+ msgbuf_init(&msgbuf);
+
+ if ((buf = ibuf_open(4)) == NULL)
+ return 1;
+ if (ibuf_add(buf, "test", 4) != 0) {
+ ibuf_free(buf);
+ return 1;
+ }
+ ibuf_close(&msgbuf, buf);
+
+ if (msgbuf.queued != 1) {
+ ibuf_free(buf);
+ return 1;
+ }
+
+ msgbuf_drain(&msgbuf, 1);
+
+ if (msgbuf.queued != 1) {
+ ibuf_free(buf);
+ return 1;
+ }
+
+ msgbuf_drain(&msgbuf, SIZE_MAX);
+
+ if (msgbuf.queued != 0) {
+ ibuf_free(buf);
+ return 1;
+ }
+
+ return 0;
+}
+
+int
+main(void)
+{
+ extern char *__progname;
+
+ int ret = 0;
+
+ if (test_ibuf_open() != 0) {
+ printf("FAILED: test_ibuf_open\n");
+ ret = 1;
+ } else
+ printf("SUCCESS: test_ibuf_open\n");
+
+ if (test_ibuf_dynamic() != 0) {
+ printf("FAILED: test_ibuf_dynamic\n");
+ ret = 1;
+ } else
+ printf("SUCCESS: test_ibuf_dynamic\n");
+
+ if (test_ibuf_reserve() != 0) {
+ printf("FAILED: test_ibuf_reserve\n");
+ ret = 1;
+ } else
+ printf("SUCCESS: test_ibuf_reserve\n");
+
+ if (test_ibuf_seek() != 0) {
+ printf("FAILED: test_ibuf_seek\n");
+ ret = 1;
+ } else
+ printf("SUCCESS: test_ibuf_seek\n");
+
+ if (test_msgbuf_drain() != 0) {
+ printf("FAILED: test_msgbuf_drain\n");
+ ret = 1;
+ } else
+ printf("SUCCESS: test_msgbuf_drain\n");
+
+ if (ret != 0) {
+ printf("FAILED: %s\n", __progname);
+ return 1;
+ }
+
+ return 0;
+}