diff options
author | 2010-06-02 12:20:47 +0000 | |
---|---|---|
committer | 2010-06-02 12:20:47 +0000 | |
commit | a5f0e024a23ed594c8fe3b40196164dd8a567529 (patch) | |
tree | 0b72bbf5bd771a590b45ca2645592c6c713582b2 | |
parent | Start reworking the LDE. Implement a FEC RB tree that can be used for the (diff) | |
download | wireguard-openbsd-a5f0e024a23ed594c8fe3b40196164dd8a567529.tar.xz wireguard-openbsd-a5f0e024a23ed594c8fe3b40196164dd8a567529.zip |
strnlen regression tests
-rw-r--r-- | regress/lib/libc/strnlen/Makefile | 5 | ||||
-rw-r--r-- | regress/lib/libc/strnlen/strnlentest.c | 69 |
2 files changed, 74 insertions, 0 deletions
diff --git a/regress/lib/libc/strnlen/Makefile b/regress/lib/libc/strnlen/Makefile new file mode 100644 index 00000000000..e7c74972e1b --- /dev/null +++ b/regress/lib/libc/strnlen/Makefile @@ -0,0 +1,5 @@ +# $OpenBSD: Makefile,v 1.1 2010/06/02 12:20:47 millert Exp $ + +PROG= strnlentest + +.include <bsd.regress.mk> diff --git a/regress/lib/libc/strnlen/strnlentest.c b/regress/lib/libc/strnlen/strnlentest.c new file mode 100644 index 00000000000..e67e6adfb8e --- /dev/null +++ b/regress/lib/libc/strnlen/strnlentest.c @@ -0,0 +1,69 @@ +/* $OpenBSD: strnlentest.c,v 1.1 2010/06/02 12:20:47 millert Exp $ */ + +/* + * Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> + * + * 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/types.h> + +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> + +int main(int argc, char *argv[]) +{ + char *buf; + int failures = 0; + size_t len, bufsize; + + /* Enable malloc security options. */ + setenv("MALLOC_OPTIONS", "S", 0); + + bufsize = getpagesize(); /* trigger guard pages easily */ + buf = malloc(bufsize); + if (buf == NULL) { + fprintf(stderr, "unable to allocate memory\n"); + return 1; + } + memset(buf, 'a', bufsize); + + len = strnlen(buf, bufsize); + if (len != bufsize) { + fprintf(stderr, "strnlen: failed unterminated buffer test (1)"); + failures++; + } + + len = strnlen(buf, bufsize / 2); + if (len != bufsize / 2) { + fprintf(stderr, "strnlen: failed unterminated buffer test (2)"); + failures++; + } + + buf[bufsize - 1] = '\0'; + len = strnlen(buf, bufsize); + if (len != bufsize - 1) { + fprintf(stderr, "strnlen: failed NUL-terminated buffer test (1)"); + failures++; + } + + len = strnlen(buf, (size_t)-1); + if (len != bufsize - 1) { + fprintf(stderr, "strnlen: failed NUL-terminated buffer test (2)"); + failures++; + } + + return failures; +} |