diff options
Diffstat (limited to 'src/regress/lib/libc')
180 files changed, 19334 insertions, 0 deletions
diff --git a/src/regress/lib/libc/Makefile b/src/regress/lib/libc/Makefile new file mode 100644 index 0000000000..a0b950033e --- /dev/null +++ b/src/regress/lib/libc/Makefile | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.34 2012/07/11 10:46:23 naddy Exp $ | ||
| 2 | |||
| 3 | SUBDIR+= _setjmp alloca atexit basename cephes cxa-atexit db dirname env | ||
| 4 | SUBDIR+= fnmatch fpclassify getaddrinfo getcap getopt_long glob hsearch | ||
| 5 | SUBDIR+= longjmp locale malloc mkstemp netdb orientation popen printf | ||
| 6 | SUBDIR+= regex setjmp setjmp-signal sigreturn sigsetjmp sprintf | ||
| 7 | SUBDIR+= stdio_threading stpncpy strerror strtod strtonum telldir time vis | ||
| 8 | |||
| 9 | .if (${MACHINE_ARCH} != "vax") | ||
| 10 | SUBDIR+= ieeefp | ||
| 11 | .endif | ||
| 12 | |||
| 13 | .if exists(arch/${MACHINE_ARCH}) | ||
| 14 | SUBDIR+= arch/${MACHINE_ARCH} | ||
| 15 | .endif | ||
| 16 | |||
| 17 | install: | ||
| 18 | |||
| 19 | .include <bsd.subdir.mk> | ||
diff --git a/src/regress/lib/libc/_setjmp/Makefile b/src/regress/lib/libc/_setjmp/Makefile new file mode 100644 index 0000000000..5d58242523 --- /dev/null +++ b/src/regress/lib/libc/_setjmp/Makefile | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.3 2002/01/01 23:00:51 art Exp $ | ||
| 2 | # $NetBSD: Makefile,v 1.2 1995/04/20 22:38:44 cgd Exp $ | ||
| 3 | |||
| 4 | PROG= _setjmptest | ||
| 5 | SRCS= jmptest.c | ||
| 6 | |||
| 7 | CFLAGS+= -DTEST_U_SETJMP | ||
| 8 | |||
| 9 | .PATH: ${.CURDIR}/../setjmp | ||
| 10 | |||
| 11 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/alloca/Makefile b/src/regress/lib/libc/alloca/Makefile new file mode 100644 index 0000000000..f31417cda7 --- /dev/null +++ b/src/regress/lib/libc/alloca/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2003/02/12 06:49:04 mickey Exp $ | ||
| 2 | |||
| 3 | PROG= alloca | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/alloca/alloca.c b/src/regress/lib/libc/alloca/alloca.c new file mode 100644 index 0000000000..54fa90edae --- /dev/null +++ b/src/regress/lib/libc/alloca/alloca.c | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | /* $OpenBSD: alloca.c,v 1.7 2004/03/10 01:17:45 deraadt Exp $ */ | ||
| 2 | |||
| 3 | /* Written by Michael Shalayeff, 2003, Public Domain. */ | ||
| 4 | |||
| 5 | #include <stdio.h> | ||
| 6 | #include <stdlib.h> | ||
| 7 | #include <string.h> | ||
| 8 | |||
| 9 | int | ||
| 10 | main(int argc, char *argv[]) | ||
| 11 | { | ||
| 12 | char *q, *p; | ||
| 13 | |||
| 14 | p = alloca(41); | ||
| 15 | strlcpy(p, "hellow world", 41); | ||
| 16 | |||
| 17 | q = alloca(53); | ||
| 18 | strlcpy(q, "hellow world", 53); | ||
| 19 | |||
| 20 | exit(strcmp(p, q)); | ||
| 21 | } | ||
diff --git a/src/regress/lib/libc/arch/alpha/Makefile b/src/regress/lib/libc/arch/alpha/Makefile new file mode 100644 index 0000000000..8c4dfb735c --- /dev/null +++ b/src/regress/lib/libc/arch/alpha/Makefile | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.3 2002/02/23 01:25:11 art Exp $ | ||
| 2 | # $NetBSD: Makefile,v 1.1 1995/04/24 05:53:31 cgd Exp $ | ||
| 3 | |||
| 4 | # do nothing here; none of the tests here can be run automatically | ||
| 5 | SUBDIR= | ||
| 6 | |||
| 7 | install: | ||
| 8 | |||
| 9 | .include <bsd.subdir.mk> | ||
diff --git a/src/regress/lib/libc/arch/alpha/divremtest/Makefile b/src/regress/lib/libc/arch/alpha/divremtest/Makefile new file mode 100644 index 0000000000..1da3ac8494 --- /dev/null +++ b/src/regress/lib/libc/arch/alpha/divremtest/Makefile | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2001/01/29 02:05:39 niklas Exp $ | ||
| 2 | # $NetBSD: Makefile,v 1.1 1995/04/24 05:53:34 cgd Exp $ | ||
| 3 | |||
| 4 | PROG= divremtest | ||
| 5 | NOMAN= | ||
| 6 | |||
| 7 | CLEANFILES+= mkcases cases.c mktestcases testcases | ||
| 8 | |||
| 9 | divremtest.c: cases.c | ||
| 10 | |||
| 11 | cases.c: mkcases | ||
| 12 | /bin/rm -f cases.c | ||
| 13 | mkcases > cases.c | ||
| 14 | |||
| 15 | # a typical strategy to use this: | ||
| 16 | # compile a NetBSD divremtest binary, an OSF/1 divremtest binary, and an | ||
| 17 | # OSF/1 mktestcases binary. You then run mktestecases | divremtest -g | ||
| 18 | # on an OSF/1 machine, and pipe the output to an rsh to a NetBSD machine | ||
| 19 | # which then runs divremtest. You can test an infinite number of random | ||
| 20 | # values that way; I like to put a 'dd' in, so I can see how much I've done. | ||
| 21 | |||
| 22 | testcases: mktestcases divremtest | ||
| 23 | /bin/rm -f testcases | ||
| 24 | mktestcases | divremtest -g > testcases | ||
| 25 | |||
| 26 | regress: | ||
| 27 | @echo THIS TEST CANNOT BE RUN AUTOMATICALLY. | ||
| 28 | @false | ||
| 29 | |||
| 30 | .include <bsd.prog.mk> | ||
diff --git a/src/regress/lib/libc/arch/alpha/divremtest/divremtest.c b/src/regress/lib/libc/arch/alpha/divremtest/divremtest.c new file mode 100644 index 0000000000..3d9e8a6de2 --- /dev/null +++ b/src/regress/lib/libc/arch/alpha/divremtest/divremtest.c | |||
| @@ -0,0 +1,184 @@ | |||
| 1 | /* $OpenBSD: divremtest.c,v 1.2 2001/01/29 02:05:39 niklas Exp $ */ | ||
| 2 | /* $NetBSD: divremtest.c,v 1.1 1995/04/24 05:53:35 cgd Exp $ */ | ||
| 3 | |||
| 4 | /* | ||
| 5 | * Copyright (c) 1995 Christopher G. Demetriou | ||
| 6 | * All rights reserved. | ||
| 7 | * | ||
| 8 | * Redistribution and use in source and binary forms, with or without | ||
| 9 | * modification, are permitted provided that the following conditions | ||
| 10 | * are met: | ||
| 11 | * 1. Redistributions of source code must retain the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer. | ||
| 13 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 14 | * notice, this list of conditions and the following disclaimer in the | ||
| 15 | * documentation and/or other materials provided with the distribution. | ||
| 16 | * 3. All advertising materials mentioning features or use of this software | ||
| 17 | * must display the following acknowledgement: | ||
| 18 | * This product includes software developed by Christopher G. Demetriou | ||
| 19 | * for the NetBSD Project. | ||
| 20 | * 4. The name of the author may not be used to endorse or promote products | ||
| 21 | * derived from this software without specific prior written permission | ||
| 22 | * | ||
| 23 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | ||
| 24 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
| 25 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
| 26 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| 27 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
| 28 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
| 29 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
| 30 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
| 31 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
| 32 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 33 | */ | ||
| 34 | |||
| 35 | #include <stdio.h> | ||
| 36 | #include <unistd.h> | ||
| 37 | #include <signal.h> | ||
| 38 | |||
| 39 | void testfile(); | ||
| 40 | void usage(); | ||
| 41 | |||
| 42 | int generate; | ||
| 43 | |||
| 44 | int | ||
| 45 | main(argc, argv) | ||
| 46 | int argc; | ||
| 47 | char **argv; | ||
| 48 | { | ||
| 49 | int c; | ||
| 50 | |||
| 51 | signal(SIGFPE, SIG_IGN); | ||
| 52 | |||
| 53 | while ((c = getopt(argc, argv, "g")) != -1) | ||
| 54 | switch (c) { | ||
| 55 | case 'g': | ||
| 56 | generate = 1; | ||
| 57 | break; | ||
| 58 | |||
| 59 | default: | ||
| 60 | usage(); | ||
| 61 | break; | ||
| 62 | } | ||
| 63 | |||
| 64 | argc -= optind; | ||
| 65 | argv += optind; | ||
| 66 | |||
| 67 | if (argc == 0) | ||
| 68 | testfile(); | ||
| 69 | else | ||
| 70 | for (; argc != 0; argc--, argv++) { | ||
| 71 | if (freopen(argv[0], "r", stdin) == NULL) { | ||
| 72 | fprintf(stderr, | ||
| 73 | "divremtest: couldn't open %s\n", | ||
| 74 | argv[0]); | ||
| 75 | exit(1); | ||
| 76 | } | ||
| 77 | |||
| 78 | testfile(); | ||
| 79 | } | ||
| 80 | |||
| 81 | exit(0); | ||
| 82 | } | ||
| 83 | |||
| 84 | void | ||
| 85 | testfile() | ||
| 86 | { | ||
| 87 | union operand { | ||
| 88 | unsigned long input; | ||
| 89 | int op_int; | ||
| 90 | unsigned int op_u_int; | ||
| 91 | long op_long; | ||
| 92 | unsigned long op_u_long; | ||
| 93 | } op1, op2, divres, modres, divwant, modwant; | ||
| 94 | char opspec[6]; | ||
| 95 | int encoded, i; | ||
| 96 | |||
| 97 | while (scanf("%6c %lx %lx %lx %lx\n", opspec, &op1.input, | ||
| 98 | &op2.input, &divwant.input, &modwant.input) != EOF) { | ||
| 99 | |||
| 100 | encoded = 0; | ||
| 101 | |||
| 102 | for (i = 0; i < 6; i += 2) { | ||
| 103 | int posval; | ||
| 104 | |||
| 105 | switch (opspec[i]) { | ||
| 106 | case '.': | ||
| 107 | posval = 0; | ||
| 108 | break; | ||
| 109 | case '-': | ||
| 110 | posval = 1; | ||
| 111 | break; | ||
| 112 | default: | ||
| 113 | fprintf(stderr, | ||
| 114 | "unknown signedness spec %c\n", | ||
| 115 | opspec[i]); | ||
| 116 | exit(1); | ||
| 117 | } | ||
| 118 | encoded |= posval << ((5 - i) * 4); | ||
| 119 | } | ||
| 120 | |||
| 121 | for (i = 1; i < 6; i += 2) { | ||
| 122 | int posval; | ||
| 123 | |||
| 124 | switch (opspec[i]) { | ||
| 125 | case 'i': | ||
| 126 | posval = 0; | ||
| 127 | break; | ||
| 128 | case 'l': | ||
| 129 | posval = 1; | ||
| 130 | break; | ||
| 131 | default: | ||
| 132 | fprintf(stderr, "unknown length spec %c\n", | ||
| 133 | opspec[i]); | ||
| 134 | exit(1); | ||
| 135 | } | ||
| 136 | encoded |= posval << ((5 - i) * 4); | ||
| 137 | } | ||
| 138 | |||
| 139 | /* KILL ME!!! */ | ||
| 140 | switch (encoded) { | ||
| 141 | |||
| 142 | #define TRY_IT(a, b, c) \ | ||
| 143 | divres.a = op1.b / op2.c; \ | ||
| 144 | modres.a = op1.b % op2.c; \ | ||
| 145 | if (generate) { \ | ||
| 146 | printf("%6s 0x%016lx 0x%016lx 0x%016lx 0x%016lx\n", \ | ||
| 147 | opspec, op1.input, op2.input, \ | ||
| 148 | divres.a, modres.a); \ | ||
| 149 | } else { \ | ||
| 150 | if ((divres.a != divwant.a) || \ | ||
| 151 | (modres.a != modwant.a)) { \ | ||
| 152 | fprintf(stderr, "%6s 0x%016lx 0x%016lx\n", \ | ||
| 153 | opspec, op1.input, op2.input); \ | ||
| 154 | fprintf(stderr, "FAILED:\n"); \ | ||
| 155 | fprintf(stderr, \ | ||
| 156 | "div:\twanted 0x%16lx, got 0x%16lx\n", \ | ||
| 157 | divwant.a, divres.a); \ | ||
| 158 | fprintf(stderr, \ | ||
| 159 | "mod:\twanted 0x%16lx, got 0x%16lx\n", \ | ||
| 160 | modwant.a, modres.a); \ | ||
| 161 | \ | ||
| 162 | exit(1); \ | ||
| 163 | } \ | ||
| 164 | } | ||
| 165 | |||
| 166 | #include "cases.c" | ||
| 167 | |||
| 168 | #undef TRY_IT | ||
| 169 | |||
| 170 | default: | ||
| 171 | fprintf(stderr, | ||
| 172 | "INTERNAL ERROR: unknown encoding %x\n", encoded); | ||
| 173 | exit(1); | ||
| 174 | } | ||
| 175 | } | ||
| 176 | } | ||
| 177 | |||
| 178 | void | ||
| 179 | usage() | ||
| 180 | { | ||
| 181 | |||
| 182 | fprintf(stderr, "usage: divremtest [-v] [testfile ...]\n"); | ||
| 183 | exit(1); | ||
| 184 | } | ||
diff --git a/src/regress/lib/libc/arch/alpha/divremtest/mkcases.c b/src/regress/lib/libc/arch/alpha/divremtest/mkcases.c new file mode 100644 index 0000000000..fcb4765b8c --- /dev/null +++ b/src/regress/lib/libc/arch/alpha/divremtest/mkcases.c | |||
| @@ -0,0 +1,64 @@ | |||
| 1 | /* $OpenBSD: mkcases.c,v 1.2 2001/01/29 02:05:39 niklas Exp $ */ | ||
| 2 | /* $NetBSD: mkcases.c,v 1.1 1995/04/24 05:53:36 cgd Exp $ */ | ||
| 3 | |||
| 4 | /* | ||
| 5 | * Copyright (c) 1995 Christopher G. Demetriou | ||
| 6 | * All rights reserved. | ||
| 7 | * | ||
| 8 | * Redistribution and use in source and binary forms, with or without | ||
| 9 | * modification, are permitted provided that the following conditions | ||
| 10 | * are met: | ||
| 11 | * 1. Redistributions of source code must retain the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer. | ||
| 13 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 14 | * notice, this list of conditions and the following disclaimer in the | ||
| 15 | * documentation and/or other materials provided with the distribution. | ||
| 16 | * 3. All advertising materials mentioning features or use of this software | ||
| 17 | * must display the following acknowledgement: | ||
| 18 | * This product includes software developed by Christopher G. Demetriou | ||
| 19 | * for the NetBSD Project. | ||
| 20 | * 4. The name of the author may not be used to endorse or promote products | ||
| 21 | * derived from this software without specific prior written permission | ||
| 22 | * | ||
| 23 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | ||
| 24 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
| 25 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
| 26 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| 27 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
| 28 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
| 29 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
| 30 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
| 31 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
| 32 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 33 | */ | ||
| 34 | |||
| 35 | char *tab[4] = { "u_int", "int", "u_long", "long" }; | ||
| 36 | |||
| 37 | int | ||
| 38 | main() | ||
| 39 | { | ||
| 40 | int i; | ||
| 41 | |||
| 42 | for (i = 0; i < 64; i++) { | ||
| 43 | printf( | ||
| 44 | " case 0x%d%d%d%d%d%d: /* %s <= %s op %s */\n", | ||
| 45 | (i >> 5) & 1, | ||
| 46 | (i >> 4) & 1, | ||
| 47 | (i >> 3) & 1, | ||
| 48 | (i >> 2) & 1, | ||
| 49 | (i >> 1) & 1, | ||
| 50 | (i >> 0) & 1, | ||
| 51 | tab[(i >> 4) & 0x3], | ||
| 52 | tab[(i >> 2) & 0x3], | ||
| 53 | tab[(i >> 0) & 0x3]); | ||
| 54 | printf( | ||
| 55 | " TRY_IT(op_%s, op_%s, op_%s);\n", | ||
| 56 | tab[(i >> 4) & 0x3], | ||
| 57 | tab[(i >> 2) & 0x3], | ||
| 58 | tab[(i >> 0) & 0x3]); | ||
| 59 | printf( | ||
| 60 | " break;\n\n"); | ||
| 61 | } | ||
| 62 | |||
| 63 | exit(0); | ||
| 64 | } | ||
diff --git a/src/regress/lib/libc/arch/alpha/divremtest/mktestcases.c b/src/regress/lib/libc/arch/alpha/divremtest/mktestcases.c new file mode 100644 index 0000000000..3b01653f32 --- /dev/null +++ b/src/regress/lib/libc/arch/alpha/divremtest/mktestcases.c | |||
| @@ -0,0 +1,68 @@ | |||
| 1 | /* $OpenBSD: mktestcases.c,v 1.2 2001/01/29 02:05:40 niklas Exp $ */ | ||
| 2 | /* $NetBSD: mktestcases.c,v 1.1 1995/04/24 05:53:37 cgd Exp $ */ | ||
| 3 | |||
| 4 | /* | ||
| 5 | * Copyright (c) 1995 Christopher G. Demetriou | ||
| 6 | * All rights reserved. | ||
| 7 | * | ||
| 8 | * Redistribution and use in source and binary forms, with or without | ||
| 9 | * modification, are permitted provided that the following conditions | ||
| 10 | * are met: | ||
| 11 | * 1. Redistributions of source code must retain the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer. | ||
| 13 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 14 | * notice, this list of conditions and the following disclaimer in the | ||
| 15 | * documentation and/or other materials provided with the distribution. | ||
| 16 | * 3. All advertising materials mentioning features or use of this software | ||
| 17 | * must display the following acknowledgement: | ||
| 18 | * This product includes software developed by Christopher G. Demetriou | ||
| 19 | * for the NetBSD Project. | ||
| 20 | * 4. The name of the author may not be used to endorse or promote products | ||
| 21 | * derived from this software without specific prior written permission | ||
| 22 | * | ||
| 23 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | ||
| 24 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
| 25 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
| 26 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| 27 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
| 28 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
| 29 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
| 30 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
| 31 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
| 32 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 33 | */ | ||
| 34 | |||
| 35 | #include <stdio.h> | ||
| 36 | |||
| 37 | int | ||
| 38 | main() | ||
| 39 | { | ||
| 40 | int i, j; | ||
| 41 | unsigned long n1, n2; | ||
| 42 | |||
| 43 | srandom(time(NULL)); | ||
| 44 | |||
| 45 | for (i = 1; /* i < 10240 */ 1; i++) { | ||
| 46 | n1 = (unsigned) | ||
| 47 | (random() & ((random() & random()) | 0x80000000)); | ||
| 48 | n1 <<= 32; | ||
| 49 | n1 |= (unsigned)(random() & random() & random()); | ||
| 50 | |||
| 51 | n2 = (unsigned) | ||
| 52 | (random() & ((random() & random()) | 0x80000000)); | ||
| 53 | n2 <<= 32; | ||
| 54 | n2 |= (unsigned)(random() & random() & random()); | ||
| 55 | |||
| 56 | for (j = 0; j < 64; j++) { | ||
| 57 | char *tab[] = { ".i", ".l", "-i", "-l" }; | ||
| 58 | |||
| 59 | printf("%s%s%s 0x%lx 0x%lx 0 0\n", | ||
| 60 | tab[(j >> 4) & 0x3], | ||
| 61 | tab[(j >> 2) & 0x3], | ||
| 62 | tab[(j >> 0) & 0x3], | ||
| 63 | n1, n2); | ||
| 64 | } | ||
| 65 | } | ||
| 66 | |||
| 67 | exit(0); | ||
| 68 | } | ||
diff --git a/src/regress/lib/libc/asr/Makefile b/src/regress/lib/libc/asr/Makefile new file mode 100644 index 0000000000..ac1d4ed18c --- /dev/null +++ b/src/regress/lib/libc/asr/Makefile | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2012/08/07 21:00:31 eric Exp $ | ||
| 2 | |||
| 3 | # | ||
| 4 | # Note on building and running the regress tests: | ||
| 5 | # | ||
| 6 | # The regress suite builds two sets of static executables: one linked | ||
| 7 | # against the current libc, and one linked against a libc with the resolver | ||
| 8 | # replaced. The idea is to compare the output of all programs in both cases. | ||
| 9 | # | ||
| 10 | # So before building the regression test programs, you need to have the two | ||
| 11 | # libc.a ready. By default, it is assumed that the asr-enabled libc was just | ||
| 12 | # built from src but not installed, so the current libc.a is expected to be | ||
| 13 | # found in /usr/lib, and the new one in /usr/obj/lib/libc. If your setting | ||
| 14 | # is different, just set LIBCDIRSTD and LIBCDIRASR accordingly. | ||
| 15 | # | ||
| 16 | # When done, run "make && make install". This builds and installs the two sets | ||
| 17 | # of programs in REGRESSDIR. They will run chrooted there to allow testing with | ||
| 18 | # various /etc environment without messing up the local machine config files. | ||
| 19 | # | ||
| 20 | # When you are sure everything is in place, run "make regress". This will | ||
| 21 | # create two files: $REGRESSDIR/output.log with the output of all run tests, | ||
| 22 | # and $REGRESSDIR/regress.log with the diffs for those that "failed". | ||
| 23 | # | ||
| 24 | # Note that "install" and "regress" targets need to be run as root. | ||
| 25 | # | ||
| 26 | |||
| 27 | LIBCDIRSTD?= /usr/lib | ||
| 28 | LIBCDIRASR?= /usr/obj/lib/libc | ||
| 29 | |||
| 30 | REGRESSDIR?= /tmp/regress | ||
| 31 | REGRESS?= regress.sh | ||
| 32 | |||
| 33 | all: build | ||
| 34 | |||
| 35 | build: | ||
| 36 | cd bin && EXT=.asr LDFLAGS=-L${LIBCDIRASR} make | ||
| 37 | cd bin && EXT=.std LDFLAGS=-L${LIBCDIRSTD} make | ||
| 38 | |||
| 39 | clean: | ||
| 40 | cd bin && EXT=.std make clean | ||
| 41 | cd bin && EXT=.asr make clean | ||
| 42 | |||
| 43 | install: | ||
| 44 | mkdir -p ${REGRESSDIR}/etc | ||
| 45 | mkdir -p ${REGRESSDIR}/bin | ||
| 46 | cd bin && BINDIR=${REGRESSDIR}/bin EXT=.std make install | ||
| 47 | cd bin && BINDIR=${REGRESSDIR}/bin EXT=.asr make install | ||
| 48 | |||
| 49 | uninstall: | ||
| 50 | rm -rf ${REGRESSDIR} | ||
| 51 | |||
| 52 | regress: | ||
| 53 | RUNDIR=${REGRESSDIR} sh ${.CURDIR}/${REGRESS} | ||
diff --git a/src/regress/lib/libc/asr/bin/Makefile b/src/regress/lib/libc/asr/bin/Makefile new file mode 100644 index 0000000000..1f986a8e69 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/Makefile | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | SUBDIR= res_mkquery | ||
| 2 | SUBDIR+= res_query | ||
| 3 | SUBDIR+= gethostnamadr | ||
| 4 | SUBDIR+= getnetnamadr | ||
| 5 | SUBDIR+= getrrsetbyname | ||
| 6 | SUBDIR+= getnameinfo | ||
| 7 | SUBDIR+= getaddrinfo | ||
| 8 | SUBDIR+= threads | ||
| 9 | |||
| 10 | .include <bsd.subdir.mk> | ||
diff --git a/src/regress/lib/libc/asr/bin/Makefile.inc b/src/regress/lib/libc/asr/bin/Makefile.inc new file mode 100644 index 0000000000..80b4805136 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/Makefile.inc | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | # $OpenBSD: Makefile.inc,v 1.2 2012/09/05 21:21:13 eric Exp $ | ||
| 2 | |||
| 3 | NOMAN= noman | ||
| 4 | |||
| 5 | SRCS+= common.c | ||
| 6 | CFLAGS+= -Wall -Wstrict-prototypes -Werror -Wundef -g | ||
| 7 | LDSTATIC= ${STATIC} | ||
| 8 | PROG:= ${PROG}${EXT} | ||
diff --git a/src/regress/lib/libc/asr/bin/common.c b/src/regress/lib/libc/asr/bin/common.c new file mode 100644 index 0000000000..4402d08373 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/common.c | |||
| @@ -0,0 +1,633 @@ | |||
| 1 | /* $OpenBSD: common.c,v 1.1.1.1 2012/07/13 17:49:53 eric Exp $ */ | ||
| 2 | /* | ||
| 3 | * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> | ||
| 4 | * | ||
| 5 | * Permission to use, copy, modify, and distribute this software for any | ||
| 6 | * purpose with or without fee is hereby granted, provided that the above | ||
| 7 | * copyright notice and this permission notice appear in all copies. | ||
| 8 | * | ||
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 16 | */ | ||
| 17 | #include <sys/types.h> | ||
| 18 | #include <sys/socket.h> | ||
| 19 | #include <netinet/in.h> | ||
| 20 | #include <arpa/inet.h> | ||
| 21 | #include <arpa/nameser.h> | ||
| 22 | |||
| 23 | #include <err.h> | ||
| 24 | #include <errno.h> | ||
| 25 | #include <inttypes.h> | ||
| 26 | #include <netdb.h> | ||
| 27 | #include <resolv.h> | ||
| 28 | #include <stdio.h> | ||
| 29 | #include <string.h> | ||
| 30 | |||
| 31 | #include "common.h" | ||
| 32 | |||
| 33 | int long_err; | ||
| 34 | int gai_errno; | ||
| 35 | int rrset_errno; | ||
| 36 | |||
| 37 | |||
| 38 | char * | ||
| 39 | gethostarg(char *n) | ||
| 40 | { | ||
| 41 | if (n == NULL) | ||
| 42 | return (n); | ||
| 43 | if (!strcmp(n, "NULL")) | ||
| 44 | return (NULL); | ||
| 45 | if (!strcmp(n, "EMPTY")) | ||
| 46 | return (""); | ||
| 47 | return (n); | ||
| 48 | } | ||
| 49 | |||
| 50 | const char *rrsetstrerror(int); | ||
| 51 | char * print_addr(const struct sockaddr *, char *, size_t); | ||
| 52 | |||
| 53 | struct kv { int code; const char *name; }; | ||
| 54 | |||
| 55 | struct kv kv_family[] = { | ||
| 56 | { AF_UNIX, "unix" }, | ||
| 57 | { AF_INET, "inet" }, | ||
| 58 | { AF_INET6, "inet6" }, | ||
| 59 | { AF_IMPLINK, "implink" }, | ||
| 60 | { AF_BLUETOOTH, "bluetooth" }, | ||
| 61 | { 0, NULL, } | ||
| 62 | }; | ||
| 63 | struct kv kv_socktype[] = { | ||
| 64 | { SOCK_STREAM, "stream" }, | ||
| 65 | { SOCK_DGRAM, "dgram" }, | ||
| 66 | { SOCK_RAW, "raw" }, | ||
| 67 | { 0, NULL, } | ||
| 68 | }; | ||
| 69 | struct kv kv_protocol[] = { | ||
| 70 | { IPPROTO_UDP, "udp" }, | ||
| 71 | { IPPROTO_TCP, "tcp" }, | ||
| 72 | { 0, NULL, } | ||
| 73 | }; | ||
| 74 | |||
| 75 | static const char * | ||
| 76 | kv_lookup_name(struct kv *kv, int code) | ||
| 77 | { | ||
| 78 | while (kv->name) { | ||
| 79 | if (kv->code == code) | ||
| 80 | return (kv->name); | ||
| 81 | kv++; | ||
| 82 | } | ||
| 83 | return "???"; | ||
| 84 | } | ||
| 85 | |||
| 86 | struct keyval { | ||
| 87 | const char *key; | ||
| 88 | uint16_t value; | ||
| 89 | }; | ||
| 90 | |||
| 91 | static struct keyval kv_class[] = { | ||
| 92 | { "IN", C_IN }, | ||
| 93 | { "CHAOS", C_CHAOS }, | ||
| 94 | { "HS", C_HS }, | ||
| 95 | { "ANY", C_ANY }, | ||
| 96 | { NULL, 0 }, | ||
| 97 | }; | ||
| 98 | |||
| 99 | static struct keyval kv_type[] = { | ||
| 100 | { "A", T_A }, | ||
| 101 | { "NS", T_NS }, | ||
| 102 | { "MD", T_MD }, | ||
| 103 | { "MF", T_MF }, | ||
| 104 | { "CNAME", T_CNAME }, | ||
| 105 | { "SOA", T_SOA }, | ||
| 106 | { "MB", T_MB }, | ||
| 107 | { "MG", T_MG }, | ||
| 108 | { "MR", T_MR }, | ||
| 109 | { "NULL", T_NULL }, | ||
| 110 | { "WKS", T_WKS }, | ||
| 111 | { "PTR", T_PTR }, | ||
| 112 | { "HINFO", T_HINFO }, | ||
| 113 | { "MINFO", T_MINFO }, | ||
| 114 | { "MX", T_MX }, | ||
| 115 | { "TXT", T_TXT }, | ||
| 116 | |||
| 117 | { "AAAA", T_AAAA }, | ||
| 118 | |||
| 119 | { "AXFR", T_AXFR }, | ||
| 120 | { "MAILB", T_MAILB }, | ||
| 121 | { "MAILA", T_MAILA }, | ||
| 122 | { "ANY", T_ANY }, | ||
| 123 | { NULL, 0 }, | ||
| 124 | }; | ||
| 125 | |||
| 126 | static struct keyval kv_rcode[] = { | ||
| 127 | { "NOERROR", NOERROR }, | ||
| 128 | { "FORMERR", FORMERR }, | ||
| 129 | { "SERVFAIL", SERVFAIL }, | ||
| 130 | { "NXDOMAIN", NXDOMAIN }, | ||
| 131 | { "NOTIMP", NOTIMP }, | ||
| 132 | { "REFUSED", REFUSED }, | ||
| 133 | { NULL, 0 }, | ||
| 134 | }; | ||
| 135 | |||
| 136 | |||
| 137 | const char * | ||
| 138 | rcodetostr(uint16_t v) | ||
| 139 | { | ||
| 140 | static char buf[16]; | ||
| 141 | size_t i; | ||
| 142 | |||
| 143 | for(i = 0; kv_rcode[i].key; i++) | ||
| 144 | if (kv_rcode[i].value == v) | ||
| 145 | return (kv_rcode[i].key); | ||
| 146 | |||
| 147 | snprintf(buf, sizeof buf, "%"PRIu16"?", v); | ||
| 148 | |||
| 149 | return (buf); | ||
| 150 | } | ||
| 151 | |||
| 152 | const char * | ||
| 153 | typetostr(uint16_t v) | ||
| 154 | { | ||
| 155 | static char buf[16]; | ||
| 156 | size_t i; | ||
| 157 | |||
| 158 | for(i = 0; kv_type[i].key; i++) | ||
| 159 | if (kv_type[i].value == v) | ||
| 160 | return (kv_type[i].key); | ||
| 161 | |||
| 162 | snprintf(buf, sizeof buf, "%"PRIu16"?", v); | ||
| 163 | |||
| 164 | return (buf); | ||
| 165 | } | ||
| 166 | |||
| 167 | const char * | ||
| 168 | classtostr(uint16_t v) | ||
| 169 | { | ||
| 170 | static char buf[16]; | ||
| 171 | size_t i; | ||
| 172 | |||
| 173 | for(i = 0; kv_class[i].key; i++) | ||
| 174 | if (kv_class[i].value == v) | ||
| 175 | return (kv_class[i].key); | ||
| 176 | |||
| 177 | snprintf(buf, sizeof buf, "%"PRIu16"?", v); | ||
| 178 | |||
| 179 | return (buf); | ||
| 180 | } | ||
| 181 | |||
| 182 | uint16_t | ||
| 183 | strtotype(const char *name) | ||
| 184 | { | ||
| 185 | size_t i; | ||
| 186 | |||
| 187 | for(i = 0; kv_type[i].key; i++) | ||
| 188 | if (!strcmp(kv_type[i].key, name)) | ||
| 189 | return (kv_type[i].value); | ||
| 190 | |||
| 191 | return (0); | ||
| 192 | } | ||
| 193 | |||
| 194 | uint16_t | ||
| 195 | strtoclass(const char *name) | ||
| 196 | { | ||
| 197 | size_t i; | ||
| 198 | |||
| 199 | for(i = 0; kv_class[i].key; i++) | ||
| 200 | if (!strcmp(kv_class[i].key, name)) | ||
| 201 | return (kv_class[i].value); | ||
| 202 | |||
| 203 | return (0); | ||
| 204 | } | ||
| 205 | |||
| 206 | void | ||
| 207 | print_hostent(struct hostent *e) | ||
| 208 | { | ||
| 209 | char buf[256], **c; | ||
| 210 | |||
| 211 | printf("name = \"%s\"\n", e->h_name); | ||
| 212 | printf("aliases ="); | ||
| 213 | for(c = e->h_aliases; *c; c++) | ||
| 214 | printf(" \"%s\"", *c); | ||
| 215 | printf("\n"); | ||
| 216 | printf("addrtype = %i\n", e->h_addrtype); | ||
| 217 | printf("addrlength = %i\n", e->h_length); | ||
| 218 | printf("addr_list ="); | ||
| 219 | for(c = e->h_addr_list; *c; c++) { | ||
| 220 | printf(" %s", inet_ntop(e->h_addrtype, *c, buf, sizeof buf)); | ||
| 221 | } | ||
| 222 | printf("\n"); | ||
| 223 | } | ||
| 224 | |||
| 225 | void | ||
| 226 | print_netent(struct netent *e) | ||
| 227 | { | ||
| 228 | char buf[256], **c; | ||
| 229 | uint32_t addr; | ||
| 230 | |||
| 231 | /* network number are given in host order */ | ||
| 232 | addr = htonl(e->n_net); | ||
| 233 | |||
| 234 | printf("name = \"%s\"\n", e->n_name); | ||
| 235 | printf("aliases ="); | ||
| 236 | for (c = e->n_aliases; *c; c++) | ||
| 237 | printf(" \"%s\"", *c); | ||
| 238 | printf("\n"); | ||
| 239 | printf("addrtype = %i\n", e->n_addrtype); | ||
| 240 | printf("net = %s\n", inet_ntop(e->n_addrtype, &addr, buf, sizeof buf)); | ||
| 241 | } | ||
| 242 | |||
| 243 | void | ||
| 244 | print_addrinfo(struct addrinfo *ai) | ||
| 245 | { | ||
| 246 | char buf[256]; | ||
| 247 | |||
| 248 | printf("family=%s socktype=%s protocol=%s addr=%s canonname=%s\n", | ||
| 249 | kv_lookup_name(kv_family, ai->ai_family), | ||
| 250 | kv_lookup_name(kv_socktype, ai->ai_socktype), | ||
| 251 | kv_lookup_name(kv_protocol, ai->ai_protocol), | ||
| 252 | print_addr(ai->ai_addr, buf, sizeof buf), | ||
| 253 | ai->ai_canonname); | ||
| 254 | } | ||
| 255 | |||
| 256 | const char * | ||
| 257 | rrsetstrerror(int e) | ||
| 258 | { | ||
| 259 | switch (e) { | ||
| 260 | case 0: | ||
| 261 | return "OK"; | ||
| 262 | case ERRSET_NONAME: | ||
| 263 | return "ERRSET_NONAME"; | ||
| 264 | case ERRSET_NODATA: | ||
| 265 | return "ERRSET_NODATA"; | ||
| 266 | case ERRSET_NOMEMORY: | ||
| 267 | return "ERRSET_NOMEMORY"; | ||
| 268 | case ERRSET_INVAL: | ||
| 269 | return "ERRSET_INVAL"; | ||
| 270 | case ERRSET_FAIL: | ||
| 271 | return "ERRSET_FAIL"; | ||
| 272 | default: | ||
| 273 | return "???"; | ||
| 274 | } | ||
| 275 | } | ||
| 276 | |||
| 277 | void | ||
| 278 | print_rrsetinfo(struct rrsetinfo * rrset) | ||
| 279 | { | ||
| 280 | printf("rri_flags=%u\n", rrset->rri_flags); | ||
| 281 | printf("rri_rdclass=%u\n", rrset->rri_rdclass); | ||
| 282 | printf("rri_rdtype=%u\n", rrset->rri_rdtype); | ||
| 283 | printf("rri_ttl=%u\n", rrset->rri_ttl); | ||
| 284 | printf("rri_nrdatas=%u\n", rrset->rri_nrdatas); | ||
| 285 | printf("rri_nsigs=%u\n", rrset->rri_nsigs); | ||
| 286 | printf("rri_name=\"%s\"\n", rrset->rri_name); | ||
| 287 | } | ||
| 288 | |||
| 289 | void | ||
| 290 | print_errors(void) | ||
| 291 | { | ||
| 292 | switch (long_err) { | ||
| 293 | case 0: | ||
| 294 | return; | ||
| 295 | case 1: | ||
| 296 | printf(" => errno %i, h_errno %i", errno, h_errno); | ||
| 297 | printf(", rrset_errno %i", rrset_errno); | ||
| 298 | printf(", gai_errno %i", gai_errno); | ||
| 299 | printf ("\n"); | ||
| 300 | return; | ||
| 301 | default: | ||
| 302 | printf(" => errno %i: %s\n => h_errno %i: %s\n => rrset_errno %i: %s\n", | ||
| 303 | errno, errno ? strerror(errno) : "ok", | ||
| 304 | h_errno, h_errno ? hstrerror(h_errno) : "ok", | ||
| 305 | rrset_errno, rrset_errno ? rrsetstrerror(rrset_errno) : "ok"); | ||
| 306 | printf(" => gai_errno %i: %s\n", | ||
| 307 | gai_errno, gai_errno ? gai_strerror(gai_errno) : "ok"); | ||
| 308 | } | ||
| 309 | } | ||
| 310 | |||
| 311 | |||
| 312 | static char * | ||
| 313 | print_host(const struct sockaddr *sa, char *buf, size_t len) | ||
| 314 | { | ||
| 315 | switch (sa->sa_family) { | ||
| 316 | case AF_INET: | ||
| 317 | inet_ntop(AF_INET, &((struct sockaddr_in*)sa)->sin_addr, | ||
| 318 | buf, len); | ||
| 319 | break; | ||
| 320 | case AF_INET6: | ||
| 321 | inet_ntop(AF_INET6, &((struct sockaddr_in6*)sa)->sin6_addr, | ||
| 322 | buf, len); | ||
| 323 | break; | ||
| 324 | default: | ||
| 325 | buf[0] = '\0'; | ||
| 326 | } | ||
| 327 | return (buf); | ||
| 328 | } | ||
| 329 | |||
| 330 | |||
| 331 | char * | ||
| 332 | print_addr(const struct sockaddr *sa, char *buf, size_t len) | ||
| 333 | { | ||
| 334 | char h[256]; | ||
| 335 | |||
| 336 | print_host(sa, h, sizeof h); | ||
| 337 | |||
| 338 | switch (sa->sa_family) { | ||
| 339 | case AF_INET: | ||
| 340 | snprintf(buf, len, "%s:%i", h, | ||
| 341 | ntohs(((struct sockaddr_in*)(sa))->sin_port)); | ||
| 342 | break; | ||
| 343 | case AF_INET6: | ||
| 344 | snprintf(buf, len, "[%s]:%i", h, | ||
| 345 | ntohs(((struct sockaddr_in6*)(sa))->sin6_port)); | ||
| 346 | break; | ||
| 347 | default: | ||
| 348 | snprintf(buf, len, "?"); | ||
| 349 | break; | ||
| 350 | } | ||
| 351 | |||
| 352 | return (buf); | ||
| 353 | } | ||
| 354 | |||
| 355 | void | ||
| 356 | packed_init(struct packed *pack, char *data, size_t len) | ||
| 357 | { | ||
| 358 | pack->data = data; | ||
| 359 | pack->len = len; | ||
| 360 | pack->offset = 0; | ||
| 361 | pack->err = NULL; | ||
| 362 | } | ||
| 363 | |||
| 364 | |||
| 365 | static ssize_t | ||
| 366 | dname_expand(const unsigned char *data, size_t len, size_t offset, | ||
| 367 | size_t *newoffset, char *dst, size_t max) | ||
| 368 | { | ||
| 369 | size_t n, count, end, ptr, start; | ||
| 370 | ssize_t res; | ||
| 371 | |||
| 372 | if (offset >= len) | ||
| 373 | return (-1); | ||
| 374 | |||
| 375 | res = 0; | ||
| 376 | end = start = offset; | ||
| 377 | |||
| 378 | for(; (n = data[offset]); ) { | ||
| 379 | if ((n & 0xc0) == 0xc0) { | ||
| 380 | if (offset + 2 > len) | ||
| 381 | return (-1); | ||
| 382 | ptr = 256 * (n & ~0xc0) + data[offset + 1]; | ||
| 383 | if (ptr >= start) | ||
| 384 | return (-1); | ||
| 385 | if (end < offset + 2) | ||
| 386 | end = offset + 2; | ||
| 387 | offset = ptr; | ||
| 388 | continue; | ||
| 389 | } | ||
| 390 | if (offset + n + 1 > len) | ||
| 391 | return (-1); | ||
| 392 | |||
| 393 | |||
| 394 | /* copy n + at offset+1 */ | ||
| 395 | if (dst != NULL && max != 0) { | ||
| 396 | count = (max < n + 1) ? (max) : (n + 1); | ||
| 397 | memmove(dst, data + offset, count); | ||
| 398 | dst += count; | ||
| 399 | max -= count; | ||
| 400 | } | ||
| 401 | res += n + 1; | ||
| 402 | offset += n + 1; | ||
| 403 | if (end < offset) | ||
| 404 | end = offset; | ||
| 405 | } | ||
| 406 | if (end < offset + 1) | ||
| 407 | end = offset + 1; | ||
| 408 | |||
| 409 | if (dst != NULL && max != 0) | ||
| 410 | dst[0] = 0; | ||
| 411 | if (newoffset) | ||
| 412 | *newoffset = end; | ||
| 413 | return (res + 1); | ||
| 414 | } | ||
| 415 | |||
| 416 | static int | ||
| 417 | unpack_data(struct packed *p, void *data, size_t len) | ||
| 418 | { | ||
| 419 | if (p->err) | ||
| 420 | return (-1); | ||
| 421 | |||
| 422 | if (p->len - p->offset < len) { | ||
| 423 | p->err = "too short"; | ||
| 424 | return (-1); | ||
| 425 | } | ||
| 426 | |||
| 427 | memmove(data, p->data + p->offset, len); | ||
| 428 | p->offset += len; | ||
| 429 | |||
| 430 | return (0); | ||
| 431 | } | ||
| 432 | |||
| 433 | static int | ||
| 434 | unpack_u16(struct packed *p, uint16_t *u16) | ||
| 435 | { | ||
| 436 | if (unpack_data(p, u16, 2) == -1) | ||
| 437 | return (-1); | ||
| 438 | |||
| 439 | *u16 = ntohs(*u16); | ||
| 440 | |||
| 441 | return (0); | ||
| 442 | } | ||
| 443 | |||
| 444 | static int | ||
| 445 | unpack_u32(struct packed *p, uint32_t *u32) | ||
| 446 | { | ||
| 447 | if (unpack_data(p, u32, 4) == -1) | ||
| 448 | return (-1); | ||
| 449 | |||
| 450 | *u32 = ntohl(*u32); | ||
| 451 | |||
| 452 | return (0); | ||
| 453 | } | ||
| 454 | |||
| 455 | static int | ||
| 456 | unpack_inaddr(struct packed *p, struct in_addr *a) | ||
| 457 | { | ||
| 458 | return (unpack_data(p, a, 4)); | ||
| 459 | } | ||
| 460 | |||
| 461 | static int | ||
| 462 | unpack_in6addr(struct packed *p, struct in6_addr *a6) | ||
| 463 | { | ||
| 464 | return (unpack_data(p, a6, 16)); | ||
| 465 | } | ||
| 466 | |||
| 467 | static int | ||
| 468 | unpack_dname(struct packed *p, char *dst, size_t max) | ||
| 469 | { | ||
| 470 | ssize_t e; | ||
| 471 | |||
| 472 | if (p->err) | ||
| 473 | return (-1); | ||
| 474 | |||
| 475 | e = dname_expand(p->data, p->len, p->offset, &p->offset, dst, max); | ||
| 476 | if (e == -1) { | ||
| 477 | p->err = "bad domain name"; | ||
| 478 | return (-1); | ||
| 479 | } | ||
| 480 | if (e < 0 || e > MAXDNAME) { | ||
| 481 | p->err = "domain name too long"; | ||
| 482 | return (-1); | ||
| 483 | } | ||
| 484 | |||
| 485 | return (0); | ||
| 486 | } | ||
| 487 | |||
| 488 | int | ||
| 489 | unpack_header(struct packed *p, struct header *h) | ||
| 490 | { | ||
| 491 | if (unpack_data(p, h, HFIXEDSZ) == -1) | ||
| 492 | return (-1); | ||
| 493 | |||
| 494 | h->flags = ntohs(h->flags); | ||
| 495 | h->qdcount = ntohs(h->qdcount); | ||
| 496 | h->ancount = ntohs(h->ancount); | ||
| 497 | h->nscount = ntohs(h->nscount); | ||
| 498 | h->arcount = ntohs(h->arcount); | ||
| 499 | |||
| 500 | return (0); | ||
| 501 | } | ||
| 502 | |||
| 503 | int | ||
| 504 | unpack_query(struct packed *p, struct query *q) | ||
| 505 | { | ||
| 506 | unpack_dname(p, q->q_dname, sizeof(q->q_dname)); | ||
| 507 | unpack_u16(p, &q->q_type); | ||
| 508 | unpack_u16(p, &q->q_class); | ||
| 509 | |||
| 510 | return (p->err) ? (-1) : (0); | ||
| 511 | } | ||
| 512 | |||
| 513 | int | ||
| 514 | unpack_rr(struct packed *p, struct rr *rr) | ||
| 515 | { | ||
| 516 | uint16_t rdlen; | ||
| 517 | size_t save_offset; | ||
| 518 | |||
| 519 | unpack_dname(p, rr->rr_dname, sizeof(rr->rr_dname)); | ||
| 520 | unpack_u16(p, &rr->rr_type); | ||
| 521 | unpack_u16(p, &rr->rr_class); | ||
| 522 | unpack_u32(p, &rr->rr_ttl); | ||
| 523 | unpack_u16(p, &rdlen); | ||
| 524 | |||
| 525 | if (p->err) | ||
| 526 | return (-1); | ||
| 527 | |||
| 528 | if (p->len - p->offset < rdlen) { | ||
| 529 | p->err = "too short"; | ||
| 530 | return (-1); | ||
| 531 | } | ||
| 532 | |||
| 533 | save_offset = p->offset; | ||
| 534 | |||
| 535 | switch(rr->rr_type) { | ||
| 536 | |||
| 537 | case T_CNAME: | ||
| 538 | unpack_dname(p, rr->rr.cname.cname, sizeof(rr->rr.cname.cname)); | ||
| 539 | break; | ||
| 540 | |||
| 541 | case T_MX: | ||
| 542 | unpack_u16(p, &rr->rr.mx.preference); | ||
| 543 | unpack_dname(p, rr->rr.mx.exchange, sizeof(rr->rr.mx.exchange)); | ||
| 544 | break; | ||
| 545 | |||
| 546 | case T_NS: | ||
| 547 | unpack_dname(p, rr->rr.ns.nsname, sizeof(rr->rr.ns.nsname)); | ||
| 548 | break; | ||
| 549 | |||
| 550 | case T_PTR: | ||
| 551 | unpack_dname(p, rr->rr.ptr.ptrname, sizeof(rr->rr.ptr.ptrname)); | ||
| 552 | break; | ||
| 553 | |||
| 554 | case T_SOA: | ||
| 555 | unpack_dname(p, rr->rr.soa.mname, sizeof(rr->rr.soa.mname)); | ||
| 556 | unpack_dname(p, rr->rr.soa.rname, sizeof(rr->rr.soa.rname)); | ||
| 557 | unpack_u32(p, &rr->rr.soa.serial); | ||
| 558 | unpack_u32(p, &rr->rr.soa.refresh); | ||
| 559 | unpack_u32(p, &rr->rr.soa.retry); | ||
| 560 | unpack_u32(p, &rr->rr.soa.expire); | ||
| 561 | unpack_u32(p, &rr->rr.soa.minimum); | ||
| 562 | break; | ||
| 563 | |||
| 564 | case T_A: | ||
| 565 | if (rr->rr_class != C_IN) | ||
| 566 | goto other; | ||
| 567 | unpack_inaddr(p, &rr->rr.in_a.addr); | ||
| 568 | break; | ||
| 569 | |||
| 570 | case T_AAAA: | ||
| 571 | if (rr->rr_class != C_IN) | ||
| 572 | goto other; | ||
| 573 | unpack_in6addr(p, &rr->rr.in_aaaa.addr6); | ||
| 574 | break; | ||
| 575 | default: | ||
| 576 | other: | ||
| 577 | rr->rr.other.rdata = p->data + p->offset; | ||
| 578 | rr->rr.other.rdlen = rdlen; | ||
| 579 | p->offset += rdlen; | ||
| 580 | } | ||
| 581 | |||
| 582 | if (p->err) | ||
| 583 | return (-1); | ||
| 584 | |||
| 585 | /* make sure that the advertised rdlen is really ok */ | ||
| 586 | if (p->offset - save_offset != rdlen) | ||
| 587 | p->err = "bad dlen"; | ||
| 588 | |||
| 589 | return (p->err) ? (-1) : (0); | ||
| 590 | } | ||
| 591 | |||
| 592 | int | ||
| 593 | sockaddr_from_str(struct sockaddr *sa, int family, const char *str) | ||
| 594 | { | ||
| 595 | struct in_addr ina; | ||
| 596 | struct in6_addr in6a; | ||
| 597 | struct sockaddr_in *sin; | ||
| 598 | struct sockaddr_in6 *sin6; | ||
| 599 | |||
| 600 | switch (family) { | ||
| 601 | case PF_UNSPEC: | ||
| 602 | if (sockaddr_from_str(sa, PF_INET, str) == 0) | ||
| 603 | return (0); | ||
| 604 | return sockaddr_from_str(sa, PF_INET6, str); | ||
| 605 | |||
| 606 | case PF_INET: | ||
| 607 | if (inet_pton(PF_INET, str, &ina) != 1) | ||
| 608 | return (-1); | ||
| 609 | |||
| 610 | sin = (struct sockaddr_in *)sa; | ||
| 611 | memset(sin, 0, sizeof *sin); | ||
| 612 | sin->sin_len = sizeof(struct sockaddr_in); | ||
| 613 | sin->sin_family = PF_INET; | ||
| 614 | sin->sin_addr.s_addr = ina.s_addr; | ||
| 615 | return (0); | ||
| 616 | |||
| 617 | case PF_INET6: | ||
| 618 | if (inet_pton(PF_INET6, str, &in6a) != 1) | ||
| 619 | return (-1); | ||
| 620 | |||
| 621 | sin6 = (struct sockaddr_in6 *)sa; | ||
| 622 | memset(sin6, 0, sizeof *sin6); | ||
| 623 | sin6->sin6_len = sizeof(struct sockaddr_in6); | ||
| 624 | sin6->sin6_family = PF_INET6; | ||
| 625 | sin6->sin6_addr = in6a; | ||
| 626 | return (0); | ||
| 627 | |||
| 628 | default: | ||
| 629 | break; | ||
| 630 | } | ||
| 631 | |||
| 632 | return (-1); | ||
| 633 | } | ||
diff --git a/src/regress/lib/libc/asr/bin/common.h b/src/regress/lib/libc/asr/bin/common.h new file mode 100644 index 0000000000..87df4ae4a2 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/common.h | |||
| @@ -0,0 +1,136 @@ | |||
| 1 | /* $OpenBSD: common.h,v 1.1.1.1 2012/07/13 17:49:53 eric Exp $ */ | ||
| 2 | /* | ||
| 3 | * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> | ||
| 4 | * | ||
| 5 | * Permission to use, copy, modify, and distribute this software for any | ||
| 6 | * purpose with or without fee is hereby granted, provided that the above | ||
| 7 | * copyright notice and this permission notice appear in all copies. | ||
| 8 | * | ||
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 16 | */ | ||
| 17 | #include <sys/types.h> | ||
| 18 | #include <sys/socket.h> | ||
| 19 | |||
| 20 | #include <arpa/nameser.h> | ||
| 21 | |||
| 22 | #include <netinet/in.h> | ||
| 23 | |||
| 24 | #include <netdb.h> | ||
| 25 | |||
| 26 | |||
| 27 | #define unpack_rr __unpack_rr | ||
| 28 | #define unpack_header __unpack_header | ||
| 29 | #define packed_init __packed_init | ||
| 30 | #define unpack_query __unpack_query | ||
| 31 | #define sockaddr_from_str __sockaddr_from_str | ||
| 32 | #define print_addr __print_addr | ||
| 33 | |||
| 34 | extern int long_err; | ||
| 35 | extern int gai_errno; | ||
| 36 | extern int rrset_errno; | ||
| 37 | |||
| 38 | const char *classtostr(uint16_t); | ||
| 39 | const char *typetostr(uint16_t); | ||
| 40 | const char *rcodetostr(uint16_t); | ||
| 41 | |||
| 42 | uint16_t strtotype(const char*); | ||
| 43 | uint16_t strtoclass(const char*); | ||
| 44 | |||
| 45 | void print_rrsetinfo(struct rrsetinfo *); | ||
| 46 | void print_addrinfo(struct addrinfo *); | ||
| 47 | void print_errors(void); | ||
| 48 | void print_hostent(struct hostent *); | ||
| 49 | void print_netent(struct netent *); | ||
| 50 | |||
| 51 | int sockaddr_from_str(struct sockaddr *, int, const char *); | ||
| 52 | int addr_from_str(char *, int *, int *, const char *); | ||
| 53 | char* gethostarg(char *); | ||
| 54 | |||
| 55 | #define QR_MASK (0x1 << 15) | ||
| 56 | #define OPCODE_MASK (0xf << 11) | ||
| 57 | #define AA_MASK (0x1 << 10) | ||
| 58 | #define TC_MASK (0x1 << 9) | ||
| 59 | #define RD_MASK (0x1 << 8) | ||
| 60 | #define RA_MASK (0x1 << 7) | ||
| 61 | #define Z_MASK (0x7 << 4) | ||
| 62 | #define RCODE_MASK (0xf) | ||
| 63 | |||
| 64 | #define OPCODE(v) ((v) & OPCODE_MASK) | ||
| 65 | #define RCODE(v) ((v) & RCODE_MASK) | ||
| 66 | |||
| 67 | |||
| 68 | struct packed { | ||
| 69 | char *data; | ||
| 70 | size_t len; | ||
| 71 | size_t offset; | ||
| 72 | const char *err; | ||
| 73 | }; | ||
| 74 | |||
| 75 | struct header { | ||
| 76 | uint16_t id; | ||
| 77 | uint16_t flags; | ||
| 78 | uint16_t qdcount; | ||
| 79 | uint16_t ancount; | ||
| 80 | uint16_t nscount; | ||
| 81 | uint16_t arcount; | ||
| 82 | }; | ||
| 83 | |||
| 84 | struct query { | ||
| 85 | char q_dname[MAXDNAME]; | ||
| 86 | uint16_t q_type; | ||
| 87 | uint16_t q_class; | ||
| 88 | }; | ||
| 89 | |||
| 90 | struct rr { | ||
| 91 | char rr_dname[MAXDNAME]; | ||
| 92 | uint16_t rr_type; | ||
| 93 | uint16_t rr_class; | ||
| 94 | uint32_t rr_ttl; | ||
| 95 | union { | ||
| 96 | struct { | ||
| 97 | char cname[MAXDNAME]; | ||
| 98 | } cname; | ||
| 99 | struct { | ||
| 100 | uint16_t preference; | ||
| 101 | char exchange[MAXDNAME]; | ||
| 102 | } mx; | ||
| 103 | struct { | ||
| 104 | char nsname[MAXDNAME]; | ||
| 105 | } ns; | ||
| 106 | struct { | ||
| 107 | char ptrname[MAXDNAME]; | ||
| 108 | } ptr; | ||
| 109 | struct { | ||
| 110 | char mname[MAXDNAME]; | ||
| 111 | char rname[MAXDNAME]; | ||
| 112 | uint32_t serial; | ||
| 113 | uint32_t refresh; | ||
| 114 | uint32_t retry; | ||
| 115 | uint32_t expire; | ||
| 116 | uint32_t minimum; | ||
| 117 | } soa; | ||
| 118 | struct { | ||
| 119 | struct in_addr addr; | ||
| 120 | } in_a; | ||
| 121 | struct { | ||
| 122 | struct in6_addr addr6; | ||
| 123 | } in_aaaa; | ||
| 124 | struct { | ||
| 125 | uint16_t rdlen; | ||
| 126 | const void *rdata; | ||
| 127 | } other; | ||
| 128 | } rr; | ||
| 129 | }; | ||
| 130 | |||
| 131 | void packed_init(struct packed*, char*, size_t); | ||
| 132 | int pack_header(struct packed*, const struct header*); | ||
| 133 | int pack_query(struct packed*, uint16_t, uint16_t, const char*); | ||
| 134 | int unpack_header(struct packed*, struct header*); | ||
| 135 | int unpack_query(struct packed*, struct query*); | ||
| 136 | int unpack_rr(struct packed*, struct rr*); | ||
diff --git a/src/regress/lib/libc/asr/bin/getaddrinfo.c b/src/regress/lib/libc/asr/bin/getaddrinfo.c new file mode 100644 index 0000000000..8c4abf361e --- /dev/null +++ b/src/regress/lib/libc/asr/bin/getaddrinfo.c | |||
| @@ -0,0 +1,131 @@ | |||
| 1 | /* $OpenBSD: getaddrinfo.c,v 1.1.1.1 2012/07/13 17:49:54 eric Exp $ */ | ||
| 2 | /* | ||
| 3 | * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> | ||
| 4 | * | ||
| 5 | * Permission to use, copy, modify, and distribute this software for any | ||
| 6 | * purpose with or without fee is hereby granted, provided that the above | ||
| 7 | * copyright notice and this permission notice appear in all copies. | ||
| 8 | * | ||
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 16 | */ | ||
| 17 | #include <sys/types.h> | ||
| 18 | #include <sys/socket.h> | ||
| 19 | |||
| 20 | #include <netinet/in.h> | ||
| 21 | |||
| 22 | #include <err.h> | ||
| 23 | #include <errno.h> | ||
| 24 | #include <getopt.h> | ||
| 25 | #include <netdb.h> | ||
| 26 | #include <stdio.h> | ||
| 27 | #include <stdlib.h> | ||
| 28 | #include <string.h> | ||
| 29 | |||
| 30 | #include "common.h" | ||
| 31 | |||
| 32 | static void | ||
| 33 | usage(void) | ||
| 34 | { | ||
| 35 | extern const char * __progname; | ||
| 36 | |||
| 37 | fprintf(stderr, "usage: %s [-CHSPe] [-f family] [-p proto] " | ||
| 38 | "[-s servname]\n [-t socktype] <host...>\n", __progname); | ||
| 39 | exit(1); | ||
| 40 | } | ||
| 41 | |||
| 42 | int | ||
| 43 | main(int argc, char *argv[]) | ||
| 44 | { | ||
| 45 | struct addrinfo *ai, *res, hints; | ||
| 46 | char *servname = NULL, *host; | ||
| 47 | int i, ch; | ||
| 48 | |||
| 49 | memset(&hints, 0, sizeof hints); | ||
| 50 | |||
| 51 | while((ch = getopt(argc, argv, "CFHPSef:p:s:t:")) != -1) { | ||
| 52 | switch(ch) { | ||
| 53 | case 'C': | ||
| 54 | hints.ai_flags |= AI_CANONNAME; | ||
| 55 | break; | ||
| 56 | case 'F': | ||
| 57 | hints.ai_flags |= AI_FQDN; | ||
| 58 | break; | ||
| 59 | case 'H': | ||
| 60 | hints.ai_flags |= AI_NUMERICHOST; | ||
| 61 | break; | ||
| 62 | case 'P': | ||
| 63 | hints.ai_flags |= AI_PASSIVE; | ||
| 64 | break; | ||
| 65 | case 'S': | ||
| 66 | hints.ai_flags |= AI_NUMERICSERV; | ||
| 67 | break; | ||
| 68 | case 'e': | ||
| 69 | long_err += 1; | ||
| 70 | break; | ||
| 71 | case 'f': | ||
| 72 | if (!strcmp(optarg, "inet")) | ||
| 73 | hints.ai_family = AF_INET; | ||
| 74 | else if (!strcmp(optarg, "inet6")) | ||
| 75 | hints.ai_family = AF_INET6; | ||
| 76 | else | ||
| 77 | usage(); | ||
| 78 | break; | ||
| 79 | case 'p': | ||
| 80 | if (!strcmp(optarg, "udp")) | ||
| 81 | hints.ai_protocol = IPPROTO_UDP; | ||
| 82 | else if (!strcmp(optarg, "tcp")) | ||
| 83 | hints.ai_protocol = IPPROTO_TCP; | ||
| 84 | else | ||
| 85 | usage(); | ||
| 86 | break; | ||
| 87 | case 's': | ||
| 88 | servname = optarg; | ||
| 89 | break; | ||
| 90 | case 't': | ||
| 91 | if (!strcmp(optarg, "stream")) | ||
| 92 | hints.ai_socktype = SOCK_STREAM; | ||
| 93 | else if (!strcmp(optarg, "dgram")) | ||
| 94 | hints.ai_socktype = SOCK_DGRAM; | ||
| 95 | else if (!strcmp(optarg, "raw")) | ||
| 96 | hints.ai_socktype = SOCK_RAW; | ||
| 97 | else | ||
| 98 | usage(); | ||
| 99 | break; | ||
| 100 | default: | ||
| 101 | usage(); | ||
| 102 | /* NOTREACHED */ | ||
| 103 | } | ||
| 104 | } | ||
| 105 | argc -= optind; | ||
| 106 | argv += optind; | ||
| 107 | |||
| 108 | for(i = 0; i < argc; i++) { | ||
| 109 | |||
| 110 | if (i) | ||
| 111 | printf("\n"); | ||
| 112 | printf("===> \"%s\"\n", argv[i]); | ||
| 113 | host = gethostarg(argv[i]); | ||
| 114 | |||
| 115 | errno = 0; | ||
| 116 | h_errno = 0; | ||
| 117 | gai_errno = 0; | ||
| 118 | rrset_errno = 0; | ||
| 119 | |||
| 120 | gai_errno = getaddrinfo(host, servname, &hints, &ai); | ||
| 121 | |||
| 122 | print_errors(); | ||
| 123 | if (gai_errno == 0) { | ||
| 124 | for (res = ai; res; res = res->ai_next) | ||
| 125 | print_addrinfo(res); | ||
| 126 | freeaddrinfo(ai); | ||
| 127 | } | ||
| 128 | } | ||
| 129 | |||
| 130 | return (0); | ||
| 131 | } | ||
diff --git a/src/regress/lib/libc/asr/bin/getaddrinfo/Makefile b/src/regress/lib/libc/asr/bin/getaddrinfo/Makefile new file mode 100644 index 0000000000..ec2f104ec7 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/getaddrinfo/Makefile | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1.1.1 2012/07/13 17:49:54 eric Exp $ | ||
| 2 | |||
| 3 | .PATH: ${.CURDIR}/.. | ||
| 4 | |||
| 5 | PROG= getaddrinfo | ||
| 6 | SRCS+= getaddrinfo.c | ||
| 7 | |||
| 8 | .include <bsd.prog.mk> | ||
diff --git a/src/regress/lib/libc/asr/bin/gethostnamadr.c b/src/regress/lib/libc/asr/bin/gethostnamadr.c new file mode 100644 index 0000000000..b1b3e331a7 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/gethostnamadr.c | |||
| @@ -0,0 +1,113 @@ | |||
| 1 | /* $OpenBSD: gethostnamadr.c,v 1.2 2012/07/29 19:51:36 eric Exp $ */ | ||
| 2 | /* | ||
| 3 | * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> | ||
| 4 | * | ||
| 5 | * Permission to use, copy, modify, and distribute this software for any | ||
| 6 | * purpose with or without fee is hereby granted, provided that the above | ||
| 7 | * copyright notice and this permission notice appear in all copies. | ||
| 8 | * | ||
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 16 | */ | ||
| 17 | #include <sys/types.h> | ||
| 18 | #include <sys/socket.h> | ||
| 19 | #include <netinet/in.h> | ||
| 20 | #include <arpa/inet.h> | ||
| 21 | |||
| 22 | #include <err.h> | ||
| 23 | #include <errno.h> | ||
| 24 | #include <getopt.h> | ||
| 25 | #include <stdio.h> | ||
| 26 | #include <stdlib.h> | ||
| 27 | #include <string.h> | ||
| 28 | |||
| 29 | #include "common.h" | ||
| 30 | |||
| 31 | static void | ||
| 32 | usage(void) | ||
| 33 | { | ||
| 34 | extern const char * __progname; | ||
| 35 | |||
| 36 | fprintf(stderr, "usage: %s [-46e] <host...>\n", __progname); | ||
| 37 | exit(1); | ||
| 38 | } | ||
| 39 | |||
| 40 | int | ||
| 41 | main(int argc, char *argv[]) | ||
| 42 | { | ||
| 43 | int i, ch, aflag, family = AF_INET; | ||
| 44 | struct hostent *h; | ||
| 45 | char *host; | ||
| 46 | char addr[16]; | ||
| 47 | int addrlen; | ||
| 48 | |||
| 49 | aflag = 0; | ||
| 50 | while((ch = getopt(argc, argv, "46ae")) != -1) { | ||
| 51 | switch(ch) { | ||
| 52 | case '4': | ||
| 53 | family = AF_INET; | ||
| 54 | break; | ||
| 55 | case '6': | ||
| 56 | family = AF_INET6; | ||
| 57 | break; | ||
| 58 | case 'a': | ||
| 59 | aflag = 1; | ||
| 60 | break; | ||
| 61 | case 'e': | ||
| 62 | long_err += 1; | ||
| 63 | break; | ||
| 64 | default: | ||
| 65 | usage(); | ||
| 66 | /* NOTREACHED */ | ||
| 67 | } | ||
| 68 | } | ||
| 69 | argc -= optind; | ||
| 70 | argv += optind; | ||
| 71 | |||
| 72 | for(i = 0; i < argc; i++) { | ||
| 73 | |||
| 74 | if (i) | ||
| 75 | printf("\n"); | ||
| 76 | printf("===> \"%s\"\n", argv[i]); | ||
| 77 | host = gethostarg(argv[i]); | ||
| 78 | |||
| 79 | if (aflag && addr_from_str(addr, &family, &addrlen, host) == -1) | ||
| 80 | errx(1, "bad address"); | ||
| 81 | |||
| 82 | errno = 0; | ||
| 83 | h_errno = 0; | ||
| 84 | gai_errno = 0; | ||
| 85 | rrset_errno = 0; | ||
| 86 | |||
| 87 | if (aflag == 0) | ||
| 88 | h = gethostbyname2(host, family); | ||
| 89 | else | ||
| 90 | h = gethostbyaddr(addr, addrlen, family); | ||
| 91 | if (h) | ||
| 92 | print_hostent(h); | ||
| 93 | print_errors(); | ||
| 94 | } | ||
| 95 | |||
| 96 | return (0); | ||
| 97 | } | ||
| 98 | |||
| 99 | int | ||
| 100 | addr_from_str(char *addr, int *family, int *len, const char *src) | ||
| 101 | { | ||
| 102 | if (inet_pton(AF_INET6, src, addr) == 1) { | ||
| 103 | *family = AF_INET6; | ||
| 104 | *len = 16; | ||
| 105 | return (0); | ||
| 106 | } | ||
| 107 | if (inet_pton(AF_INET, src, addr) == 1) { | ||
| 108 | *family = AF_INET; | ||
| 109 | *len = 4; | ||
| 110 | return (0); | ||
| 111 | } | ||
| 112 | return (-1); | ||
| 113 | } | ||
diff --git a/src/regress/lib/libc/asr/bin/gethostnamadr/Makefile b/src/regress/lib/libc/asr/bin/gethostnamadr/Makefile new file mode 100644 index 0000000000..84906ffbbd --- /dev/null +++ b/src/regress/lib/libc/asr/bin/gethostnamadr/Makefile | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1.1.1 2012/07/13 17:49:54 eric Exp $ | ||
| 2 | |||
| 3 | .PATH: ${.CURDIR}/.. | ||
| 4 | |||
| 5 | PROG= gethostnamadr | ||
| 6 | SRCS+= gethostnamadr.c | ||
| 7 | |||
| 8 | .include <bsd.prog.mk> | ||
diff --git a/src/regress/lib/libc/asr/bin/getnameinfo.c b/src/regress/lib/libc/asr/bin/getnameinfo.c new file mode 100644 index 0000000000..8702937a47 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/getnameinfo.c | |||
| @@ -0,0 +1,112 @@ | |||
| 1 | /* $OpenBSD: getnameinfo.c,v 1.1.1.1 2012/07/13 17:49:54 eric Exp $ */ | ||
| 2 | /* | ||
| 3 | * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> | ||
| 4 | * | ||
| 5 | * Permission to use, copy, modify, and distribute this software for any | ||
| 6 | * purpose with or without fee is hereby granted, provided that the above | ||
| 7 | * copyright notice and this permission notice appear in all copies. | ||
| 8 | * | ||
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #include <err.h> | ||
| 19 | #include <errno.h> | ||
| 20 | #include <getopt.h> | ||
| 21 | #include <stdio.h> | ||
| 22 | #include <stdlib.h> | ||
| 23 | #include <string.h> | ||
| 24 | |||
| 25 | #include "common.h" | ||
| 26 | |||
| 27 | static void | ||
| 28 | usage(void) | ||
| 29 | { | ||
| 30 | extern const char * __progname; | ||
| 31 | |||
| 32 | fprintf(stderr, "usage: %s [-DFHNSe] [-p portno] <addr...>\n", __progname); | ||
| 33 | exit(1); | ||
| 34 | } | ||
| 35 | |||
| 36 | int | ||
| 37 | main(int argc, char *argv[]) | ||
| 38 | { | ||
| 39 | char serv[1024]; | ||
| 40 | char host[1024]; | ||
| 41 | const char *e; | ||
| 42 | int i, ch, flags = 0, port = 0; | ||
| 43 | struct sockaddr_storage ss; | ||
| 44 | struct sockaddr *sa; | ||
| 45 | |||
| 46 | sa = (struct sockaddr*)&ss; | ||
| 47 | |||
| 48 | while((ch = getopt(argc, argv, "DFHNSaep:")) != -1) { | ||
| 49 | switch(ch) { | ||
| 50 | case 'D': | ||
| 51 | flags |= NI_DGRAM; | ||
| 52 | break; | ||
| 53 | case 'F': | ||
| 54 | flags |= NI_NOFQDN; | ||
| 55 | break; | ||
| 56 | case 'H': | ||
| 57 | flags |= NI_NUMERICHOST; | ||
| 58 | break; | ||
| 59 | case 'N': | ||
| 60 | flags |= NI_NAMEREQD; | ||
| 61 | break; | ||
| 62 | case 'S': | ||
| 63 | flags |= NI_NUMERICSERV; | ||
| 64 | break; | ||
| 65 | case 'e': | ||
| 66 | long_err += 1; | ||
| 67 | break; | ||
| 68 | case 'p': | ||
| 69 | port = strtonum(optarg, 0, 65535, &e); | ||
| 70 | if (e) | ||
| 71 | usage(); | ||
| 72 | break; | ||
| 73 | default: | ||
| 74 | usage(); | ||
| 75 | /* NOTREACHED */ | ||
| 76 | } | ||
| 77 | } | ||
| 78 | argc -= optind; | ||
| 79 | argv += optind; | ||
| 80 | |||
| 81 | for(i = 0; i < argc; i++) { | ||
| 82 | |||
| 83 | if (i) | ||
| 84 | printf("\n"); | ||
| 85 | printf("===> \"%s\"\n", argv[i]); | ||
| 86 | |||
| 87 | if (sockaddr_from_str(sa, AF_UNSPEC, argv[i]) == -1) { | ||
| 88 | printf(" => invalid address\n"); | ||
| 89 | continue; | ||
| 90 | } | ||
| 91 | |||
| 92 | if (sa->sa_family == PF_INET) | ||
| 93 | ((struct sockaddr_in *)sa)->sin_port = htons(port); | ||
| 94 | else if (sa->sa_family == PF_INET6) | ||
| 95 | ((struct sockaddr_in6 *)sa)->sin6_port = htons(port); | ||
| 96 | |||
| 97 | errno = 0; | ||
| 98 | h_errno = 0; | ||
| 99 | gai_errno = 0; | ||
| 100 | rrset_errno = 0; | ||
| 101 | |||
| 102 | gai_errno = getnameinfo(sa, sa->sa_len, host, sizeof host, serv, | ||
| 103 | sizeof serv, flags); | ||
| 104 | |||
| 105 | if (gai_errno == 0) | ||
| 106 | printf(" %s:%s\n", host, serv); | ||
| 107 | print_errors(); | ||
| 108 | |||
| 109 | } | ||
| 110 | |||
| 111 | return (0); | ||
| 112 | } | ||
diff --git a/src/regress/lib/libc/asr/bin/getnameinfo/Makefile b/src/regress/lib/libc/asr/bin/getnameinfo/Makefile new file mode 100644 index 0000000000..4927ee9486 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/getnameinfo/Makefile | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1.1.1 2012/07/13 17:49:54 eric Exp $ | ||
| 2 | |||
| 3 | .PATH: ${.CURDIR}/.. | ||
| 4 | |||
| 5 | PROG= getnameinfo | ||
| 6 | SRCS+= getnameinfo.c | ||
| 7 | |||
| 8 | .include <bsd.prog.mk> | ||
diff --git a/src/regress/lib/libc/asr/bin/getnetnamadr.c b/src/regress/lib/libc/asr/bin/getnetnamadr.c new file mode 100644 index 0000000000..4b7414264b --- /dev/null +++ b/src/regress/lib/libc/asr/bin/getnetnamadr.c | |||
| @@ -0,0 +1,85 @@ | |||
| 1 | /* $OpenBSD: getnetnamadr.c,v 1.1.1.1 2012/07/13 17:49:54 eric Exp $ */ | ||
| 2 | /* | ||
| 3 | * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> | ||
| 4 | * | ||
| 5 | * Permission to use, copy, modify, and distribute this software for any | ||
| 6 | * purpose with or without fee is hereby granted, provided that the above | ||
| 7 | * copyright notice and this permission notice appear in all copies. | ||
| 8 | * | ||
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 16 | */ | ||
| 17 | #include <sys/types.h> | ||
| 18 | #include <sys/socket.h> | ||
| 19 | #include <netinet/in.h> | ||
| 20 | #include <arpa/inet.h> | ||
| 21 | |||
| 22 | #include <err.h> | ||
| 23 | #include <errno.h> | ||
| 24 | #include <getopt.h> | ||
| 25 | #include <stdio.h> | ||
| 26 | #include <stdlib.h> | ||
| 27 | #include <string.h> | ||
| 28 | |||
| 29 | #include "common.h" | ||
| 30 | |||
| 31 | static void | ||
| 32 | usage(void) | ||
| 33 | { | ||
| 34 | extern const char * __progname; | ||
| 35 | |||
| 36 | fprintf(stderr, "usage: %s [-aen] [host...]\n", __progname); | ||
| 37 | exit(1); | ||
| 38 | } | ||
| 39 | |||
| 40 | int | ||
| 41 | main(int argc, char *argv[]) | ||
| 42 | { | ||
| 43 | int i, ch, nflag = 0; | ||
| 44 | struct netent *n; | ||
| 45 | char *host; | ||
| 46 | |||
| 47 | while((ch = getopt(argc, argv, "en")) != -1) { | ||
| 48 | switch(ch) { | ||
| 49 | case 'e': | ||
| 50 | long_err += 1; | ||
| 51 | break; | ||
| 52 | case 'n': | ||
| 53 | nflag = 1; | ||
| 54 | break; | ||
| 55 | default: | ||
| 56 | usage(); | ||
| 57 | /* NOTREACHED */ | ||
| 58 | } | ||
| 59 | } | ||
| 60 | argc -= optind; | ||
| 61 | argv += optind; | ||
| 62 | |||
| 63 | for(i = 0; i < argc; i++) { | ||
| 64 | |||
| 65 | if (i) | ||
| 66 | printf("\n"); | ||
| 67 | printf("===> \"%s\"\n", argv[i]); | ||
| 68 | host = gethostarg(argv[i]); | ||
| 69 | |||
| 70 | errno = 0; | ||
| 71 | h_errno = 0; | ||
| 72 | gai_errno = 0; | ||
| 73 | rrset_errno = 0; | ||
| 74 | |||
| 75 | if (nflag) | ||
| 76 | n = getnetbyname(host); | ||
| 77 | else | ||
| 78 | n = getnetbyaddr(inet_network(host), AF_INET); | ||
| 79 | if (n) | ||
| 80 | print_netent(n); | ||
| 81 | print_errors(); | ||
| 82 | } | ||
| 83 | |||
| 84 | return (0); | ||
| 85 | } | ||
diff --git a/src/regress/lib/libc/asr/bin/getnetnamadr/Makefile b/src/regress/lib/libc/asr/bin/getnetnamadr/Makefile new file mode 100644 index 0000000000..521bf8eb7e --- /dev/null +++ b/src/regress/lib/libc/asr/bin/getnetnamadr/Makefile | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1.1.1 2012/07/13 17:49:54 eric Exp $ | ||
| 2 | |||
| 3 | .PATH: ${.CURDIR}/.. | ||
| 4 | |||
| 5 | PROG= getnetnamadr | ||
| 6 | SRCS+= getnetnamadr.c | ||
| 7 | |||
| 8 | .include <bsd.prog.mk> | ||
diff --git a/src/regress/lib/libc/asr/bin/getrrsetbyname.c b/src/regress/lib/libc/asr/bin/getrrsetbyname.c new file mode 100644 index 0000000000..4a5aa57209 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/getrrsetbyname.c | |||
| @@ -0,0 +1,88 @@ | |||
| 1 | /* $OpenBSD: getrrsetbyname.c,v 1.1.1.1 2012/07/13 17:49:54 eric Exp $ */ | ||
| 2 | /* | ||
| 3 | * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> | ||
| 4 | * | ||
| 5 | * Permission to use, copy, modify, and distribute this software for any | ||
| 6 | * purpose with or without fee is hereby granted, provided that the above | ||
| 7 | * copyright notice and this permission notice appear in all copies. | ||
| 8 | * | ||
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #include <sys/types.h> | ||
| 19 | |||
| 20 | #include <netinet/in.h> | ||
| 21 | #include <arpa/nameser.h> | ||
| 22 | |||
| 23 | #include <err.h> | ||
| 24 | #include <errno.h> | ||
| 25 | #include <getopt.h> | ||
| 26 | #include <resolv.h> | ||
| 27 | #include <stdio.h> | ||
| 28 | #include <stdlib.h> | ||
| 29 | #include <string.h> | ||
| 30 | |||
| 31 | #include "common.h" | ||
| 32 | |||
| 33 | static void | ||
| 34 | usage(void) | ||
| 35 | { | ||
| 36 | extern const char * __progname; | ||
| 37 | |||
| 38 | fprintf(stderr, "usage: %s [-e] [-t type] [host...]\n", | ||
| 39 | __progname); | ||
| 40 | exit(1); | ||
| 41 | } | ||
| 42 | |||
| 43 | int | ||
| 44 | main(int argc, char *argv[]) | ||
| 45 | { | ||
| 46 | int ch, i; | ||
| 47 | uint16_t type = T_A; | ||
| 48 | char *host; | ||
| 49 | struct rrsetinfo *rrset; | ||
| 50 | |||
| 51 | while((ch = getopt(argc, argv, "et:")) != -1) { | ||
| 52 | switch(ch) { | ||
| 53 | case 'e': | ||
| 54 | long_err += 1; | ||
| 55 | break; | ||
| 56 | case 't': | ||
| 57 | if ((type = strtotype(optarg)) == 0) | ||
| 58 | usage(); | ||
| 59 | break; | ||
| 60 | default: | ||
| 61 | usage(); | ||
| 62 | /* NOTREACHED */ | ||
| 63 | } | ||
| 64 | } | ||
| 65 | argc -= optind; | ||
| 66 | argv += optind; | ||
| 67 | |||
| 68 | for (i = 0; i < argc; i++) { | ||
| 69 | |||
| 70 | if (i) | ||
| 71 | printf("\n"); | ||
| 72 | printf("===> \"%s\"\n", argv[i]); | ||
| 73 | host = gethostarg(argv[i]); | ||
| 74 | |||
| 75 | errno = 0; | ||
| 76 | h_errno = 0; | ||
| 77 | gai_errno = 0; | ||
| 78 | rrset_errno = 0; | ||
| 79 | |||
| 80 | rrset_errno = getrrsetbyname(host, C_IN, type, 0, &rrset); | ||
| 81 | |||
| 82 | if (rrset_errno == 0) | ||
| 83 | print_rrsetinfo(rrset); | ||
| 84 | print_errors(); | ||
| 85 | } | ||
| 86 | |||
| 87 | return (0); | ||
| 88 | } | ||
diff --git a/src/regress/lib/libc/asr/bin/getrrsetbyname/Makefile b/src/regress/lib/libc/asr/bin/getrrsetbyname/Makefile new file mode 100644 index 0000000000..131403bea1 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/getrrsetbyname/Makefile | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1.1.1 2012/07/13 17:49:54 eric Exp $ | ||
| 2 | |||
| 3 | .PATH: ${.CURDIR}/.. | ||
| 4 | |||
| 5 | PROG= getrrsetbyname | ||
| 6 | SRCS+= getrrsetbyname.c | ||
| 7 | |||
| 8 | .include <bsd.prog.mk> | ||
diff --git a/src/regress/lib/libc/asr/bin/res_mkquery.c b/src/regress/lib/libc/asr/bin/res_mkquery.c new file mode 100644 index 0000000000..a52023c5c0 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/res_mkquery.c | |||
| @@ -0,0 +1,319 @@ | |||
| 1 | /* $OpenBSD: res_mkquery.c,v 1.1.1.1 2012/07/13 17:49:53 eric Exp $ */ | ||
| 2 | /* | ||
| 3 | * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> | ||
| 4 | * | ||
| 5 | * Permission to use, copy, modify, and distribute this software for any | ||
| 6 | * purpose with or without fee is hereby granted, provided that the above | ||
| 7 | * copyright notice and this permission notice appear in all copies. | ||
| 8 | * | ||
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #include <sys/types.h> | ||
| 19 | #include <sys/socket.h> | ||
| 20 | |||
| 21 | #include <netinet/in.h> | ||
| 22 | #include <arpa/nameser.h> | ||
| 23 | #include <arpa/inet.h> | ||
| 24 | |||
| 25 | #include <err.h> | ||
| 26 | #include <errno.h> | ||
| 27 | #include <getopt.h> | ||
| 28 | #include <inttypes.h> | ||
| 29 | #include <resolv.h> | ||
| 30 | #include <stdio.h> | ||
| 31 | #include <stdlib.h> | ||
| 32 | #include <string.h> | ||
| 33 | |||
| 34 | #include "common.h" | ||
| 35 | |||
| 36 | /* in asr.c but we don't want them exposed right now */ | ||
| 37 | static void dump_packet(const void *, size_t); | ||
| 38 | |||
| 39 | static char *print_query(struct query *, char *, size_t); | ||
| 40 | static char *print_rr(struct rr *, char *, size_t); | ||
| 41 | static char *print_host(const struct sockaddr *, char *, size_t); | ||
| 42 | static char* print_dname(const char *, char *, size_t); | ||
| 43 | |||
| 44 | |||
| 45 | static void | ||
| 46 | usage(void) | ||
| 47 | { | ||
| 48 | extern const char * __progname; | ||
| 49 | |||
| 50 | fprintf(stderr, "usage: %s [-deq] [-t type] [host...]\n", | ||
| 51 | __progname); | ||
| 52 | exit(1); | ||
| 53 | } | ||
| 54 | |||
| 55 | int | ||
| 56 | main(int argc, char *argv[]) | ||
| 57 | { | ||
| 58 | int ch, i, r; | ||
| 59 | uint16_t type = T_A; | ||
| 60 | char buf[1024], *host; | ||
| 61 | |||
| 62 | while((ch = getopt(argc, argv, "et:")) != -1) { | ||
| 63 | switch(ch) { | ||
| 64 | case 'e': | ||
| 65 | long_err += 1; | ||
| 66 | break; | ||
| 67 | case 't': | ||
| 68 | if ((type = strtotype(optarg)) == 0) | ||
| 69 | usage(); | ||
| 70 | break; | ||
| 71 | default: | ||
| 72 | usage(); | ||
| 73 | /* NOTREACHED */ | ||
| 74 | } | ||
| 75 | } | ||
| 76 | argc -= optind; | ||
| 77 | argv += optind; | ||
| 78 | |||
| 79 | for (i = 0; i < argc; i++) { | ||
| 80 | |||
| 81 | if (i) | ||
| 82 | printf("\n"); | ||
| 83 | |||
| 84 | printf("===> \"%s\"\n", argv[i]); | ||
| 85 | host = gethostarg(argv[i]); | ||
| 86 | |||
| 87 | errno = 0; | ||
| 88 | h_errno = 0; | ||
| 89 | gai_errno = 0; | ||
| 90 | rrset_errno = 0; | ||
| 91 | |||
| 92 | r = res_mkquery(QUERY, host, C_IN, type, NULL, 0, NULL, buf, sizeof(buf)); | ||
| 93 | if (r != -1) { | ||
| 94 | dump_packet(buf, r); | ||
| 95 | printf(";; MSG SIZE %i\n", r); | ||
| 96 | } | ||
| 97 | print_errors(); | ||
| 98 | } | ||
| 99 | |||
| 100 | return (0); | ||
| 101 | } | ||
| 102 | |||
| 103 | #define OPCODE_SHIFT 11 | ||
| 104 | #define Z_SHIFT 4 | ||
| 105 | |||
| 106 | static char* | ||
| 107 | print_header(struct header *h, char *buf, size_t max) | ||
| 108 | { | ||
| 109 | snprintf(buf, max, | ||
| 110 | "id:0x.... %s op:%i %s %s %s %s z:%i r:%s qd:%i an:%i ns:%i ar:%i", | ||
| 111 | (h->flags & QR_MASK) ? "QR":" ", | ||
| 112 | (int)(OPCODE(h->flags) >> OPCODE_SHIFT), | ||
| 113 | (h->flags & AA_MASK) ? "AA":" ", | ||
| 114 | (h->flags & TC_MASK) ? "TC":" ", | ||
| 115 | (h->flags & RD_MASK) ? "RD":" ", | ||
| 116 | (h->flags & RA_MASK) ? "RA":" ", | ||
| 117 | ((h->flags & Z_MASK) >> Z_SHIFT), | ||
| 118 | rcodetostr(RCODE(h->flags)), | ||
| 119 | h->qdcount, h->ancount, h->nscount, h->arcount); | ||
| 120 | |||
| 121 | return buf; | ||
| 122 | } | ||
| 123 | |||
| 124 | static void | ||
| 125 | dump_packet(const void *data, size_t len) | ||
| 126 | { | ||
| 127 | char buf[1024]; | ||
| 128 | struct packed p; | ||
| 129 | struct header h; | ||
| 130 | struct query q; | ||
| 131 | struct rr rr; | ||
| 132 | int i, an, ns, ar, n; | ||
| 133 | |||
| 134 | packed_init(&p, (char *)data, len); | ||
| 135 | |||
| 136 | if (unpack_header(&p, &h) == -1) { | ||
| 137 | printf(";; BAD PACKET: %s\n", p.err); | ||
| 138 | return; | ||
| 139 | } | ||
| 140 | |||
| 141 | printf(";; HEADER %s\n", print_header(&h, buf, sizeof buf)); | ||
| 142 | |||
| 143 | if (h.qdcount) | ||
| 144 | printf(";; QUERY SECTION:\n"); | ||
| 145 | for (i = 0; i < h.qdcount; i++) { | ||
| 146 | if (unpack_query(&p, &q) == -1) | ||
| 147 | goto error; | ||
| 148 | printf("%s\n", print_query(&q, buf, sizeof buf)); | ||
| 149 | } | ||
| 150 | |||
| 151 | an = 0; | ||
| 152 | ns = an + h.ancount; | ||
| 153 | ar = ns + h.nscount; | ||
| 154 | n = ar + h.arcount; | ||
| 155 | |||
| 156 | for (i = 0; i < n; i++) { | ||
| 157 | if (i == an) | ||
| 158 | printf("\n;; ANSWER SECTION:\n"); | ||
| 159 | if (i == ns) | ||
| 160 | printf("\n;; AUTHORITY SECTION:\n"); | ||
| 161 | if (i == ar) | ||
| 162 | printf("\n;; ADDITIONAL SECTION:\n"); | ||
| 163 | |||
| 164 | if (unpack_rr(&p, &rr) == -1) | ||
| 165 | goto error; | ||
| 166 | printf("%s\n", print_rr(&rr, buf, sizeof buf)); | ||
| 167 | } | ||
| 168 | |||
| 169 | if (p.offset != len) | ||
| 170 | printf(";; REMAINING GARBAGE %zu\n", len - p.offset); | ||
| 171 | |||
| 172 | error: | ||
| 173 | if (p.err) | ||
| 174 | printf(";; ERROR AT OFFSET %zu/%zu: %s\n", p.offset, p.len, | ||
| 175 | p.err); | ||
| 176 | } | ||
| 177 | |||
| 178 | static const char * | ||
| 179 | inet6_ntoa(struct in6_addr a) | ||
| 180 | { | ||
| 181 | static char buf[256]; | ||
| 182 | struct sockaddr_in6 si; | ||
| 183 | |||
| 184 | si.sin6_len = sizeof(si); | ||
| 185 | si.sin6_family = PF_INET6; | ||
| 186 | si.sin6_addr = a; | ||
| 187 | |||
| 188 | return print_host((struct sockaddr*)&si, buf, sizeof buf); | ||
| 189 | } | ||
| 190 | |||
| 191 | static char* | ||
| 192 | print_rr(struct rr *rr, char *buf, size_t max) | ||
| 193 | { | ||
| 194 | char *res; | ||
| 195 | char tmp[256]; | ||
| 196 | char tmp2[256]; | ||
| 197 | int r; | ||
| 198 | |||
| 199 | res = buf; | ||
| 200 | |||
| 201 | r = snprintf(buf, max, "%s %u %s %s ", | ||
| 202 | print_dname(rr->rr_dname, tmp, sizeof tmp), | ||
| 203 | rr->rr_ttl, | ||
| 204 | classtostr(rr->rr_class), | ||
| 205 | typetostr(rr->rr_type)); | ||
| 206 | if (r == -1) { | ||
| 207 | buf[0] = '\0'; | ||
| 208 | return buf; | ||
| 209 | } | ||
| 210 | |||
| 211 | if ((size_t)r >= max) | ||
| 212 | return buf; | ||
| 213 | |||
| 214 | max -= r; | ||
| 215 | buf += r; | ||
| 216 | |||
| 217 | switch(rr->rr_type) { | ||
| 218 | case T_CNAME: | ||
| 219 | print_dname(rr->rr.cname.cname, buf, max); | ||
| 220 | break; | ||
| 221 | case T_MX: | ||
| 222 | snprintf(buf, max, "%"PRIu32" %s", | ||
| 223 | rr->rr.mx.preference, | ||
| 224 | print_dname(rr->rr.mx.exchange, tmp, sizeof tmp)); | ||
| 225 | break; | ||
| 226 | case T_NS: | ||
| 227 | print_dname(rr->rr.ns.nsname, buf, max); | ||
| 228 | break; | ||
| 229 | case T_PTR: | ||
| 230 | print_dname(rr->rr.ptr.ptrname, buf, max); | ||
| 231 | break; | ||
| 232 | case T_SOA: | ||
| 233 | snprintf(buf, max, | ||
| 234 | "%s %s %" PRIu32 " %" PRIu32 " %" PRIu32 " %" PRIu32 " %" PRIu32, | ||
| 235 | print_dname(rr->rr.soa.rname, tmp, sizeof tmp), | ||
| 236 | print_dname(rr->rr.soa.mname, tmp2, sizeof tmp2), | ||
| 237 | rr->rr.soa.serial, | ||
| 238 | rr->rr.soa.refresh, | ||
| 239 | rr->rr.soa.retry, | ||
| 240 | rr->rr.soa.expire, | ||
| 241 | rr->rr.soa.minimum); | ||
| 242 | break; | ||
| 243 | case T_A: | ||
| 244 | if (rr->rr_class != C_IN) | ||
| 245 | goto other; | ||
| 246 | snprintf(buf, max, "%s", inet_ntoa(rr->rr.in_a.addr)); | ||
| 247 | break; | ||
| 248 | case T_AAAA: | ||
| 249 | if (rr->rr_class != C_IN) | ||
| 250 | goto other; | ||
| 251 | snprintf(buf, max, "%s", inet6_ntoa(rr->rr.in_aaaa.addr6)); | ||
| 252 | break; | ||
| 253 | default: | ||
| 254 | other: | ||
| 255 | snprintf(buf, max, "(rdlen=%"PRIu16 ")", rr->rr.other.rdlen); | ||
| 256 | break; | ||
| 257 | } | ||
| 258 | |||
| 259 | return (res); | ||
| 260 | } | ||
| 261 | |||
| 262 | static char* | ||
| 263 | print_query(struct query *q, char *buf, size_t max) | ||
| 264 | { | ||
| 265 | char b[256]; | ||
| 266 | |||
| 267 | snprintf(buf, max, "%s %s %s", | ||
| 268 | print_dname(q->q_dname, b, sizeof b), | ||
| 269 | classtostr(q->q_class), typetostr(q->q_type)); | ||
| 270 | |||
| 271 | return (buf); | ||
| 272 | } | ||
| 273 | |||
| 274 | |||
| 275 | static char * | ||
| 276 | print_host(const struct sockaddr *sa, char *buf, size_t len) | ||
| 277 | { | ||
| 278 | switch (sa->sa_family) { | ||
| 279 | case AF_INET: | ||
| 280 | inet_ntop(AF_INET, &((struct sockaddr_in*)sa)->sin_addr, buf, len); | ||
| 281 | break; | ||
| 282 | case AF_INET6: | ||
| 283 | inet_ntop(AF_INET6, &((struct sockaddr_in6*)sa)->sin6_addr, buf, len); | ||
| 284 | break; | ||
| 285 | default: | ||
| 286 | buf[0] = '\0'; | ||
| 287 | } | ||
| 288 | return (buf); | ||
| 289 | } | ||
| 290 | |||
| 291 | static char* | ||
| 292 | print_dname(const char *_dname, char *buf, size_t max) | ||
| 293 | { | ||
| 294 | const unsigned char *dname = _dname; | ||
| 295 | char *res; | ||
| 296 | size_t left, n, count; | ||
| 297 | |||
| 298 | if (_dname[0] == 0) { | ||
| 299 | strlcpy(buf, ".", max); | ||
| 300 | return buf; | ||
| 301 | } | ||
| 302 | |||
| 303 | res = buf; | ||
| 304 | left = max - 1; | ||
| 305 | for (n = 0; dname[0] && left; n += dname[0]) { | ||
| 306 | count = (dname[0] < (left - 1)) ? dname[0] : (left - 1); | ||
| 307 | memmove(buf, dname + 1, count); | ||
| 308 | dname += dname[0] + 1; | ||
| 309 | left -= count; | ||
| 310 | buf += count; | ||
| 311 | if (left) { | ||
| 312 | left -= 1; | ||
| 313 | *buf++ = '.'; | ||
| 314 | } | ||
| 315 | } | ||
| 316 | buf[0] = 0; | ||
| 317 | |||
| 318 | return (res); | ||
| 319 | } | ||
diff --git a/src/regress/lib/libc/asr/bin/res_mkquery/Makefile b/src/regress/lib/libc/asr/bin/res_mkquery/Makefile new file mode 100644 index 0000000000..770fa9f633 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/res_mkquery/Makefile | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1.1.1 2012/07/13 17:49:54 eric Exp $ | ||
| 2 | |||
| 3 | .PATH: ${.CURDIR}/.. | ||
| 4 | |||
| 5 | PROG= res_mkquery${BINEXT} | ||
| 6 | SRCS+= res_mkquery.c | ||
| 7 | |||
| 8 | .include <bsd.prog.mk> | ||
diff --git a/src/regress/lib/libc/asr/bin/res_query.c b/src/regress/lib/libc/asr/bin/res_query.c new file mode 100644 index 0000000000..fd96f1de22 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/res_query.c | |||
| @@ -0,0 +1,354 @@ | |||
| 1 | /* $OpenBSD: res_query.c,v 1.1.1.1 2012/07/13 17:49:54 eric Exp $ */ | ||
| 2 | /* | ||
| 3 | * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> | ||
| 4 | * | ||
| 5 | * Permission to use, copy, modify, and distribute this software for any | ||
| 6 | * purpose with or without fee is hereby granted, provided that the above | ||
| 7 | * copyright notice and this permission notice appear in all copies. | ||
| 8 | * | ||
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #include <sys/types.h> | ||
| 19 | #include <sys/socket.h> | ||
| 20 | |||
| 21 | #include <netinet/in.h> | ||
| 22 | #include <arpa/nameser.h> | ||
| 23 | #include <arpa/inet.h> | ||
| 24 | |||
| 25 | #include <err.h> | ||
| 26 | #include <errno.h> | ||
| 27 | #include <getopt.h> | ||
| 28 | #include <inttypes.h> | ||
| 29 | #include <resolv.h> | ||
| 30 | #include <stdio.h> | ||
| 31 | #include <stdlib.h> | ||
| 32 | #include <string.h> | ||
| 33 | |||
| 34 | #include "common.h" | ||
| 35 | |||
| 36 | /* in asr.c but we don't want them exposed right now */ | ||
| 37 | static void dump_packet(const void *, size_t); | ||
| 38 | |||
| 39 | static char *print_query(struct query *, char *, size_t); | ||
| 40 | static char *print_rr(struct rr *, char *, size_t); | ||
| 41 | static char *print_host(const struct sockaddr *, char *, size_t); | ||
| 42 | static char* print_dname(const char *, char *, size_t); | ||
| 43 | |||
| 44 | |||
| 45 | static int | ||
| 46 | msec(struct timeval start, struct timeval end) | ||
| 47 | { | ||
| 48 | return (int)((end.tv_sec - start.tv_sec) * 1000 | ||
| 49 | + (end.tv_usec - start.tv_usec) / 1000); | ||
| 50 | } | ||
| 51 | |||
| 52 | static void | ||
| 53 | usage(void) | ||
| 54 | { | ||
| 55 | extern const char * __progname; | ||
| 56 | |||
| 57 | fprintf(stderr, "usage: %s [-deq] [-t type] [host...]\n", | ||
| 58 | __progname); | ||
| 59 | exit(1); | ||
| 60 | } | ||
| 61 | |||
| 62 | int | ||
| 63 | main(int argc, char *argv[]) | ||
| 64 | { | ||
| 65 | struct timeval start, end; | ||
| 66 | time_t when; | ||
| 67 | int ch, i, qflag, dflag, r; | ||
| 68 | uint16_t type = T_A; | ||
| 69 | char buf[1024], *host; | ||
| 70 | |||
| 71 | dflag = 0; | ||
| 72 | qflag = 0; | ||
| 73 | |||
| 74 | while((ch = getopt(argc, argv, "deqt:")) != -1) { | ||
| 75 | switch(ch) { | ||
| 76 | case 'd': | ||
| 77 | dflag = 1; | ||
| 78 | break; | ||
| 79 | case 'e': | ||
| 80 | long_err += 1; | ||
| 81 | break; | ||
| 82 | case 'q': | ||
| 83 | qflag = 1; | ||
| 84 | break; | ||
| 85 | case 't': | ||
| 86 | if ((type = strtotype(optarg)) == 0) | ||
| 87 | usage(); | ||
| 88 | break; | ||
| 89 | default: | ||
| 90 | usage(); | ||
| 91 | /* NOTREACHED */ | ||
| 92 | } | ||
| 93 | } | ||
| 94 | argc -= optind; | ||
| 95 | argv += optind; | ||
| 96 | |||
| 97 | for (i = 0; i < argc; i++) { | ||
| 98 | |||
| 99 | if (i) | ||
| 100 | printf("\n"); | ||
| 101 | |||
| 102 | printf("===> \"%s\"\n", argv[i]); | ||
| 103 | host = gethostarg(argv[i]); | ||
| 104 | |||
| 105 | errno = 0; | ||
| 106 | h_errno = 0; | ||
| 107 | gai_errno = 0; | ||
| 108 | rrset_errno = 0; | ||
| 109 | |||
| 110 | if (gettimeofday(&start, NULL) != 0) | ||
| 111 | err(1, "gettimeofday"); | ||
| 112 | |||
| 113 | if (qflag) | ||
| 114 | r = res_query(host, C_IN, type, buf, sizeof(buf)); | ||
| 115 | else | ||
| 116 | r = res_search(host, C_IN, type, buf, sizeof(buf)); | ||
| 117 | |||
| 118 | if (gettimeofday(&end, NULL) != 0) | ||
| 119 | err(1, "gettimeofday"); | ||
| 120 | |||
| 121 | if (r != -1) { | ||
| 122 | dump_packet(buf, r); | ||
| 123 | printf("\n"); | ||
| 124 | if (dflag) { | ||
| 125 | printf(";; Query time: %d msec\n", | ||
| 126 | msec(start, end)); | ||
| 127 | when = time(NULL); | ||
| 128 | printf(";; WHEN: %s", ctime(&when)); | ||
| 129 | } | ||
| 130 | printf(";; MSG SIZE rcvd: %i\n", r); | ||
| 131 | } | ||
| 132 | print_errors(); | ||
| 133 | } | ||
| 134 | |||
| 135 | return (0); | ||
| 136 | } | ||
| 137 | |||
| 138 | #define OPCODE_SHIFT 11 | ||
| 139 | #define Z_SHIFT 4 | ||
| 140 | |||
| 141 | static char* | ||
| 142 | print_header(struct header *h, char *buf, size_t max) | ||
| 143 | { | ||
| 144 | snprintf(buf, max, | ||
| 145 | "id:0x.... %s op:%i %s %s %s %s z:%i r:%s qd:%i an:%i ns:%i ar:%i", | ||
| 146 | (h->flags & QR_MASK) ? "QR":" ", | ||
| 147 | (int)(OPCODE(h->flags) >> OPCODE_SHIFT), | ||
| 148 | (h->flags & AA_MASK) ? "AA":" ", | ||
| 149 | (h->flags & TC_MASK) ? "TC":" ", | ||
| 150 | (h->flags & RD_MASK) ? "RD":" ", | ||
| 151 | (h->flags & RA_MASK) ? "RA":" ", | ||
| 152 | ((h->flags & Z_MASK) >> Z_SHIFT), | ||
| 153 | rcodetostr(RCODE(h->flags)), | ||
| 154 | h->qdcount, h->ancount, h->nscount, h->arcount); | ||
| 155 | |||
| 156 | return buf; | ||
| 157 | } | ||
| 158 | |||
| 159 | static void | ||
| 160 | dump_packet(const void *data, size_t len) | ||
| 161 | { | ||
| 162 | char buf[1024]; | ||
| 163 | struct packed p; | ||
| 164 | struct header h; | ||
| 165 | struct query q; | ||
| 166 | struct rr rr; | ||
| 167 | int i, an, ns, ar, n; | ||
| 168 | |||
| 169 | packed_init(&p, (char *)data, len); | ||
| 170 | |||
| 171 | if (unpack_header(&p, &h) == -1) { | ||
| 172 | printf(";; BAD PACKET: %s\n", p.err); | ||
| 173 | return; | ||
| 174 | } | ||
| 175 | |||
| 176 | printf(";; HEADER %s\n", print_header(&h, buf, sizeof buf)); | ||
| 177 | |||
| 178 | if (h.qdcount) | ||
| 179 | printf(";; QUERY SECTION:\n"); | ||
| 180 | for (i = 0; i < h.qdcount; i++) { | ||
| 181 | if (unpack_query(&p, &q) == -1) | ||
| 182 | goto error; | ||
| 183 | printf("%s\n", print_query(&q, buf, sizeof buf)); | ||
| 184 | } | ||
| 185 | |||
| 186 | an = 0; | ||
| 187 | ns = an + h.ancount; | ||
| 188 | ar = ns + h.nscount; | ||
| 189 | n = ar + h.arcount; | ||
| 190 | |||
| 191 | for (i = 0; i < n; i++) { | ||
| 192 | if (i == an) | ||
| 193 | printf("\n;; ANSWER SECTION:\n"); | ||
| 194 | if (i == ns) | ||
| 195 | printf("\n;; AUTHORITY SECTION:\n"); | ||
| 196 | if (i == ar) | ||
| 197 | printf("\n;; ADDITIONAL SECTION:\n"); | ||
| 198 | |||
| 199 | if (unpack_rr(&p, &rr) == -1) | ||
| 200 | goto error; | ||
| 201 | printf("%s\n", print_rr(&rr, buf, sizeof buf)); | ||
| 202 | } | ||
| 203 | |||
| 204 | if (p.offset != len) | ||
| 205 | printf(";; REMAINING GARBAGE %zu\n", len - p.offset); | ||
| 206 | |||
| 207 | error: | ||
| 208 | if (p.err) | ||
| 209 | printf(";; ERROR AT OFFSET %zu/%zu: %s\n", p.offset, p.len, | ||
| 210 | p.err); | ||
| 211 | } | ||
| 212 | |||
| 213 | static const char * | ||
| 214 | inet6_ntoa(struct in6_addr a) | ||
| 215 | { | ||
| 216 | static char buf[256]; | ||
| 217 | struct sockaddr_in6 si; | ||
| 218 | |||
| 219 | si.sin6_len = sizeof(si); | ||
| 220 | si.sin6_family = PF_INET6; | ||
| 221 | si.sin6_addr = a; | ||
| 222 | |||
| 223 | return print_host((struct sockaddr*)&si, buf, sizeof buf); | ||
| 224 | } | ||
| 225 | |||
| 226 | static char* | ||
| 227 | print_rr(struct rr *rr, char *buf, size_t max) | ||
| 228 | { | ||
| 229 | char *res; | ||
| 230 | char tmp[256]; | ||
| 231 | char tmp2[256]; | ||
| 232 | int r; | ||
| 233 | |||
| 234 | res = buf; | ||
| 235 | |||
| 236 | r = snprintf(buf, max, "%s %u %s %s ", | ||
| 237 | print_dname(rr->rr_dname, tmp, sizeof tmp), | ||
| 238 | rr->rr_ttl, | ||
| 239 | classtostr(rr->rr_class), | ||
| 240 | typetostr(rr->rr_type)); | ||
| 241 | if (r == -1) { | ||
| 242 | buf[0] = '\0'; | ||
| 243 | return buf; | ||
| 244 | } | ||
| 245 | |||
| 246 | if ((size_t)r >= max) | ||
| 247 | return buf; | ||
| 248 | |||
| 249 | max -= r; | ||
| 250 | buf += r; | ||
| 251 | |||
| 252 | switch(rr->rr_type) { | ||
| 253 | case T_CNAME: | ||
| 254 | print_dname(rr->rr.cname.cname, buf, max); | ||
| 255 | break; | ||
| 256 | case T_MX: | ||
| 257 | snprintf(buf, max, "%"PRIu32" %s", | ||
| 258 | rr->rr.mx.preference, | ||
| 259 | print_dname(rr->rr.mx.exchange, tmp, sizeof tmp)); | ||
| 260 | break; | ||
| 261 | case T_NS: | ||
| 262 | print_dname(rr->rr.ns.nsname, buf, max); | ||
| 263 | break; | ||
| 264 | case T_PTR: | ||
| 265 | print_dname(rr->rr.ptr.ptrname, buf, max); | ||
| 266 | break; | ||
| 267 | case T_SOA: | ||
| 268 | snprintf(buf, max, | ||
| 269 | "%s %s %" PRIu32 " %" PRIu32 " %" PRIu32 " %" PRIu32 " %" PRIu32, | ||
| 270 | print_dname(rr->rr.soa.rname, tmp, sizeof tmp), | ||
| 271 | print_dname(rr->rr.soa.mname, tmp2, sizeof tmp2), | ||
| 272 | rr->rr.soa.serial, | ||
| 273 | rr->rr.soa.refresh, | ||
| 274 | rr->rr.soa.retry, | ||
| 275 | rr->rr.soa.expire, | ||
| 276 | rr->rr.soa.minimum); | ||
| 277 | break; | ||
| 278 | case T_A: | ||
| 279 | if (rr->rr_class != C_IN) | ||
| 280 | goto other; | ||
| 281 | snprintf(buf, max, "%s", inet_ntoa(rr->rr.in_a.addr)); | ||
| 282 | break; | ||
| 283 | case T_AAAA: | ||
| 284 | if (rr->rr_class != C_IN) | ||
| 285 | goto other; | ||
| 286 | snprintf(buf, max, "%s", inet6_ntoa(rr->rr.in_aaaa.addr6)); | ||
| 287 | break; | ||
| 288 | default: | ||
| 289 | other: | ||
| 290 | snprintf(buf, max, "(rdlen=%"PRIu16 ")", rr->rr.other.rdlen); | ||
| 291 | break; | ||
| 292 | } | ||
| 293 | |||
| 294 | return (res); | ||
| 295 | } | ||
| 296 | |||
| 297 | static char* | ||
| 298 | print_query(struct query *q, char *buf, size_t max) | ||
| 299 | { | ||
| 300 | char b[256]; | ||
| 301 | |||
| 302 | snprintf(buf, max, "%s %s %s", | ||
| 303 | print_dname(q->q_dname, b, sizeof b), | ||
| 304 | classtostr(q->q_class), typetostr(q->q_type)); | ||
| 305 | |||
| 306 | return (buf); | ||
| 307 | } | ||
| 308 | |||
| 309 | |||
| 310 | static char * | ||
| 311 | print_host(const struct sockaddr *sa, char *buf, size_t len) | ||
| 312 | { | ||
| 313 | switch (sa->sa_family) { | ||
| 314 | case AF_INET: | ||
| 315 | inet_ntop(AF_INET, &((struct sockaddr_in*)sa)->sin_addr, buf, len); | ||
| 316 | break; | ||
| 317 | case AF_INET6: | ||
| 318 | inet_ntop(AF_INET6, &((struct sockaddr_in6*)sa)->sin6_addr, buf, len); | ||
| 319 | break; | ||
| 320 | default: | ||
| 321 | buf[0] = '\0'; | ||
| 322 | } | ||
| 323 | return (buf); | ||
| 324 | } | ||
| 325 | |||
| 326 | static char* | ||
| 327 | print_dname(const char *_dname, char *buf, size_t max) | ||
| 328 | { | ||
| 329 | const unsigned char *dname = _dname; | ||
| 330 | char *res; | ||
| 331 | size_t left, n, count; | ||
| 332 | |||
| 333 | if (_dname[0] == 0) { | ||
| 334 | strlcpy(buf, ".", max); | ||
| 335 | return buf; | ||
| 336 | } | ||
| 337 | |||
| 338 | res = buf; | ||
| 339 | left = max - 1; | ||
| 340 | for (n = 0; dname[0] && left; n += dname[0]) { | ||
| 341 | count = (dname[0] < (left - 1)) ? dname[0] : (left - 1); | ||
| 342 | memmove(buf, dname + 1, count); | ||
| 343 | dname += dname[0] + 1; | ||
| 344 | left -= count; | ||
| 345 | buf += count; | ||
| 346 | if (left) { | ||
| 347 | left -= 1; | ||
| 348 | *buf++ = '.'; | ||
| 349 | } | ||
| 350 | } | ||
| 351 | buf[0] = 0; | ||
| 352 | |||
| 353 | return (res); | ||
| 354 | } | ||
diff --git a/src/regress/lib/libc/asr/bin/res_query/Makefile b/src/regress/lib/libc/asr/bin/res_query/Makefile new file mode 100644 index 0000000000..75380ee079 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/res_query/Makefile | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1.1.1 2012/07/13 17:49:54 eric Exp $ | ||
| 2 | |||
| 3 | .PATH: ${.CURDIR}/.. | ||
| 4 | |||
| 5 | PROG= res_query${BINEXT} | ||
| 6 | SRCS+= res_query.c | ||
| 7 | |||
| 8 | .include <bsd.prog.mk> | ||
diff --git a/src/regress/lib/libc/asr/bin/threads.c b/src/regress/lib/libc/asr/bin/threads.c new file mode 100644 index 0000000000..f296f1d6f7 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/threads.c | |||
| @@ -0,0 +1,140 @@ | |||
| 1 | /* $OpenBSD: threads.c,v 1.1.1.1 2012/07/13 17:49:53 eric Exp $ */ | ||
| 2 | /* | ||
| 3 | * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> | ||
| 4 | * | ||
| 5 | * Permission to use, copy, modify, and distribute this software for any | ||
| 6 | * purpose with or without fee is hereby granted, provided that the above | ||
| 7 | * copyright notice and this permission notice appear in all copies. | ||
| 8 | * | ||
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 16 | */ | ||
| 17 | #include <sys/time.h> | ||
| 18 | #include <sys/resource.h> | ||
| 19 | |||
| 20 | #include <assert.h> | ||
| 21 | #include <err.h> | ||
| 22 | #include <getopt.h> | ||
| 23 | #include <pthread.h> | ||
| 24 | #include <stdio.h> | ||
| 25 | #include <stdlib.h> | ||
| 26 | #include <time.h> | ||
| 27 | |||
| 28 | #include <netdb.h> | ||
| 29 | |||
| 30 | #define MAX_THREADS 50 | ||
| 31 | |||
| 32 | int ac; | ||
| 33 | char **av; | ||
| 34 | int loop; | ||
| 35 | int nthreads; | ||
| 36 | |||
| 37 | int long_err; | ||
| 38 | int gai_errno; | ||
| 39 | int rrset_errno; | ||
| 40 | |||
| 41 | void async_resolver_done(void *); | ||
| 42 | |||
| 43 | void stats(void) | ||
| 44 | { | ||
| 45 | struct rusage ru; | ||
| 46 | |||
| 47 | getrusage(RUSAGE_SELF, &ru); | ||
| 48 | printf("%li\n", ru.ru_maxrss); | ||
| 49 | } | ||
| 50 | |||
| 51 | void* | ||
| 52 | task(void *arg) | ||
| 53 | { | ||
| 54 | int id, i, j, c; | ||
| 55 | struct addrinfo *ai, *n; | ||
| 56 | |||
| 57 | id = *((int*) arg); | ||
| 58 | |||
| 59 | n = NULL; c =0; | ||
| 60 | |||
| 61 | for(j = 0; j < loop; j++) | ||
| 62 | for(i = 0; i < ac; i++) { | ||
| 63 | if (getaddrinfo(av[i], NULL, NULL, &ai) == 0) { | ||
| 64 | /* | ||
| 65 | for (c = 0, n = ai; n; c++, n = n->ai_next); | ||
| 66 | printf("%i:%s: ok: %i\n", id, av[i], c); | ||
| 67 | */ | ||
| 68 | freeaddrinfo(ai); | ||
| 69 | } else { | ||
| 70 | /* | ||
| 71 | printf("%i:%s: fail\n", id, av[i]); | ||
| 72 | */ | ||
| 73 | } | ||
| 74 | } | ||
| 75 | return (NULL); | ||
| 76 | } | ||
| 77 | |||
| 78 | void | ||
| 79 | usage(void) | ||
| 80 | { | ||
| 81 | extern const char *__progname; | ||
| 82 | fprintf(stderr, "usage: %s [-L loop] [-l loop] [-t threads] <host> ...\n", | ||
| 83 | __progname); | ||
| 84 | } | ||
| 85 | |||
| 86 | int | ||
| 87 | main(int argc, char **argv) | ||
| 88 | { | ||
| 89 | pthread_t th[MAX_THREADS]; | ||
| 90 | int th_args[MAX_THREADS], r, i, ch; | ||
| 91 | int n, LOOP; | ||
| 92 | |||
| 93 | nthreads = 1; | ||
| 94 | loop = 1; | ||
| 95 | LOOP = 1; | ||
| 96 | |||
| 97 | while ((ch = getopt(argc, argv, "L:l:t:")) != -1) { | ||
| 98 | switch (ch) { | ||
| 99 | case 'L': | ||
| 100 | LOOP = atoi(optarg); | ||
| 101 | break; | ||
| 102 | case 'l': | ||
| 103 | loop = atoi(optarg); | ||
| 104 | break; | ||
| 105 | case 't': | ||
| 106 | nthreads = atoi(optarg); | ||
| 107 | if (nthreads > MAX_THREADS) | ||
| 108 | nthreads = MAX_THREADS; | ||
| 109 | break; | ||
| 110 | default: | ||
| 111 | usage(); | ||
| 112 | /* NOTREACHED */ | ||
| 113 | } | ||
| 114 | } | ||
| 115 | |||
| 116 | argc -= optind; | ||
| 117 | argv += optind; | ||
| 118 | |||
| 119 | ac = argc; | ||
| 120 | av = argv; | ||
| 121 | |||
| 122 | printf("%i %i %i\n", LOOP, nthreads, loop); | ||
| 123 | for (n = 0; n < LOOP; n ++) { | ||
| 124 | for (i = 0; i < nthreads; i++) { | ||
| 125 | th_args[i] = i; | ||
| 126 | r = pthread_create(&th[i], NULL, task, (void *) &th_args[i]); | ||
| 127 | if (r == -1) | ||
| 128 | errx(1, "pthread_create"); | ||
| 129 | } | ||
| 130 | for (i = 0; i < nthreads; i++) | ||
| 131 | pthread_join(th[i], NULL); | ||
| 132 | |||
| 133 | if (nthreads == 0) | ||
| 134 | task(&n); | ||
| 135 | |||
| 136 | stats(); | ||
| 137 | } | ||
| 138 | |||
| 139 | return (0); | ||
| 140 | } | ||
diff --git a/src/regress/lib/libc/asr/bin/threads/Makefile b/src/regress/lib/libc/asr/bin/threads/Makefile new file mode 100644 index 0000000000..3252511cd1 --- /dev/null +++ b/src/regress/lib/libc/asr/bin/threads/Makefile | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1.1.1 2012/07/13 17:49:54 eric Exp $ | ||
| 2 | |||
| 3 | .PATH: ${.CURDIR}/.. | ||
| 4 | |||
| 5 | PROG= threads | ||
| 6 | SRCS+= threads.c | ||
| 7 | |||
| 8 | LDADD= -lpthread | ||
| 9 | |||
| 10 | .include <bsd.prog.mk> | ||
diff --git a/src/regress/lib/libc/asr/regress.sh b/src/regress/lib/libc/asr/regress.sh new file mode 100644 index 0000000000..513732c068 --- /dev/null +++ b/src/regress/lib/libc/asr/regress.sh | |||
| @@ -0,0 +1,104 @@ | |||
| 1 | # $OpenBSD: regress.sh,v 1.3 2012/09/05 21:23:36 eric Exp $ | ||
| 2 | |||
| 3 | . regress.subr | ||
| 4 | |||
| 5 | EFLAG= | ||
| 6 | |||
| 7 | test_res_mkquery() | ||
| 8 | { | ||
| 9 | for i in $@; do | ||
| 10 | regress res_mkquery $i | ||
| 11 | done | ||
| 12 | } | ||
| 13 | |||
| 14 | test_res_query() | ||
| 15 | { | ||
| 16 | for i in $@; do | ||
| 17 | regress res_query $i | ||
| 18 | regress res_query -q $i | ||
| 19 | done | ||
| 20 | } | ||
| 21 | |||
| 22 | test_getrrsetbyname() | ||
| 23 | { | ||
| 24 | for i in $@; do | ||
| 25 | regress getrrsetbyname $i | ||
| 26 | regress getrrsetbyname -t MX $i | ||
| 27 | regress getrrsetbyname -t AAAA $i | ||
| 28 | done | ||
| 29 | } | ||
| 30 | |||
| 31 | test_gethostbyname() | ||
| 32 | { | ||
| 33 | for i in $@; do | ||
| 34 | regress gethostnamadr $i | ||
| 35 | regress gethostnamadr -4 $i | ||
| 36 | regress gethostnamadr -6 $i | ||
| 37 | done | ||
| 38 | } | ||
| 39 | |||
| 40 | test_gethostbyaddr() | ||
| 41 | { | ||
| 42 | for i in $@; do | ||
| 43 | regress gethostnamadr -a $i | ||
| 44 | done | ||
| 45 | } | ||
| 46 | |||
| 47 | test_getaddrinfo() | ||
| 48 | { | ||
| 49 | for i in $@; do | ||
| 50 | regress getaddrinfo $i | ||
| 51 | regress getaddrinfo -C $i | ||
| 52 | regress getaddrinfo -F $i | ||
| 53 | regress getaddrinfo -CF $i | ||
| 54 | regress getaddrinfo -P $i | ||
| 55 | regress getaddrinfo -PF $i | ||
| 56 | regress getaddrinfo -PC $i | ||
| 57 | regress getaddrinfo -H $i | ||
| 58 | regress getaddrinfo -p tcp $i | ||
| 59 | regress getaddrinfo -p udp $i | ||
| 60 | regress getaddrinfo -s www $i | ||
| 61 | regress getaddrinfo -s bad $i | ||
| 62 | regress getaddrinfo -S -s 8081 $i | ||
| 63 | regress getaddrinfo -S -s bad $i | ||
| 64 | regress getaddrinfo -P -s syslog $i | ||
| 65 | regress getaddrinfo -P -s syslog -p tcp $i | ||
| 66 | regress getaddrinfo -P -s syslog -p udp $i | ||
| 67 | done | ||
| 68 | } | ||
| 69 | |||
| 70 | test_getnameinfo() | ||
| 71 | { | ||
| 72 | for i in $@; do | ||
| 73 | regress getnameinfo $i | ||
| 74 | regress getnameinfo -D $i | ||
| 75 | regress getnameinfo -F $i | ||
| 76 | regress getnameinfo -H $i | ||
| 77 | regress getnameinfo -N $i | ||
| 78 | regress getnameinfo -S $i | ||
| 79 | regress getnameinfo -p 80 $i | ||
| 80 | regress getnameinfo -p 514 $i | ||
| 81 | regress getnameinfo -p 514 -D $i | ||
| 82 | regress getnameinfo -p 5566 $i | ||
| 83 | done | ||
| 84 | } | ||
| 85 | |||
| 86 | WEIRD="EMPTY . .. ..." | ||
| 87 | BASIC="localhost $(hostname -s) $(hostname)" | ||
| 88 | EXTRA="undeadly.org www.openbsd.org cvs.openbsd.org" | ||
| 89 | |||
| 90 | ADDRS="0.0.0.0 :: 127.0.0.1 ::1 212.227.193.194" | ||
| 91 | |||
| 92 | for e in file bind local; do | ||
| 93 | regress_setenv $e | ||
| 94 | |||
| 95 | test_res_mkquery $WEIRD $BASIC | ||
| 96 | test_res_query $WEIRD $BASIC $EXTRA | ||
| 97 | test_getrrsetbyname $WEIRD $BASIC $EXTRA | ||
| 98 | test_gethostbyname $WEIRD $BASIC $EXTRA | ||
| 99 | test_gethostbyaddr $ADDRS | ||
| 100 | test_getaddrinfo NULL $WEIRD $BASIC $EXTRA | ||
| 101 | test_getnameinfo $ADDRS | ||
| 102 | done | ||
| 103 | |||
| 104 | regress_digest | ||
diff --git a/src/regress/lib/libc/asr/regress.subr b/src/regress/lib/libc/asr/regress.subr new file mode 100644 index 0000000000..dafb7ddf75 --- /dev/null +++ b/src/regress/lib/libc/asr/regress.subr | |||
| @@ -0,0 +1,114 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | # $OpenBSD: regress.subr,v 1.1.1.1 2012/07/13 17:49:53 eric Exp $ | ||
| 3 | |||
| 4 | TOTAL=0 | ||
| 5 | FAIL=0 | ||
| 6 | OK=0 | ||
| 7 | |||
| 8 | EXT0=.std | ||
| 9 | EXT1=.asr | ||
| 10 | EFLAG=-ee | ||
| 11 | |||
| 12 | set -e | ||
| 13 | |||
| 14 | fail() | ||
| 15 | { | ||
| 16 | echo "*** ERROR: $@" | ||
| 17 | exit 1 | ||
| 18 | } | ||
| 19 | |||
| 20 | regress() | ||
| 21 | { | ||
| 22 | local out; | ||
| 23 | local _cmd=$1; | ||
| 24 | local _bin0=/bin/$_cmd$EXT0 | ||
| 25 | local _bin1=/bin/$_cmd$EXT1 | ||
| 26 | shift; | ||
| 27 | |||
| 28 | TOTAL=$((TOTAL+1)) | ||
| 29 | |||
| 30 | # XXX with user "bin" | ||
| 31 | test -x $_RUNDIR$_bin0 || fail $_RUNDIR$_bin0 not executable | ||
| 32 | test -x $_RUNDIR$_bin1 || fail $_RUNDIR$_bin1 not executable | ||
| 33 | |||
| 34 | out=/tmp/asr_regress | ||
| 35 | |||
| 36 | echo -n $_cmd $EFLAG $@ "." | ||
| 37 | |||
| 38 | set +e | ||
| 39 | chroot -u bin "$_RUNDIR" $_bin0 $EFLAG $@ > $out.0 | ||
| 40 | echo -n . | ||
| 41 | chroot -u bin "$_RUNDIR" $_bin1 $EFLAG $@ > $out.1 | ||
| 42 | echo -n ". " | ||
| 43 | |||
| 44 | diff -u $out.0 $out.1 > $out.diff | ||
| 45 | set -e | ||
| 46 | if test -s $out.diff; then | ||
| 47 | FAIL=$((FAIL+1)) | ||
| 48 | echo fail | ||
| 49 | echo "*** FAIL (env=$REGRESSENV)" $_cmd $EFLAG $@ >> $REG | ||
| 50 | tail -n +3 $out.diff >> $REG | ||
| 51 | echo >> $REG | ||
| 52 | else | ||
| 53 | OK=$((OK+1)) | ||
| 54 | echo ok | ||
| 55 | echo "OK (env=$REGRESSENV)" $_cmd $EFLAG $@ >> $OUT | ||
| 56 | cat $out.0 >> $OUT | ||
| 57 | echo >> $OUT | ||
| 58 | fi | ||
| 59 | rm $out.diff $out.0 $out.1 | ||
| 60 | } | ||
| 61 | |||
| 62 | regress_setenv() | ||
| 63 | { | ||
| 64 | local _name="$1" | ||
| 65 | |||
| 66 | echo "===> using env $_name" | ||
| 67 | |||
| 68 | cp /etc/hosts $_RUNDIR/etc/ | ||
| 69 | cp /etc/resolv.conf $_RUNDIR/etc/ | ||
| 70 | cp /etc/protocols $_RUNDIR/etc/ | ||
| 71 | cp /etc/networks $_RUNDIR/etc/ | ||
| 72 | |||
| 73 | case $_name in | ||
| 74 | empty) | ||
| 75 | rm -f $_RUNDIR/etc/* | ||
| 76 | ;; | ||
| 77 | local) | ||
| 78 | ;; | ||
| 79 | file) | ||
| 80 | grep -v lookup /etc/resolv.conf > $_RUNDIR/etc/resolv.conf | ||
| 81 | echo "lookup file" >> $_RUNDIR/etc/resolv.conf | ||
| 82 | ;; | ||
| 83 | bind) | ||
| 84 | grep -v lookup /etc/resolv.conf > $_RUNDIR/etc/resolv.conf | ||
| 85 | echo "lookup bind" >> $_RUNDIR/etc/resolv.conf | ||
| 86 | ;; | ||
| 87 | *) | ||
| 88 | fail unknown env $_name | ||
| 89 | ;; | ||
| 90 | esac | ||
| 91 | REGRESSENV=$_name | ||
| 92 | } | ||
| 93 | |||
| 94 | regress_digest() | ||
| 95 | { | ||
| 96 | echo | ||
| 97 | cat $REG | ||
| 98 | echo "===>" run=$TOTAL fail=$FAIL | ||
| 99 | } | ||
| 100 | |||
| 101 | |||
| 102 | # needed for chroot | ||
| 103 | test "$(id -u)" -ne 0 && fail need root privileges to run this script | ||
| 104 | |||
| 105 | # we really really want to avoid erasing /etc later | ||
| 106 | test "$RUNDIR" || fail RUNDIR is not set | ||
| 107 | _RUNDIR=$(readlink -fn ${RUNDIR}) | ||
| 108 | test "$_RUNDIR" == / && fail RUNDIR is root dir: $RUNDIR | ||
| 109 | |||
| 110 | OUT=$_RUNDIR/output.log | ||
| 111 | REG=$_RUNDIR/regress.log | ||
| 112 | |||
| 113 | echo -n > $REG | ||
| 114 | echo -n > $OUT | ||
diff --git a/src/regress/lib/libc/atexit/Makefile b/src/regress/lib/libc/atexit/Makefile new file mode 100644 index 0000000000..c14b3c7ac4 --- /dev/null +++ b/src/regress/lib/libc/atexit/Makefile | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.5 2003/07/31 22:46:59 david Exp $ | ||
| 2 | |||
| 3 | NOMAN= | ||
| 4 | PROG=atexit_test | ||
| 5 | CPPFLAGS+=-I${.CURDIR}/../../../../lib/libc | ||
| 6 | CLEANFILES+= invalid.out valid.out | ||
| 7 | |||
| 8 | run-regress-atexit_test: ${PROG} | ||
| 9 | ./${PROG} -valid 2>${.OBJDIR}/valid.out | ||
| 10 | cmp -s ${.OBJDIR}/valid.out ${.CURDIR}/valid.ok | ||
| 11 | ./${PROG} -invalid-atexit 2>${.OBJDIR}/invalid.out | ||
| 12 | cmp -s ${.OBJDIR}/invalid.out ${.CURDIR}/invalid.ok | ||
| 13 | ./${PROG} -invalid-cleanup 2>${.OBJDIR}/invalid.out | ||
| 14 | cmp -s ${.OBJDIR}/invalid.out ${.CURDIR}/invalid.ok | ||
| 15 | |||
| 16 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/atexit/atexit_test.c b/src/regress/lib/libc/atexit/atexit_test.c new file mode 100644 index 0000000000..3dd0b62c3e --- /dev/null +++ b/src/regress/lib/libc/atexit/atexit_test.c | |||
| @@ -0,0 +1,140 @@ | |||
| 1 | /* $OpenBSD: atexit_test.c,v 1.6 2007/09/03 14:42:44 millert Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2002 Daniel Hartmeier | ||
| 5 | * All rights reserved. | ||
| 6 | * | ||
| 7 | * Redistribution and use in source and binary forms, with or without | ||
| 8 | * modification, are permitted provided that the following conditions | ||
| 9 | * are met: | ||
| 10 | * | ||
| 11 | * - Redistributions of source code must retain the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer. | ||
| 13 | * - Redistributions in binary form must reproduce the above | ||
| 14 | * copyright notice, this list of conditions and the following | ||
| 15 | * disclaimer in the documentation and/or other materials provided | ||
| 16 | * with the distribution. | ||
| 17 | * | ||
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
| 19 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
| 20 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
| 21 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
| 22 | * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| 23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
| 24 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
| 25 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
| 26 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
| 28 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
| 29 | * POSSIBILITY OF SUCH DAMAGE. | ||
| 30 | * | ||
| 31 | * Effort sponsored in part by the Defense Advanced Research Projects | ||
| 32 | * Agency (DARPA) and Air Force Research Laboratory, Air Force | ||
| 33 | * Materiel Command, USAF, under agreement number F30602-01-2-0537. | ||
| 34 | * | ||
| 35 | */ | ||
| 36 | |||
| 37 | #include <stdio.h> | ||
| 38 | #include <stdlib.h> | ||
| 39 | #include <string.h> | ||
| 40 | #include <signal.h> | ||
| 41 | #include "stdlib/atexit.h" | ||
| 42 | |||
| 43 | void handle_first(void); | ||
| 44 | void handle_middle(void); | ||
| 45 | void handle_last(void); | ||
| 46 | void handle_invalid(void); | ||
| 47 | void handle_cleanup(void); | ||
| 48 | void handle_signal(int); | ||
| 49 | |||
| 50 | static int counter; | ||
| 51 | |||
| 52 | int | ||
| 53 | main(int argc, char *argv[]) | ||
| 54 | { | ||
| 55 | int i; | ||
| 56 | |||
| 57 | if (argc != 2 || (strcmp(argv[1], "-valid") && | ||
| 58 | strcmp(argv[1], "-invalid-atexit") && | ||
| 59 | strcmp(argv[1], "-invalid-cleanup"))) { | ||
| 60 | fprintf(stderr, "%s -valid/-invalid-atexit/-invalid-cleanup\n", | ||
| 61 | argv[0]); | ||
| 62 | return (1); | ||
| 63 | } | ||
| 64 | fprintf(stderr, "main()\n"); | ||
| 65 | if (atexit(handle_last)) { | ||
| 66 | perror("atexit(handle_last) failed"); | ||
| 67 | return (1); | ||
| 68 | } | ||
| 69 | for (i = 0; i < 65535; ++i) { | ||
| 70 | if (atexit(handle_middle)) { | ||
| 71 | perror("atexit(handle_middle) failed"); | ||
| 72 | return (1); | ||
| 73 | } | ||
| 74 | } | ||
| 75 | if (atexit(handle_first)) { | ||
| 76 | perror("atexit(handle_first) failed"); | ||
| 77 | return (1); | ||
| 78 | } | ||
| 79 | /* this is supposed to segfault */ | ||
| 80 | if (!strcmp(argv[1], "-invalid-atexit")) { | ||
| 81 | signal(SIGSEGV, handle_signal); | ||
| 82 | __atexit->fns[0].fn_ptr.std_func = handle_invalid; | ||
| 83 | } else if (!strcmp(argv[1], "-invalid-cleanup")) { | ||
| 84 | struct atexit *p = __atexit; | ||
| 85 | |||
| 86 | signal(SIGSEGV, handle_signal); | ||
| 87 | while (p != NULL && p->next != NULL) | ||
| 88 | p = p->next; | ||
| 89 | if (p == NULL) | ||
| 90 | fprintf(stderr, "p == NULL, no page found\n"); | ||
| 91 | p->fns[0].fn_ptr.std_func = handle_invalid; | ||
| 92 | } | ||
| 93 | __atexit_register_cleanup(handle_cleanup); | ||
| 94 | counter = 0; | ||
| 95 | fprintf(stderr, "main() returns\n"); | ||
| 96 | return (0); | ||
| 97 | } | ||
| 98 | |||
| 99 | void | ||
| 100 | handle_first(void) | ||
| 101 | { | ||
| 102 | fprintf(stderr, "handle_first() counter == %i\n", counter); | ||
| 103 | } | ||
| 104 | |||
| 105 | void | ||
| 106 | handle_middle(void) | ||
| 107 | { | ||
| 108 | counter++; | ||
| 109 | } | ||
| 110 | |||
| 111 | void | ||
| 112 | handle_last(void) | ||
| 113 | { | ||
| 114 | fprintf(stderr, "handle_last() counter == %i\n", counter); | ||
| 115 | } | ||
| 116 | |||
| 117 | void | ||
| 118 | handle_cleanup(void) | ||
| 119 | { | ||
| 120 | fprintf(stderr, "handle_cleanup()\n"); | ||
| 121 | } | ||
| 122 | |||
| 123 | void | ||
| 124 | handle_invalid(void) | ||
| 125 | { | ||
| 126 | fprintf(stderr, "handle_invalid() THIS SHOULD HAVE SEGFAULTED INSTEAD!\n"); | ||
| 127 | } | ||
| 128 | |||
| 129 | void | ||
| 130 | handle_signal(int sigraised) | ||
| 131 | { | ||
| 132 | switch (sigraised) { | ||
| 133 | case SIGSEGV: | ||
| 134 | fprintf(stderr, "SIGSEGV\n"); | ||
| 135 | exit(0); | ||
| 136 | default: | ||
| 137 | fprintf(stderr, "unexpected signal caught\n"); | ||
| 138 | exit(1); | ||
| 139 | } | ||
| 140 | } | ||
diff --git a/src/regress/lib/libc/atexit/invalid.ok b/src/regress/lib/libc/atexit/invalid.ok new file mode 100644 index 0000000000..98cbf8c1de --- /dev/null +++ b/src/regress/lib/libc/atexit/invalid.ok | |||
| @@ -0,0 +1,4 @@ | |||
| 1 | main() | ||
| 2 | SIGSEGV | ||
| 3 | handle_first() counter == 0 | ||
| 4 | handle_last() counter == 65535 | ||
diff --git a/src/regress/lib/libc/atexit/valid.ok b/src/regress/lib/libc/atexit/valid.ok new file mode 100644 index 0000000000..6509e827a7 --- /dev/null +++ b/src/regress/lib/libc/atexit/valid.ok | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | main() | ||
| 2 | main() returns | ||
| 3 | handle_first() counter == 0 | ||
| 4 | handle_last() counter == 65535 | ||
| 5 | handle_cleanup() | ||
diff --git a/src/regress/lib/libc/basename/Makefile b/src/regress/lib/libc/basename/Makefile new file mode 100644 index 0000000000..958b06fd11 --- /dev/null +++ b/src/regress/lib/libc/basename/Makefile | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | PROG=basename_test | ||
| 2 | |||
| 3 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/basename/basename_test.c b/src/regress/lib/libc/basename/basename_test.c new file mode 100644 index 0000000000..34e138c726 --- /dev/null +++ b/src/regress/lib/libc/basename/basename_test.c | |||
| @@ -0,0 +1,79 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2007 Bret S. Lambert <blambert@gsipt.net> | ||
| 3 | * | ||
| 4 | * Public domain. | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <sys/param.h> | ||
| 8 | |||
| 9 | #include <libgen.h> | ||
| 10 | #include <stdio.h> | ||
| 11 | #include <string.h> | ||
| 12 | #include <limits.h> | ||
| 13 | #include <errno.h> | ||
| 14 | |||
| 15 | int | ||
| 16 | main(void) | ||
| 17 | { | ||
| 18 | char path[2 * MAXPATHLEN]; | ||
| 19 | const char *dir = "junk/"; | ||
| 20 | const char *fname = "file.name.ext"; | ||
| 21 | char *str; | ||
| 22 | int i; | ||
| 23 | |||
| 24 | /* Test normal functioning */ | ||
| 25 | strlcpy(path, "/", sizeof(path)); | ||
| 26 | strlcat(path, dir, sizeof(path)); | ||
| 27 | strlcat(path, fname, sizeof(path)); | ||
| 28 | str = basename(path); | ||
| 29 | if (strcmp(str, fname) != 0) | ||
| 30 | goto fail; | ||
| 31 | |||
| 32 | /* | ||
| 33 | * There are four states that require special handling: | ||
| 34 | * | ||
| 35 | * 1) path is NULL | ||
| 36 | * 2) path is the empty string | ||
| 37 | * 3) path is composed entirely of slashes | ||
| 38 | * 4) the resulting name is larger than MAXPATHLEN | ||
| 39 | * | ||
| 40 | * The first two cases require that a pointer | ||
| 41 | * to the string "." be returned. | ||
| 42 | * | ||
| 43 | * The third case requires that a pointer | ||
| 44 | * to the string "/" be returned. | ||
| 45 | * | ||
| 46 | * The final case requires that NULL be returned | ||
| 47 | * and errno * be set to ENAMETOOLONG. | ||
| 48 | */ | ||
| 49 | /* Case 1 */ | ||
| 50 | str = basename(NULL); | ||
| 51 | if (strcmp(str, ".") != 0) | ||
| 52 | goto fail; | ||
| 53 | |||
| 54 | /* Case 2 */ | ||
| 55 | strlcpy(path, "", sizeof(path)); | ||
| 56 | str = basename(path); | ||
| 57 | if (strcmp(str, ".") != 0) | ||
| 58 | goto fail; | ||
| 59 | |||
| 60 | /* Case 3 */ | ||
| 61 | for (i = 0; i < MAXPATHLEN - 1; i++) | ||
| 62 | strlcat(path, "/", sizeof(path)); /* path cleared above */ | ||
| 63 | str = basename(path); | ||
| 64 | if (strcmp(str, "/") != 0) | ||
| 65 | goto fail; | ||
| 66 | |||
| 67 | /* Case 4 */ | ||
| 68 | strlcpy(path, "/", sizeof(path)); | ||
| 69 | strlcat(path, dir, sizeof(path)); | ||
| 70 | for (i = 0; i <= MAXPATHLEN; i += sizeof(fname)) | ||
| 71 | strlcat(path, fname, sizeof(path)); | ||
| 72 | str = basename(path); | ||
| 73 | if (str != NULL || errno != ENAMETOOLONG) | ||
| 74 | goto fail; | ||
| 75 | |||
| 76 | return (0); | ||
| 77 | fail: | ||
| 78 | return (1); | ||
| 79 | } | ||
diff --git a/src/regress/lib/libc/cephes/Makefile b/src/regress/lib/libc/cephes/Makefile new file mode 100644 index 0000000000..75cc85f4a8 --- /dev/null +++ b/src/regress/lib/libc/cephes/Makefile | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2011/07/02 18:11:01 martynas Exp $ | ||
| 2 | |||
| 3 | PROG = ieetst | ||
| 4 | SRCS = drand.c econst.c eexp.c elog.c epow.c etanh.c etodec.c ieee.c \ | ||
| 5 | ieetst.c mtherr.c | ||
| 6 | |||
| 7 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/cephes/drand.c b/src/regress/lib/libc/cephes/drand.c new file mode 100644 index 0000000000..7f7000b4e8 --- /dev/null +++ b/src/regress/lib/libc/cephes/drand.c | |||
| @@ -0,0 +1,174 @@ | |||
| 1 | /* $OpenBSD: drand.c,v 1.1 2011/07/02 18:11:01 martynas Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | /* drand.c | ||
| 20 | * | ||
| 21 | * Pseudorandom number generator | ||
| 22 | * | ||
| 23 | * | ||
| 24 | * | ||
| 25 | * SYNOPSIS: | ||
| 26 | * | ||
| 27 | * double y, drand(); | ||
| 28 | * | ||
| 29 | * drand( &y ); | ||
| 30 | * | ||
| 31 | * | ||
| 32 | * | ||
| 33 | * DESCRIPTION: | ||
| 34 | * | ||
| 35 | * Yields a random number 1.0 <= y < 2.0. | ||
| 36 | * | ||
| 37 | * The three-generator congruential algorithm by Brian | ||
| 38 | * Wichmann and David Hill (BYTE magazine, March, 1987, | ||
| 39 | * pp 127-8) is used. The period, given by them, is | ||
| 40 | * 6953607871644. | ||
| 41 | * | ||
| 42 | * Versions invoked by the different arithmetic compile | ||
| 43 | * time options DEC, IBMPC, and MIEEE, produce | ||
| 44 | * approximately the same sequences, differing only in the | ||
| 45 | * least significant bits of the numbers. The UNK option | ||
| 46 | * implements the algorithm as recommended in the BYTE | ||
| 47 | * article. It may be used on all computers. However, | ||
| 48 | * the low order bits of a double precision number may | ||
| 49 | * not be adequately random, and may vary due to arithmetic | ||
| 50 | * implementation details on different computers. | ||
| 51 | * | ||
| 52 | * The other compile options generate an additional random | ||
| 53 | * integer that overwrites the low order bits of the double | ||
| 54 | * precision number. This reduces the period by a factor of | ||
| 55 | * two but tends to overcome the problems mentioned. | ||
| 56 | * | ||
| 57 | */ | ||
| 58 | |||
| 59 | #include "mconf.h" | ||
| 60 | |||
| 61 | |||
| 62 | /* Three-generator random number algorithm | ||
| 63 | * of Brian Wichmann and David Hill | ||
| 64 | * BYTE magazine, March, 1987 pp 127-8 | ||
| 65 | * | ||
| 66 | * The period, given by them, is (p-1)(q-1)(r-1)/4 = 6.95e12. | ||
| 67 | */ | ||
| 68 | |||
| 69 | static int sx = 1; | ||
| 70 | static int sy = 10000; | ||
| 71 | static int sz = 3000; | ||
| 72 | |||
| 73 | static union { | ||
| 74 | double d; | ||
| 75 | unsigned short s[4]; | ||
| 76 | } unkans; | ||
| 77 | |||
| 78 | /* This function implements the three | ||
| 79 | * congruential generators. | ||
| 80 | */ | ||
| 81 | |||
| 82 | static int ranwh() | ||
| 83 | { | ||
| 84 | int r, s; | ||
| 85 | |||
| 86 | /* sx = sx * 171 mod 30269 */ | ||
| 87 | r = sx/177; | ||
| 88 | s = sx - 177 * r; | ||
| 89 | sx = 171 * s - 2 * r; | ||
| 90 | if( sx < 0 ) | ||
| 91 | sx += 30269; | ||
| 92 | |||
| 93 | |||
| 94 | /* sy = sy * 172 mod 30307 */ | ||
| 95 | r = sy/176; | ||
| 96 | s = sy - 176 * r; | ||
| 97 | sy = 172 * s - 35 * r; | ||
| 98 | if( sy < 0 ) | ||
| 99 | sy += 30307; | ||
| 100 | |||
| 101 | /* sz = 170 * sz mod 30323 */ | ||
| 102 | r = sz/178; | ||
| 103 | s = sz - 178 * r; | ||
| 104 | sz = 170 * s - 63 * r; | ||
| 105 | if( sz < 0 ) | ||
| 106 | sz += 30323; | ||
| 107 | /* The results are in static sx, sy, sz. */ | ||
| 108 | return 0; | ||
| 109 | } | ||
| 110 | |||
| 111 | /* drand.c | ||
| 112 | * | ||
| 113 | * Random double precision floating point number between 1 and 2. | ||
| 114 | * | ||
| 115 | * C callable: | ||
| 116 | * drand( &x ); | ||
| 117 | */ | ||
| 118 | |||
| 119 | int drand( a ) | ||
| 120 | double *a; | ||
| 121 | { | ||
| 122 | unsigned short r; | ||
| 123 | #ifdef DEC | ||
| 124 | unsigned short s, t; | ||
| 125 | #endif | ||
| 126 | |||
| 127 | /* This algorithm of Wichmann and Hill computes a floating point | ||
| 128 | * result: | ||
| 129 | */ | ||
| 130 | ranwh(); | ||
| 131 | unkans.d = sx/30269.0 + sy/30307.0 + sz/30323.0; | ||
| 132 | r = unkans.d; | ||
| 133 | unkans.d -= r; | ||
| 134 | unkans.d += 1.0; | ||
| 135 | |||
| 136 | /* if UNK option, do nothing further. | ||
| 137 | * Otherwise, make a random 16 bit integer | ||
| 138 | * to overwrite the least significant word | ||
| 139 | * of unkans. | ||
| 140 | */ | ||
| 141 | #ifdef UNK | ||
| 142 | /* do nothing */ | ||
| 143 | #else | ||
| 144 | ranwh(); | ||
| 145 | r = sx * sy + sz; | ||
| 146 | #endif | ||
| 147 | |||
| 148 | #ifdef DEC | ||
| 149 | /* To make the numbers as similar as possible | ||
| 150 | * in all arithmetics, the random integer has | ||
| 151 | * to be inserted 3 bits higher up in a DEC number. | ||
| 152 | * An alternative would be put it 3 bits lower down | ||
| 153 | * in all the other number types. | ||
| 154 | */ | ||
| 155 | s = unkans.s[2]; | ||
| 156 | t = s & 07; /* save these bits to put in at the bottom */ | ||
| 157 | s &= 0177770; | ||
| 158 | s |= (r >> 13) & 07; | ||
| 159 | unkans.s[2] = s; | ||
| 160 | t |= r << 3; | ||
| 161 | unkans.s[3] = t; | ||
| 162 | #endif | ||
| 163 | |||
| 164 | #ifdef IBMPC | ||
| 165 | unkans.s[0] = r; | ||
| 166 | #endif | ||
| 167 | |||
| 168 | #ifdef MIEEE | ||
| 169 | unkans.s[3] = r; | ||
| 170 | #endif | ||
| 171 | |||
| 172 | *a = unkans.d; | ||
| 173 | return 0; | ||
| 174 | } | ||
diff --git a/src/regress/lib/libc/cephes/econst.c b/src/regress/lib/libc/cephes/econst.c new file mode 100644 index 0000000000..4232059e4c --- /dev/null +++ b/src/regress/lib/libc/cephes/econst.c | |||
| @@ -0,0 +1,114 @@ | |||
| 1 | /* $OpenBSD: econst.c,v 1.1 2011/07/02 18:11:01 martynas Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | /* econst.c */ | ||
| 20 | /* e type constants used by high precision check routines */ | ||
| 21 | |||
| 22 | #include "ehead.h" | ||
| 23 | |||
| 24 | |||
| 25 | #if NE == 10 | ||
| 26 | /* 0.0 */ | ||
| 27 | unsigned short ezero[NE] = | ||
| 28 | {0x0000, 0x0000, 0x0000, 0x0000, | ||
| 29 | 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,}; | ||
| 30 | |||
| 31 | /* 5.0E-1 */ | ||
| 32 | unsigned short ehalf[NE] = | ||
| 33 | {0x0000, 0x0000, 0x0000, 0x0000, | ||
| 34 | 0x0000, 0x0000, 0x0000, 0x0000, 0x8000, 0x3ffe,}; | ||
| 35 | |||
| 36 | /* 1.0E0 */ | ||
| 37 | unsigned short eone[NE] = | ||
| 38 | {0x0000, 0x0000, 0x0000, 0x0000, | ||
| 39 | 0x0000, 0x0000, 0x0000, 0x0000, 0x8000, 0x3fff,}; | ||
| 40 | |||
| 41 | /* 2.0E0 */ | ||
| 42 | unsigned short etwo[NE] = | ||
| 43 | {0x0000, 0x0000, 0x0000, 0x0000, | ||
| 44 | 0x0000, 0x0000, 0x0000, 0x0000, 0x8000, 0x4000,}; | ||
| 45 | |||
| 46 | /* 3.2E1 */ | ||
| 47 | unsigned short e32[NE] = | ||
| 48 | {0x0000, 0x0000, 0x0000, 0x0000, | ||
| 49 | 0x0000, 0x0000, 0x0000, 0x0000, 0x8000, 0x4004,}; | ||
| 50 | |||
| 51 | /* 6.93147180559945309417232121458176568075500134360255E-1 */ | ||
| 52 | unsigned short elog2[NE] = | ||
| 53 | {0x40f3, 0xf6af, 0x03f2, 0xb398, | ||
| 54 | 0xc9e3, 0x79ab, 0150717, 0013767, 0130562, 0x3ffe,}; | ||
| 55 | |||
| 56 | /* 1.41421356237309504880168872420969807856967187537695E0 */ | ||
| 57 | unsigned short esqrt2[NE] = | ||
| 58 | {0x1d6f, 0xbe9f, 0x754a, 0x89b3, | ||
| 59 | 0x597d, 0x6484, 0174736, 0171463, 0132404, 0x3fff,}; | ||
| 60 | |||
| 61 | /* 3.14159265358979323846264338327950288419716939937511E0 */ | ||
| 62 | unsigned short epi[NE] = | ||
| 63 | {0x2902, 0x1cd1, 0x80dc, 0x628b, | ||
| 64 | 0xc4c6, 0xc234, 0020550, 0155242, 0144417, 0040000,}; | ||
| 65 | |||
| 66 | /* 5.7721566490153286060651209008240243104215933593992E-1 */ | ||
| 67 | unsigned short eeul[NE] = { | ||
| 68 | 0xd1be,0xc7a4,0076660,0063743,0111704,0x3ffe,}; | ||
| 69 | |||
| 70 | #else | ||
| 71 | |||
| 72 | /* 0.0 */ | ||
| 73 | unsigned short ezero[NE] = { | ||
| 74 | 0, 0000000,0000000,0000000,0000000,0000000,}; | ||
| 75 | /* 5.0E-1 */ | ||
| 76 | unsigned short ehalf[NE] = { | ||
| 77 | 0, 0000000,0000000,0000000,0100000,0x3ffe,}; | ||
| 78 | /* 1.0E0 */ | ||
| 79 | unsigned short eone[NE] = { | ||
| 80 | 0, 0000000,0000000,0000000,0100000,0x3fff,}; | ||
| 81 | /* 2.0E0 */ | ||
| 82 | unsigned short etwo[NE] = { | ||
| 83 | 0, 0000000,0000000,0000000,0100000,0040000,}; | ||
| 84 | /* 3.2E1 */ | ||
| 85 | unsigned short e32[NE] = { | ||
| 86 | 0, 0000000,0000000,0000000,0100000,0040004,}; | ||
| 87 | /* 6.93147180559945309417232121458176568075500134360255E-1 */ | ||
| 88 | unsigned short elog2[NE] = { | ||
| 89 | 0xc9e4,0x79ab,0150717,0013767,0130562,0x3ffe,}; | ||
| 90 | /* 1.41421356237309504880168872420969807856967187537695E0 */ | ||
| 91 | unsigned short esqrt2[NE] = { | ||
| 92 | 0x597e,0x6484,0174736,0171463,0132404,0x3fff,}; | ||
| 93 | /* 2/sqrt(PI) = | ||
| 94 | * 1.12837916709551257389615890312154517168810125865800E0 */ | ||
| 95 | unsigned short eoneopi[NE] = { | ||
| 96 | 0x71d5,0x688d,0012333,0135202,0110156,0x3fff,}; | ||
| 97 | /* 3.14159265358979323846264338327950288419716939937511E0 */ | ||
| 98 | unsigned short epi[NE] = { | ||
| 99 | 0xc4c6,0xc234,0020550,0155242,0144417,0040000,}; | ||
| 100 | /* 5.7721566490153286060651209008240243104215933593992E-1 */ | ||
| 101 | unsigned short eeul[NE] = { | ||
| 102 | 0xd1be,0xc7a4,0076660,0063743,0111704,0x3ffe,}; | ||
| 103 | #endif | ||
| 104 | extern unsigned short ezero[]; | ||
| 105 | extern unsigned short ehalf[]; | ||
| 106 | extern unsigned short eone[]; | ||
| 107 | extern unsigned short etwo[]; | ||
| 108 | extern unsigned short e32[]; | ||
| 109 | extern unsigned short elog2[]; | ||
| 110 | extern unsigned short esqrt2[]; | ||
| 111 | extern unsigned short eoneopi[]; | ||
| 112 | extern unsigned short epi[]; | ||
| 113 | extern unsigned short eeul[]; | ||
| 114 | |||
diff --git a/src/regress/lib/libc/cephes/eexp.c b/src/regress/lib/libc/cephes/eexp.c new file mode 100644 index 0000000000..74f0d6adb3 --- /dev/null +++ b/src/regress/lib/libc/cephes/eexp.c | |||
| @@ -0,0 +1,86 @@ | |||
| 1 | /* $OpenBSD: eexp.c,v 1.1 2011/07/02 18:11:01 martynas Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | /* xexp.c */ | ||
| 20 | /* exponential function check routine */ | ||
| 21 | /* by Stephen L. Moshier. */ | ||
| 22 | |||
| 23 | |||
| 24 | #include "ehead.h" | ||
| 25 | |||
| 26 | void eexp( x, y ) | ||
| 27 | unsigned short *x, *y; | ||
| 28 | { | ||
| 29 | unsigned short num[NE], den[NE], x2[NE]; | ||
| 30 | long i; | ||
| 31 | unsigned short sign, expchk; | ||
| 32 | |||
| 33 | /* range reduction theory: x = i + f, 0<=f<1; | ||
| 34 | * e**x = e**i * e**f | ||
| 35 | * e**i = 2**(i/log 2). | ||
| 36 | * Let i/log2 = i1 + f1, 0<=f1<1. | ||
| 37 | * Then e**i = 2**i1 * 2**f1, so | ||
| 38 | * e**x = 2**i1 * e**(log 2 * f1) * e**f. | ||
| 39 | */ | ||
| 40 | if( ecmp(x, ezero) == 0 ) | ||
| 41 | { | ||
| 42 | emov( eone, y ); | ||
| 43 | return; | ||
| 44 | } | ||
| 45 | emov(x, x2); | ||
| 46 | expchk = x2[NE-1]; | ||
| 47 | sign = expchk & 0x8000; | ||
| 48 | x2[NE-1] &= 0x7fff; | ||
| 49 | |||
| 50 | /* Test for excessively large argument */ | ||
| 51 | expchk &= 0x7fff; | ||
| 52 | if( expchk > (EXONE + 15) ) | ||
| 53 | { | ||
| 54 | eclear( y ); | ||
| 55 | if( sign == 0 ) | ||
| 56 | einfin( y ); | ||
| 57 | return; | ||
| 58 | } | ||
| 59 | |||
| 60 | eifrac( x2, &i, num ); /* x = i + f */ | ||
| 61 | |||
| 62 | if( i != 0 ) | ||
| 63 | { | ||
| 64 | ltoe( &i, den ); /* floating point i */ | ||
| 65 | ediv( elog2, den, den ); /* i/log 2 */ | ||
| 66 | eifrac( den, &i, den ); /* i/log 2 = i1 + f1 */ | ||
| 67 | emul( elog2, den, den ); /* log 2 * f1 */ | ||
| 68 | eadd( den, num, x2 ); /* log 2 * f1 + f */ | ||
| 69 | } | ||
| 70 | |||
| 71 | /*x2[NE-1] -= 1;*/ | ||
| 72 | eldexp( x2, -1L, x2 ); /* divide by 2 */ | ||
| 73 | etanh( x2, x2 ); /* tanh( x/2 ) */ | ||
| 74 | eadd( x2, eone, num ); /* 1 + tanh */ | ||
| 75 | eneg( x2 ); | ||
| 76 | eadd( x2, eone, den ); /* 1 - tanh */ | ||
| 77 | ediv( den, num, y ); /* (1 + tanh)/(1 - tanh) */ | ||
| 78 | |||
| 79 | /*y[NE-1] += i;*/ | ||
| 80 | if( sign ) | ||
| 81 | { | ||
| 82 | ediv( y, eone, y ); | ||
| 83 | i = -i; | ||
| 84 | } | ||
| 85 | eldexp( y, i, y ); /* multiply by 2**i */ | ||
| 86 | } | ||
diff --git a/src/regress/lib/libc/cephes/ehead.h b/src/regress/lib/libc/cephes/ehead.h new file mode 100644 index 0000000000..009bcf89cc --- /dev/null +++ b/src/regress/lib/libc/cephes/ehead.h | |||
| @@ -0,0 +1,59 @@ | |||
| 1 | /* $OpenBSD: ehead.h,v 1.1 2011/07/02 18:11:01 martynas Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | /* Include file for extended precision arithmetic programs. | ||
| 20 | */ | ||
| 21 | |||
| 22 | /* Number of 16 bit words in external x type format */ | ||
| 23 | #define NE 10 | ||
| 24 | |||
| 25 | /* Number of 16 bit words in internal format */ | ||
| 26 | #define NI (NE+3) | ||
| 27 | |||
| 28 | /* Array offset to exponent */ | ||
| 29 | #define E 1 | ||
| 30 | |||
| 31 | /* Array offset to high guard word */ | ||
| 32 | #define M 2 | ||
| 33 | |||
| 34 | /* Number of bits of precision */ | ||
| 35 | #define NBITS ((NI-4)*16) | ||
| 36 | |||
| 37 | /* Maximum number of decimal digits in ASCII conversion | ||
| 38 | * = NBITS*log10(2) | ||
| 39 | */ | ||
| 40 | #define NDEC (NBITS*8/27) | ||
| 41 | |||
| 42 | /* The exponent of 1.0 */ | ||
| 43 | #define EXONE (0x3fff) | ||
| 44 | |||
| 45 | void eadd(), esub(), emul(), ediv(); | ||
| 46 | int ecmp(), enormlz(), eshift(); | ||
| 47 | void eshup1(), eshup8(), eshup6(), eshdn1(), eshdn8(), eshdn6(); | ||
| 48 | void eabs(), eneg(), emov(), eclear(), einfin(), efloor(); | ||
| 49 | void eldexp(), efrexp(), eifrac(), ltoe(); | ||
| 50 | void esqrt(), elog(), eexp(), etanh(), epow(); | ||
| 51 | void asctoe(), asctoe24(), asctoe53(), asctoe64(); | ||
| 52 | void etoasc(), e24toasc(), e53toasc(), e64toasc(); | ||
| 53 | void etoe64(), etoe53(), etoe24(), e64toe(), e53toe(), e24toe(); | ||
| 54 | int mtherr(); | ||
| 55 | extern unsigned short ezero[], ehalf[], eone[], etwo[]; | ||
| 56 | extern unsigned short elog2[], esqrt2[]; | ||
| 57 | |||
| 58 | |||
| 59 | /* by Stephen L. Moshier. */ | ||
diff --git a/src/regress/lib/libc/cephes/elog.c b/src/regress/lib/libc/cephes/elog.c new file mode 100644 index 0000000000..079cc754f4 --- /dev/null +++ b/src/regress/lib/libc/cephes/elog.c | |||
| @@ -0,0 +1,110 @@ | |||
| 1 | /* $OpenBSD: elog.c,v 1.1 2011/07/02 18:11:01 martynas Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | /* xlog.c */ | ||
| 20 | /* natural logarithm */ | ||
| 21 | /* by Stephen L. Moshier. */ | ||
| 22 | |||
| 23 | #include "mconf.h" | ||
| 24 | #include "ehead.h" | ||
| 25 | |||
| 26 | |||
| 27 | |||
| 28 | void elog( x, y ) | ||
| 29 | unsigned short *x, *y; | ||
| 30 | { | ||
| 31 | unsigned short xx[NE], z[NE], a[NE], b[NE], t[NE], qj[NE]; | ||
| 32 | long ex; | ||
| 33 | int fex; | ||
| 34 | |||
| 35 | |||
| 36 | if( x[NE-1] & (unsigned short )0x8000 ) | ||
| 37 | { | ||
| 38 | eclear(y); | ||
| 39 | mtherr( "elog", DOMAIN ); | ||
| 40 | return; | ||
| 41 | } | ||
| 42 | if( ecmp( x, ezero ) == 0 ) | ||
| 43 | { | ||
| 44 | einfin( y ); | ||
| 45 | eneg(y); | ||
| 46 | mtherr( "elog", SING ); | ||
| 47 | return; | ||
| 48 | } | ||
| 49 | if( ecmp( x, eone ) == 0 ) | ||
| 50 | { | ||
| 51 | eclear( y ); | ||
| 52 | return; | ||
| 53 | } | ||
| 54 | |||
| 55 | /* range reduction: log x = log( 2**ex * m ) = ex * log2 + log m */ | ||
| 56 | efrexp( x, &fex, xx ); | ||
| 57 | /* | ||
| 58 | emov(x, xx ); | ||
| 59 | ex = xx[NX-1] & 0x7fff; | ||
| 60 | ex -= 0x3ffe; | ||
| 61 | xx[NX-1] = 0x3ffe; | ||
| 62 | */ | ||
| 63 | |||
| 64 | /* Adjust range to 1/sqrt(2), sqrt(2) */ | ||
| 65 | esqrt2[NE-1] -= 1; | ||
| 66 | if( ecmp( xx, esqrt2 ) < 0 ) | ||
| 67 | { | ||
| 68 | fex -= 1; | ||
| 69 | emul( xx, etwo, xx ); | ||
| 70 | } | ||
| 71 | esqrt2[NE-1] += 1; | ||
| 72 | |||
| 73 | esub( eone, xx, a ); | ||
| 74 | if( a[NE-1] == 0 ) | ||
| 75 | { | ||
| 76 | eclear( y ); | ||
| 77 | goto logdon; | ||
| 78 | } | ||
| 79 | eadd( eone, xx, b ); | ||
| 80 | ediv( b, a, y ); /* store (x-1)/(x+1) in y */ | ||
| 81 | |||
| 82 | emul( y, y, z ); | ||
| 83 | |||
| 84 | emov( eone, a ); | ||
| 85 | emov( eone, b ); | ||
| 86 | emov( eone, qj ); | ||
| 87 | do | ||
| 88 | { | ||
| 89 | eadd( etwo, qj, qj ); /* 2 * i + 1 */ | ||
| 90 | emul( z, a, a ); | ||
| 91 | ediv( qj, a, t ); | ||
| 92 | eadd( t, b, b ); | ||
| 93 | } | ||
| 94 | while( ((b[NE-1] & 0x7fff) - (t[NE-1] & 0x7fff)) < NBITS ); | ||
| 95 | |||
| 96 | |||
| 97 | emul( b, y, y ); | ||
| 98 | emul( y, etwo, y ); | ||
| 99 | |||
| 100 | logdon: | ||
| 101 | |||
| 102 | /* now add log of 2**ex */ | ||
| 103 | if( fex != 0 ) | ||
| 104 | { | ||
| 105 | ex = fex; | ||
| 106 | ltoe( &ex, b ); | ||
| 107 | emul( elog2, b, b ); | ||
| 108 | eadd( b, y, y ); | ||
| 109 | } | ||
| 110 | } | ||
diff --git a/src/regress/lib/libc/cephes/epow.c b/src/regress/lib/libc/cephes/epow.c new file mode 100644 index 0000000000..646268fce7 --- /dev/null +++ b/src/regress/lib/libc/cephes/epow.c | |||
| @@ -0,0 +1,187 @@ | |||
| 1 | /* $OpenBSD: epow.c,v 1.1 2011/07/02 18:11:01 martynas Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | /* epow.c */ | ||
| 20 | /* power function: z = x**y */ | ||
| 21 | /* by Stephen L. Moshier. */ | ||
| 22 | |||
| 23 | |||
| 24 | #include "ehead.h" | ||
| 25 | |||
| 26 | extern int rndprc; | ||
| 27 | void epowi(); | ||
| 28 | |||
| 29 | void epow( x, y, z ) | ||
| 30 | unsigned short *x, *y, *z; | ||
| 31 | { | ||
| 32 | unsigned short w[NE]; | ||
| 33 | int rndsav; | ||
| 34 | long li; | ||
| 35 | |||
| 36 | efloor( y, w ); | ||
| 37 | if( ecmp(y,w) == 0 ) | ||
| 38 | { | ||
| 39 | eifrac( y, &li, w ); | ||
| 40 | if( li < 0 ) | ||
| 41 | li = -li; | ||
| 42 | if( (li < 0x7fffffff) && (li != 0x80000000) ) | ||
| 43 | { | ||
| 44 | epowi( x, y, z ); | ||
| 45 | return; | ||
| 46 | } | ||
| 47 | } | ||
| 48 | /* z = exp( y * log(x) ) */ | ||
| 49 | rndsav = rndprc; | ||
| 50 | rndprc = NBITS; | ||
| 51 | elog( x, w ); | ||
| 52 | emul( y, w, w ); | ||
| 53 | eexp( w, z ); | ||
| 54 | rndprc = rndsav; | ||
| 55 | emul( eone, z, z ); | ||
| 56 | } | ||
| 57 | |||
| 58 | |||
| 59 | /* y is integer valued. */ | ||
| 60 | |||
| 61 | void epowi( x, y, z ) | ||
| 62 | unsigned short x[], y[], z[]; | ||
| 63 | { | ||
| 64 | unsigned short w[NE]; | ||
| 65 | long li, lx; | ||
| 66 | unsigned long lu; | ||
| 67 | int rndsav; | ||
| 68 | unsigned short signx; | ||
| 69 | /* unsigned short signy; */ | ||
| 70 | |||
| 71 | rndsav = rndprc; | ||
| 72 | eifrac( y, &li, w ); | ||
| 73 | if( li < 0 ) | ||
| 74 | lx = -li; | ||
| 75 | else | ||
| 76 | lx = li; | ||
| 77 | |||
| 78 | if( (lx == 0x7fffffff) || (lx == 0x80000000) ) | ||
| 79 | { | ||
| 80 | epow( x, y, z ); | ||
| 81 | goto done; | ||
| 82 | } | ||
| 83 | |||
| 84 | if( (x[NE-1] & (unsigned short )0x7fff) == 0 ) | ||
| 85 | { | ||
| 86 | if( li == 0 ) | ||
| 87 | { | ||
| 88 | emov( eone, z ); | ||
| 89 | return; | ||
| 90 | } | ||
| 91 | else if( li < 0 ) | ||
| 92 | { | ||
| 93 | einfin( z ); | ||
| 94 | return; | ||
| 95 | } | ||
| 96 | else | ||
| 97 | { | ||
| 98 | eclear( z ); | ||
| 99 | return; | ||
| 100 | } | ||
| 101 | } | ||
| 102 | |||
| 103 | if( li == 0L ) | ||
| 104 | { | ||
| 105 | emov( eone, z ); | ||
| 106 | return; | ||
| 107 | } | ||
| 108 | |||
| 109 | emov( x, w ); | ||
| 110 | signx = w[NE-1] & (unsigned short )0x8000; | ||
| 111 | w[NE-1] &= (unsigned short )0x7fff; | ||
| 112 | |||
| 113 | /* Overflow detection */ | ||
| 114 | /* | ||
| 115 | lx = li * (w[NE-1] - 0x3fff); | ||
| 116 | if( lx > 16385L ) | ||
| 117 | { | ||
| 118 | einfin( z ); | ||
| 119 | mtherr( "epowi", OVERFLOW ); | ||
| 120 | goto done; | ||
| 121 | } | ||
| 122 | if( lx < -16450L ) | ||
| 123 | { | ||
| 124 | eclear( z ); | ||
| 125 | return; | ||
| 126 | } | ||
| 127 | */ | ||
| 128 | rndprc = NBITS; | ||
| 129 | |||
| 130 | if( li < 0 ) | ||
| 131 | { | ||
| 132 | lu = (unsigned int )( -li ); | ||
| 133 | /* signy = 0xffff;*/ | ||
| 134 | ediv( w, eone, w ); | ||
| 135 | } | ||
| 136 | else | ||
| 137 | { | ||
| 138 | lu = (unsigned int )li; | ||
| 139 | /* signy = 0;*/ | ||
| 140 | } | ||
| 141 | |||
| 142 | /* First bit of the power */ | ||
| 143 | if( lu & 1 ) | ||
| 144 | { | ||
| 145 | emov( w, z ); | ||
| 146 | } | ||
| 147 | else | ||
| 148 | { | ||
| 149 | emov( eone, z ); | ||
| 150 | signx = 0; | ||
| 151 | } | ||
| 152 | |||
| 153 | |||
| 154 | lu >>= 1; | ||
| 155 | while( lu != 0L ) | ||
| 156 | { | ||
| 157 | emul( w, w, w ); /* arg to the 2-to-the-kth power */ | ||
| 158 | if( lu & 1L ) /* if that bit is set, then include in product */ | ||
| 159 | emul( w, z, z ); | ||
| 160 | lu >>= 1; | ||
| 161 | } | ||
| 162 | |||
| 163 | |||
| 164 | done: | ||
| 165 | |||
| 166 | if( signx ) | ||
| 167 | eneg( z ); /* odd power of negative number */ | ||
| 168 | |||
| 169 | /* | ||
| 170 | if( signy ) | ||
| 171 | { | ||
| 172 | if( ecmp( z, ezero ) != 0 ) | ||
| 173 | { | ||
| 174 | ediv( z, eone, z ); | ||
| 175 | } | ||
| 176 | else | ||
| 177 | { | ||
| 178 | einfin( z ); | ||
| 179 | printf( "epowi OVERFLOW\n" ); | ||
| 180 | } | ||
| 181 | } | ||
| 182 | */ | ||
| 183 | rndprc = rndsav; | ||
| 184 | emul( eone, z, z ); | ||
| 185 | } | ||
| 186 | |||
| 187 | |||
diff --git a/src/regress/lib/libc/cephes/etanh.c b/src/regress/lib/libc/cephes/etanh.c new file mode 100644 index 0000000000..4ac5ff1c21 --- /dev/null +++ b/src/regress/lib/libc/cephes/etanh.c | |||
| @@ -0,0 +1,70 @@ | |||
| 1 | /* $OpenBSD: etanh.c,v 1.1 2011/07/02 18:11:01 martynas Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | /* xtanh.c */ | ||
| 20 | /* hyperbolic tangent check routine */ | ||
| 21 | /* this subroutine is used by the exponential function routine */ | ||
| 22 | /* by Stephen L. Moshier. */ | ||
| 23 | |||
| 24 | |||
| 25 | |||
| 26 | #include "ehead.h" | ||
| 27 | |||
| 28 | |||
| 29 | void etanh( x, y ) | ||
| 30 | unsigned short *x, *y; | ||
| 31 | { | ||
| 32 | unsigned short e[NE], r[NE], j[NE], xx[NE], m2[NE]; | ||
| 33 | short i, n; | ||
| 34 | long lj; | ||
| 35 | |||
| 36 | emov( x, r ); | ||
| 37 | r[NE-1] &= (unsigned short )0x7fff; | ||
| 38 | if( ecmp(r, eone) >= 0 ) | ||
| 39 | { | ||
| 40 | /* tanh(x) = (exp(x) - exp(-x)) / (exp(x) + exp(-x)) | ||
| 41 | * Note eexp() calls xtanh, but with an argument less than (1 + log 2)/2. | ||
| 42 | */ | ||
| 43 | eexp( r, e ); | ||
| 44 | ediv( e, eone, r ); | ||
| 45 | esub( r, e, xx ); | ||
| 46 | eadd( r, e, j ); | ||
| 47 | ediv( j, xx, y ); | ||
| 48 | return; | ||
| 49 | } | ||
| 50 | |||
| 51 | emov( etwo, m2 ); | ||
| 52 | eneg( m2 ); | ||
| 53 | |||
| 54 | n = NBITS/8; /* Number of terms to do in the continued fraction */ | ||
| 55 | lj = 2 * n + 1; | ||
| 56 | ltoe( &lj, j ); | ||
| 57 | |||
| 58 | emov( j, e ); | ||
| 59 | emul( x, x, xx ); | ||
| 60 | |||
| 61 | /* continued fraction */ | ||
| 62 | for( i=0; i<n; i++) | ||
| 63 | { | ||
| 64 | ediv( e, xx, r ); | ||
| 65 | eadd( m2, j, j ); | ||
| 66 | eadd( r, j, e ); | ||
| 67 | } | ||
| 68 | |||
| 69 | ediv( e, x, y ); | ||
| 70 | } | ||
diff --git a/src/regress/lib/libc/cephes/etodec.c b/src/regress/lib/libc/cephes/etodec.c new file mode 100644 index 0000000000..a15845efb6 --- /dev/null +++ b/src/regress/lib/libc/cephes/etodec.c | |||
| @@ -0,0 +1,199 @@ | |||
| 1 | /* $OpenBSD: etodec.c,v 1.1 2011/07/02 18:11:01 martynas Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | #include "ehead.h" | ||
| 20 | void emovi(), emovo(), ecleaz(), eshdn8(), emdnorm(); | ||
| 21 | void todec(); | ||
| 22 | /* | ||
| 23 | ; convert DEC double precision to e type | ||
| 24 | ; double d; | ||
| 25 | ; short e[NE]; | ||
| 26 | ; dectoe( &d, e ); | ||
| 27 | */ | ||
| 28 | void dectoe( d, e ) | ||
| 29 | unsigned short *d; | ||
| 30 | unsigned short *e; | ||
| 31 | { | ||
| 32 | unsigned short y[NI]; | ||
| 33 | register unsigned short r, *p; | ||
| 34 | |||
| 35 | ecleaz(y); /* start with a zero */ | ||
| 36 | p = y; /* point to our number */ | ||
| 37 | r = *d; /* get DEC exponent word */ | ||
| 38 | if( *d & (unsigned int )0x8000 ) | ||
| 39 | *p = 0xffff; /* fill in our sign */ | ||
| 40 | ++p; /* bump pointer to our exponent word */ | ||
| 41 | r &= 0x7fff; /* strip the sign bit */ | ||
| 42 | if( r == 0 ) /* answer = 0 if high order DEC word = 0 */ | ||
| 43 | goto done; | ||
| 44 | |||
| 45 | |||
| 46 | r >>= 7; /* shift exponent word down 7 bits */ | ||
| 47 | r += EXONE - 0201; /* subtract DEC exponent offset */ | ||
| 48 | /* add our e type exponent offset */ | ||
| 49 | *p++ = r; /* to form our exponent */ | ||
| 50 | |||
| 51 | r = *d++; /* now do the high order mantissa */ | ||
| 52 | r &= 0177; /* strip off the DEC exponent and sign bits */ | ||
| 53 | r |= 0200; /* the DEC understood high order mantissa bit */ | ||
| 54 | *p++ = r; /* put result in our high guard word */ | ||
| 55 | |||
| 56 | *p++ = *d++; /* fill in the rest of our mantissa */ | ||
| 57 | *p++ = *d++; | ||
| 58 | *p = *d; | ||
| 59 | |||
| 60 | eshdn8(y); /* shift our mantissa down 8 bits */ | ||
| 61 | done: | ||
| 62 | emovo( y, e ); | ||
| 63 | } | ||
| 64 | |||
| 65 | |||
| 66 | |||
| 67 | /* | ||
| 68 | ; convert e type to DEC double precision | ||
| 69 | ; double d; | ||
| 70 | ; short e[NE]; | ||
| 71 | ; etodec( e, &d ); | ||
| 72 | */ | ||
| 73 | #if 0 | ||
| 74 | static unsigned short decbit[NI] = {0,0,0,0,0,0,0200,0}; | ||
| 75 | void etodec( x, d ) | ||
| 76 | unsigned short *x, *d; | ||
| 77 | { | ||
| 78 | unsigned short xi[NI]; | ||
| 79 | register unsigned short r; | ||
| 80 | int i, j; | ||
| 81 | |||
| 82 | emovi( x, xi ); | ||
| 83 | *d = 0; | ||
| 84 | if( xi[0] != 0 ) | ||
| 85 | *d = 0100000; | ||
| 86 | r = xi[E]; | ||
| 87 | if( r < (EXONE - 128) ) | ||
| 88 | goto zout; | ||
| 89 | i = xi[M+4]; | ||
| 90 | if( (i & 0200) != 0 ) | ||
| 91 | { | ||
| 92 | if( (i & 0377) == 0200 ) | ||
| 93 | { | ||
| 94 | if( (i & 0400) != 0 ) | ||
| 95 | { | ||
| 96 | /* check all less significant bits */ | ||
| 97 | for( j=M+5; j<NI; j++ ) | ||
| 98 | { | ||
| 99 | if( xi[j] != 0 ) | ||
| 100 | goto yesrnd; | ||
| 101 | } | ||
| 102 | } | ||
| 103 | goto nornd; | ||
| 104 | } | ||
| 105 | yesrnd: | ||
| 106 | eaddm( decbit, xi ); | ||
| 107 | r -= enormlz(xi); | ||
| 108 | } | ||
| 109 | |||
| 110 | nornd: | ||
| 111 | |||
| 112 | r -= EXONE; | ||
| 113 | r += 0201; | ||
| 114 | if( r < 0 ) | ||
| 115 | { | ||
| 116 | zout: | ||
| 117 | *d++ = 0; | ||
| 118 | *d++ = 0; | ||
| 119 | *d++ = 0; | ||
| 120 | *d++ = 0; | ||
| 121 | return; | ||
| 122 | } | ||
| 123 | if( r >= 0377 ) | ||
| 124 | { | ||
| 125 | *d++ = 077777; | ||
| 126 | *d++ = -1; | ||
| 127 | *d++ = -1; | ||
| 128 | *d++ = -1; | ||
| 129 | return; | ||
| 130 | } | ||
| 131 | r &= 0377; | ||
| 132 | r <<= 7; | ||
| 133 | eshup8( xi ); | ||
| 134 | xi[M] &= 0177; | ||
| 135 | r |= xi[M]; | ||
| 136 | *d++ |= r; | ||
| 137 | *d++ = xi[M+1]; | ||
| 138 | *d++ = xi[M+2]; | ||
| 139 | *d++ = xi[M+3]; | ||
| 140 | } | ||
| 141 | #else | ||
| 142 | |||
| 143 | extern int rndprc; | ||
| 144 | |||
| 145 | void etodec( x, d ) | ||
| 146 | unsigned short *x, *d; | ||
| 147 | { | ||
| 148 | unsigned short xi[NI]; | ||
| 149 | long exp; | ||
| 150 | int rndsav; | ||
| 151 | |||
| 152 | emovi( x, xi ); | ||
| 153 | exp = (long )xi[E] - (EXONE - 0201); /* adjust exponent for offsets */ | ||
| 154 | /* round off to nearest or even */ | ||
| 155 | rndsav = rndprc; | ||
| 156 | rndprc = 56; | ||
| 157 | emdnorm( xi, 0, 0, exp, 64 ); | ||
| 158 | rndprc = rndsav; | ||
| 159 | todec( xi, d ); | ||
| 160 | } | ||
| 161 | |||
| 162 | void todec( x, y ) | ||
| 163 | unsigned short *x, *y; | ||
| 164 | { | ||
| 165 | unsigned short i; | ||
| 166 | unsigned short *p; | ||
| 167 | |||
| 168 | p = x; | ||
| 169 | *y = 0; | ||
| 170 | if( *p++ ) | ||
| 171 | *y = 0100000; | ||
| 172 | i = *p++; | ||
| 173 | if( i == 0 ) | ||
| 174 | { | ||
| 175 | *y++ = 0; | ||
| 176 | *y++ = 0; | ||
| 177 | *y++ = 0; | ||
| 178 | *y++ = 0; | ||
| 179 | return; | ||
| 180 | } | ||
| 181 | if( i > 0377 ) | ||
| 182 | { | ||
| 183 | *y++ |= 077777; | ||
| 184 | *y++ = 0xffff; | ||
| 185 | *y++ = 0xffff; | ||
| 186 | *y++ = 0xffff; | ||
| 187 | return; | ||
| 188 | } | ||
| 189 | i &= 0377; | ||
| 190 | i <<= 7; | ||
| 191 | eshup8( x ); | ||
| 192 | x[M] &= 0177; | ||
| 193 | i |= x[M]; | ||
| 194 | *y++ |= i; | ||
| 195 | *y++ = x[M+1]; | ||
| 196 | *y++ = x[M+2]; | ||
| 197 | *y++ = x[M+3]; | ||
| 198 | } | ||
| 199 | #endif | ||
diff --git a/src/regress/lib/libc/cephes/ieee.c b/src/regress/lib/libc/cephes/ieee.c new file mode 100644 index 0000000000..e2b8aa7b99 --- /dev/null +++ b/src/regress/lib/libc/cephes/ieee.c | |||
| @@ -0,0 +1,4153 @@ | |||
| 1 | /* $OpenBSD: ieee.c,v 1.1 2011/07/02 18:11:01 martynas Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | /* ieee.c | ||
| 20 | * | ||
| 21 | * Extended precision IEEE binary floating point arithmetic routines | ||
| 22 | * | ||
| 23 | * Numbers are stored in C language as arrays of 16-bit unsigned | ||
| 24 | * short integers. The arguments of the routines are pointers to | ||
| 25 | * the arrays. | ||
| 26 | * | ||
| 27 | * | ||
| 28 | * External e type data structure, simulates Intel 8087 chip | ||
| 29 | * temporary real format but possibly with a larger significand: | ||
| 30 | * | ||
| 31 | * NE-1 significand words (least significant word first, | ||
| 32 | * most significant bit is normally set) | ||
| 33 | * exponent (value = EXONE for 1.0, | ||
| 34 | * top bit is the sign) | ||
| 35 | * | ||
| 36 | * | ||
| 37 | * Internal data structure of a number (a "word" is 16 bits): | ||
| 38 | * | ||
| 39 | * ei[0] sign word (0 for positive, 0xffff for negative) | ||
| 40 | * ei[1] biased exponent (value = EXONE for the number 1.0) | ||
| 41 | * ei[2] high guard word (always zero after normalization) | ||
| 42 | * ei[3] | ||
| 43 | * to ei[NI-2] significand (NI-4 significand words, | ||
| 44 | * most significant word first, | ||
| 45 | * most significant bit is set) | ||
| 46 | * ei[NI-1] low guard word (0x8000 bit is rounding place) | ||
| 47 | * | ||
| 48 | * | ||
| 49 | * | ||
| 50 | * Routines for external format numbers | ||
| 51 | * | ||
| 52 | * asctoe( string, e ) ASCII string to extended double e type | ||
| 53 | * asctoe64( string, &d ) ASCII string to long double | ||
| 54 | * asctoe53( string, &d ) ASCII string to double | ||
| 55 | * asctoe24( string, &f ) ASCII string to single | ||
| 56 | * asctoeg( string, e, prec ) ASCII string to specified precision | ||
| 57 | * e24toe( &f, e ) IEEE single precision to e type | ||
| 58 | * e53toe( &d, e ) IEEE double precision to e type | ||
| 59 | * e64toe( &d, e ) IEEE long double precision to e type | ||
| 60 | * eabs(e) absolute value | ||
| 61 | * eadd( a, b, c ) c = b + a | ||
| 62 | * eclear(e) e = 0 | ||
| 63 | * ecmp (a, b) Returns 1 if a > b, 0 if a == b, | ||
| 64 | * -1 if a < b, -2 if either a or b is a NaN. | ||
| 65 | * ediv( a, b, c ) c = b / a | ||
| 66 | * efloor( a, b ) truncate to integer, toward -infinity | ||
| 67 | * efrexp( a, exp, s ) extract exponent and significand | ||
| 68 | * eifrac( e, &l, frac ) e to long integer and e type fraction | ||
| 69 | * euifrac( e, &l, frac ) e to unsigned long integer and e type fraction | ||
| 70 | * einfin( e ) set e to infinity, leaving its sign alone | ||
| 71 | * eldexp( a, n, b ) multiply by 2**n | ||
| 72 | * emov( a, b ) b = a | ||
| 73 | * emul( a, b, c ) c = b * a | ||
| 74 | * eneg(e) e = -e | ||
| 75 | * eround( a, b ) b = nearest integer value to a | ||
| 76 | * esub( a, b, c ) c = b - a | ||
| 77 | * e24toasc( &f, str, n ) single to ASCII string, n digits after decimal | ||
| 78 | * e53toasc( &d, str, n ) double to ASCII string, n digits after decimal | ||
| 79 | * e64toasc( &d, str, n ) long double to ASCII string | ||
| 80 | * etoasc( e, str, n ) e to ASCII string, n digits after decimal | ||
| 81 | * etoe24( e, &f ) convert e type to IEEE single precision | ||
| 82 | * etoe53( e, &d ) convert e type to IEEE double precision | ||
| 83 | * etoe64( e, &d ) convert e type to IEEE long double precision | ||
| 84 | * ltoe( &l, e ) long (32 bit) integer to e type | ||
| 85 | * ultoe( &l, e ) unsigned long (32 bit) integer to e type | ||
| 86 | * eisneg( e ) 1 if sign bit of e != 0, else 0 | ||
| 87 | * eisinf( e ) 1 if e has maximum exponent (non-IEEE) | ||
| 88 | * or is infinite (IEEE) | ||
| 89 | * eisnan( e ) 1 if e is a NaN | ||
| 90 | * esqrt( a, b ) b = square root of a | ||
| 91 | * | ||
| 92 | * | ||
| 93 | * Routines for internal format numbers | ||
| 94 | * | ||
| 95 | * eaddm( ai, bi ) add significands, bi = bi + ai | ||
| 96 | * ecleaz(ei) ei = 0 | ||
| 97 | * ecleazs(ei) set ei = 0 but leave its sign alone | ||
| 98 | * ecmpm( ai, bi ) compare significands, return 1, 0, or -1 | ||
| 99 | * edivm( ai, bi ) divide significands, bi = bi / ai | ||
| 100 | * emdnorm(ai,l,s,exp) normalize and round off | ||
| 101 | * emovi( a, ai ) convert external a to internal ai | ||
| 102 | * emovo( ai, a ) convert internal ai to external a | ||
| 103 | * emovz( ai, bi ) bi = ai, low guard word of bi = 0 | ||
| 104 | * emulm( ai, bi ) multiply significands, bi = bi * ai | ||
| 105 | * enormlz(ei) left-justify the significand | ||
| 106 | * eshdn1( ai ) shift significand and guards down 1 bit | ||
| 107 | * eshdn8( ai ) shift down 8 bits | ||
| 108 | * eshdn6( ai ) shift down 16 bits | ||
| 109 | * eshift( ai, n ) shift ai n bits up (or down if n < 0) | ||
| 110 | * eshup1( ai ) shift significand and guards up 1 bit | ||
| 111 | * eshup8( ai ) shift up 8 bits | ||
| 112 | * eshup6( ai ) shift up 16 bits | ||
| 113 | * esubm( ai, bi ) subtract significands, bi = bi - ai | ||
| 114 | * | ||
| 115 | * | ||
| 116 | * The result is always normalized and rounded to NI-4 word precision | ||
| 117 | * after each arithmetic operation. | ||
| 118 | * | ||
| 119 | * Exception flags are NOT fully supported. | ||
| 120 | * | ||
| 121 | * Define INFINITY in mconf.h for support of infinity; otherwise a | ||
| 122 | * saturation arithmetic is implemented. | ||
| 123 | * | ||
| 124 | * Define NANS for support of Not-a-Number items; otherwise the | ||
| 125 | * arithmetic will never produce a NaN output, and might be confused | ||
| 126 | * by a NaN input. | ||
| 127 | * If NaN's are supported, the output of ecmp(a,b) is -2 if | ||
| 128 | * either a or b is a NaN. This means asking if(ecmp(a,b) < 0) | ||
| 129 | * may not be legitimate. Use if(ecmp(a,b) == -1) for less-than | ||
| 130 | * if in doubt. | ||
| 131 | * Signaling NaN's are NOT supported; they are treated the same | ||
| 132 | * as quiet NaN's. | ||
| 133 | * | ||
| 134 | * Denormals are always supported here where appropriate (e.g., not | ||
| 135 | * for conversion to DEC numbers). | ||
| 136 | */ | ||
| 137 | |||
| 138 | /* | ||
| 139 | * Revision history: | ||
| 140 | * | ||
| 141 | * 5 Jan 84 PDP-11 assembly language version | ||
| 142 | * 2 Mar 86 fixed bug in asctoq() | ||
| 143 | * 6 Dec 86 C language version | ||
| 144 | * 30 Aug 88 100 digit version, improved rounding | ||
| 145 | * 15 May 92 80-bit long double support | ||
| 146 | * | ||
| 147 | * Author: S. L. Moshier. | ||
| 148 | */ | ||
| 149 | |||
| 150 | #include <stdio.h> | ||
| 151 | #include "mconf.h" | ||
| 152 | #include "ehead.h" | ||
| 153 | |||
| 154 | /* Change UNK into something else. */ | ||
| 155 | #ifdef UNK | ||
| 156 | #undef UNK | ||
| 157 | #if BIGENDIAN | ||
| 158 | #define MIEEE 1 | ||
| 159 | #else | ||
| 160 | #define IBMPC 1 | ||
| 161 | #endif | ||
| 162 | #endif | ||
| 163 | |||
| 164 | /* NaN's require infinity support. */ | ||
| 165 | #ifdef NANS | ||
| 166 | #ifndef INFINITY | ||
| 167 | #define INFINITY | ||
| 168 | #endif | ||
| 169 | #endif | ||
| 170 | |||
| 171 | /* This handles 64-bit long ints. */ | ||
| 172 | #define LONGBITS (8 * sizeof(long)) | ||
| 173 | |||
| 174 | /* Control register for rounding precision. | ||
| 175 | * This can be set to 80 (if NE=6), 64, 56, 53, or 24 bits. | ||
| 176 | */ | ||
| 177 | int rndprc = NBITS; | ||
| 178 | extern int rndprc; | ||
| 179 | |||
| 180 | void eaddm(), esubm(), emdnorm(), asctoeg(), enan(); | ||
| 181 | static void toe24(), toe53(), toe64(), toe113(); | ||
| 182 | void eremain(), einit(), eiremain(); | ||
| 183 | int ecmpm(), edivm(), emulm(), eisneg(), eisinf(); | ||
| 184 | void emovi(), emovo(), emovz(), ecleaz(), eadd1(); | ||
| 185 | void etodec(), todec(), dectoe(); | ||
| 186 | int eisnan(), eiisnan(); | ||
| 187 | |||
| 188 | |||
| 189 | |||
| 190 | void einit() | ||
| 191 | { | ||
| 192 | } | ||
| 193 | |||
| 194 | /* | ||
| 195 | ; Clear out entire external format number. | ||
| 196 | ; | ||
| 197 | ; unsigned short x[]; | ||
| 198 | ; eclear( x ); | ||
| 199 | */ | ||
| 200 | |||
| 201 | void eclear( x ) | ||
| 202 | register unsigned short *x; | ||
| 203 | { | ||
| 204 | register int i; | ||
| 205 | |||
| 206 | for( i=0; i<NE; i++ ) | ||
| 207 | *x++ = 0; | ||
| 208 | } | ||
| 209 | |||
| 210 | |||
| 211 | |||
| 212 | /* Move external format number from a to b. | ||
| 213 | * | ||
| 214 | * emov( a, b ); | ||
| 215 | */ | ||
| 216 | |||
| 217 | void emov( a, b ) | ||
| 218 | register unsigned short *a, *b; | ||
| 219 | { | ||
| 220 | register int i; | ||
| 221 | |||
| 222 | for( i=0; i<NE; i++ ) | ||
| 223 | *b++ = *a++; | ||
| 224 | } | ||
| 225 | |||
| 226 | |||
| 227 | /* | ||
| 228 | ; Absolute value of external format number | ||
| 229 | ; | ||
| 230 | ; short x[NE]; | ||
| 231 | ; eabs( x ); | ||
| 232 | */ | ||
| 233 | |||
| 234 | void eabs(x) | ||
| 235 | unsigned short x[]; /* x is the memory address of a short */ | ||
| 236 | { | ||
| 237 | |||
| 238 | x[NE-1] &= 0x7fff; /* sign is top bit of last word of external format */ | ||
| 239 | } | ||
| 240 | |||
| 241 | |||
| 242 | |||
| 243 | |||
| 244 | /* | ||
| 245 | ; Negate external format number | ||
| 246 | ; | ||
| 247 | ; unsigned short x[NE]; | ||
| 248 | ; eneg( x ); | ||
| 249 | */ | ||
| 250 | |||
| 251 | void eneg(x) | ||
| 252 | unsigned short x[]; | ||
| 253 | { | ||
| 254 | |||
| 255 | #ifdef NANS | ||
| 256 | if( eisnan(x) ) | ||
| 257 | return; | ||
| 258 | #endif | ||
| 259 | x[NE-1] ^= 0x8000; /* Toggle the sign bit */ | ||
| 260 | } | ||
| 261 | |||
| 262 | |||
| 263 | |||
| 264 | /* Return 1 if external format number is negative, | ||
| 265 | * else return zero. | ||
| 266 | */ | ||
| 267 | int eisneg(x) | ||
| 268 | unsigned short x[]; | ||
| 269 | { | ||
| 270 | |||
| 271 | #ifdef NANS | ||
| 272 | if( eisnan(x) ) | ||
| 273 | return( 0 ); | ||
| 274 | #endif | ||
| 275 | if( x[NE-1] & 0x8000 ) | ||
| 276 | return( 1 ); | ||
| 277 | else | ||
| 278 | return( 0 ); | ||
| 279 | } | ||
| 280 | |||
| 281 | |||
| 282 | /* Return 1 if external format number has maximum possible exponent, | ||
| 283 | * else return zero. | ||
| 284 | */ | ||
| 285 | int eisinf(x) | ||
| 286 | unsigned short x[]; | ||
| 287 | { | ||
| 288 | |||
| 289 | if( (x[NE-1] & 0x7fff) == 0x7fff ) | ||
| 290 | { | ||
| 291 | #ifdef NANS | ||
| 292 | if( eisnan(x) ) | ||
| 293 | return( 0 ); | ||
| 294 | #endif | ||
| 295 | return( 1 ); | ||
| 296 | } | ||
| 297 | else | ||
| 298 | return( 0 ); | ||
| 299 | } | ||
| 300 | |||
| 301 | /* Check if e-type number is not a number. | ||
| 302 | */ | ||
| 303 | int eisnan(x) | ||
| 304 | unsigned short x[]; | ||
| 305 | { | ||
| 306 | |||
| 307 | #ifdef NANS | ||
| 308 | int i; | ||
| 309 | /* NaN has maximum exponent */ | ||
| 310 | if( (x[NE-1] & 0x7fff) != 0x7fff ) | ||
| 311 | return (0); | ||
| 312 | /* ... and non-zero significand field. */ | ||
| 313 | for( i=0; i<NE-1; i++ ) | ||
| 314 | { | ||
| 315 | if( *x++ != 0 ) | ||
| 316 | return (1); | ||
| 317 | } | ||
| 318 | #endif | ||
| 319 | return (0); | ||
| 320 | } | ||
| 321 | |||
| 322 | /* | ||
| 323 | ; Fill entire number, including exponent and significand, with | ||
| 324 | ; largest possible number. These programs implement a saturation | ||
| 325 | ; value that is an ordinary, legal number. A special value | ||
| 326 | ; "infinity" may also be implemented; this would require tests | ||
| 327 | ; for that value and implementation of special rules for arithmetic | ||
| 328 | ; operations involving inifinity. | ||
| 329 | */ | ||
| 330 | |||
| 331 | void einfin(x) | ||
| 332 | register unsigned short *x; | ||
| 333 | { | ||
| 334 | register int i; | ||
| 335 | |||
| 336 | #ifdef INFINITY | ||
| 337 | for( i=0; i<NE-1; i++ ) | ||
| 338 | *x++ = 0; | ||
| 339 | *x |= 32767; | ||
| 340 | #else | ||
| 341 | for( i=0; i<NE-1; i++ ) | ||
| 342 | *x++ = 0xffff; | ||
| 343 | *x |= 32766; | ||
| 344 | if( rndprc < NBITS ) | ||
| 345 | { | ||
| 346 | if (rndprc == 113) | ||
| 347 | { | ||
| 348 | *(x - 9) = 0; | ||
| 349 | *(x - 8) = 0; | ||
| 350 | } | ||
| 351 | if( rndprc == 64 ) | ||
| 352 | { | ||
| 353 | *(x-5) = 0; | ||
| 354 | } | ||
| 355 | if( rndprc == 53 ) | ||
| 356 | { | ||
| 357 | *(x-4) = 0xf800; | ||
| 358 | } | ||
| 359 | else | ||
| 360 | { | ||
| 361 | *(x-4) = 0; | ||
| 362 | *(x-3) = 0; | ||
| 363 | *(x-2) = 0xff00; | ||
| 364 | } | ||
| 365 | } | ||
| 366 | #endif | ||
| 367 | } | ||
| 368 | |||
| 369 | |||
| 370 | |||
| 371 | /* Move in external format number, | ||
| 372 | * converting it to internal format. | ||
| 373 | */ | ||
| 374 | void emovi( a, b ) | ||
| 375 | unsigned short *a, *b; | ||
| 376 | { | ||
| 377 | register unsigned short *p, *q; | ||
| 378 | int i; | ||
| 379 | |||
| 380 | q = b; | ||
| 381 | p = a + (NE-1); /* point to last word of external number */ | ||
| 382 | /* get the sign bit */ | ||
| 383 | if( *p & 0x8000 ) | ||
| 384 | *q++ = 0xffff; | ||
| 385 | else | ||
| 386 | *q++ = 0; | ||
| 387 | /* get the exponent */ | ||
| 388 | *q = *p--; | ||
| 389 | *q++ &= 0x7fff; /* delete the sign bit */ | ||
| 390 | #ifdef INFINITY | ||
| 391 | if( (*(q-1) & 0x7fff) == 0x7fff ) | ||
| 392 | { | ||
| 393 | #ifdef NANS | ||
| 394 | if( eisnan(a) ) | ||
| 395 | { | ||
| 396 | *q++ = 0; | ||
| 397 | for( i=3; i<NI; i++ ) | ||
| 398 | *q++ = *p--; | ||
| 399 | return; | ||
| 400 | } | ||
| 401 | #endif | ||
| 402 | for( i=2; i<NI; i++ ) | ||
| 403 | *q++ = 0; | ||
| 404 | return; | ||
| 405 | } | ||
| 406 | #endif | ||
| 407 | /* clear high guard word */ | ||
| 408 | *q++ = 0; | ||
| 409 | /* move in the significand */ | ||
| 410 | for( i=0; i<NE-1; i++ ) | ||
| 411 | *q++ = *p--; | ||
| 412 | /* clear low guard word */ | ||
| 413 | *q = 0; | ||
| 414 | } | ||
| 415 | |||
| 416 | |||
| 417 | /* Move internal format number out, | ||
| 418 | * converting it to external format. | ||
| 419 | */ | ||
| 420 | void emovo( a, b ) | ||
| 421 | unsigned short *a, *b; | ||
| 422 | { | ||
| 423 | register unsigned short *p, *q; | ||
| 424 | unsigned short i; | ||
| 425 | |||
| 426 | p = a; | ||
| 427 | q = b + (NE-1); /* point to output exponent */ | ||
| 428 | /* combine sign and exponent */ | ||
| 429 | i = *p++; | ||
| 430 | if( i ) | ||
| 431 | *q-- = *p++ | 0x8000; | ||
| 432 | else | ||
| 433 | *q-- = *p++; | ||
| 434 | #ifdef INFINITY | ||
| 435 | if( *(p-1) == 0x7fff ) | ||
| 436 | { | ||
| 437 | #ifdef NANS | ||
| 438 | if( eiisnan(a) ) | ||
| 439 | { | ||
| 440 | enan( b, NBITS ); | ||
| 441 | return; | ||
| 442 | } | ||
| 443 | #endif | ||
| 444 | einfin(b); | ||
| 445 | return; | ||
| 446 | } | ||
| 447 | #endif | ||
| 448 | /* skip over guard word */ | ||
| 449 | ++p; | ||
| 450 | /* move the significand */ | ||
| 451 | for( i=0; i<NE-1; i++ ) | ||
| 452 | *q-- = *p++; | ||
| 453 | } | ||
| 454 | |||
| 455 | |||
| 456 | |||
| 457 | |||
| 458 | /* Clear out internal format number. | ||
| 459 | */ | ||
| 460 | |||
| 461 | void ecleaz( xi ) | ||
| 462 | register unsigned short *xi; | ||
| 463 | { | ||
| 464 | register int i; | ||
| 465 | |||
| 466 | for( i=0; i<NI; i++ ) | ||
| 467 | *xi++ = 0; | ||
| 468 | } | ||
| 469 | |||
| 470 | /* same, but don't touch the sign. */ | ||
| 471 | |||
| 472 | void ecleazs( xi ) | ||
| 473 | register unsigned short *xi; | ||
| 474 | { | ||
| 475 | register int i; | ||
| 476 | |||
| 477 | ++xi; | ||
| 478 | for(i=0; i<NI-1; i++) | ||
| 479 | *xi++ = 0; | ||
| 480 | } | ||
| 481 | |||
| 482 | |||
| 483 | |||
| 484 | |||
| 485 | /* Move internal format number from a to b. | ||
| 486 | */ | ||
| 487 | void emovz( a, b ) | ||
| 488 | register unsigned short *a, *b; | ||
| 489 | { | ||
| 490 | register int i; | ||
| 491 | |||
| 492 | for( i=0; i<NI-1; i++ ) | ||
| 493 | *b++ = *a++; | ||
| 494 | /* clear low guard word */ | ||
| 495 | *b = 0; | ||
| 496 | } | ||
| 497 | |||
| 498 | /* Return nonzero if internal format number is a NaN. | ||
| 499 | */ | ||
| 500 | |||
| 501 | int eiisnan (x) | ||
| 502 | unsigned short x[]; | ||
| 503 | { | ||
| 504 | int i; | ||
| 505 | |||
| 506 | if( (x[E] & 0x7fff) == 0x7fff ) | ||
| 507 | { | ||
| 508 | for( i=M+1; i<NI; i++ ) | ||
| 509 | { | ||
| 510 | if( x[i] != 0 ) | ||
| 511 | return(1); | ||
| 512 | } | ||
| 513 | } | ||
| 514 | return(0); | ||
| 515 | } | ||
| 516 | |||
| 517 | #ifdef INFINITY | ||
| 518 | /* Return nonzero if internal format number is infinite. */ | ||
| 519 | |||
| 520 | static int | ||
| 521 | eiisinf (x) | ||
| 522 | unsigned short x[]; | ||
| 523 | { | ||
| 524 | |||
| 525 | #ifdef NANS | ||
| 526 | if (eiisnan (x)) | ||
| 527 | return (0); | ||
| 528 | #endif | ||
| 529 | if ((x[E] & 0x7fff) == 0x7fff) | ||
| 530 | return (1); | ||
| 531 | return (0); | ||
| 532 | } | ||
| 533 | #endif | ||
| 534 | |||
| 535 | /* | ||
| 536 | ; Compare significands of numbers in internal format. | ||
| 537 | ; Guard words are included in the comparison. | ||
| 538 | ; | ||
| 539 | ; unsigned short a[NI], b[NI]; | ||
| 540 | ; cmpm( a, b ); | ||
| 541 | ; | ||
| 542 | ; for the significands: | ||
| 543 | ; returns +1 if a > b | ||
| 544 | ; 0 if a == b | ||
| 545 | ; -1 if a < b | ||
| 546 | */ | ||
| 547 | int ecmpm( a, b ) | ||
| 548 | register unsigned short *a, *b; | ||
| 549 | { | ||
| 550 | int i; | ||
| 551 | |||
| 552 | a += M; /* skip up to significand area */ | ||
| 553 | b += M; | ||
| 554 | for( i=M; i<NI; i++ ) | ||
| 555 | { | ||
| 556 | if( *a++ != *b++ ) | ||
| 557 | goto difrnt; | ||
| 558 | } | ||
| 559 | return(0); | ||
| 560 | |||
| 561 | difrnt: | ||
| 562 | if( *(--a) > *(--b) ) | ||
| 563 | return(1); | ||
| 564 | else | ||
| 565 | return(-1); | ||
| 566 | } | ||
| 567 | |||
| 568 | |||
| 569 | /* | ||
| 570 | ; Shift significand down by 1 bit | ||
| 571 | */ | ||
| 572 | |||
| 573 | void eshdn1(x) | ||
| 574 | register unsigned short *x; | ||
| 575 | { | ||
| 576 | register unsigned short bits; | ||
| 577 | int i; | ||
| 578 | |||
| 579 | x += M; /* point to significand area */ | ||
| 580 | |||
| 581 | bits = 0; | ||
| 582 | for( i=M; i<NI; i++ ) | ||
| 583 | { | ||
| 584 | if( *x & 1 ) | ||
| 585 | bits |= 1; | ||
| 586 | *x >>= 1; | ||
| 587 | if( bits & 2 ) | ||
| 588 | *x |= 0x8000; | ||
| 589 | bits <<= 1; | ||
| 590 | ++x; | ||
| 591 | } | ||
| 592 | } | ||
| 593 | |||
| 594 | |||
| 595 | |||
| 596 | /* | ||
| 597 | ; Shift significand up by 1 bit | ||
| 598 | */ | ||
| 599 | |||
| 600 | void eshup1(x) | ||
| 601 | register unsigned short *x; | ||
| 602 | { | ||
| 603 | register unsigned short bits; | ||
| 604 | int i; | ||
| 605 | |||
| 606 | x += NI-1; | ||
| 607 | bits = 0; | ||
| 608 | |||
| 609 | for( i=M; i<NI; i++ ) | ||
| 610 | { | ||
| 611 | if( *x & 0x8000 ) | ||
| 612 | bits |= 1; | ||
| 613 | *x <<= 1; | ||
| 614 | if( bits & 2 ) | ||
| 615 | *x |= 1; | ||
| 616 | bits <<= 1; | ||
| 617 | --x; | ||
| 618 | } | ||
| 619 | } | ||
| 620 | |||
| 621 | |||
| 622 | |||
| 623 | /* | ||
| 624 | ; Shift significand down by 8 bits | ||
| 625 | */ | ||
| 626 | |||
| 627 | void eshdn8(x) | ||
| 628 | register unsigned short *x; | ||
| 629 | { | ||
| 630 | register unsigned short newbyt, oldbyt; | ||
| 631 | int i; | ||
| 632 | |||
| 633 | x += M; | ||
| 634 | oldbyt = 0; | ||
| 635 | for( i=M; i<NI; i++ ) | ||
| 636 | { | ||
| 637 | newbyt = *x << 8; | ||
| 638 | *x >>= 8; | ||
| 639 | *x |= oldbyt; | ||
| 640 | oldbyt = newbyt; | ||
| 641 | ++x; | ||
| 642 | } | ||
| 643 | } | ||
| 644 | |||
| 645 | /* | ||
| 646 | ; Shift significand up by 8 bits | ||
| 647 | */ | ||
| 648 | |||
| 649 | void eshup8(x) | ||
| 650 | register unsigned short *x; | ||
| 651 | { | ||
| 652 | int i; | ||
| 653 | register unsigned short newbyt, oldbyt; | ||
| 654 | |||
| 655 | x += NI-1; | ||
| 656 | oldbyt = 0; | ||
| 657 | |||
| 658 | for( i=M; i<NI; i++ ) | ||
| 659 | { | ||
| 660 | newbyt = *x >> 8; | ||
| 661 | *x <<= 8; | ||
| 662 | *x |= oldbyt; | ||
| 663 | oldbyt = newbyt; | ||
| 664 | --x; | ||
| 665 | } | ||
| 666 | } | ||
| 667 | |||
| 668 | /* | ||
| 669 | ; Shift significand up by 16 bits | ||
| 670 | */ | ||
| 671 | |||
| 672 | void eshup6(x) | ||
| 673 | register unsigned short *x; | ||
| 674 | { | ||
| 675 | int i; | ||
| 676 | register unsigned short *p; | ||
| 677 | |||
| 678 | p = x + M; | ||
| 679 | x += M + 1; | ||
| 680 | |||
| 681 | for( i=M; i<NI-1; i++ ) | ||
| 682 | *p++ = *x++; | ||
| 683 | |||
| 684 | *p = 0; | ||
| 685 | } | ||
| 686 | |||
| 687 | /* | ||
| 688 | ; Shift significand down by 16 bits | ||
| 689 | */ | ||
| 690 | |||
| 691 | void eshdn6(x) | ||
| 692 | register unsigned short *x; | ||
| 693 | { | ||
| 694 | int i; | ||
| 695 | register unsigned short *p; | ||
| 696 | |||
| 697 | x += NI-1; | ||
| 698 | p = x + 1; | ||
| 699 | |||
| 700 | for( i=M; i<NI-1; i++ ) | ||
| 701 | *(--p) = *(--x); | ||
| 702 | |||
| 703 | *(--p) = 0; | ||
| 704 | } | ||
| 705 | |||
| 706 | /* | ||
| 707 | ; Add significands | ||
| 708 | ; x + y replaces y | ||
| 709 | */ | ||
| 710 | |||
| 711 | void eaddm( x, y ) | ||
| 712 | unsigned short *x, *y; | ||
| 713 | { | ||
| 714 | register unsigned long a; | ||
| 715 | int i; | ||
| 716 | unsigned int carry; | ||
| 717 | |||
| 718 | x += NI-1; | ||
| 719 | y += NI-1; | ||
| 720 | carry = 0; | ||
| 721 | for( i=M; i<NI; i++ ) | ||
| 722 | { | ||
| 723 | a = (unsigned long )(*x) + (unsigned long )(*y) + carry; | ||
| 724 | if( a & 0x10000 ) | ||
| 725 | carry = 1; | ||
| 726 | else | ||
| 727 | carry = 0; | ||
| 728 | *y = (unsigned short )a; | ||
| 729 | --x; | ||
| 730 | --y; | ||
| 731 | } | ||
| 732 | } | ||
| 733 | |||
| 734 | /* | ||
| 735 | ; Subtract significands | ||
| 736 | ; y - x replaces y | ||
| 737 | */ | ||
| 738 | |||
| 739 | void esubm( x, y ) | ||
| 740 | unsigned short *x, *y; | ||
| 741 | { | ||
| 742 | unsigned long a; | ||
| 743 | int i; | ||
| 744 | unsigned int carry; | ||
| 745 | |||
| 746 | x += NI-1; | ||
| 747 | y += NI-1; | ||
| 748 | carry = 0; | ||
| 749 | for( i=M; i<NI; i++ ) | ||
| 750 | { | ||
| 751 | a = (unsigned long )(*y) - (unsigned long )(*x) - carry; | ||
| 752 | if( a & 0x10000 ) | ||
| 753 | carry = 1; | ||
| 754 | else | ||
| 755 | carry = 0; | ||
| 756 | *y = (unsigned short )a; | ||
| 757 | --x; | ||
| 758 | --y; | ||
| 759 | } | ||
| 760 | } | ||
| 761 | |||
| 762 | |||
| 763 | /* Divide significands */ | ||
| 764 | |||
| 765 | static unsigned short equot[NI] = {0}; /* was static */ | ||
| 766 | |||
| 767 | #if 0 | ||
| 768 | int edivm( den, num ) | ||
| 769 | unsigned short den[], num[]; | ||
| 770 | { | ||
| 771 | int i; | ||
| 772 | register unsigned short *p, *q; | ||
| 773 | unsigned short j; | ||
| 774 | |||
| 775 | p = &equot[0]; | ||
| 776 | *p++ = num[0]; | ||
| 777 | *p++ = num[1]; | ||
| 778 | |||
| 779 | for( i=M; i<NI; i++ ) | ||
| 780 | { | ||
| 781 | *p++ = 0; | ||
| 782 | } | ||
| 783 | |||
| 784 | /* Use faster compare and subtraction if denominator | ||
| 785 | * has only 15 bits of significance. | ||
| 786 | */ | ||
| 787 | p = &den[M+2]; | ||
| 788 | if( *p++ == 0 ) | ||
| 789 | { | ||
| 790 | for( i=M+3; i<NI; i++ ) | ||
| 791 | { | ||
| 792 | if( *p++ != 0 ) | ||
| 793 | goto fulldiv; | ||
| 794 | } | ||
| 795 | if( (den[M+1] & 1) != 0 ) | ||
| 796 | goto fulldiv; | ||
| 797 | eshdn1(num); | ||
| 798 | eshdn1(den); | ||
| 799 | |||
| 800 | p = &den[M+1]; | ||
| 801 | q = &num[M+1]; | ||
| 802 | |||
| 803 | for( i=0; i<NBITS+2; i++ ) | ||
| 804 | { | ||
| 805 | if( *p <= *q ) | ||
| 806 | { | ||
| 807 | *q -= *p; | ||
| 808 | j = 1; | ||
| 809 | } | ||
| 810 | else | ||
| 811 | { | ||
| 812 | j = 0; | ||
| 813 | } | ||
| 814 | eshup1(equot); | ||
| 815 | equot[NI-2] |= j; | ||
| 816 | eshup1(num); | ||
| 817 | } | ||
| 818 | goto divdon; | ||
| 819 | } | ||
| 820 | |||
| 821 | /* The number of quotient bits to calculate is | ||
| 822 | * NBITS + 1 scaling guard bit + 1 roundoff bit. | ||
| 823 | */ | ||
| 824 | fulldiv: | ||
| 825 | |||
| 826 | p = &equot[NI-2]; | ||
| 827 | for( i=0; i<NBITS+2; i++ ) | ||
| 828 | { | ||
| 829 | if( ecmpm(den,num) <= 0 ) | ||
| 830 | { | ||
| 831 | esubm(den, num); | ||
| 832 | j = 1; /* quotient bit = 1 */ | ||
| 833 | } | ||
| 834 | else | ||
| 835 | j = 0; | ||
| 836 | eshup1(equot); | ||
| 837 | *p |= j; | ||
| 838 | eshup1(num); | ||
| 839 | } | ||
| 840 | |||
| 841 | divdon: | ||
| 842 | |||
| 843 | eshdn1( equot ); | ||
| 844 | eshdn1( equot ); | ||
| 845 | |||
| 846 | /* test for nonzero remainder after roundoff bit */ | ||
| 847 | p = &num[M]; | ||
| 848 | j = 0; | ||
| 849 | for( i=M; i<NI; i++ ) | ||
| 850 | { | ||
| 851 | j |= *p++; | ||
| 852 | } | ||
| 853 | if( j ) | ||
| 854 | j = 1; | ||
| 855 | |||
| 856 | |||
| 857 | for( i=0; i<NI; i++ ) | ||
| 858 | num[i] = equot[i]; | ||
| 859 | return( (int )j ); | ||
| 860 | } | ||
| 861 | |||
| 862 | /* Multiply significands */ | ||
| 863 | int emulm( a, b ) | ||
| 864 | unsigned short a[], b[]; | ||
| 865 | { | ||
| 866 | unsigned short *p, *q; | ||
| 867 | int i, j, k; | ||
| 868 | |||
| 869 | equot[0] = b[0]; | ||
| 870 | equot[1] = b[1]; | ||
| 871 | for( i=M; i<NI; i++ ) | ||
| 872 | equot[i] = 0; | ||
| 873 | |||
| 874 | p = &a[NI-2]; | ||
| 875 | k = NBITS; | ||
| 876 | while( *p == 0 ) /* significand is not supposed to be all zero */ | ||
| 877 | { | ||
| 878 | eshdn6(a); | ||
| 879 | k -= 16; | ||
| 880 | } | ||
| 881 | if( (*p & 0xff) == 0 ) | ||
| 882 | { | ||
| 883 | eshdn8(a); | ||
| 884 | k -= 8; | ||
| 885 | } | ||
| 886 | |||
| 887 | q = &equot[NI-1]; | ||
| 888 | j = 0; | ||
| 889 | for( i=0; i<k; i++ ) | ||
| 890 | { | ||
| 891 | if( *p & 1 ) | ||
| 892 | eaddm(b, equot); | ||
| 893 | /* remember if there were any nonzero bits shifted out */ | ||
| 894 | if( *q & 1 ) | ||
| 895 | j |= 1; | ||
| 896 | eshdn1(a); | ||
| 897 | eshdn1(equot); | ||
| 898 | } | ||
| 899 | |||
| 900 | for( i=0; i<NI; i++ ) | ||
| 901 | b[i] = equot[i]; | ||
| 902 | |||
| 903 | /* return flag for lost nonzero bits */ | ||
| 904 | return(j); | ||
| 905 | } | ||
| 906 | |||
| 907 | #else | ||
| 908 | |||
| 909 | /* Multiply significand of e-type number b | ||
| 910 | by 16-bit quantity a, e-type result to c. */ | ||
| 911 | |||
| 912 | void m16m( a, b, c ) | ||
| 913 | unsigned short a; | ||
| 914 | unsigned short b[], c[]; | ||
| 915 | { | ||
| 916 | register unsigned short *pp; | ||
| 917 | register unsigned long carry; | ||
| 918 | unsigned short *ps; | ||
| 919 | unsigned short p[NI]; | ||
| 920 | unsigned long aa, m; | ||
| 921 | int i; | ||
| 922 | |||
| 923 | aa = a; | ||
| 924 | pp = &p[NI-2]; | ||
| 925 | *pp++ = 0; | ||
| 926 | *pp = 0; | ||
| 927 | ps = &b[NI-1]; | ||
| 928 | |||
| 929 | for( i=M+1; i<NI; i++ ) | ||
| 930 | { | ||
| 931 | if( *ps == 0 ) | ||
| 932 | { | ||
| 933 | --ps; | ||
| 934 | --pp; | ||
| 935 | *(pp-1) = 0; | ||
| 936 | } | ||
| 937 | else | ||
| 938 | { | ||
| 939 | m = (unsigned long) aa * *ps--; | ||
| 940 | carry = (m & 0xffff) + *pp; | ||
| 941 | *pp-- = (unsigned short )carry; | ||
| 942 | carry = (carry >> 16) + (m >> 16) + *pp; | ||
| 943 | *pp = (unsigned short )carry; | ||
| 944 | *(pp-1) = carry >> 16; | ||
| 945 | } | ||
| 946 | } | ||
| 947 | for( i=M; i<NI; i++ ) | ||
| 948 | c[i] = p[i]; | ||
| 949 | } | ||
| 950 | |||
| 951 | |||
| 952 | /* Divide significands. Neither the numerator nor the denominator | ||
| 953 | is permitted to have its high guard word nonzero. */ | ||
| 954 | |||
| 955 | |||
| 956 | int edivm( den, num ) | ||
| 957 | unsigned short den[], num[]; | ||
| 958 | { | ||
| 959 | int i; | ||
| 960 | register unsigned short *p; | ||
| 961 | unsigned long tnum; | ||
| 962 | unsigned short j, tdenm, tquot; | ||
| 963 | unsigned short tprod[NI+1]; | ||
| 964 | |||
| 965 | p = &equot[0]; | ||
| 966 | *p++ = num[0]; | ||
| 967 | *p++ = num[1]; | ||
| 968 | |||
| 969 | for( i=M; i<NI; i++ ) | ||
| 970 | { | ||
| 971 | *p++ = 0; | ||
| 972 | } | ||
| 973 | eshdn1( num ); | ||
| 974 | tdenm = den[M+1]; | ||
| 975 | for( i=M; i<NI; i++ ) | ||
| 976 | { | ||
| 977 | /* Find trial quotient digit (the radix is 65536). */ | ||
| 978 | tnum = (((unsigned long) num[M]) << 16) + num[M+1]; | ||
| 979 | |||
| 980 | /* Do not execute the divide instruction if it will overflow. */ | ||
| 981 | if( (tdenm * 0xffffL) < tnum ) | ||
| 982 | tquot = 0xffff; | ||
| 983 | else | ||
| 984 | tquot = tnum / tdenm; | ||
| 985 | |||
| 986 | /* Prove that the divide worked. */ | ||
| 987 | /* | ||
| 988 | tcheck = (unsigned long )tquot * tdenm; | ||
| 989 | if( tnum - tcheck > tdenm ) | ||
| 990 | tquot = 0xffff; | ||
| 991 | */ | ||
| 992 | /* Multiply denominator by trial quotient digit. */ | ||
| 993 | m16m( tquot, den, tprod ); | ||
| 994 | /* The quotient digit may have been overestimated. */ | ||
| 995 | if( ecmpm( tprod, num ) > 0 ) | ||
| 996 | { | ||
| 997 | tquot -= 1; | ||
| 998 | esubm( den, tprod ); | ||
| 999 | if( ecmpm( tprod, num ) > 0 ) | ||
| 1000 | { | ||
| 1001 | tquot -= 1; | ||
| 1002 | esubm( den, tprod ); | ||
| 1003 | } | ||
| 1004 | } | ||
| 1005 | /* | ||
| 1006 | if( ecmpm( tprod, num ) > 0 ) | ||
| 1007 | { | ||
| 1008 | eshow( "tprod", tprod ); | ||
| 1009 | eshow( "num ", num ); | ||
| 1010 | printf( "tnum = %08lx, tden = %04x, tquot = %04x\n", | ||
| 1011 | tnum, den[M+1], tquot ); | ||
| 1012 | } | ||
| 1013 | */ | ||
| 1014 | esubm( tprod, num ); | ||
| 1015 | /* | ||
| 1016 | if( ecmpm( num, den ) >= 0 ) | ||
| 1017 | { | ||
| 1018 | eshow( "num ", num ); | ||
| 1019 | eshow( "den ", den ); | ||
| 1020 | printf( "tnum = %08lx, tden = %04x, tquot = %04x\n", | ||
| 1021 | tnum, den[M+1], tquot ); | ||
| 1022 | } | ||
| 1023 | */ | ||
| 1024 | equot[i] = tquot; | ||
| 1025 | eshup6(num); | ||
| 1026 | } | ||
| 1027 | /* test for nonzero remainder after roundoff bit */ | ||
| 1028 | p = &num[M]; | ||
| 1029 | j = 0; | ||
| 1030 | for( i=M; i<NI; i++ ) | ||
| 1031 | { | ||
| 1032 | j |= *p++; | ||
| 1033 | } | ||
| 1034 | if( j ) | ||
| 1035 | j = 1; | ||
| 1036 | |||
| 1037 | for( i=0; i<NI; i++ ) | ||
| 1038 | num[i] = equot[i]; | ||
| 1039 | |||
| 1040 | return( (int )j ); | ||
| 1041 | } | ||
| 1042 | |||
| 1043 | |||
| 1044 | |||
| 1045 | /* Multiply significands */ | ||
| 1046 | int emulm( a, b ) | ||
| 1047 | unsigned short a[], b[]; | ||
| 1048 | { | ||
| 1049 | unsigned short *p, *q; | ||
| 1050 | unsigned short pprod[NI]; | ||
| 1051 | unsigned short j; | ||
| 1052 | int i; | ||
| 1053 | |||
| 1054 | equot[0] = b[0]; | ||
| 1055 | equot[1] = b[1]; | ||
| 1056 | for( i=M; i<NI; i++ ) | ||
| 1057 | equot[i] = 0; | ||
| 1058 | |||
| 1059 | j = 0; | ||
| 1060 | p = &a[NI-1]; | ||
| 1061 | q = &equot[NI-1]; | ||
| 1062 | for( i=M+1; i<NI; i++ ) | ||
| 1063 | { | ||
| 1064 | if( *p == 0 ) | ||
| 1065 | { | ||
| 1066 | --p; | ||
| 1067 | } | ||
| 1068 | else | ||
| 1069 | { | ||
| 1070 | m16m( *p--, b, pprod ); | ||
| 1071 | eaddm(pprod, equot); | ||
| 1072 | } | ||
| 1073 | j |= *q; | ||
| 1074 | eshdn6(equot); | ||
| 1075 | } | ||
| 1076 | |||
| 1077 | for( i=0; i<NI; i++ ) | ||
| 1078 | b[i] = equot[i]; | ||
| 1079 | |||
| 1080 | /* return flag for lost nonzero bits */ | ||
| 1081 | return( (int)j ); | ||
| 1082 | } | ||
| 1083 | |||
| 1084 | |||
| 1085 | /* | ||
| 1086 | eshow(str, x) | ||
| 1087 | char *str; | ||
| 1088 | unsigned short *x; | ||
| 1089 | { | ||
| 1090 | int i; | ||
| 1091 | |||
| 1092 | printf( "%s ", str ); | ||
| 1093 | for( i=0; i<NI; i++ ) | ||
| 1094 | printf( "%04x ", *x++ ); | ||
| 1095 | printf( "\n" ); | ||
| 1096 | } | ||
| 1097 | */ | ||
| 1098 | #endif | ||
| 1099 | |||
| 1100 | |||
| 1101 | |||
| 1102 | /* | ||
| 1103 | * Normalize and round off. | ||
| 1104 | * | ||
| 1105 | * The internal format number to be rounded is "s". | ||
| 1106 | * Input "lost" indicates whether the number is exact. | ||
| 1107 | * This is the so-called sticky bit. | ||
| 1108 | * | ||
| 1109 | * Input "subflg" indicates whether the number was obtained | ||
| 1110 | * by a subtraction operation. In that case if lost is nonzero | ||
| 1111 | * then the number is slightly smaller than indicated. | ||
| 1112 | * | ||
| 1113 | * Input "exp" is the biased exponent, which may be negative. | ||
| 1114 | * the exponent field of "s" is ignored but is replaced by | ||
| 1115 | * "exp" as adjusted by normalization and rounding. | ||
| 1116 | * | ||
| 1117 | * Input "rcntrl" is the rounding control. | ||
| 1118 | */ | ||
| 1119 | |||
| 1120 | static int rlast = -1; | ||
| 1121 | static int rw = 0; | ||
| 1122 | static unsigned short rmsk = 0; | ||
| 1123 | static unsigned short rmbit = 0; | ||
| 1124 | static unsigned short rebit = 0; | ||
| 1125 | static int re = 0; | ||
| 1126 | static unsigned short rbit[NI] = {0,0,0,0,0,0,0,0}; | ||
| 1127 | |||
| 1128 | void emdnorm( s, lost, subflg, exp, rcntrl ) | ||
| 1129 | unsigned short s[]; | ||
| 1130 | int lost; | ||
| 1131 | int subflg; | ||
| 1132 | long exp; | ||
| 1133 | int rcntrl; | ||
| 1134 | { | ||
| 1135 | int i, j; | ||
| 1136 | unsigned short r; | ||
| 1137 | |||
| 1138 | /* Normalize */ | ||
| 1139 | j = enormlz( s ); | ||
| 1140 | |||
| 1141 | /* a blank significand could mean either zero or infinity. */ | ||
| 1142 | #ifndef INFINITY | ||
| 1143 | if( j > NBITS ) | ||
| 1144 | { | ||
| 1145 | ecleazs( s ); | ||
| 1146 | return; | ||
| 1147 | } | ||
| 1148 | #endif | ||
| 1149 | exp -= j; | ||
| 1150 | #ifndef INFINITY | ||
| 1151 | if( exp >= 32767L ) | ||
| 1152 | goto overf; | ||
| 1153 | #else | ||
| 1154 | if( (j > NBITS) && (exp < 32767L) ) | ||
| 1155 | { | ||
| 1156 | ecleazs( s ); | ||
| 1157 | return; | ||
| 1158 | } | ||
| 1159 | #endif | ||
| 1160 | if( exp < 0L ) | ||
| 1161 | { | ||
| 1162 | if( exp > (long )(-NBITS-1) ) | ||
| 1163 | { | ||
| 1164 | j = (int )exp; | ||
| 1165 | i = eshift( s, j ); | ||
| 1166 | if( i ) | ||
| 1167 | lost = 1; | ||
| 1168 | } | ||
| 1169 | else | ||
| 1170 | { | ||
| 1171 | ecleazs( s ); | ||
| 1172 | return; | ||
| 1173 | } | ||
| 1174 | } | ||
| 1175 | /* Round off, unless told not to by rcntrl. */ | ||
| 1176 | if( rcntrl == 0 ) | ||
| 1177 | goto mdfin; | ||
| 1178 | /* Set up rounding parameters if the control register changed. */ | ||
| 1179 | if( rndprc != rlast ) | ||
| 1180 | { | ||
| 1181 | ecleaz( rbit ); | ||
| 1182 | switch( rndprc ) | ||
| 1183 | { | ||
| 1184 | default: | ||
| 1185 | case NBITS: | ||
| 1186 | rw = NI-1; /* low guard word */ | ||
| 1187 | rmsk = 0xffff; | ||
| 1188 | rmbit = 0x8000; | ||
| 1189 | rebit = 1; | ||
| 1190 | re = rw - 1; | ||
| 1191 | break; | ||
| 1192 | case 113: | ||
| 1193 | rw = 10; | ||
| 1194 | rmsk = 0x7fff; | ||
| 1195 | rmbit = 0x4000; | ||
| 1196 | rebit = 0x8000; | ||
| 1197 | re = rw; | ||
| 1198 | break; | ||
| 1199 | case 64: | ||
| 1200 | rw = 7; | ||
| 1201 | rmsk = 0xffff; | ||
| 1202 | rmbit = 0x8000; | ||
| 1203 | rebit = 1; | ||
| 1204 | re = rw-1; | ||
| 1205 | break; | ||
| 1206 | /* For DEC arithmetic */ | ||
| 1207 | case 56: | ||
| 1208 | rw = 6; | ||
| 1209 | rmsk = 0xff; | ||
| 1210 | rmbit = 0x80; | ||
| 1211 | rebit = 0x100; | ||
| 1212 | re = rw; | ||
| 1213 | break; | ||
| 1214 | case 53: | ||
| 1215 | rw = 6; | ||
| 1216 | rmsk = 0x7ff; | ||
| 1217 | rmbit = 0x0400; | ||
| 1218 | rebit = 0x800; | ||
| 1219 | re = rw; | ||
| 1220 | break; | ||
| 1221 | case 24: | ||
| 1222 | rw = 4; | ||
| 1223 | rmsk = 0xff; | ||
| 1224 | rmbit = 0x80; | ||
| 1225 | rebit = 0x100; | ||
| 1226 | re = rw; | ||
| 1227 | break; | ||
| 1228 | } | ||
| 1229 | rbit[re] = rebit; | ||
| 1230 | rlast = rndprc; | ||
| 1231 | } | ||
| 1232 | |||
| 1233 | /* Shift down 1 temporarily if the data structure has an implied | ||
| 1234 | * most significant bit and the number is denormal. | ||
| 1235 | * For rndprc = 64 or NBITS, there is no implied bit. | ||
| 1236 | * But Intel long double denormals lose one bit of significance even so. | ||
| 1237 | */ | ||
| 1238 | #ifdef IBMPC | ||
| 1239 | if( (exp <= 0) && (rndprc != NBITS) ) | ||
| 1240 | #else | ||
| 1241 | if( (exp <= 0) && (rndprc != 64) && (rndprc != NBITS) ) | ||
| 1242 | #endif | ||
| 1243 | { | ||
| 1244 | lost |= s[NI-1] & 1; | ||
| 1245 | eshdn1(s); | ||
| 1246 | } | ||
| 1247 | /* Clear out all bits below the rounding bit, | ||
| 1248 | * remembering in r if any were nonzero. | ||
| 1249 | */ | ||
| 1250 | r = s[rw] & rmsk; | ||
| 1251 | if( rndprc < NBITS ) | ||
| 1252 | { | ||
| 1253 | i = rw + 1; | ||
| 1254 | while( i < NI ) | ||
| 1255 | { | ||
| 1256 | if( s[i] ) | ||
| 1257 | r |= 1; | ||
| 1258 | s[i] = 0; | ||
| 1259 | ++i; | ||
| 1260 | } | ||
| 1261 | } | ||
| 1262 | s[rw] &= ~rmsk; | ||
| 1263 | if( (r & rmbit) != 0 ) | ||
| 1264 | { | ||
| 1265 | if( r == rmbit ) | ||
| 1266 | { | ||
| 1267 | if( lost == 0 ) | ||
| 1268 | { /* round to even */ | ||
| 1269 | if( (s[re] & rebit) == 0 ) | ||
| 1270 | goto mddone; | ||
| 1271 | } | ||
| 1272 | else | ||
| 1273 | { | ||
| 1274 | if( subflg != 0 ) | ||
| 1275 | goto mddone; | ||
| 1276 | } | ||
| 1277 | } | ||
| 1278 | eaddm( rbit, s ); | ||
| 1279 | } | ||
| 1280 | mddone: | ||
| 1281 | #ifdef IBMPC | ||
| 1282 | if( (exp <= 0) && (rndprc != NBITS) ) | ||
| 1283 | #else | ||
| 1284 | if( (exp <= 0) && (rndprc != 64) && (rndprc != NBITS) ) | ||
| 1285 | #endif | ||
| 1286 | { | ||
| 1287 | eshup1(s); | ||
| 1288 | } | ||
| 1289 | if( s[2] != 0 ) | ||
| 1290 | { /* overflow on roundoff */ | ||
| 1291 | eshdn1(s); | ||
| 1292 | exp += 1; | ||
| 1293 | } | ||
| 1294 | mdfin: | ||
| 1295 | s[NI-1] = 0; | ||
| 1296 | if( exp >= 32767L ) | ||
| 1297 | { | ||
| 1298 | #ifndef INFINITY | ||
| 1299 | overf: | ||
| 1300 | #endif | ||
| 1301 | #ifdef INFINITY | ||
| 1302 | s[1] = 32767; | ||
| 1303 | for( i=2; i<NI-1; i++ ) | ||
| 1304 | s[i] = 0; | ||
| 1305 | #else | ||
| 1306 | s[1] = 32766; | ||
| 1307 | s[2] = 0; | ||
| 1308 | for( i=M+1; i<NI-1; i++ ) | ||
| 1309 | s[i] = 0xffff; | ||
| 1310 | s[NI-1] = 0; | ||
| 1311 | if( (rndprc < 64) || (rndprc == 113) ) | ||
| 1312 | { | ||
| 1313 | s[rw] &= ~rmsk; | ||
| 1314 | if( rndprc == 24 ) | ||
| 1315 | { | ||
| 1316 | s[5] = 0; | ||
| 1317 | s[6] = 0; | ||
| 1318 | } | ||
| 1319 | } | ||
| 1320 | #endif | ||
| 1321 | return; | ||
| 1322 | } | ||
| 1323 | if( exp < 0 ) | ||
| 1324 | s[1] = 0; | ||
| 1325 | else | ||
| 1326 | s[1] = (unsigned short )exp; | ||
| 1327 | } | ||
| 1328 | |||
| 1329 | |||
| 1330 | |||
| 1331 | /* | ||
| 1332 | ; Subtract external format numbers. | ||
| 1333 | ; | ||
| 1334 | ; unsigned short a[NE], b[NE], c[NE]; | ||
| 1335 | ; esub( a, b, c ); c = b - a | ||
| 1336 | */ | ||
| 1337 | |||
| 1338 | static int subflg = 0; | ||
| 1339 | |||
| 1340 | void esub( a, b, c ) | ||
| 1341 | unsigned short *a, *b, *c; | ||
| 1342 | { | ||
| 1343 | |||
| 1344 | #ifdef NANS | ||
| 1345 | if( eisnan(a) ) | ||
| 1346 | { | ||
| 1347 | emov (a, c); | ||
| 1348 | return; | ||
| 1349 | } | ||
| 1350 | if( eisnan(b) ) | ||
| 1351 | { | ||
| 1352 | emov(b,c); | ||
| 1353 | return; | ||
| 1354 | } | ||
| 1355 | /* Infinity minus infinity is a NaN. | ||
| 1356 | * Test for subtracting infinities of the same sign. | ||
| 1357 | */ | ||
| 1358 | if( eisinf(a) && eisinf(b) && ((eisneg (a) ^ eisneg (b)) == 0)) | ||
| 1359 | { | ||
| 1360 | mtherr( "esub", DOMAIN ); | ||
| 1361 | enan( c, NBITS ); | ||
| 1362 | return; | ||
| 1363 | } | ||
| 1364 | #endif | ||
| 1365 | subflg = 1; | ||
| 1366 | eadd1( a, b, c ); | ||
| 1367 | } | ||
| 1368 | |||
| 1369 | |||
| 1370 | /* | ||
| 1371 | ; Add. | ||
| 1372 | ; | ||
| 1373 | ; unsigned short a[NE], b[NE], c[NE]; | ||
| 1374 | ; eadd( a, b, c ); c = b + a | ||
| 1375 | */ | ||
| 1376 | void eadd( a, b, c ) | ||
| 1377 | unsigned short *a, *b, *c; | ||
| 1378 | { | ||
| 1379 | |||
| 1380 | #ifdef NANS | ||
| 1381 | /* NaN plus anything is a NaN. */ | ||
| 1382 | if( eisnan(a) ) | ||
| 1383 | { | ||
| 1384 | emov(a,c); | ||
| 1385 | return; | ||
| 1386 | } | ||
| 1387 | if( eisnan(b) ) | ||
| 1388 | { | ||
| 1389 | emov(b,c); | ||
| 1390 | return; | ||
| 1391 | } | ||
| 1392 | /* Infinity minus infinity is a NaN. | ||
| 1393 | * Test for adding infinities of opposite signs. | ||
| 1394 | */ | ||
| 1395 | if( eisinf(a) && eisinf(b) | ||
| 1396 | && ((eisneg(a) ^ eisneg(b)) != 0) ) | ||
| 1397 | { | ||
| 1398 | mtherr( "eadd", DOMAIN ); | ||
| 1399 | enan( c, NBITS ); | ||
| 1400 | return; | ||
| 1401 | } | ||
| 1402 | #endif | ||
| 1403 | subflg = 0; | ||
| 1404 | eadd1( a, b, c ); | ||
| 1405 | } | ||
| 1406 | |||
| 1407 | void eadd1( a, b, c ) | ||
| 1408 | unsigned short *a, *b, *c; | ||
| 1409 | { | ||
| 1410 | unsigned short ai[NI], bi[NI], ci[NI]; | ||
| 1411 | int i, lost, j, k; | ||
| 1412 | long lt, lta, ltb; | ||
| 1413 | |||
| 1414 | #ifdef INFINITY | ||
| 1415 | if( eisinf(a) ) | ||
| 1416 | { | ||
| 1417 | emov(a,c); | ||
| 1418 | if( subflg ) | ||
| 1419 | eneg(c); | ||
| 1420 | return; | ||
| 1421 | } | ||
| 1422 | if( eisinf(b) ) | ||
| 1423 | { | ||
| 1424 | emov(b,c); | ||
| 1425 | return; | ||
| 1426 | } | ||
| 1427 | #endif | ||
| 1428 | emovi( a, ai ); | ||
| 1429 | emovi( b, bi ); | ||
| 1430 | if( subflg ) | ||
| 1431 | ai[0] = ~ai[0]; | ||
| 1432 | |||
| 1433 | /* compare exponents */ | ||
| 1434 | lta = ai[E]; | ||
| 1435 | ltb = bi[E]; | ||
| 1436 | lt = lta - ltb; | ||
| 1437 | if( lt > 0L ) | ||
| 1438 | { /* put the larger number in bi */ | ||
| 1439 | emovz( bi, ci ); | ||
| 1440 | emovz( ai, bi ); | ||
| 1441 | emovz( ci, ai ); | ||
| 1442 | ltb = bi[E]; | ||
| 1443 | lt = -lt; | ||
| 1444 | } | ||
| 1445 | lost = 0; | ||
| 1446 | if( lt != 0L ) | ||
| 1447 | { | ||
| 1448 | if( lt < (long )(-NBITS-1) ) | ||
| 1449 | goto done; /* answer same as larger addend */ | ||
| 1450 | k = (int )lt; | ||
| 1451 | lost = eshift( ai, k ); /* shift the smaller number down */ | ||
| 1452 | } | ||
| 1453 | else | ||
| 1454 | { | ||
| 1455 | /* exponents were the same, so must compare significands */ | ||
| 1456 | i = ecmpm( ai, bi ); | ||
| 1457 | if( i == 0 ) | ||
| 1458 | { /* the numbers are identical in magnitude */ | ||
| 1459 | /* if different signs, result is zero */ | ||
| 1460 | if( ai[0] != bi[0] ) | ||
| 1461 | { | ||
| 1462 | eclear(c); | ||
| 1463 | return; | ||
| 1464 | } | ||
| 1465 | /* if same sign, result is double */ | ||
| 1466 | /* double denomalized tiny number */ | ||
| 1467 | if( (bi[E] == 0) && ((bi[3] & 0x8000) == 0) ) | ||
| 1468 | { | ||
| 1469 | eshup1( bi ); | ||
| 1470 | goto done; | ||
| 1471 | } | ||
| 1472 | /* add 1 to exponent unless both are zero! */ | ||
| 1473 | for( j=1; j<NI-1; j++ ) | ||
| 1474 | { | ||
| 1475 | if( bi[j] != 0 ) | ||
| 1476 | { | ||
| 1477 | ltb += 1; | ||
| 1478 | if( ltb >= 0x7fff ) | ||
| 1479 | { | ||
| 1480 | eclear(c); | ||
| 1481 | einfin(c); | ||
| 1482 | if( ai[0] != 0 ) | ||
| 1483 | eneg(c); | ||
| 1484 | return; | ||
| 1485 | } | ||
| 1486 | break; | ||
| 1487 | } | ||
| 1488 | } | ||
| 1489 | bi[E] = (unsigned short )ltb; | ||
| 1490 | goto done; | ||
| 1491 | } | ||
| 1492 | if( i > 0 ) | ||
| 1493 | { /* put the larger number in bi */ | ||
| 1494 | emovz( bi, ci ); | ||
| 1495 | emovz( ai, bi ); | ||
| 1496 | emovz( ci, ai ); | ||
| 1497 | } | ||
| 1498 | } | ||
| 1499 | if( ai[0] == bi[0] ) | ||
| 1500 | { | ||
| 1501 | eaddm( ai, bi ); | ||
| 1502 | subflg = 0; | ||
| 1503 | } | ||
| 1504 | else | ||
| 1505 | { | ||
| 1506 | esubm( ai, bi ); | ||
| 1507 | subflg = 1; | ||
| 1508 | } | ||
| 1509 | emdnorm( bi, lost, subflg, ltb, 64 ); | ||
| 1510 | |||
| 1511 | done: | ||
| 1512 | emovo( bi, c ); | ||
| 1513 | } | ||
| 1514 | |||
| 1515 | |||
| 1516 | |||
| 1517 | /* | ||
| 1518 | ; Divide. | ||
| 1519 | ; | ||
| 1520 | ; unsigned short a[NE], b[NE], c[NE]; | ||
| 1521 | ; ediv( a, b, c ); c = b / a | ||
| 1522 | */ | ||
| 1523 | void ediv( a, b, c ) | ||
| 1524 | unsigned short *a, *b, *c; | ||
| 1525 | { | ||
| 1526 | unsigned short ai[NI], bi[NI]; | ||
| 1527 | int i, sign; | ||
| 1528 | long lt, lta, ltb; | ||
| 1529 | |||
| 1530 | /* IEEE says if result is not a NaN, the sign is "-" if and only if | ||
| 1531 | operands have opposite signs -- but flush -0 to 0 later if not IEEE. */ | ||
| 1532 | sign = eisneg(a) ^ eisneg(b); | ||
| 1533 | |||
| 1534 | #ifdef NANS | ||
| 1535 | /* Return any NaN input. */ | ||
| 1536 | if( eisnan(a) ) | ||
| 1537 | { | ||
| 1538 | emov(a,c); | ||
| 1539 | return; | ||
| 1540 | } | ||
| 1541 | if( eisnan(b) ) | ||
| 1542 | { | ||
| 1543 | emov(b,c); | ||
| 1544 | return; | ||
| 1545 | } | ||
| 1546 | /* Zero over zero, or infinity over infinity, is a NaN. */ | ||
| 1547 | if( ((ecmp(a,ezero) == 0) && (ecmp(b,ezero) == 0)) | ||
| 1548 | || (eisinf (a) && eisinf (b)) ) | ||
| 1549 | { | ||
| 1550 | mtherr( "ediv", DOMAIN ); | ||
| 1551 | enan( c, NBITS ); | ||
| 1552 | return; | ||
| 1553 | } | ||
| 1554 | #endif | ||
| 1555 | /* Infinity over anything else is infinity. */ | ||
| 1556 | #ifdef INFINITY | ||
| 1557 | if( eisinf(b) ) | ||
| 1558 | { | ||
| 1559 | einfin(c); | ||
| 1560 | goto divsign; | ||
| 1561 | } | ||
| 1562 | if( eisinf(a) ) | ||
| 1563 | { | ||
| 1564 | eclear(c); | ||
| 1565 | goto divsign; | ||
| 1566 | } | ||
| 1567 | #endif | ||
| 1568 | emovi( a, ai ); | ||
| 1569 | emovi( b, bi ); | ||
| 1570 | lta = ai[E]; | ||
| 1571 | ltb = bi[E]; | ||
| 1572 | if( bi[E] == 0 ) | ||
| 1573 | { /* See if numerator is zero. */ | ||
| 1574 | for( i=1; i<NI-1; i++ ) | ||
| 1575 | { | ||
| 1576 | if( bi[i] != 0 ) | ||
| 1577 | { | ||
| 1578 | ltb -= enormlz( bi ); | ||
| 1579 | goto dnzro1; | ||
| 1580 | } | ||
| 1581 | } | ||
| 1582 | eclear(c); | ||
| 1583 | goto divsign; | ||
| 1584 | } | ||
| 1585 | dnzro1: | ||
| 1586 | |||
| 1587 | if( ai[E] == 0 ) | ||
| 1588 | { /* possible divide by zero */ | ||
| 1589 | for( i=1; i<NI-1; i++ ) | ||
| 1590 | { | ||
| 1591 | if( ai[i] != 0 ) | ||
| 1592 | { | ||
| 1593 | lta -= enormlz( ai ); | ||
| 1594 | goto dnzro2; | ||
| 1595 | } | ||
| 1596 | } | ||
| 1597 | einfin(c); | ||
| 1598 | mtherr( "ediv", SING ); | ||
| 1599 | goto divsign; | ||
| 1600 | } | ||
| 1601 | dnzro2: | ||
| 1602 | |||
| 1603 | i = edivm( ai, bi ); | ||
| 1604 | /* calculate exponent */ | ||
| 1605 | lt = ltb - lta + EXONE; | ||
| 1606 | emdnorm( bi, i, 0, lt, 64 ); | ||
| 1607 | emovo( bi, c ); | ||
| 1608 | |||
| 1609 | divsign: | ||
| 1610 | |||
| 1611 | if( sign ) | ||
| 1612 | *(c+(NE-1)) |= 0x8000; | ||
| 1613 | else | ||
| 1614 | *(c+(NE-1)) &= ~0x8000; | ||
| 1615 | } | ||
| 1616 | |||
| 1617 | |||
| 1618 | |||
| 1619 | /* | ||
| 1620 | ; Multiply. | ||
| 1621 | ; | ||
| 1622 | ; unsigned short a[NE], b[NE], c[NE]; | ||
| 1623 | ; emul( a, b, c ); c = b * a | ||
| 1624 | */ | ||
| 1625 | void emul( a, b, c ) | ||
| 1626 | unsigned short *a, *b, *c; | ||
| 1627 | { | ||
| 1628 | unsigned short ai[NI], bi[NI]; | ||
| 1629 | int i, j, sign; | ||
| 1630 | long lt, lta, ltb; | ||
| 1631 | |||
| 1632 | /* IEEE says if result is not a NaN, the sign is "-" if and only if | ||
| 1633 | operands have opposite signs -- but flush -0 to 0 later if not IEEE. */ | ||
| 1634 | sign = eisneg(a) ^ eisneg(b); | ||
| 1635 | |||
| 1636 | #ifdef NANS | ||
| 1637 | /* NaN times anything is the same NaN. */ | ||
| 1638 | if( eisnan(a) ) | ||
| 1639 | { | ||
| 1640 | emov(a,c); | ||
| 1641 | return; | ||
| 1642 | } | ||
| 1643 | if( eisnan(b) ) | ||
| 1644 | { | ||
| 1645 | emov(b,c); | ||
| 1646 | return; | ||
| 1647 | } | ||
| 1648 | /* Zero times infinity is a NaN. */ | ||
| 1649 | if( (eisinf(a) && (ecmp(b,ezero) == 0)) | ||
| 1650 | || (eisinf(b) && (ecmp(a,ezero) == 0)) ) | ||
| 1651 | { | ||
| 1652 | mtherr( "emul", DOMAIN ); | ||
| 1653 | enan( c, NBITS ); | ||
| 1654 | return; | ||
| 1655 | } | ||
| 1656 | #endif | ||
| 1657 | /* Infinity times anything else is infinity. */ | ||
| 1658 | #ifdef INFINITY | ||
| 1659 | if( eisinf(a) || eisinf(b) ) | ||
| 1660 | { | ||
| 1661 | einfin(c); | ||
| 1662 | goto mulsign; | ||
| 1663 | } | ||
| 1664 | #endif | ||
| 1665 | emovi( a, ai ); | ||
| 1666 | emovi( b, bi ); | ||
| 1667 | lta = ai[E]; | ||
| 1668 | ltb = bi[E]; | ||
| 1669 | if( ai[E] == 0 ) | ||
| 1670 | { | ||
| 1671 | for( i=1; i<NI-1; i++ ) | ||
| 1672 | { | ||
| 1673 | if( ai[i] != 0 ) | ||
| 1674 | { | ||
| 1675 | lta -= enormlz( ai ); | ||
| 1676 | goto mnzer1; | ||
| 1677 | } | ||
| 1678 | } | ||
| 1679 | eclear(c); | ||
| 1680 | goto mulsign; | ||
| 1681 | } | ||
| 1682 | mnzer1: | ||
| 1683 | |||
| 1684 | if( bi[E] == 0 ) | ||
| 1685 | { | ||
| 1686 | for( i=1; i<NI-1; i++ ) | ||
| 1687 | { | ||
| 1688 | if( bi[i] != 0 ) | ||
| 1689 | { | ||
| 1690 | ltb -= enormlz( bi ); | ||
| 1691 | goto mnzer2; | ||
| 1692 | } | ||
| 1693 | } | ||
| 1694 | eclear(c); | ||
| 1695 | goto mulsign; | ||
| 1696 | } | ||
| 1697 | mnzer2: | ||
| 1698 | |||
| 1699 | /* Multiply significands */ | ||
| 1700 | j = emulm( ai, bi ); | ||
| 1701 | /* calculate exponent */ | ||
| 1702 | lt = lta + ltb - (EXONE - 1); | ||
| 1703 | emdnorm( bi, j, 0, lt, 64 ); | ||
| 1704 | emovo( bi, c ); | ||
| 1705 | /* IEEE says sign is "-" if and only if operands have opposite signs. */ | ||
| 1706 | mulsign: | ||
| 1707 | if( sign ) | ||
| 1708 | *(c+(NE-1)) |= 0x8000; | ||
| 1709 | else | ||
| 1710 | *(c+(NE-1)) &= ~0x8000; | ||
| 1711 | } | ||
| 1712 | |||
| 1713 | |||
| 1714 | |||
| 1715 | |||
| 1716 | /* | ||
| 1717 | ; Convert IEEE double precision to e type | ||
| 1718 | ; double d; | ||
| 1719 | ; unsigned short x[N+2]; | ||
| 1720 | ; e53toe( &d, x ); | ||
| 1721 | */ | ||
| 1722 | void e53toe( pe, y ) | ||
| 1723 | unsigned short *pe, *y; | ||
| 1724 | { | ||
| 1725 | #ifdef DEC | ||
| 1726 | |||
| 1727 | dectoe( pe, y ); /* see etodec.c */ | ||
| 1728 | |||
| 1729 | #else | ||
| 1730 | |||
| 1731 | register unsigned short r; | ||
| 1732 | register unsigned short *p, *e; | ||
| 1733 | unsigned short yy[NI]; | ||
| 1734 | int denorm, k; | ||
| 1735 | |||
| 1736 | e = pe; | ||
| 1737 | denorm = 0; /* flag if denormalized number */ | ||
| 1738 | ecleaz(yy); | ||
| 1739 | #ifdef IBMPC | ||
| 1740 | e += 3; | ||
| 1741 | #endif | ||
| 1742 | r = *e; | ||
| 1743 | yy[0] = 0; | ||
| 1744 | if( r & 0x8000 ) | ||
| 1745 | yy[0] = 0xffff; | ||
| 1746 | yy[M] = (r & 0x0f) | 0x10; | ||
| 1747 | r &= ~0x800f; /* strip sign and 4 significand bits */ | ||
| 1748 | #ifdef INFINITY | ||
| 1749 | if( r == 0x7ff0 ) | ||
| 1750 | { | ||
| 1751 | #ifdef NANS | ||
| 1752 | #ifdef IBMPC | ||
| 1753 | if( ((pe[3] & 0xf) != 0) || (pe[2] != 0) | ||
| 1754 | || (pe[1] != 0) || (pe[0] != 0) ) | ||
| 1755 | { | ||
| 1756 | enan( y, NBITS ); | ||
| 1757 | return; | ||
| 1758 | } | ||
| 1759 | #else | ||
| 1760 | if( ((pe[0] & 0xf) != 0) || (pe[1] != 0) | ||
| 1761 | || (pe[2] != 0) || (pe[3] != 0) ) | ||
| 1762 | { | ||
| 1763 | enan( y, NBITS ); | ||
| 1764 | return; | ||
| 1765 | } | ||
| 1766 | #endif | ||
| 1767 | #endif /* NANS */ | ||
| 1768 | eclear( y ); | ||
| 1769 | einfin( y ); | ||
| 1770 | if( yy[0] ) | ||
| 1771 | eneg(y); | ||
| 1772 | return; | ||
| 1773 | } | ||
| 1774 | #endif | ||
| 1775 | r >>= 4; | ||
| 1776 | /* If zero exponent, then the significand is denormalized. | ||
| 1777 | * So, take back the understood high significand bit. */ | ||
| 1778 | if( r == 0 ) | ||
| 1779 | { | ||
| 1780 | denorm = 1; | ||
| 1781 | yy[M] &= ~0x10; | ||
| 1782 | } | ||
| 1783 | r += EXONE - 01777; | ||
| 1784 | yy[E] = r; | ||
| 1785 | p = &yy[M+1]; | ||
| 1786 | #ifdef IBMPC | ||
| 1787 | *p++ = *(--e); | ||
| 1788 | *p++ = *(--e); | ||
| 1789 | *p++ = *(--e); | ||
| 1790 | #endif | ||
| 1791 | #ifdef MIEEE | ||
| 1792 | ++e; | ||
| 1793 | *p++ = *e++; | ||
| 1794 | *p++ = *e++; | ||
| 1795 | *p++ = *e++; | ||
| 1796 | #endif | ||
| 1797 | (void )eshift( yy, -5 ); | ||
| 1798 | if( denorm ) | ||
| 1799 | { /* if zero exponent, then normalize the significand */ | ||
| 1800 | if( (k = enormlz(yy)) > NBITS ) | ||
| 1801 | ecleazs(yy); | ||
| 1802 | else | ||
| 1803 | yy[E] -= (unsigned short )(k-1); | ||
| 1804 | } | ||
| 1805 | emovo( yy, y ); | ||
| 1806 | #endif /* not DEC */ | ||
| 1807 | } | ||
| 1808 | |||
| 1809 | void e64toe( pe, y ) | ||
| 1810 | unsigned short *pe, *y; | ||
| 1811 | { | ||
| 1812 | unsigned short yy[NI]; | ||
| 1813 | unsigned short *p, *q, *e; | ||
| 1814 | int i; | ||
| 1815 | |||
| 1816 | e = pe; | ||
| 1817 | p = yy; | ||
| 1818 | for( i=0; i<NE-5; i++ ) | ||
| 1819 | *p++ = 0; | ||
| 1820 | #ifdef IBMPC | ||
| 1821 | for( i=0; i<5; i++ ) | ||
| 1822 | *p++ = *e++; | ||
| 1823 | #endif | ||
| 1824 | #ifdef DEC | ||
| 1825 | for( i=0; i<5; i++ ) | ||
| 1826 | *p++ = *e++; | ||
| 1827 | #endif | ||
| 1828 | #ifdef MIEEE | ||
| 1829 | p = &yy[0] + (NE-1); | ||
| 1830 | *p-- = *e++; | ||
| 1831 | ++e; | ||
| 1832 | for( i=0; i<4; i++ ) | ||
| 1833 | *p-- = *e++; | ||
| 1834 | #endif | ||
| 1835 | |||
| 1836 | #ifdef IBMPC | ||
| 1837 | /* For Intel long double, shift denormal significand up 1 | ||
| 1838 | -- but only if the top significand bit is zero. */ | ||
| 1839 | if((yy[NE-1] & 0x7fff) == 0 && (yy[NE-2] & 0x8000) == 0) | ||
| 1840 | { | ||
| 1841 | unsigned short temp[NI+1]; | ||
| 1842 | emovi(yy, temp); | ||
| 1843 | eshup1(temp); | ||
| 1844 | emovo(temp,y); | ||
| 1845 | return; | ||
| 1846 | } | ||
| 1847 | #endif | ||
| 1848 | #ifdef INFINITY | ||
| 1849 | /* Point to the exponent field. */ | ||
| 1850 | p = &yy[NE-1]; | ||
| 1851 | if ((*p & 0x7fff) == 0x7fff) | ||
| 1852 | { | ||
| 1853 | #ifdef NANS | ||
| 1854 | #ifdef IBMPC | ||
| 1855 | for( i=0; i<4; i++ ) | ||
| 1856 | { | ||
| 1857 | if((i != 3 && pe[i] != 0) | ||
| 1858 | /* Check for Intel long double infinity pattern. */ | ||
| 1859 | || (i == 3 && pe[i] != 0x8000)) | ||
| 1860 | { | ||
| 1861 | enan( y, NBITS ); | ||
| 1862 | return; | ||
| 1863 | } | ||
| 1864 | } | ||
| 1865 | #else | ||
| 1866 | /* In Motorola extended precision format, the most significant | ||
| 1867 | bit of an infinity mantissa could be either 1 or 0. It is | ||
| 1868 | the lower order bits that tell whether the value is a NaN. */ | ||
| 1869 | if ((pe[2] & 0x7fff) != 0) | ||
| 1870 | goto bigend_nan; | ||
| 1871 | |||
| 1872 | for( i=3; i<=5; i++ ) | ||
| 1873 | { | ||
| 1874 | if( pe[i] != 0 ) | ||
| 1875 | { | ||
| 1876 | bigend_nan: | ||
| 1877 | enan( y, NBITS ); | ||
| 1878 | return; | ||
| 1879 | } | ||
| 1880 | } | ||
| 1881 | #endif | ||
| 1882 | #endif /* NANS */ | ||
| 1883 | eclear( y ); | ||
| 1884 | einfin( y ); | ||
| 1885 | if( *p & 0x8000 ) | ||
| 1886 | eneg(y); | ||
| 1887 | return; | ||
| 1888 | } | ||
| 1889 | #endif | ||
| 1890 | p = yy; | ||
| 1891 | q = y; | ||
| 1892 | for( i=0; i<NE; i++ ) | ||
| 1893 | *q++ = *p++; | ||
| 1894 | } | ||
| 1895 | |||
| 1896 | void e113toe(pe,y) | ||
| 1897 | unsigned short *pe, *y; | ||
| 1898 | { | ||
| 1899 | register unsigned short r; | ||
| 1900 | unsigned short *e, *p; | ||
| 1901 | unsigned short yy[NI]; | ||
| 1902 | int denorm, i; | ||
| 1903 | |||
| 1904 | e = pe; | ||
| 1905 | denorm = 0; | ||
| 1906 | ecleaz(yy); | ||
| 1907 | #ifdef IBMPC | ||
| 1908 | e += 7; | ||
| 1909 | #endif | ||
| 1910 | r = *e; | ||
| 1911 | yy[0] = 0; | ||
| 1912 | if( r & 0x8000 ) | ||
| 1913 | yy[0] = 0xffff; | ||
| 1914 | r &= 0x7fff; | ||
| 1915 | #ifdef INFINITY | ||
| 1916 | if( r == 0x7fff ) | ||
| 1917 | { | ||
| 1918 | #ifdef NANS | ||
| 1919 | #ifdef IBMPC | ||
| 1920 | for( i=0; i<7; i++ ) | ||
| 1921 | { | ||
| 1922 | if( pe[i] != 0 ) | ||
| 1923 | { | ||
| 1924 | enan( y, NBITS ); | ||
| 1925 | return; | ||
| 1926 | } | ||
| 1927 | } | ||
| 1928 | #else | ||
| 1929 | for( i=1; i<8; i++ ) | ||
| 1930 | { | ||
| 1931 | if( pe[i] != 0 ) | ||
| 1932 | { | ||
| 1933 | enan( y, NBITS ); | ||
| 1934 | return; | ||
| 1935 | } | ||
| 1936 | } | ||
| 1937 | #endif | ||
| 1938 | #endif /* NANS */ | ||
| 1939 | eclear( y ); | ||
| 1940 | einfin( y ); | ||
| 1941 | if( *e & 0x8000 ) | ||
| 1942 | eneg(y); | ||
| 1943 | return; | ||
| 1944 | } | ||
| 1945 | #endif /* INFINITY */ | ||
| 1946 | yy[E] = r; | ||
| 1947 | p = &yy[M + 1]; | ||
| 1948 | #ifdef IBMPC | ||
| 1949 | for( i=0; i<7; i++ ) | ||
| 1950 | *p++ = *(--e); | ||
| 1951 | #endif | ||
| 1952 | #ifdef MIEEE | ||
| 1953 | ++e; | ||
| 1954 | for( i=0; i<7; i++ ) | ||
| 1955 | *p++ = *e++; | ||
| 1956 | #endif | ||
| 1957 | /* If denormal, remove the implied bit; else shift down 1. */ | ||
| 1958 | if( r == 0 ) | ||
| 1959 | { | ||
| 1960 | yy[M] = 0; | ||
| 1961 | } | ||
| 1962 | else | ||
| 1963 | { | ||
| 1964 | yy[M] = 1; | ||
| 1965 | eshift( yy, -1 ); | ||
| 1966 | } | ||
| 1967 | emovo(yy,y); | ||
| 1968 | } | ||
| 1969 | |||
| 1970 | |||
| 1971 | /* | ||
| 1972 | ; Convert IEEE single precision to e type | ||
| 1973 | ; float d; | ||
| 1974 | ; unsigned short x[N+2]; | ||
| 1975 | ; dtox( &d, x ); | ||
| 1976 | */ | ||
| 1977 | void e24toe( pe, y ) | ||
| 1978 | unsigned short *pe, *y; | ||
| 1979 | { | ||
| 1980 | register unsigned short r; | ||
| 1981 | register unsigned short *p, *e; | ||
| 1982 | unsigned short yy[NI]; | ||
| 1983 | int denorm, k; | ||
| 1984 | |||
| 1985 | e = pe; | ||
| 1986 | denorm = 0; /* flag if denormalized number */ | ||
| 1987 | ecleaz(yy); | ||
| 1988 | #ifdef IBMPC | ||
| 1989 | e += 1; | ||
| 1990 | #endif | ||
| 1991 | #ifdef DEC | ||
| 1992 | e += 1; | ||
| 1993 | #endif | ||
| 1994 | r = *e; | ||
| 1995 | yy[0] = 0; | ||
| 1996 | if( r & 0x8000 ) | ||
| 1997 | yy[0] = 0xffff; | ||
| 1998 | yy[M] = (r & 0x7f) | 0200; | ||
| 1999 | r &= ~0x807f; /* strip sign and 7 significand bits */ | ||
| 2000 | #ifdef INFINITY | ||
| 2001 | if( r == 0x7f80 ) | ||
| 2002 | { | ||
| 2003 | #ifdef NANS | ||
| 2004 | #ifdef MIEEE | ||
| 2005 | if( ((pe[0] & 0x7f) != 0) || (pe[1] != 0) ) | ||
| 2006 | { | ||
| 2007 | enan( y, NBITS ); | ||
| 2008 | return; | ||
| 2009 | } | ||
| 2010 | #else | ||
| 2011 | if( ((pe[1] & 0x7f) != 0) || (pe[0] != 0) ) | ||
| 2012 | { | ||
| 2013 | enan( y, NBITS ); | ||
| 2014 | return; | ||
| 2015 | } | ||
| 2016 | #endif | ||
| 2017 | #endif /* NANS */ | ||
| 2018 | eclear( y ); | ||
| 2019 | einfin( y ); | ||
| 2020 | if( yy[0] ) | ||
| 2021 | eneg(y); | ||
| 2022 | return; | ||
| 2023 | } | ||
| 2024 | #endif | ||
| 2025 | r >>= 7; | ||
| 2026 | /* If zero exponent, then the significand is denormalized. | ||
| 2027 | * So, take back the understood high significand bit. */ | ||
| 2028 | if( r == 0 ) | ||
| 2029 | { | ||
| 2030 | denorm = 1; | ||
| 2031 | yy[M] &= ~0200; | ||
| 2032 | } | ||
| 2033 | r += EXONE - 0177; | ||
| 2034 | yy[E] = r; | ||
| 2035 | p = &yy[M+1]; | ||
| 2036 | #ifdef IBMPC | ||
| 2037 | *p++ = *(--e); | ||
| 2038 | #endif | ||
| 2039 | #ifdef DEC | ||
| 2040 | *p++ = *(--e); | ||
| 2041 | #endif | ||
| 2042 | #ifdef MIEEE | ||
| 2043 | ++e; | ||
| 2044 | *p++ = *e++; | ||
| 2045 | #endif | ||
| 2046 | (void )eshift( yy, -8 ); | ||
| 2047 | if( denorm ) | ||
| 2048 | { /* if zero exponent, then normalize the significand */ | ||
| 2049 | if( (k = enormlz(yy)) > NBITS ) | ||
| 2050 | ecleazs(yy); | ||
| 2051 | else | ||
| 2052 | yy[E] -= (unsigned short )(k-1); | ||
| 2053 | } | ||
| 2054 | emovo( yy, y ); | ||
| 2055 | } | ||
| 2056 | |||
| 2057 | void etoe113(x,e) | ||
| 2058 | unsigned short *x, *e; | ||
| 2059 | { | ||
| 2060 | unsigned short xi[NI]; | ||
| 2061 | long exp; | ||
| 2062 | int rndsav; | ||
| 2063 | |||
| 2064 | #ifdef NANS | ||
| 2065 | if( eisnan(x) ) | ||
| 2066 | { | ||
| 2067 | enan( e, 113 ); | ||
| 2068 | return; | ||
| 2069 | } | ||
| 2070 | #endif | ||
| 2071 | emovi( x, xi ); | ||
| 2072 | exp = (long )xi[E]; | ||
| 2073 | #ifdef INFINITY | ||
| 2074 | if( eisinf(x) ) | ||
| 2075 | goto nonorm; | ||
| 2076 | #endif | ||
| 2077 | /* round off to nearest or even */ | ||
| 2078 | rndsav = rndprc; | ||
| 2079 | rndprc = 113; | ||
| 2080 | emdnorm( xi, 0, 0, exp, 64 ); | ||
| 2081 | rndprc = rndsav; | ||
| 2082 | nonorm: | ||
| 2083 | toe113 (xi, e); | ||
| 2084 | } | ||
| 2085 | |||
| 2086 | /* move out internal format to ieee long double */ | ||
| 2087 | static void toe113(a,b) | ||
| 2088 | unsigned short *a, *b; | ||
| 2089 | { | ||
| 2090 | register unsigned short *p, *q; | ||
| 2091 | unsigned short i; | ||
| 2092 | |||
| 2093 | #ifdef NANS | ||
| 2094 | if( eiisnan(a) ) | ||
| 2095 | { | ||
| 2096 | enan( b, 113 ); | ||
| 2097 | return; | ||
| 2098 | } | ||
| 2099 | #endif | ||
| 2100 | p = a; | ||
| 2101 | #ifdef MIEEE | ||
| 2102 | q = b; | ||
| 2103 | #else | ||
| 2104 | q = b + 7; /* point to output exponent */ | ||
| 2105 | #endif | ||
| 2106 | |||
| 2107 | /* If not denormal, delete the implied bit. */ | ||
| 2108 | if( a[E] != 0 ) | ||
| 2109 | { | ||
| 2110 | eshup1 (a); | ||
| 2111 | } | ||
| 2112 | /* combine sign and exponent */ | ||
| 2113 | i = *p++; | ||
| 2114 | #ifdef MIEEE | ||
| 2115 | if( i ) | ||
| 2116 | *q++ = *p++ | 0x8000; | ||
| 2117 | else | ||
| 2118 | *q++ = *p++; | ||
| 2119 | #else | ||
| 2120 | if( i ) | ||
| 2121 | *q-- = *p++ | 0x8000; | ||
| 2122 | else | ||
| 2123 | *q-- = *p++; | ||
| 2124 | #endif | ||
| 2125 | /* skip over guard word */ | ||
| 2126 | ++p; | ||
| 2127 | /* move the significand */ | ||
| 2128 | #ifdef MIEEE | ||
| 2129 | for (i = 0; i < 7; i++) | ||
| 2130 | *q++ = *p++; | ||
| 2131 | #else | ||
| 2132 | for (i = 0; i < 7; i++) | ||
| 2133 | *q-- = *p++; | ||
| 2134 | #endif | ||
| 2135 | } | ||
| 2136 | |||
| 2137 | |||
| 2138 | void etoe64( x, e ) | ||
| 2139 | unsigned short *x, *e; | ||
| 2140 | { | ||
| 2141 | unsigned short xi[NI]; | ||
| 2142 | long exp; | ||
| 2143 | int rndsav; | ||
| 2144 | |||
| 2145 | #ifdef NANS | ||
| 2146 | if( eisnan(x) ) | ||
| 2147 | { | ||
| 2148 | enan( e, 64 ); | ||
| 2149 | return; | ||
| 2150 | } | ||
| 2151 | #endif | ||
| 2152 | emovi( x, xi ); | ||
| 2153 | exp = (long )xi[E]; /* adjust exponent for offset */ | ||
| 2154 | #ifdef INFINITY | ||
| 2155 | if( eisinf(x) ) | ||
| 2156 | goto nonorm; | ||
| 2157 | #endif | ||
| 2158 | /* round off to nearest or even */ | ||
| 2159 | rndsav = rndprc; | ||
| 2160 | rndprc = 64; | ||
| 2161 | emdnorm( xi, 0, 0, exp, 64 ); | ||
| 2162 | rndprc = rndsav; | ||
| 2163 | nonorm: | ||
| 2164 | toe64( xi, e ); | ||
| 2165 | } | ||
| 2166 | |||
| 2167 | /* move out internal format to ieee long double */ | ||
| 2168 | static void toe64( a, b ) | ||
| 2169 | unsigned short *a, *b; | ||
| 2170 | { | ||
| 2171 | register unsigned short *p, *q; | ||
| 2172 | unsigned short i; | ||
| 2173 | |||
| 2174 | #ifdef NANS | ||
| 2175 | if( eiisnan(a) ) | ||
| 2176 | { | ||
| 2177 | enan( b, 64 ); | ||
| 2178 | return; | ||
| 2179 | } | ||
| 2180 | #endif | ||
| 2181 | #ifdef IBMPC | ||
| 2182 | /* Shift Intel denormal significand down 1. */ | ||
| 2183 | if( a[E] == 0 ) | ||
| 2184 | eshdn1(a); | ||
| 2185 | #endif | ||
| 2186 | p = a; | ||
| 2187 | #ifdef MIEEE | ||
| 2188 | q = b; | ||
| 2189 | #else | ||
| 2190 | q = b + 4; /* point to output exponent */ | ||
| 2191 | #if 1 | ||
| 2192 | /* NOTE: if data type is 96 bits wide, clear the last word here. */ | ||
| 2193 | *(q+1)= 0; | ||
| 2194 | #endif | ||
| 2195 | #endif | ||
| 2196 | |||
| 2197 | /* combine sign and exponent */ | ||
| 2198 | i = *p++; | ||
| 2199 | #ifdef MIEEE | ||
| 2200 | if( i ) | ||
| 2201 | *q++ = *p++ | 0x8000; | ||
| 2202 | else | ||
| 2203 | *q++ = *p++; | ||
| 2204 | *q++ = 0; | ||
| 2205 | #else | ||
| 2206 | if( i ) | ||
| 2207 | *q-- = *p++ | 0x8000; | ||
| 2208 | else | ||
| 2209 | *q-- = *p++; | ||
| 2210 | #endif | ||
| 2211 | /* skip over guard word */ | ||
| 2212 | ++p; | ||
| 2213 | /* move the significand */ | ||
| 2214 | #ifdef MIEEE | ||
| 2215 | for( i=0; i<4; i++ ) | ||
| 2216 | *q++ = *p++; | ||
| 2217 | #else | ||
| 2218 | #ifdef INFINITY | ||
| 2219 | if (eiisinf (a)) | ||
| 2220 | { | ||
| 2221 | /* Intel long double infinity. */ | ||
| 2222 | *q-- = 0x8000; | ||
| 2223 | *q-- = 0; | ||
| 2224 | *q-- = 0; | ||
| 2225 | *q = 0; | ||
| 2226 | return; | ||
| 2227 | } | ||
| 2228 | #endif | ||
| 2229 | for( i=0; i<4; i++ ) | ||
| 2230 | *q-- = *p++; | ||
| 2231 | #endif | ||
| 2232 | } | ||
| 2233 | |||
| 2234 | |||
| 2235 | /* | ||
| 2236 | ; e type to IEEE double precision | ||
| 2237 | ; double d; | ||
| 2238 | ; unsigned short x[NE]; | ||
| 2239 | ; etoe53( x, &d ); | ||
| 2240 | */ | ||
| 2241 | |||
| 2242 | #ifdef DEC | ||
| 2243 | |||
| 2244 | void etoe53( x, e ) | ||
| 2245 | unsigned short *x, *e; | ||
| 2246 | { | ||
| 2247 | etodec( x, e ); /* see etodec.c */ | ||
| 2248 | } | ||
| 2249 | |||
| 2250 | static void toe53( x, y ) | ||
| 2251 | unsigned short *x, *y; | ||
| 2252 | { | ||
| 2253 | todec( x, y ); | ||
| 2254 | } | ||
| 2255 | |||
| 2256 | #else | ||
| 2257 | |||
| 2258 | void etoe53( x, e ) | ||
| 2259 | unsigned short *x, *e; | ||
| 2260 | { | ||
| 2261 | unsigned short xi[NI]; | ||
| 2262 | long exp; | ||
| 2263 | int rndsav; | ||
| 2264 | |||
| 2265 | #ifdef NANS | ||
| 2266 | if( eisnan(x) ) | ||
| 2267 | { | ||
| 2268 | enan( e, 53 ); | ||
| 2269 | return; | ||
| 2270 | } | ||
| 2271 | #endif | ||
| 2272 | emovi( x, xi ); | ||
| 2273 | exp = (long )xi[E] - (EXONE - 0x3ff); /* adjust exponent for offsets */ | ||
| 2274 | #ifdef INFINITY | ||
| 2275 | if( eisinf(x) ) | ||
| 2276 | goto nonorm; | ||
| 2277 | #endif | ||
| 2278 | /* round off to nearest or even */ | ||
| 2279 | rndsav = rndprc; | ||
| 2280 | rndprc = 53; | ||
| 2281 | emdnorm( xi, 0, 0, exp, 64 ); | ||
| 2282 | rndprc = rndsav; | ||
| 2283 | nonorm: | ||
| 2284 | toe53( xi, e ); | ||
| 2285 | } | ||
| 2286 | |||
| 2287 | |||
| 2288 | static void toe53( x, y ) | ||
| 2289 | unsigned short *x, *y; | ||
| 2290 | { | ||
| 2291 | unsigned short i; | ||
| 2292 | unsigned short *p; | ||
| 2293 | |||
| 2294 | |||
| 2295 | #ifdef NANS | ||
| 2296 | if( eiisnan(x) ) | ||
| 2297 | { | ||
| 2298 | enan( y, 53 ); | ||
| 2299 | return; | ||
| 2300 | } | ||
| 2301 | #endif | ||
| 2302 | p = &x[0]; | ||
| 2303 | #ifdef IBMPC | ||
| 2304 | y += 3; | ||
| 2305 | #endif | ||
| 2306 | *y = 0; /* output high order */ | ||
| 2307 | if( *p++ ) | ||
| 2308 | *y = 0x8000; /* output sign bit */ | ||
| 2309 | |||
| 2310 | i = *p++; | ||
| 2311 | if( i >= (unsigned int )2047 ) | ||
| 2312 | { /* Saturate at largest number less than infinity. */ | ||
| 2313 | #ifdef INFINITY | ||
| 2314 | *y |= 0x7ff0; | ||
| 2315 | #ifdef IBMPC | ||
| 2316 | *(--y) = 0; | ||
| 2317 | *(--y) = 0; | ||
| 2318 | *(--y) = 0; | ||
| 2319 | #endif | ||
| 2320 | #ifdef MIEEE | ||
| 2321 | ++y; | ||
| 2322 | *y++ = 0; | ||
| 2323 | *y++ = 0; | ||
| 2324 | *y++ = 0; | ||
| 2325 | #endif | ||
| 2326 | #else | ||
| 2327 | *y |= (unsigned short )0x7fef; | ||
| 2328 | #ifdef IBMPC | ||
| 2329 | *(--y) = 0xffff; | ||
| 2330 | *(--y) = 0xffff; | ||
| 2331 | *(--y) = 0xffff; | ||
| 2332 | #endif | ||
| 2333 | #ifdef MIEEE | ||
| 2334 | ++y; | ||
| 2335 | *y++ = 0xffff; | ||
| 2336 | *y++ = 0xffff; | ||
| 2337 | *y++ = 0xffff; | ||
| 2338 | #endif | ||
| 2339 | #endif | ||
| 2340 | return; | ||
| 2341 | } | ||
| 2342 | if( i == 0 ) | ||
| 2343 | { | ||
| 2344 | (void )eshift( x, 4 ); | ||
| 2345 | } | ||
| 2346 | else | ||
| 2347 | { | ||
| 2348 | i <<= 4; | ||
| 2349 | (void )eshift( x, 5 ); | ||
| 2350 | } | ||
| 2351 | i |= *p++ & (unsigned short )0x0f; /* *p = xi[M] */ | ||
| 2352 | *y |= (unsigned short )i; /* high order output already has sign bit set */ | ||
| 2353 | #ifdef IBMPC | ||
| 2354 | *(--y) = *p++; | ||
| 2355 | *(--y) = *p++; | ||
| 2356 | *(--y) = *p; | ||
| 2357 | #endif | ||
| 2358 | #ifdef MIEEE | ||
| 2359 | ++y; | ||
| 2360 | *y++ = *p++; | ||
| 2361 | *y++ = *p++; | ||
| 2362 | *y++ = *p++; | ||
| 2363 | #endif | ||
| 2364 | } | ||
| 2365 | |||
| 2366 | #endif /* not DEC */ | ||
| 2367 | |||
| 2368 | |||
| 2369 | |||
| 2370 | /* | ||
| 2371 | ; e type to IEEE single precision | ||
| 2372 | ; float d; | ||
| 2373 | ; unsigned short x[N+2]; | ||
| 2374 | ; xtod( x, &d ); | ||
| 2375 | */ | ||
| 2376 | void etoe24( x, e ) | ||
| 2377 | unsigned short *x, *e; | ||
| 2378 | { | ||
| 2379 | long exp; | ||
| 2380 | unsigned short xi[NI]; | ||
| 2381 | int rndsav; | ||
| 2382 | |||
| 2383 | #ifdef NANS | ||
| 2384 | if( eisnan(x) ) | ||
| 2385 | { | ||
| 2386 | enan( e, 24 ); | ||
| 2387 | return; | ||
| 2388 | } | ||
| 2389 | #endif | ||
| 2390 | emovi( x, xi ); | ||
| 2391 | exp = (long )xi[E] - (EXONE - 0177); /* adjust exponent for offsets */ | ||
| 2392 | #ifdef INFINITY | ||
| 2393 | if( eisinf(x) ) | ||
| 2394 | goto nonorm; | ||
| 2395 | #endif | ||
| 2396 | /* round off to nearest or even */ | ||
| 2397 | rndsav = rndprc; | ||
| 2398 | rndprc = 24; | ||
| 2399 | emdnorm( xi, 0, 0, exp, 64 ); | ||
| 2400 | rndprc = rndsav; | ||
| 2401 | nonorm: | ||
| 2402 | toe24( xi, e ); | ||
| 2403 | } | ||
| 2404 | |||
| 2405 | static void toe24( x, y ) | ||
| 2406 | unsigned short *x, *y; | ||
| 2407 | { | ||
| 2408 | unsigned short i; | ||
| 2409 | unsigned short *p; | ||
| 2410 | |||
| 2411 | #ifdef NANS | ||
| 2412 | if( eiisnan(x) ) | ||
| 2413 | { | ||
| 2414 | enan( y, 24 ); | ||
| 2415 | return; | ||
| 2416 | } | ||
| 2417 | #endif | ||
| 2418 | p = &x[0]; | ||
| 2419 | #ifdef IBMPC | ||
| 2420 | y += 1; | ||
| 2421 | #endif | ||
| 2422 | #ifdef DEC | ||
| 2423 | y += 1; | ||
| 2424 | #endif | ||
| 2425 | *y = 0; /* output high order */ | ||
| 2426 | if( *p++ ) | ||
| 2427 | *y = 0x8000; /* output sign bit */ | ||
| 2428 | |||
| 2429 | i = *p++; | ||
| 2430 | if( i >= 255 ) | ||
| 2431 | { /* Saturate at largest number less than infinity. */ | ||
| 2432 | #ifdef INFINITY | ||
| 2433 | *y |= (unsigned short )0x7f80; | ||
| 2434 | #ifdef IBMPC | ||
| 2435 | *(--y) = 0; | ||
| 2436 | #endif | ||
| 2437 | #ifdef DEC | ||
| 2438 | *(--y) = 0; | ||
| 2439 | #endif | ||
| 2440 | #ifdef MIEEE | ||
| 2441 | ++y; | ||
| 2442 | *y = 0; | ||
| 2443 | #endif | ||
| 2444 | #else | ||
| 2445 | *y |= (unsigned short )0x7f7f; | ||
| 2446 | #ifdef IBMPC | ||
| 2447 | *(--y) = 0xffff; | ||
| 2448 | #endif | ||
| 2449 | #ifdef DEC | ||
| 2450 | *(--y) = 0xffff; | ||
| 2451 | #endif | ||
| 2452 | #ifdef MIEEE | ||
| 2453 | ++y; | ||
| 2454 | *y = 0xffff; | ||
| 2455 | #endif | ||
| 2456 | #endif | ||
| 2457 | return; | ||
| 2458 | } | ||
| 2459 | if( i == 0 ) | ||
| 2460 | { | ||
| 2461 | (void )eshift( x, 7 ); | ||
| 2462 | } | ||
| 2463 | else | ||
| 2464 | { | ||
| 2465 | i <<= 7; | ||
| 2466 | (void )eshift( x, 8 ); | ||
| 2467 | } | ||
| 2468 | i |= *p++ & (unsigned short )0x7f; /* *p = xi[M] */ | ||
| 2469 | *y |= i; /* high order output already has sign bit set */ | ||
| 2470 | #ifdef IBMPC | ||
| 2471 | *(--y) = *p; | ||
| 2472 | #endif | ||
| 2473 | #ifdef DEC | ||
| 2474 | *(--y) = *p; | ||
| 2475 | #endif | ||
| 2476 | #ifdef MIEEE | ||
| 2477 | ++y; | ||
| 2478 | *y = *p; | ||
| 2479 | #endif | ||
| 2480 | } | ||
| 2481 | |||
| 2482 | |||
| 2483 | /* Compare two e type numbers. | ||
| 2484 | * | ||
| 2485 | * unsigned short a[NE], b[NE]; | ||
| 2486 | * ecmp( a, b ); | ||
| 2487 | * | ||
| 2488 | * returns +1 if a > b | ||
| 2489 | * 0 if a == b | ||
| 2490 | * -1 if a < b | ||
| 2491 | * -2 if either a or b is a NaN. | ||
| 2492 | */ | ||
| 2493 | int ecmp( a, b ) | ||
| 2494 | unsigned short *a, *b; | ||
| 2495 | { | ||
| 2496 | unsigned short ai[NI], bi[NI]; | ||
| 2497 | register unsigned short *p, *q; | ||
| 2498 | register int i; | ||
| 2499 | int msign; | ||
| 2500 | |||
| 2501 | #ifdef NANS | ||
| 2502 | if (eisnan (a) || eisnan (b)) | ||
| 2503 | return( -2 ); | ||
| 2504 | #endif | ||
| 2505 | emovi( a, ai ); | ||
| 2506 | p = ai; | ||
| 2507 | emovi( b, bi ); | ||
| 2508 | q = bi; | ||
| 2509 | |||
| 2510 | if( *p != *q ) | ||
| 2511 | { /* the signs are different */ | ||
| 2512 | /* -0 equals + 0 */ | ||
| 2513 | for( i=1; i<NI-1; i++ ) | ||
| 2514 | { | ||
| 2515 | if( ai[i] != 0 ) | ||
| 2516 | goto nzro; | ||
| 2517 | if( bi[i] != 0 ) | ||
| 2518 | goto nzro; | ||
| 2519 | } | ||
| 2520 | return(0); | ||
| 2521 | nzro: | ||
| 2522 | if( *p == 0 ) | ||
| 2523 | return( 1 ); | ||
| 2524 | else | ||
| 2525 | return( -1 ); | ||
| 2526 | } | ||
| 2527 | /* both are the same sign */ | ||
| 2528 | if( *p == 0 ) | ||
| 2529 | msign = 1; | ||
| 2530 | else | ||
| 2531 | msign = -1; | ||
| 2532 | i = NI-1; | ||
| 2533 | do | ||
| 2534 | { | ||
| 2535 | if( *p++ != *q++ ) | ||
| 2536 | { | ||
| 2537 | goto diff; | ||
| 2538 | } | ||
| 2539 | } | ||
| 2540 | while( --i > 0 ); | ||
| 2541 | |||
| 2542 | return(0); /* equality */ | ||
| 2543 | |||
| 2544 | |||
| 2545 | |||
| 2546 | diff: | ||
| 2547 | |||
| 2548 | if( *(--p) > *(--q) ) | ||
| 2549 | return( msign ); /* p is bigger */ | ||
| 2550 | else | ||
| 2551 | return( -msign ); /* p is littler */ | ||
| 2552 | } | ||
| 2553 | |||
| 2554 | |||
| 2555 | |||
| 2556 | |||
| 2557 | /* Find nearest integer to x = floor( x + 0.5 ) | ||
| 2558 | * | ||
| 2559 | * unsigned short x[NE], y[NE] | ||
| 2560 | * eround( x, y ); | ||
| 2561 | */ | ||
| 2562 | void eround( x, y ) | ||
| 2563 | unsigned short *x, *y; | ||
| 2564 | { | ||
| 2565 | |||
| 2566 | eadd( ehalf, x, y ); | ||
| 2567 | efloor( y, y ); | ||
| 2568 | } | ||
| 2569 | |||
| 2570 | |||
| 2571 | |||
| 2572 | |||
| 2573 | /* | ||
| 2574 | ; convert long (32-bit) integer to e type | ||
| 2575 | ; | ||
| 2576 | ; long l; | ||
| 2577 | ; unsigned short x[NE]; | ||
| 2578 | ; ltoe( &l, x ); | ||
| 2579 | ; note &l is the memory address of l | ||
| 2580 | */ | ||
| 2581 | void ltoe( lp, y ) | ||
| 2582 | long *lp; /* lp is the memory address of a long integer */ | ||
| 2583 | unsigned short *y; /* y is the address of a short */ | ||
| 2584 | { | ||
| 2585 | unsigned short yi[NI]; | ||
| 2586 | unsigned long ll; | ||
| 2587 | int k; | ||
| 2588 | |||
| 2589 | ecleaz( yi ); | ||
| 2590 | if( *lp < 0 ) | ||
| 2591 | { | ||
| 2592 | ll = (unsigned long )( -(*lp) ); /* make it positive */ | ||
| 2593 | yi[0] = 0xffff; /* put correct sign in the e type number */ | ||
| 2594 | } | ||
| 2595 | else | ||
| 2596 | { | ||
| 2597 | ll = (unsigned long )( *lp ); | ||
| 2598 | } | ||
| 2599 | /* move the long integer to yi significand area */ | ||
| 2600 | if( sizeof(long) == 8 ) | ||
| 2601 | { | ||
| 2602 | yi[M] = (unsigned short) (ll >> (LONGBITS - 16)); | ||
| 2603 | yi[M + 1] = (unsigned short) (ll >> (LONGBITS - 32)); | ||
| 2604 | yi[M + 2] = (unsigned short) (ll >> 16); | ||
| 2605 | yi[M + 3] = (unsigned short) ll; | ||
| 2606 | yi[E] = EXONE + 47; /* exponent if normalize shift count were 0 */ | ||
| 2607 | } | ||
| 2608 | else | ||
| 2609 | { | ||
| 2610 | yi[M] = (unsigned short )(ll >> 16); | ||
| 2611 | yi[M+1] = (unsigned short )ll; | ||
| 2612 | yi[E] = EXONE + 15; /* exponent if normalize shift count were 0 */ | ||
| 2613 | } | ||
| 2614 | if( (k = enormlz( yi )) > NBITS ) /* normalize the significand */ | ||
| 2615 | ecleaz( yi ); /* it was zero */ | ||
| 2616 | else | ||
| 2617 | yi[E] -= (unsigned short )k; /* subtract shift count from exponent */ | ||
| 2618 | emovo( yi, y ); /* output the answer */ | ||
| 2619 | } | ||
| 2620 | |||
| 2621 | /* | ||
| 2622 | ; convert unsigned long (32-bit) integer to e type | ||
| 2623 | ; | ||
| 2624 | ; unsigned long l; | ||
| 2625 | ; unsigned short x[NE]; | ||
| 2626 | ; ltox( &l, x ); | ||
| 2627 | ; note &l is the memory address of l | ||
| 2628 | */ | ||
| 2629 | void ultoe( lp, y ) | ||
| 2630 | unsigned long *lp; /* lp is the memory address of a long integer */ | ||
| 2631 | unsigned short *y; /* y is the address of a short */ | ||
| 2632 | { | ||
| 2633 | unsigned short yi[NI]; | ||
| 2634 | unsigned long ll; | ||
| 2635 | int k; | ||
| 2636 | |||
| 2637 | ecleaz( yi ); | ||
| 2638 | ll = *lp; | ||
| 2639 | |||
| 2640 | /* move the long integer to ayi significand area */ | ||
| 2641 | if( sizeof(long) == 8 ) | ||
| 2642 | { | ||
| 2643 | yi[M] = (unsigned short) (ll >> (LONGBITS - 16)); | ||
| 2644 | yi[M + 1] = (unsigned short) (ll >> (LONGBITS - 32)); | ||
| 2645 | yi[M + 2] = (unsigned short) (ll >> 16); | ||
| 2646 | yi[M + 3] = (unsigned short) ll; | ||
| 2647 | yi[E] = EXONE + 47; /* exponent if normalize shift count were 0 */ | ||
| 2648 | } | ||
| 2649 | else | ||
| 2650 | { | ||
| 2651 | yi[M] = (unsigned short )(ll >> 16); | ||
| 2652 | yi[M+1] = (unsigned short )ll; | ||
| 2653 | yi[E] = EXONE + 15; /* exponent if normalize shift count were 0 */ | ||
| 2654 | } | ||
| 2655 | if( (k = enormlz( yi )) > NBITS ) /* normalize the significand */ | ||
| 2656 | ecleaz( yi ); /* it was zero */ | ||
| 2657 | else | ||
| 2658 | yi[E] -= (unsigned short )k; /* subtract shift count from exponent */ | ||
| 2659 | emovo( yi, y ); /* output the answer */ | ||
| 2660 | } | ||
| 2661 | |||
| 2662 | |||
| 2663 | /* | ||
| 2664 | ; Find long integer and fractional parts | ||
| 2665 | |||
| 2666 | ; long i; | ||
| 2667 | ; unsigned short x[NE], frac[NE]; | ||
| 2668 | ; xifrac( x, &i, frac ); | ||
| 2669 | |||
| 2670 | The integer output has the sign of the input. The fraction is | ||
| 2671 | the positive fractional part of abs(x). | ||
| 2672 | */ | ||
| 2673 | void eifrac( x, i, frac ) | ||
| 2674 | unsigned short *x; | ||
| 2675 | long *i; | ||
| 2676 | unsigned short *frac; | ||
| 2677 | { | ||
| 2678 | unsigned short xi[NI]; | ||
| 2679 | int j, k; | ||
| 2680 | unsigned long ll; | ||
| 2681 | |||
| 2682 | emovi( x, xi ); | ||
| 2683 | k = (int )xi[E] - (EXONE - 1); | ||
| 2684 | if( k <= 0 ) | ||
| 2685 | { | ||
| 2686 | /* if exponent <= 0, integer = 0 and real output is fraction */ | ||
| 2687 | *i = 0L; | ||
| 2688 | emovo( xi, frac ); | ||
| 2689 | return; | ||
| 2690 | } | ||
| 2691 | if( k > (8 * sizeof(long) - 1) ) | ||
| 2692 | { | ||
| 2693 | /* | ||
| 2694 | ; long integer overflow: output large integer | ||
| 2695 | ; and correct fraction | ||
| 2696 | */ | ||
| 2697 | j = 8 * sizeof(long) - 1; | ||
| 2698 | if( xi[0] ) | ||
| 2699 | *i = (long) ((unsigned long) 1) << j; | ||
| 2700 | else | ||
| 2701 | *i = (long) (((unsigned long) (~(0L))) >> 1); | ||
| 2702 | (void )eshift( xi, k ); | ||
| 2703 | } | ||
| 2704 | if( k > 16 ) | ||
| 2705 | { | ||
| 2706 | /* | ||
| 2707 | Shift more than 16 bits: shift up k-16 mod 16 | ||
| 2708 | then shift by 16's. | ||
| 2709 | */ | ||
| 2710 | j = k - ((k >> 4) << 4); | ||
| 2711 | eshift (xi, j); | ||
| 2712 | ll = xi[M]; | ||
| 2713 | k -= j; | ||
| 2714 | do | ||
| 2715 | { | ||
| 2716 | eshup6 (xi); | ||
| 2717 | ll = (ll << 16) | xi[M]; | ||
| 2718 | } | ||
| 2719 | while ((k -= 16) > 0); | ||
| 2720 | *i = ll; | ||
| 2721 | if (xi[0]) | ||
| 2722 | *i = -(*i); | ||
| 2723 | } | ||
| 2724 | else | ||
| 2725 | { | ||
| 2726 | /* shift not more than 16 bits */ | ||
| 2727 | eshift( xi, k ); | ||
| 2728 | *i = (long )xi[M] & 0xffff; | ||
| 2729 | if( xi[0] ) | ||
| 2730 | *i = -(*i); | ||
| 2731 | } | ||
| 2732 | xi[0] = 0; | ||
| 2733 | xi[E] = EXONE - 1; | ||
| 2734 | xi[M] = 0; | ||
| 2735 | if( (k = enormlz( xi )) > NBITS ) | ||
| 2736 | ecleaz( xi ); | ||
| 2737 | else | ||
| 2738 | xi[E] -= (unsigned short )k; | ||
| 2739 | |||
| 2740 | emovo( xi, frac ); | ||
| 2741 | } | ||
| 2742 | |||
| 2743 | |||
| 2744 | /* | ||
| 2745 | ; Find unsigned long integer and fractional parts | ||
| 2746 | |||
| 2747 | ; unsigned long i; | ||
| 2748 | ; unsigned short x[NE], frac[NE]; | ||
| 2749 | ; xifrac( x, &i, frac ); | ||
| 2750 | |||
| 2751 | A negative e type input yields integer output = 0 | ||
| 2752 | but correct fraction. | ||
| 2753 | */ | ||
| 2754 | void euifrac( x, i, frac ) | ||
| 2755 | unsigned short *x; | ||
| 2756 | unsigned long *i; | ||
| 2757 | unsigned short *frac; | ||
| 2758 | { | ||
| 2759 | unsigned short xi[NI]; | ||
| 2760 | int j, k; | ||
| 2761 | unsigned long ll; | ||
| 2762 | |||
| 2763 | emovi( x, xi ); | ||
| 2764 | k = (int )xi[E] - (EXONE - 1); | ||
| 2765 | if( k <= 0 ) | ||
| 2766 | { | ||
| 2767 | /* if exponent <= 0, integer = 0 and argument is fraction */ | ||
| 2768 | *i = 0L; | ||
| 2769 | emovo( xi, frac ); | ||
| 2770 | return; | ||
| 2771 | } | ||
| 2772 | if( k > (8 * sizeof(long)) ) | ||
| 2773 | { | ||
| 2774 | /* | ||
| 2775 | ; long integer overflow: output large integer | ||
| 2776 | ; and correct fraction | ||
| 2777 | */ | ||
| 2778 | *i = ~(0L); | ||
| 2779 | (void )eshift( xi, k ); | ||
| 2780 | } | ||
| 2781 | else if( k > 16 ) | ||
| 2782 | { | ||
| 2783 | /* | ||
| 2784 | Shift more than 16 bits: shift up k-16 mod 16 | ||
| 2785 | then shift up by 16's. | ||
| 2786 | */ | ||
| 2787 | j = k - ((k >> 4) << 4); | ||
| 2788 | eshift (xi, j); | ||
| 2789 | ll = xi[M]; | ||
| 2790 | k -= j; | ||
| 2791 | do | ||
| 2792 | { | ||
| 2793 | eshup6 (xi); | ||
| 2794 | ll = (ll << 16) | xi[M]; | ||
| 2795 | } | ||
| 2796 | while ((k -= 16) > 0); | ||
| 2797 | *i = ll; | ||
| 2798 | } | ||
| 2799 | else | ||
| 2800 | { | ||
| 2801 | /* shift not more than 16 bits */ | ||
| 2802 | eshift( xi, k ); | ||
| 2803 | *i = (long )xi[M] & 0xffff; | ||
| 2804 | } | ||
| 2805 | |||
| 2806 | if( xi[0] ) /* A negative value yields unsigned integer 0. */ | ||
| 2807 | *i = 0L; | ||
| 2808 | |||
| 2809 | xi[0] = 0; | ||
| 2810 | xi[E] = EXONE - 1; | ||
| 2811 | xi[M] = 0; | ||
| 2812 | if( (k = enormlz( xi )) > NBITS ) | ||
| 2813 | ecleaz( xi ); | ||
| 2814 | else | ||
| 2815 | xi[E] -= (unsigned short )k; | ||
| 2816 | |||
| 2817 | emovo( xi, frac ); | ||
| 2818 | } | ||
| 2819 | |||
| 2820 | |||
| 2821 | |||
| 2822 | /* | ||
| 2823 | ; Shift significand | ||
| 2824 | ; | ||
| 2825 | ; Shifts significand area up or down by the number of bits | ||
| 2826 | ; given by the variable sc. | ||
| 2827 | */ | ||
| 2828 | int eshift( x, sc ) | ||
| 2829 | unsigned short *x; | ||
| 2830 | int sc; | ||
| 2831 | { | ||
| 2832 | unsigned short lost; | ||
| 2833 | unsigned short *p; | ||
| 2834 | |||
| 2835 | if( sc == 0 ) | ||
| 2836 | return( 0 ); | ||
| 2837 | |||
| 2838 | lost = 0; | ||
| 2839 | p = x + NI-1; | ||
| 2840 | |||
| 2841 | if( sc < 0 ) | ||
| 2842 | { | ||
| 2843 | sc = -sc; | ||
| 2844 | while( sc >= 16 ) | ||
| 2845 | { | ||
| 2846 | lost |= *p; /* remember lost bits */ | ||
| 2847 | eshdn6(x); | ||
| 2848 | sc -= 16; | ||
| 2849 | } | ||
| 2850 | |||
| 2851 | while( sc >= 8 ) | ||
| 2852 | { | ||
| 2853 | lost |= *p & 0xff; | ||
| 2854 | eshdn8(x); | ||
| 2855 | sc -= 8; | ||
| 2856 | } | ||
| 2857 | |||
| 2858 | while( sc > 0 ) | ||
| 2859 | { | ||
| 2860 | lost |= *p & 1; | ||
| 2861 | eshdn1(x); | ||
| 2862 | sc -= 1; | ||
| 2863 | } | ||
| 2864 | } | ||
| 2865 | else | ||
| 2866 | { | ||
| 2867 | while( sc >= 16 ) | ||
| 2868 | { | ||
| 2869 | eshup6(x); | ||
| 2870 | sc -= 16; | ||
| 2871 | } | ||
| 2872 | |||
| 2873 | while( sc >= 8 ) | ||
| 2874 | { | ||
| 2875 | eshup8(x); | ||
| 2876 | sc -= 8; | ||
| 2877 | } | ||
| 2878 | |||
| 2879 | while( sc > 0 ) | ||
| 2880 | { | ||
| 2881 | eshup1(x); | ||
| 2882 | sc -= 1; | ||
| 2883 | } | ||
| 2884 | } | ||
| 2885 | if( lost ) | ||
| 2886 | lost = 1; | ||
| 2887 | return( (int )lost ); | ||
| 2888 | } | ||
| 2889 | |||
| 2890 | |||
| 2891 | |||
| 2892 | /* | ||
| 2893 | ; normalize | ||
| 2894 | ; | ||
| 2895 | ; Shift normalizes the significand area pointed to by argument | ||
| 2896 | ; shift count (up = positive) is returned. | ||
| 2897 | */ | ||
| 2898 | int enormlz(x) | ||
| 2899 | unsigned short x[]; | ||
| 2900 | { | ||
| 2901 | register unsigned short *p; | ||
| 2902 | int sc; | ||
| 2903 | |||
| 2904 | sc = 0; | ||
| 2905 | p = &x[M]; | ||
| 2906 | if( *p != 0 ) | ||
| 2907 | goto normdn; | ||
| 2908 | ++p; | ||
| 2909 | if( *p & 0x8000 ) | ||
| 2910 | return( 0 ); /* already normalized */ | ||
| 2911 | while( *p == 0 ) | ||
| 2912 | { | ||
| 2913 | eshup6(x); | ||
| 2914 | sc += 16; | ||
| 2915 | /* With guard word, there are NBITS+16 bits available. | ||
| 2916 | * return true if all are zero. | ||
| 2917 | */ | ||
| 2918 | if( sc > NBITS ) | ||
| 2919 | return( sc ); | ||
| 2920 | } | ||
| 2921 | /* see if high byte is zero */ | ||
| 2922 | while( (*p & 0xff00) == 0 ) | ||
| 2923 | { | ||
| 2924 | eshup8(x); | ||
| 2925 | sc += 8; | ||
| 2926 | } | ||
| 2927 | /* now shift 1 bit at a time */ | ||
| 2928 | while( (*p & 0x8000) == 0) | ||
| 2929 | { | ||
| 2930 | eshup1(x); | ||
| 2931 | sc += 1; | ||
| 2932 | if( sc > (NBITS+16) ) | ||
| 2933 | { | ||
| 2934 | mtherr( "enormlz", UNDERFLOW ); | ||
| 2935 | return( sc ); | ||
| 2936 | } | ||
| 2937 | } | ||
| 2938 | return( sc ); | ||
| 2939 | |||
| 2940 | /* Normalize by shifting down out of the high guard word | ||
| 2941 | of the significand */ | ||
| 2942 | normdn: | ||
| 2943 | |||
| 2944 | if( *p & 0xff00 ) | ||
| 2945 | { | ||
| 2946 | eshdn8(x); | ||
| 2947 | sc -= 8; | ||
| 2948 | } | ||
| 2949 | while( *p != 0 ) | ||
| 2950 | { | ||
| 2951 | eshdn1(x); | ||
| 2952 | sc -= 1; | ||
| 2953 | |||
| 2954 | if( sc < -NBITS ) | ||
| 2955 | { | ||
| 2956 | mtherr( "enormlz", OVERFLOW ); | ||
| 2957 | return( sc ); | ||
| 2958 | } | ||
| 2959 | } | ||
| 2960 | return( sc ); | ||
| 2961 | } | ||
| 2962 | |||
| 2963 | |||
| 2964 | |||
| 2965 | |||
| 2966 | /* Convert e type number to decimal format ASCII string. | ||
| 2967 | * The constants are for 64 bit precision. | ||
| 2968 | */ | ||
| 2969 | |||
| 2970 | #define NTEN 12 | ||
| 2971 | #define MAXP 4096 | ||
| 2972 | |||
| 2973 | #if NE == 10 | ||
| 2974 | static unsigned short etens[NTEN + 1][NE] = | ||
| 2975 | { | ||
| 2976 | {0x6576, 0x4a92, 0x804a, 0x153f, | ||
| 2977 | 0xc94c, 0x979a, 0x8a20, 0x5202, 0xc460, 0x7525,}, /* 10**4096 */ | ||
| 2978 | {0x6a32, 0xce52, 0x329a, 0x28ce, | ||
| 2979 | 0xa74d, 0x5de4, 0xc53d, 0x3b5d, 0x9e8b, 0x5a92,}, /* 10**2048 */ | ||
| 2980 | {0x526c, 0x50ce, 0xf18b, 0x3d28, | ||
| 2981 | 0x650d, 0x0c17, 0x8175, 0x7586, 0xc976, 0x4d48,}, | ||
| 2982 | {0x9c66, 0x58f8, 0xbc50, 0x5c54, | ||
| 2983 | 0xcc65, 0x91c6, 0xa60e, 0xa0ae, 0xe319, 0x46a3,}, | ||
| 2984 | {0x851e, 0xeab7, 0x98fe, 0x901b, | ||
| 2985 | 0xddbb, 0xde8d, 0x9df9, 0xebfb, 0xaa7e, 0x4351,}, | ||
| 2986 | {0x0235, 0x0137, 0x36b1, 0x336c, | ||
| 2987 | 0xc66f, 0x8cdf, 0x80e9, 0x47c9, 0x93ba, 0x41a8,}, | ||
| 2988 | {0x50f8, 0x25fb, 0xc76b, 0x6b71, | ||
| 2989 | 0x3cbf, 0xa6d5, 0xffcf, 0x1f49, 0xc278, 0x40d3,}, | ||
| 2990 | {0x0000, 0x0000, 0x0000, 0x0000, | ||
| 2991 | 0xf020, 0xb59d, 0x2b70, 0xada8, 0x9dc5, 0x4069,}, | ||
| 2992 | {0x0000, 0x0000, 0x0000, 0x0000, | ||
| 2993 | 0x0000, 0x0000, 0x0400, 0xc9bf, 0x8e1b, 0x4034,}, | ||
| 2994 | {0x0000, 0x0000, 0x0000, 0x0000, | ||
| 2995 | 0x0000, 0x0000, 0x0000, 0x2000, 0xbebc, 0x4019,}, | ||
| 2996 | {0x0000, 0x0000, 0x0000, 0x0000, | ||
| 2997 | 0x0000, 0x0000, 0x0000, 0x0000, 0x9c40, 0x400c,}, | ||
| 2998 | {0x0000, 0x0000, 0x0000, 0x0000, | ||
| 2999 | 0x0000, 0x0000, 0x0000, 0x0000, 0xc800, 0x4005,}, | ||
| 3000 | {0x0000, 0x0000, 0x0000, 0x0000, | ||
| 3001 | 0x0000, 0x0000, 0x0000, 0x0000, 0xa000, 0x4002,}, /* 10**1 */ | ||
| 3002 | }; | ||
| 3003 | |||
| 3004 | static unsigned short emtens[NTEN + 1][NE] = | ||
| 3005 | { | ||
| 3006 | {0x2030, 0xcffc, 0xa1c3, 0x8123, | ||
| 3007 | 0x2de3, 0x9fde, 0xd2ce, 0x04c8, 0xa6dd, 0x0ad8,}, /* 10**-4096 */ | ||
| 3008 | {0x8264, 0xd2cb, 0xf2ea, 0x12d4, | ||
| 3009 | 0x4925, 0x2de4, 0x3436, 0x534f, 0xceae, 0x256b,}, /* 10**-2048 */ | ||
| 3010 | {0xf53f, 0xf698, 0x6bd3, 0x0158, | ||
| 3011 | 0x87a6, 0xc0bd, 0xda57, 0x82a5, 0xa2a6, 0x32b5,}, | ||
| 3012 | {0xe731, 0x04d4, 0xe3f2, 0xd332, | ||
| 3013 | 0x7132, 0xd21c, 0xdb23, 0xee32, 0x9049, 0x395a,}, | ||
| 3014 | {0xa23e, 0x5308, 0xfefb, 0x1155, | ||
| 3015 | 0xfa91, 0x1939, 0x637a, 0x4325, 0xc031, 0x3cac,}, | ||
| 3016 | {0xe26d, 0xdbde, 0xd05d, 0xb3f6, | ||
| 3017 | 0xac7c, 0xe4a0, 0x64bc, 0x467c, 0xddd0, 0x3e55,}, | ||
| 3018 | {0x2a20, 0x6224, 0x47b3, 0x98d7, | ||
| 3019 | 0x3f23, 0xe9a5, 0xa539, 0xea27, 0xa87f, 0x3f2a,}, | ||
| 3020 | {0x0b5b, 0x4af2, 0xa581, 0x18ed, | ||
| 3021 | 0x67de, 0x94ba, 0x4539, 0x1ead, 0xcfb1, 0x3f94,}, | ||
| 3022 | {0xbf71, 0xa9b3, 0x7989, 0xbe68, | ||
| 3023 | 0x4c2e, 0xe15b, 0xc44d, 0x94be, 0xe695, 0x3fc9,}, | ||
| 3024 | {0x3d4d, 0x7c3d, 0x36ba, 0x0d2b, | ||
| 3025 | 0xfdc2, 0xcefc, 0x8461, 0x7711, 0xabcc, 0x3fe4,}, | ||
| 3026 | {0xc155, 0xa4a8, 0x404e, 0x6113, | ||
| 3027 | 0xd3c3, 0x652b, 0xe219, 0x1758, 0xd1b7, 0x3ff1,}, | ||
| 3028 | {0xd70a, 0x70a3, 0x0a3d, 0xa3d7, | ||
| 3029 | 0x3d70, 0xd70a, 0x70a3, 0x0a3d, 0xa3d7, 0x3ff8,}, | ||
| 3030 | {0xcccd, 0xcccc, 0xcccc, 0xcccc, | ||
| 3031 | 0xcccc, 0xcccc, 0xcccc, 0xcccc, 0xcccc, 0x3ffb,}, /* 10**-1 */ | ||
| 3032 | }; | ||
| 3033 | #else | ||
| 3034 | static unsigned short etens[NTEN+1][NE] = { | ||
| 3035 | {0xc94c,0x979a,0x8a20,0x5202,0xc460,0x7525,},/* 10**4096 */ | ||
| 3036 | {0xa74d,0x5de4,0xc53d,0x3b5d,0x9e8b,0x5a92,},/* 10**2048 */ | ||
| 3037 | {0x650d,0x0c17,0x8175,0x7586,0xc976,0x4d48,}, | ||
| 3038 | {0xcc65,0x91c6,0xa60e,0xa0ae,0xe319,0x46a3,}, | ||
| 3039 | {0xddbc,0xde8d,0x9df9,0xebfb,0xaa7e,0x4351,}, | ||
| 3040 | {0xc66f,0x8cdf,0x80e9,0x47c9,0x93ba,0x41a8,}, | ||
| 3041 | {0x3cbf,0xa6d5,0xffcf,0x1f49,0xc278,0x40d3,}, | ||
| 3042 | {0xf020,0xb59d,0x2b70,0xada8,0x9dc5,0x4069,}, | ||
| 3043 | {0x0000,0x0000,0x0400,0xc9bf,0x8e1b,0x4034,}, | ||
| 3044 | {0x0000,0x0000,0x0000,0x2000,0xbebc,0x4019,}, | ||
| 3045 | {0x0000,0x0000,0x0000,0x0000,0x9c40,0x400c,}, | ||
| 3046 | {0x0000,0x0000,0x0000,0x0000,0xc800,0x4005,}, | ||
| 3047 | {0x0000,0x0000,0x0000,0x0000,0xa000,0x4002,}, /* 10**1 */ | ||
| 3048 | }; | ||
| 3049 | |||
| 3050 | static unsigned short emtens[NTEN+1][NE] = { | ||
| 3051 | {0x2de4,0x9fde,0xd2ce,0x04c8,0xa6dd,0x0ad8,}, /* 10**-4096 */ | ||
| 3052 | {0x4925,0x2de4,0x3436,0x534f,0xceae,0x256b,}, /* 10**-2048 */ | ||
| 3053 | {0x87a6,0xc0bd,0xda57,0x82a5,0xa2a6,0x32b5,}, | ||
| 3054 | {0x7133,0xd21c,0xdb23,0xee32,0x9049,0x395a,}, | ||
| 3055 | {0xfa91,0x1939,0x637a,0x4325,0xc031,0x3cac,}, | ||
| 3056 | {0xac7d,0xe4a0,0x64bc,0x467c,0xddd0,0x3e55,}, | ||
| 3057 | {0x3f24,0xe9a5,0xa539,0xea27,0xa87f,0x3f2a,}, | ||
| 3058 | {0x67de,0x94ba,0x4539,0x1ead,0xcfb1,0x3f94,}, | ||
| 3059 | {0x4c2f,0xe15b,0xc44d,0x94be,0xe695,0x3fc9,}, | ||
| 3060 | {0xfdc2,0xcefc,0x8461,0x7711,0xabcc,0x3fe4,}, | ||
| 3061 | {0xd3c3,0x652b,0xe219,0x1758,0xd1b7,0x3ff1,}, | ||
| 3062 | {0x3d71,0xd70a,0x70a3,0x0a3d,0xa3d7,0x3ff8,}, | ||
| 3063 | {0xcccd,0xcccc,0xcccc,0xcccc,0xcccc,0x3ffb,}, /* 10**-1 */ | ||
| 3064 | }; | ||
| 3065 | #endif | ||
| 3066 | |||
| 3067 | void e24toasc( x, string, ndigs ) | ||
| 3068 | unsigned short x[]; | ||
| 3069 | char *string; | ||
| 3070 | int ndigs; | ||
| 3071 | { | ||
| 3072 | unsigned short w[NI]; | ||
| 3073 | |||
| 3074 | e24toe( x, w ); | ||
| 3075 | etoasc( w, string, ndigs ); | ||
| 3076 | } | ||
| 3077 | |||
| 3078 | |||
| 3079 | void e53toasc( x, string, ndigs ) | ||
| 3080 | unsigned short x[]; | ||
| 3081 | char *string; | ||
| 3082 | int ndigs; | ||
| 3083 | { | ||
| 3084 | unsigned short w[NI]; | ||
| 3085 | |||
| 3086 | e53toe( x, w ); | ||
| 3087 | etoasc( w, string, ndigs ); | ||
| 3088 | } | ||
| 3089 | |||
| 3090 | |||
| 3091 | void e64toasc( x, string, ndigs ) | ||
| 3092 | unsigned short x[]; | ||
| 3093 | char *string; | ||
| 3094 | int ndigs; | ||
| 3095 | { | ||
| 3096 | unsigned short w[NI]; | ||
| 3097 | |||
| 3098 | e64toe( x, w ); | ||
| 3099 | etoasc( w, string, ndigs ); | ||
| 3100 | } | ||
| 3101 | |||
| 3102 | void e113toasc (x, string, ndigs) | ||
| 3103 | unsigned short x[]; | ||
| 3104 | char *string; | ||
| 3105 | int ndigs; | ||
| 3106 | { | ||
| 3107 | unsigned short w[NI]; | ||
| 3108 | |||
| 3109 | e113toe (x, w); | ||
| 3110 | etoasc (w, string, ndigs); | ||
| 3111 | } | ||
| 3112 | |||
| 3113 | |||
| 3114 | void etoasc( x, string, ndigs ) | ||
| 3115 | unsigned short x[]; | ||
| 3116 | char *string; | ||
| 3117 | int ndigs; | ||
| 3118 | { | ||
| 3119 | long digit; | ||
| 3120 | unsigned short y[NI], t[NI], u[NI], w[NI]; | ||
| 3121 | unsigned short *p, *r, *ten; | ||
| 3122 | unsigned short sign; | ||
| 3123 | int i, j, k, expon, rndsav; | ||
| 3124 | char *s, *ss; | ||
| 3125 | unsigned short m; | ||
| 3126 | |||
| 3127 | rndsav = rndprc; | ||
| 3128 | #ifdef NANS | ||
| 3129 | if( eisnan(x) ) | ||
| 3130 | { | ||
| 3131 | sprintf( string, " NaN " ); | ||
| 3132 | goto bxit; | ||
| 3133 | } | ||
| 3134 | #endif | ||
| 3135 | rndprc = NBITS; /* set to full precision */ | ||
| 3136 | emov( x, y ); /* retain external format */ | ||
| 3137 | if( y[NE-1] & 0x8000 ) | ||
| 3138 | { | ||
| 3139 | sign = 0xffff; | ||
| 3140 | y[NE-1] &= 0x7fff; | ||
| 3141 | } | ||
| 3142 | else | ||
| 3143 | { | ||
| 3144 | sign = 0; | ||
| 3145 | } | ||
| 3146 | expon = 0; | ||
| 3147 | ten = &etens[NTEN][0]; | ||
| 3148 | emov( eone, t ); | ||
| 3149 | /* Test for zero exponent */ | ||
| 3150 | if( y[NE-1] == 0 ) | ||
| 3151 | { | ||
| 3152 | for( k=0; k<NE-1; k++ ) | ||
| 3153 | { | ||
| 3154 | if( y[k] != 0 ) | ||
| 3155 | goto tnzro; /* denormalized number */ | ||
| 3156 | } | ||
| 3157 | goto isone; /* legal all zeros */ | ||
| 3158 | } | ||
| 3159 | tnzro: | ||
| 3160 | |||
| 3161 | /* Test for infinity. | ||
| 3162 | */ | ||
| 3163 | if( y[NE-1] == 0x7fff ) | ||
| 3164 | { | ||
| 3165 | if( sign ) | ||
| 3166 | sprintf( string, " -Infinity " ); | ||
| 3167 | else | ||
| 3168 | sprintf( string, " Infinity " ); | ||
| 3169 | goto bxit; | ||
| 3170 | } | ||
| 3171 | |||
| 3172 | /* Test for exponent nonzero but significand denormalized. | ||
| 3173 | * This is an error condition. | ||
| 3174 | */ | ||
| 3175 | if( (y[NE-1] != 0) && ((y[NE-2] & 0x8000) == 0) ) | ||
| 3176 | { | ||
| 3177 | mtherr( "etoasc", DOMAIN ); | ||
| 3178 | sprintf( string, "NaN" ); | ||
| 3179 | goto bxit; | ||
| 3180 | } | ||
| 3181 | |||
| 3182 | /* Compare to 1.0 */ | ||
| 3183 | i = ecmp( eone, y ); | ||
| 3184 | if( i == 0 ) | ||
| 3185 | goto isone; | ||
| 3186 | |||
| 3187 | if( i < 0 ) | ||
| 3188 | { /* Number is greater than 1 */ | ||
| 3189 | /* Convert significand to an integer and strip trailing decimal zeros. */ | ||
| 3190 | emov( y, u ); | ||
| 3191 | u[NE-1] = EXONE + NBITS - 1; | ||
| 3192 | |||
| 3193 | p = &etens[NTEN-4][0]; | ||
| 3194 | m = 16; | ||
| 3195 | do | ||
| 3196 | { | ||
| 3197 | ediv( p, u, t ); | ||
| 3198 | efloor( t, w ); | ||
| 3199 | for( j=0; j<NE-1; j++ ) | ||
| 3200 | { | ||
| 3201 | if( t[j] != w[j] ) | ||
| 3202 | goto noint; | ||
| 3203 | } | ||
| 3204 | emov( t, u ); | ||
| 3205 | expon += (int )m; | ||
| 3206 | noint: | ||
| 3207 | p += NE; | ||
| 3208 | m >>= 1; | ||
| 3209 | } | ||
| 3210 | while( m != 0 ); | ||
| 3211 | |||
| 3212 | /* Rescale from integer significand */ | ||
| 3213 | u[NE-1] += y[NE-1] - (unsigned int )(EXONE + NBITS - 1); | ||
| 3214 | emov( u, y ); | ||
| 3215 | /* Find power of 10 */ | ||
| 3216 | emov( eone, t ); | ||
| 3217 | m = MAXP; | ||
| 3218 | p = &etens[0][0]; | ||
| 3219 | while( ecmp( ten, u ) <= 0 ) | ||
| 3220 | { | ||
| 3221 | if( ecmp( p, u ) <= 0 ) | ||
| 3222 | { | ||
| 3223 | ediv( p, u, u ); | ||
| 3224 | emul( p, t, t ); | ||
| 3225 | expon += (int )m; | ||
| 3226 | } | ||
| 3227 | m >>= 1; | ||
| 3228 | if( m == 0 ) | ||
| 3229 | break; | ||
| 3230 | p += NE; | ||
| 3231 | } | ||
| 3232 | } | ||
| 3233 | else | ||
| 3234 | { /* Number is less than 1.0 */ | ||
| 3235 | /* Pad significand with trailing decimal zeros. */ | ||
| 3236 | if( y[NE-1] == 0 ) | ||
| 3237 | { | ||
| 3238 | while( (y[NE-2] & 0x8000) == 0 ) | ||
| 3239 | { | ||
| 3240 | emul( ten, y, y ); | ||
| 3241 | expon -= 1; | ||
| 3242 | } | ||
| 3243 | } | ||
| 3244 | else | ||
| 3245 | { | ||
| 3246 | emovi( y, w ); | ||
| 3247 | for( i=0; i<NDEC+1; i++ ) | ||
| 3248 | { | ||
| 3249 | if( (w[NI-1] & 0x7) != 0 ) | ||
| 3250 | break; | ||
| 3251 | /* multiply by 10 */ | ||
| 3252 | emovz( w, u ); | ||
| 3253 | eshdn1( u ); | ||
| 3254 | eshdn1( u ); | ||
| 3255 | eaddm( w, u ); | ||
| 3256 | u[1] += 3; | ||
| 3257 | while( u[2] != 0 ) | ||
| 3258 | { | ||
| 3259 | eshdn1(u); | ||
| 3260 | u[1] += 1; | ||
| 3261 | } | ||
| 3262 | if( u[NI-1] != 0 ) | ||
| 3263 | break; | ||
| 3264 | if( eone[NE-1] <= u[1] ) | ||
| 3265 | break; | ||
| 3266 | emovz( u, w ); | ||
| 3267 | expon -= 1; | ||
| 3268 | } | ||
| 3269 | emovo( w, y ); | ||
| 3270 | } | ||
| 3271 | k = -MAXP; | ||
| 3272 | p = &emtens[0][0]; | ||
| 3273 | r = &etens[0][0]; | ||
| 3274 | emov( y, w ); | ||
| 3275 | emov( eone, t ); | ||
| 3276 | while( ecmp( eone, w ) > 0 ) | ||
| 3277 | { | ||
| 3278 | if( ecmp( p, w ) >= 0 ) | ||
| 3279 | { | ||
| 3280 | emul( r, w, w ); | ||
| 3281 | emul( r, t, t ); | ||
| 3282 | expon += k; | ||
| 3283 | } | ||
| 3284 | k /= 2; | ||
| 3285 | if( k == 0 ) | ||
| 3286 | break; | ||
| 3287 | p += NE; | ||
| 3288 | r += NE; | ||
| 3289 | } | ||
| 3290 | ediv( t, eone, t ); | ||
| 3291 | } | ||
| 3292 | isone: | ||
| 3293 | /* Find the first (leading) digit. */ | ||
| 3294 | emovi( t, w ); | ||
| 3295 | emovz( w, t ); | ||
| 3296 | emovi( y, w ); | ||
| 3297 | emovz( w, y ); | ||
| 3298 | eiremain( t, y ); | ||
| 3299 | digit = equot[NI-1]; | ||
| 3300 | while( (digit == 0) && (ecmp(y,ezero) != 0) ) | ||
| 3301 | { | ||
| 3302 | eshup1( y ); | ||
| 3303 | emovz( y, u ); | ||
| 3304 | eshup1( u ); | ||
| 3305 | eshup1( u ); | ||
| 3306 | eaddm( u, y ); | ||
| 3307 | eiremain( t, y ); | ||
| 3308 | digit = equot[NI-1]; | ||
| 3309 | expon -= 1; | ||
| 3310 | } | ||
| 3311 | s = string; | ||
| 3312 | if( sign ) | ||
| 3313 | *s++ = '-'; | ||
| 3314 | else | ||
| 3315 | *s++ = ' '; | ||
| 3316 | /* Examine number of digits requested by caller. */ | ||
| 3317 | if( ndigs < 0 ) | ||
| 3318 | ndigs = 0; | ||
| 3319 | if( ndigs > NDEC ) | ||
| 3320 | ndigs = NDEC; | ||
| 3321 | if( digit == 10 ) | ||
| 3322 | { | ||
| 3323 | *s++ = '1'; | ||
| 3324 | *s++ = '.'; | ||
| 3325 | if( ndigs > 0 ) | ||
| 3326 | { | ||
| 3327 | *s++ = '0'; | ||
| 3328 | ndigs -= 1; | ||
| 3329 | } | ||
| 3330 | expon += 1; | ||
| 3331 | } | ||
| 3332 | else | ||
| 3333 | { | ||
| 3334 | *s++ = (char )digit + '0'; | ||
| 3335 | *s++ = '.'; | ||
| 3336 | } | ||
| 3337 | /* Generate digits after the decimal point. */ | ||
| 3338 | for( k=0; k<=ndigs; k++ ) | ||
| 3339 | { | ||
| 3340 | /* multiply current number by 10, without normalizing */ | ||
| 3341 | eshup1( y ); | ||
| 3342 | emovz( y, u ); | ||
| 3343 | eshup1( u ); | ||
| 3344 | eshup1( u ); | ||
| 3345 | eaddm( u, y ); | ||
| 3346 | eiremain( t, y ); | ||
| 3347 | *s++ = (char )equot[NI-1] + '0'; | ||
| 3348 | } | ||
| 3349 | digit = equot[NI-1]; | ||
| 3350 | --s; | ||
| 3351 | ss = s; | ||
| 3352 | /* round off the ASCII string */ | ||
| 3353 | if( digit > 4 ) | ||
| 3354 | { | ||
| 3355 | /* Test for critical rounding case in ASCII output. */ | ||
| 3356 | if( digit == 5 ) | ||
| 3357 | { | ||
| 3358 | emovo( y, t ); | ||
| 3359 | if( ecmp(t,ezero) != 0 ) | ||
| 3360 | goto roun; /* round to nearest */ | ||
| 3361 | if( (*(s-1) & 1) == 0 ) | ||
| 3362 | goto doexp; /* round to even */ | ||
| 3363 | } | ||
| 3364 | /* Round up and propagate carry-outs */ | ||
| 3365 | roun: | ||
| 3366 | --s; | ||
| 3367 | k = *s & 0x7f; | ||
| 3368 | /* Carry out to most significant digit? */ | ||
| 3369 | if( k == '.' ) | ||
| 3370 | { | ||
| 3371 | --s; | ||
| 3372 | k = *s; | ||
| 3373 | k += 1; | ||
| 3374 | *s = (char )k; | ||
| 3375 | /* Most significant digit carries to 10? */ | ||
| 3376 | if( k > '9' ) | ||
| 3377 | { | ||
| 3378 | expon += 1; | ||
| 3379 | *s = '1'; | ||
| 3380 | } | ||
| 3381 | goto doexp; | ||
| 3382 | } | ||
| 3383 | /* Round up and carry out from less significant digits */ | ||
| 3384 | k += 1; | ||
| 3385 | *s = (char )k; | ||
| 3386 | if( k > '9' ) | ||
| 3387 | { | ||
| 3388 | *s = '0'; | ||
| 3389 | goto roun; | ||
| 3390 | } | ||
| 3391 | } | ||
| 3392 | doexp: | ||
| 3393 | /* | ||
| 3394 | if( expon >= 0 ) | ||
| 3395 | sprintf( ss, "e+%d", expon ); | ||
| 3396 | else | ||
| 3397 | sprintf( ss, "e%d", expon ); | ||
| 3398 | */ | ||
| 3399 | sprintf( ss, "E%d", expon ); | ||
| 3400 | bxit: | ||
| 3401 | rndprc = rndsav; | ||
| 3402 | } | ||
| 3403 | |||
| 3404 | |||
| 3405 | |||
| 3406 | |||
| 3407 | /* | ||
| 3408 | ; ASCTOQ | ||
| 3409 | ; ASCTOQ.MAC LATEST REV: 11 JAN 84 | ||
| 3410 | ; SLM, 3 JAN 78 | ||
| 3411 | ; | ||
| 3412 | ; Convert ASCII string to quadruple precision floating point | ||
| 3413 | ; | ||
| 3414 | ; Numeric input is free field decimal number | ||
| 3415 | ; with max of 15 digits with or without | ||
| 3416 | ; decimal point entered as ASCII from teletype. | ||
| 3417 | ; Entering E after the number followed by a second | ||
| 3418 | ; number causes the second number to be interpreted | ||
| 3419 | ; as a power of 10 to be multiplied by the first number | ||
| 3420 | ; (i.e., "scientific" notation). | ||
| 3421 | ; | ||
| 3422 | ; Usage: | ||
| 3423 | ; asctoq( string, q ); | ||
| 3424 | */ | ||
| 3425 | |||
| 3426 | /* ASCII to single */ | ||
| 3427 | void asctoe24( s, y ) | ||
| 3428 | char *s; | ||
| 3429 | unsigned short *y; | ||
| 3430 | { | ||
| 3431 | asctoeg( s, y, 24 ); | ||
| 3432 | } | ||
| 3433 | |||
| 3434 | |||
| 3435 | /* ASCII to double */ | ||
| 3436 | void asctoe53( s, y ) | ||
| 3437 | char *s; | ||
| 3438 | unsigned short *y; | ||
| 3439 | { | ||
| 3440 | #ifdef DEC | ||
| 3441 | asctoeg( s, y, 56 ); | ||
| 3442 | #else | ||
| 3443 | asctoeg( s, y, 53 ); | ||
| 3444 | #endif | ||
| 3445 | } | ||
| 3446 | |||
| 3447 | |||
| 3448 | /* ASCII to long double */ | ||
| 3449 | void asctoe64( s, y ) | ||
| 3450 | char *s; | ||
| 3451 | unsigned short *y; | ||
| 3452 | { | ||
| 3453 | asctoeg( s, y, 64 ); | ||
| 3454 | } | ||
| 3455 | |||
| 3456 | /* ASCII to 128-bit long double */ | ||
| 3457 | void asctoe113 (s, y) | ||
| 3458 | char *s; | ||
| 3459 | unsigned short *y; | ||
| 3460 | { | ||
| 3461 | asctoeg( s, y, 113 ); | ||
| 3462 | } | ||
| 3463 | |||
| 3464 | /* ASCII to super double */ | ||
| 3465 | void asctoe( s, y ) | ||
| 3466 | char *s; | ||
| 3467 | unsigned short *y; | ||
| 3468 | { | ||
| 3469 | asctoeg( s, y, NBITS ); | ||
| 3470 | } | ||
| 3471 | |||
| 3472 | /* Space to make a copy of the input string: */ | ||
| 3473 | static char lstr[82] = {0}; | ||
| 3474 | |||
| 3475 | void asctoeg( ss, y, oprec ) | ||
| 3476 | char *ss; | ||
| 3477 | unsigned short *y; | ||
| 3478 | int oprec; | ||
| 3479 | { | ||
| 3480 | unsigned short yy[NI], xt[NI], tt[NI]; | ||
| 3481 | int esign, decflg, sgnflg, nexp, exp, prec, lost; | ||
| 3482 | int k, trail, c, rndsav; | ||
| 3483 | long lexp; | ||
| 3484 | unsigned short nsign, *p; | ||
| 3485 | char *sp, *s; | ||
| 3486 | |||
| 3487 | /* Copy the input string. */ | ||
| 3488 | s = ss; | ||
| 3489 | while( *s == ' ' ) /* skip leading spaces */ | ||
| 3490 | ++s; | ||
| 3491 | sp = lstr; | ||
| 3492 | for( k=0; k<79; k++ ) | ||
| 3493 | { | ||
| 3494 | if( (*sp++ = *s++) == '\0' ) | ||
| 3495 | break; | ||
| 3496 | } | ||
| 3497 | *sp = '\0'; | ||
| 3498 | s = lstr; | ||
| 3499 | |||
| 3500 | rndsav = rndprc; | ||
| 3501 | rndprc = NBITS; /* Set to full precision */ | ||
| 3502 | lost = 0; | ||
| 3503 | nsign = 0; | ||
| 3504 | decflg = 0; | ||
| 3505 | sgnflg = 0; | ||
| 3506 | nexp = 0; | ||
| 3507 | exp = 0; | ||
| 3508 | prec = 0; | ||
| 3509 | ecleaz( yy ); | ||
| 3510 | trail = 0; | ||
| 3511 | |||
| 3512 | nxtcom: | ||
| 3513 | k = *s - '0'; | ||
| 3514 | if( (k >= 0) && (k <= 9) ) | ||
| 3515 | { | ||
| 3516 | /* Ignore leading zeros */ | ||
| 3517 | if( (prec == 0) && (decflg == 0) && (k == 0) ) | ||
| 3518 | goto donchr; | ||
| 3519 | /* Identify and strip trailing zeros after the decimal point. */ | ||
| 3520 | if( (trail == 0) && (decflg != 0) ) | ||
| 3521 | { | ||
| 3522 | sp = s; | ||
| 3523 | while( (*sp >= '0') && (*sp <= '9') ) | ||
| 3524 | ++sp; | ||
| 3525 | /* Check for syntax error */ | ||
| 3526 | c = *sp & 0x7f; | ||
| 3527 | if( (c != 'e') && (c != 'E') && (c != '\0') | ||
| 3528 | && (c != '\n') && (c != '\r') && (c != ' ') | ||
| 3529 | && (c != ',') ) | ||
| 3530 | goto error; | ||
| 3531 | --sp; | ||
| 3532 | while( *sp == '0' ) | ||
| 3533 | *sp-- = 'z'; | ||
| 3534 | trail = 1; | ||
| 3535 | if( *s == 'z' ) | ||
| 3536 | goto donchr; | ||
| 3537 | } | ||
| 3538 | /* If enough digits were given to more than fill up the yy register, | ||
| 3539 | * continuing until overflow into the high guard word yy[2] | ||
| 3540 | * guarantees that there will be a roundoff bit at the top | ||
| 3541 | * of the low guard word after normalization. | ||
| 3542 | */ | ||
| 3543 | if( yy[2] == 0 ) | ||
| 3544 | { | ||
| 3545 | if( decflg ) | ||
| 3546 | nexp += 1; /* count digits after decimal point */ | ||
| 3547 | eshup1( yy ); /* multiply current number by 10 */ | ||
| 3548 | emovz( yy, xt ); | ||
| 3549 | eshup1( xt ); | ||
| 3550 | eshup1( xt ); | ||
| 3551 | eaddm( xt, yy ); | ||
| 3552 | ecleaz( xt ); | ||
| 3553 | xt[NI-2] = (unsigned short )k; | ||
| 3554 | eaddm( xt, yy ); | ||
| 3555 | } | ||
| 3556 | else | ||
| 3557 | { | ||
| 3558 | /* Mark any lost non-zero digit. */ | ||
| 3559 | lost |= k; | ||
| 3560 | /* Count lost digits before the decimal point. */ | ||
| 3561 | if (decflg == 0) | ||
| 3562 | nexp -= 1; | ||
| 3563 | } | ||
| 3564 | prec += 1; | ||
| 3565 | goto donchr; | ||
| 3566 | } | ||
| 3567 | |||
| 3568 | switch( *s ) | ||
| 3569 | { | ||
| 3570 | case 'z': | ||
| 3571 | break; | ||
| 3572 | case 'E': | ||
| 3573 | case 'e': | ||
| 3574 | goto expnt; | ||
| 3575 | case '.': /* decimal point */ | ||
| 3576 | if( decflg ) | ||
| 3577 | goto error; | ||
| 3578 | ++decflg; | ||
| 3579 | break; | ||
| 3580 | case '-': | ||
| 3581 | nsign = 0xffff; | ||
| 3582 | if( sgnflg ) | ||
| 3583 | goto error; | ||
| 3584 | ++sgnflg; | ||
| 3585 | break; | ||
| 3586 | case '+': | ||
| 3587 | if( sgnflg ) | ||
| 3588 | goto error; | ||
| 3589 | ++sgnflg; | ||
| 3590 | break; | ||
| 3591 | case ',': | ||
| 3592 | case ' ': | ||
| 3593 | case '\0': | ||
| 3594 | case '\n': | ||
| 3595 | case '\r': | ||
| 3596 | goto daldone; | ||
| 3597 | case 'i': | ||
| 3598 | case 'I': | ||
| 3599 | goto infinite; | ||
| 3600 | default: | ||
| 3601 | error: | ||
| 3602 | #ifdef NANS | ||
| 3603 | enan( yy, NI*16 ); | ||
| 3604 | #else | ||
| 3605 | mtherr( "asctoe", DOMAIN ); | ||
| 3606 | ecleaz(yy); | ||
| 3607 | #endif | ||
| 3608 | goto aexit; | ||
| 3609 | } | ||
| 3610 | donchr: | ||
| 3611 | ++s; | ||
| 3612 | goto nxtcom; | ||
| 3613 | |||
| 3614 | /* Exponent interpretation */ | ||
| 3615 | expnt: | ||
| 3616 | |||
| 3617 | esign = 1; | ||
| 3618 | exp = 0; | ||
| 3619 | ++s; | ||
| 3620 | /* check for + or - */ | ||
| 3621 | if( *s == '-' ) | ||
| 3622 | { | ||
| 3623 | esign = -1; | ||
| 3624 | ++s; | ||
| 3625 | } | ||
| 3626 | if( *s == '+' ) | ||
| 3627 | ++s; | ||
| 3628 | while( (*s >= '0') && (*s <= '9') ) | ||
| 3629 | { | ||
| 3630 | exp *= 10; | ||
| 3631 | exp += *s++ - '0'; | ||
| 3632 | if (exp > 4977) | ||
| 3633 | { | ||
| 3634 | if (esign < 0) | ||
| 3635 | goto zero; | ||
| 3636 | else | ||
| 3637 | goto infinite; | ||
| 3638 | } | ||
| 3639 | } | ||
| 3640 | if( esign < 0 ) | ||
| 3641 | exp = -exp; | ||
| 3642 | if( exp > 4932 ) | ||
| 3643 | { | ||
| 3644 | infinite: | ||
| 3645 | ecleaz(yy); | ||
| 3646 | yy[E] = 0x7fff; /* infinity */ | ||
| 3647 | goto aexit; | ||
| 3648 | } | ||
| 3649 | if( exp < -4977 ) | ||
| 3650 | { | ||
| 3651 | zero: | ||
| 3652 | ecleaz(yy); | ||
| 3653 | goto aexit; | ||
| 3654 | } | ||
| 3655 | |||
| 3656 | daldone: | ||
| 3657 | nexp = exp - nexp; | ||
| 3658 | /* Pad trailing zeros to minimize power of 10, per IEEE spec. */ | ||
| 3659 | while( (nexp > 0) && (yy[2] == 0) ) | ||
| 3660 | { | ||
| 3661 | emovz( yy, xt ); | ||
| 3662 | eshup1( xt ); | ||
| 3663 | eshup1( xt ); | ||
| 3664 | eaddm( yy, xt ); | ||
| 3665 | eshup1( xt ); | ||
| 3666 | if( xt[2] != 0 ) | ||
| 3667 | break; | ||
| 3668 | nexp -= 1; | ||
| 3669 | emovz( xt, yy ); | ||
| 3670 | } | ||
| 3671 | if( (k = enormlz(yy)) > NBITS ) | ||
| 3672 | { | ||
| 3673 | ecleaz(yy); | ||
| 3674 | goto aexit; | ||
| 3675 | } | ||
| 3676 | lexp = (EXONE - 1 + NBITS) - k; | ||
| 3677 | emdnorm( yy, lost, 0, lexp, 64 ); | ||
| 3678 | /* convert to external format */ | ||
| 3679 | |||
| 3680 | |||
| 3681 | /* Multiply by 10**nexp. If precision is 64 bits, | ||
| 3682 | * the maximum relative error incurred in forming 10**n | ||
| 3683 | * for 0 <= n <= 324 is 8.2e-20, at 10**180. | ||
| 3684 | * For 0 <= n <= 999, the peak relative error is 1.4e-19 at 10**947. | ||
| 3685 | * For 0 >= n >= -999, it is -1.55e-19 at 10**-435. | ||
| 3686 | */ | ||
| 3687 | lexp = yy[E]; | ||
| 3688 | if( nexp == 0 ) | ||
| 3689 | { | ||
| 3690 | k = 0; | ||
| 3691 | goto expdon; | ||
| 3692 | } | ||
| 3693 | esign = 1; | ||
| 3694 | if( nexp < 0 ) | ||
| 3695 | { | ||
| 3696 | nexp = -nexp; | ||
| 3697 | esign = -1; | ||
| 3698 | if( nexp > 4096 ) | ||
| 3699 | { /* Punt. Can't handle this without 2 divides. */ | ||
| 3700 | emovi( etens[0], tt ); | ||
| 3701 | lexp -= tt[E]; | ||
| 3702 | k = edivm( tt, yy ); | ||
| 3703 | lexp += EXONE; | ||
| 3704 | nexp -= 4096; | ||
| 3705 | } | ||
| 3706 | } | ||
| 3707 | p = &etens[NTEN][0]; | ||
| 3708 | emov( eone, xt ); | ||
| 3709 | exp = 1; | ||
| 3710 | do | ||
| 3711 | { | ||
| 3712 | if( exp & nexp ) | ||
| 3713 | emul( p, xt, xt ); | ||
| 3714 | p -= NE; | ||
| 3715 | exp = exp + exp; | ||
| 3716 | } | ||
| 3717 | while( exp <= MAXP ); | ||
| 3718 | |||
| 3719 | emovi( xt, tt ); | ||
| 3720 | if( esign < 0 ) | ||
| 3721 | { | ||
| 3722 | lexp -= tt[E]; | ||
| 3723 | k = edivm( tt, yy ); | ||
| 3724 | lexp += EXONE; | ||
| 3725 | } | ||
| 3726 | else | ||
| 3727 | { | ||
| 3728 | lexp += tt[E]; | ||
| 3729 | k = emulm( tt, yy ); | ||
| 3730 | lexp -= EXONE - 1; | ||
| 3731 | } | ||
| 3732 | |||
| 3733 | expdon: | ||
| 3734 | |||
| 3735 | /* Round and convert directly to the destination type */ | ||
| 3736 | if( oprec == 53 ) | ||
| 3737 | lexp -= EXONE - 0x3ff; | ||
| 3738 | else if( oprec == 24 ) | ||
| 3739 | lexp -= EXONE - 0177; | ||
| 3740 | #ifdef DEC | ||
| 3741 | else if( oprec == 56 ) | ||
| 3742 | lexp -= EXONE - 0201; | ||
| 3743 | #endif | ||
| 3744 | rndprc = oprec; | ||
| 3745 | emdnorm( yy, k, 0, lexp, 64 ); | ||
| 3746 | |||
| 3747 | aexit: | ||
| 3748 | |||
| 3749 | rndprc = rndsav; | ||
| 3750 | yy[0] = nsign; | ||
| 3751 | switch( oprec ) | ||
| 3752 | { | ||
| 3753 | #ifdef DEC | ||
| 3754 | case 56: | ||
| 3755 | todec( yy, y ); /* see etodec.c */ | ||
| 3756 | break; | ||
| 3757 | #endif | ||
| 3758 | case 53: | ||
| 3759 | toe53( yy, y ); | ||
| 3760 | break; | ||
| 3761 | case 24: | ||
| 3762 | toe24( yy, y ); | ||
| 3763 | break; | ||
| 3764 | case 64: | ||
| 3765 | toe64( yy, y ); | ||
| 3766 | break; | ||
| 3767 | case 113: | ||
| 3768 | toe113( yy, y ); | ||
| 3769 | break; | ||
| 3770 | case NBITS: | ||
| 3771 | emovo( yy, y ); | ||
| 3772 | break; | ||
| 3773 | } | ||
| 3774 | } | ||
| 3775 | |||
| 3776 | |||
| 3777 | |||
| 3778 | /* y = largest integer not greater than x | ||
| 3779 | * (truncated toward minus infinity) | ||
| 3780 | * | ||
| 3781 | * unsigned short x[NE], y[NE] | ||
| 3782 | * | ||
| 3783 | * efloor( x, y ); | ||
| 3784 | */ | ||
| 3785 | static unsigned short bmask[] = { | ||
| 3786 | 0xffff, | ||
| 3787 | 0xfffe, | ||
| 3788 | 0xfffc, | ||
| 3789 | 0xfff8, | ||
| 3790 | 0xfff0, | ||
| 3791 | 0xffe0, | ||
| 3792 | 0xffc0, | ||
| 3793 | 0xff80, | ||
| 3794 | 0xff00, | ||
| 3795 | 0xfe00, | ||
| 3796 | 0xfc00, | ||
| 3797 | 0xf800, | ||
| 3798 | 0xf000, | ||
| 3799 | 0xe000, | ||
| 3800 | 0xc000, | ||
| 3801 | 0x8000, | ||
| 3802 | 0x0000, | ||
| 3803 | }; | ||
| 3804 | |||
| 3805 | void efloor( x, y ) | ||
| 3806 | unsigned short x[], y[]; | ||
| 3807 | { | ||
| 3808 | register unsigned short *p; | ||
| 3809 | int e, expon, i; | ||
| 3810 | unsigned short f[NE]; | ||
| 3811 | |||
| 3812 | emov( x, f ); /* leave in external format */ | ||
| 3813 | expon = (int )f[NE-1]; | ||
| 3814 | e = (expon & 0x7fff) - (EXONE - 1); | ||
| 3815 | if( e <= 0 ) | ||
| 3816 | { | ||
| 3817 | eclear(y); | ||
| 3818 | goto isitneg; | ||
| 3819 | } | ||
| 3820 | /* number of bits to clear out */ | ||
| 3821 | e = NBITS - e; | ||
| 3822 | emov( f, y ); | ||
| 3823 | if( e <= 0 ) | ||
| 3824 | return; | ||
| 3825 | |||
| 3826 | p = &y[0]; | ||
| 3827 | while( e >= 16 ) | ||
| 3828 | { | ||
| 3829 | *p++ = 0; | ||
| 3830 | e -= 16; | ||
| 3831 | } | ||
| 3832 | /* clear the remaining bits */ | ||
| 3833 | *p &= bmask[e]; | ||
| 3834 | /* truncate negatives toward minus infinity */ | ||
| 3835 | isitneg: | ||
| 3836 | |||
| 3837 | if( (unsigned short )expon & (unsigned short )0x8000 ) | ||
| 3838 | { | ||
| 3839 | for( i=0; i<NE-1; i++ ) | ||
| 3840 | { | ||
| 3841 | if( f[i] != y[i] ) | ||
| 3842 | { | ||
| 3843 | esub( eone, y, y ); | ||
| 3844 | break; | ||
| 3845 | } | ||
| 3846 | } | ||
| 3847 | } | ||
| 3848 | } | ||
| 3849 | |||
| 3850 | |||
| 3851 | /* unsigned short x[], s[]; | ||
| 3852 | * long *exp; | ||
| 3853 | * | ||
| 3854 | * efrexp( x, exp, s ); | ||
| 3855 | * | ||
| 3856 | * Returns s and exp such that s * 2**exp = x and .5 <= s < 1. | ||
| 3857 | * For example, 1.1 = 0.55 * 2**1 | ||
| 3858 | * Handles denormalized numbers properly using long integer exp. | ||
| 3859 | */ | ||
| 3860 | void efrexp( x, exp, s ) | ||
| 3861 | unsigned short x[]; | ||
| 3862 | long *exp; | ||
| 3863 | unsigned short s[]; | ||
| 3864 | { | ||
| 3865 | unsigned short xi[NI]; | ||
| 3866 | long li; | ||
| 3867 | |||
| 3868 | emovi( x, xi ); | ||
| 3869 | li = (long )((short )xi[1]); | ||
| 3870 | |||
| 3871 | if( li == 0 ) | ||
| 3872 | { | ||
| 3873 | li -= enormlz( xi ); | ||
| 3874 | } | ||
| 3875 | xi[1] = 0x3ffe; | ||
| 3876 | emovo( xi, s ); | ||
| 3877 | *exp = li - 0x3ffe; | ||
| 3878 | } | ||
| 3879 | |||
| 3880 | |||
| 3881 | |||
| 3882 | /* unsigned short x[], y[]; | ||
| 3883 | * long pwr2; | ||
| 3884 | * | ||
| 3885 | * eldexp( x, pwr2, y ); | ||
| 3886 | * | ||
| 3887 | * Returns y = x * 2**pwr2. | ||
| 3888 | */ | ||
| 3889 | void eldexp( x, pwr2, y ) | ||
| 3890 | unsigned short x[]; | ||
| 3891 | long pwr2; | ||
| 3892 | unsigned short y[]; | ||
| 3893 | { | ||
| 3894 | unsigned short xi[NI]; | ||
| 3895 | long li; | ||
| 3896 | int i; | ||
| 3897 | |||
| 3898 | emovi( x, xi ); | ||
| 3899 | li = xi[1]; | ||
| 3900 | li += pwr2; | ||
| 3901 | i = 0; | ||
| 3902 | emdnorm( xi, i, i, li, 64 ); | ||
| 3903 | emovo( xi, y ); | ||
| 3904 | } | ||
| 3905 | |||
| 3906 | |||
| 3907 | /* c = remainder after dividing b by a | ||
| 3908 | * Least significant integer quotient bits left in equot[]. | ||
| 3909 | */ | ||
| 3910 | void eremain( a, b, c ) | ||
| 3911 | unsigned short a[], b[], c[]; | ||
| 3912 | { | ||
| 3913 | unsigned short den[NI], num[NI]; | ||
| 3914 | |||
| 3915 | #ifdef NANS | ||
| 3916 | if( eisinf(b) || (ecmp(a,ezero) == 0) || eisnan(a) || eisnan(b)) | ||
| 3917 | { | ||
| 3918 | enan( c, NBITS ); | ||
| 3919 | return; | ||
| 3920 | } | ||
| 3921 | #endif | ||
| 3922 | if( ecmp(a,ezero) == 0 ) | ||
| 3923 | { | ||
| 3924 | mtherr( "eremain", SING ); | ||
| 3925 | eclear( c ); | ||
| 3926 | return; | ||
| 3927 | } | ||
| 3928 | emovi( a, den ); | ||
| 3929 | emovi( b, num ); | ||
| 3930 | eiremain( den, num ); | ||
| 3931 | /* Sign of remainder = sign of quotient */ | ||
| 3932 | if( a[0] == b[0] ) | ||
| 3933 | num[0] = 0; | ||
| 3934 | else | ||
| 3935 | num[0] = 0xffff; | ||
| 3936 | emovo( num, c ); | ||
| 3937 | } | ||
| 3938 | |||
| 3939 | |||
| 3940 | void eiremain( den, num ) | ||
| 3941 | unsigned short den[], num[]; | ||
| 3942 | { | ||
| 3943 | long ld, ln; | ||
| 3944 | unsigned short j; | ||
| 3945 | |||
| 3946 | ld = den[E]; | ||
| 3947 | ld -= enormlz( den ); | ||
| 3948 | ln = num[E]; | ||
| 3949 | ln -= enormlz( num ); | ||
| 3950 | ecleaz( equot ); | ||
| 3951 | while( ln >= ld ) | ||
| 3952 | { | ||
| 3953 | if( ecmpm(den,num) <= 0 ) | ||
| 3954 | { | ||
| 3955 | esubm(den, num); | ||
| 3956 | j = 1; | ||
| 3957 | } | ||
| 3958 | else | ||
| 3959 | { | ||
| 3960 | j = 0; | ||
| 3961 | } | ||
| 3962 | eshup1(equot); | ||
| 3963 | equot[NI-1] |= j; | ||
| 3964 | eshup1(num); | ||
| 3965 | ln -= 1; | ||
| 3966 | } | ||
| 3967 | emdnorm( num, 0, 0, ln, 0 ); | ||
| 3968 | } | ||
| 3969 | |||
| 3970 | /* NaN bit patterns | ||
| 3971 | */ | ||
| 3972 | #ifdef MIEEE | ||
| 3973 | unsigned short nan113[8] = { | ||
| 3974 | 0x7fff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff}; | ||
| 3975 | unsigned short nan64[6] = {0x7fff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff}; | ||
| 3976 | unsigned short nan53[4] = {0x7fff, 0xffff, 0xffff, 0xffff}; | ||
| 3977 | unsigned short nan24[2] = {0x7fff, 0xffff}; | ||
| 3978 | #endif | ||
| 3979 | |||
| 3980 | #ifdef IBMPC | ||
| 3981 | unsigned short nan113[8] = {0, 0, 0, 0, 0, 0, 0xc000, 0xffff}; | ||
| 3982 | unsigned short nan64[6] = {0, 0, 0, 0xc000, 0xffff, 0}; | ||
| 3983 | unsigned short nan53[4] = {0, 0, 0, 0xfff8}; | ||
| 3984 | unsigned short nan24[2] = {0, 0xffc0}; | ||
| 3985 | #endif | ||
| 3986 | |||
| 3987 | |||
| 3988 | void enan (nan, size) | ||
| 3989 | unsigned short *nan; | ||
| 3990 | int size; | ||
| 3991 | { | ||
| 3992 | int i, n; | ||
| 3993 | unsigned short *p; | ||
| 3994 | |||
| 3995 | switch( size ) | ||
| 3996 | { | ||
| 3997 | #ifndef DEC | ||
| 3998 | case 113: | ||
| 3999 | n = 8; | ||
| 4000 | p = nan113; | ||
| 4001 | break; | ||
| 4002 | |||
| 4003 | case 64: | ||
| 4004 | n = 6; | ||
| 4005 | p = nan64; | ||
| 4006 | break; | ||
| 4007 | |||
| 4008 | case 53: | ||
| 4009 | n = 4; | ||
| 4010 | p = nan53; | ||
| 4011 | break; | ||
| 4012 | |||
| 4013 | case 24: | ||
| 4014 | n = 2; | ||
| 4015 | p = nan24; | ||
| 4016 | break; | ||
| 4017 | |||
| 4018 | case NBITS: | ||
| 4019 | for( i=0; i<NE-2; i++ ) | ||
| 4020 | *nan++ = 0; | ||
| 4021 | *nan++ = 0xc000; | ||
| 4022 | *nan++ = 0x7fff; | ||
| 4023 | return; | ||
| 4024 | |||
| 4025 | case NI*16: | ||
| 4026 | *nan++ = 0; | ||
| 4027 | *nan++ = 0x7fff; | ||
| 4028 | *nan++ = 0; | ||
| 4029 | *nan++ = 0xc000; | ||
| 4030 | for( i=4; i<NI; i++ ) | ||
| 4031 | *nan++ = 0; | ||
| 4032 | return; | ||
| 4033 | #endif | ||
| 4034 | default: | ||
| 4035 | mtherr( "enan", DOMAIN ); | ||
| 4036 | return; | ||
| 4037 | } | ||
| 4038 | for (i=0; i < n; i++) | ||
| 4039 | *nan++ = *p++; | ||
| 4040 | } | ||
| 4041 | |||
| 4042 | |||
| 4043 | |||
| 4044 | /* Longhand square root. */ | ||
| 4045 | |||
| 4046 | static int esqinited = 0; | ||
| 4047 | static unsigned short sqrndbit[NI]; | ||
| 4048 | |||
| 4049 | void esqrt( x, y ) | ||
| 4050 | short *x, *y; | ||
| 4051 | { | ||
| 4052 | unsigned short temp[NI], num[NI], sq[NI], xx[NI]; | ||
| 4053 | int i, j, k, n, nlups; | ||
| 4054 | long m, exp; | ||
| 4055 | |||
| 4056 | if( esqinited == 0 ) | ||
| 4057 | { | ||
| 4058 | ecleaz( sqrndbit ); | ||
| 4059 | sqrndbit[NI-2] = 1; | ||
| 4060 | esqinited = 1; | ||
| 4061 | } | ||
| 4062 | /* Check for arg <= 0 */ | ||
| 4063 | i = ecmp( x, ezero ); | ||
| 4064 | if( i <= 0 ) | ||
| 4065 | { | ||
| 4066 | #ifdef NANS | ||
| 4067 | if (i == -2) | ||
| 4068 | { | ||
| 4069 | enan (y, NBITS); | ||
| 4070 | return; | ||
| 4071 | } | ||
| 4072 | #endif | ||
| 4073 | eclear(y); | ||
| 4074 | if( i < 0 ) | ||
| 4075 | mtherr( "esqrt", DOMAIN ); | ||
| 4076 | return; | ||
| 4077 | } | ||
| 4078 | |||
| 4079 | #ifdef INFINITY | ||
| 4080 | if( eisinf(x) ) | ||
| 4081 | { | ||
| 4082 | eclear(y); | ||
| 4083 | einfin(y); | ||
| 4084 | return; | ||
| 4085 | } | ||
| 4086 | #endif | ||
| 4087 | /* Bring in the arg and renormalize if it is denormal. */ | ||
| 4088 | emovi( x, xx ); | ||
| 4089 | m = (long )xx[1]; /* local long word exponent */ | ||
| 4090 | if( m == 0 ) | ||
| 4091 | m -= enormlz( xx ); | ||
| 4092 | |||
| 4093 | /* Divide exponent by 2 */ | ||
| 4094 | m -= 0x3ffe; | ||
| 4095 | exp = (unsigned short )( (m / 2) + 0x3ffe ); | ||
| 4096 | |||
| 4097 | /* Adjust if exponent odd */ | ||
| 4098 | if( (m & 1) != 0 ) | ||
| 4099 | { | ||
| 4100 | if( m > 0 ) | ||
| 4101 | exp += 1; | ||
| 4102 | eshdn1( xx ); | ||
| 4103 | } | ||
| 4104 | |||
| 4105 | ecleaz( sq ); | ||
| 4106 | ecleaz( num ); | ||
| 4107 | n = 8; /* get 8 bits of result per inner loop */ | ||
| 4108 | nlups = rndprc; | ||
| 4109 | j = 0; | ||
| 4110 | |||
| 4111 | while( nlups > 0 ) | ||
| 4112 | { | ||
| 4113 | /* bring in next word of arg */ | ||
| 4114 | if( j < NE ) | ||
| 4115 | num[NI-1] = xx[j+3]; | ||
| 4116 | /* Do additional bit on last outer loop, for roundoff. */ | ||
| 4117 | if( nlups <= 8 ) | ||
| 4118 | n = nlups + 1; | ||
| 4119 | for( i=0; i<n; i++ ) | ||
| 4120 | { | ||
| 4121 | /* Next 2 bits of arg */ | ||
| 4122 | eshup1( num ); | ||
| 4123 | eshup1( num ); | ||
| 4124 | /* Shift up answer */ | ||
| 4125 | eshup1( sq ); | ||
| 4126 | /* Make trial divisor */ | ||
| 4127 | for( k=0; k<NI; k++ ) | ||
| 4128 | temp[k] = sq[k]; | ||
| 4129 | eshup1( temp ); | ||
| 4130 | eaddm( sqrndbit, temp ); | ||
| 4131 | /* Subtract and insert answer bit if it goes in */ | ||
| 4132 | if( ecmpm( temp, num ) <= 0 ) | ||
| 4133 | { | ||
| 4134 | esubm( temp, num ); | ||
| 4135 | sq[NI-2] |= 1; | ||
| 4136 | } | ||
| 4137 | } | ||
| 4138 | nlups -= n; | ||
| 4139 | j += 1; | ||
| 4140 | } | ||
| 4141 | |||
| 4142 | /* Adjust for extra, roundoff loop done. */ | ||
| 4143 | exp += (NBITS - 1) - rndprc; | ||
| 4144 | |||
| 4145 | /* Sticky bit = 1 if the remainder is nonzero. */ | ||
| 4146 | k = 0; | ||
| 4147 | for( i=3; i<NI; i++ ) | ||
| 4148 | k |= (int )num[i]; | ||
| 4149 | |||
| 4150 | /* Renormalize and round off. */ | ||
| 4151 | emdnorm( sq, k, 0, exp, 64 ); | ||
| 4152 | emovo( sq, y ); | ||
| 4153 | } | ||
diff --git a/src/regress/lib/libc/cephes/ieetst.c b/src/regress/lib/libc/cephes/ieetst.c new file mode 100644 index 0000000000..41dfd6a96e --- /dev/null +++ b/src/regress/lib/libc/cephes/ieetst.c | |||
| @@ -0,0 +1,880 @@ | |||
| 1 | /* $OpenBSD: ieetst.c,v 1.2 2011/07/03 13:39:07 martynas Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | /* Floating point to ASCII input and output string test program. | ||
| 20 | * | ||
| 21 | * Numbers in the native machine data structure are converted | ||
| 22 | * to e type, then to and from decimal ASCII strings. Native | ||
| 23 | * printf() and scanf() functions are also used to produce | ||
| 24 | * and read strings. The resulting e type binary values | ||
| 25 | * are compared, with diagnostic printouts of any discrepancies. | ||
| 26 | * | ||
| 27 | * Steve Moshier, 16 Dec 88 | ||
| 28 | * last revision: 16 May 92 | ||
| 29 | */ | ||
| 30 | |||
| 31 | #include <float.h> | ||
| 32 | #include <stdio.h> | ||
| 33 | |||
| 34 | #include "mconf.h" | ||
| 35 | #include "ehead.h" | ||
| 36 | |||
| 37 | /* Include tests of 80-bit long double precision: */ | ||
| 38 | #if LDBL_MANT_DIG == 64 | ||
| 39 | #define LDOUBLE 1 | ||
| 40 | #else /* LDBL_MANT_DIG == 64 */ | ||
| 41 | #define LDOUBLE 0 | ||
| 42 | #endif /* LDBL_MANT_DIG == 64 */ | ||
| 43 | /* Abort subtest after getting this many errors: */ | ||
| 44 | #define MAXERR 5 | ||
| 45 | /* Number of random arguments to try (set as large as you have | ||
| 46 | * patience for): */ | ||
| 47 | #define NRAND 100 | ||
| 48 | /* Perform internal consistency test: */ | ||
| 49 | #define CHKINTERNAL 0 | ||
| 50 | |||
| 51 | static unsigned short fullp[NE], rounded[NE]; | ||
| 52 | float prec24, sprec24, ssprec24; | ||
| 53 | double prec53, sprec53, ssprec53; | ||
| 54 | #if LDOUBLE | ||
| 55 | long double prec64, sprec64, ssprec64; | ||
| 56 | #endif | ||
| 57 | |||
| 58 | static unsigned short rprint[NE], rscan[NE]; | ||
| 59 | static unsigned short q1[NE], q2[NE], q5[NE]; | ||
| 60 | static unsigned short e1[NE], e2[NE], e3[NE]; | ||
| 61 | static double d1, d2; | ||
| 62 | static int errprint = 0; | ||
| 63 | static int errscan = 0; | ||
| 64 | static int identerr = 0; | ||
| 65 | static int errtot = 0; | ||
| 66 | static int count = 0; | ||
| 67 | static char str0[80], str1[80], str2[80], str3[80]; | ||
| 68 | static unsigned short eten[NE], maxm[NE]; | ||
| 69 | |||
| 70 | int m, n, k2, mprec, SPREC; | ||
| 71 | |||
| 72 | char *Ten = "10.0"; | ||
| 73 | char tformat[10]; | ||
| 74 | char *format24 = "%.8e"; | ||
| 75 | #ifdef DEC | ||
| 76 | char *format53 = "%.17e"; | ||
| 77 | #else | ||
| 78 | char *format53 = "%.16e"; | ||
| 79 | #endif | ||
| 80 | char *fformat24 = "%e"; | ||
| 81 | char *fformat53 = "%le"; | ||
| 82 | char *pct = "%"; | ||
| 83 | char *quo = "\042"; | ||
| 84 | #if LDOUBLE | ||
| 85 | char *format64 = "%.20Le"; | ||
| 86 | char *fformat64 = "%Le"; | ||
| 87 | #endif | ||
| 88 | char *format; | ||
| 89 | char *fformat; | ||
| 90 | char *toomany = "Too many errors; aborting this test.\n"; | ||
| 91 | |||
| 92 | static int mnrflag; | ||
| 93 | static int etrflag; | ||
| 94 | void chkit(), printerr(), mnrand(), etrand(), shownoncrit(); | ||
| 95 | void chkid(), pvec(); | ||
| 96 | |||
| 97 | main() | ||
| 98 | { | ||
| 99 | int i, iprec, retval = 0; | ||
| 100 | |||
| 101 | printf( "Steve Moshier's printf/scanf tester, version 0.2.\n\n" ); | ||
| 102 | #ifdef DEC | ||
| 103 | /* DEC PDP-11/VAX single precision not yet implemented */ | ||
| 104 | for( iprec = 1; iprec<2; iprec++ ) | ||
| 105 | #else | ||
| 106 | for( iprec = 0; iprec<3; iprec++ ) | ||
| 107 | /*for( iprec = 2; iprec<3; iprec++ )*/ | ||
| 108 | #endif | ||
| 109 | { | ||
| 110 | errscan = 0; | ||
| 111 | identerr = 0; | ||
| 112 | errprint = 0; | ||
| 113 | eclear( rprint ); | ||
| 114 | eclear( rscan ); | ||
| 115 | |||
| 116 | switch( iprec ) | ||
| 117 | { | ||
| 118 | case 0: | ||
| 119 | SPREC = 8; /* # digits after the decimal point */ | ||
| 120 | mprec = 24; /* # bits in the significand */ | ||
| 121 | m = 9; /* max # decimal digits for correct rounding */ | ||
| 122 | n = 13; /* max power of ten for correct rounding */ | ||
| 123 | k2 = -125; /* underflow beyond 2^-k2 */ | ||
| 124 | format = format24; /* printf format string */ | ||
| 125 | fformat = fformat24; /* scanf format string */ | ||
| 126 | mnrflag = 1; /* sets interval for random numbers */ | ||
| 127 | etrflag = 1; | ||
| 128 | printf( "Testing FLOAT precision.\n" ); | ||
| 129 | break; | ||
| 130 | |||
| 131 | case 1: | ||
| 132 | #ifdef DEC | ||
| 133 | SPREC = 17; | ||
| 134 | mprec = 56; | ||
| 135 | m = 17; | ||
| 136 | n = 27; | ||
| 137 | k2 = -125; | ||
| 138 | format = format53; | ||
| 139 | fformat = fformat53; | ||
| 140 | mnrflag = 2; | ||
| 141 | etrflag = 1; | ||
| 142 | printf( "Testing DEC DOUBLE precision.\n" ); | ||
| 143 | break; | ||
| 144 | #else | ||
| 145 | SPREC = 16; | ||
| 146 | mprec = 53; | ||
| 147 | m = 17; | ||
| 148 | n = 27; | ||
| 149 | k2 = -1021; | ||
| 150 | format = format53; | ||
| 151 | fformat = fformat53; | ||
| 152 | mnrflag = 2; | ||
| 153 | etrflag = 2; | ||
| 154 | printf( "Testing DOUBLE precision.\n" ); | ||
| 155 | break; | ||
| 156 | #endif | ||
| 157 | case 2: | ||
| 158 | #if LDOUBLE | ||
| 159 | SPREC = 20; | ||
| 160 | mprec = 64; | ||
| 161 | m = 20; | ||
| 162 | n = 34; | ||
| 163 | k2 = -16382; | ||
| 164 | format = format64; | ||
| 165 | fformat = fformat64; | ||
| 166 | mnrflag = 3; | ||
| 167 | etrflag = 3; | ||
| 168 | printf( "Testing LONG DOUBLE precision.\n" ); | ||
| 169 | break; | ||
| 170 | #else | ||
| 171 | goto nodenorm; | ||
| 172 | #endif | ||
| 173 | } | ||
| 174 | |||
| 175 | asctoe( Ten, eten ); | ||
| 176 | /* 10^m - 1 */ | ||
| 177 | d2 = m; | ||
| 178 | e53toe( &d2, e1 ); | ||
| 179 | epow( eten, e1, maxm ); | ||
| 180 | esub( eone, maxm, maxm ); | ||
| 181 | |||
| 182 | /* test 1 */ | ||
| 183 | printf( "1. Checking 10^n - 1 for n = %d to %d.\n", -m, m ); | ||
| 184 | emov( eone, q5 ); | ||
| 185 | for( count=0; count<=m; count++ ) | ||
| 186 | { | ||
| 187 | esub( eone, q5, fullp ); | ||
| 188 | chkit( 1 ); | ||
| 189 | ediv( q5, eone, q2 ); | ||
| 190 | esub( eone, q2, fullp ); | ||
| 191 | chkit( 1 ); | ||
| 192 | emul( eten, q5, q5 ); | ||
| 193 | if( errtot >= MAXERR ) | ||
| 194 | { | ||
| 195 | printf( "%s", toomany ); | ||
| 196 | goto end1; | ||
| 197 | } | ||
| 198 | } | ||
| 199 | end1: | ||
| 200 | printerr(); | ||
| 201 | |||
| 202 | |||
| 203 | /* test 2 */ | ||
| 204 | printf( "2. Checking powers of 10 from 10^-%d to 10^%d.\n", n, n ); | ||
| 205 | emov( eone, q5 ); | ||
| 206 | for( count=0; count<=n; count++ ) | ||
| 207 | { | ||
| 208 | emov( q5, fullp ); | ||
| 209 | chkit( 2 ); | ||
| 210 | ediv( q5, eone, fullp ); | ||
| 211 | chkit( 2 ); | ||
| 212 | emul( eten, q5, q5 ); | ||
| 213 | if( errtot >= MAXERR ) | ||
| 214 | { | ||
| 215 | printf( "%s", toomany ); | ||
| 216 | goto end2; | ||
| 217 | } | ||
| 218 | } | ||
| 219 | end2: | ||
| 220 | printerr(); | ||
| 221 | |||
| 222 | /* test 3 */ | ||
| 223 | printf( "3. Checking (10^%d-1)*10^n from n = -%d to %d.\n", m, n, n ); | ||
| 224 | emov( eone, q5 ); | ||
| 225 | for( count= -n; count<=n; count++ ) | ||
| 226 | { | ||
| 227 | emul( maxm, q5, fullp ); | ||
| 228 | chkit( 3 ); | ||
| 229 | emov( q5, fullp ); | ||
| 230 | ediv( fullp, eone, fullp ); | ||
| 231 | emul( maxm, fullp, fullp ); | ||
| 232 | chkit( 3 ); | ||
| 233 | emul( eten, q5, q5 ); | ||
| 234 | if( errtot >= MAXERR ) | ||
| 235 | { | ||
| 236 | printf( "%s", toomany ); | ||
| 237 | goto end3; | ||
| 238 | } | ||
| 239 | } | ||
| 240 | end3: | ||
| 241 | printerr(); | ||
| 242 | |||
| 243 | |||
| 244 | |||
| 245 | /* test 4 */ | ||
| 246 | printf( "4. Checking powers of 2 from 2^-24 to 2^+56.\n" ); | ||
| 247 | d1 = -24.0; | ||
| 248 | e53toe( &d1, q1 ); | ||
| 249 | epow( etwo, q1, q5 ); | ||
| 250 | |||
| 251 | for( count = -24; count <= 56; count++ ) | ||
| 252 | { | ||
| 253 | emov( q5, fullp ); | ||
| 254 | chkit( 4 ); | ||
| 255 | emul( etwo, q5, q5 ); | ||
| 256 | if( errtot >= MAXERR ) | ||
| 257 | { | ||
| 258 | printf( "%s", toomany ); | ||
| 259 | goto end4; | ||
| 260 | } | ||
| 261 | } | ||
| 262 | end4: | ||
| 263 | printerr(); | ||
| 264 | |||
| 265 | |||
| 266 | /* test 5 */ | ||
| 267 | printf( "5. Checking 2^n - 1 for n = 0 to %d.\n", mprec ); | ||
| 268 | emov( eone, q5 ); | ||
| 269 | for( count=0; count<=mprec; count++ ) | ||
| 270 | { | ||
| 271 | esub( eone, q5, fullp ); | ||
| 272 | chkit( 5 ); | ||
| 273 | emul( etwo, q5, q5 ); | ||
| 274 | if( errtot >= MAXERR ) | ||
| 275 | { | ||
| 276 | printf( "%s", toomany ); | ||
| 277 | goto end5; | ||
| 278 | } | ||
| 279 | } | ||
| 280 | end5: | ||
| 281 | printerr(); | ||
| 282 | |||
| 283 | /* test 6 */ | ||
| 284 | printf( "6. Checking 2^n + 1 for n = 0 to %d.\n", mprec ); | ||
| 285 | emov( eone, q5 ); | ||
| 286 | for( count=0; count<=mprec; count++ ) | ||
| 287 | { | ||
| 288 | eadd( eone, q5, fullp ); | ||
| 289 | chkit( 6 ); | ||
| 290 | emul( etwo, q5, q5 ); | ||
| 291 | if( errtot >= MAXERR ) | ||
| 292 | { | ||
| 293 | printf( "%s", toomany ); | ||
| 294 | goto end6; | ||
| 295 | } | ||
| 296 | } | ||
| 297 | end6: | ||
| 298 | printerr(); | ||
| 299 | |||
| 300 | /* test 7 */ | ||
| 301 | printf( | ||
| 302 | "7. Checking %d values M * 10^N with random integer M and N,\n", | ||
| 303 | NRAND ); | ||
| 304 | printf(" 1 <= M <= 10^%d - 1 and -%d <= N <= +%d.\n", m, n, n ); | ||
| 305 | for( i=0; i<NRAND; i++ ) | ||
| 306 | { | ||
| 307 | mnrand( fullp ); | ||
| 308 | chkit( 7 ); | ||
| 309 | if( errtot >= MAXERR ) | ||
| 310 | { | ||
| 311 | printf( "%s", toomany ); | ||
| 312 | goto end7; | ||
| 313 | } | ||
| 314 | } | ||
| 315 | end7: | ||
| 316 | printerr(); | ||
| 317 | |||
| 318 | /* test 8 */ | ||
| 319 | printf("8. Checking critical rounding cases.\n" ); | ||
| 320 | for( i=0; i<20; i++ ) | ||
| 321 | { | ||
| 322 | mnrand( fullp ); | ||
| 323 | eabs( fullp ); | ||
| 324 | if( ecmp( fullp, eone ) < 0 ) | ||
| 325 | ediv( fullp, eone, fullp ); | ||
| 326 | efloor( fullp, fullp ); | ||
| 327 | eadd( ehalf, fullp, fullp ); | ||
| 328 | chkit( 8 ); | ||
| 329 | if( errtot >= MAXERR ) | ||
| 330 | { | ||
| 331 | printf( "%s", toomany ); | ||
| 332 | goto end8; | ||
| 333 | } | ||
| 334 | } | ||
| 335 | end8: | ||
| 336 | printerr(); | ||
| 337 | |||
| 338 | |||
| 339 | |||
| 340 | /* test 9 */ | ||
| 341 | printf("9. Testing on %d random non-denormal values.\n", NRAND ); | ||
| 342 | for( i=0; i<NRAND; i++ ) | ||
| 343 | { | ||
| 344 | etrand( fullp ); | ||
| 345 | chkit( 9 ); | ||
| 346 | } | ||
| 347 | printerr(); | ||
| 348 | shownoncrit(); | ||
| 349 | |||
| 350 | /* test 10 */ | ||
| 351 | #if 0 | ||
| 352 | printf( | ||
| 353 | "Do you want to check denormal numbers in this precision ? (y/n) " ); | ||
| 354 | gets( str0 ); | ||
| 355 | if( str0[0] != 'y' ) | ||
| 356 | goto nodenorm; | ||
| 357 | #endif | ||
| 358 | |||
| 359 | printf( "10. Checking denormal numbers.\n" ); | ||
| 360 | |||
| 361 | /* Form 2^-starting power */ | ||
| 362 | d1 = k2; | ||
| 363 | e53toe( &d1, q1 ); | ||
| 364 | epow( etwo, q1, e1 ); | ||
| 365 | |||
| 366 | /* Find 2^-mprec less than starting power */ | ||
| 367 | d1 = -mprec + 4; | ||
| 368 | e53toe( &d1, q1 ); | ||
| 369 | epow( etwo, q1, e3 ); | ||
| 370 | emul( e1, e3, e3 ); | ||
| 371 | emov( e3, e2 ); | ||
| 372 | ediv( etwo, e2, e2 ); | ||
| 373 | |||
| 374 | while( ecmp(e1,e2) != 0 ) | ||
| 375 | { | ||
| 376 | eadd( e1, e2, fullp ); | ||
| 377 | switch( mprec ) | ||
| 378 | { | ||
| 379 | #if LDOUBLE | ||
| 380 | case 64: | ||
| 381 | etoe64( e1, &sprec64 ); | ||
| 382 | e64toe( &sprec64, q1 ); | ||
| 383 | etoe64( fullp, &prec64 ); | ||
| 384 | e64toe( &prec64, q2 ); | ||
| 385 | break; | ||
| 386 | #endif | ||
| 387 | #ifdef DEC | ||
| 388 | case 56: | ||
| 389 | #endif | ||
| 390 | case 53: | ||
| 391 | etoe53( e1, &sprec53 ); | ||
| 392 | e53toe( &sprec53, q1 ); | ||
| 393 | etoe53( fullp, &prec53 ); | ||
| 394 | e53toe( &prec53, q2 ); | ||
| 395 | break; | ||
| 396 | |||
| 397 | case 24: | ||
| 398 | etoe24( e1, &sprec24 ); | ||
| 399 | e24toe( &sprec24, q1 ); | ||
| 400 | etoe24( fullp, &prec24 ); | ||
| 401 | e24toe( &prec24, q2 ); | ||
| 402 | break; | ||
| 403 | } | ||
| 404 | if( ecmp( q2, ezero ) == 0 ) | ||
| 405 | goto maxden; | ||
| 406 | chkit(10); | ||
| 407 | if( ecmp(q1,q2) == 0 ) | ||
| 408 | { | ||
| 409 | ediv( etwo, e1, e1 ); | ||
| 410 | emov( e3, e2 ); | ||
| 411 | } | ||
| 412 | if( errtot >= MAXERR ) | ||
| 413 | { | ||
| 414 | printf( "%s", toomany ); | ||
| 415 | goto maxden; | ||
| 416 | } | ||
| 417 | ediv( etwo, e2, e2 ); | ||
| 418 | } | ||
| 419 | maxden: | ||
| 420 | printerr(); | ||
| 421 | nodenorm: | ||
| 422 | printf( "\n" ); | ||
| 423 | retval |= errscan | identerr | errprint; | ||
| 424 | } /* loop on precision */ | ||
| 425 | printf( "End of test.\n" ); | ||
| 426 | return (retval); | ||
| 427 | } | ||
| 428 | |||
| 429 | #if CHKINTERNAL | ||
| 430 | long double xprec64; | ||
| 431 | double xprec53; | ||
| 432 | float xprec24; | ||
| 433 | |||
| 434 | /* Check binary -> printf -> scanf -> binary identity | ||
| 435 | * of internal routines | ||
| 436 | */ | ||
| 437 | void chkinternal( ref, tst, string ) | ||
| 438 | unsigned short ref[], tst[]; | ||
| 439 | char *string; | ||
| 440 | { | ||
| 441 | |||
| 442 | if( ecmp(ref,tst) != 0 ) | ||
| 443 | { | ||
| 444 | printf( "internal identity compare error!\n" ); | ||
| 445 | chkid( ref, tst, string ); | ||
| 446 | } | ||
| 447 | } | ||
| 448 | #endif | ||
| 449 | |||
| 450 | |||
| 451 | /* Check binary -> printf -> scanf -> binary identity | ||
| 452 | */ | ||
| 453 | void chkid( print, scan, string ) | ||
| 454 | unsigned short print[], scan[]; | ||
| 455 | char *string; | ||
| 456 | { | ||
| 457 | /* Test printf-scanf identity */ | ||
| 458 | if( ecmp( print, scan ) != 0 ) | ||
| 459 | { | ||
| 460 | pvec( print, NE ); | ||
| 461 | printf( " ->printf-> %s ->scanf->\n", string ); | ||
| 462 | pvec( scan, NE ); | ||
| 463 | printf( " is not an identity.\n" ); | ||
| 464 | ++identerr; | ||
| 465 | } | ||
| 466 | } | ||
| 467 | |||
| 468 | |||
| 469 | /* Check scanf result | ||
| 470 | */ | ||
| 471 | void chkscan( ref, tst, string ) | ||
| 472 | unsigned short ref[], tst[]; | ||
| 473 | char *string; | ||
| 474 | { | ||
| 475 | /* Test scanf() */ | ||
| 476 | if( ecmp( ref, tst ) != 0 ) | ||
| 477 | { | ||
| 478 | printf( "scanf(%s) -> ", string ); | ||
| 479 | pvec( tst, NE ); | ||
| 480 | printf( "\n should be " ); | ||
| 481 | pvec( ref, NE ); | ||
| 482 | printf( ".\n" ); | ||
| 483 | ++errscan; | ||
| 484 | ++errtot; | ||
| 485 | } | ||
| 486 | } | ||
| 487 | |||
| 488 | |||
| 489 | /* Test printf() result | ||
| 490 | */ | ||
| 491 | void chkprint( ref, tst, string ) | ||
| 492 | unsigned short ref[], tst[]; | ||
| 493 | char *string; | ||
| 494 | { | ||
| 495 | if( ecmp(ref, tst) != 0 ) | ||
| 496 | { | ||
| 497 | printf( "printf( "); | ||
| 498 | pvec( ref, NE ); | ||
| 499 | printf( ") -> %s\n", string ); | ||
| 500 | printf( " = " ); | ||
| 501 | pvec( tst, NE ); | ||
| 502 | printf( ".\n" ); | ||
| 503 | ++errprint; | ||
| 504 | ++errtot; | ||
| 505 | } | ||
| 506 | } | ||
| 507 | |||
| 508 | |||
| 509 | /* Print array of n 16-bit shorts | ||
| 510 | */ | ||
| 511 | void pvec( x, n ) | ||
| 512 | unsigned short x[]; | ||
| 513 | int n; | ||
| 514 | { | ||
| 515 | int i; | ||
| 516 | |||
| 517 | for( i=0; i<n; i++ ) | ||
| 518 | { | ||
| 519 | printf( "%04x ", x[i] ); | ||
| 520 | } | ||
| 521 | } | ||
| 522 | |||
| 523 | /* Measure worst case printf rounding error | ||
| 524 | */ | ||
| 525 | void cmpprint( ref, tst ) | ||
| 526 | unsigned short ref[], tst[]; | ||
| 527 | { | ||
| 528 | unsigned short e[NE]; | ||
| 529 | |||
| 530 | if( ecmp( ref, ezero ) != 0 ) | ||
| 531 | { | ||
| 532 | esub( ref, tst, e ); | ||
| 533 | ediv( ref, e, e ); | ||
| 534 | eabs( e ); | ||
| 535 | if( ecmp( e, rprint ) > 0 ) | ||
| 536 | emov( e, rprint ); | ||
| 537 | } | ||
| 538 | } | ||
| 539 | |||
| 540 | /* Measure worst case scanf rounding error | ||
| 541 | */ | ||
| 542 | void cmpscan( ref, tst ) | ||
| 543 | unsigned short ref[], tst[]; | ||
| 544 | { | ||
| 545 | unsigned short er[NE]; | ||
| 546 | |||
| 547 | if( ecmp( ref, ezero ) != 0 ) | ||
| 548 | { | ||
| 549 | esub( ref, tst, er ); | ||
| 550 | ediv( ref, er, er ); | ||
| 551 | eabs( er ); | ||
| 552 | if( ecmp( er, rscan ) > 0 ) | ||
| 553 | emov( er, rscan ); | ||
| 554 | if( ecmp( er, ehalf ) > 0 ) | ||
| 555 | { | ||
| 556 | etoasc( tst, str1, 21 ); | ||
| 557 | printf( "Bad error: scanf(%s) = %s !\n", str0, str1 ); | ||
| 558 | } | ||
| 559 | } | ||
| 560 | } | ||
| 561 | |||
| 562 | /* Check rounded-down decimal string output of printf | ||
| 563 | */ | ||
| 564 | void cmptrunc( ref, tst ) | ||
| 565 | unsigned short ref[], tst[]; | ||
| 566 | { | ||
| 567 | if( ecmp( ref, tst ) != 0 ) | ||
| 568 | { | ||
| 569 | printf( "printf(%s%s%s, %s) -> %s\n", quo, tformat, quo, str1, str2 ); | ||
| 570 | printf( "should be %s .\n", str3 ); | ||
| 571 | errprint += 1; | ||
| 572 | } | ||
| 573 | } | ||
| 574 | |||
| 575 | |||
| 576 | void shownoncrit() | ||
| 577 | { | ||
| 578 | |||
| 579 | etoasc( rprint, str0, 3 ); | ||
| 580 | printf( "Maximum relative printf error found = %s .\n", str0 ); | ||
| 581 | etoasc( rscan, str0, 3 ); | ||
| 582 | printf( "Maximum relative scanf error found = %s .\n", str0 ); | ||
| 583 | } | ||
| 584 | |||
| 585 | |||
| 586 | |||
| 587 | /* Produce arguments and call comparison subroutines. | ||
| 588 | */ | ||
| 589 | void chkit( testno ) | ||
| 590 | int testno; | ||
| 591 | { | ||
| 592 | unsigned short t[NE], u[NE], v[NE]; | ||
| 593 | int j; | ||
| 594 | |||
| 595 | switch( mprec ) | ||
| 596 | { | ||
| 597 | #if LDOUBLE | ||
| 598 | case 64: | ||
| 599 | etoe64( fullp, &prec64 ); | ||
| 600 | e64toe( &prec64, rounded ); | ||
| 601 | #if CHKINTERNAL | ||
| 602 | e64toasc( &prec64, str1, SPREC ); | ||
| 603 | asctoe64( str1, &xprec64 ); | ||
| 604 | e64toe( &xprec64, t ); | ||
| 605 | chkinternal( rounded, t, str1 ); | ||
| 606 | #endif | ||
| 607 | /* check printf and scanf */ | ||
| 608 | sprintf( str2, format, prec64 ); | ||
| 609 | sscanf( str2, fformat, &sprec64 ); | ||
| 610 | e64toe( &sprec64, u ); | ||
| 611 | chkid( rounded, u, str2 ); | ||
| 612 | asctoe64( str2, &ssprec64 ); | ||
| 613 | e64toe( &ssprec64, v ); | ||
| 614 | chkscan( v, u, str2 ); | ||
| 615 | chkprint( rounded, v, str2 ); | ||
| 616 | if( testno < 8 ) | ||
| 617 | break; | ||
| 618 | /* rounding error measurement */ | ||
| 619 | etoasc( fullp, str0, 24 ); | ||
| 620 | etoe64( fullp, &ssprec64 ); | ||
| 621 | e64toe( &ssprec64, u ); | ||
| 622 | sprintf( str2, format, ssprec64 ); | ||
| 623 | asctoe( str2, t ); | ||
| 624 | cmpprint( u, t ); | ||
| 625 | sscanf( str0, fformat, &sprec64 ); | ||
| 626 | e64toe( &sprec64, t ); | ||
| 627 | cmpscan( fullp, t ); | ||
| 628 | if( testno < 8 ) | ||
| 629 | break; | ||
| 630 | /* strings rounded to less than maximum precision */ | ||
| 631 | e64toasc( &ssprec64, str1, 24 ); | ||
| 632 | for( j=SPREC-1; j>0; j-- ) | ||
| 633 | { | ||
| 634 | e64toasc( &ssprec64, str3, j ); | ||
| 635 | asctoe( str3, v ); | ||
| 636 | sprintf( tformat, "%s.%dLe", pct, j ); | ||
| 637 | sprintf( str2, tformat, ssprec64 ); | ||
| 638 | asctoe( str2, t ); | ||
| 639 | cmptrunc( v, t ); | ||
| 640 | } | ||
| 641 | break; | ||
| 642 | #endif | ||
| 643 | #ifdef DEC | ||
| 644 | case 56: | ||
| 645 | #endif | ||
| 646 | case 53: | ||
| 647 | etoe53( fullp, &prec53 ); | ||
| 648 | e53toe( &prec53, rounded ); | ||
| 649 | #if CHKINTERNAL | ||
| 650 | e53toasc( &prec53, str1, SPREC ); | ||
| 651 | asctoe53( str1, &xprec53 ); | ||
| 652 | e53toe( &xprec53, t ); | ||
| 653 | chkinternal( rounded, t, str1 ); | ||
| 654 | #endif | ||
| 655 | sprintf( str2, format, prec53 ); | ||
| 656 | sscanf( str2, fformat, &sprec53 ); | ||
| 657 | e53toe( &sprec53, u ); | ||
| 658 | chkid( rounded, u, str2 ); | ||
| 659 | asctoe53( str2, &ssprec53 ); | ||
| 660 | e53toe( &ssprec53, v ); | ||
| 661 | chkscan( v, u, str2 ); | ||
| 662 | chkprint( rounded, v, str2 ); | ||
| 663 | if( testno < 8 ) | ||
| 664 | break; | ||
| 665 | /* rounding error measurement */ | ||
| 666 | etoasc( fullp, str0, 24 ); | ||
| 667 | etoe53( fullp, &ssprec53 ); | ||
| 668 | e53toe( &ssprec53, u ); | ||
| 669 | sprintf( str2, format, ssprec53 ); | ||
| 670 | asctoe( str2, t ); | ||
| 671 | cmpprint( u, t ); | ||
| 672 | sscanf( str0, fformat, &sprec53 ); | ||
| 673 | e53toe( &sprec53, t ); | ||
| 674 | cmpscan( fullp, t ); | ||
| 675 | if( testno < 8 ) | ||
| 676 | break; | ||
| 677 | e53toasc( &ssprec53, str1, 24 ); | ||
| 678 | for( j=SPREC-1; j>0; j-- ) | ||
| 679 | { | ||
| 680 | e53toasc( &ssprec53, str3, j ); | ||
| 681 | asctoe( str3, v ); | ||
| 682 | sprintf( tformat, "%s.%de", pct, j ); | ||
| 683 | sprintf( str2, tformat, ssprec53 ); | ||
| 684 | asctoe( str2, t ); | ||
| 685 | cmptrunc( v, t ); | ||
| 686 | } | ||
| 687 | break; | ||
| 688 | |||
| 689 | case 24: | ||
| 690 | etoe24( fullp, &prec24 ); | ||
| 691 | e24toe( &prec24, rounded ); | ||
| 692 | #if CHKINTERNAL | ||
| 693 | e24toasc( &prec24, str1, SPREC ); | ||
| 694 | asctoe24( str1, &xprec24 ); | ||
| 695 | e24toe( &xprec24, t ); | ||
| 696 | chkinternal( rounded, t, str1 ); | ||
| 697 | #endif | ||
| 698 | sprintf( str2, format, prec24 ); | ||
| 699 | sscanf( str2, fformat, &sprec24 ); | ||
| 700 | e24toe( &sprec24, u ); | ||
| 701 | chkid( rounded, u, str2 ); | ||
| 702 | asctoe24( str2, &ssprec24 ); | ||
| 703 | e24toe( &ssprec24, v ); | ||
| 704 | chkscan( v, u, str2 ); | ||
| 705 | chkprint( rounded, v, str2 ); | ||
| 706 | if( testno < 8 ) | ||
| 707 | break; | ||
| 708 | /* rounding error measurement */ | ||
| 709 | etoasc( fullp, str0, 24 ); | ||
| 710 | etoe24( fullp, &ssprec24 ); | ||
| 711 | e24toe( &ssprec24, u ); | ||
| 712 | sprintf( str2, format, ssprec24 ); | ||
| 713 | asctoe( str2, t ); | ||
| 714 | cmpprint( u, t ); | ||
| 715 | sscanf( str0, fformat, &sprec24 ); | ||
| 716 | e24toe( &sprec24, t ); | ||
| 717 | cmpscan( fullp, t ); | ||
| 718 | /* | ||
| 719 | if( testno < 8 ) | ||
| 720 | break; | ||
| 721 | */ | ||
| 722 | e24toasc( &ssprec24, str1, 24 ); | ||
| 723 | for( j=SPREC-1; j>0; j-- ) | ||
| 724 | { | ||
| 725 | e24toasc( &ssprec24, str3, j ); | ||
| 726 | asctoe( str3, v ); | ||
| 727 | sprintf( tformat, "%s.%de", pct, j ); | ||
| 728 | sprintf( str2, tformat, ssprec24 ); | ||
| 729 | asctoe( str2, t ); | ||
| 730 | cmptrunc( v, t ); | ||
| 731 | } | ||
| 732 | break; | ||
| 733 | } | ||
| 734 | } | ||
| 735 | |||
| 736 | |||
| 737 | void printerr() | ||
| 738 | { | ||
| 739 | if( (errscan == 0) && (identerr == 0) && (errprint == 0) ) | ||
| 740 | printf( "No errors found.\n" ); | ||
| 741 | else | ||
| 742 | { | ||
| 743 | printf( "%d binary -> decimal errors found.\n", errprint ); | ||
| 744 | printf( "%d decimal -> binary errors found.\n", errscan ); | ||
| 745 | } | ||
| 746 | errscan = 0; /* reset for next test */ | ||
| 747 | identerr = 0; | ||
| 748 | errprint = 0; | ||
| 749 | errtot = 0; | ||
| 750 | } | ||
| 751 | |||
| 752 | |||
| 753 | /* Random number generator | ||
| 754 | * in the range M * 10^N, where 1 <= M <= 10^17 - 1 | ||
| 755 | * and -27 <= N <= +27. Test values of M are logarithmically distributed | ||
| 756 | * random integers; test values of N are uniformly distributed random integers. | ||
| 757 | */ | ||
| 758 | |||
| 759 | static char *fwidth = "1.036163291797320557783096e1"; /* log(sqrt(10^9-1)) */ | ||
| 760 | static char *dwidth = "1.957197329044938830915E1"; /* log(sqrt(10^17-1)) */ | ||
| 761 | static char *ldwidth = "2.302585092994045684017491e1"; /* log(sqrt(10^20-1)) */ | ||
| 762 | |||
| 763 | static char *a13 = "13.0"; | ||
| 764 | static char *a27 = "27.0"; | ||
| 765 | static char *a34 = "34.0"; | ||
| 766 | static char *a10m13 = "1.0e-13"; | ||
| 767 | static unsigned short LOW[ NE ], WIDTH[NE], e27[NE], e10m13[NE]; | ||
| 768 | |||
| 769 | |||
| 770 | void mnrand( erand ) | ||
| 771 | unsigned short erand[]; | ||
| 772 | { | ||
| 773 | unsigned short ea[NE], em[NE], en[NE], ex[NE]; | ||
| 774 | double x, a; | ||
| 775 | |||
| 776 | if( mnrflag ) | ||
| 777 | { | ||
| 778 | if( mnrflag == 3 ) | ||
| 779 | { | ||
| 780 | asctoe( ldwidth, WIDTH ); | ||
| 781 | asctoe( a34, e27 ); | ||
| 782 | } | ||
| 783 | if( mnrflag == 2 ) | ||
| 784 | { | ||
| 785 | asctoe( dwidth, WIDTH ); | ||
| 786 | asctoe( a27, e27 ); | ||
| 787 | } | ||
| 788 | if( mnrflag == 1 ) | ||
| 789 | { | ||
| 790 | asctoe( fwidth, WIDTH ); | ||
| 791 | asctoe( a13, e27 ); | ||
| 792 | } | ||
| 793 | asctoe( a10m13, e10m13 ); | ||
| 794 | mnrflag = 0; | ||
| 795 | } | ||
| 796 | drand( &x ); | ||
| 797 | e53toe( &x, ex ); /* x = WIDTH * ( x - 1.0 ) + LOW; */ | ||
| 798 | esub( eone, ex, ex ); | ||
| 799 | emul( WIDTH, ex, ex ); | ||
| 800 | eexp( ex, ex ); /* x = exp(x); */ | ||
| 801 | |||
| 802 | drand( &a ); | ||
| 803 | e53toe( &a, ea ); | ||
| 804 | emul( ea, ex, ea ); /* a = 1.0e-13 * x * a; */ | ||
| 805 | emul( e10m13, ea, ea ); | ||
| 806 | eabs( ea ); | ||
| 807 | eadd( ea, ex, ex ); /* add fuzz */ | ||
| 808 | emul( ex, ex, ex ); /* square it, to get range to 10^17 - 1 */ | ||
| 809 | efloor( ex, em ); /* this is M */ | ||
| 810 | |||
| 811 | /* Random power of 10 */ | ||
| 812 | drand( &a ); | ||
| 813 | e53toe( &a, ex ); | ||
| 814 | esub( eone, ex, ex ); /* y3 = 54.0 * ( y3 - 1.0 ) + 0.5; */ | ||
| 815 | emul( e27, ex, ex ); | ||
| 816 | eadd( ex, ex, ex ); | ||
| 817 | eadd( ehalf, ex, ex ); | ||
| 818 | efloor( ex, ex ); /* y3 = floor( y3 ) - 27.0; */ | ||
| 819 | esub( e27, ex, en ); /* this is N */ | ||
| 820 | epow( eten, en, ex ); | ||
| 821 | emul( ex, em, erand ); | ||
| 822 | } | ||
| 823 | |||
| 824 | /* -ln 2^16382 */ | ||
| 825 | char *ldemin = "-1.1355137111933024058873097E4"; | ||
| 826 | char *ldewid = "2.2710274223866048117746193E4"; | ||
| 827 | /* -ln 2^1022 */ | ||
| 828 | char *demin = "-7.0839641853226410622441123E2"; | ||
| 829 | char *dewid = "1.4167928370645282124488225E3"; | ||
| 830 | /* -ln 2^125 */ | ||
| 831 | char *femin = "-8.6643397569993163677154015E1"; | ||
| 832 | char *fewid = "1.7328679513998632735430803E2"; | ||
| 833 | |||
| 834 | void etrand( erand ) | ||
| 835 | unsigned short erand[]; | ||
| 836 | { | ||
| 837 | unsigned short ea[NE], ex[NE]; | ||
| 838 | double x, a; | ||
| 839 | |||
| 840 | if( etrflag ) | ||
| 841 | { | ||
| 842 | if( etrflag == 3 ) | ||
| 843 | { | ||
| 844 | asctoe( ldemin, LOW ); | ||
| 845 | asctoe( ldewid, WIDTH ); | ||
| 846 | asctoe( a34, e27 ); | ||
| 847 | } | ||
| 848 | if( etrflag == 2 ) | ||
| 849 | { | ||
| 850 | asctoe( demin, LOW ); | ||
| 851 | asctoe( dewid, WIDTH ); | ||
| 852 | asctoe( a27, e27 ); | ||
| 853 | } | ||
| 854 | if( etrflag == 1 ) | ||
| 855 | { | ||
| 856 | asctoe( femin, LOW ); | ||
| 857 | asctoe( fewid, WIDTH ); | ||
| 858 | asctoe( a13, e27 ); | ||
| 859 | } | ||
| 860 | asctoe( a10m13, e10m13 ); | ||
| 861 | etrflag = 0; | ||
| 862 | } | ||
| 863 | drand( &x ); | ||
| 864 | e53toe( &x, ex ); /* x = WIDTH * ( x - 1.0 ) + LOW; */ | ||
| 865 | esub( eone, ex, ex ); | ||
| 866 | emul( WIDTH, ex, ex ); | ||
| 867 | eadd( LOW, ex, ex ); | ||
| 868 | eexp( ex, ex ); /* x = exp(x); */ | ||
| 869 | |||
| 870 | /* add fuzz | ||
| 871 | */ | ||
| 872 | drand( &a ); | ||
| 873 | e53toe( &a, ea ); | ||
| 874 | emul( ea, ex, ea ); /* a = 1.0e-13 * x * a; */ | ||
| 875 | emul( e10m13, ea, ea ); | ||
| 876 | if( ecmp( ex, ezero ) > 0 ) | ||
| 877 | eneg( ea ); | ||
| 878 | eadd( ea, ex, erand ); | ||
| 879 | } | ||
| 880 | |||
diff --git a/src/regress/lib/libc/cephes/mconf.h b/src/regress/lib/libc/cephes/mconf.h new file mode 100644 index 0000000000..a92bd3ab64 --- /dev/null +++ b/src/regress/lib/libc/cephes/mconf.h | |||
| @@ -0,0 +1,187 @@ | |||
| 1 | /* $OpenBSD: mconf.h,v 1.1 2011/07/02 18:11:01 martynas Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | /* mconf.h | ||
| 20 | * | ||
| 21 | * Common include file for math routines | ||
| 22 | * | ||
| 23 | * | ||
| 24 | * | ||
| 25 | * SYNOPSIS: | ||
| 26 | * | ||
| 27 | * #include "mconf.h" | ||
| 28 | * | ||
| 29 | * | ||
| 30 | * | ||
| 31 | * DESCRIPTION: | ||
| 32 | * | ||
| 33 | * This file contains definitions for error codes that are | ||
| 34 | * passed to the common error handling routine mtherr() | ||
| 35 | * (which see). | ||
| 36 | * | ||
| 37 | * The file also includes a conditional assembly definition | ||
| 38 | * for the type of computer arithmetic (IEEE, DEC, Motorola | ||
| 39 | * IEEE, or UNKnown). | ||
| 40 | * | ||
| 41 | * For Digital Equipment PDP-11 and VAX computers, certain | ||
| 42 | * IBM systems, and others that use numbers with a 56-bit | ||
| 43 | * significand, the symbol DEC should be defined. In this | ||
| 44 | * mode, most floating point constants are given as arrays | ||
| 45 | * of octal integers to eliminate decimal to binary conversion | ||
| 46 | * errors that might be introduced by the compiler. | ||
| 47 | * | ||
| 48 | * For little-endian computers, such as IBM PC, that follow the | ||
| 49 | * IEEE Standard for Binary Floating Point Arithmetic (ANSI/IEEE | ||
| 50 | * Std 754-1985), the symbol IBMPC should be defined. These | ||
| 51 | * numbers have 53-bit significands. In this mode, constants | ||
| 52 | * are provided as arrays of hexadecimal 16 bit integers. | ||
| 53 | * | ||
| 54 | * Big-endian IEEE format is denoted MIEEE. On some RISC | ||
| 55 | * systems such as Sun SPARC, double precision constants | ||
| 56 | * must be stored on 8-byte address boundaries. Since integer | ||
| 57 | * arrays may be aligned differently, the MIEEE configuration | ||
| 58 | * may fail on such machines. | ||
| 59 | * | ||
| 60 | * To accommodate other types of computer arithmetic, all | ||
| 61 | * constants are also provided in a normal decimal radix | ||
| 62 | * which one can hope are correctly converted to a suitable | ||
| 63 | * format by the available C language compiler. To invoke | ||
| 64 | * this mode, define the symbol UNK. | ||
| 65 | * | ||
| 66 | * An important difference among these modes is a predefined | ||
| 67 | * set of machine arithmetic constants for each. The numbers | ||
| 68 | * MACHEP (the machine roundoff error), MAXNUM (largest number | ||
| 69 | * represented), and several other parameters are preset by | ||
| 70 | * the configuration symbol. Check the file const.c to | ||
| 71 | * ensure that these values are correct for your computer. | ||
| 72 | * | ||
| 73 | * Configurations NANS, INFINITIES, MINUSZERO, and DENORMAL | ||
| 74 | * may fail on many systems. Verify that they are supposed | ||
| 75 | * to work on your computer. | ||
| 76 | */ | ||
| 77 | |||
| 78 | #include <sys/types.h> | ||
| 79 | #include <sys/endian.h> | ||
| 80 | |||
| 81 | /* Constant definitions for math error conditions | ||
| 82 | */ | ||
| 83 | |||
| 84 | #define DOMAIN 1 /* argument domain error */ | ||
| 85 | #define SING 2 /* argument singularity */ | ||
| 86 | #define OVERFLOW 3 /* overflow range error */ | ||
| 87 | #define UNDERFLOW 4 /* underflow range error */ | ||
| 88 | #define TLOSS 5 /* total loss of precision */ | ||
| 89 | #define PLOSS 6 /* partial loss of precision */ | ||
| 90 | |||
| 91 | #define EDOM 33 | ||
| 92 | #define ERANGE 34 | ||
| 93 | |||
| 94 | /* Complex numeral. */ | ||
| 95 | typedef struct | ||
| 96 | { | ||
| 97 | double r; | ||
| 98 | double i; | ||
| 99 | } cmplx; | ||
| 100 | |||
| 101 | /* Long double complex numeral. */ | ||
| 102 | typedef struct | ||
| 103 | { | ||
| 104 | double r; | ||
| 105 | double i; | ||
| 106 | } cmplxl; | ||
| 107 | |||
| 108 | /* Type of computer arithmetic */ | ||
| 109 | |||
| 110 | /* PDP-11, Pro350, VAX: | ||
| 111 | */ | ||
| 112 | #ifdef __vax__ | ||
| 113 | #define DEC 1 | ||
| 114 | #endif /* __vax__ */ | ||
| 115 | |||
| 116 | /* Intel IEEE, low order words come first: | ||
| 117 | */ | ||
| 118 | /* #define IBMPC 1 */ | ||
| 119 | |||
| 120 | /* Motorola IEEE, high order words come first | ||
| 121 | * (Sun 680x0 workstation): | ||
| 122 | */ | ||
| 123 | /* #define MIEEE 1 */ | ||
| 124 | |||
| 125 | /* UNKnown arithmetic, invokes coefficients given in | ||
| 126 | * normal decimal format. Beware of range boundary | ||
| 127 | * problems (MACHEP, MAXLOG, etc. in const.c) and | ||
| 128 | * roundoff problems in pow.c: | ||
| 129 | * (Sun SPARCstation) | ||
| 130 | */ | ||
| 131 | #ifndef __vax__ | ||
| 132 | #define UNK 1 | ||
| 133 | #endif /* !__vax__ */ | ||
| 134 | |||
| 135 | /* If you define UNK, then be sure to set BIGENDIAN properly. */ | ||
| 136 | #if BYTE_ORDER == BIG_ENDIAN | ||
| 137 | #define BIGENDIAN 1 | ||
| 138 | #endif /* BYTE_ORDER == BIG_ENDIAN */ | ||
| 139 | |||
| 140 | /* Define this `volatile' if your compiler thinks | ||
| 141 | * that floating point arithmetic obeys the associative | ||
| 142 | * and distributive laws. It will defeat some optimizations | ||
| 143 | * (but probably not enough of them). | ||
| 144 | * | ||
| 145 | * #define VOLATILE volatile | ||
| 146 | */ | ||
| 147 | #define VOLATILE | ||
| 148 | |||
| 149 | /* For 12-byte long doubles on an i386, pad a 16-bit short 0 | ||
| 150 | * to the end of real constants initialized by integer arrays. | ||
| 151 | * | ||
| 152 | * #define XPD 0, | ||
| 153 | * | ||
| 154 | * Otherwise, the type is 10 bytes long and XPD should be | ||
| 155 | * defined blank (e.g., Microsoft C). | ||
| 156 | * | ||
| 157 | * #define XPD | ||
| 158 | */ | ||
| 159 | #define XPD 0, | ||
| 160 | |||
| 161 | /* Define to support tiny denormal numbers, else undefine. */ | ||
| 162 | #ifndef __vax__ | ||
| 163 | #define DENORMAL 1 | ||
| 164 | #endif /* !__vax__ */ | ||
| 165 | |||
| 166 | /* Define to ask for infinity support, else undefine. */ | ||
| 167 | #ifndef __vax__ | ||
| 168 | #define INFINITIES 1 | ||
| 169 | #endif /* !__vax__ */ | ||
| 170 | |||
| 171 | /* Define to ask for support of numbers that are Not-a-Number, | ||
| 172 | else undefine. This may automatically define INFINITIES in some files. */ | ||
| 173 | #ifndef __vax__ | ||
| 174 | #define NANS 1 | ||
| 175 | #endif /* !__vax__ */ | ||
| 176 | |||
| 177 | /* Define to distinguish between -0.0 and +0.0. */ | ||
| 178 | #define MINUSZERO 1 | ||
| 179 | |||
| 180 | /* Define 1 for ANSI C atan2() function | ||
| 181 | See atan.c and clog.c. */ | ||
| 182 | #define ANSIC 1 | ||
| 183 | |||
| 184 | int mtherr(); | ||
| 185 | |||
| 186 | /* Variable for error reporting. See mtherr.c. */ | ||
| 187 | extern int merror; | ||
diff --git a/src/regress/lib/libc/cephes/mtherr.c b/src/regress/lib/libc/cephes/mtherr.c new file mode 100644 index 0000000000..9a47a198bd --- /dev/null +++ b/src/regress/lib/libc/cephes/mtherr.c | |||
| @@ -0,0 +1,114 @@ | |||
| 1 | /* $OpenBSD: mtherr.c,v 1.1 2011/07/02 18:11:01 martynas Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | /* mtherr.c | ||
| 20 | * | ||
| 21 | * Library common error handling routine | ||
| 22 | * | ||
| 23 | * | ||
| 24 | * | ||
| 25 | * SYNOPSIS: | ||
| 26 | * | ||
| 27 | * char *fctnam; | ||
| 28 | * int code; | ||
| 29 | * int mtherr(); | ||
| 30 | * | ||
| 31 | * mtherr( fctnam, code ); | ||
| 32 | * | ||
| 33 | * | ||
| 34 | * | ||
| 35 | * DESCRIPTION: | ||
| 36 | * | ||
| 37 | * This routine may be called to report one of the following | ||
| 38 | * error conditions (in the include file mconf.h). | ||
| 39 | * | ||
| 40 | * Mnemonic Value Significance | ||
| 41 | * | ||
| 42 | * DOMAIN 1 argument domain error | ||
| 43 | * SING 2 function singularity | ||
| 44 | * OVERFLOW 3 overflow range error | ||
| 45 | * UNDERFLOW 4 underflow range error | ||
| 46 | * TLOSS 5 total loss of precision | ||
| 47 | * PLOSS 6 partial loss of precision | ||
| 48 | * EDOM 33 Unix domain error code | ||
| 49 | * ERANGE 34 Unix range error code | ||
| 50 | * | ||
| 51 | * The default version of the file prints the function name, | ||
| 52 | * passed to it by the pointer fctnam, followed by the | ||
| 53 | * error condition. The display is directed to the standard | ||
| 54 | * output device. The routine then returns to the calling | ||
| 55 | * program. Users may wish to modify the program to abort by | ||
| 56 | * calling exit() under severe error conditions such as domain | ||
| 57 | * errors. | ||
| 58 | * | ||
| 59 | * Since all error conditions pass control to this function, | ||
| 60 | * the display may be easily changed, eliminated, or directed | ||
| 61 | * to an error logging device. | ||
| 62 | * | ||
| 63 | * SEE ALSO: | ||
| 64 | * | ||
| 65 | * mconf.h | ||
| 66 | * | ||
| 67 | */ | ||
| 68 | |||
| 69 | #include <stdio.h> | ||
| 70 | #include "mconf.h" | ||
| 71 | |||
| 72 | int merror = 0; | ||
| 73 | |||
| 74 | /* Notice: the order of appearance of the following | ||
| 75 | * messages is bound to the error codes defined | ||
| 76 | * in mconf.h. | ||
| 77 | */ | ||
| 78 | static char *ermsg[7] = { | ||
| 79 | "unknown", /* error code 0 */ | ||
| 80 | "domain", /* error code 1 */ | ||
| 81 | "singularity", /* et seq. */ | ||
| 82 | "overflow", | ||
| 83 | "underflow", | ||
| 84 | "total loss of precision", | ||
| 85 | "partial loss of precision" | ||
| 86 | }; | ||
| 87 | |||
| 88 | |||
| 89 | int mtherr( name, code ) | ||
| 90 | char *name; | ||
| 91 | int code; | ||
| 92 | { | ||
| 93 | |||
| 94 | /* Display string passed by calling program, | ||
| 95 | * which is supposed to be the name of the | ||
| 96 | * function in which the error occurred: | ||
| 97 | */ | ||
| 98 | printf( "\n%s ", name ); | ||
| 99 | |||
| 100 | /* Set global error message word */ | ||
| 101 | merror = code; | ||
| 102 | |||
| 103 | /* Display error message defined | ||
| 104 | * by the code argument. | ||
| 105 | */ | ||
| 106 | if( (code <= 0) || (code >= 7) ) | ||
| 107 | code = 0; | ||
| 108 | printf( "%s error\n", ermsg[code] ); | ||
| 109 | |||
| 110 | /* Return to calling | ||
| 111 | * program | ||
| 112 | */ | ||
| 113 | return( 0 ); | ||
| 114 | } | ||
diff --git a/src/regress/lib/libc/cxa-atexit/Makefile b/src/regress/lib/libc/cxa-atexit/Makefile new file mode 100644 index 0000000000..5061ca04ac --- /dev/null +++ b/src/regress/lib/libc/cxa-atexit/Makefile | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2010/05/10 18:20:31 drahn Exp $ | ||
| 2 | |||
| 3 | .include <bsd.own.mk> | ||
| 4 | |||
| 5 | |||
| 6 | .if ${COMPILER_VERSION:L} == "gcc3" || ${COMPILER_VERSION:L} == "gcc4" | ||
| 7 | SUBDIR+= libgd1 libgd2 test1 | ||
| 8 | .endif | ||
| 9 | |||
| 10 | install: | ||
| 11 | |||
| 12 | .include <bsd.subdir.mk> | ||
diff --git a/src/regress/lib/libc/cxa-atexit/libgd1/Makefile b/src/regress/lib/libc/cxa-atexit/libgd1/Makefile new file mode 100644 index 0000000000..958b726d28 --- /dev/null +++ b/src/regress/lib/libc/cxa-atexit/libgd1/Makefile | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2007/09/03 14:42:44 millert Exp $ | ||
| 2 | |||
| 3 | LIB=gd1 | ||
| 4 | SRCS= gd1.C | ||
| 5 | NOPROFILE=yes | ||
| 6 | |||
| 7 | regress: all | ||
| 8 | |||
| 9 | .include <bsd.lib.mk> | ||
diff --git a/src/regress/lib/libc/cxa-atexit/libgd1/gd1.C b/src/regress/lib/libc/cxa-atexit/libgd1/gd1.C new file mode 100644 index 0000000000..b3ecd56d91 --- /dev/null +++ b/src/regress/lib/libc/cxa-atexit/libgd1/gd1.C | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | /* $OpenBSD: gd1.C,v 1.1 2007/09/03 14:42:44 millert Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2007 Kurt Miller <kurt@openbsd.org> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | #include <stdio.h> | ||
| 20 | |||
| 21 | extern int check1; | ||
| 22 | |||
| 23 | struct global_destructor_test_obj1 { | ||
| 24 | inline ~global_destructor_test_obj1() { | ||
| 25 | check1 = 0; | ||
| 26 | } | ||
| 27 | }; | ||
| 28 | |||
| 29 | extern "C" void gd_test1() | ||
| 30 | { | ||
| 31 | static global_destructor_test_obj1 gdt; | ||
| 32 | } | ||
diff --git a/src/regress/lib/libc/cxa-atexit/libgd1/shlib_version b/src/regress/lib/libc/cxa-atexit/libgd1/shlib_version new file mode 100644 index 0000000000..97c9f92d6b --- /dev/null +++ b/src/regress/lib/libc/cxa-atexit/libgd1/shlib_version | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | major=0 | ||
| 2 | minor=0 | ||
diff --git a/src/regress/lib/libc/cxa-atexit/libgd2/Makefile b/src/regress/lib/libc/cxa-atexit/libgd2/Makefile new file mode 100644 index 0000000000..7ca21d8bd2 --- /dev/null +++ b/src/regress/lib/libc/cxa-atexit/libgd2/Makefile | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2007/09/03 14:42:44 millert Exp $ | ||
| 2 | |||
| 3 | LIB=gd2 | ||
| 4 | SRCS= gd2.C | ||
| 5 | NOPROFILE=yes | ||
| 6 | |||
| 7 | regress: all | ||
| 8 | |||
| 9 | .include <bsd.lib.mk> | ||
diff --git a/src/regress/lib/libc/cxa-atexit/libgd2/gd2.C b/src/regress/lib/libc/cxa-atexit/libgd2/gd2.C new file mode 100644 index 0000000000..69e7ffb220 --- /dev/null +++ b/src/regress/lib/libc/cxa-atexit/libgd2/gd2.C | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | /* $OpenBSD: gd2.C,v 1.1 2007/09/03 14:42:44 millert Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2007 Kurt Miller <kurt@openbsd.org> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | #include <stdio.h> | ||
| 20 | |||
| 21 | extern int check2; | ||
| 22 | |||
| 23 | struct global_destructor_test_obj2 { | ||
| 24 | inline ~global_destructor_test_obj2() { | ||
| 25 | check2 = 0; | ||
| 26 | } | ||
| 27 | }; | ||
| 28 | |||
| 29 | extern "C" void gd_test2() | ||
| 30 | { | ||
| 31 | static global_destructor_test_obj2 gdt; | ||
| 32 | } | ||
diff --git a/src/regress/lib/libc/cxa-atexit/libgd2/shlib_version b/src/regress/lib/libc/cxa-atexit/libgd2/shlib_version new file mode 100644 index 0000000000..97c9f92d6b --- /dev/null +++ b/src/regress/lib/libc/cxa-atexit/libgd2/shlib_version | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | major=0 | ||
| 2 | minor=0 | ||
diff --git a/src/regress/lib/libc/cxa-atexit/test1/Makefile b/src/regress/lib/libc/cxa-atexit/test1/Makefile new file mode 100644 index 0000000000..533392d144 --- /dev/null +++ b/src/regress/lib/libc/cxa-atexit/test1/Makefile | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2007/09/03 14:42:44 millert Exp $ | ||
| 2 | |||
| 3 | .include <bsd.obj.mk> | ||
| 4 | |||
| 5 | GD1_DIR=${.CURDIR}/../libgd1 | ||
| 6 | GD1_OBJDIR!= if [ -d $(GD1_DIR)/${__objdir} ]; then \ | ||
| 7 | echo "$(GD1_DIR)/${__objdir}"; \ | ||
| 8 | else \ | ||
| 9 | echo "$(GD1_DIR)"; \ | ||
| 10 | fi | ||
| 11 | |||
| 12 | GD2_DIR=${.CURDIR}/../libgd2 | ||
| 13 | GD2_OBJDIR!= if [ -d $(GD2_DIR)/${__objdir} ]; then \ | ||
| 14 | echo "$(GD2_DIR)/${__objdir}"; \ | ||
| 15 | else \ | ||
| 16 | echo "$(GD2_DIR)"; \ | ||
| 17 | fi | ||
| 18 | |||
| 19 | PROG= test1 | ||
| 20 | |||
| 21 | SRCS= test1.C | ||
| 22 | |||
| 23 | CFLAGS+= -DLIBGD1="\"$(GD1_OBJDIR)/libgd1.so\"" | ||
| 24 | CFLAGS+= -DLIBGD2="\"$(GD2_OBJDIR)/libgd2.so\"" | ||
| 25 | LDFLAGS+= -Wl,-E | ||
| 26 | |||
| 27 | NOMAN= | ||
| 28 | |||
| 29 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/cxa-atexit/test1/test1.C b/src/regress/lib/libc/cxa-atexit/test1/test1.C new file mode 100644 index 0000000000..75fb967a90 --- /dev/null +++ b/src/regress/lib/libc/cxa-atexit/test1/test1.C | |||
| @@ -0,0 +1,63 @@ | |||
| 1 | /* $OpenBSD: test1.C,v 1.1 2007/09/03 14:42:44 millert Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2007 Kurt Miller <kurt@openbsd.org> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | #include <dlfcn.h> | ||
| 20 | #include <err.h> | ||
| 21 | #include <stdio.h> | ||
| 22 | |||
| 23 | int check1, check2; | ||
| 24 | |||
| 25 | int | ||
| 26 | main() | ||
| 27 | { | ||
| 28 | void *libgd1, *libgd2; | ||
| 29 | void (*gd_test)(); | ||
| 30 | int i; | ||
| 31 | |||
| 32 | for (i=0; i < 50; i++) { | ||
| 33 | check1 = check2 = 1; | ||
| 34 | |||
| 35 | libgd1 = dlopen(LIBGD1, RTLD_LAZY); | ||
| 36 | if (libgd1 == NULL) | ||
| 37 | errx(1, "dlopen(%s, RTLD_LAZY) FAILED\n", LIBGD1); | ||
| 38 | |||
| 39 | gd_test = (void (*)())dlsym(libgd1, "gd_test1"); | ||
| 40 | if (gd_test == NULL) | ||
| 41 | errx(1, "dlsym(libgd1, \"gd_test1\") FAILED\n"); | ||
| 42 | |||
| 43 | (*gd_test)(); | ||
| 44 | |||
| 45 | libgd2 = dlopen(LIBGD2, RTLD_LAZY); | ||
| 46 | if (libgd2 == NULL) | ||
| 47 | errx(1, "dlopen(%s, RTLD_LAZY) FAILED\n", LIBGD2); | ||
| 48 | |||
| 49 | gd_test = (void (*)())dlsym(libgd2, "gd_test2"); | ||
| 50 | if (gd_test == NULL) | ||
| 51 | errx(1, "dlsym(libgd2, \"gd_test2\") FAILED\n"); | ||
| 52 | |||
| 53 | (*gd_test)(); | ||
| 54 | |||
| 55 | dlclose(libgd1); | ||
| 56 | dlclose(libgd2); | ||
| 57 | |||
| 58 | if (check1 || check2) | ||
| 59 | errx(1, "global destructors not called\n"); | ||
| 60 | } | ||
| 61 | |||
| 62 | return (0); | ||
| 63 | } | ||
diff --git a/src/regress/lib/libc/db/Makefile b/src/regress/lib/libc/db/Makefile new file mode 100644 index 0000000000..7d2882594d --- /dev/null +++ b/src/regress/lib/libc/db/Makefile | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.10 2002/09/02 20:01:43 avsm Exp $ | ||
| 2 | # $NetBSD: Makefile,v 1.11 1995/12/12 01:54:15 cgd Exp $ | ||
| 3 | |||
| 4 | PROG= dbtest | ||
| 5 | |||
| 6 | # add -DSTATISTICS to CFLAGS to get usage statistics. Note that | ||
| 7 | # for this to work, libc must be compiled with -DSTATISTICS as well | ||
| 8 | CFLAGS+= -g -D__DBINTERFACE_PRIVATE -DDEBUG | ||
| 9 | CLEANFILES+= t1 t2 t3 log | ||
| 10 | |||
| 11 | DBTARGETS=1 2 3 4 5 6 7 8 9 10 11 12 13 20 | ||
| 12 | |||
| 13 | .for DT in ${DBTARGETS} | ||
| 14 | db-${DT}: ${PROG} | ||
| 15 | sh ${.CURDIR}/run.test ${DT} | ||
| 16 | REGRESS_TARGETS+=db-${DT} | ||
| 17 | .PHONY: db-${DT} | ||
| 18 | .endfor | ||
| 19 | |||
| 20 | REGRESS_SLOW_TARGETS+=db-3 db-12 db-20 | ||
| 21 | |||
| 22 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/db/README b/src/regress/lib/libc/db/README new file mode 100644 index 0000000000..23a1b77221 --- /dev/null +++ b/src/regress/lib/libc/db/README | |||
| @@ -0,0 +1,69 @@ | |||
| 1 | # $OpenBSD: README,v 1.3 2001/01/29 02:05:40 niklas Exp $ | ||
| 2 | # $NetBSD: README,v 1.5 1996/05/03 21:54:19 cgd Exp $ | ||
| 3 | # @(#)README 8.8 (Berkeley) 7/31/94 | ||
| 4 | |||
| 5 | To run the tests, enter "make regress". | ||
| 6 | |||
| 7 | Fairly large files (the command files) are built in this directory during | ||
| 8 | the test runs, and even larger files (the database files) are created in | ||
| 9 | "/var/tmp". If the latter directory doesn't exist, set the environmental | ||
| 10 | variable TMPDIR to a directory where the files can be built. | ||
| 11 | |||
| 12 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | ||
| 13 | The script file consists of lines with an initial character which is | ||
| 14 | the command for that line, or an initial character indicating a key | ||
| 15 | or data entry for a previous command. | ||
| 16 | |||
| 17 | Legal command characters are as follows: | ||
| 18 | |||
| 19 | c: compare a record | ||
| 20 | + must be followed by [kK][dD]; the data value in the database | ||
| 21 | associated with the specified key is compared to the specified | ||
| 22 | data value. | ||
| 23 | e: echo a string | ||
| 24 | + writes out the rest of the line into the output file; if the | ||
| 25 | last character is not a carriage-return, a newline is appended. | ||
| 26 | f: set the flags for the next command | ||
| 27 | + no value zero's the flags | ||
| 28 | g: do a get command | ||
| 29 | + must be followed by [kK] | ||
| 30 | + writes out the retrieved data DBT. | ||
| 31 | o [r]: dump [reverse] | ||
| 32 | + dump the database out, if 'r' is set, in reverse order. | ||
| 33 | p: do a put command | ||
| 34 | + must be followed by [kK][dD] | ||
| 35 | r: do a del command | ||
| 36 | + must be followed by [kK] unless R_CURSOR flag set. | ||
| 37 | S: sync the database | ||
| 38 | s: do a seq command | ||
| 39 | + must be followed by [kK] if R_CURSOR flag set. | ||
| 40 | + writes out the retrieved data DBT. | ||
| 41 | |||
| 42 | Legal key/data characters are as follows: | ||
| 43 | |||
| 44 | D [file]: data file | ||
| 45 | + set the current data value to the contents of the file | ||
| 46 | d [data]: | ||
| 47 | + set the current key value to the contents of the line. | ||
| 48 | K [file]: key file | ||
| 49 | + set the current key value to the contents of the file | ||
| 50 | k [data]: | ||
| 51 | + set the current key value to the contents of the line. | ||
| 52 | |||
| 53 | Blank lines, lines with leading white space, and lines with leading | ||
| 54 | hash marks (#) are ignored. | ||
| 55 | |||
| 56 | Options to dbtest are as follows: | ||
| 57 | |||
| 58 | -d: Set the DB_LOCK flag. | ||
| 59 | -f: Use the file argument as the database file. | ||
| 60 | -i: Use the rest of the argument to set elements in the info | ||
| 61 | structure. If the type is btree, then "-i cachesize=10240" | ||
| 62 | will set BTREEINFO.cachesize to 10240. | ||
| 63 | -o: The rest of the argument is the output file instead of | ||
| 64 | using stdout. | ||
| 65 | -s: Don't delete the database file before opening it, i.e. | ||
| 66 | use the database file from a previous run. | ||
| 67 | |||
| 68 | Dbtest requires two arguments, the type of access "hash", "recno" | ||
| 69 | or "btree", and the script name or "-" to indicate stdin. | ||
diff --git a/src/regress/lib/libc/db/dbtest.c b/src/regress/lib/libc/db/dbtest.c new file mode 100644 index 0000000000..c28ec0db5e --- /dev/null +++ b/src/regress/lib/libc/db/dbtest.c | |||
| @@ -0,0 +1,733 @@ | |||
| 1 | /* $OpenBSD: dbtest.c,v 1.12 2009/10/27 23:59:32 deraadt Exp $ */ | ||
| 2 | /* $NetBSD: dbtest.c,v 1.8 1996/05/03 21:57:48 cgd Exp $ */ | ||
| 3 | |||
| 4 | /*- | ||
| 5 | * Copyright (c) 1992, 1993, 1994 | ||
| 6 | * The Regents of the University of California. All rights reserved. | ||
| 7 | * | ||
| 8 | * Redistribution and use in source and binary forms, with or without | ||
| 9 | * modification, are permitted provided that the following conditions | ||
| 10 | * are met: | ||
| 11 | * 1. Redistributions of source code must retain the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer. | ||
| 13 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 14 | * notice, this list of conditions and the following disclaimer in the | ||
| 15 | * documentation and/or other materials provided with the distribution. | ||
| 16 | * 3. Neither the name of the University nor the names of its contributors | ||
| 17 | * may be used to endorse or promote products derived from this software | ||
| 18 | * without specific prior written permission. | ||
| 19 | * | ||
| 20 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | ||
| 21 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 22 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 23 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | ||
| 24 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 25 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 26 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 27 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 28 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 29 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 30 | * SUCH DAMAGE. | ||
| 31 | */ | ||
| 32 | |||
| 33 | #include <sys/param.h> | ||
| 34 | #include <sys/stat.h> | ||
| 35 | |||
| 36 | #include <ctype.h> | ||
| 37 | #include <errno.h> | ||
| 38 | #include <fcntl.h> | ||
| 39 | #include <limits.h> | ||
| 40 | #include <stdio.h> | ||
| 41 | #include <stdlib.h> | ||
| 42 | #include <string.h> | ||
| 43 | #include <stdarg.h> | ||
| 44 | #include <unistd.h> | ||
| 45 | |||
| 46 | #include <db.h> | ||
| 47 | |||
| 48 | enum S { COMMAND, COMPARE, GET, PUT, REMOVE, SEQ, SEQFLAG, KEY, DATA }; | ||
| 49 | |||
| 50 | void compare(DBT *, DBT *); | ||
| 51 | DBTYPE dbtype(char *); | ||
| 52 | void dump(DB *, int); | ||
| 53 | void dberr(const char *, ...); | ||
| 54 | void get(DB *, DBT *); | ||
| 55 | void getdata(DB *, DBT *, DBT *); | ||
| 56 | void put(DB *, DBT *, DBT *); | ||
| 57 | void rem(DB *, DBT *); | ||
| 58 | char *sflags(int); | ||
| 59 | void synk(DB *); | ||
| 60 | void *rfile(char *, size_t *); | ||
| 61 | void seq(DB *, DBT *); | ||
| 62 | u_int setflags(char *); | ||
| 63 | void *setinfo(DBTYPE, char *); | ||
| 64 | void usage(void); | ||
| 65 | void *xmalloc(char *, size_t); | ||
| 66 | |||
| 67 | DBTYPE type; /* Database type. */ | ||
| 68 | void *infop; /* Iflags. */ | ||
| 69 | u_long lineno; /* Current line in test script. */ | ||
| 70 | u_int flags; /* Current DB flags. */ | ||
| 71 | int ofd = STDOUT_FILENO; /* Standard output fd. */ | ||
| 72 | |||
| 73 | DB *XXdbp; /* Global for gdb. */ | ||
| 74 | int XXlineno; /* Fast breakpoint for gdb. */ | ||
| 75 | |||
| 76 | int | ||
| 77 | main(int argc, char *argv[]) | ||
| 78 | { | ||
| 79 | extern int optind; | ||
| 80 | extern char *optarg; | ||
| 81 | enum S command, state; | ||
| 82 | DB *dbp; | ||
| 83 | DBT data, key, keydata; | ||
| 84 | size_t len; | ||
| 85 | int ch, oflags, sflag; | ||
| 86 | char *fname, *infoarg, *p, *t, buf[8 * 1024]; | ||
| 87 | |||
| 88 | infoarg = NULL; | ||
| 89 | fname = NULL; | ||
| 90 | oflags = O_CREAT | O_RDWR; | ||
| 91 | sflag = 0; | ||
| 92 | while ((ch = getopt(argc, argv, "f:i:lo:s")) != -1) | ||
| 93 | switch (ch) { | ||
| 94 | case 'f': | ||
| 95 | fname = optarg; | ||
| 96 | break; | ||
| 97 | case 'i': | ||
| 98 | infoarg = optarg; | ||
| 99 | break; | ||
| 100 | case 'l': | ||
| 101 | oflags |= DB_LOCK; | ||
| 102 | break; | ||
| 103 | case 'o': | ||
| 104 | if ((ofd = open(optarg, | ||
| 105 | O_WRONLY|O_CREAT|O_TRUNC, 0666)) < 0) | ||
| 106 | dberr("%s: %s", optarg, strerror(errno)); | ||
| 107 | break; | ||
| 108 | case 's': | ||
| 109 | sflag = 1; | ||
| 110 | break; | ||
| 111 | case '?': | ||
| 112 | default: | ||
| 113 | usage(); | ||
| 114 | } | ||
| 115 | argc -= optind; | ||
| 116 | argv += optind; | ||
| 117 | |||
| 118 | if (argc != 2) | ||
| 119 | usage(); | ||
| 120 | |||
| 121 | /* Set the type. */ | ||
| 122 | type = dbtype(*argv++); | ||
| 123 | |||
| 124 | /* Open the descriptor file. */ | ||
| 125 | if (strcmp(*argv, "-") && freopen(*argv, "r", stdin) == NULL) | ||
| 126 | dberr("%s: %s", *argv, strerror(errno)); | ||
| 127 | |||
| 128 | /* Set up the db structure as necessary. */ | ||
| 129 | if (infoarg == NULL) | ||
| 130 | infop = NULL; | ||
| 131 | else | ||
| 132 | for (p = strtok(infoarg, ",\t "); p != NULL; | ||
| 133 | p = strtok(0, ",\t ")) | ||
| 134 | if (*p != '\0') | ||
| 135 | infop = setinfo(type, p); | ||
| 136 | |||
| 137 | /* | ||
| 138 | * Open the DB. Delete any preexisting copy, you almost never | ||
| 139 | * want it around, and it often screws up tests. | ||
| 140 | */ | ||
| 141 | if (fname == NULL) { | ||
| 142 | p = getenv("TMPDIR"); | ||
| 143 | if (p == NULL) | ||
| 144 | p = "/var/tmp"; | ||
| 145 | (void)snprintf(buf, sizeof buf, "%s/__dbtest", p); | ||
| 146 | fname = buf; | ||
| 147 | (void)unlink(buf); | ||
| 148 | } else if (!sflag) | ||
| 149 | (void)unlink(fname); | ||
| 150 | |||
| 151 | if ((dbp = dbopen(fname, | ||
| 152 | oflags, S_IRUSR | S_IWUSR, type, infop)) == NULL) | ||
| 153 | dberr("dbopen: %s", strerror(errno)); | ||
| 154 | XXdbp = dbp; | ||
| 155 | |||
| 156 | state = COMMAND; | ||
| 157 | for (lineno = 1; | ||
| 158 | (p = fgets(buf, sizeof(buf), stdin)) != NULL; ++lineno) { | ||
| 159 | /* Delete the newline, displaying the key/data is easier. */ | ||
| 160 | if (ofd == STDOUT_FILENO && (t = strchr(p, '\n')) != NULL) | ||
| 161 | *t = '\0'; | ||
| 162 | if ((len = strlen(buf)) == 0 || isspace(*p) || *p == '#') | ||
| 163 | continue; | ||
| 164 | |||
| 165 | /* Convenient gdb break point. */ | ||
| 166 | if (XXlineno == lineno) | ||
| 167 | XXlineno = 1; | ||
| 168 | switch (*p) { | ||
| 169 | case 'c': /* compare */ | ||
| 170 | if (state != COMMAND) | ||
| 171 | dberr("line %lu: not expecting command", | ||
| 172 | lineno); | ||
| 173 | state = KEY; | ||
| 174 | command = COMPARE; | ||
| 175 | break; | ||
| 176 | case 'e': /* echo */ | ||
| 177 | if (state != COMMAND) | ||
| 178 | dberr("line %lu: not expecting command", | ||
| 179 | lineno); | ||
| 180 | /* Don't display the newline, if CR at EOL. */ | ||
| 181 | if (p[len - 2] == '\r') | ||
| 182 | --len; | ||
| 183 | if (write(ofd, p + 1, len - 1) != len - 1 || | ||
| 184 | write(ofd, "\n", 1) != 1) | ||
| 185 | dberr("write: %s", strerror(errno)); | ||
| 186 | break; | ||
| 187 | case 'g': /* get */ | ||
| 188 | if (state != COMMAND) | ||
| 189 | dberr("line %lu: not expecting command", | ||
| 190 | lineno); | ||
| 191 | state = KEY; | ||
| 192 | command = GET; | ||
| 193 | break; | ||
| 194 | case 'p': /* put */ | ||
| 195 | if (state != COMMAND) | ||
| 196 | dberr("line %lu: not expecting command", | ||
| 197 | lineno); | ||
| 198 | state = KEY; | ||
| 199 | command = PUT; | ||
| 200 | break; | ||
| 201 | case 'r': /* remove */ | ||
| 202 | if (state != COMMAND) | ||
| 203 | dberr("line %lu: not expecting command", | ||
| 204 | lineno); | ||
| 205 | if (flags == R_CURSOR) { | ||
| 206 | rem(dbp, &key); | ||
| 207 | state = COMMAND; | ||
| 208 | } else { | ||
| 209 | state = KEY; | ||
| 210 | command = REMOVE; | ||
| 211 | } | ||
| 212 | break; | ||
| 213 | case 'S': /* sync */ | ||
| 214 | if (state != COMMAND) | ||
| 215 | dberr("line %lu: not expecting command", | ||
| 216 | lineno); | ||
| 217 | synk(dbp); | ||
| 218 | state = COMMAND; | ||
| 219 | break; | ||
| 220 | case 's': /* seq */ | ||
| 221 | if (state != COMMAND) | ||
| 222 | dberr("line %lu: not expecting command", | ||
| 223 | lineno); | ||
| 224 | if (flags == R_CURSOR) { | ||
| 225 | state = KEY; | ||
| 226 | command = SEQ; | ||
| 227 | } else | ||
| 228 | seq(dbp, &key); | ||
| 229 | break; | ||
| 230 | case 'f': | ||
| 231 | flags = setflags(p + 1); | ||
| 232 | break; | ||
| 233 | case 'D': /* data file */ | ||
| 234 | if (state != DATA) | ||
| 235 | dberr("line %lu: not expecting data", lineno); | ||
| 236 | data.data = rfile(p + 1, &data.size); | ||
| 237 | goto ldata; | ||
| 238 | case 'd': /* data */ | ||
| 239 | if (state != DATA) | ||
| 240 | dberr("line %lu: not expecting data", lineno); | ||
| 241 | data.data = xmalloc(p + 1, len - 1); | ||
| 242 | data.size = len - 1; | ||
| 243 | ldata: switch (command) { | ||
| 244 | case COMPARE: | ||
| 245 | compare(&keydata, &data); | ||
| 246 | break; | ||
| 247 | case PUT: | ||
| 248 | put(dbp, &key, &data); | ||
| 249 | break; | ||
| 250 | default: | ||
| 251 | dberr("line %lu: command doesn't take data", | ||
| 252 | lineno); | ||
| 253 | } | ||
| 254 | if (type != DB_RECNO) | ||
| 255 | free(key.data); | ||
| 256 | free(data.data); | ||
| 257 | state = COMMAND; | ||
| 258 | break; | ||
| 259 | case 'K': /* key file */ | ||
| 260 | if (state != KEY) | ||
| 261 | dberr("line %lu: not expecting a key", lineno); | ||
| 262 | if (type == DB_RECNO) | ||
| 263 | dberr("line %lu: 'K' not available for recno", | ||
| 264 | lineno); | ||
| 265 | key.data = rfile(p + 1, &key.size); | ||
| 266 | goto lkey; | ||
| 267 | case 'k': /* key */ | ||
| 268 | if (state != KEY) | ||
| 269 | dberr("line %lu: not expecting a key", lineno); | ||
| 270 | if (type == DB_RECNO) { | ||
| 271 | static recno_t recno; | ||
| 272 | recno = atoi(p + 1); | ||
| 273 | key.data = &recno; | ||
| 274 | key.size = sizeof(recno); | ||
| 275 | } else { | ||
| 276 | key.data = xmalloc(p + 1, len - 1); | ||
| 277 | key.size = len - 1; | ||
| 278 | } | ||
| 279 | lkey: switch (command) { | ||
| 280 | case COMPARE: | ||
| 281 | getdata(dbp, &key, &keydata); | ||
| 282 | state = DATA; | ||
| 283 | break; | ||
| 284 | case GET: | ||
| 285 | get(dbp, &key); | ||
| 286 | if (type != DB_RECNO) | ||
| 287 | free(key.data); | ||
| 288 | state = COMMAND; | ||
| 289 | break; | ||
| 290 | case PUT: | ||
| 291 | state = DATA; | ||
| 292 | break; | ||
| 293 | case REMOVE: | ||
| 294 | rem(dbp, &key); | ||
| 295 | if ((type != DB_RECNO) && (flags != R_CURSOR)) | ||
| 296 | free(key.data); | ||
| 297 | state = COMMAND; | ||
| 298 | break; | ||
| 299 | case SEQ: | ||
| 300 | seq(dbp, &key); | ||
| 301 | if ((type != DB_RECNO) && (flags != R_CURSOR)) | ||
| 302 | free(key.data); | ||
| 303 | state = COMMAND; | ||
| 304 | break; | ||
| 305 | default: | ||
| 306 | dberr("line %lu: command doesn't take a key", | ||
| 307 | lineno); | ||
| 308 | } | ||
| 309 | break; | ||
| 310 | case 'o': | ||
| 311 | dump(dbp, p[1] == 'r'); | ||
| 312 | break; | ||
| 313 | default: | ||
| 314 | dberr("line %lu: %s: unknown command character", | ||
| 315 | lineno, p); | ||
| 316 | } | ||
| 317 | } | ||
| 318 | #ifdef STATISTICS | ||
| 319 | /* | ||
| 320 | * -l must be used (DB_LOCK must be set) for this to be | ||
| 321 | * used, otherwise a page will be locked and it will fail. | ||
| 322 | */ | ||
| 323 | if (type == DB_BTREE && oflags & DB_LOCK) | ||
| 324 | __bt_stat(dbp); | ||
| 325 | #endif | ||
| 326 | if (dbp->close(dbp)) | ||
| 327 | dberr("db->close: %s", strerror(errno)); | ||
| 328 | (void)close(ofd); | ||
| 329 | exit(0); | ||
| 330 | } | ||
| 331 | |||
| 332 | #define NOOVERWRITE "put failed, would overwrite key\n" | ||
| 333 | |||
| 334 | void | ||
| 335 | compare(db1, db2) | ||
| 336 | DBT *db1, *db2; | ||
| 337 | { | ||
| 338 | register size_t len; | ||
| 339 | register u_char *p1, *p2; | ||
| 340 | |||
| 341 | if (db1->size != db2->size) | ||
| 342 | printf("compare failed: key->data len %lu != data len %lu\n", | ||
| 343 | db1->size, db2->size); | ||
| 344 | |||
| 345 | len = MIN(db1->size, db2->size); | ||
| 346 | for (p1 = db1->data, p2 = db2->data; len--;) | ||
| 347 | if (*p1++ != *p2++) { | ||
| 348 | printf("compare failed at offset %d\n", | ||
| 349 | p1 - (u_char *)db1->data); | ||
| 350 | break; | ||
| 351 | } | ||
| 352 | } | ||
| 353 | |||
| 354 | void | ||
| 355 | get(dbp, kp) | ||
| 356 | DB *dbp; | ||
| 357 | DBT *kp; | ||
| 358 | { | ||
| 359 | DBT data; | ||
| 360 | |||
| 361 | switch (dbp->get(dbp, kp, &data, flags)) { | ||
| 362 | case 0: | ||
| 363 | (void)write(ofd, data.data, data.size); | ||
| 364 | if (ofd == STDOUT_FILENO) | ||
| 365 | (void)write(ofd, "\n", 1); | ||
| 366 | break; | ||
| 367 | case -1: | ||
| 368 | dberr("line %lu: get: %s", lineno, strerror(errno)); | ||
| 369 | /* NOTREACHED */ | ||
| 370 | case 1: | ||
| 371 | #define NOSUCHKEY "get failed, no such key\n" | ||
| 372 | if (ofd != STDOUT_FILENO) | ||
| 373 | (void)write(ofd, NOSUCHKEY, sizeof(NOSUCHKEY) - 1); | ||
| 374 | else | ||
| 375 | (void)fprintf(stderr, "%d: %.*s: %s", | ||
| 376 | lineno, MIN(kp->size, 20), kp->data, NOSUCHKEY); | ||
| 377 | #undef NOSUCHKEY | ||
| 378 | break; | ||
| 379 | } | ||
| 380 | } | ||
| 381 | |||
| 382 | void | ||
| 383 | getdata(dbp, kp, dp) | ||
| 384 | DB *dbp; | ||
| 385 | DBT *kp, *dp; | ||
| 386 | { | ||
| 387 | switch (dbp->get(dbp, kp, dp, flags)) { | ||
| 388 | case 0: | ||
| 389 | return; | ||
| 390 | case -1: | ||
| 391 | dberr("line %lu: getdata: %s", lineno, strerror(errno)); | ||
| 392 | /* NOTREACHED */ | ||
| 393 | case 1: | ||
| 394 | dberr("line %lu: getdata failed, no such key", lineno); | ||
| 395 | /* NOTREACHED */ | ||
| 396 | } | ||
| 397 | } | ||
| 398 | |||
| 399 | void | ||
| 400 | put(dbp, kp, dp) | ||
| 401 | DB *dbp; | ||
| 402 | DBT *kp, *dp; | ||
| 403 | { | ||
| 404 | switch (dbp->put(dbp, kp, dp, flags)) { | ||
| 405 | case 0: | ||
| 406 | break; | ||
| 407 | case -1: | ||
| 408 | dberr("line %lu: put: %s", lineno, strerror(errno)); | ||
| 409 | /* NOTREACHED */ | ||
| 410 | case 1: | ||
| 411 | (void)write(ofd, NOOVERWRITE, sizeof(NOOVERWRITE) - 1); | ||
| 412 | break; | ||
| 413 | } | ||
| 414 | } | ||
| 415 | |||
| 416 | void | ||
| 417 | rem(dbp, kp) | ||
| 418 | DB *dbp; | ||
| 419 | DBT *kp; | ||
| 420 | { | ||
| 421 | switch (dbp->del(dbp, kp, flags)) { | ||
| 422 | case 0: | ||
| 423 | break; | ||
| 424 | case -1: | ||
| 425 | dberr("line %lu: rem: %s", lineno, strerror(errno)); | ||
| 426 | /* NOTREACHED */ | ||
| 427 | case 1: | ||
| 428 | #define NOSUCHKEY "rem failed, no such key\n" | ||
| 429 | if (ofd != STDOUT_FILENO) | ||
| 430 | (void)write(ofd, NOSUCHKEY, sizeof(NOSUCHKEY) - 1); | ||
| 431 | else if (flags != R_CURSOR) | ||
| 432 | (void)fprintf(stderr, "%d: %.*s: %s", | ||
| 433 | lineno, MIN(kp->size, 20), kp->data, NOSUCHKEY); | ||
| 434 | else | ||
| 435 | (void)fprintf(stderr, | ||
| 436 | "%d: rem of cursor failed\n", lineno); | ||
| 437 | #undef NOSUCHKEY | ||
| 438 | break; | ||
| 439 | } | ||
| 440 | } | ||
| 441 | |||
| 442 | void | ||
| 443 | synk(dbp) | ||
| 444 | DB *dbp; | ||
| 445 | { | ||
| 446 | switch (dbp->sync(dbp, flags)) { | ||
| 447 | case 0: | ||
| 448 | break; | ||
| 449 | case -1: | ||
| 450 | dberr("line %lu: synk: %s", lineno, strerror(errno)); | ||
| 451 | /* NOTREACHED */ | ||
| 452 | } | ||
| 453 | } | ||
| 454 | |||
| 455 | void | ||
| 456 | seq(dbp, kp) | ||
| 457 | DB *dbp; | ||
| 458 | DBT *kp; | ||
| 459 | { | ||
| 460 | DBT data; | ||
| 461 | |||
| 462 | switch (dbp->seq(dbp, kp, &data, flags)) { | ||
| 463 | case 0: | ||
| 464 | (void)write(ofd, data.data, data.size); | ||
| 465 | if (ofd == STDOUT_FILENO) | ||
| 466 | (void)write(ofd, "\n", 1); | ||
| 467 | break; | ||
| 468 | case -1: | ||
| 469 | dberr("line %lu: seq: %s", lineno, strerror(errno)); | ||
| 470 | /* NOTREACHED */ | ||
| 471 | case 1: | ||
| 472 | #define NOSUCHKEY "seq failed, no such key\n" | ||
| 473 | if (ofd != STDOUT_FILENO) | ||
| 474 | (void)write(ofd, NOSUCHKEY, sizeof(NOSUCHKEY) - 1); | ||
| 475 | else if (flags == R_CURSOR) | ||
| 476 | (void)fprintf(stderr, "%d: %.*s: %s", | ||
| 477 | lineno, MIN(kp->size, 20), kp->data, NOSUCHKEY); | ||
| 478 | else | ||
| 479 | (void)fprintf(stderr, | ||
| 480 | "%d: seq (%s) failed\n", lineno, sflags(flags)); | ||
| 481 | #undef NOSUCHKEY | ||
| 482 | break; | ||
| 483 | } | ||
| 484 | } | ||
| 485 | |||
| 486 | void | ||
| 487 | dump(dbp, rev) | ||
| 488 | DB *dbp; | ||
| 489 | int rev; | ||
| 490 | { | ||
| 491 | DBT key, data; | ||
| 492 | int flags, nflags; | ||
| 493 | |||
| 494 | if (rev) { | ||
| 495 | flags = R_LAST; | ||
| 496 | nflags = R_PREV; | ||
| 497 | } else { | ||
| 498 | flags = R_FIRST; | ||
| 499 | nflags = R_NEXT; | ||
| 500 | } | ||
| 501 | for (;; flags = nflags) | ||
| 502 | switch (dbp->seq(dbp, &key, &data, flags)) { | ||
| 503 | case 0: | ||
| 504 | (void)write(ofd, data.data, data.size); | ||
| 505 | if (ofd == STDOUT_FILENO) | ||
| 506 | (void)write(ofd, "\n", 1); | ||
| 507 | break; | ||
| 508 | case 1: | ||
| 509 | goto done; | ||
| 510 | case -1: | ||
| 511 | dberr("line %lu: (dump) seq: %s", | ||
| 512 | lineno, strerror(errno)); | ||
| 513 | /* NOTREACHED */ | ||
| 514 | } | ||
| 515 | done: return; | ||
| 516 | } | ||
| 517 | |||
| 518 | u_int | ||
| 519 | setflags(s) | ||
| 520 | char *s; | ||
| 521 | { | ||
| 522 | char *p; | ||
| 523 | |||
| 524 | for (; isspace(*s); ++s); | ||
| 525 | if (*s == '\n' || *s == '\0') | ||
| 526 | return (0); | ||
| 527 | if ((p = strchr(s, '\n')) != NULL) | ||
| 528 | *p = '\0'; | ||
| 529 | if (!strcmp(s, "R_CURSOR")) return (R_CURSOR); | ||
| 530 | if (!strcmp(s, "R_FIRST")) return (R_FIRST); | ||
| 531 | if (!strcmp(s, "R_IAFTER")) return (R_IAFTER); | ||
| 532 | if (!strcmp(s, "R_IBEFORE")) return (R_IBEFORE); | ||
| 533 | if (!strcmp(s, "R_LAST")) return (R_LAST); | ||
| 534 | if (!strcmp(s, "R_NEXT")) return (R_NEXT); | ||
| 535 | if (!strcmp(s, "R_NOOVERWRITE")) return (R_NOOVERWRITE); | ||
| 536 | if (!strcmp(s, "R_PREV")) return (R_PREV); | ||
| 537 | if (!strcmp(s, "R_SETCURSOR")) return (R_SETCURSOR); | ||
| 538 | |||
| 539 | dberr("line %lu: %s: unknown flag", lineno, s); | ||
| 540 | /* NOTREACHED */ | ||
| 541 | } | ||
| 542 | |||
| 543 | char * | ||
| 544 | sflags(flags) | ||
| 545 | int flags; | ||
| 546 | { | ||
| 547 | switch (flags) { | ||
| 548 | case R_CURSOR: return ("R_CURSOR"); | ||
| 549 | case R_FIRST: return ("R_FIRST"); | ||
| 550 | case R_IAFTER: return ("R_IAFTER"); | ||
| 551 | case R_IBEFORE: return ("R_IBEFORE"); | ||
| 552 | case R_LAST: return ("R_LAST"); | ||
| 553 | case R_NEXT: return ("R_NEXT"); | ||
| 554 | case R_NOOVERWRITE: return ("R_NOOVERWRITE"); | ||
| 555 | case R_PREV: return ("R_PREV"); | ||
| 556 | case R_SETCURSOR: return ("R_SETCURSOR"); | ||
| 557 | } | ||
| 558 | |||
| 559 | return ("UNKNOWN!"); | ||
| 560 | } | ||
| 561 | |||
| 562 | DBTYPE | ||
| 563 | dbtype(s) | ||
| 564 | char *s; | ||
| 565 | { | ||
| 566 | if (!strcmp(s, "btree")) | ||
| 567 | return (DB_BTREE); | ||
| 568 | if (!strcmp(s, "hash")) | ||
| 569 | return (DB_HASH); | ||
| 570 | if (!strcmp(s, "recno")) | ||
| 571 | return (DB_RECNO); | ||
| 572 | dberr("%s: unknown type (use btree, hash or recno)", s); | ||
| 573 | /* NOTREACHED */ | ||
| 574 | } | ||
| 575 | |||
| 576 | void * | ||
| 577 | setinfo(type, s) | ||
| 578 | DBTYPE type; | ||
| 579 | char *s; | ||
| 580 | { | ||
| 581 | static BTREEINFO ib; | ||
| 582 | static HASHINFO ih; | ||
| 583 | static RECNOINFO rh; | ||
| 584 | char *eq; | ||
| 585 | |||
| 586 | if ((eq = strchr(s, '=')) == NULL) | ||
| 587 | dberr("%s: illegal structure set statement", s); | ||
| 588 | *eq++ = '\0'; | ||
| 589 | if (!isdigit(*eq)) | ||
| 590 | dberr("%s: structure set statement must be a number", s); | ||
| 591 | |||
| 592 | switch (type) { | ||
| 593 | case DB_BTREE: | ||
| 594 | if (!strcmp("flags", s)) { | ||
| 595 | ib.flags = atoi(eq); | ||
| 596 | return (&ib); | ||
| 597 | } | ||
| 598 | if (!strcmp("cachesize", s)) { | ||
| 599 | ib.cachesize = atoi(eq); | ||
| 600 | return (&ib); | ||
| 601 | } | ||
| 602 | if (!strcmp("maxkeypage", s)) { | ||
| 603 | ib.maxkeypage = atoi(eq); | ||
| 604 | return (&ib); | ||
| 605 | } | ||
| 606 | if (!strcmp("minkeypage", s)) { | ||
| 607 | ib.minkeypage = atoi(eq); | ||
| 608 | return (&ib); | ||
| 609 | } | ||
| 610 | if (!strcmp("lorder", s)) { | ||
| 611 | ib.lorder = atoi(eq); | ||
| 612 | return (&ib); | ||
| 613 | } | ||
| 614 | if (!strcmp("psize", s)) { | ||
| 615 | ib.psize = atoi(eq); | ||
| 616 | return (&ib); | ||
| 617 | } | ||
| 618 | break; | ||
| 619 | case DB_HASH: | ||
| 620 | if (!strcmp("bsize", s)) { | ||
| 621 | ih.bsize = atoi(eq); | ||
| 622 | return (&ih); | ||
| 623 | } | ||
| 624 | if (!strcmp("ffactor", s)) { | ||
| 625 | ih.ffactor = atoi(eq); | ||
| 626 | return (&ih); | ||
| 627 | } | ||
| 628 | if (!strcmp("nelem", s)) { | ||
| 629 | ih.nelem = atoi(eq); | ||
| 630 | return (&ih); | ||
| 631 | } | ||
| 632 | if (!strcmp("cachesize", s)) { | ||
| 633 | ih.cachesize = atoi(eq); | ||
| 634 | return (&ih); | ||
| 635 | } | ||
| 636 | if (!strcmp("lorder", s)) { | ||
| 637 | ih.lorder = atoi(eq); | ||
| 638 | return (&ih); | ||
| 639 | } | ||
| 640 | break; | ||
| 641 | case DB_RECNO: | ||
| 642 | if (!strcmp("flags", s)) { | ||
| 643 | rh.flags = atoi(eq); | ||
| 644 | return (&rh); | ||
| 645 | } | ||
| 646 | if (!strcmp("cachesize", s)) { | ||
| 647 | rh.cachesize = atoi(eq); | ||
| 648 | return (&rh); | ||
| 649 | } | ||
| 650 | if (!strcmp("lorder", s)) { | ||
| 651 | rh.lorder = atoi(eq); | ||
| 652 | return (&rh); | ||
| 653 | } | ||
| 654 | if (!strcmp("reclen", s)) { | ||
| 655 | rh.reclen = atoi(eq); | ||
| 656 | return (&rh); | ||
| 657 | } | ||
| 658 | if (!strcmp("bval", s)) { | ||
| 659 | rh.bval = atoi(eq); | ||
| 660 | return (&rh); | ||
| 661 | } | ||
| 662 | if (!strcmp("psize", s)) { | ||
| 663 | rh.psize = atoi(eq); | ||
| 664 | return (&rh); | ||
| 665 | } | ||
| 666 | break; | ||
| 667 | } | ||
| 668 | dberr("%s: unknown structure value", s); | ||
| 669 | /* NOTREACHED */ | ||
| 670 | } | ||
| 671 | |||
| 672 | void * | ||
| 673 | rfile(name, lenp) | ||
| 674 | char *name; | ||
| 675 | size_t *lenp; | ||
| 676 | { | ||
| 677 | struct stat sb; | ||
| 678 | void *p; | ||
| 679 | int fd; | ||
| 680 | char *np; | ||
| 681 | |||
| 682 | for (; isspace(*name); ++name); | ||
| 683 | if ((np = strchr(name, '\n')) != NULL) | ||
| 684 | *np = '\0'; | ||
| 685 | if ((fd = open(name, O_RDONLY, 0)) < 0 || | ||
| 686 | fstat(fd, &sb)) | ||
| 687 | dberr("%s: %s\n", name, strerror(errno)); | ||
| 688 | #ifdef NOT_PORTABLE | ||
| 689 | if (sb.st_size > (off_t)SIZE_T_MAX) | ||
| 690 | dberr("%s: %s\n", name, strerror(E2BIG)); | ||
| 691 | #endif | ||
| 692 | if ((p = (void *)malloc((u_int)sb.st_size)) == NULL) | ||
| 693 | dberr("%s", strerror(errno)); | ||
| 694 | (void)read(fd, p, (int)sb.st_size); | ||
| 695 | *lenp = sb.st_size; | ||
| 696 | (void)close(fd); | ||
| 697 | return (p); | ||
| 698 | } | ||
| 699 | |||
| 700 | void * | ||
| 701 | xmalloc(text, len) | ||
| 702 | char *text; | ||
| 703 | size_t len; | ||
| 704 | { | ||
| 705 | void *p; | ||
| 706 | |||
| 707 | if ((p = (void *)malloc(len)) == NULL) | ||
| 708 | dberr("%s", strerror(errno)); | ||
| 709 | memmove(p, text, len); | ||
| 710 | return (p); | ||
| 711 | } | ||
| 712 | |||
| 713 | void | ||
| 714 | usage() | ||
| 715 | { | ||
| 716 | (void)fprintf(stderr, | ||
| 717 | "usage: dbtest [-l] [-f file] [-i info] [-o file] type script\n"); | ||
| 718 | exit(1); | ||
| 719 | } | ||
| 720 | |||
| 721 | void | ||
| 722 | dberr(const char *fmt, ...) | ||
| 723 | { | ||
| 724 | va_list ap; | ||
| 725 | |||
| 726 | va_start(ap, fmt); | ||
| 727 | (void)fprintf(stderr, "dbtest: "); | ||
| 728 | (void)vfprintf(stderr, fmt, ap); | ||
| 729 | va_end(ap); | ||
| 730 | (void)fprintf(stderr, "\n"); | ||
| 731 | exit(1); | ||
| 732 | /* NOTREACHED */ | ||
| 733 | } | ||
diff --git a/src/regress/lib/libc/db/run.test b/src/regress/lib/libc/db/run.test new file mode 100644 index 0000000000..0d6837e360 --- /dev/null +++ b/src/regress/lib/libc/db/run.test | |||
| @@ -0,0 +1,707 @@ | |||
| 1 | #!/bin/sh - | ||
| 2 | # | ||
| 3 | # $OpenBSD: run.test,v 1.3 2001/01/29 02:05:41 niklas Exp $ | ||
| 4 | # $NetBSD: run.test,v 1.8 1996/05/03 21:57:51 cgd Exp $ | ||
| 5 | # @(#)run.test 8.10 (Berkeley) 7/26/94 | ||
| 6 | # | ||
| 7 | |||
| 8 | # db regression tests | ||
| 9 | main() | ||
| 10 | { | ||
| 11 | |||
| 12 | PROG=./dbtest | ||
| 13 | TMP1=t1 | ||
| 14 | TMP2=t2 | ||
| 15 | TMP3=t3 | ||
| 16 | |||
| 17 | if [ -f /usr/share/dict/words ]; then | ||
| 18 | DICT=/usr/share/dict/words | ||
| 19 | elif [ -f /usr/dict/words ]; then | ||
| 20 | DICT=/usr/dict/words | ||
| 21 | else | ||
| 22 | echo 'run.test: no dictionary' | ||
| 23 | exit 1 | ||
| 24 | fi | ||
| 25 | |||
| 26 | if [ $# -eq 0 ]; then | ||
| 27 | for t in 1 2 3 4 5 6 7 8 9 10 11 12 13 20; do | ||
| 28 | test$t | ||
| 29 | done | ||
| 30 | else | ||
| 31 | while [ $# -gt 0 ] | ||
| 32 | do case "$1" in | ||
| 33 | test*) | ||
| 34 | $1;; | ||
| 35 | [0-9]*) | ||
| 36 | test$1;; | ||
| 37 | btree) | ||
| 38 | for t in 1 2 3 7 8 9 10 12 13; do | ||
| 39 | test$t | ||
| 40 | done;; | ||
| 41 | hash) | ||
| 42 | for t in 1 2 3 8 13 20; do | ||
| 43 | test$t | ||
| 44 | done;; | ||
| 45 | recno) | ||
| 46 | for t in 1 2 3 4 5 6 7 10 11; do | ||
| 47 | test$t | ||
| 48 | done;; | ||
| 49 | *) | ||
| 50 | echo "run.test: unknown test $1" | ||
| 51 | echo "usage: run.test test# | type" | ||
| 52 | exit 1 | ||
| 53 | esac | ||
| 54 | shift | ||
| 55 | done | ||
| 56 | fi | ||
| 57 | rm -f $TMP1 $TMP2 $TMP3 | ||
| 58 | exit 0 | ||
| 59 | } | ||
| 60 | |||
| 61 | # Take the first hundred entries in the dictionary, and make them | ||
| 62 | # be key/data pairs. | ||
| 63 | test1() | ||
| 64 | { | ||
| 65 | echo "Test 1: btree, hash: small key, small data pairs" | ||
| 66 | sed 200q $DICT > $TMP1 | ||
| 67 | for type in btree hash; do | ||
| 68 | rm -f $TMP2 $TMP3 | ||
| 69 | for i in `sed 200q $DICT`; do | ||
| 70 | echo p | ||
| 71 | echo k$i | ||
| 72 | echo d$i | ||
| 73 | echo g | ||
| 74 | echo k$i | ||
| 75 | done > $TMP2 | ||
| 76 | $PROG -o $TMP3 $type $TMP2 | ||
| 77 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 78 | else | ||
| 79 | echo "test1: type $type: failed" | ||
| 80 | exit 1 | ||
| 81 | fi | ||
| 82 | done | ||
| 83 | echo "Test 1: recno: small key, small data pairs" | ||
| 84 | rm -f $TMP2 $TMP3 | ||
| 85 | sed 200q $DICT | | ||
| 86 | awk '{ | ||
| 87 | ++i; | ||
| 88 | printf("p\nk%d\nd%s\ng\nk%d\n", i, $0, i); | ||
| 89 | }' > $TMP2 | ||
| 90 | $PROG -o $TMP3 recno $TMP2 | ||
| 91 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 92 | else | ||
| 93 | echo "test1: type recno: failed" | ||
| 94 | exit 1 | ||
| 95 | fi | ||
| 96 | } | ||
| 97 | |||
| 98 | # Take the first 200 entries in the dictionary, and give them | ||
| 99 | # each a medium size data entry. | ||
| 100 | test2() | ||
| 101 | { | ||
| 102 | echo "Test 2: btree, hash: small key, medium data pairs" | ||
| 103 | mdata=abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz | ||
| 104 | echo $mdata | | ||
| 105 | awk '{ for (i = 1; i < 201; ++i) print $0 }' > $TMP1 | ||
| 106 | for type in hash btree; do | ||
| 107 | rm -f $TMP2 $TMP3 | ||
| 108 | for i in `sed 200q $DICT`; do | ||
| 109 | echo p | ||
| 110 | echo k$i | ||
| 111 | echo d$mdata | ||
| 112 | echo g | ||
| 113 | echo k$i | ||
| 114 | done > $TMP2 | ||
| 115 | $PROG -o $TMP3 $type $TMP2 | ||
| 116 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 117 | else | ||
| 118 | echo "test2: type $type: failed" | ||
| 119 | exit 1 | ||
| 120 | fi | ||
| 121 | done | ||
| 122 | echo "Test 2: recno: small key, medium data pairs" | ||
| 123 | rm -f $TMP2 $TMP3 | ||
| 124 | echo $mdata | | ||
| 125 | awk '{ for (i = 1; i < 201; ++i) | ||
| 126 | printf("p\nk%d\nd%s\ng\nk%d\n", i, $0, i); | ||
| 127 | }' > $TMP2 | ||
| 128 | $PROG -o $TMP3 recno $TMP2 | ||
| 129 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 130 | else | ||
| 131 | echo "test2: type recno: failed" | ||
| 132 | exit 1 | ||
| 133 | fi | ||
| 134 | } | ||
| 135 | |||
| 136 | # Insert the programs in /bin with their paths as their keys. | ||
| 137 | test3() | ||
| 138 | { | ||
| 139 | echo "Test 3: hash: small key, big data pairs" | ||
| 140 | rm -f $TMP1 | ||
| 141 | (find /bin -type f -print | xargs cat) > $TMP1 | ||
| 142 | for type in hash; do | ||
| 143 | rm -f $TMP2 $TMP3 | ||
| 144 | for i in `find /bin -type f -print`; do | ||
| 145 | echo p | ||
| 146 | echo k$i | ||
| 147 | echo D$i | ||
| 148 | echo g | ||
| 149 | echo k$i | ||
| 150 | done > $TMP2 | ||
| 151 | $PROG -o $TMP3 $type $TMP2 | ||
| 152 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 153 | else | ||
| 154 | echo "test3: $type: failed" | ||
| 155 | exit 1 | ||
| 156 | fi | ||
| 157 | done | ||
| 158 | echo "Test 3: btree: small key, big data pairs" | ||
| 159 | for psize in 512 16384 65536; do | ||
| 160 | echo " page size $psize" | ||
| 161 | for type in btree; do | ||
| 162 | rm -f $TMP2 $TMP3 | ||
| 163 | for i in `find /bin -type f -print`; do | ||
| 164 | echo p | ||
| 165 | echo k$i | ||
| 166 | echo D$i | ||
| 167 | echo g | ||
| 168 | echo k$i | ||
| 169 | done > $TMP2 | ||
| 170 | $PROG -i psize=$psize -o $TMP3 $type $TMP2 | ||
| 171 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 172 | else | ||
| 173 | echo "test3: $type: page size $psize: failed" | ||
| 174 | exit 1 | ||
| 175 | fi | ||
| 176 | done | ||
| 177 | done | ||
| 178 | echo "Test 3: recno: big data pairs" | ||
| 179 | rm -f $TMP2 $TMP3 | ||
| 180 | find /bin -type f -print | | ||
| 181 | awk '{ | ||
| 182 | ++i; | ||
| 183 | printf("p\nk%d\nD%s\ng\nk%d\n", i, $0, i); | ||
| 184 | }' > $TMP2 | ||
| 185 | for psize in 512 16384 65536; do | ||
| 186 | echo " page size $psize" | ||
| 187 | $PROG -i psize=$psize -o $TMP3 recno $TMP2 | ||
| 188 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 189 | else | ||
| 190 | echo "test3: recno: page size $psize: failed" | ||
| 191 | exit 1 | ||
| 192 | fi | ||
| 193 | done | ||
| 194 | } | ||
| 195 | |||
| 196 | # Do random recno entries. | ||
| 197 | test4() | ||
| 198 | { | ||
| 199 | echo "Test 4: recno: random entries" | ||
| 200 | echo "abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg" | | ||
| 201 | awk '{ | ||
| 202 | for (i = 37; i <= 37 + 88 * 17; i += 17) { | ||
| 203 | if (i % 41) | ||
| 204 | s = substr($0, 1, i % 41); | ||
| 205 | else | ||
| 206 | s = substr($0, 1); | ||
| 207 | printf("input key %d: %s\n", i, s); | ||
| 208 | } | ||
| 209 | for (i = 1; i <= 15; ++i) { | ||
| 210 | if (i % 41) | ||
| 211 | s = substr($0, 1, i % 41); | ||
| 212 | else | ||
| 213 | s = substr($0, 1); | ||
| 214 | printf("input key %d: %s\n", i, s); | ||
| 215 | } | ||
| 216 | for (i = 19234; i <= 19234 + 61 * 27; i += 27) { | ||
| 217 | if (i % 41) | ||
| 218 | s = substr($0, 1, i % 41); | ||
| 219 | else | ||
| 220 | s = substr($0, 1); | ||
| 221 | printf("input key %d: %s\n", i, s); | ||
| 222 | } | ||
| 223 | exit | ||
| 224 | }' > $TMP1 | ||
| 225 | rm -f $TMP2 $TMP3 | ||
| 226 | cat $TMP1 | | ||
| 227 | awk 'BEGIN { | ||
| 228 | i = 37; | ||
| 229 | incr = 17; | ||
| 230 | } | ||
| 231 | { | ||
| 232 | printf("p\nk%d\nd%s\n", i, $0); | ||
| 233 | if (i == 19234 + 61 * 27) | ||
| 234 | exit; | ||
| 235 | if (i == 37 + 88 * 17) { | ||
| 236 | i = 1; | ||
| 237 | incr = 1; | ||
| 238 | } else if (i == 15) { | ||
| 239 | i = 19234; | ||
| 240 | incr = 27; | ||
| 241 | } else | ||
| 242 | i += incr; | ||
| 243 | } | ||
| 244 | END { | ||
| 245 | for (i = 37; i <= 37 + 88 * 17; i += 17) | ||
| 246 | printf("g\nk%d\n", i); | ||
| 247 | for (i = 1; i <= 15; ++i) | ||
| 248 | printf("g\nk%d\n", i); | ||
| 249 | for (i = 19234; i <= 19234 + 61 * 27; i += 27) | ||
| 250 | printf("g\nk%d\n", i); | ||
| 251 | }' > $TMP2 | ||
| 252 | $PROG -o $TMP3 recno $TMP2 | ||
| 253 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 254 | else | ||
| 255 | echo "test4: type recno: failed" | ||
| 256 | exit 1 | ||
| 257 | fi | ||
| 258 | } | ||
| 259 | |||
| 260 | # Do reverse order recno entries. | ||
| 261 | test5() | ||
| 262 | { | ||
| 263 | echo "Test 5: recno: reverse order entries" | ||
| 264 | echo "abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg" | | ||
| 265 | awk ' { | ||
| 266 | for (i = 1500; i; --i) { | ||
| 267 | if (i % 34) | ||
| 268 | s = substr($0, 1, i % 34); | ||
| 269 | else | ||
| 270 | s = substr($0, 1); | ||
| 271 | printf("input key %d: %s\n", i, s); | ||
| 272 | } | ||
| 273 | exit; | ||
| 274 | }' > $TMP1 | ||
| 275 | rm -f $TMP2 $TMP3 | ||
| 276 | cat $TMP1 | | ||
| 277 | awk 'BEGIN { | ||
| 278 | i = 1500; | ||
| 279 | } | ||
| 280 | { | ||
| 281 | printf("p\nk%d\nd%s\n", i, $0); | ||
| 282 | --i; | ||
| 283 | } | ||
| 284 | END { | ||
| 285 | for (i = 1500; i; --i) | ||
| 286 | printf("g\nk%d\n", i); | ||
| 287 | }' > $TMP2 | ||
| 288 | $PROG -o $TMP3 recno $TMP2 | ||
| 289 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 290 | else | ||
| 291 | echo "test5: type recno: failed" | ||
| 292 | exit 1 | ||
| 293 | fi | ||
| 294 | } | ||
| 295 | |||
| 296 | # Do alternating order recno entries. | ||
| 297 | test6() | ||
| 298 | { | ||
| 299 | echo "Test 6: recno: alternating order entries" | ||
| 300 | echo "abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg" | | ||
| 301 | awk ' { | ||
| 302 | for (i = 1; i < 1200; i += 2) { | ||
| 303 | if (i % 34) | ||
| 304 | s = substr($0, 1, i % 34); | ||
| 305 | else | ||
| 306 | s = substr($0, 1); | ||
| 307 | printf("input key %d: %s\n", i, s); | ||
| 308 | } | ||
| 309 | for (i = 2; i < 1200; i += 2) { | ||
| 310 | if (i % 34) | ||
| 311 | s = substr($0, 1, i % 34); | ||
| 312 | else | ||
| 313 | s = substr($0, 1); | ||
| 314 | printf("input key %d: %s\n", i, s); | ||
| 315 | } | ||
| 316 | exit; | ||
| 317 | }' > $TMP1 | ||
| 318 | rm -f $TMP2 $TMP3 | ||
| 319 | cat $TMP1 | | ||
| 320 | awk 'BEGIN { | ||
| 321 | i = 1; | ||
| 322 | even = 0; | ||
| 323 | } | ||
| 324 | { | ||
| 325 | printf("p\nk%d\nd%s\n", i, $0); | ||
| 326 | i += 2; | ||
| 327 | if (i >= 1200) { | ||
| 328 | if (even == 1) | ||
| 329 | exit; | ||
| 330 | even = 1; | ||
| 331 | i = 2; | ||
| 332 | } | ||
| 333 | } | ||
| 334 | END { | ||
| 335 | for (i = 1; i < 1200; ++i) | ||
| 336 | printf("g\nk%d\n", i); | ||
| 337 | }' > $TMP2 | ||
| 338 | $PROG -o $TMP3 recno $TMP2 | ||
| 339 | sort -o $TMP1 $TMP1 | ||
| 340 | sort -o $TMP3 $TMP3 | ||
| 341 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 342 | else | ||
| 343 | echo "test6: type recno: failed" | ||
| 344 | exit 1 | ||
| 345 | fi | ||
| 346 | } | ||
| 347 | |||
| 348 | # Delete cursor record | ||
| 349 | test7() | ||
| 350 | { | ||
| 351 | echo "Test 7: btree, recno: delete cursor record" | ||
| 352 | echo "abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg" | | ||
| 353 | awk '{ | ||
| 354 | for (i = 1; i <= 120; ++i) | ||
| 355 | printf("%05d: input key %d: %s\n", i, i, $0); | ||
| 356 | printf("%05d: input key %d: %s\n", 120, 120, $0); | ||
| 357 | printf("seq failed, no such key\n"); | ||
| 358 | printf("%05d: input key %d: %s\n", 1, 1, $0); | ||
| 359 | printf("%05d: input key %d: %s\n", 2, 2, $0); | ||
| 360 | exit; | ||
| 361 | }' > $TMP1 | ||
| 362 | rm -f $TMP2 $TMP3 | ||
| 363 | |||
| 364 | for type in btree recno; do | ||
| 365 | cat $TMP1 | | ||
| 366 | awk '{ | ||
| 367 | if (i == 120) | ||
| 368 | exit; | ||
| 369 | printf("p\nk%d\nd%s\n", ++i, $0); | ||
| 370 | } | ||
| 371 | END { | ||
| 372 | printf("fR_NEXT\n"); | ||
| 373 | for (i = 1; i <= 120; ++i) | ||
| 374 | printf("s\n"); | ||
| 375 | printf("fR_CURSOR\ns\nk120\n"); | ||
| 376 | printf("r\n"); | ||
| 377 | printf("fR_NEXT\ns\n"); | ||
| 378 | printf("fR_CURSOR\ns\nk1\n"); | ||
| 379 | printf("r\n"); | ||
| 380 | printf("fR_FIRST\ns\n"); | ||
| 381 | }' > $TMP2 | ||
| 382 | $PROG -o $TMP3 recno $TMP2 | ||
| 383 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 384 | else | ||
| 385 | echo "test7: type $type: failed" | ||
| 386 | exit 1 | ||
| 387 | fi | ||
| 388 | done | ||
| 389 | } | ||
| 390 | |||
| 391 | # Make sure that overflow pages are reused. | ||
| 392 | test8() | ||
| 393 | { | ||
| 394 | echo "Test 8: btree, hash: repeated small key, big data pairs" | ||
| 395 | rm -f $TMP1 | ||
| 396 | echo "" | | ||
| 397 | awk 'BEGIN { | ||
| 398 | for (i = 1; i <= 10; ++i) { | ||
| 399 | printf("p\nkkey1\nD/bin/sh\n"); | ||
| 400 | printf("p\nkkey2\nD/bin/csh\n"); | ||
| 401 | if (i % 8 == 0) { | ||
| 402 | printf("c\nkkey2\nD/bin/csh\n"); | ||
| 403 | printf("c\nkkey1\nD/bin/sh\n"); | ||
| 404 | printf("e\t%d of 10 (comparison)\n", i); | ||
| 405 | } else | ||
| 406 | printf("e\t%d of 10 \n", i); | ||
| 407 | printf("r\nkkey1\nr\nkkey2\n"); | ||
| 408 | } | ||
| 409 | }' > $TMP1 | ||
| 410 | $PROG btree $TMP1 | ||
| 411 | # $PROG hash $TMP1 | ||
| 412 | # No explicit test for success. | ||
| 413 | } | ||
| 414 | |||
| 415 | # Test btree duplicate keys | ||
| 416 | test9() | ||
| 417 | { | ||
| 418 | echo "Test 9: btree: duplicate keys" | ||
| 419 | echo "abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg" | | ||
| 420 | awk '{ | ||
| 421 | for (i = 1; i <= 543; ++i) | ||
| 422 | printf("%05d: input key %d: %s\n", i, i, $0); | ||
| 423 | exit; | ||
| 424 | }' > $TMP1 | ||
| 425 | rm -f $TMP2 $TMP3 | ||
| 426 | |||
| 427 | for type in btree; do | ||
| 428 | cat $TMP1 | | ||
| 429 | awk '{ | ||
| 430 | if (i++ % 2) | ||
| 431 | printf("p\nkduplicatekey\nd%s\n", $0); | ||
| 432 | else | ||
| 433 | printf("p\nkunique%dkey\nd%s\n", i, $0); | ||
| 434 | } | ||
| 435 | END { | ||
| 436 | printf("o\n"); | ||
| 437 | }' > $TMP2 | ||
| 438 | $PROG -iflags=1 -o $TMP3 $type $TMP2 | ||
| 439 | sort -o $TMP3 $TMP3 | ||
| 440 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 441 | else | ||
| 442 | echo "test9: type $type: failed" | ||
| 443 | exit 1 | ||
| 444 | fi | ||
| 445 | done | ||
| 446 | } | ||
| 447 | |||
| 448 | # Test use of cursor flags without initialization | ||
| 449 | test10() | ||
| 450 | { | ||
| 451 | echo "Test 10: btree, recno: test cursor flag use" | ||
| 452 | echo "abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg" | | ||
| 453 | awk '{ | ||
| 454 | for (i = 1; i <= 20; ++i) | ||
| 455 | printf("%05d: input key %d: %s\n", i, i, $0); | ||
| 456 | exit; | ||
| 457 | }' > $TMP1 | ||
| 458 | rm -f $TMP2 $TMP3 | ||
| 459 | |||
| 460 | # Test that R_CURSOR doesn't succeed before cursor initialized | ||
| 461 | for type in btree recno; do | ||
| 462 | cat $TMP1 | | ||
| 463 | awk '{ | ||
| 464 | if (i == 10) | ||
| 465 | exit; | ||
| 466 | printf("p\nk%d\nd%s\n", ++i, $0); | ||
| 467 | } | ||
| 468 | END { | ||
| 469 | printf("fR_CURSOR\nr\n"); | ||
| 470 | printf("eR_CURSOR SHOULD HAVE FAILED\n"); | ||
| 471 | }' > $TMP2 | ||
| 472 | $PROG -o $TMP3 $type $TMP2 > /dev/null 2>&1 | ||
| 473 | if [ -s $TMP3 ] ; then | ||
| 474 | echo "Test 10: delete: R_CURSOR SHOULD HAVE FAILED" | ||
| 475 | exit 1 | ||
| 476 | fi | ||
| 477 | done | ||
| 478 | for type in btree recno; do | ||
| 479 | cat $TMP1 | | ||
| 480 | awk '{ | ||
| 481 | if (i == 10) | ||
| 482 | exit; | ||
| 483 | printf("p\nk%d\nd%s\n", ++i, $0); | ||
| 484 | } | ||
| 485 | END { | ||
| 486 | printf("fR_CURSOR\np\nk1\ndsome data\n"); | ||
| 487 | printf("eR_CURSOR SHOULD HAVE FAILED\n"); | ||
| 488 | }' > $TMP2 | ||
| 489 | $PROG -o $TMP3 $type $TMP2 > /dev/null 2>&1 | ||
| 490 | if [ -s $TMP3 ] ; then | ||
| 491 | echo "Test 10: put: R_CURSOR SHOULD HAVE FAILED" | ||
| 492 | exit 1 | ||
| 493 | fi | ||
| 494 | done | ||
| 495 | } | ||
| 496 | |||
| 497 | # Test insert in reverse order. | ||
| 498 | test11() | ||
| 499 | { | ||
| 500 | echo "Test 11: recno: reverse order insert" | ||
| 501 | echo "abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg" | | ||
| 502 | awk '{ | ||
| 503 | for (i = 1; i <= 779; ++i) | ||
| 504 | printf("%05d: input key %d: %s\n", i, i, $0); | ||
| 505 | exit; | ||
| 506 | }' > $TMP1 | ||
| 507 | rm -f $TMP2 $TMP3 | ||
| 508 | |||
| 509 | for type in recno; do | ||
| 510 | cat $TMP1 | | ||
| 511 | awk '{ | ||
| 512 | if (i == 0) { | ||
| 513 | i = 1; | ||
| 514 | printf("p\nk1\nd%s\n", $0); | ||
| 515 | printf("%s\n", "fR_IBEFORE"); | ||
| 516 | } else | ||
| 517 | printf("p\nk1\nd%s\n", $0); | ||
| 518 | } | ||
| 519 | END { | ||
| 520 | printf("or\n"); | ||
| 521 | }' > $TMP2 | ||
| 522 | $PROG -o $TMP3 $type $TMP2 | ||
| 523 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 524 | else | ||
| 525 | echo "test11: type $type: failed" | ||
| 526 | exit 1 | ||
| 527 | fi | ||
| 528 | done | ||
| 529 | } | ||
| 530 | |||
| 531 | # Take the first 20000 entries in the dictionary, reverse them, and give | ||
| 532 | # them each a small size data entry. Use a small page size to make sure | ||
| 533 | # the btree split code gets hammered. | ||
| 534 | test12() | ||
| 535 | { | ||
| 536 | echo "Test 12: btree: lots of keys, small page size" | ||
| 537 | mdata=abcdefghijklmnopqrstuvwxy | ||
| 538 | echo $mdata | | ||
| 539 | awk '{ for (i = 1; i < 20001; ++i) print $0 }' > $TMP1 | ||
| 540 | for type in btree; do | ||
| 541 | rm -f $TMP2 $TMP3 | ||
| 542 | for i in `sed 20000q $DICT | rev`; do | ||
| 543 | echo p | ||
| 544 | echo k$i | ||
| 545 | echo d$mdata | ||
| 546 | echo g | ||
| 547 | echo k$i | ||
| 548 | done > $TMP2 | ||
| 549 | $PROG -i psize=512 -o $TMP3 $type $TMP2 | ||
| 550 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 551 | else | ||
| 552 | echo "test12: type $type: failed" | ||
| 553 | exit 1 | ||
| 554 | fi | ||
| 555 | done | ||
| 556 | } | ||
| 557 | |||
| 558 | # Test different byte orders. | ||
| 559 | test13() | ||
| 560 | { | ||
| 561 | echo "Test 13: btree, hash: differing byte orders" | ||
| 562 | sed 50q $DICT > $TMP1 | ||
| 563 | for order in 1234 4321; do | ||
| 564 | for type in btree hash; do | ||
| 565 | rm -f byte.file $TMP2 $TMP3 | ||
| 566 | for i in `sed 50q $DICT`; do | ||
| 567 | echo p | ||
| 568 | echo k$i | ||
| 569 | echo d$i | ||
| 570 | echo g | ||
| 571 | echo k$i | ||
| 572 | done > $TMP2 | ||
| 573 | $PROG -ilorder=$order -f byte.file -o $TMP3 $type $TMP2 | ||
| 574 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 575 | else | ||
| 576 | echo "test13: $type/$order put failed" | ||
| 577 | exit 1 | ||
| 578 | fi | ||
| 579 | for i in `sed 50q $DICT`; do | ||
| 580 | echo g | ||
| 581 | echo k$i | ||
| 582 | done > $TMP2 | ||
| 583 | $PROG -s \ | ||
| 584 | -ilorder=$order -f byte.file -o $TMP3 $type $TMP2 | ||
| 585 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 586 | else | ||
| 587 | echo "test13: $type/$order get failed" | ||
| 588 | exit 1 | ||
| 589 | fi | ||
| 590 | done | ||
| 591 | done | ||
| 592 | rm -f byte.file | ||
| 593 | } | ||
| 594 | |||
| 595 | # Try a variety of bucketsizes and fill factors for hashing | ||
| 596 | test20() | ||
| 597 | { | ||
| 598 | echo\ | ||
| 599 | "Test 20: hash: bucketsize, fill factor; nelem 25000 cachesize 65536" | ||
| 600 | echo "abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg" | | ||
| 601 | awk '{ | ||
| 602 | for (i = 1; i <= 10000; ++i) { | ||
| 603 | if (i % 34) | ||
| 604 | s = substr($0, 1, i % 34); | ||
| 605 | else | ||
| 606 | s = substr($0, 1); | ||
| 607 | printf("%s\n", s); | ||
| 608 | } | ||
| 609 | exit; | ||
| 610 | }' > $TMP1 | ||
| 611 | sed 10000q $DICT | | ||
| 612 | awk 'BEGIN { | ||
| 613 | ds="abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg abcdefg" | ||
| 614 | } | ||
| 615 | { | ||
| 616 | if (++i % 34) | ||
| 617 | s = substr(ds, 1, i % 34); | ||
| 618 | else | ||
| 619 | s = substr(ds, 1); | ||
| 620 | printf("p\nk%s\nd%s\n", $0, s); | ||
| 621 | }' > $TMP2 | ||
| 622 | sed 10000q $DICT | | ||
| 623 | awk '{ | ||
| 624 | ++i; | ||
| 625 | printf("g\nk%s\n", $0); | ||
| 626 | }' >> $TMP2 | ||
| 627 | bsize=256 | ||
| 628 | for ffactor in 11 14 21; do | ||
| 629 | echo " bucketsize $bsize, fill factor $ffactor" | ||
| 630 | $PROG -o$TMP3 \ | ||
| 631 | -ibsize=$bsize,ffactor=$ffactor,nelem=25000,cachesize=65536\ | ||
| 632 | hash $TMP2 | ||
| 633 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 634 | else | ||
| 635 | echo "test20: type hash:\ | ||
| 636 | bsize=$bsize ffactor=$ffactor nelem=25000 cachesize=65536 failed" | ||
| 637 | exit 1 | ||
| 638 | fi | ||
| 639 | done | ||
| 640 | bsize=512 | ||
| 641 | for ffactor in 21 28 43; do | ||
| 642 | echo " bucketsize $bsize, fill factor $ffactor" | ||
| 643 | $PROG -o$TMP3 \ | ||
| 644 | -ibsize=$bsize,ffactor=$ffactor,nelem=25000,cachesize=65536\ | ||
| 645 | hash $TMP2 | ||
| 646 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 647 | else | ||
| 648 | echo "test20: type hash:\ | ||
| 649 | bsize=$bsize ffactor=$ffactor nelem=25000 cachesize=65536 failed" | ||
| 650 | exit 1 | ||
| 651 | fi | ||
| 652 | done | ||
| 653 | bsize=1024 | ||
| 654 | for ffactor in 43 57 85; do | ||
| 655 | echo " bucketsize $bsize, fill factor $ffactor" | ||
| 656 | $PROG -o$TMP3 \ | ||
| 657 | -ibsize=$bsize,ffactor=$ffactor,nelem=25000,cachesize=65536\ | ||
| 658 | hash $TMP2 | ||
| 659 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 660 | else | ||
| 661 | echo "test20: type hash:\ | ||
| 662 | bsize=$bsize ffactor=$ffactor nelem=25000 cachesize=65536 failed" | ||
| 663 | exit 1 | ||
| 664 | fi | ||
| 665 | done | ||
| 666 | bsize=2048 | ||
| 667 | for ffactor in 85 114 171; do | ||
| 668 | echo " bucketsize $bsize, fill factor $ffactor" | ||
| 669 | $PROG -o$TMP3 \ | ||
| 670 | -ibsize=$bsize,ffactor=$ffactor,nelem=25000,cachesize=65536\ | ||
| 671 | hash $TMP2 | ||
| 672 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 673 | else | ||
| 674 | echo "test20: type hash:\ | ||
| 675 | bsize=$bsize ffactor=$ffactor nelem=25000 cachesize=65536 failed" | ||
| 676 | exit 1 | ||
| 677 | fi | ||
| 678 | done | ||
| 679 | bsize=4096 | ||
| 680 | for ffactor in 171 228 341; do | ||
| 681 | echo " bucketsize $bsize, fill factor $ffactor" | ||
| 682 | $PROG -o$TMP3 \ | ||
| 683 | -ibsize=$bsize,ffactor=$ffactor,nelem=25000,cachesize=65536\ | ||
| 684 | hash $TMP2 | ||
| 685 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 686 | else | ||
| 687 | echo "test20: type hash:\ | ||
| 688 | bsize=$bsize ffactor=$ffactor nelem=25000 cachesize=65536 failed" | ||
| 689 | exit 1 | ||
| 690 | fi | ||
| 691 | done | ||
| 692 | bsize=8192 | ||
| 693 | for ffactor in 341 455 683; do | ||
| 694 | echo " bucketsize $bsize, fill factor $ffactor" | ||
| 695 | $PROG -o$TMP3 \ | ||
| 696 | -ibsize=$bsize,ffactor=$ffactor,nelem=25000,cachesize=65536\ | ||
| 697 | hash $TMP2 | ||
| 698 | if (cmp -s $TMP1 $TMP3) ; then : | ||
| 699 | else | ||
| 700 | echo "test20: type hash:\ | ||
| 701 | bsize=$bsize ffactor=$ffactor nelem=25000 cachesize=65536 failed" | ||
| 702 | exit 1 | ||
| 703 | fi | ||
| 704 | done | ||
| 705 | } | ||
| 706 | |||
| 707 | main $* | ||
diff --git a/src/regress/lib/libc/dirname/Makefile b/src/regress/lib/libc/dirname/Makefile new file mode 100644 index 0000000000..fc152df954 --- /dev/null +++ b/src/regress/lib/libc/dirname/Makefile | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | PROG=dirname_test | ||
| 2 | |||
| 3 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/dirname/dirname_test.c b/src/regress/lib/libc/dirname/dirname_test.c new file mode 100644 index 0000000000..add76980cf --- /dev/null +++ b/src/regress/lib/libc/dirname/dirname_test.c | |||
| @@ -0,0 +1,82 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2007 Bret S. Lambert <blambert@gsipt.net> | ||
| 3 | * | ||
| 4 | * Public domain. | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <sys/param.h> | ||
| 8 | |||
| 9 | #include <libgen.h> | ||
| 10 | #include <stdio.h> | ||
| 11 | #include <string.h> | ||
| 12 | #include <limits.h> | ||
| 13 | #include <errno.h> | ||
| 14 | |||
| 15 | int | ||
| 16 | main(void) | ||
| 17 | { | ||
| 18 | char path[2 * MAXPATHLEN]; | ||
| 19 | char dname[128]; | ||
| 20 | const char *dir = "junk"; | ||
| 21 | const char *fname = "/file.name.ext"; | ||
| 22 | char *str; | ||
| 23 | int i; | ||
| 24 | |||
| 25 | /* Test normal functioning */ | ||
| 26 | strlcpy(path, "/", sizeof(path)); | ||
| 27 | strlcpy(dname, "/", sizeof(dname)); | ||
| 28 | strlcat(path, dir, sizeof(path)); | ||
| 29 | strlcat(dname, dir, sizeof(dname)); | ||
| 30 | strlcat(path, fname, sizeof(path)); | ||
| 31 | str = dirname(path); | ||
| 32 | if (strcmp(str, dname) != 0) | ||
| 33 | errx(1, "0: dirname(%s) = %s != %s", path, str, dname); | ||
| 34 | |||
| 35 | /* | ||
| 36 | * There are four states that require special handling: | ||
| 37 | * | ||
| 38 | * 1) path is NULL | ||
| 39 | * 2) path is the empty string | ||
| 40 | * 3) path is composed entirely of slashes | ||
| 41 | * 4) the resulting name is larger than MAXPATHLEN | ||
| 42 | * | ||
| 43 | * The first two cases require that a pointer | ||
| 44 | * to the string "." be returned. | ||
| 45 | * | ||
| 46 | * The third case requires that a pointer | ||
| 47 | * to the string "/" be returned. | ||
| 48 | * | ||
| 49 | * The final case requires that NULL be returned | ||
| 50 | * and errno * be set to ENAMETOOLONG. | ||
| 51 | */ | ||
| 52 | /* Case 1 */ | ||
| 53 | str = dirname(NULL); | ||
| 54 | if (strcmp(str, ".") != 0) | ||
| 55 | errx(1, "1: dirname(NULL) = %s != .", str); | ||
| 56 | |||
| 57 | /* Case 2 */ | ||
| 58 | strlcpy(path, "", sizeof(path)); | ||
| 59 | str = dirname(path); | ||
| 60 | if (strcmp(str, ".") != 0) | ||
| 61 | errx(1, "2: dirname(%s) = %s != .", path, str); | ||
| 62 | |||
| 63 | /* Case 3 */ | ||
| 64 | for (i = 0; i < MAXPATHLEN - 1; i++) | ||
| 65 | strlcat(path, "/", sizeof(path)); /* path cleared above */ | ||
| 66 | str = dirname(path); | ||
| 67 | if (strcmp(str, "/") != 0) | ||
| 68 | errx(1, "3: dirname(%s) = %s != /", path, str); | ||
| 69 | |||
| 70 | /* Case 4 */ | ||
| 71 | strlcpy(path, "/", sizeof(path)); /* reset path */ | ||
| 72 | for (i = 0; i <= MAXPATHLEN; i += strlen(dir)) | ||
| 73 | strlcat(path, dir, sizeof(path)); | ||
| 74 | strlcat(path, fname, sizeof(path)); | ||
| 75 | str = dirname(path); | ||
| 76 | if (str != NULL) | ||
| 77 | errx(1, "4: dirname(%s) = %s != NULL", path, str); | ||
| 78 | if (errno != ENAMETOOLONG) | ||
| 79 | errx(1, "4: dirname(%s) sets errno to %d", path, errno); | ||
| 80 | |||
| 81 | return (0); | ||
| 82 | } | ||
diff --git a/src/regress/lib/libc/env/Makefile b/src/regress/lib/libc/env/Makefile new file mode 100644 index 0000000000..92e04369f4 --- /dev/null +++ b/src/regress/lib/libc/env/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2010/08/23 22:34:37 millert Exp $ | ||
| 2 | |||
| 3 | PROG= envtest | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/env/envtest.c b/src/regress/lib/libc/env/envtest.c new file mode 100644 index 0000000000..33fc463404 --- /dev/null +++ b/src/regress/lib/libc/env/envtest.c | |||
| @@ -0,0 +1,125 @@ | |||
| 1 | /* $OpenBSD: envtest.c,v 1.1 2010/08/23 22:34:37 millert Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | #include <sys/types.h> | ||
| 20 | |||
| 21 | #include <stdio.h> | ||
| 22 | #include <stdlib.h> | ||
| 23 | #include <string.h> | ||
| 24 | #include <unistd.h> | ||
| 25 | |||
| 26 | extern char **environ; | ||
| 27 | |||
| 28 | static int | ||
| 29 | count_instances(const char *name) | ||
| 30 | { | ||
| 31 | int count = 0; | ||
| 32 | size_t namelen; | ||
| 33 | char **ep; | ||
| 34 | |||
| 35 | namelen = strlen(name); | ||
| 36 | for (ep = environ; *ep != NULL; ep++) { | ||
| 37 | if (strncmp(name, *ep, namelen) == 0 && (*ep)[namelen] == '=') | ||
| 38 | count++; | ||
| 39 | } | ||
| 40 | |||
| 41 | return count; | ||
| 42 | } | ||
| 43 | |||
| 44 | static void | ||
| 45 | fake_env(void) | ||
| 46 | { | ||
| 47 | static char *fakenv[7]; | ||
| 48 | |||
| 49 | fakenv[0] = "HOME=/root"; | ||
| 50 | fakenv[1] = "USER=root"; | ||
| 51 | fakenv[2] = "LOGNAME=root"; | ||
| 52 | fakenv[3] = "SHELL=/bin/sh"; | ||
| 53 | fakenv[4] = "USER=root"; | ||
| 54 | fakenv[5] = NULL; | ||
| 55 | |||
| 56 | environ = fakenv; | ||
| 57 | } | ||
| 58 | |||
| 59 | int | ||
| 60 | main(int argc, char *argv[]) | ||
| 61 | { | ||
| 62 | char *buf; | ||
| 63 | int n, failures = 0; | ||
| 64 | size_t len, bufsize; | ||
| 65 | |||
| 66 | /* Enable malloc security options. */ | ||
| 67 | setenv("MALLOC_OPTIONS", "S", 0); | ||
| 68 | |||
| 69 | fake_env(); | ||
| 70 | n = count_instances("USER"); | ||
| 71 | if (n != 2) { | ||
| 72 | fprintf(stderr, "initial: %d instances of USER, expected %d\n", | ||
| 73 | n, 2); | ||
| 74 | failures++; | ||
| 75 | } | ||
| 76 | |||
| 77 | if (unsetenv("USER") != 0) { | ||
| 78 | fprintf(stderr, "unsetenv: failed to remove USER\n"); | ||
| 79 | failures++; | ||
| 80 | } | ||
| 81 | n = count_instances("USER"); | ||
| 82 | if (n != 0) { | ||
| 83 | fprintf(stderr, "unsetenv: %d instances of USER, expected %d\n", | ||
| 84 | n, 0); | ||
| 85 | failures++; | ||
| 86 | } | ||
| 87 | |||
| 88 | fake_env(); | ||
| 89 | if (setenv("USER", "nobody", 0) != 0) { | ||
| 90 | fprintf(stderr, "setenv: failed to set USER\n"); | ||
| 91 | failures++; | ||
| 92 | } | ||
| 93 | n = count_instances("USER"); | ||
| 94 | if (n != 2) { | ||
| 95 | fprintf(stderr, "setenv: %d instances of USER, expected %d\n", | ||
| 96 | n, 2); | ||
| 97 | failures++; | ||
| 98 | } | ||
| 99 | |||
| 100 | fake_env(); | ||
| 101 | if (setenv("USER", "nobody", 1) != 0) { | ||
| 102 | fprintf(stderr, "setenv: failed to set USER\n"); | ||
| 103 | failures++; | ||
| 104 | } | ||
| 105 | n = count_instances("USER"); | ||
| 106 | if (n != 1) { | ||
| 107 | fprintf(stderr, "setenv: %d instances of USER, expected %d\n", | ||
| 108 | n, 1); | ||
| 109 | failures++; | ||
| 110 | } | ||
| 111 | |||
| 112 | fake_env(); | ||
| 113 | if (putenv("USER=nobody") != 0) { | ||
| 114 | fprintf(stderr, "putenv: failed to set USER\n"); | ||
| 115 | failures++; | ||
| 116 | } | ||
| 117 | n = count_instances("USER"); | ||
| 118 | if (n != 1) { | ||
| 119 | fprintf(stderr, "putenv: %d instances of USER, expected %d\n", | ||
| 120 | n, 1); | ||
| 121 | failures++; | ||
| 122 | } | ||
| 123 | |||
| 124 | return failures; | ||
| 125 | } | ||
diff --git a/src/regress/lib/libc/fnmatch/Makefile b/src/regress/lib/libc/fnmatch/Makefile new file mode 100644 index 0000000000..4acdd351bc --- /dev/null +++ b/src/regress/lib/libc/fnmatch/Makefile | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2011/09/17 15:12:38 stsp Exp $ | ||
| 2 | |||
| 3 | PROG= fnm_test | ||
| 4 | LDADD+= -lutil | ||
| 5 | DPADD+= ${LIBUTIL} | ||
| 6 | |||
| 7 | run-regress-${PROG}: | ||
| 8 | ./${PROG} ${.CURDIR}/${PROG}.in | ||
| 9 | |||
| 10 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/fnmatch/fnm_test.c b/src/regress/lib/libc/fnmatch/fnm_test.c new file mode 100644 index 0000000000..f5958837e2 --- /dev/null +++ b/src/regress/lib/libc/fnmatch/fnm_test.c | |||
| @@ -0,0 +1,62 @@ | |||
| 1 | /* $OpenBSD: fnm_test.c,v 1.2 2011/09/17 15:12:38 stsp Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Public domain, 2008, Todd C. Miller <Todd.Miller@courtesan.com> | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <err.h> | ||
| 8 | #include <fnmatch.h> | ||
| 9 | #include <stdio.h> | ||
| 10 | #include <stdlib.h> | ||
| 11 | #include <util.h> | ||
| 12 | |||
| 13 | int | ||
| 14 | main(int argc, char **argv) | ||
| 15 | { | ||
| 16 | FILE *fp = stdin; | ||
| 17 | char pattern[1024], string[1024]; | ||
| 18 | char *line; | ||
| 19 | const char delim[3] = {'\0', '\0', '#'}; | ||
| 20 | int errors = 0, flags, got, want; | ||
| 21 | |||
| 22 | if (argc > 1) { | ||
| 23 | if ((fp = fopen(argv[1], "r")) == NULL) | ||
| 24 | err(1, "%s", argv[1]); | ||
| 25 | } | ||
| 26 | |||
| 27 | /* | ||
| 28 | * Read in test file, which is formatted thusly: | ||
| 29 | * | ||
| 30 | * pattern string flags expected_result | ||
| 31 | * | ||
| 32 | * lines starting with '#' are comments | ||
| 33 | */ | ||
| 34 | for (;;) { | ||
| 35 | line = fparseln(fp, NULL, NULL, delim, 0); | ||
| 36 | if (!line) | ||
| 37 | break; | ||
| 38 | got = sscanf(line, "%s %s 0x%x %d", pattern, string, &flags, | ||
| 39 | &want); | ||
| 40 | if (got == EOF) { | ||
| 41 | free(line); | ||
| 42 | break; | ||
| 43 | } | ||
| 44 | if (pattern[0] == '#') { | ||
| 45 | free(line); | ||
| 46 | continue; | ||
| 47 | } | ||
| 48 | if (got == 4) { | ||
| 49 | got = fnmatch(pattern, string, flags); | ||
| 50 | if (got != want) { | ||
| 51 | warnx("%s %s %d: want %d, got %d", pattern, | ||
| 52 | string, flags, want, got); | ||
| 53 | errors++; | ||
| 54 | } | ||
| 55 | } else { | ||
| 56 | warnx("unrecognized line '%s'\n", line); | ||
| 57 | errors++; | ||
| 58 | } | ||
| 59 | free(line); | ||
| 60 | } | ||
| 61 | exit(errors); | ||
| 62 | } | ||
diff --git a/src/regress/lib/libc/fnmatch/fnm_test.in b/src/regress/lib/libc/fnmatch/fnm_test.in new file mode 100644 index 0000000000..c20077966d --- /dev/null +++ b/src/regress/lib/libc/fnmatch/fnm_test.in | |||
| @@ -0,0 +1,259 @@ | |||
| 1 | /bin/[[:alpha:][:alnum:]]* /bin/ls 0x2 0 | ||
| 2 | /bin/[[:upper:]][[:alnum:]] /bin/ls 0x10 0 | ||
| 3 | /bin/[[:opper:][:alnum:]]* /bin/ls 0x0 1 | ||
| 4 | [[:alpha:][:alnum:]]*.c foo1.c 0x4 0 | ||
| 5 | [[:upper:]]* FOO 0x0 0 | ||
| 6 | # 'te\st' 'test'; no match if FNM_NOESCAPE | ||
| 7 | te\st test 0x0 0 | ||
| 8 | te\st test 0x1 1 | ||
| 9 | te\st test 0x1e 0 | ||
| 10 | # 'te\\st' 'te\st'; no match if FNM_NOESCAPE | ||
| 11 | te\\st te\st 0x0 0 | ||
| 12 | te\\st te\st 0x1 1 | ||
| 13 | te\\st te\st 0x1e 0 | ||
| 14 | # 'te\*t' 'te*t'; no match if FNM_NOESCAPE | ||
| 15 | te\*t te*t 0x0 0 | ||
| 16 | te\*t te*t 0x1 1 | ||
| 17 | te\*t te*t 0x1e 0 | ||
| 18 | # 'te\*t' 'test'; no match | ||
| 19 | te\*t test 0x0 1 | ||
| 20 | te\*t test 0x1f 1 | ||
| 21 | # 'te\?t' 'te?t'; no match if FNM_NOESCAPE | ||
| 22 | te\?t te?t 0x0 0 | ||
| 23 | te\?t te?t 0x1 1 | ||
| 24 | te\?t te?t 0x1e 0 | ||
| 25 | # 'te\?t' 'test'; no match | ||
| 26 | te\?t test 0x0 1 | ||
| 27 | te\?t test 0x1f 1 | ||
| 28 | # 'tesT' 'test'; match if FNM_CASEFOLD | ||
| 29 | tesT test 0x0 1 | ||
| 30 | tesT test 0xf 1 | ||
| 31 | tesT test 0x10 0 | ||
| 32 | # 'test' 'Test'; match if FNM_CASEFOLD | ||
| 33 | test Test 0x0 1 | ||
| 34 | test Test 0xf 1 | ||
| 35 | test Test 0x10 0 | ||
| 36 | # 'tEst' 'teSt'; match if FNM_CASEFOLD | ||
| 37 | tEst teSt 0x0 1 | ||
| 38 | tEst teSt 0xf 1 | ||
| 39 | tEst teSt 0x10 0 | ||
| 40 | # '?est' 'test'; match always | ||
| 41 | ?est test 0x0 0 | ||
| 42 | ?est test 0x1f 0 | ||
| 43 | # 'te?t' 'test'; match always | ||
| 44 | te?t test 0x0 0 | ||
| 45 | te?t test 0x1f 0 | ||
| 46 | # 'tes?' 'test'; match always | ||
| 47 | tes? test 0x0 0 | ||
| 48 | tes? test 0x1f 0 | ||
| 49 | # 'test?' 'test'; no match | ||
| 50 | test? test 0x0 1 | ||
| 51 | test? test 0x1f 1 | ||
| 52 | # '*' always matches anything | ||
| 53 | * test 0x0 0 | ||
| 54 | * test 0x1f 0 | ||
| 55 | # '*test' 'test'; match always | ||
| 56 | *test test 0x0 0 | ||
| 57 | *test test 0x1f 0 | ||
| 58 | # '*est' 'test'; match always | ||
| 59 | *est test 0x0 0 | ||
| 60 | *est test 0x1f 0 | ||
| 61 | # '*st' 'test'; match always | ||
| 62 | *st test 0x0 0 | ||
| 63 | *st test 0x1f 0 | ||
| 64 | # 't*t' 'test'; match always | ||
| 65 | t*t test 0x0 0 | ||
| 66 | t*t test 0x1f 0 | ||
| 67 | # 'te*t' 'test'; match always | ||
| 68 | te*t test 0x0 0 | ||
| 69 | te*t test 0x1f 0 | ||
| 70 | # 'te*st' 'test'; match always | ||
| 71 | te*st test 0x0 0 | ||
| 72 | te*st test 0x1f 0 | ||
| 73 | # 'te*' 'test'; match always | ||
| 74 | te* test 0x0 0 | ||
| 75 | te* test 0x1f 0 | ||
| 76 | # 'tes*' 'test'; match always | ||
| 77 | tes* test 0x0 0 | ||
| 78 | tes* test 0x1f 0 | ||
| 79 | # 'test*' 'test'; match always | ||
| 80 | test* test 0x0 0 | ||
| 81 | test* test 0x1f 0 | ||
| 82 | # '.[\-\t]' '.t'; match always | ||
| 83 | .[\-\t] .t 0x0 0 | ||
| 84 | .[\-\t] .t 0x1f 0 | ||
| 85 | # 'test*?*[a-z]*' 'testgoop'; match always | ||
| 86 | test*?*[a-z]* testgoop 0x0 0 | ||
| 87 | test*?*[a-z]* testgoop 0x1f 0 | ||
| 88 | # 'te[^abc]t' 'test'; match always | ||
| 89 | te[^abc]t test 0x0 0 | ||
| 90 | te[^abc]t test 0x1f 0 | ||
| 91 | # 'te[^x]t' 'test'; match always | ||
| 92 | te[^x]t test 0x0 0 | ||
| 93 | te[^x]t test 0x1f 0 | ||
| 94 | # 'te[!x]t' 'test'; match always | ||
| 95 | te[!x]t test 0x0 0 | ||
| 96 | te[^x]t test 0x1f 0 | ||
| 97 | # 'te[^x]t' 'text'; no match | ||
| 98 | te[^x]t text 0x0 1 | ||
| 99 | te[^x]t text 0x1f 1 | ||
| 100 | # 'te[^\x]t' 'text'; no match | ||
| 101 | te[^\x]t text 0x0 1 | ||
| 102 | te[^\x]t text 0x1f 1 | ||
| 103 | # 'te[^\x' 'text'; no match | ||
| 104 | te[^\x text 0x0 1 | ||
| 105 | te[^\x text 0x1f 1 | ||
| 106 | # 'te[/]t' 'text'; no match | ||
| 107 | te[/]t text 0x0 1 | ||
| 108 | te[/]t text 0x1f 1 | ||
| 109 | # 'te[S]t' 'test'; match if FNM_CASEFOLD | ||
| 110 | te[S]t test 0x0 1 | ||
| 111 | te[S]t test 0xf 1 | ||
| 112 | te[S]t test 0x10 0 | ||
| 113 | # 'te[r-t]t' 'test'; match always | ||
| 114 | te[r-t]t test 0x0 0 | ||
| 115 | te[r-t]t test 0x1f 0 | ||
| 116 | # 'te[r-t]t' 'teSt'; match if FNM_CASEFOLD | ||
| 117 | te[r-t]t teSt 0x0 1 | ||
| 118 | te[r-t]t teSt 0xf 1 | ||
| 119 | te[r-t]t teSt 0x10 0 | ||
| 120 | # 'te[r-T]t' 'test'; match if FNM_CASEFOLD | ||
| 121 | te[r-T]t test 0x0 1 | ||
| 122 | te[r-T]t test 0xf 1 | ||
| 123 | te[r-T]t test 0x10 0 | ||
| 124 | # 'te[R-T]t' 'test'; match if FNM_CASEFOLD | ||
| 125 | te[R-T]t test 0x0 1 | ||
| 126 | te[R-T]t test 0xf 1 | ||
| 127 | te[R-T]t test 0x10 0 | ||
| 128 | # 'te[r-Tz]t' 'tezt'; match always | ||
| 129 | te[r-Tz]t tezt 0x0 0 | ||
| 130 | te[r-Tz]t tezt 0x1f 0 | ||
| 131 | # 'te[R-T]t' 'tent'; no match | ||
| 132 | te[R-T]t tent 0x0 1 | ||
| 133 | te[R-T]t tent 0x1f 1 | ||
| 134 | # 'tes[]t]' 'test'; match always | ||
| 135 | tes[]t] test 0x0 0 | ||
| 136 | tes[]t] test 0x1f 0 | ||
| 137 | # 'tes[t-]' 'test'; match always | ||
| 138 | tes[t-] test 0x0 0 | ||
| 139 | tes[t-] test 0x1f 0 | ||
| 140 | # 'tes[t-]]' 'test]'; match always | ||
| 141 | tes[t-]] test] 0x0 0 | ||
| 142 | tes[t-]] test] 0x1f 0 | ||
| 143 | # 'tes[t-]]' 'test'; no match | ||
| 144 | tes[t-]] test 0x0 1 | ||
| 145 | tes[t-]] test 0x1f 1 | ||
| 146 | # 'tes[u-]' 'test'; no match | ||
| 147 | tes[u-] test 0x0 1 | ||
| 148 | tes[u-] test 0x1f 1 | ||
| 149 | # 'tes[t-]' 'tes[t-]'; no match | ||
| 150 | tes[t-] test[t-] 0x0 1 | ||
| 151 | tes[t-] test[t-] 0x1f 1 | ||
| 152 | # 'test[/-/]' 'test[/-/]'; no match | ||
| 153 | test[/-/] test/-/ 0x0 1 | ||
| 154 | test[/-/] test/-/ 0x1f 1 | ||
| 155 | # 'test[\/-/]' 'test[/-/]'; no match | ||
| 156 | test[\/-/] test/-/ 0x0 1 | ||
| 157 | test[\/-/] test/-/ 0x1f 1 | ||
| 158 | # 'test[/-\/]' 'test[/-/]'; no match | ||
| 159 | test[/-\/] test/-/ 0x0 1 | ||
| 160 | test[/-\/] test/-/ 0x1f 1 | ||
| 161 | # 'test[/-/]' 'test/'; no match if APR_FNM_PATHNAME | ||
| 162 | test[/-/] test/ 0x0 0 | ||
| 163 | test[/-/] test/ 0x2 1 | ||
| 164 | test[/-/] test/ 0x1d 0 | ||
| 165 | # 'test[\/-/]' 'test/'; no match if APR_FNM_PATHNAME | ||
| 166 | test[\/-/] test/ 0x0 0 | ||
| 167 | test[\/-/] test/ 0x2 1 | ||
| 168 | test[\/-/] test/ 0x1d 0 | ||
| 169 | # 'test[/-\/]' 'test/'; no match if APR_FNM_PATHNAME | ||
| 170 | test[/-\/] test/ 0x0 0 | ||
| 171 | test[/-\/] test/ 0x2 1 | ||
| 172 | test[/-\/] test/ 0x1d 0 | ||
| 173 | # '/test' 'test'; no match | ||
| 174 | /test test 0x0 1 | ||
| 175 | /test test 0x1f 1 | ||
| 176 | # 'test' '/test'; no match | ||
| 177 | test /test 0x0 1 | ||
| 178 | test /test 0x1f 1 | ||
| 179 | # 'test/' 'test'; no match | ||
| 180 | test/ test 0x0 1 | ||
| 181 | test/ test 0x1f 1 | ||
| 182 | # 'test' 'test/'; match if FNM_LEADING_DIR | ||
| 183 | test test/ 0x0 1 | ||
| 184 | test test/ 0x17 1 | ||
| 185 | test test/ 0x8 0 | ||
| 186 | # '\/test' '/test'; match unless FNM_NOESCAPE | ||
| 187 | \/test /test 0x0 0 | ||
| 188 | \/test /test 0x1 1 | ||
| 189 | \/test /test 0x1e 0 | ||
| 190 | # '*test' '/test'; match unless FNM_PATHNAME | ||
| 191 | *test /test 0x0 0 | ||
| 192 | *test /test 0x2 1 | ||
| 193 | *test /test 0x1d 0 | ||
| 194 | # '/*/test' '/test'; no match | ||
| 195 | /*/test /test 0x0 1 | ||
| 196 | /*/test /test 0x1f 1 | ||
| 197 | # '/*/test' '/test/test'; match always | ||
| 198 | /*/test /test/test 0x0 0 | ||
| 199 | /*/test /test/test 0x1f 0 | ||
| 200 | # 'test/this' 'test/'; match never | ||
| 201 | test/this test/ 0x0 1 | ||
| 202 | test/this test/ 0x1f 1 | ||
| 203 | # 'test/' 'test/this'; match never | ||
| 204 | test/ test/this 0x0 1 | ||
| 205 | test/ test/this 0x1f 1 | ||
| 206 | # 'test*/this' 'test/this'; match always | ||
| 207 | test*/this test/this 0x0 0 | ||
| 208 | test*/this test/this 0x1f 0 | ||
| 209 | # 'test*/this' 'test/that'; match never | ||
| 210 | test*/this test/that 0x0 1 | ||
| 211 | test*/this test/that 0x1f 1 | ||
| 212 | # 'test/*this' 'test/this'; match always | ||
| 213 | test/*this test/this 0x0 0 | ||
| 214 | test/*this test/this 0x1f 0 | ||
| 215 | # '.*' '.this'; match always | ||
| 216 | .* .this 0x0 0 | ||
| 217 | .* .this 0x1f 0 | ||
| 218 | # '*' '.this'; fails if FNM_PERIOD | ||
| 219 | * .this 0x0 0 | ||
| 220 | * .this 0x4 1 | ||
| 221 | * .this 0x1b 0 | ||
| 222 | # '?this' '.this'; fails if FNM_PERIOD | ||
| 223 | ?this .this 0x0 0 | ||
| 224 | ?this .this 0x4 1 | ||
| 225 | ?this .this 0x1b 0 | ||
| 226 | # '[.]this' '.this'; fails if FNM_PERIOD | ||
| 227 | [.]this .this 0x0 0 | ||
| 228 | [.]this .this 0x4 1 | ||
| 229 | [.]this .this 0x1b 0 | ||
| 230 | # 'test/this' 'test/this'; match always | ||
| 231 | test/this test/this 0x0 0 | ||
| 232 | test/this test/this 0x1f 0 | ||
| 233 | # 'test?this' 'test/this'; fails if FNM_PATHNAME | ||
| 234 | test?this test/this 0x0 0 | ||
| 235 | test?this test/this 0x2 1 | ||
| 236 | test?this test/this 0x1d 0 | ||
| 237 | # 'test*this' 'test/this'; fails if FNM_PATHNAME | ||
| 238 | test*this test/this 0x0 0 | ||
| 239 | test*this test/this 0x2 1 | ||
| 240 | test*this test/this 0x1d 0 | ||
| 241 | # 'test[/]this' 'test/this'; fails if FNM_PATHNAME | ||
| 242 | test[/]this test/this 0x0 0 | ||
| 243 | test[/]this test/this 0x2 1 | ||
| 244 | test[/]this test/this 0x1d 0 | ||
| 245 | # 'test/.*' 'test/.this'; match always | ||
| 246 | test/.* test/.this 0x0 0 | ||
| 247 | test/.* test/.this 0x1f 0 | ||
| 248 | # 'test/*' 'test/.this'; fails if FNM_PERIOD and FNM_PATHNAME | ||
| 249 | test/* test/.this 0x0 0 | ||
| 250 | test/* test/.this 0x6 1 | ||
| 251 | test/* test/.this 0x19 0 | ||
| 252 | # 'test/?' 'test/.this'; fails if FNM_PERIOD and FNM_PATHNAME | ||
| 253 | test/?this test/.this 0x0 0 | ||
| 254 | test/?this test/.this 0x6 1 | ||
| 255 | test/?this test/.this 0x19 0 | ||
| 256 | # 'test/[.]this' 'test/.this'; fails if FNM_PERIOD and FNM_PATHNAME | ||
| 257 | test/[.]this test/.this 0x0 0 | ||
| 258 | test/[.]this test/.this 0x6 1 | ||
| 259 | test/[.]this test/.this 0x19 0 | ||
diff --git a/src/regress/lib/libc/fpclassify/Makefile b/src/regress/lib/libc/fpclassify/Makefile new file mode 100644 index 0000000000..96916d20e7 --- /dev/null +++ b/src/regress/lib/libc/fpclassify/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2008/09/07 20:36:10 martynas Exp $ | ||
| 2 | |||
| 3 | PROG= fpclassify | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/fpclassify/fpclassify.c b/src/regress/lib/libc/fpclassify/fpclassify.c new file mode 100644 index 0000000000..174c04d983 --- /dev/null +++ b/src/regress/lib/libc/fpclassify/fpclassify.c | |||
| @@ -0,0 +1,76 @@ | |||
| 1 | /* $OpenBSD: fpclassify.c,v 1.1 2008/09/07 20:36:10 martynas Exp $ */ | ||
| 2 | /*- | ||
| 3 | * Copyright (c) 2003 Mike Barcroft <mike@FreeBSD.org> | ||
| 4 | * All rights reserved. | ||
| 5 | * | ||
| 6 | * Redistribution and use in source and binary forms, with or without | ||
| 7 | * modification, are permitted provided that the following conditions | ||
| 8 | * are met: | ||
| 9 | * 1. Redistributions of source code must retain the above copyright | ||
| 10 | * notice, this list of conditions and the following disclaimer. | ||
| 11 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer in the | ||
| 13 | * documentation and/or other materials provided with the distribution. | ||
| 14 | * | ||
| 15 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | ||
| 16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 17 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 18 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
| 19 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 20 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 21 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 22 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 23 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 24 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 25 | * SUCH DAMAGE. | ||
| 26 | * | ||
| 27 | * $FreeBSD: src/tools/regression/lib/libc/gen/test-fpclassify.c,v 1.3 2003/03/27 05:32:28 das Exp $ | ||
| 28 | */ | ||
| 29 | |||
| 30 | #include <assert.h> | ||
| 31 | #include <float.h> | ||
| 32 | #include <math.h> | ||
| 33 | #include <stdlib.h> | ||
| 34 | |||
| 35 | int | ||
| 36 | main(void) | ||
| 37 | { | ||
| 38 | |||
| 39 | assert(fpclassify((float)0) == FP_ZERO); | ||
| 40 | assert(fpclassify((float)-0.0) == FP_ZERO); | ||
| 41 | assert(fpclassify((float)1) == FP_NORMAL); | ||
| 42 | assert(fpclassify((float)1000) == FP_NORMAL); | ||
| 43 | #ifndef __alpha__ | ||
| 44 | assert(fpclassify(0x1.2p-150f) == FP_SUBNORMAL); | ||
| 45 | #endif /* !__alpha__ */ | ||
| 46 | assert(fpclassify(HUGE_VALF) == FP_INFINITE); | ||
| 47 | assert(fpclassify((float)HUGE_VAL) == FP_INFINITE); | ||
| 48 | assert(fpclassify((float)HUGE_VALL) == FP_INFINITE); | ||
| 49 | assert(fpclassify(NAN) == FP_NAN); | ||
| 50 | |||
| 51 | assert(fpclassify((double)0) == FP_ZERO); | ||
| 52 | assert(fpclassify((double)-0) == FP_ZERO); | ||
| 53 | assert(fpclassify((double)1) == FP_NORMAL); | ||
| 54 | assert(fpclassify((double)1000) == FP_NORMAL); | ||
| 55 | #ifndef __alpha__ | ||
| 56 | assert(fpclassify(0x1.2p-1075) == FP_SUBNORMAL); | ||
| 57 | #endif /* !__alpha__ */ | ||
| 58 | assert(fpclassify(HUGE_VAL) == FP_INFINITE); | ||
| 59 | assert(fpclassify((double)HUGE_VALF) == FP_INFINITE); | ||
| 60 | assert(fpclassify((double)HUGE_VALL) == FP_INFINITE); | ||
| 61 | assert(fpclassify((double)NAN) == FP_NAN); | ||
| 62 | |||
| 63 | assert(fpclassify((long double)0) == FP_ZERO); | ||
| 64 | assert(fpclassify((long double)-0.0) == FP_ZERO); | ||
| 65 | assert(fpclassify((long double)1) == FP_NORMAL); | ||
| 66 | assert(fpclassify((long double)1000) == FP_NORMAL); | ||
| 67 | #if (LDBL_MANT_DIG > DBL_MANT_DIG) | ||
| 68 | assert(fpclassify(0x1.2p-16383L) == FP_SUBNORMAL); | ||
| 69 | #endif /* (LDBL_MANT_DIG > DBL_MANT_DIG) */ | ||
| 70 | assert(fpclassify(HUGE_VALL) == FP_INFINITE); | ||
| 71 | assert(fpclassify((long double)HUGE_VALF) == FP_INFINITE); | ||
| 72 | assert(fpclassify((long double)HUGE_VAL) == FP_INFINITE); | ||
| 73 | assert(fpclassify((long double)NAN) == FP_NAN); | ||
| 74 | |||
| 75 | return (0); | ||
| 76 | } | ||
diff --git a/src/regress/lib/libc/gcvt/Makefile b/src/regress/lib/libc/gcvt/Makefile new file mode 100644 index 0000000000..d8efaa9362 --- /dev/null +++ b/src/regress/lib/libc/gcvt/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2010/09/17 19:51:38 millert Exp $ | ||
| 2 | |||
| 3 | PROG= gcvt_test | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/gcvt/gcvt_test.c b/src/regress/lib/libc/gcvt/gcvt_test.c new file mode 100644 index 0000000000..164d600cd2 --- /dev/null +++ b/src/regress/lib/libc/gcvt/gcvt_test.c | |||
| @@ -0,0 +1,120 @@ | |||
| 1 | /* $OpenBSD: gcvt_test.c,v 1.4 2010/09/18 20:29:15 millert Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Public domain, 2010, Todd C. Miller <Todd.Miller@courtesan.com> | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <stdio.h> | ||
| 8 | #include <stdlib.h> | ||
| 9 | #include <string.h> | ||
| 10 | |||
| 11 | static struct test_vector { | ||
| 12 | double d; | ||
| 13 | int ndig; | ||
| 14 | char *expect; | ||
| 15 | } test_vectors[] = { | ||
| 16 | /* adapted from perl's Configure test */ | ||
| 17 | { 0.1, 8, "0.1" }, | ||
| 18 | { 0.01, 8, "0.01" }, | ||
| 19 | { 0.001, 8, "0.001" }, | ||
| 20 | { 0.0001, 8, "0.0001" }, | ||
| 21 | { 0.00009, 8, "9e-05" }, | ||
| 22 | { 1.0, 8, "1" }, | ||
| 23 | { 1.1, 8, "1.1" }, | ||
| 24 | { 1.01, 8, "1.01" }, | ||
| 25 | { 1.001, 8, "1.001" }, | ||
| 26 | { 1.0001, 8, "1.0001" }, | ||
| 27 | { 1.00001, 8, "1.00001" }, | ||
| 28 | { 1.000001, 8, "1.000001" }, | ||
| 29 | { 0.0, 8, "0" }, | ||
| 30 | { -1.0, 8, "-1" }, | ||
| 31 | { 100000.0, 8, "100000" }, | ||
| 32 | { -100000.0, 8, "-100000" }, | ||
| 33 | { 123.456, 8, "123.456" }, | ||
| 34 | { 1e34, 8, "1e+34" }, | ||
| 35 | /* adapted from emx */ | ||
| 36 | { 0.0, -1, "0" }, | ||
| 37 | { 0.0, 0, "0" }, | ||
| 38 | { 0.0, 1, "0" }, | ||
| 39 | { 0.0, 2, "0" }, | ||
| 40 | { 1.0, -1, "1" }, | ||
| 41 | { 1.0, 0, "1" }, | ||
| 42 | { 1.0, 2, "1" }, | ||
| 43 | { 1.0, 10, "1" }, | ||
| 44 | { 1.236, -1, "1.236" }, | ||
| 45 | { 1.236, 0, "1" }, | ||
| 46 | { 1.236, 1, "1" }, | ||
| 47 | { 1.236, 2, "1.2" }, | ||
| 48 | { 1.236, 3, "1.24" }, | ||
| 49 | { 1.236, 4, "1.236" }, | ||
| 50 | { 1.236, 5, "1.236" }, | ||
| 51 | { 1.236, 6, "1.236" }, | ||
| 52 | { 12.36, -1, "12.36" }, | ||
| 53 | { 12.36, 0, "1e+01" }, | ||
| 54 | { 12.36, 1, "1e+01" }, | ||
| 55 | { 12.36, 2, "12" }, | ||
| 56 | { 12.36, 3, "12.4" }, | ||
| 57 | { 12.36, 4, "12.36" }, | ||
| 58 | { 12.36, 5, "12.36" }, | ||
| 59 | { 12.36, 6, "12.36" }, | ||
| 60 | { 123.6, -1, "123.6" }, | ||
| 61 | { 123.6, 0, "1e+02" }, | ||
| 62 | { 123.6, 1, "1e+02" }, | ||
| 63 | { 123.6, 2, "1.2e+02" }, | ||
| 64 | { 123.6, 3, "124" }, | ||
| 65 | { 123.6, 4, "123.6" }, | ||
| 66 | { 123.6, 5, "123.6" }, | ||
| 67 | { 123.6, 6, "123.6" }, | ||
| 68 | { 1236.0, -1, "1236" }, | ||
| 69 | { 1236.0, 0, "1e+03" }, | ||
| 70 | { 1236.0, 1, "1e+03" }, | ||
| 71 | { 1236.0, 2, "1.2e+03" }, | ||
| 72 | { 1236.0, 3, "1.24e+03" }, | ||
| 73 | { 1236.0, 4, "1236" }, | ||
| 74 | { 1236.0, 5, "1236" }, | ||
| 75 | { 1236.0, 6, "1236" }, | ||
| 76 | { 1e100, 10, "1e+100" }, | ||
| 77 | { 1e100, 20, "1.0000000000000000159e+100" }, | ||
| 78 | { 0.01236, -1, "0.01236" }, | ||
| 79 | { 0.01236, 0, "0.01" }, | ||
| 80 | { 0.01236, 1, "0.01" }, | ||
| 81 | { 0.01236, 2, "0.012" }, | ||
| 82 | { 0.01236, 3, "0.0124" }, | ||
| 83 | { 0.01236, 4, "0.01236" }, | ||
| 84 | { 1e-100, 20, "1.00000000000000002e-100" }, | ||
| 85 | { 1e-100, -1, "1e-100" }, | ||
| 86 | { -1.2, 5, "-1.2" }, | ||
| 87 | { -0.03, 5, "-0.03" }, | ||
| 88 | { 0.1, 1, "0.1" }, | ||
| 89 | { 0.1, 0, "0.1" }, | ||
| 90 | { 0.099999, 10, "0.099999" }, | ||
| 91 | { 0.99999, 10, "0.99999" }, | ||
| 92 | }; | ||
| 93 | |||
| 94 | #define NTESTVEC (sizeof(test_vectors) / sizeof(test_vectors[0])) | ||
| 95 | |||
| 96 | static int | ||
| 97 | dotest(struct test_vector *tv) | ||
| 98 | { | ||
| 99 | char buf[256], *got; | ||
| 100 | |||
| 101 | got = gcvt(tv->d, tv->ndig, buf); | ||
| 102 | if (strcmp(tv->expect, got) != 0) { | ||
| 103 | fprintf(stderr, "%g @ %d: expected %s, got %s\n", | ||
| 104 | tv->d, tv->ndig, tv->expect, got); | ||
| 105 | return 1; | ||
| 106 | } | ||
| 107 | return 0; | ||
| 108 | } | ||
| 109 | |||
| 110 | int | ||
| 111 | main(int argc, char *argv[]) | ||
| 112 | { | ||
| 113 | int i, failures = 0; | ||
| 114 | |||
| 115 | for (i = 0; i < NTESTVEC; i++) { | ||
| 116 | failures += dotest(&test_vectors[i]); | ||
| 117 | } | ||
| 118 | |||
| 119 | return failures; | ||
| 120 | } | ||
diff --git a/src/regress/lib/libc/getaddrinfo/Makefile b/src/regress/lib/libc/getaddrinfo/Makefile new file mode 100644 index 0000000000..d93494cc1c --- /dev/null +++ b/src/regress/lib/libc/getaddrinfo/Makefile | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.4 2011/07/07 21:00:59 deraadt Exp $ | ||
| 2 | |||
| 3 | PROG= gaitest | ||
| 4 | SRCS= gaitest.c | ||
| 5 | NOMAN= # defined | ||
| 6 | CLEANFILES+= out | ||
| 7 | |||
| 8 | REGRESS_TARGETS=do-test | ||
| 9 | |||
| 10 | do-test: ${PROG} | ||
| 11 | sh ${.CURDIR}/testsuite.sh >out 2>&1 | ||
| 12 | @if diff -u10 out ${.CURDIR}/answer; then \ | ||
| 13 | echo SUCCESS; \ | ||
| 14 | else \ | ||
| 15 | echo FAIL; \ | ||
| 16 | exit 1; \ | ||
| 17 | fi | ||
| 18 | |||
| 19 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/getaddrinfo/answer b/src/regress/lib/libc/getaddrinfo/answer new file mode 100644 index 0000000000..778fc64baa --- /dev/null +++ b/src/regress/lib/libc/getaddrinfo/answer | |||
| @@ -0,0 +1,110 @@ | |||
| 1 | == basic ones | ||
| 2 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host ::1 serv http | ||
| 3 | ai1: flags 0x2 family 24 socktype 1 protocol 6 addrlen 28 host ::1 serv 80 | ||
| 4 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host 127.0.0.1 serv http | ||
| 5 | ai1: flags 0x2 family 2 socktype 1 protocol 6 addrlen 16 host 127.0.0.1 serv 80 | ||
| 6 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host localhost serv http | ||
| 7 | ai1: flags 0x2 family 2 socktype 1 protocol 6 addrlen 16 host 127.0.0.1 serv 80 | ||
| 8 | ai2: flags 0x2 family 24 socktype 1 protocol 6 addrlen 28 host ::1 serv 80 | ||
| 9 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host ::1 serv tftp | ||
| 10 | ai1: flags 0x2 family 24 socktype 2 protocol 17 addrlen 28 host ::1 serv 69 | ||
| 11 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host 127.0.0.1 serv tftp | ||
| 12 | ai1: flags 0x2 family 2 socktype 2 protocol 17 addrlen 16 host 127.0.0.1 serv 69 | ||
| 13 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host localhost serv tftp | ||
| 14 | ai1: flags 0x2 family 2 socktype 2 protocol 17 addrlen 16 host 127.0.0.1 serv 69 | ||
| 15 | ai2: flags 0x2 family 24 socktype 2 protocol 17 addrlen 28 host ::1 serv 69 | ||
| 16 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host ::1 serv echo | ||
| 17 | ai1: flags 0x2 family 24 socktype 2 protocol 17 addrlen 28 host ::1 serv 7 | ||
| 18 | ai2: flags 0x2 family 24 socktype 1 protocol 6 addrlen 28 host ::1 serv 7 | ||
| 19 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host 127.0.0.1 serv echo | ||
| 20 | ai1: flags 0x2 family 2 socktype 2 protocol 17 addrlen 16 host 127.0.0.1 serv 7 | ||
| 21 | ai2: flags 0x2 family 2 socktype 1 protocol 6 addrlen 16 host 127.0.0.1 serv 7 | ||
| 22 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host localhost serv echo | ||
| 23 | ai1: flags 0x2 family 2 socktype 2 protocol 17 addrlen 16 host 127.0.0.1 serv 7 | ||
| 24 | ai2: flags 0x2 family 24 socktype 2 protocol 17 addrlen 28 host ::1 serv 7 | ||
| 25 | ai3: flags 0x2 family 2 socktype 1 protocol 6 addrlen 16 host 127.0.0.1 serv 7 | ||
| 26 | ai4: flags 0x2 family 24 socktype 1 protocol 6 addrlen 28 host ::1 serv 7 | ||
| 27 | |||
| 28 | == specific address family | ||
| 29 | arg: flags 0x2 family 2 socktype 0 protocol 0 addrlen 0 host localhost serv http | ||
| 30 | ai1: flags 0x2 family 2 socktype 1 protocol 6 addrlen 16 host 127.0.0.1 serv 80 | ||
| 31 | arg: flags 0x2 family 24 socktype 0 protocol 0 addrlen 0 host localhost serv http | ||
| 32 | ai1: flags 0x2 family 24 socktype 1 protocol 6 addrlen 28 host ::1 serv 80 | ||
| 33 | |||
| 34 | == empty hostname | ||
| 35 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host (empty) serv http | ||
| 36 | ai1: flags 0x2 family 24 socktype 1 protocol 6 addrlen 28 host ::1 serv 80 | ||
| 37 | ai2: flags 0x2 family 2 socktype 1 protocol 6 addrlen 16 host 127.0.0.1 serv 80 | ||
| 38 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host (empty) serv echo | ||
| 39 | ai1: flags 0x2 family 24 socktype 2 protocol 17 addrlen 28 host ::1 serv 7 | ||
| 40 | ai2: flags 0x2 family 24 socktype 1 protocol 6 addrlen 28 host ::1 serv 7 | ||
| 41 | ai3: flags 0x2 family 2 socktype 2 protocol 17 addrlen 16 host 127.0.0.1 serv 7 | ||
| 42 | ai4: flags 0x2 family 2 socktype 1 protocol 6 addrlen 16 host 127.0.0.1 serv 7 | ||
| 43 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host (empty) serv tftp | ||
| 44 | ai1: flags 0x2 family 24 socktype 2 protocol 17 addrlen 28 host ::1 serv 69 | ||
| 45 | ai2: flags 0x2 family 2 socktype 2 protocol 17 addrlen 16 host 127.0.0.1 serv 69 | ||
| 46 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host (empty) serv 80 | ||
| 47 | ai1: flags 0x2 family 24 socktype 2 protocol 17 addrlen 28 host ::1 serv 80 | ||
| 48 | ai2: flags 0x2 family 24 socktype 1 protocol 6 addrlen 28 host ::1 serv 80 | ||
| 49 | ai3: flags 0x2 family 2 socktype 2 protocol 17 addrlen 16 host 127.0.0.1 serv 80 | ||
| 50 | ai4: flags 0x2 family 2 socktype 1 protocol 6 addrlen 16 host 127.0.0.1 serv 80 | ||
| 51 | arg: flags 0x3 family 0 socktype 0 protocol 0 addrlen 0 host (empty) serv http | ||
| 52 | ai1: flags 0x3 family 24 socktype 1 protocol 6 addrlen 28 host :: serv 80 | ||
| 53 | ai2: flags 0x3 family 2 socktype 1 protocol 6 addrlen 16 host 0.0.0.0 serv 80 | ||
| 54 | arg: flags 0x3 family 0 socktype 0 protocol 0 addrlen 0 host (empty) serv echo | ||
| 55 | ai1: flags 0x3 family 24 socktype 2 protocol 17 addrlen 28 host :: serv 7 | ||
| 56 | ai2: flags 0x3 family 24 socktype 1 protocol 6 addrlen 28 host :: serv 7 | ||
| 57 | ai3: flags 0x3 family 2 socktype 2 protocol 17 addrlen 16 host 0.0.0.0 serv 7 | ||
| 58 | ai4: flags 0x3 family 2 socktype 1 protocol 6 addrlen 16 host 0.0.0.0 serv 7 | ||
| 59 | arg: flags 0x3 family 0 socktype 0 protocol 0 addrlen 0 host (empty) serv tftp | ||
| 60 | ai1: flags 0x3 family 24 socktype 2 protocol 17 addrlen 28 host :: serv 69 | ||
| 61 | ai2: flags 0x3 family 2 socktype 2 protocol 17 addrlen 16 host 0.0.0.0 serv 69 | ||
| 62 | arg: flags 0x3 family 0 socktype 0 protocol 0 addrlen 0 host (empty) serv 80 | ||
| 63 | ai1: flags 0x3 family 24 socktype 2 protocol 17 addrlen 28 host :: serv 80 | ||
| 64 | ai2: flags 0x3 family 24 socktype 1 protocol 6 addrlen 28 host :: serv 80 | ||
| 65 | ai3: flags 0x3 family 2 socktype 2 protocol 17 addrlen 16 host 0.0.0.0 serv 80 | ||
| 66 | ai4: flags 0x3 family 2 socktype 1 protocol 6 addrlen 16 host 0.0.0.0 serv 80 | ||
| 67 | arg: flags 0x2 family 0 socktype 1 protocol 0 addrlen 0 host (empty) serv 80 | ||
| 68 | ai1: flags 0x2 family 24 socktype 1 protocol 6 addrlen 28 host ::1 serv 80 | ||
| 69 | ai2: flags 0x2 family 2 socktype 1 protocol 6 addrlen 16 host 127.0.0.1 serv 80 | ||
| 70 | arg: flags 0x2 family 0 socktype 2 protocol 0 addrlen 0 host (empty) serv 80 | ||
| 71 | ai1: flags 0x2 family 24 socktype 2 protocol 17 addrlen 28 host ::1 serv 80 | ||
| 72 | ai2: flags 0x2 family 2 socktype 2 protocol 17 addrlen 16 host 127.0.0.1 serv 80 | ||
| 73 | |||
| 74 | == empty servname | ||
| 75 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host ::1 serv (empty) | ||
| 76 | ai1: flags 0x2 family 24 socktype 2 protocol 17 addrlen 28 host ::1 serv 0 | ||
| 77 | ai2: flags 0x2 family 24 socktype 1 protocol 6 addrlen 28 host ::1 serv 0 | ||
| 78 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host 127.0.0.1 serv (empty) | ||
| 79 | ai1: flags 0x2 family 2 socktype 2 protocol 17 addrlen 16 host 127.0.0.1 serv 0 | ||
| 80 | ai2: flags 0x2 family 2 socktype 1 protocol 6 addrlen 16 host 127.0.0.1 serv 0 | ||
| 81 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host localhost serv (empty) | ||
| 82 | ai1: flags 0x2 family 2 socktype 2 protocol 17 addrlen 16 host 127.0.0.1 serv 0 | ||
| 83 | ai2: flags 0x2 family 24 socktype 2 protocol 17 addrlen 28 host ::1 serv 0 | ||
| 84 | ai3: flags 0x2 family 2 socktype 1 protocol 6 addrlen 16 host 127.0.0.1 serv 0 | ||
| 85 | ai4: flags 0x2 family 24 socktype 1 protocol 6 addrlen 28 host ::1 serv 0 | ||
| 86 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host (empty) serv (empty) | ||
| 87 | name or service is not known | ||
| 88 | |||
| 89 | == sock_raw | ||
| 90 | arg: flags 0x2 family 0 socktype 3 protocol 0 addrlen 0 host localhost serv (empty) | ||
| 91 | ai1: flags 0x2 family 2 socktype 3 protocol 0 addrlen 16 host 127.0.0.1 serv 0 | ||
| 92 | ai2: flags 0x2 family 24 socktype 3 protocol 0 addrlen 28 host ::1 serv 0 | ||
| 93 | arg: flags 0x2 family 0 socktype 3 protocol 59 addrlen 0 host localhost serv (empty) | ||
| 94 | ai1: flags 0x2 family 2 socktype 3 protocol 59 addrlen 16 host 127.0.0.1 serv 0 | ||
| 95 | ai2: flags 0x2 family 24 socktype 3 protocol 59 addrlen 28 host ::1 serv 0 | ||
| 96 | arg: flags 0x2 family 0 socktype 3 protocol 59 addrlen 0 host localhost serv 80 | ||
| 97 | service not supported for ai_socktype | ||
| 98 | arg: flags 0x2 family 0 socktype 3 protocol 59 addrlen 0 host localhost serv www | ||
| 99 | service not supported for ai_socktype | ||
| 100 | arg: flags 0x2 family 0 socktype 3 protocol 59 addrlen 0 host ::1 serv (empty) | ||
| 101 | ai1: flags 0x2 family 24 socktype 3 protocol 59 addrlen 28 host ::1 serv 0 | ||
| 102 | |||
| 103 | == unsupported family | ||
| 104 | arg: flags 0x2 family 99 socktype 0 protocol 0 addrlen 0 host localhost serv (empty) | ||
| 105 | ai_family not supported | ||
| 106 | |||
| 107 | == the following items are specified in jinmei scopeaddr format doc. | ||
| 108 | arg: flags 0x2 family 0 socktype 0 protocol 0 addrlen 0 host fe80::1%lo0 serv http | ||
| 109 | ai1: flags 0x2 family 24 socktype 1 protocol 6 addrlen 28 host fe80::1%lo0 serv 80 | ||
| 110 | |||
diff --git a/src/regress/lib/libc/getaddrinfo/gaitest.c b/src/regress/lib/libc/getaddrinfo/gaitest.c new file mode 100644 index 0000000000..12a4498459 --- /dev/null +++ b/src/regress/lib/libc/getaddrinfo/gaitest.c | |||
| @@ -0,0 +1,195 @@ | |||
| 1 | /* $OpenBSD: gaitest.c,v 1.6 2009/06/09 18:15:08 phessler Exp $ */ | ||
| 2 | /* $NetBSD: gaitest.c,v 1.3 2002/07/05 15:47:43 itojun Exp $ */ | ||
| 3 | |||
| 4 | /* | ||
| 5 | * Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, and 2002 WIDE Project. | ||
| 6 | * All rights reserved. | ||
| 7 | * | ||
| 8 | * Redistribution and use in source and binary forms, with or without | ||
| 9 | * modification, are permitted provided that the following conditions | ||
| 10 | * are met: | ||
| 11 | * 1. Redistributions of source code must retain the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer. | ||
| 13 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 14 | * notice, this list of conditions and the following disclaimer in the | ||
| 15 | * documentation and/or other materials provided with the distribution. | ||
| 16 | * 3. Neither the name of the project nor the names of its contributors | ||
| 17 | * may be used to endorse or promote products derived from this software | ||
| 18 | * without specific prior written permission. | ||
| 19 | * | ||
| 20 | * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND | ||
| 21 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 22 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 23 | * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE | ||
| 24 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 25 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 26 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 27 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 28 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 29 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 30 | * SUCH DAMAGE. | ||
| 31 | */ | ||
| 32 | |||
| 33 | /* | ||
| 34 | * Please note: the order of the responses (and the regress test) | ||
| 35 | * is dependent on the "family" keywords in resolv.conf. | ||
| 36 | * | ||
| 37 | * This expects the default behaviour of "family inet4 inet6" | ||
| 38 | */ | ||
| 39 | |||
| 40 | #include <sys/types.h> | ||
| 41 | #include <sys/socket.h> | ||
| 42 | #include <netinet/in.h> | ||
| 43 | #include <arpa/inet.h> | ||
| 44 | #include <netdb.h> | ||
| 45 | #include <stdio.h> | ||
| 46 | #include <stdlib.h> | ||
| 47 | #include <string.h> | ||
| 48 | #include <unistd.h> | ||
| 49 | |||
| 50 | struct addrinfo ai; | ||
| 51 | |||
| 52 | char host[NI_MAXHOST]; | ||
| 53 | char serv[NI_MAXSERV]; | ||
| 54 | int vflag = 0; | ||
| 55 | |||
| 56 | static void usage(void); | ||
| 57 | static void print1(const char *, const struct addrinfo *, char *, char *); | ||
| 58 | int main(int, char *[]); | ||
| 59 | |||
| 60 | static void | ||
| 61 | usage() | ||
| 62 | { | ||
| 63 | fprintf(stderr, "usage: test [-f family] [-s socktype] [-p proto] [-DPRSv46] host serv\n"); | ||
| 64 | } | ||
| 65 | |||
| 66 | static void | ||
| 67 | print1(title, res, h, s) | ||
| 68 | const char *title; | ||
| 69 | const struct addrinfo *res; | ||
| 70 | char *h; | ||
| 71 | char *s; | ||
| 72 | { | ||
| 73 | char *start, *end; | ||
| 74 | int error; | ||
| 75 | const int niflag = NI_NUMERICHOST | NI_NUMERICSERV; | ||
| 76 | |||
| 77 | if (res->ai_addr) { | ||
| 78 | error = getnameinfo(res->ai_addr, res->ai_addr->sa_len, | ||
| 79 | host, sizeof(host), serv, sizeof(serv), | ||
| 80 | niflag); | ||
| 81 | h = host; | ||
| 82 | s = serv; | ||
| 83 | } else | ||
| 84 | error = 0; | ||
| 85 | |||
| 86 | if (vflag) { | ||
| 87 | start = "\t"; | ||
| 88 | end = "\n"; | ||
| 89 | } else { | ||
| 90 | start = " "; | ||
| 91 | end = ""; | ||
| 92 | } | ||
| 93 | printf("%s%s", title, end); | ||
| 94 | printf("%sflags 0x%x%s", start, res->ai_flags, end); | ||
| 95 | printf("%sfamily %d%s", start, res->ai_family, end); | ||
| 96 | printf("%ssocktype %d%s", start, res->ai_socktype, end); | ||
| 97 | printf("%sprotocol %d%s", start, res->ai_protocol, end); | ||
| 98 | printf("%saddrlen %d%s", start, res->ai_addrlen, end); | ||
| 99 | if (error) | ||
| 100 | printf("%serror %d%s", start, error, end); | ||
| 101 | else { | ||
| 102 | printf("%shost %s%s", start, h, end); | ||
| 103 | printf("%sserv %s%s", start, s, end); | ||
| 104 | } | ||
| 105 | #if 0 | ||
| 106 | if (res->ai_canonname) | ||
| 107 | printf("%scname \"%s\"%s", start, res->ai_canonname, end); | ||
| 108 | #endif | ||
| 109 | if (!vflag) | ||
| 110 | printf("\n"); | ||
| 111 | |||
| 112 | } | ||
| 113 | |||
| 114 | int | ||
| 115 | main(argc, argv) | ||
| 116 | int argc; | ||
| 117 | char *argv[]; | ||
| 118 | { | ||
| 119 | struct addrinfo *res; | ||
| 120 | int error, i; | ||
| 121 | char *p, *q; | ||
| 122 | extern int optind; | ||
| 123 | extern char *optarg; | ||
| 124 | int c; | ||
| 125 | char nbuf[10]; | ||
| 126 | |||
| 127 | memset(&ai, 0, sizeof(ai)); | ||
| 128 | ai.ai_family = PF_UNSPEC; | ||
| 129 | ai.ai_flags |= AI_CANONNAME; | ||
| 130 | while ((c = getopt(argc, argv, "Df:p:PRs:Sv46")) != -1) { | ||
| 131 | switch (c) { | ||
| 132 | case 'D': | ||
| 133 | ai.ai_socktype = SOCK_DGRAM; | ||
| 134 | break; | ||
| 135 | case 'f': | ||
| 136 | ai.ai_family = atoi(optarg); | ||
| 137 | break; | ||
| 138 | case 'p': | ||
| 139 | ai.ai_protocol = atoi(optarg); | ||
| 140 | break; | ||
| 141 | case 'P': | ||
| 142 | ai.ai_flags |= AI_PASSIVE; | ||
| 143 | break; | ||
| 144 | case 'R': | ||
| 145 | ai.ai_socktype = SOCK_RAW; | ||
| 146 | break; | ||
| 147 | case 's': | ||
| 148 | ai.ai_socktype = atoi(optarg); | ||
| 149 | break; | ||
| 150 | case 'S': | ||
| 151 | ai.ai_socktype = SOCK_STREAM; | ||
| 152 | break; | ||
| 153 | case 'v': | ||
| 154 | vflag++; | ||
| 155 | break; | ||
| 156 | case '4': | ||
| 157 | ai.ai_family = PF_INET; | ||
| 158 | break; | ||
| 159 | case '6': | ||
| 160 | ai.ai_family = PF_INET6; | ||
| 161 | break; | ||
| 162 | default: | ||
| 163 | usage(); | ||
| 164 | exit(1); | ||
| 165 | } | ||
| 166 | } | ||
| 167 | argc -= optind; | ||
| 168 | argv += optind; | ||
| 169 | |||
| 170 | if (argc != 2){ | ||
| 171 | usage(); | ||
| 172 | exit(1); | ||
| 173 | } | ||
| 174 | |||
| 175 | p = *argv[0] ? argv[0] : NULL; | ||
| 176 | q = *argv[1] ? argv[1] : NULL; | ||
| 177 | |||
| 178 | print1("arg:", &ai, p ? p : "(empty)", q ? q : "(empty)"); | ||
| 179 | |||
| 180 | error = getaddrinfo(p, q, &ai, &res); | ||
| 181 | if (error) { | ||
| 182 | printf("%s\n", gai_strerror(error)); | ||
| 183 | exit(1); | ||
| 184 | } | ||
| 185 | |||
| 186 | i = 1; | ||
| 187 | do { | ||
| 188 | snprintf(nbuf, sizeof(nbuf), "ai%d:", i); | ||
| 189 | print1(nbuf, res, NULL, NULL); | ||
| 190 | |||
| 191 | i++; | ||
| 192 | } while ((res = res->ai_next) != NULL); | ||
| 193 | |||
| 194 | exit(0); | ||
| 195 | } | ||
diff --git a/src/regress/lib/libc/getaddrinfo/testsuite.sh b/src/regress/lib/libc/getaddrinfo/testsuite.sh new file mode 100644 index 0000000000..1e4e524054 --- /dev/null +++ b/src/regress/lib/libc/getaddrinfo/testsuite.sh | |||
| @@ -0,0 +1,89 @@ | |||
| 1 | # $OpenBSD: testsuite.sh,v 1.1 2002/07/05 15:54:30 itojun Exp $ | ||
| 2 | # $NetBSD: testsuite.sh,v 1.3 2002/07/05 15:49:11 itojun Exp $ | ||
| 3 | |||
| 4 | # | ||
| 5 | # Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, and 2002 WIDE Project. | ||
| 6 | # All rights reserved. | ||
| 7 | # | ||
| 8 | # Redistribution and use in source and binary forms, with or without | ||
| 9 | # modification, are permitted provided that the following conditions | ||
| 10 | # are met: | ||
| 11 | # 1. Redistributions of source code must retain the above copyright | ||
| 12 | # notice, this list of conditions and the following disclaimer. | ||
| 13 | # 2. Redistributions in binary form must reproduce the above copyright | ||
| 14 | # notice, this list of conditions and the following disclaimer in the | ||
| 15 | # documentation and/or other materials provided with the distribution. | ||
| 16 | # 3. Neither the name of the project nor the names of its contributors | ||
| 17 | # may be used to endorse or promote products derived from this software | ||
| 18 | # without specific prior written permission. | ||
| 19 | # | ||
| 20 | # THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND | ||
| 21 | # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 22 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 23 | # ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE | ||
| 24 | # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 25 | # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 26 | # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 27 | # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 28 | # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 29 | # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 30 | # SUCH DAMAGE. | ||
| 31 | # | ||
| 32 | |||
| 33 | TEST=./gaitest | ||
| 34 | #TEST='./test -v' | ||
| 35 | #IF=`ifconfig -a | grep -v '^ ' | sed -e 's/:.*//' | head -1 | awk '{print $1}'` | ||
| 36 | |||
| 37 | echo '== basic ones' | ||
| 38 | $TEST ::1 http | ||
| 39 | $TEST 127.0.0.1 http | ||
| 40 | $TEST localhost http | ||
| 41 | $TEST ::1 tftp | ||
| 42 | $TEST 127.0.0.1 tftp | ||
| 43 | $TEST localhost tftp | ||
| 44 | $TEST ::1 echo | ||
| 45 | $TEST 127.0.0.1 echo | ||
| 46 | $TEST localhost echo | ||
| 47 | echo | ||
| 48 | |||
| 49 | echo '== specific address family' | ||
| 50 | $TEST -4 localhost http | ||
| 51 | $TEST -6 localhost http | ||
| 52 | echo | ||
| 53 | |||
| 54 | echo '== empty hostname' | ||
| 55 | $TEST '' http | ||
| 56 | $TEST '' echo | ||
| 57 | $TEST '' tftp | ||
| 58 | $TEST '' 80 | ||
| 59 | $TEST -P '' http | ||
| 60 | $TEST -P '' echo | ||
| 61 | $TEST -P '' tftp | ||
| 62 | $TEST -P '' 80 | ||
| 63 | $TEST -S '' 80 | ||
| 64 | $TEST -D '' 80 | ||
| 65 | echo | ||
| 66 | |||
| 67 | echo '== empty servname' | ||
| 68 | $TEST ::1 '' | ||
| 69 | $TEST 127.0.0.1 '' | ||
| 70 | $TEST localhost '' | ||
| 71 | $TEST '' '' | ||
| 72 | echo | ||
| 73 | |||
| 74 | echo '== sock_raw' | ||
| 75 | $TEST -R -p 0 localhost '' | ||
| 76 | $TEST -R -p 59 localhost '' | ||
| 77 | $TEST -R -p 59 localhost 80 | ||
| 78 | $TEST -R -p 59 localhost www | ||
| 79 | $TEST -R -p 59 ::1 '' | ||
| 80 | echo | ||
| 81 | |||
| 82 | echo '== unsupported family' | ||
| 83 | $TEST -f 99 localhost '' | ||
| 84 | echo | ||
| 85 | |||
| 86 | echo '== the following items are specified in jinmei scopeaddr format doc.' | ||
| 87 | $TEST fe80::1%lo0 http | ||
| 88 | #$TEST fe80::1%$IF http | ||
| 89 | echo | ||
diff --git a/src/regress/lib/libc/getcap/Makefile b/src/regress/lib/libc/getcap/Makefile new file mode 100644 index 0000000000..7b7ae394ff --- /dev/null +++ b/src/regress/lib/libc/getcap/Makefile | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2009/06/09 18:16:40 phessler Exp $ | ||
| 2 | |||
| 3 | PROG= getcaptest | ||
| 4 | |||
| 5 | REGRESS_TARGETS=shortcap | ||
| 6 | |||
| 7 | shortcap: getcaptest | ||
| 8 | ./getcaptest ${.CURDIR}/shortcap.in | ||
| 9 | |||
| 10 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/getcap/getcaptest.c b/src/regress/lib/libc/getcap/getcaptest.c new file mode 100644 index 0000000000..0f4464b6c5 --- /dev/null +++ b/src/regress/lib/libc/getcap/getcaptest.c | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | /* $OpenBSD: getcaptest.c,v 1.1 2006/03/10 05:28:57 ray Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Written by Raymond Lai <ray@cyth.net>. | ||
| 5 | * Public domain. | ||
| 6 | */ | ||
| 7 | |||
| 8 | #include <stdio.h> | ||
| 9 | #include <stdlib.h> | ||
| 10 | |||
| 11 | int | ||
| 12 | main(int argc, char *argv[]) | ||
| 13 | { | ||
| 14 | char *buf, *db_array[2]; | ||
| 15 | |||
| 16 | if (argc != 2) | ||
| 17 | return (1); | ||
| 18 | |||
| 19 | db_array[0] = argv[1]; | ||
| 20 | db_array[1] = NULL; | ||
| 21 | |||
| 22 | while (cgetnext(&buf, db_array) > 0) | ||
| 23 | puts(buf); | ||
| 24 | |||
| 25 | return (0); | ||
| 26 | } | ||
diff --git a/src/regress/lib/libc/getcap/shortcap.in b/src/regress/lib/libc/getcap/shortcap.in new file mode 100644 index 0000000000..573541ac97 --- /dev/null +++ b/src/regress/lib/libc/getcap/shortcap.in | |||
| @@ -0,0 +1 @@ | |||
| 0 | |||
diff --git a/src/regress/lib/libc/getopt_long/Makefile b/src/regress/lib/libc/getopt_long/Makefile new file mode 100644 index 0000000000..13a187e190 --- /dev/null +++ b/src/regress/lib/libc/getopt_long/Makefile | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.4 2002/12/08 19:25:08 millert Exp $ | ||
| 2 | |||
| 3 | NOMAN= | ||
| 4 | PROG=getopt_long_test | ||
| 5 | CLEANFILES+=test.out | ||
| 6 | |||
| 7 | # test getopt_long and getopt_long_only | ||
| 8 | run-regress-${PROG}: ${PROG} | ||
| 9 | @( test -n "$$POSIXLY_CORRECT" && unset POSIXLY_CORRECT; \ | ||
| 10 | test -n "$$LONG_ONLY" && unset LONG_ONLY; \ | ||
| 11 | ./${PROG} myfile --force -f infile -9 ; \ | ||
| 12 | ./${PROG} onefile twofile --best -Williterate -i foo.in threefile ; \ | ||
| 13 | ./${PROG} -1bfast - ; \ | ||
| 14 | ./${PROG} --fast --drinking=guiness -i foo.in somefile ; \ | ||
| 15 | export POSIXLY_CORRECT=1 ; \ | ||
| 16 | ./${PROG} myfile --force -f infile -9 ; \ | ||
| 17 | ./${PROG} onefile twofile --best -Williterate -i foo.in threefile ; \ | ||
| 18 | ./${PROG} -1bfast - ; \ | ||
| 19 | ./${PROG} --fast --drinking=guiness -i foo.in somefile ; \ | ||
| 20 | unset POSIXLY_CORRECT ; export LONG_ONLY=1 ; \ | ||
| 21 | ./${PROG} myfile -force -f infile -9 ; \ | ||
| 22 | ./${PROG} onefile twofile -best -Williterate -i foo.in threefile ; \ | ||
| 23 | ./${PROG} -1bfast - ; \ | ||
| 24 | ./${PROG} --fast -drinking=guiness -i foo.in somefile ; \ | ||
| 25 | export POSIXLY_CORRECT=1 ; \ | ||
| 26 | ./${PROG} myfile -force -f infile -9 ; \ | ||
| 27 | ./${PROG} onefile twofile -best -Williterate -i foo.in threefile ; \ | ||
| 28 | ./${PROG} -1bfast - ; \ | ||
| 29 | ./${PROG} --fast -drinking=guiness -i foo.in somefile ) >test.out 2>&1 | ||
| 30 | cmp -s ${.OBJDIR}/test.out ${.CURDIR}/test.ok | ||
| 31 | |||
| 32 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/getopt_long/getopt_long_test.c b/src/regress/lib/libc/getopt_long/getopt_long_test.c new file mode 100644 index 0000000000..9f6f603702 --- /dev/null +++ b/src/regress/lib/libc/getopt_long/getopt_long_test.c | |||
| @@ -0,0 +1,114 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> | ||
| 3 | * | ||
| 4 | * Permission to use, copy, modify, and distribute this software for any | ||
| 5 | * purpose with or without fee is hereby granted, provided that the above | ||
| 6 | * copyright notice and this permission notice appear in all copies. | ||
| 7 | * | ||
| 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 15 | * | ||
| 16 | * Sponsored in part by the Defense Advanced Research Projects | ||
| 17 | * Agency (DARPA) and Air Force Research Laboratory, Air Force | ||
| 18 | * Materiel Command, USAF, under agreement number F39502-99-1-0512. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #include <stdio.h> | ||
| 22 | #include <stdlib.h> | ||
| 23 | #include <getopt.h> | ||
| 24 | |||
| 25 | /* | ||
| 26 | * Simple getopt_long() and getopt_long_only() excerciser. | ||
| 27 | * ENVIRONMENT: | ||
| 28 | * LONG_ONLY : use getopt_long_only() (default is getopt_long()) | ||
| 29 | * POSIXLY_CORRECT : don't permute args | ||
| 30 | */ | ||
| 31 | |||
| 32 | int | ||
| 33 | main(int argc, char **argv) | ||
| 34 | { | ||
| 35 | int ch, idx, goggles; | ||
| 36 | int (*gl)(int, char * const *, const char *, const struct option *, int *); | ||
| 37 | struct option longopts[] = { | ||
| 38 | { "force", no_argument, 0, 0 }, | ||
| 39 | { "fast", no_argument, 0, '1' }, | ||
| 40 | { "best", no_argument, 0, '9' }, | ||
| 41 | { "input", required_argument, 0, 'i' }, | ||
| 42 | { "illiterate", no_argument, 0, 0 }, | ||
| 43 | { "drinking", required_argument, &goggles, 42 }, | ||
| 44 | { "help", no_argument, 0, 'h' }, | ||
| 45 | { 0, 0, 0, 0 }, | ||
| 46 | }; | ||
| 47 | |||
| 48 | if (getenv("LONG_ONLY")) { | ||
| 49 | gl = getopt_long_only; | ||
| 50 | printf("getopt_long_only"); | ||
| 51 | } else { | ||
| 52 | gl = getopt_long; | ||
| 53 | printf("getopt_long"); | ||
| 54 | } | ||
| 55 | if (getenv("POSIXLY_CORRECT")) | ||
| 56 | printf(" (POSIXLY_CORRECT)"); | ||
| 57 | printf(": "); | ||
| 58 | for (idx = 1; idx < argc; idx++) | ||
| 59 | printf("%s ", argv[idx]); | ||
| 60 | printf("\n"); | ||
| 61 | |||
| 62 | goggles = 0; | ||
| 63 | for (;;) { | ||
| 64 | idx = -1; | ||
| 65 | ch = gl(argc, argv, "19bf:i:hW;-", longopts, &idx); | ||
| 66 | if (ch == -1) | ||
| 67 | break; | ||
| 68 | switch (ch) { | ||
| 69 | case 0: | ||
| 70 | case '1': | ||
| 71 | case '9': | ||
| 72 | case 'h': | ||
| 73 | case 'b': | ||
| 74 | case '-': | ||
| 75 | if (idx != -1) { | ||
| 76 | if (goggles == 42) | ||
| 77 | printf("option %s, arg %s\n", | ||
| 78 | longopts[idx].name, optarg); | ||
| 79 | else | ||
| 80 | printf("option %s\n", | ||
| 81 | longopts[idx].name); | ||
| 82 | } else | ||
| 83 | printf("option %c\n", ch); | ||
| 84 | break; | ||
| 85 | case 'f': | ||
| 86 | case 'i': | ||
| 87 | if (idx != -1) | ||
| 88 | printf("option %s, arg %s\n", | ||
| 89 | longopts[idx].name, optarg); | ||
| 90 | else | ||
| 91 | printf("option %c, arg %s\n", ch, optarg); | ||
| 92 | break; | ||
| 93 | |||
| 94 | case '?': | ||
| 95 | break; | ||
| 96 | |||
| 97 | default: | ||
| 98 | printf("unexpected return value: %c\n", ch); | ||
| 99 | break; | ||
| 100 | } | ||
| 101 | } | ||
| 102 | argc -= optind; | ||
| 103 | argv += optind; | ||
| 104 | |||
| 105 | if (argc > 0) { | ||
| 106 | printf("remaining ARGV: "); | ||
| 107 | while (argc--) | ||
| 108 | printf("%s ", *argv++); | ||
| 109 | printf("\n"); | ||
| 110 | } | ||
| 111 | printf("\n"); | ||
| 112 | |||
| 113 | exit (0); | ||
| 114 | } | ||
diff --git a/src/regress/lib/libc/getopt_long/test.ok b/src/regress/lib/libc/getopt_long/test.ok new file mode 100644 index 0000000000..9782087f40 --- /dev/null +++ b/src/regress/lib/libc/getopt_long/test.ok | |||
| @@ -0,0 +1,84 @@ | |||
| 1 | getopt_long: myfile --force -f infile -9 | ||
| 2 | option force | ||
| 3 | option f, arg infile | ||
| 4 | option 9 | ||
| 5 | remaining ARGV: myfile | ||
| 6 | |||
| 7 | getopt_long: onefile twofile --best -Williterate -i foo.in threefile | ||
| 8 | option best | ||
| 9 | option illiterate | ||
| 10 | option i, arg foo.in | ||
| 11 | remaining ARGV: onefile twofile threefile | ||
| 12 | |||
| 13 | getopt_long: -1bfast - | ||
| 14 | option 1 | ||
| 15 | option b | ||
| 16 | option f, arg ast | ||
| 17 | option - | ||
| 18 | |||
| 19 | getopt_long: --fast --drinking=guiness -i foo.in somefile | ||
| 20 | option fast | ||
| 21 | option drinking, arg guiness | ||
| 22 | option i, arg foo.in | ||
| 23 | remaining ARGV: somefile | ||
| 24 | |||
| 25 | getopt_long (POSIXLY_CORRECT): myfile --force -f infile -9 | ||
| 26 | remaining ARGV: myfile --force -f infile -9 | ||
| 27 | |||
| 28 | getopt_long (POSIXLY_CORRECT): onefile twofile --best -Williterate -i foo.in threefile | ||
| 29 | remaining ARGV: onefile twofile --best -Williterate -i foo.in threefile | ||
| 30 | |||
| 31 | getopt_long (POSIXLY_CORRECT): -1bfast - | ||
| 32 | option 1 | ||
| 33 | option b | ||
| 34 | option f, arg ast | ||
| 35 | option - | ||
| 36 | |||
| 37 | getopt_long (POSIXLY_CORRECT): --fast --drinking=guiness -i foo.in somefile | ||
| 38 | option fast | ||
| 39 | option drinking, arg guiness | ||
| 40 | option i, arg foo.in | ||
| 41 | remaining ARGV: somefile | ||
| 42 | |||
| 43 | getopt_long_only: myfile -force -f infile -9 | ||
| 44 | option force | ||
| 45 | option f, arg infile | ||
| 46 | option 9 | ||
| 47 | remaining ARGV: myfile | ||
| 48 | |||
| 49 | getopt_long_only: onefile twofile -best -Williterate -i foo.in threefile | ||
| 50 | option best | ||
| 51 | option illiterate | ||
| 52 | option i, arg foo.in | ||
| 53 | remaining ARGV: onefile twofile threefile | ||
| 54 | |||
| 55 | getopt_long_only: -1bfast - | ||
| 56 | option 1 | ||
| 57 | option b | ||
| 58 | option fast | ||
| 59 | option - | ||
| 60 | |||
| 61 | getopt_long_only: --fast -drinking=guiness -i foo.in somefile | ||
| 62 | option fast | ||
| 63 | option drinking, arg guiness | ||
| 64 | option i, arg foo.in | ||
| 65 | remaining ARGV: somefile | ||
| 66 | |||
| 67 | getopt_long_only (POSIXLY_CORRECT): myfile -force -f infile -9 | ||
| 68 | remaining ARGV: myfile -force -f infile -9 | ||
| 69 | |||
| 70 | getopt_long_only (POSIXLY_CORRECT): onefile twofile -best -Williterate -i foo.in threefile | ||
| 71 | remaining ARGV: onefile twofile -best -Williterate -i foo.in threefile | ||
| 72 | |||
| 73 | getopt_long_only (POSIXLY_CORRECT): -1bfast - | ||
| 74 | option 1 | ||
| 75 | option b | ||
| 76 | option fast | ||
| 77 | option - | ||
| 78 | |||
| 79 | getopt_long_only (POSIXLY_CORRECT): --fast -drinking=guiness -i foo.in somefile | ||
| 80 | option fast | ||
| 81 | option drinking, arg guiness | ||
| 82 | option i, arg foo.in | ||
| 83 | remaining ARGV: somefile | ||
| 84 | |||
diff --git a/src/regress/lib/libc/glob/Makefile b/src/regress/lib/libc/glob/Makefile new file mode 100644 index 0000000000..b3f9567833 --- /dev/null +++ b/src/regress/lib/libc/glob/Makefile | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.4 2011/05/01 04:25:40 guenther Exp $ | ||
| 2 | |||
| 3 | PROG= globtest | ||
| 4 | |||
| 5 | run-regress-${PROG}: | ||
| 6 | mkdir -m 755 -p `sed 's@/[^/]*$$@@' ${.CURDIR}/files | sort -u` | ||
| 7 | umask 022; touch `cat ${.CURDIR}/files` | ||
| 8 | chmod 0755 `grep '/r[^/]*$$' ${.CURDIR}/files` | ||
| 9 | chmod 0444 `grep '/s[^/]*$$' ${.CURDIR}/files` | ||
| 10 | chmod 0711 `grep '/t[^/]*$$' ${.CURDIR}/files` | ||
| 11 | ./${PROG} ${.CURDIR}/${PROG}.in | ||
| 12 | |||
| 13 | clean: | ||
| 14 | rm -rf fake ${PROG} ${OBJS} *.core | ||
| 15 | |||
| 16 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/glob/files b/src/regress/lib/libc/glob/files new file mode 100644 index 0000000000..c5e92aacd5 --- /dev/null +++ b/src/regress/lib/libc/glob/files | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | fake/bin/[ | ||
| 2 | fake/bin/cat | ||
| 3 | fake/bin/chgrp | ||
| 4 | fake/bin/chio | ||
| 5 | fake/bin/chmod | ||
| 6 | fake/bin/cksum | ||
| 7 | fake/bin/cp | ||
| 8 | fake/bin/cpio | ||
| 9 | fake/bin/csh | ||
| 10 | fake/bin/date | ||
| 11 | fake/bin/dd | ||
| 12 | fake/bin/df | ||
| 13 | fake/bin/domainname | ||
| 14 | fake/bin/echo | ||
| 15 | fake/bin/ed | ||
| 16 | fake/bin/eject | ||
| 17 | fake/bin/expr | ||
| 18 | fake/bin/hostname | ||
| 19 | fake/bin/kill | ||
| 20 | fake/bin/ksh | ||
| 21 | fake/bin/ln | ||
| 22 | fake/bin/ls | ||
| 23 | fake/bin/md5 | ||
| 24 | fake/bin/mkdir | ||
| 25 | fake/bin/mt | ||
| 26 | fake/bin/mv | ||
| 27 | fake/bin/pax | ||
| 28 | fake/bin/ps | ||
| 29 | fake/bin/pwd | ||
| 30 | fake/bin/rcp | ||
| 31 | fake/bin/rksh | ||
| 32 | fake/bin/rm | ||
| 33 | fake/bin/rmail | ||
| 34 | fake/bin/rmd160 | ||
| 35 | fake/bin/rmdir | ||
| 36 | fake/bin/sh | ||
| 37 | fake/bin/sha1 | ||
| 38 | fake/bin/sha256 | ||
| 39 | fake/bin/sha384 | ||
| 40 | fake/bin/sha512 | ||
| 41 | fake/bin/sleep | ||
| 42 | fake/bin/stty | ||
| 43 | fake/bin/sum | ||
| 44 | fake/bin/sync | ||
| 45 | fake/bin/systrace | ||
| 46 | fake/bin/tar | ||
| 47 | fake/bin/test | ||
diff --git a/src/regress/lib/libc/glob/globtest.c b/src/regress/lib/libc/glob/globtest.c new file mode 100644 index 0000000000..325a7750f0 --- /dev/null +++ b/src/regress/lib/libc/glob/globtest.c | |||
| @@ -0,0 +1,142 @@ | |||
| 1 | /* $OpenBSD: globtest.c,v 1.3 2011/01/07 19:45:44 millert Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Public domain, 2008, Todd C. Miller <Todd.Miller@courtesan.com> | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <err.h> | ||
| 8 | #include <glob.h> | ||
| 9 | #include <stdio.h> | ||
| 10 | #include <stdlib.h> | ||
| 11 | #include <string.h> | ||
| 12 | |||
| 13 | #define MAX_RESULTS 256 | ||
| 14 | |||
| 15 | struct gl_entry { | ||
| 16 | int flags; | ||
| 17 | int nresults; | ||
| 18 | char pattern[1024]; | ||
| 19 | char *results[MAX_RESULTS]; | ||
| 20 | mode_t modes[MAX_RESULTS]; | ||
| 21 | }; | ||
| 22 | |||
| 23 | int test_glob(struct gl_entry *); | ||
| 24 | |||
| 25 | int | ||
| 26 | main(int argc, char **argv) | ||
| 27 | { | ||
| 28 | FILE *fp = stdin; | ||
| 29 | char *buf, *cp; | ||
| 30 | int errors = 0, lineno, mode; | ||
| 31 | struct gl_entry entry; | ||
| 32 | size_t len; | ||
| 33 | |||
| 34 | if (argc > 1) { | ||
| 35 | if ((fp = fopen(argv[1], "r")) == NULL) | ||
| 36 | err(1, "%s", argv[1]); | ||
| 37 | } | ||
| 38 | |||
| 39 | /* | ||
| 40 | * Read in test file, which is formatted thusly: | ||
| 41 | * | ||
| 42 | * [pattern] <flags> | ||
| 43 | * result1 [mode] | ||
| 44 | * result2 [mode] | ||
| 45 | * result3 [mode] | ||
| 46 | * ... | ||
| 47 | * | ||
| 48 | */ | ||
| 49 | lineno = 0; | ||
| 50 | memset(&entry, 0, sizeof(entry)); | ||
| 51 | while ((buf = fgetln(fp, &len)) != NULL) { | ||
| 52 | lineno++; | ||
| 53 | if (buf[len - 1] != '\n') | ||
| 54 | errx(1, "missing newline at EOF"); | ||
| 55 | buf[--len] = '\0'; | ||
| 56 | if (len == 0) | ||
| 57 | continue; /* blank line */ | ||
| 58 | |||
| 59 | if (buf[0] == '[') { | ||
| 60 | /* check previous pattern */ | ||
| 61 | if (entry.pattern[0]) | ||
| 62 | errors += test_glob(&entry); | ||
| 63 | |||
| 64 | /* start new entry */ | ||
| 65 | if ((cp = strrchr(buf + 1, ']')) == NULL) | ||
| 66 | errx(1, "invalid entry on line %d", lineno); | ||
| 67 | len = cp - buf - 1; | ||
| 68 | if (len >= sizeof(entry.pattern)) | ||
| 69 | errx(1, "pattern too big on line %d", lineno); | ||
| 70 | memcpy(entry.pattern, buf + 1, len); | ||
| 71 | entry.pattern[len] = '\0'; | ||
| 72 | |||
| 73 | buf = cp + 2; | ||
| 74 | if (*buf++ != '<') | ||
| 75 | errx(1, "invalid entry on line %d", lineno); | ||
| 76 | if ((cp = strchr(buf, '>')) == NULL) | ||
| 77 | errx(1, "invalid entry on line %d", lineno); | ||
| 78 | entry.flags = (int)strtol(buf, &cp, 0); | ||
| 79 | if (*cp != '>' || entry.flags < 0 || entry.flags > 0x4000) | ||
| 80 | errx(1, "invalid flags: %s", buf); | ||
| 81 | entry.nresults = 0; | ||
| 82 | continue; | ||
| 83 | } | ||
| 84 | if (!entry.pattern[0]) | ||
| 85 | errx(1, "missing entry on line %d", lineno); | ||
| 86 | |||
| 87 | if (entry.nresults + 1 > MAX_RESULTS) { | ||
| 88 | errx(1, "too many results for %s, max %d", | ||
| 89 | entry.pattern, MAX_RESULTS); | ||
| 90 | } | ||
| 91 | if ((cp = strchr(buf, ' ')) != NULL) { | ||
| 92 | *cp++ = '\0'; | ||
| 93 | mode = strtol(cp, NULL, 8); | ||
| 94 | } else | ||
| 95 | mode = -1; | ||
| 96 | entry.modes[entry.nresults] = (mode_t)mode; | ||
| 97 | entry.results[entry.nresults++] = strdup(buf); | ||
| 98 | } | ||
| 99 | if (entry.pattern[0]) | ||
| 100 | errors += test_glob(&entry); /* test last pattern */ | ||
| 101 | exit(errors); | ||
| 102 | } | ||
| 103 | |||
| 104 | int test_glob(struct gl_entry *entry) | ||
| 105 | { | ||
| 106 | glob_t gl; | ||
| 107 | int i = 0; | ||
| 108 | |||
| 109 | if (glob(entry->pattern, entry->flags, NULL, &gl) != 0) | ||
| 110 | errx(1, "glob failed: %s", entry->pattern); | ||
| 111 | |||
| 112 | if (gl.gl_matchc != entry->nresults) | ||
| 113 | goto mismatch; | ||
| 114 | |||
| 115 | for (i = 0; i < gl.gl_matchc; i++) { | ||
| 116 | if (strcmp(gl.gl_pathv[i], entry->results[i]) != 0) | ||
| 117 | goto mismatch; | ||
| 118 | if ((entry->flags & GLOB_KEEPSTAT) != 0) { | ||
| 119 | if (entry->modes[i] == -1 || | ||
| 120 | gl.gl_statv[i] == NULL || | ||
| 121 | entry->modes[i] != gl.gl_statv[i]->st_mode) | ||
| 122 | goto badmode; | ||
| 123 | } | ||
| 124 | free(entry->results[i]); | ||
| 125 | } | ||
| 126 | return (0); | ||
| 127 | badmode: | ||
| 128 | warnx("mismatch mode for pattern %s, flags 0x%x, file \"%s\" " | ||
| 129 | "(found %07o, expected %07o)", entry->pattern, entry->flags, | ||
| 130 | gl.gl_pathv[i], gl.gl_statv[i] ? gl.gl_statv[i]->st_mode : 0, | ||
| 131 | entry->modes[i]); | ||
| 132 | goto cleanup; | ||
| 133 | mismatch: | ||
| 134 | warnx("mismatch for pattern %s, flags 0x%x " | ||
| 135 | "(found \"%s\", expected \"%s\")", entry->pattern, entry->flags, | ||
| 136 | gl.gl_pathv[i], entry->results[i]); | ||
| 137 | cleanup: | ||
| 138 | while (i < gl.gl_matchc) { | ||
| 139 | free(entry->results[i++]); | ||
| 140 | } | ||
| 141 | return (1); | ||
| 142 | } | ||
diff --git a/src/regress/lib/libc/glob/globtest.in b/src/regress/lib/libc/glob/globtest.in new file mode 100644 index 0000000000..2ae3b4dfb2 --- /dev/null +++ b/src/regress/lib/libc/glob/globtest.in | |||
| @@ -0,0 +1,116 @@ | |||
| 1 | [fake/bin/[[:alpha:]]*] <0x0> | ||
| 2 | fake/bin/cat | ||
| 3 | fake/bin/chgrp | ||
| 4 | fake/bin/chio | ||
| 5 | fake/bin/chmod | ||
| 6 | fake/bin/cksum | ||
| 7 | fake/bin/cp | ||
| 8 | fake/bin/cpio | ||
| 9 | fake/bin/csh | ||
| 10 | fake/bin/date | ||
| 11 | fake/bin/dd | ||
| 12 | fake/bin/df | ||
| 13 | fake/bin/domainname | ||
| 14 | fake/bin/echo | ||
| 15 | fake/bin/ed | ||
| 16 | fake/bin/eject | ||
| 17 | fake/bin/expr | ||
| 18 | fake/bin/hostname | ||
| 19 | fake/bin/kill | ||
| 20 | fake/bin/ksh | ||
| 21 | fake/bin/ln | ||
| 22 | fake/bin/ls | ||
| 23 | fake/bin/md5 | ||
| 24 | fake/bin/mkdir | ||
| 25 | fake/bin/mt | ||
| 26 | fake/bin/mv | ||
| 27 | fake/bin/pax | ||
| 28 | fake/bin/ps | ||
| 29 | fake/bin/pwd | ||
| 30 | fake/bin/rcp | ||
| 31 | fake/bin/rksh | ||
| 32 | fake/bin/rm | ||
| 33 | fake/bin/rmail | ||
| 34 | fake/bin/rmd160 | ||
| 35 | fake/bin/rmdir | ||
| 36 | fake/bin/sh | ||
| 37 | fake/bin/sha1 | ||
| 38 | fake/bin/sha256 | ||
| 39 | fake/bin/sha384 | ||
| 40 | fake/bin/sha512 | ||
| 41 | fake/bin/sleep | ||
| 42 | fake/bin/stty | ||
| 43 | fake/bin/sum | ||
| 44 | fake/bin/sync | ||
| 45 | fake/bin/systrace | ||
| 46 | fake/bin/tar | ||
| 47 | fake/bin/test | ||
| 48 | |||
| 49 | [fake/bin/[[:alpha:]]*] <0x4000> | ||
| 50 | fake/bin/cat 0100644 | ||
| 51 | fake/bin/chgrp 0100644 | ||
| 52 | fake/bin/chio 0100644 | ||
| 53 | fake/bin/chmod 0100644 | ||
| 54 | fake/bin/cksum 0100644 | ||
| 55 | fake/bin/cp 0100644 | ||
| 56 | fake/bin/cpio 0100644 | ||
| 57 | fake/bin/csh 0100644 | ||
| 58 | fake/bin/date 0100644 | ||
| 59 | fake/bin/dd 0100644 | ||
| 60 | fake/bin/df 0100644 | ||
| 61 | fake/bin/domainname 0100644 | ||
| 62 | fake/bin/echo 0100644 | ||
| 63 | fake/bin/ed 0100644 | ||
| 64 | fake/bin/eject 0100644 | ||
| 65 | fake/bin/expr 0100644 | ||
| 66 | fake/bin/hostname 0100644 | ||
| 67 | fake/bin/kill 0100644 | ||
| 68 | fake/bin/ksh 0100644 | ||
| 69 | fake/bin/ln 0100644 | ||
| 70 | fake/bin/ls 0100644 | ||
| 71 | fake/bin/md5 0100644 | ||
| 72 | fake/bin/mkdir 0100644 | ||
| 73 | fake/bin/mt 0100644 | ||
| 74 | fake/bin/mv 0100644 | ||
| 75 | fake/bin/pax 0100644 | ||
| 76 | fake/bin/ps 0100644 | ||
| 77 | fake/bin/pwd 0100644 | ||
| 78 | fake/bin/rcp 0100755 | ||
| 79 | fake/bin/rksh 0100755 | ||
| 80 | fake/bin/rm 0100755 | ||
| 81 | fake/bin/rmail 0100755 | ||
| 82 | fake/bin/rmd160 0100755 | ||
| 83 | fake/bin/rmdir 0100755 | ||
| 84 | fake/bin/sh 0100444 | ||
| 85 | fake/bin/sha1 0100444 | ||
| 86 | fake/bin/sha256 0100444 | ||
| 87 | fake/bin/sha384 0100444 | ||
| 88 | fake/bin/sha512 0100444 | ||
| 89 | fake/bin/sleep 0100444 | ||
| 90 | fake/bin/stty 0100444 | ||
| 91 | fake/bin/sum 0100444 | ||
| 92 | fake/bin/sync 0100444 | ||
| 93 | fake/bin/systrace 0100444 | ||
| 94 | fake/bin/tar 0100711 | ||
| 95 | fake/bin/test 0100711 | ||
| 96 | |||
| 97 | [fake/bin/rm{,dir,ail}] <0x80> | ||
| 98 | fake/bin/rm | ||
| 99 | fake/bin/rmdir | ||
| 100 | fake/bin/rmail | ||
| 101 | |||
| 102 | [fake/bin/sha[[:digit:]]] <0x0> | ||
| 103 | fake/bin/sha1 | ||
| 104 | |||
| 105 | [fake/bin/sha[[:digit:]]*] <0x0> | ||
| 106 | fake/bin/sha1 | ||
| 107 | fake/bin/sha256 | ||
| 108 | fake/bin/sha384 | ||
| 109 | fake/bin/sha512 | ||
| 110 | |||
| 111 | [fake/bin/ca[a-z]] <0x0> | ||
| 112 | fake/bin/cat | ||
| 113 | |||
| 114 | [fake/b[a-z]*] <0x4000> | ||
| 115 | fake/bin 0040755 | ||
| 116 | |||
diff --git a/src/regress/lib/libc/hsearch/Makefile b/src/regress/lib/libc/hsearch/Makefile new file mode 100644 index 0000000000..cddc8ac0c4 --- /dev/null +++ b/src/regress/lib/libc/hsearch/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2004/06/24 04:33:07 millert Exp $ | ||
| 2 | |||
| 3 | PROG= hsearchtest | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/hsearch/hsearchtest.c b/src/regress/lib/libc/hsearch/hsearchtest.c new file mode 100644 index 0000000000..8659ef7e77 --- /dev/null +++ b/src/regress/lib/libc/hsearch/hsearchtest.c | |||
| @@ -0,0 +1,122 @@ | |||
| 1 | /* $OpenBSD: hsearchtest.c,v 1.2 2009/10/27 23:59:32 deraadt Exp $ */ | ||
| 2 | /* $NetBSD: hsearchtest.c,v 1.5 2003/07/26 19:38:46 salo Exp $ */ | ||
| 3 | |||
| 4 | /* | ||
| 5 | * Copyright (c) 2001 Christopher G. Demetriou | ||
| 6 | * All rights reserved. | ||
| 7 | * | ||
| 8 | * Redistribution and use in source and binary forms, with or without | ||
| 9 | * modification, are permitted provided that the following conditions | ||
| 10 | * are met: | ||
| 11 | * 1. Redistributions of source code must retain the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer. | ||
| 13 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 14 | * notice, this list of conditions and the following disclaimer in the | ||
| 15 | * documentation and/or other materials provided with the distribution. | ||
| 16 | * 3. All advertising materials mentioning features or use of this software | ||
| 17 | * must display the following acknowledgement: | ||
| 18 | * This product includes software developed for the | ||
| 19 | * NetBSD Project. See http://www.NetBSD.org/ for | ||
| 20 | * information about NetBSD. | ||
| 21 | * 4. The name of the author may not be used to endorse or promote products | ||
| 22 | * derived from this software without specific prior written permission. | ||
| 23 | * | ||
| 24 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | ||
| 25 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
| 26 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
| 27 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| 28 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
| 29 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
| 30 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
| 31 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
| 32 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
| 33 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 34 | * | ||
| 35 | * <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>> | ||
| 36 | */ | ||
| 37 | |||
| 38 | /* | ||
| 39 | * Test program for hsearch() et al. | ||
| 40 | */ | ||
| 41 | |||
| 42 | #include <search.h> | ||
| 43 | #include <stdlib.h> | ||
| 44 | #include <stdio.h> | ||
| 45 | #include <string.h> | ||
| 46 | |||
| 47 | #define TEST(e) ((e) ? (void)0 : testfail(__FILE__, __LINE__, #e)) | ||
| 48 | |||
| 49 | static void | ||
| 50 | testfail(const char *file, unsigned long line, const char *expression) | ||
| 51 | { | ||
| 52 | |||
| 53 | fprintf(stderr, "TEST FAILED: %s: file %s, line %ld\n", | ||
| 54 | expression, file, line); | ||
| 55 | exit(1); | ||
| 56 | } | ||
| 57 | |||
| 58 | int | ||
| 59 | main(int argc, char *argv[]) | ||
| 60 | { | ||
| 61 | ENTRY e, *ep, *ep2; | ||
| 62 | int created_ok; | ||
| 63 | char ch[2]; | ||
| 64 | int i; | ||
| 65 | |||
| 66 | created_ok = hcreate(16); | ||
| 67 | TEST(created_ok); | ||
| 68 | |||
| 69 | /* ch[1] should be constant from here on down. */ | ||
| 70 | ch[1] = '\0'; | ||
| 71 | |||
| 72 | /* Basic insertions. Check enough that there'll be collisions. */ | ||
| 73 | for (i = 0; i < 26; i++) { | ||
| 74 | ch[0] = 'a' + i; | ||
| 75 | e.key = strdup(ch); /* ptr to provided key is kept! */ | ||
| 76 | TEST(e.key != NULL); | ||
| 77 | e.data = (void *)(long)i; | ||
| 78 | ep = hsearch(e, ENTER); | ||
| 79 | TEST(ep != NULL); | ||
| 80 | TEST(strcmp(ep->key, ch) == 0); | ||
| 81 | TEST((long)ep->data == i); | ||
| 82 | } | ||
| 83 | |||
| 84 | /* e.key should be constant from here on down. */ | ||
| 85 | e.key = ch; | ||
| 86 | |||
| 87 | /* Basic lookups. */ | ||
| 88 | for (i = 0; i < 26; i++) { | ||
| 89 | ch[0] = 'a' + i; | ||
| 90 | ep = hsearch(e, FIND); | ||
| 91 | TEST(ep != NULL); | ||
| 92 | TEST(strcmp(ep->key, ch) == 0); | ||
| 93 | TEST((long)ep->data == i); | ||
| 94 | } | ||
| 95 | |||
| 96 | /* Check duplicate entry. Should _not_ overwrite existing data. */ | ||
| 97 | ch[0] = 'a'; | ||
| 98 | e.data = (void *)(long)12345; | ||
| 99 | ep = hsearch(e, FIND); | ||
| 100 | TEST(ep != NULL); | ||
| 101 | TEST(strcmp(ep->key, ch) == 0); | ||
| 102 | TEST((long)ep->data == 0); | ||
| 103 | |||
| 104 | /* Check for something that's not there. */ | ||
| 105 | ch[0] = 'A'; | ||
| 106 | ep = hsearch(e, FIND); | ||
| 107 | TEST(ep == NULL); | ||
| 108 | |||
| 109 | /* Check two at once. */ | ||
| 110 | ch[0] = 'a'; | ||
| 111 | ep = hsearch(e, FIND); | ||
| 112 | ch[0] = 'b'; | ||
| 113 | ep2 = hsearch(e, FIND); | ||
| 114 | TEST(ep != NULL); | ||
| 115 | TEST(strcmp(ep->key, "a") == 0 && (long)ep->data == 0); | ||
| 116 | TEST(ep2 != NULL); | ||
| 117 | TEST(strcmp(ep2->key, "b") == 0 && (long)ep2->data == 1); | ||
| 118 | |||
| 119 | hdestroy(); | ||
| 120 | |||
| 121 | exit(0); | ||
| 122 | } | ||
diff --git a/src/regress/lib/libc/ieeefp/Makefile b/src/regress/lib/libc/ieeefp/Makefile new file mode 100644 index 0000000000..89ff51a2e7 --- /dev/null +++ b/src/regress/lib/libc/ieeefp/Makefile | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.6 2004/01/15 18:53:23 miod Exp $ | ||
| 2 | # $NetBSD: Makefile,v 1.5 1996/04/09 16:54:18 phil Exp $ | ||
| 3 | |||
| 4 | SUBDIR+= except inf infinity round | ||
| 5 | |||
| 6 | install: | ||
| 7 | |||
| 8 | .include <bsd.subdir.mk> | ||
diff --git a/src/regress/lib/libc/ieeefp/except/Makefile b/src/regress/lib/libc/ieeefp/except/Makefile new file mode 100644 index 0000000000..205331548f --- /dev/null +++ b/src/regress/lib/libc/ieeefp/except/Makefile | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.5 2004/07/22 19:29:42 kettenis Exp $ | ||
| 2 | |||
| 3 | PROG=except | ||
| 4 | |||
| 5 | REGRESS_TARGETS+= fltdiv fltinv fltovf fltund | ||
| 6 | |||
| 7 | fltdiv: ${PROG} | ||
| 8 | ./${PROG} fltdiv | ||
| 9 | |||
| 10 | fltinv: ${PROG} | ||
| 11 | ./${PROG} fltinv | ||
| 12 | |||
| 13 | fltovf: ${PROG} | ||
| 14 | ./${PROG} fltovf | ||
| 15 | |||
| 16 | fltund: ${PROG} | ||
| 17 | ./${PROG} fltund | ||
| 18 | |||
| 19 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/ieeefp/except/except.c b/src/regress/lib/libc/ieeefp/except/except.c new file mode 100644 index 0000000000..cc3dcf8e44 --- /dev/null +++ b/src/regress/lib/libc/ieeefp/except/except.c | |||
| @@ -0,0 +1,110 @@ | |||
| 1 | /* $OpenBSD: except.c,v 1.12 2010/05/08 19:16:33 naddy Exp $ */ | ||
| 2 | |||
| 3 | #include <sys/types.h> | ||
| 4 | #include <unistd.h> | ||
| 5 | #include <stdio.h> | ||
| 6 | #include <stdlib.h> | ||
| 7 | #include <string.h> | ||
| 8 | #include <signal.h> | ||
| 9 | #include <assert.h> | ||
| 10 | #include <ieeefp.h> | ||
| 11 | #include <float.h> | ||
| 12 | #include <err.h> | ||
| 13 | |||
| 14 | volatile sig_atomic_t signal_status; | ||
| 15 | |||
| 16 | volatile const double one = 1.0; | ||
| 17 | volatile const double zero = 0.0; | ||
| 18 | volatile const double huge = DBL_MAX; | ||
| 19 | volatile const double tiny = DBL_MIN; | ||
| 20 | |||
| 21 | void | ||
| 22 | sigfpe(int sig, siginfo_t *si, void *v) | ||
| 23 | { | ||
| 24 | char buf[132]; | ||
| 25 | |||
| 26 | if (si) { | ||
| 27 | snprintf(buf, sizeof(buf), "sigfpe: addr=%p, code=%d\n", | ||
| 28 | si->si_addr, si->si_code); | ||
| 29 | write(1, buf, strlen(buf)); | ||
| 30 | } | ||
| 31 | _exit(signal_status); | ||
| 32 | } | ||
| 33 | |||
| 34 | |||
| 35 | int | ||
| 36 | main(int argc, char *argv[]) | ||
| 37 | { | ||
| 38 | struct sigaction sa; | ||
| 39 | volatile double x; | ||
| 40 | |||
| 41 | if (argc != 2) { | ||
| 42 | fprintf(stderr, "usage: %s condition\n", argv[0]); | ||
| 43 | exit(1); | ||
| 44 | } | ||
| 45 | |||
| 46 | /* | ||
| 47 | * check to make sure that all exceptions are masked and | ||
| 48 | * that the accumulated exception status is clear. | ||
| 49 | */ | ||
| 50 | assert(fpgetmask() == 0); | ||
| 51 | assert(fpgetsticky() == 0); | ||
| 52 | |||
| 53 | memset(&sa, 0, sizeof(sa)); | ||
| 54 | sa.sa_sigaction = sigfpe; | ||
| 55 | sa.sa_flags = SA_SIGINFO; | ||
| 56 | sigaction(SIGFPE, &sa, NULL); | ||
| 57 | signal_status = 1; | ||
| 58 | |||
| 59 | if (strcmp(argv[1], "fltdiv") == 0) { | ||
| 60 | /* trip divide by zero */ | ||
| 61 | x = one / zero; | ||
| 62 | assert(fpgetsticky() & FP_X_DZ); | ||
| 63 | fpsetsticky(0); | ||
| 64 | |||
| 65 | /* and now unmask to get a signal */ | ||
| 66 | signal_status = 0; | ||
| 67 | fpsetmask(FP_X_DZ); | ||
| 68 | x = one / zero; | ||
| 69 | } else if (strcmp(argv[1], "fltinv") == 0) { | ||
| 70 | /* trip invalid operation */ | ||
| 71 | x = zero / zero; | ||
| 72 | assert(fpgetsticky() & FP_X_INV); | ||
| 73 | fpsetsticky(0); | ||
| 74 | |||
| 75 | /* and now unmask to get a signal */ | ||
| 76 | signal_status = 0; | ||
| 77 | fpsetmask(FP_X_INV); | ||
| 78 | x = zero / zero; | ||
| 79 | } else if (strcmp(argv[1], "fltovf") == 0) { | ||
| 80 | /* trip overflow */ | ||
| 81 | x = huge * huge; | ||
| 82 | assert(fpgetsticky() & FP_X_OFL); | ||
| 83 | fpsetsticky(0); | ||
| 84 | |||
| 85 | /* and now unmask to get a signal */ | ||
| 86 | signal_status = 0; | ||
| 87 | fpsetmask(FP_X_OFL); | ||
| 88 | x = huge * huge; | ||
| 89 | } else if (strcmp(argv[1], "fltund") == 0) { | ||
| 90 | /* trip underflow */ | ||
| 91 | x = tiny * tiny; | ||
| 92 | assert(fpgetsticky() & FP_X_UFL); | ||
| 93 | fpsetsticky(0); | ||
| 94 | |||
| 95 | /* and now unmask to get a signal */ | ||
| 96 | signal_status = 0; | ||
| 97 | fpsetmask(FP_X_UFL); | ||
| 98 | x = tiny * tiny; | ||
| 99 | } else { | ||
| 100 | errx(1, "unrecognized condition %s", argv[1]); | ||
| 101 | } | ||
| 102 | |||
| 103 | /* | ||
| 104 | * attempt to trigger the exception on machines where | ||
| 105 | * floating-point exceptions are deferred. | ||
| 106 | */ | ||
| 107 | x = one * one; | ||
| 108 | |||
| 109 | errx(1, "signal wasn't caught"); | ||
| 110 | } | ||
diff --git a/src/regress/lib/libc/ieeefp/inf/Makefile b/src/regress/lib/libc/ieeefp/inf/Makefile new file mode 100644 index 0000000000..b9a50e0ce6 --- /dev/null +++ b/src/regress/lib/libc/ieeefp/inf/Makefile | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2002/02/16 17:22:16 pvalchev Exp $ | ||
| 2 | |||
| 3 | PROG= inf | ||
| 4 | SRCS= inf.c | ||
| 5 | |||
| 6 | LDADD+= -lm | ||
| 7 | DPADD+= ${LIBM} | ||
| 8 | |||
| 9 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/ieeefp/inf/inf.c b/src/regress/lib/libc/ieeefp/inf/inf.c new file mode 100644 index 0000000000..a1956145a6 --- /dev/null +++ b/src/regress/lib/libc/ieeefp/inf/inf.c | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | /* $OpenBSD: inf.c,v 1.3 2003/07/31 21:48:03 deraadt Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Peter Valchev <pvalchev@openbsd.org> Public Domain, 2002. | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <math.h> | ||
| 8 | |||
| 9 | int | ||
| 10 | main(int argc, char *argv[]) | ||
| 11 | { | ||
| 12 | if (isinf(HUGE_VAL)) | ||
| 13 | return 0; | ||
| 14 | |||
| 15 | return 1; | ||
| 16 | } | ||
diff --git a/src/regress/lib/libc/ieeefp/infinity/Makefile b/src/regress/lib/libc/ieeefp/infinity/Makefile new file mode 100644 index 0000000000..ac102d8a63 --- /dev/null +++ b/src/regress/lib/libc/ieeefp/infinity/Makefile | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2004/01/16 19:34:37 miod Exp $ | ||
| 2 | |||
| 3 | PROG= infinity | ||
| 4 | |||
| 5 | DPADD+= ${LIBM} | ||
| 6 | LDADD+= -lm | ||
| 7 | |||
| 8 | REGRESS_TARGETS+= add mult neg pumpkin | ||
| 9 | |||
| 10 | add: ${PROG} | ||
| 11 | ./${PROG} -a | ||
| 12 | |||
| 13 | mult: ${PROG} | ||
| 14 | ./${PROG} -m | ||
| 15 | |||
| 16 | neg: ${PROG} | ||
| 17 | ./${PROG} -n | ||
| 18 | |||
| 19 | pumpkin: ${PROG} | ||
| 20 | ./${PROG} -p | ||
| 21 | |||
| 22 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/ieeefp/infinity/infinity.c b/src/regress/lib/libc/ieeefp/infinity/infinity.c new file mode 100644 index 0000000000..3b1b71ec90 --- /dev/null +++ b/src/regress/lib/libc/ieeefp/infinity/infinity.c | |||
| @@ -0,0 +1,77 @@ | |||
| 1 | /* $OpenBSD: infinity.c,v 1.2 2004/01/16 19:34:37 miod Exp $ */ | ||
| 2 | /* | ||
| 3 | * Written by Miodrag Vallat, 2004 - Public Domain | ||
| 4 | * Inspired from Perl's t/op/arith test #134 | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <math.h> | ||
| 8 | #include <signal.h> | ||
| 9 | #include <unistd.h> | ||
| 10 | |||
| 11 | void | ||
| 12 | sigfpe(int signum) | ||
| 13 | { | ||
| 14 | /* looks like we don't handle fp overflow correctly... */ | ||
| 15 | _exit(1); | ||
| 16 | } | ||
| 17 | |||
| 18 | int | ||
| 19 | main(int argc, char *argv[]) | ||
| 20 | { | ||
| 21 | int opt; | ||
| 22 | double d, two; | ||
| 23 | int i; | ||
| 24 | char method = 'a'; | ||
| 25 | |||
| 26 | while ((opt = getopt(argc, argv, "amnp")) != -1) | ||
| 27 | method = (char)opt; | ||
| 28 | |||
| 29 | signal(SIGFPE, sigfpe); | ||
| 30 | |||
| 31 | switch (method) { | ||
| 32 | case 'a': | ||
| 33 | /* try to produce +Inf through addition */ | ||
| 34 | d = 1.0; | ||
| 35 | for (i = 2000; i != 0; i--) { | ||
| 36 | d = d + d; | ||
| 37 | } | ||
| 38 | /* result should be _positive_ infinity */ | ||
| 39 | if (!isinf(d) || copysign(1.0, d) < 0.0) | ||
| 40 | return (1); | ||
| 41 | break; | ||
| 42 | case 'm': | ||
| 43 | /* try to produce +Inf through multiplication */ | ||
| 44 | d = 1.0; | ||
| 45 | two = 2.0; | ||
| 46 | for (i = 2000; i != 0; i--) { | ||
| 47 | d = d * two; | ||
| 48 | } | ||
| 49 | /* result should be _positive_ infinity */ | ||
| 50 | if (!isinf(d) || copysign(1.0, d) < 0.0) | ||
| 51 | return (1); | ||
| 52 | break; | ||
| 53 | case 'n': | ||
| 54 | /* try to produce -Inf through subtraction */ | ||
| 55 | d = -1.0; | ||
| 56 | for (i = 2000; i != 0; i--) { | ||
| 57 | d = d + d; | ||
| 58 | } | ||
| 59 | /* result should be _negative_ infinity */ | ||
| 60 | if (!isinf(d) || copysign(1.0, d) > 0.0) | ||
| 61 | return (1); | ||
| 62 | break; | ||
| 63 | case 'p': | ||
| 64 | /* try to produce -Inf through multiplication */ | ||
| 65 | d = -1.0; | ||
| 66 | two = 2.0; | ||
| 67 | for (i = 2000; i != 0; i--) { | ||
| 68 | d = d * two; | ||
| 69 | } | ||
| 70 | /* result should be _negative_ infinity */ | ||
| 71 | if (!isinf(d) || copysign(1.0, d) > 0.0) | ||
| 72 | return (1); | ||
| 73 | break; | ||
| 74 | } | ||
| 75 | |||
| 76 | return (0); | ||
| 77 | } | ||
diff --git a/src/regress/lib/libc/ieeefp/round/Makefile b/src/regress/lib/libc/ieeefp/round/Makefile new file mode 100644 index 0000000000..9ea6dd8c39 --- /dev/null +++ b/src/regress/lib/libc/ieeefp/round/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.4 2002/02/18 11:25:34 art Exp $ | ||
| 2 | |||
| 3 | PROG= round | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/ieeefp/round/round.c b/src/regress/lib/libc/ieeefp/round/round.c new file mode 100644 index 0000000000..807941ea56 --- /dev/null +++ b/src/regress/lib/libc/ieeefp/round/round.c | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | /* $OpenBSD: round.c,v 1.3 2003/07/31 21:48:03 deraadt Exp $ */ | ||
| 2 | /* $NetBSD: round.c,v 1.1 1995/04/26 00:27:28 jtc Exp $ */ | ||
| 3 | |||
| 4 | /* | ||
| 5 | * Written by J.T. Conklin, Apr 18, 1995 | ||
| 6 | * Public domain. | ||
| 7 | */ | ||
| 8 | |||
| 9 | #include <assert.h> | ||
| 10 | #include <stdlib.h> | ||
| 11 | #include <ieeefp.h> | ||
| 12 | #include <float.h> | ||
| 13 | |||
| 14 | int | ||
| 15 | main(int argc, char *argv[]) | ||
| 16 | { | ||
| 17 | /* | ||
| 18 | * This test would be better if it actually performed some | ||
| 19 | * calculations to verify the selected rounding mode. But | ||
| 20 | * this is probably acceptable since the fp{get,set}round | ||
| 21 | * functions usually just get or set the processors fpu | ||
| 22 | * control word. | ||
| 23 | */ | ||
| 24 | |||
| 25 | assert(fpgetround() == FP_RN); | ||
| 26 | assert(FLT_ROUNDS == 1); | ||
| 27 | |||
| 28 | assert(fpsetround(FP_RP) == FP_RN); | ||
| 29 | assert(fpgetround() == FP_RP); | ||
| 30 | assert(FLT_ROUNDS == 2); | ||
| 31 | |||
| 32 | assert(fpsetround(FP_RM) == FP_RP); | ||
| 33 | assert(fpgetround() == FP_RM); | ||
| 34 | assert(FLT_ROUNDS == 3); | ||
| 35 | |||
| 36 | assert(fpsetround(FP_RZ) == FP_RM); | ||
| 37 | assert(fpgetround() == FP_RZ); | ||
| 38 | assert(FLT_ROUNDS == 0); | ||
| 39 | |||
| 40 | assert(fpsetround(FP_RN) == FP_RZ); | ||
| 41 | assert(fpgetround() == FP_RN); | ||
| 42 | assert(FLT_ROUNDS == 1); | ||
| 43 | |||
| 44 | exit(0); | ||
| 45 | } | ||
diff --git a/src/regress/lib/libc/locale/Makefile b/src/regress/lib/libc/locale/Makefile new file mode 100644 index 0000000000..c182172ba2 --- /dev/null +++ b/src/regress/lib/libc/locale/Makefile | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2005/08/11 21:57:02 espie Exp $ | ||
| 2 | |||
| 3 | SUBDIR+= check_isw | ||
| 4 | |||
| 5 | install: | ||
| 6 | |||
| 7 | .include <bsd.subdir.mk> | ||
diff --git a/src/regress/lib/libc/locale/check_isw/Makefile b/src/regress/lib/libc/locale/check_isw/Makefile new file mode 100644 index 0000000000..0885968fd1 --- /dev/null +++ b/src/regress/lib/libc/locale/check_isw/Makefile | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2005/08/11 21:57:02 espie Exp $ | ||
| 2 | |||
| 3 | NOMAN= | ||
| 4 | PROG=check_isw | ||
| 5 | |||
| 6 | run-regress-check_isw: ${PROG} | ||
| 7 | ./${PROG} >/dev/null | ||
| 8 | |||
| 9 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/locale/check_isw/check_isw.c b/src/regress/lib/libc/locale/check_isw/check_isw.c new file mode 100644 index 0000000000..9386267f61 --- /dev/null +++ b/src/regress/lib/libc/locale/check_isw/check_isw.c | |||
| @@ -0,0 +1,147 @@ | |||
| 1 | /* $OpenBSD: check_isw.c,v 1.1 2005/08/11 21:57:02 espie Exp $ */ | ||
| 2 | /* | ||
| 3 | * Copyright (c) 2005 Marc Espie <espie@openbsd.org> | ||
| 4 | * | ||
| 5 | * Permission to use, copy, modify, and distribute this software for any | ||
| 6 | * purpose with or without fee is hereby granted, provided that the above | ||
| 7 | * copyright notice and this permission notice appear in all copies. | ||
| 8 | * | ||
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 16 | */ | ||
| 17 | |||
| 18 | /* This checks consistency of the isw* functions with the default <ctype> | ||
| 19 | * functions. | ||
| 20 | */ | ||
| 21 | |||
| 22 | #include <stdio.h> | ||
| 23 | #include <stdlib.h> | ||
| 24 | #include <ctype.h> | ||
| 25 | #include <wchar.h> | ||
| 26 | #include <wctype.h> | ||
| 27 | |||
| 28 | int bad = 0; | ||
| 29 | |||
| 30 | void | ||
| 31 | check_bool(int v1, int v2, char msg) | ||
| 32 | { | ||
| 33 | if (!v1 != !v2) { | ||
| 34 | printf("%c", msg); | ||
| 35 | bad++; | ||
| 36 | } | ||
| 37 | } | ||
| 38 | |||
| 39 | void | ||
| 40 | check_value(int v1, int v2, char msg) | ||
| 41 | { | ||
| 42 | if (v1 != v2) { | ||
| 43 | printf("%c", msg); | ||
| 44 | bad++; | ||
| 45 | } | ||
| 46 | } | ||
| 47 | |||
| 48 | void | ||
| 49 | test1() | ||
| 50 | { | ||
| 51 | int i; | ||
| 52 | |||
| 53 | for (i = 0; i < 256; i++) { | ||
| 54 | printf(" %02x: ", i); | ||
| 55 | check_bool(isalnum(i), iswalnum(i), '1'); | ||
| 56 | check_bool(isalpha(i), iswalpha(i), '2'); | ||
| 57 | check_bool(isblank(i), iswblank(i), '3'); | ||
| 58 | check_bool(iscntrl(i), iswcntrl(i), '4'); | ||
| 59 | check_bool(isdigit(i), iswdigit(i), '5'); | ||
| 60 | check_bool(isgraph(i), iswgraph(i), '6'); | ||
| 61 | check_bool(islower(i), iswlower(i), '6'); | ||
| 62 | check_bool(isprint(i), iswprint(i), '7'); | ||
| 63 | check_bool(ispunct(i), iswpunct(i), '8'); | ||
| 64 | check_bool(isspace(i), iswspace(i), '9'); | ||
| 65 | check_bool(isupper(i), iswupper(i), 'a'); | ||
| 66 | check_bool(isxdigit(i), iswxdigit(i), 'b'); | ||
| 67 | check_value(tolower(i), towlower(i), 'c'); | ||
| 68 | check_value(toupper(i), towupper(i), 'd'); | ||
| 69 | if (i % 8 == 7) | ||
| 70 | printf("\n"); | ||
| 71 | } | ||
| 72 | printf("%\n"); | ||
| 73 | } | ||
| 74 | |||
| 75 | void | ||
| 76 | test2() | ||
| 77 | { | ||
| 78 | unsigned char *s; | ||
| 79 | unsigned char *buf; | ||
| 80 | int i, j; | ||
| 81 | size_t n; | ||
| 82 | wchar_t c, d; | ||
| 83 | mbstate_t state; | ||
| 84 | |||
| 85 | s = malloc(256); | ||
| 86 | if (!s) { | ||
| 87 | bad++; | ||
| 88 | return; | ||
| 89 | } | ||
| 90 | buf = malloc(MB_CUR_MAX); | ||
| 91 | if (!buf) { | ||
| 92 | bad++; | ||
| 93 | free(s); | ||
| 94 | return; | ||
| 95 | } | ||
| 96 | for (i = 0; i < 256; i++) | ||
| 97 | s[i] = i+1; | ||
| 98 | |||
| 99 | j = 0; | ||
| 100 | mbrtowc(NULL, NULL, 1, &state); | ||
| 101 | printf(" %02x: ", 0); | ||
| 102 | |||
| 103 | while ((n = mbrtowc(&c, s+j, 256-j, &state)) == 1) { | ||
| 104 | printf(" %02x: ", s[j]); | ||
| 105 | check_bool(isalnum(s[j]), iswalnum(c), '1'); | ||
| 106 | check_bool(isalpha(s[j]), iswalpha(c), '2'); | ||
| 107 | check_bool(isblank(s[j]), iswblank(c), '3'); | ||
| 108 | check_bool(iscntrl(s[j]), iswcntrl(c), '4'); | ||
| 109 | check_bool(isdigit(s[j]), iswdigit(c), '5'); | ||
| 110 | check_bool(isgraph(s[j]), iswgraph(c), '6'); | ||
| 111 | check_bool(islower(s[j]), iswlower(c), '6'); | ||
| 112 | check_bool(isprint(s[j]), iswprint(c), '7'); | ||
| 113 | check_bool(ispunct(s[j]), iswpunct(c), '8'); | ||
| 114 | check_bool(isspace(s[j]), iswspace(c), '9'); | ||
| 115 | check_bool(isupper(s[j]), iswupper(c), 'a'); | ||
| 116 | check_bool(isxdigit(s[j]), iswxdigit(c), 'b'); | ||
| 117 | d = towlower(c); | ||
| 118 | if (wctomb(buf, d) == 1) { | ||
| 119 | check_value(tolower(s[j]), buf[0], 'c'); | ||
| 120 | } else { | ||
| 121 | bad++; | ||
| 122 | } | ||
| 123 | d = towupper(c); | ||
| 124 | if (wctomb(buf, d) == 1) { | ||
| 125 | check_value(toupper(s[j]), buf[0], 'c'); | ||
| 126 | } else { | ||
| 127 | bad++; | ||
| 128 | } | ||
| 129 | if (s[j] % 8 == 7) | ||
| 130 | printf("\n"); | ||
| 131 | j++; | ||
| 132 | } | ||
| 133 | if (n != 0 || j != 255) { | ||
| 134 | bad++; | ||
| 135 | } | ||
| 136 | free(s); | ||
| 137 | free(buf); | ||
| 138 | } | ||
| 139 | |||
| 140 | |||
| 141 | int | ||
| 142 | main() | ||
| 143 | { | ||
| 144 | test1(); | ||
| 145 | test2(); | ||
| 146 | return bad !=0; | ||
| 147 | } | ||
diff --git a/src/regress/lib/libc/longjmp/Makefile b/src/regress/lib/libc/longjmp/Makefile new file mode 100644 index 0000000000..825e0f86d9 --- /dev/null +++ b/src/regress/lib/libc/longjmp/Makefile | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.4 2002/09/02 20:01:43 avsm Exp $ | ||
| 2 | PROG= longjmp | ||
| 3 | |||
| 4 | do-longjmp: ${PROG} | ||
| 5 | ./longjmp | ||
| 6 | |||
| 7 | do-_longjmp: ${PROG} | ||
| 8 | ./longjmp -_ | ||
| 9 | |||
| 10 | REGRESS_TARGETS=do-longjmp do-_longjmp | ||
| 11 | .PHONY: ${REGRESS_TARGETS} | ||
| 12 | |||
| 13 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/longjmp/longjmp.c b/src/regress/lib/libc/longjmp/longjmp.c new file mode 100644 index 0000000000..7dea5bd97c --- /dev/null +++ b/src/regress/lib/libc/longjmp/longjmp.c | |||
| @@ -0,0 +1,71 @@ | |||
| 1 | /* $OpenBSD: longjmp.c,v 1.4 2002/02/18 11:27:45 art Exp $ */ | ||
| 2 | /* | ||
| 3 | * Artur Grabowski <art@openbsd.org>, 2002 Public Domain. | ||
| 4 | */ | ||
| 5 | |||
| 6 | #include <stdio.h> | ||
| 7 | #include <stdlib.h> | ||
| 8 | #include <unistd.h> | ||
| 9 | #include <setjmp.h> | ||
| 10 | #include <err.h> | ||
| 11 | #include <sys/types.h> | ||
| 12 | #include <sys/time.h> | ||
| 13 | #include <sys/resource.h> | ||
| 14 | |||
| 15 | |||
| 16 | jmp_buf buf; | ||
| 17 | |||
| 18 | /* | ||
| 19 | * When longjmp is passed the incorrect arg (0), it should translate it into | ||
| 20 | * something better. | ||
| 21 | * | ||
| 22 | * The rlimit is here in case we start spinning. | ||
| 23 | */ | ||
| 24 | int | ||
| 25 | main(int argc, char **argv) | ||
| 26 | { | ||
| 27 | struct rlimit rl; | ||
| 28 | volatile int i, expect; | ||
| 29 | int (*sj)(jmp_buf); | ||
| 30 | void (*lj)(jmp_buf, int); | ||
| 31 | int ch; | ||
| 32 | extern char *__progname; | ||
| 33 | |||
| 34 | sj = setjmp; | ||
| 35 | lj = longjmp; | ||
| 36 | |||
| 37 | while ((ch = getopt(argc, argv, "_")) != -1) { | ||
| 38 | switch (ch) { | ||
| 39 | case '_': | ||
| 40 | sj = _setjmp; | ||
| 41 | lj = _longjmp; | ||
| 42 | break; | ||
| 43 | default: | ||
| 44 | fprintf(stderr, "Usage: %s [-_]\n", __progname); | ||
| 45 | exit(1); | ||
| 46 | } | ||
| 47 | } | ||
| 48 | |||
| 49 | rl.rlim_cur = 2; | ||
| 50 | rl.rlim_max = 2; | ||
| 51 | if (setrlimit(RLIMIT_CPU, &rl) < 0) | ||
| 52 | err(1, "setrlimit"); | ||
| 53 | |||
| 54 | expect = 0; | ||
| 55 | i = (*sj)(buf); | ||
| 56 | if (i == 0 && expect != 0) | ||
| 57 | errx(1, "setjmp returns 0 on longjmp(.., 0)"); | ||
| 58 | if (expect == 0) { | ||
| 59 | expect = -1; | ||
| 60 | (*lj)(buf, 0); | ||
| 61 | } | ||
| 62 | |||
| 63 | expect = 0; | ||
| 64 | i = (*sj)(buf); | ||
| 65 | if (i != expect) | ||
| 66 | errx(1, "bad return from setjmp %d/%d", expect, i); | ||
| 67 | if (expect < 1000) | ||
| 68 | (*lj)(buf, expect += 2); | ||
| 69 | |||
| 70 | return 0; | ||
| 71 | } | ||
diff --git a/src/regress/lib/libc/malloc/Makefile b/src/regress/lib/libc/malloc/Makefile new file mode 100644 index 0000000000..7c919d1bc2 --- /dev/null +++ b/src/regress/lib/libc/malloc/Makefile | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.5 2006/04/18 19:04:39 otto Exp $ | ||
| 2 | |||
| 3 | SUBDIR+= malloc0test malloc_errno malloc_ulimit1 malloc_ulimit2 | ||
| 4 | |||
| 5 | install: | ||
| 6 | |||
| 7 | .include <bsd.subdir.mk> | ||
diff --git a/src/regress/lib/libc/malloc/malloc0test/Makefile b/src/regress/lib/libc/malloc/malloc0test/Makefile new file mode 100644 index 0000000000..8ed8163a79 --- /dev/null +++ b/src/regress/lib/libc/malloc/malloc0test/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2003/07/15 10:09:37 otto Exp $ | ||
| 2 | |||
| 3 | PROG= malloc0test | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/malloc/malloc0test/malloc0test.c b/src/regress/lib/libc/malloc/malloc0test/malloc0test.c new file mode 100644 index 0000000000..06ff0996ee --- /dev/null +++ b/src/regress/lib/libc/malloc/malloc0test/malloc0test.c | |||
| @@ -0,0 +1,120 @@ | |||
| 1 | /* $OpenBSD: malloc0test.c,v 1.5 2008/04/13 00:22:17 djm Exp $ */ | ||
| 2 | /* | ||
| 3 | * Public domain. 2001, Theo de Raadt | ||
| 4 | */ | ||
| 5 | #include <sys/types.h> | ||
| 6 | #include <sys/signal.h> | ||
| 7 | #include <stdio.h> | ||
| 8 | #include <unistd.h> | ||
| 9 | #include <stdlib.h> | ||
| 10 | #include <setjmp.h> | ||
| 11 | #include <limits.h> | ||
| 12 | #include <errno.h> | ||
| 13 | |||
| 14 | volatile sig_atomic_t got; | ||
| 15 | jmp_buf jmp; | ||
| 16 | |||
| 17 | static void | ||
| 18 | catch(int signo) | ||
| 19 | { | ||
| 20 | got++; | ||
| 21 | longjmp(jmp, 1); | ||
| 22 | } | ||
| 23 | |||
| 24 | static int | ||
| 25 | test(char *p, int size) | ||
| 26 | { | ||
| 27 | signal(SIGSEGV, catch); | ||
| 28 | got = 0; | ||
| 29 | if (setjmp(jmp) == 0) | ||
| 30 | *p = 0; | ||
| 31 | if (setjmp(jmp) == 0) | ||
| 32 | *(p+size-1) = 0; | ||
| 33 | return (got); | ||
| 34 | } | ||
| 35 | |||
| 36 | char *prot_table[] = { | ||
| 37 | "unprotected", | ||
| 38 | "fuckup", | ||
| 39 | "protected" | ||
| 40 | }; | ||
| 41 | |||
| 42 | #define SIZE 10 | ||
| 43 | |||
| 44 | /* | ||
| 45 | * Do random memory allocations. | ||
| 46 | * | ||
| 47 | * For each one, ensure that it is at least 16 bytes in size (that | ||
| 48 | * being what our current malloc returns for the minsize of an | ||
| 49 | * object, alignment wise); | ||
| 50 | * | ||
| 51 | * For zero-byte allocations, check that they are still aligned. | ||
| 52 | * | ||
| 53 | * For each object, ensure that they are correctly protected or not | ||
| 54 | * protected. | ||
| 55 | * | ||
| 56 | * Does not regress test malloc + free combinations ... it should. | ||
| 57 | */ | ||
| 58 | int | ||
| 59 | main(int argc, char *argv[]) | ||
| 60 | { | ||
| 61 | caddr_t blob; | ||
| 62 | int size, tsize; | ||
| 63 | int prot; | ||
| 64 | int rval = 0, fuckup = 0; | ||
| 65 | long limit = 200000, count; | ||
| 66 | int ch, silent = 0; | ||
| 67 | char *ep; | ||
| 68 | extern char *__progname; | ||
| 69 | |||
| 70 | while ((ch = getopt(argc, argv, "sn:")) != -1) { | ||
| 71 | switch (ch) { | ||
| 72 | case 's': | ||
| 73 | silent = 1; | ||
| 74 | break; | ||
| 75 | case 'n': | ||
| 76 | errno = 0; | ||
| 77 | limit = strtol(optarg, &ep, 10); | ||
| 78 | if (optarg[0] == '\0' || *ep != '\0' || | ||
| 79 | (errno == ERANGE && | ||
| 80 | (limit == LONG_MAX || limit == LONG_MIN))) | ||
| 81 | goto usage; | ||
| 82 | break; | ||
| 83 | default: | ||
| 84 | usage: | ||
| 85 | fprintf(stderr, "Usage: %s [-s][-n <count>]\n", | ||
| 86 | __progname); | ||
| 87 | exit(1); | ||
| 88 | } | ||
| 89 | } | ||
| 90 | |||
| 91 | if (limit == 0) | ||
| 92 | limit = LONG_MAX; | ||
| 93 | |||
| 94 | for (count = 0; count < limit; count++) { | ||
| 95 | size = arc4random_uniform(SIZE); | ||
| 96 | blob = malloc(size); | ||
| 97 | if (blob == NULL) { | ||
| 98 | fprintf(stderr, "success: out of memory\n"); | ||
| 99 | exit(rval); | ||
| 100 | } | ||
| 101 | |||
| 102 | tsize = size == 0 ? 16 : size; | ||
| 103 | fuckup = 0; | ||
| 104 | prot = test(blob, tsize); | ||
| 105 | |||
| 106 | if (size == 0 && prot < 2) | ||
| 107 | fuckup = 1; | ||
| 108 | |||
| 109 | if (fuckup) { | ||
| 110 | printf("%8p %6d %20s %10s\n", blob, size, | ||
| 111 | prot_table[prot], fuckup ? "fuckup" : ""); | ||
| 112 | rval = 1; | ||
| 113 | } | ||
| 114 | |||
| 115 | if (!silent && count % 100000 == 0 && count != 0) | ||
| 116 | fprintf(stderr, "count = %ld\n", count); | ||
| 117 | } | ||
| 118 | |||
| 119 | return rval; | ||
| 120 | } | ||
diff --git a/src/regress/lib/libc/malloc/malloc_errno/Makefile b/src/regress/lib/libc/malloc/malloc_errno/Makefile new file mode 100644 index 0000000000..73ebe37491 --- /dev/null +++ b/src/regress/lib/libc/malloc/malloc_errno/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2003/07/15 10:06:31 otto Exp $ | ||
| 2 | |||
| 3 | PROG= malloc_errno | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/malloc/malloc_errno/malloc_errno.c b/src/regress/lib/libc/malloc/malloc_errno/malloc_errno.c new file mode 100644 index 0000000000..896ea3c900 --- /dev/null +++ b/src/regress/lib/libc/malloc/malloc_errno/malloc_errno.c | |||
| @@ -0,0 +1,46 @@ | |||
| 1 | /* $OpenBSD: malloc_errno.c,v 1.4 2003/12/25 18:49:57 miod Exp $ */ | ||
| 2 | /* | ||
| 3 | * Public domain. 2003, Otto Moerbeek | ||
| 4 | */ | ||
| 5 | #include <err.h> | ||
| 6 | #include <errno.h> | ||
| 7 | #include <stdio.h> | ||
| 8 | #include <stdlib.h> | ||
| 9 | |||
| 10 | static void | ||
| 11 | testerrno(size_t sz) | ||
| 12 | { | ||
| 13 | void *p; | ||
| 14 | |||
| 15 | errno = -1; | ||
| 16 | p = malloc(sz); | ||
| 17 | |||
| 18 | if (p == NULL && errno != ENOMEM) | ||
| 19 | errx(1, "fail: %lx %p %d", (unsigned long)sz, p, errno); | ||
| 20 | |||
| 21 | /* if alloc succeeded, test if errno did not change */ | ||
| 22 | if (p != NULL && errno != -1) | ||
| 23 | errx(1, "fail: %lx %p %d", (unsigned long)sz, p, errno); | ||
| 24 | |||
| 25 | free(p); | ||
| 26 | } | ||
| 27 | |||
| 28 | /* | ||
| 29 | * Provide some (silly) arguments to malloc(), and check if ERRNO is set | ||
| 30 | * correctly. | ||
| 31 | */ | ||
| 32 | int | ||
| 33 | main(int argc, char *argv[]) | ||
| 34 | { | ||
| 35 | size_t i; | ||
| 36 | |||
| 37 | testerrno(1); | ||
| 38 | testerrno(100000); | ||
| 39 | testerrno(-1); | ||
| 40 | testerrno(-1000); | ||
| 41 | testerrno(-10000); | ||
| 42 | testerrno(-10000000); | ||
| 43 | for (i = 0; i < 0x10; i++) | ||
| 44 | testerrno(i * 0x10000000); | ||
| 45 | return 0; | ||
| 46 | } | ||
diff --git a/src/regress/lib/libc/malloc/malloc_ulimit1/Makefile b/src/regress/lib/libc/malloc/malloc_ulimit1/Makefile new file mode 100644 index 0000000000..46ced27a98 --- /dev/null +++ b/src/regress/lib/libc/malloc/malloc_ulimit1/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2006/04/18 19:03:30 otto Exp $ | ||
| 2 | |||
| 3 | PROG= malloc_ulimit1 | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/malloc/malloc_ulimit1/malloc_ulimit1.c b/src/regress/lib/libc/malloc/malloc_ulimit1/malloc_ulimit1.c new file mode 100644 index 0000000000..99e805e8e1 --- /dev/null +++ b/src/regress/lib/libc/malloc/malloc_ulimit1/malloc_ulimit1.c | |||
| @@ -0,0 +1,44 @@ | |||
| 1 | /* $OpenBSD: malloc_ulimit1.c,v 1.2 2006/05/16 05:47:13 otto Exp $ */ | ||
| 2 | |||
| 3 | /* Public Domain, 2006, Otto Moerbeek <otto@drijf.net> */ | ||
| 4 | |||
| 5 | #include <sys/types.h> | ||
| 6 | #include <sys/time.h> | ||
| 7 | #include <sys/resource.h> | ||
| 8 | #include <err.h> | ||
| 9 | #include <stdlib.h> | ||
| 10 | #include <stdio.h> | ||
| 11 | |||
| 12 | /* | ||
| 13 | * This code tries to trigger the case present in -current as of April | ||
| 14 | * 2006) where the allocation of the region itself succeeds, but the | ||
| 15 | * page dir entry pages fails. | ||
| 16 | * This in turn trips a "hole in directories" error. | ||
| 17 | * Having a large (512M) ulimit -m helps a lot in triggering the | ||
| 18 | * problem. Note that you may need to run this test multiple times to | ||
| 19 | * see the error. | ||
| 20 | */ | ||
| 21 | |||
| 22 | #define STARTI 1300 | ||
| 23 | #define FACTOR 1024 | ||
| 24 | |||
| 25 | main() | ||
| 26 | { | ||
| 27 | struct rlimit lim; | ||
| 28 | size_t sz; | ||
| 29 | int i; | ||
| 30 | void *p; | ||
| 31 | |||
| 32 | if (getrlimit(RLIMIT_DATA, &lim) == -1) | ||
| 33 | err(1, "getrlimit"); | ||
| 34 | |||
| 35 | sz = lim.rlim_cur / FACTOR; | ||
| 36 | |||
| 37 | for (i = STARTI; i >= 0; i--) { | ||
| 38 | size_t len = (sz-i) * FACTOR; | ||
| 39 | p = malloc(len); | ||
| 40 | free(p); | ||
| 41 | free(malloc(4096)); | ||
| 42 | } | ||
| 43 | return (0); | ||
| 44 | } | ||
diff --git a/src/regress/lib/libc/malloc/malloc_ulimit2/Makefile b/src/regress/lib/libc/malloc/malloc_ulimit2/Makefile new file mode 100644 index 0000000000..bc83666415 --- /dev/null +++ b/src/regress/lib/libc/malloc/malloc_ulimit2/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2006/04/18 19:04:03 otto Exp $ | ||
| 2 | |||
| 3 | PROG= malloc_ulimit2 | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/malloc/malloc_ulimit2/malloc_ulimit2.c b/src/regress/lib/libc/malloc/malloc_ulimit2/malloc_ulimit2.c new file mode 100644 index 0000000000..ca8e8f438a --- /dev/null +++ b/src/regress/lib/libc/malloc/malloc_ulimit2/malloc_ulimit2.c | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | /* $OpenBSD: malloc_ulimit2.c,v 1.2 2006/05/16 05:47:13 otto Exp $ */ | ||
| 2 | |||
| 3 | /* Public Domain, 2006, Otto Moerbeek <otto@drijf.net> */ | ||
| 4 | |||
| 5 | #include <sys/types.h> | ||
| 6 | #include <sys/time.h> | ||
| 7 | #include <sys/resource.h> | ||
| 8 | #include <err.h> | ||
| 9 | #include <stdlib.h> | ||
| 10 | #include <stdio.h> | ||
| 11 | |||
| 12 | #define FACTOR 1024 | ||
| 13 | |||
| 14 | main() | ||
| 15 | { | ||
| 16 | struct rlimit lim; | ||
| 17 | size_t sz; | ||
| 18 | int i; | ||
| 19 | void *p; | ||
| 20 | |||
| 21 | if (getrlimit(RLIMIT_DATA, &lim) == -1) | ||
| 22 | err(1, "getrlimit"); | ||
| 23 | |||
| 24 | sz = lim.rlim_cur / FACTOR; | ||
| 25 | |||
| 26 | for (i = 0; ; i++) { | ||
| 27 | size_t len = (sz-i) * FACTOR; | ||
| 28 | p = malloc(len); | ||
| 29 | if (p != NULL) { | ||
| 30 | free(p); | ||
| 31 | break; | ||
| 32 | } | ||
| 33 | } | ||
| 34 | i += 10; | ||
| 35 | for (; i >= 0; i--) { | ||
| 36 | size_t len = (sz-i) * FACTOR; | ||
| 37 | p = malloc(len); | ||
| 38 | free(p); | ||
| 39 | free(malloc(4096)); | ||
| 40 | } | ||
| 41 | return (0); | ||
| 42 | } | ||
diff --git a/src/regress/lib/libc/mkstemp/Makefile b/src/regress/lib/libc/mkstemp/Makefile new file mode 100644 index 0000000000..dc7eb281a9 --- /dev/null +++ b/src/regress/lib/libc/mkstemp/Makefile | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2010/02/11 07:35:38 guenther Exp $ | ||
| 2 | |||
| 3 | PROG=mkstemp_test | ||
| 4 | CLEANFILES+= ; rm -rf output | ||
| 5 | |||
| 6 | O = output | ||
| 7 | |||
| 8 | # The ktrace/kdump/perl combo verifies that all open() calls that | ||
| 9 | # were passed O_CREAT were also passed O_EXCL | ||
| 10 | run-regress-${PROG}: ${PROG} | ||
| 11 | mkdir -p $O && cd $O && ktrace ../${PROG} | ||
| 12 | cd $O && kdump | perl -mFcntl -nl \ | ||
| 13 | -e '/ open\([^,]*,([^,]+)/ or next;' \ | ||
| 14 | -e '$$f = oct($$1);' \ | ||
| 15 | -e 'if ($$f & O_CREAT && !($$f & O_EXCL)) {' \ | ||
| 16 | -e ' print "FAIL"; exit 1' \ | ||
| 17 | -e '}' | ||
| 18 | |||
| 19 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/mkstemp/mkstemp_test.c b/src/regress/lib/libc/mkstemp/mkstemp_test.c new file mode 100644 index 0000000000..fd133d8368 --- /dev/null +++ b/src/regress/lib/libc/mkstemp/mkstemp_test.c | |||
| @@ -0,0 +1,156 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2010 Philip Guenther <guenther@openbsd.org> | ||
| 3 | * | ||
| 4 | * Public domain. | ||
| 5 | * | ||
| 6 | * Verify that mkstemp() and mkstemps() doesn't overrun or underrun | ||
| 7 | * the template buffer and that it can generate names that don't | ||
| 8 | * contain any X's | ||
| 9 | */ | ||
| 10 | |||
| 11 | #include <sys/param.h> | ||
| 12 | |||
| 13 | #include <err.h> | ||
| 14 | #include <stdio.h> | ||
| 15 | #include <stdlib.h> | ||
| 16 | #include <string.h> | ||
| 17 | #include <sys/mman.h> | ||
| 18 | #include <sys/stat.h> | ||
| 19 | #include <unistd.h> | ||
| 20 | |||
| 21 | #define MAX_TEMPLATE_LEN 10 | ||
| 22 | #define MAX_TRIES 100 | ||
| 23 | |||
| 24 | #define SUFFIX ".suff" | ||
| 25 | #define SLEN (sizeof SUFFIX - 1) | ||
| 26 | |||
| 27 | long pg; | ||
| 28 | |||
| 29 | /* | ||
| 30 | * verify that a path generated by mkstemp() or mkstemp() looks like a | ||
| 31 | * reasonable expansion of the template and matches the fd. Returns true | ||
| 32 | * if all the X's were replaced with non-X's | ||
| 33 | */ | ||
| 34 | int | ||
| 35 | check(int fd, char const *path, char const *prefix, size_t plen, | ||
| 36 | char const *suffix, size_t slen, int tlen) | ||
| 37 | { | ||
| 38 | struct stat sb, fsb; | ||
| 39 | char const *p; | ||
| 40 | |||
| 41 | if (fd < 0) | ||
| 42 | err(1, "mkstemp"); | ||
| 43 | if (stat(path, &sb)) | ||
| 44 | err(1, "stat(%s)", path); | ||
| 45 | if (fstat(fd, &fsb)) | ||
| 46 | err(1, "fstat(%d==%s)", fd, path); | ||
| 47 | if (sb.st_dev != fsb.st_dev || sb.st_ino != fsb.st_ino) | ||
| 48 | errx(1, "stat mismatch"); | ||
| 49 | close(fd); | ||
| 50 | if (memcmp(path, prefix, plen) != 0) | ||
| 51 | errx(1, "prefix changed! %s vs %s", prefix, path); | ||
| 52 | if (memcmp(path + plen + tlen, suffix, slen + 1) != 0) | ||
| 53 | errx(1, "suffix changed! %s vs %s", suffix, path); | ||
| 54 | for (p = path + plen; p < path + plen + tlen; p++) | ||
| 55 | if (*p == '\0') | ||
| 56 | errx(1, "unexpected truncation"); | ||
| 57 | else if (*p == 'X') | ||
| 58 | return 0; | ||
| 59 | return 1; | ||
| 60 | } | ||
| 61 | |||
| 62 | |||
| 63 | void | ||
| 64 | try_mkstemp(char *p, char const *prefix, int len) | ||
| 65 | { | ||
| 66 | char *q; | ||
| 67 | size_t plen = strlen(prefix); | ||
| 68 | int tries, fd; | ||
| 69 | |||
| 70 | for (tries = 0; tries < MAX_TRIES; tries++) { | ||
| 71 | memcpy(p, prefix, plen); | ||
| 72 | memset(p + plen, 'X', len); | ||
| 73 | p[plen + len] = '\0'; | ||
| 74 | fd = mkstemp(p); | ||
| 75 | if (check(fd, p, prefix, plen, "", 0, len)) | ||
| 76 | return; | ||
| 77 | } | ||
| 78 | errx(1, "exceeded MAX_TRIES"); | ||
| 79 | } | ||
| 80 | |||
| 81 | void | ||
| 82 | try_mkstemps(char *p, char const *prefix, int len, char const *suffix) | ||
| 83 | { | ||
| 84 | char *q; | ||
| 85 | size_t plen = strlen(prefix); | ||
| 86 | size_t slen = strlen(suffix); | ||
| 87 | int tries, fd; | ||
| 88 | |||
| 89 | for (tries = 0; tries < MAX_TRIES; tries++) { | ||
| 90 | memcpy(p, prefix, plen); | ||
| 91 | memset(p + plen, 'X', len); | ||
| 92 | memcpy(p + plen + len, suffix, slen + 1); | ||
| 93 | fd = mkstemps(p, slen); | ||
| 94 | if (check(fd, p, prefix, plen, suffix, slen, len)) | ||
| 95 | return; | ||
| 96 | } | ||
| 97 | errx(1, "exceeded MAX_TRIES"); | ||
| 98 | } | ||
| 99 | |||
| 100 | int | ||
| 101 | main(void) | ||
| 102 | { | ||
| 103 | struct stat sb, fsb; | ||
| 104 | char cwd[MAXPATHLEN + 1]; | ||
| 105 | char *p; | ||
| 106 | size_t clen; | ||
| 107 | int i; | ||
| 108 | |||
| 109 | pg = sysconf(_SC_PAGESIZE); | ||
| 110 | if (getcwd(cwd, sizeof cwd - 1) == NULL) | ||
| 111 | err(1, "getcwd"); | ||
| 112 | clen = strlen(cwd); | ||
| 113 | cwd[clen++] = '/'; | ||
| 114 | cwd[clen] = '\0'; | ||
| 115 | p = mmap(NULL, pg * 3, PROT_READ | PROT_WRITE, MAP_ANON, -1, 0); | ||
| 116 | if (p == NULL) | ||
| 117 | err(1, "mmap"); | ||
| 118 | if (mprotect(p, pg, PROT_NONE) || mprotect(p + pg * 2, pg, PROT_NONE)) | ||
| 119 | err(1, "mprotect"); | ||
| 120 | p += pg; | ||
| 121 | |||
| 122 | i = MAX_TEMPLATE_LEN + 1; | ||
| 123 | while (i-- > 1) { | ||
| 124 | /* try first at the start of a page, no prefix */ | ||
| 125 | try_mkstemp(p, "", i); | ||
| 126 | /* now at the end of the page, no prefix */ | ||
| 127 | try_mkstemp(p + pg - i - 1, "", i); | ||
| 128 | /* start of the page, prefixed with the cwd */ | ||
| 129 | try_mkstemp(p, cwd, i); | ||
| 130 | /* how about at the end of the page, prefixed with cwd? */ | ||
| 131 | try_mkstemp(p + pg - clen - i - 1, cwd, i); | ||
| 132 | |||
| 133 | /* again, with mkstemps() and an empty suffix */ | ||
| 134 | /* try first at the start of a page, no prefix */ | ||
| 135 | try_mkstemps(p, "", i, ""); | ||
| 136 | /* now at the end of the page, no prefix */ | ||
| 137 | try_mkstemps(p + pg - i - 1, "", i, ""); | ||
| 138 | /* start of the page, prefixed with the cwd */ | ||
| 139 | try_mkstemps(p, cwd, i, ""); | ||
| 140 | /* how about at the end of the page, prefixed with cwd? */ | ||
| 141 | try_mkstemps(p + pg - clen - i - 1, cwd, i, ""); | ||
| 142 | |||
| 143 | /* mkstemps() and a non-empty suffix */ | ||
| 144 | /* try first at the start of a page, no prefix */ | ||
| 145 | try_mkstemps(p, "", i, SUFFIX); | ||
| 146 | /* now at the end of the page, no prefix */ | ||
| 147 | try_mkstemps(p + pg - i - SLEN - 1, "", i, SUFFIX); | ||
| 148 | /* start of the page, prefixed with the cwd */ | ||
| 149 | try_mkstemps(p, cwd, i, SUFFIX); | ||
| 150 | /* how about at the end of the page, prefixed with cwd? */ | ||
| 151 | try_mkstemps(p + pg - clen - i - SLEN - 1, cwd, i, SUFFIX); | ||
| 152 | |||
| 153 | } | ||
| 154 | |||
| 155 | return 0; | ||
| 156 | } | ||
diff --git a/src/regress/lib/libc/netdb/Makefile b/src/regress/lib/libc/netdb/Makefile new file mode 100644 index 0000000000..8254607227 --- /dev/null +++ b/src/regress/lib/libc/netdb/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2004/10/25 15:10:36 otto Exp $ | ||
| 2 | |||
| 3 | PROG= netdb | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/netdb/netdb.c b/src/regress/lib/libc/netdb/netdb.c new file mode 100644 index 0000000000..fabb3ee4e1 --- /dev/null +++ b/src/regress/lib/libc/netdb/netdb.c | |||
| @@ -0,0 +1,183 @@ | |||
| 1 | /* $OpenBSD: netdb.c,v 1.2 2011/05/01 04:27:07 guenther Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Public domain, 2004, Otto Moerbeek <otto@drijf.net> | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <err.h> | ||
| 8 | #include <netdb.h> | ||
| 9 | #include <stdarg.h> | ||
| 10 | #include <string.h> | ||
| 11 | |||
| 12 | int ret = 0; | ||
| 13 | |||
| 14 | void | ||
| 15 | checkp(int n, struct protoent *p, int proto, const char *name, ...) | ||
| 16 | { | ||
| 17 | va_list va; | ||
| 18 | char *a; | ||
| 19 | int i; | ||
| 20 | |||
| 21 | if (p == NULL) { | ||
| 22 | warnx("%d proto struct is NULL", n); | ||
| 23 | ret = 1; | ||
| 24 | return; | ||
| 25 | } | ||
| 26 | if (p->p_proto != proto) { | ||
| 27 | warnx("%d proto num mismatch %d %d", n, p->p_proto, proto); | ||
| 28 | ret = 1; | ||
| 29 | } | ||
| 30 | if (strcmp(p->p_name, name) != 0) { | ||
| 31 | warnx("%d proto name mismatch %s %s", n, p->p_name, name); | ||
| 32 | ret = 1; | ||
| 33 | } | ||
| 34 | va_start(va, name); | ||
| 35 | a = va_arg(va, char *); | ||
| 36 | i = 0; | ||
| 37 | while (a != NULL) { | ||
| 38 | if (strcmp(p->p_aliases[i], a) != 0) { | ||
| 39 | warnx("%d proto alias mismatch %s %s", n, | ||
| 40 | p->p_aliases[i], a); | ||
| 41 | ret = 1; | ||
| 42 | } | ||
| 43 | i++; | ||
| 44 | a = va_arg(va, char *); | ||
| 45 | } | ||
| 46 | if (p->p_aliases[i] != NULL) { | ||
| 47 | warnx("%d proto alias list does not end with NULL", n); | ||
| 48 | ret = 1; | ||
| 49 | } | ||
| 50 | va_end(va); | ||
| 51 | } | ||
| 52 | |||
| 53 | |||
| 54 | void | ||
| 55 | checks(int n, struct servent *s, int port, const char *proto, | ||
| 56 | const char *name, ...) | ||
| 57 | { | ||
| 58 | va_list va; | ||
| 59 | char *a; | ||
| 60 | int i; | ||
| 61 | |||
| 62 | if (s == NULL) { | ||
| 63 | warnx("%d serv struct is NULL", n); | ||
| 64 | ret = 1; | ||
| 65 | return; | ||
| 66 | } | ||
| 67 | if (s->s_port != ntohs(port)) { | ||
| 68 | warnx("%d port num mismatch %d %d", n, s->s_port, port); | ||
| 69 | ret = 1; | ||
| 70 | } | ||
| 71 | if (strcmp(s->s_name, name) != 0) { | ||
| 72 | warnx("%d serv name mismatch %s %s", n, s->s_name, name); | ||
| 73 | ret = 1; | ||
| 74 | } | ||
| 75 | if (strcmp(s->s_proto, proto) != 0) { | ||
| 76 | warnx("%d serv proto mismatch %s %s", n, s->s_proto, proto); | ||
| 77 | ret = 1; | ||
| 78 | } | ||
| 79 | va_start(va, name); | ||
| 80 | a = va_arg(va, char *); | ||
| 81 | i = 0; | ||
| 82 | while (a != NULL) { | ||
| 83 | if (strcmp(s->s_aliases[i], a) != 0) { | ||
| 84 | warnx("%d serv alias mismatch %s %s", n, | ||
| 85 | s->s_aliases[i], a); | ||
| 86 | ret = 1; | ||
| 87 | } | ||
| 88 | i++; | ||
| 89 | a = va_arg(va, char *); | ||
| 90 | } | ||
| 91 | if (s->s_aliases[i] != NULL) { | ||
| 92 | warnx("%d serv alias list does not end with NULL", n); | ||
| 93 | ret = 1; | ||
| 94 | } | ||
| 95 | va_end(va); | ||
| 96 | } | ||
| 97 | |||
| 98 | int | ||
| 99 | main() | ||
| 100 | { | ||
| 101 | struct protoent *p; | ||
| 102 | struct protoent protoent; | ||
| 103 | struct protoent_data protoent_data; | ||
| 104 | struct servent *s; | ||
| 105 | struct servent servent; | ||
| 106 | struct servent_data servent_data; | ||
| 107 | int r; | ||
| 108 | |||
| 109 | p = getprotobynumber(35); | ||
| 110 | checkp(1, p, 35, "idpr", "IDPR", (char *)NULL); | ||
| 111 | |||
| 112 | p = getprotobyname("igp"); | ||
| 113 | checkp(2, p, 9, "igp", "IGP", (char *) NULL); | ||
| 114 | |||
| 115 | p = getprotobyname("RDP"); | ||
| 116 | checkp(3, p, 27, "rdp", "RDP", (char *) NULL); | ||
| 117 | |||
| 118 | p = getprotobyname("vrrp"); | ||
| 119 | checkp(4, p, 112, "carp", "CARP", "vrrp", (char *) NULL); | ||
| 120 | |||
| 121 | p = getprotobyname("nonexistent"); | ||
| 122 | if (p != NULL) | ||
| 123 | err(1, "nonexistent proto found"); | ||
| 124 | |||
| 125 | memset(&protoent_data, 0, sizeof(protoent_data)); | ||
| 126 | r = getprotobynumber_r(35, &protoent, &protoent_data); | ||
| 127 | if (r != 0) | ||
| 128 | err(1, "proto not found"); | ||
| 129 | |||
| 130 | checkp(5, &protoent, 35, "idpr", "IDPR", (char *)NULL); | ||
| 131 | |||
| 132 | r = getprotobyname_r("vrrp", &protoent, &protoent_data); | ||
| 133 | if (r != 0) | ||
| 134 | err(1, "proto not found"); | ||
| 135 | checkp(6, &protoent, 112, "carp", "CARP", "vrrp", (char *) NULL); | ||
| 136 | |||
| 137 | r = getprotobyname_r("nonexistent", &protoent, &protoent_data); | ||
| 138 | if (r != -1) | ||
| 139 | err(1, "nonexistent proto found"); | ||
| 140 | |||
| 141 | r = getprotobyname_r("", &protoent, &protoent_data); | ||
| 142 | if (r != -1) | ||
| 143 | err(1, "nonexistent proto found"); | ||
| 144 | |||
| 145 | |||
| 146 | r = getprotobynumber_r(256, &protoent, &protoent_data); | ||
| 147 | if (r != -1) | ||
| 148 | err(1, "nonexistent proto found"); | ||
| 149 | |||
| 150 | s = getservbyname("zip", NULL); | ||
| 151 | checks(7, s, 6, "ddp", "zip", (char *)NULL); | ||
| 152 | |||
| 153 | s = getservbyname("nicname", "tcp"); | ||
| 154 | checks(8, s, 43, "tcp", "whois", "nicname", (char *)NULL); | ||
| 155 | |||
| 156 | s = getservbyport(htons(42), "tcp"); | ||
| 157 | checks(9, s, 42, "tcp", "nameserver", "name", (char *)NULL); | ||
| 158 | |||
| 159 | memset(&servent_data, 0, sizeof(servent_data)); | ||
| 160 | r = getservbyname_r("zip", "ddp", &servent, &servent_data); | ||
| 161 | if (r != 0) | ||
| 162 | err(1, "servent not found"); | ||
| 163 | checks(10, &servent, 6, "ddp", "zip", (char *)NULL); | ||
| 164 | |||
| 165 | r = getservbyport_r(htons(520), NULL, &servent, &servent_data); | ||
| 166 | if (r != 0) | ||
| 167 | err(1, "servent not found"); | ||
| 168 | checks(11, &servent, 520, "udp", "route", "router", "routed", (char *)NULL); | ||
| 169 | |||
| 170 | r = getservbyname_r("nonexistent", NULL, &servent, &servent_data); | ||
| 171 | if (r != -1) | ||
| 172 | err(1, "nonexiststent servent found"); | ||
| 173 | |||
| 174 | r = getservbyport_r(htons(50000), NULL, &servent, &servent_data); | ||
| 175 | if (r != -1) | ||
| 176 | err(1, "nonexistent servent found"); | ||
| 177 | |||
| 178 | r = getservbyport_r(htons(520), "tcp", &servent, &servent_data); | ||
| 179 | if (r != -1) | ||
| 180 | err(1, "nonexistent servent found"); | ||
| 181 | |||
| 182 | return ret; | ||
| 183 | } | ||
diff --git a/src/regress/lib/libc/orientation/Makefile b/src/regress/lib/libc/orientation/Makefile new file mode 100644 index 0000000000..5c73702abe --- /dev/null +++ b/src/regress/lib/libc/orientation/Makefile | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2010/06/29 16:20:28 guenther Exp $ | ||
| 2 | |||
| 3 | NOMAN= | ||
| 4 | PROG=orientation_test | ||
| 5 | CPPFLAGS+=-I${.CURDIR}/../../../../lib/libc | ||
| 6 | |||
| 7 | run-regress-${PROG}: ${PROG} | ||
| 8 | ./${PROG} | ||
| 9 | |||
| 10 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/orientation/orientation_test.c b/src/regress/lib/libc/orientation/orientation_test.c new file mode 100644 index 0000000000..1d0911d12f --- /dev/null +++ b/src/regress/lib/libc/orientation/orientation_test.c | |||
| @@ -0,0 +1,251 @@ | |||
| 1 | /* $OpenBSD: orientation_test.c,v 1.3 2011/10/16 14:39:01 stsp Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2009 Philip Guenther | ||
| 5 | * All rights reserved. | ||
| 6 | * | ||
| 7 | * Redistribution and use in source and binary forms, with or without | ||
| 8 | * modification, are permitted provided that the following conditions | ||
| 9 | * are met: | ||
| 10 | * | ||
| 11 | * - Redistributions of source code must retain the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer. | ||
| 13 | * - Redistributions in binary form must reproduce the above | ||
| 14 | * copyright notice, this list of conditions and the following | ||
| 15 | * disclaimer in the documentation and/or other materials provided | ||
| 16 | * with the distribution. | ||
| 17 | * | ||
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
| 19 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
| 20 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
| 21 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
| 22 | * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| 23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
| 24 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
| 25 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
| 26 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
| 28 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
| 29 | * POSSIBILITY OF SUCH DAMAGE. | ||
| 30 | */ | ||
| 31 | |||
| 32 | /* | ||
| 33 | * Test whether the various stdio functions set the stream orientation | ||
| 34 | * ("width") as they should | ||
| 35 | */ | ||
| 36 | |||
| 37 | #include <sys/types.h> | ||
| 38 | #include <err.h> | ||
| 39 | #include <stddef.h> | ||
| 40 | #include <stdio.h> | ||
| 41 | #include <stdlib.h> | ||
| 42 | #include <string.h> | ||
| 43 | #include <unistd.h> | ||
| 44 | #include <wchar.h> | ||
| 45 | |||
| 46 | char filename[] = "/tmp/fwide.XXXXXXXXXX"; | ||
| 47 | |||
| 48 | FILE *dup_stdout = NULL; | ||
| 49 | int failures = 0; | ||
| 50 | |||
| 51 | void | ||
| 52 | fail(int line, int r, char const *expect, char const *test) | ||
| 53 | { | ||
| 54 | failures++; | ||
| 55 | fprintf(dup_stdout, | ||
| 56 | "FAIL: %d: fwide returned %d, expected %s 0 after %s\n", | ||
| 57 | line, r, expect, test); | ||
| 58 | } | ||
| 59 | |||
| 60 | FILE * | ||
| 61 | setup(int line) | ||
| 62 | { | ||
| 63 | FILE *f; | ||
| 64 | int r; | ||
| 65 | |||
| 66 | if ((f = fopen(filename, "r+")) == NULL) | ||
| 67 | err(2, "fopen"); | ||
| 68 | if ((r = fwide(f, 0)) != 0) | ||
| 69 | fail(line, r, "==", "fopen"); | ||
| 70 | return (f); | ||
| 71 | } | ||
| 72 | |||
| 73 | FILE * | ||
| 74 | setup_std(FILE *std, int line) | ||
| 75 | { | ||
| 76 | int r; | ||
| 77 | |||
| 78 | if (freopen(filename, "r+", std) == NULL) | ||
| 79 | err(2, "freopen"); | ||
| 80 | if ((r = fwide(std, 0)) != 0) | ||
| 81 | fail(line, r, "==", "freopen"); | ||
| 82 | return (std); | ||
| 83 | } | ||
| 84 | |||
| 85 | #define TEST_(x, op) \ | ||
| 86 | do { \ | ||
| 87 | f = setup(__LINE__); \ | ||
| 88 | x; \ | ||
| 89 | if (!((r = fwide(f, 0)) op 0)) \ | ||
| 90 | fail(__LINE__, r, #op, #x); \ | ||
| 91 | fclose(f); \ | ||
| 92 | } while (0) | ||
| 93 | |||
| 94 | #define TEST_STD_(std, x, op) \ | ||
| 95 | do { \ | ||
| 96 | f = setup_std(std, __LINE__); \ | ||
| 97 | x; \ | ||
| 98 | if (!((r = fwide(f, 0)) op 0)) \ | ||
| 99 | fail(__LINE__, r, #op, #x); \ | ||
| 100 | } while (0) | ||
| 101 | |||
| 102 | #define TEST_UNCHANGED(x) TEST_(x, ==) | ||
| 103 | #define TEST_NARROW(x) TEST_(x, <) | ||
| 104 | #define TEST_WIDE(x) TEST_(x, >) | ||
| 105 | #define TEST_UNCHANGED_STD(std, x) TEST_STD_(std, x, ==) | ||
| 106 | #define TEST_NARROW_STD(std, x) TEST_STD_(std, x, <) | ||
| 107 | #define TEST_WIDE_STD(std, x) TEST_STD_(std, x, >) | ||
| 108 | |||
| 109 | int | ||
| 110 | main(int argc, char *argv[]) | ||
| 111 | { | ||
| 112 | char buffer[BUFSIZ]; | ||
| 113 | wchar_t wbuffer[BUFSIZ]; | ||
| 114 | FILE *f; | ||
| 115 | off_t off; | ||
| 116 | fpos_t pos; | ||
| 117 | size_t size; | ||
| 118 | int fd, r; | ||
| 119 | char c; | ||
| 120 | wchar_t wc; | ||
| 121 | |||
| 122 | if ((fd = dup(1)) == -1) | ||
| 123 | err(2, "dup"); | ||
| 124 | if ((dup_stdout = fdopen(fd, "w")) == NULL) | ||
| 125 | err(2, "fdopen"); | ||
| 126 | if ((fd = mkstemp(filename)) == -1) | ||
| 127 | err(2, "mkstemp"); | ||
| 128 | if (write(fd, "0123456789\n\n", 12) != 12 || close(fd)) | ||
| 129 | err(2, "write + close"); | ||
| 130 | |||
| 131 | /* status */ | ||
| 132 | TEST_UNCHANGED(fwide(f, 0)); | ||
| 133 | TEST_NARROW(fwide(f, -1)); | ||
| 134 | TEST_WIDE(fwide(f, 1)); | ||
| 135 | TEST_UNCHANGED(feof(f)); | ||
| 136 | TEST_UNCHANGED(ferror(f)); | ||
| 137 | TEST_UNCHANGED(fileno(f)); | ||
| 138 | TEST_UNCHANGED(clearerr(f)); | ||
| 139 | |||
| 140 | /* flush and purge */ | ||
| 141 | TEST_UNCHANGED(fflush(f)); | ||
| 142 | TEST_UNCHANGED(fpurge(f)); | ||
| 143 | |||
| 144 | /* positioning */ | ||
| 145 | TEST_UNCHANGED(fgetpos(f, &pos)); | ||
| 146 | TEST_UNCHANGED(fgetpos(f, &pos); fsetpos(f, &pos)); | ||
| 147 | TEST_UNCHANGED(ftell(f)); | ||
| 148 | TEST_UNCHANGED(ftello(f)); | ||
| 149 | TEST_UNCHANGED(fseek(f, 1, SEEK_CUR)); | ||
| 150 | TEST_UNCHANGED(fseek(f, 1, SEEK_SET)); | ||
| 151 | TEST_UNCHANGED(fseek(f, 1, SEEK_END)); | ||
| 152 | TEST_UNCHANGED(fseeko(f, 1, SEEK_CUR)); | ||
| 153 | TEST_UNCHANGED(fseeko(f, 1, SEEK_SET)); | ||
| 154 | TEST_UNCHANGED(fseeko(f, 1, SEEK_END)); | ||
| 155 | TEST_UNCHANGED(rewind(f)); | ||
| 156 | |||
| 157 | /* buffering */ | ||
| 158 | TEST_UNCHANGED(setbuf(f, NULL)); | ||
| 159 | TEST_UNCHANGED(setbuf(f, buffer)); | ||
| 160 | TEST_UNCHANGED(setvbuf(f, buffer, _IONBF, BUFSIZ)); | ||
| 161 | TEST_UNCHANGED(setvbuf(f, buffer, _IOLBF, BUFSIZ)); | ||
| 162 | TEST_UNCHANGED(setvbuf(f, buffer, _IOFBF, BUFSIZ)); | ||
| 163 | TEST_UNCHANGED(setvbuf(f, NULL, _IONBF, 0)); | ||
| 164 | TEST_UNCHANGED(setvbuf(f, NULL, _IOLBF, 0)); | ||
| 165 | TEST_UNCHANGED(setvbuf(f, NULL, _IOFBF, 0)); | ||
| 166 | TEST_UNCHANGED(setbuffer(f, NULL, 0)); | ||
| 167 | TEST_UNCHANGED(setbuffer(f, buffer, BUFSIZ)); | ||
| 168 | TEST_UNCHANGED(setlinebuf(f)); | ||
| 169 | |||
| 170 | /* locking */ | ||
| 171 | TEST_UNCHANGED(flockfile(f);funlockfile(f)); | ||
| 172 | TEST_UNCHANGED(ftrylockfile(f);funlockfile(f)); | ||
| 173 | |||
| 174 | /* input */ | ||
| 175 | TEST_NARROW(getc(f)); | ||
| 176 | TEST_NARROW(getc_unlocked(f)); | ||
| 177 | TEST_NARROW(fgetc(f)); | ||
| 178 | TEST_NARROW(c = fgetc(f); ungetc(c, f)); | ||
| 179 | TEST_NARROW(fgets(buffer, BUFSIZ, f)); | ||
| 180 | TEST_NARROW(fscanf(f, "%s\n", buffer)); | ||
| 181 | TEST_NARROW(fgetln(f, &size)); | ||
| 182 | |||
| 183 | /* output */ | ||
| 184 | TEST_NARROW(putc('c', f)); | ||
| 185 | TEST_NARROW(putc_unlocked('c', f)); | ||
| 186 | TEST_NARROW(fputc('c', f)); | ||
| 187 | TEST_NARROW(fputs("foo", f)); | ||
| 188 | TEST_NARROW(fprintf(f, "%s\n", "foo")); | ||
| 189 | |||
| 190 | /* input from stdin */ | ||
| 191 | TEST_NARROW_STD(stdin, getchar()); | ||
| 192 | TEST_NARROW_STD(stdin, getchar_unlocked()); | ||
| 193 | TEST_NARROW_STD(stdin, gets(buffer)); | ||
| 194 | TEST_NARROW_STD(stdin, scanf("%s\n", buffer)); | ||
| 195 | |||
| 196 | /* output to stdout */ | ||
| 197 | TEST_NARROW_STD(stdout, putchar('c')); | ||
| 198 | TEST_NARROW_STD(stdout, putchar_unlocked('c')); | ||
| 199 | TEST_NARROW_STD(stdout, puts("foo")); | ||
| 200 | TEST_NARROW_STD(stdout, printf("foo")); | ||
| 201 | |||
| 202 | /* word-size ops */ | ||
| 203 | /* | ||
| 204 | * fread and fwrite are specified as being implemented in | ||
| 205 | * terms of fgetc() and fputc() and therefore must set the | ||
| 206 | * stream orientation to narrow. | ||
| 207 | */ | ||
| 208 | TEST_NARROW(fread(buffer, 4, BUFSIZ / 4, f)); | ||
| 209 | TEST_NARROW(fwrite(buffer, 4, BUFSIZ / 4, f)); | ||
| 210 | |||
| 211 | /* | ||
| 212 | * getw() and putw() aren't specified anywhere but logically | ||
| 213 | * should behave the same as fread/fwrite. Not all OSes agree: | ||
| 214 | * Solaris 10 has them not changing the orientation. | ||
| 215 | */ | ||
| 216 | TEST_NARROW(getw(f)); | ||
| 217 | TEST_NARROW(putw(1234, f)); | ||
| 218 | |||
| 219 | |||
| 220 | /* WIDE CHAR TIME! */ | ||
| 221 | |||
| 222 | /* input */ | ||
| 223 | TEST_WIDE(getwc(f)); | ||
| 224 | TEST_WIDE(fgetwc(f)); | ||
| 225 | TEST_WIDE(wc = fgetwc(f); ungetwc(wc, f)); | ||
| 226 | TEST_WIDE(fgetws(wbuffer, BUFSIZ, f)); | ||
| 227 | TEST_WIDE(fwscanf(f, L"%s\n", wbuffer)); | ||
| 228 | |||
| 229 | /* output */ | ||
| 230 | TEST_WIDE(putwc(L'c', f)); | ||
| 231 | TEST_WIDE(fputwc(L'c', f)); | ||
| 232 | TEST_WIDE(fputws(L"foo", f)); | ||
| 233 | TEST_WIDE(fwprintf(f, L"%s\n", L"foo")); | ||
| 234 | |||
| 235 | /* input from stdin */ | ||
| 236 | TEST_WIDE_STD(stdin, getwchar()); | ||
| 237 | TEST_WIDE_STD(stdin, wscanf(L"%s\n", wbuffer)); | ||
| 238 | |||
| 239 | /* output to stdout */ | ||
| 240 | TEST_WIDE_STD(stdout, putwchar(L'c')); | ||
| 241 | TEST_WIDE_STD(stdout, wprintf(L"foo")); | ||
| 242 | |||
| 243 | |||
| 244 | TEST_UNCHANGED_STD(stderr, perror("foo")); | ||
| 245 | |||
| 246 | remove(filename); | ||
| 247 | if (failures) | ||
| 248 | exit(1); | ||
| 249 | exit(0); | ||
| 250 | } | ||
| 251 | |||
diff --git a/src/regress/lib/libc/popen/Makefile b/src/regress/lib/libc/popen/Makefile new file mode 100644 index 0000000000..25b8668a7a --- /dev/null +++ b/src/regress/lib/libc/popen/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2002/02/16 01:55:09 art Exp $ | ||
| 2 | |||
| 3 | PROG=popen | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/popen/popen.c b/src/regress/lib/libc/popen/popen.c new file mode 100644 index 0000000000..916cb71b03 --- /dev/null +++ b/src/regress/lib/libc/popen/popen.c | |||
| @@ -0,0 +1,98 @@ | |||
| 1 | /* $NetBSD: popen.c,v 1.1 1999/09/30 09:23:23 tron Exp $ */ | ||
| 2 | |||
| 3 | /*- | ||
| 4 | * Copyright (c) 1999 The NetBSD Foundation, Inc. | ||
| 5 | * All rights reserved. | ||
| 6 | * | ||
| 7 | * This code is derived from software contributed to The NetBSD Foundation | ||
| 8 | * by Matthias Scheler. | ||
| 9 | * | ||
| 10 | * Redistribution and use in source and binary forms, with or without | ||
| 11 | * modification, are permitted provided that the following conditions | ||
| 12 | * are met: | ||
| 13 | * 1. Redistributions of source code must retain the above copyright | ||
| 14 | * notice, this list of conditions and the following disclaimer. | ||
| 15 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 16 | * notice, this list of conditions and the following disclaimer in the | ||
| 17 | * documentation and/or other materials provided with the distribution. | ||
| 18 | * | ||
| 19 | * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | ||
| 20 | * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | ||
| 21 | * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
| 22 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | ||
| 23 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
| 24 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
| 25 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
| 26 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
| 27 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
| 28 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
| 29 | * POSSIBILITY OF SUCH DAMAGE. | ||
| 30 | */ | ||
| 31 | |||
| 32 | #include <sys/param.h> | ||
| 33 | |||
| 34 | #include <err.h> | ||
| 35 | #include <errno.h> | ||
| 36 | #include <paths.h> | ||
| 37 | #include <stdio.h> | ||
| 38 | #include <stdlib.h> | ||
| 39 | #include <time.h> | ||
| 40 | #include <unistd.h> | ||
| 41 | |||
| 42 | #define _PATH_CAT "/bin/cat" | ||
| 43 | #define BUFSIZE (640*1024) | ||
| 44 | /* 640KB ought to be enough for everyone. */ | ||
| 45 | #define DATAFILE "popen.data" | ||
| 46 | |||
| 47 | int | ||
| 48 | main(int argc, char **argv) | ||
| 49 | { | ||
| 50 | char *buffer, command[MAXPATHLEN]; | ||
| 51 | int index, in; | ||
| 52 | FILE *pipe; | ||
| 53 | |||
| 54 | if ((buffer = malloc(BUFSIZE*sizeof(char))) == NULL) | ||
| 55 | err(1, NULL); | ||
| 56 | |||
| 57 | for (index=0; index<BUFSIZE; index++) | ||
| 58 | buffer[index]=arc4random(); | ||
| 59 | |||
| 60 | (void)snprintf(command, sizeof(command), "%s >%s", | ||
| 61 | _PATH_CAT, DATAFILE); | ||
| 62 | if ((pipe = popen(command, "w")) == NULL) | ||
| 63 | err(1, "popen write"); | ||
| 64 | |||
| 65 | if (fwrite(buffer, sizeof(char), BUFSIZE, pipe) != BUFSIZE) | ||
| 66 | err(1, "write"); | ||
| 67 | |||
| 68 | if (pclose(pipe) == -1) | ||
| 69 | err(1, "pclose"); | ||
| 70 | |||
| 71 | (void)snprintf(command, sizeof(command), "%s %s", | ||
| 72 | _PATH_CAT, DATAFILE); | ||
| 73 | if ((pipe = popen(command, "r")) == NULL) | ||
| 74 | err(1, "popen read"); | ||
| 75 | |||
| 76 | index = 0; | ||
| 77 | while ((in = fgetc(pipe)) != EOF) | ||
| 78 | if (index == BUFSIZE) { | ||
| 79 | errno = EFBIG; | ||
| 80 | err(1, "read"); | ||
| 81 | } | ||
| 82 | else | ||
| 83 | if ((char)in != buffer[index++]) { | ||
| 84 | errno = EINVAL; | ||
| 85 | err(1, "read"); | ||
| 86 | } | ||
| 87 | |||
| 88 | if (index < BUFSIZE) { | ||
| 89 | errno = EIO; | ||
| 90 | err(1, "read"); | ||
| 91 | } | ||
| 92 | |||
| 93 | if (pclose(pipe) == -1) | ||
| 94 | err(1, "pclose"); | ||
| 95 | |||
| 96 | (void)unlink(DATAFILE); | ||
| 97 | return 0; | ||
| 98 | } | ||
diff --git a/src/regress/lib/libc/printf/Makefile b/src/regress/lib/libc/printf/Makefile new file mode 100644 index 0000000000..c2e2732d6e --- /dev/null +++ b/src/regress/lib/libc/printf/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2008/09/07 20:36:10 martynas Exp $ | ||
| 2 | |||
| 3 | PROG= fp | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/printf/fp.c b/src/regress/lib/libc/printf/fp.c new file mode 100644 index 0000000000..6ed52fdb49 --- /dev/null +++ b/src/regress/lib/libc/printf/fp.c | |||
| @@ -0,0 +1,217 @@ | |||
| 1 | /* $OpenBSD: fp.c,v 1.1 2008/09/07 20:36:10 martynas Exp $ */ | ||
| 2 | /*- | ||
| 3 | * Copyright (c) 2002, 2005 David Schultz <das@FreeBSD.org> | ||
| 4 | * All rights reserved. | ||
| 5 | * | ||
| 6 | * Redistribution and use in source and binary forms, with or without | ||
| 7 | * modification, are permitted provided that the following conditions | ||
| 8 | * are met: | ||
| 9 | * 1. Redistributions of source code must retain the above copyright | ||
| 10 | * notice, this list of conditions and the following disclaimer. | ||
| 11 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer in the | ||
| 13 | * documentation and/or other materials provided with the distribution. | ||
| 14 | * | ||
| 15 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | ||
| 16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 17 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 18 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
| 19 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 20 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 21 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 22 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 23 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 24 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 25 | * SUCH DAMAGE. | ||
| 26 | */ | ||
| 27 | |||
| 28 | /* | ||
| 29 | * Test for printf() floating point formats. | ||
| 30 | */ | ||
| 31 | |||
| 32 | #include <assert.h> | ||
| 33 | #include <err.h> | ||
| 34 | #include <float.h> | ||
| 35 | #include <math.h> | ||
| 36 | #include <stdio.h> | ||
| 37 | #include <stdarg.h> | ||
| 38 | #include <stdint.h> | ||
| 39 | #include <stdlib.h> | ||
| 40 | #include <string.h> | ||
| 41 | |||
| 42 | #define testfmt(result, fmt, ...) \ | ||
| 43 | _testfmt((result), __LINE__, #__VA_ARGS__, fmt, __VA_ARGS__) | ||
| 44 | void _testfmt(const char *, int, const char *, const char *, ...); | ||
| 45 | void smash_stack(void); | ||
| 46 | |||
| 47 | int | ||
| 48 | main(int argc, char *argv[]) | ||
| 49 | { | ||
| 50 | /* | ||
| 51 | * Basic tests of decimal output functionality. | ||
| 52 | */ | ||
| 53 | testfmt(" 1.000000E+00", "%13E", 1.0); | ||
| 54 | testfmt(" 1.000000", "%13f", 1.0); | ||
| 55 | testfmt(" 1", "%13G", 1.0); | ||
| 56 | testfmt(" 1.000000E+00", "%13LE", 1.0L); | ||
| 57 | testfmt(" 1.000000", "%13Lf", 1.0L); | ||
| 58 | testfmt(" 1", "%13LG", 1.0L); | ||
| 59 | |||
| 60 | testfmt("2.718282", "%.*f", -2, 2.7182818); | ||
| 61 | |||
| 62 | testfmt("1.234568e+06", "%e", 1234567.8); | ||
| 63 | testfmt("1234567.800000", "%f", 1234567.8); | ||
| 64 | testfmt("1.23457E+06", "%G", 1234567.8); | ||
| 65 | testfmt("1.234568e+06", "%Le", 1234567.8L); | ||
| 66 | testfmt("1234567.800000", "%Lf", 1234567.8L); | ||
| 67 | testfmt("1.23457E+06", "%LG", 1234567.8L); | ||
| 68 | |||
| 69 | #if (LDBL_MANT_DIG > DBL_MANT_DIG) && !defined(__i386__) | ||
| 70 | testfmt("123456789.864210", "%Lf", 123456789.8642097531L); | ||
| 71 | testfmt("-1.23457E+08", "%LG", -123456789.8642097531L); | ||
| 72 | testfmt("123456789.8642097531", "%.10Lf", 123456789.8642097531L); | ||
| 73 | testfmt(" 3.141592653589793238e-4000", "%L27.18Le", | ||
| 74 | 3.14159265358979323846e-4000L); | ||
| 75 | #endif /* (LDBL_MANT_DIG > DBL_MANT_DIG) && !defined(__i386__) */ | ||
| 76 | |||
| 77 | /* | ||
| 78 | * Infinities and NaNs | ||
| 79 | */ | ||
| 80 | #ifdef NAN | ||
| 81 | testfmt("nan", "%e", NAN); | ||
| 82 | testfmt("NAN", "%F", NAN); | ||
| 83 | testfmt("nan", "%g", NAN); | ||
| 84 | testfmt("NAN", "%LE", (long double)NAN); | ||
| 85 | testfmt(" nan", "%05e", NAN); | ||
| 86 | #endif /* NAN */ | ||
| 87 | |||
| 88 | testfmt("INF", "%E", HUGE_VAL); | ||
| 89 | testfmt("-inf", "%f", -HUGE_VAL); | ||
| 90 | testfmt("+inf", "%+g", HUGE_VAL); | ||
| 91 | testfmt(" inf", "%4.2Le", HUGE_VALL); | ||
| 92 | testfmt("-inf", "%Lf", -HUGE_VALL); | ||
| 93 | testfmt(" inf", "%05e", HUGE_VAL); | ||
| 94 | testfmt(" -inf", "%05e", -HUGE_VAL); | ||
| 95 | |||
| 96 | /* | ||
| 97 | * Padding | ||
| 98 | */ | ||
| 99 | testfmt("0.000000e+00", "%e", 0.0); | ||
| 100 | testfmt("0.000000", "%F", (double)0.0); | ||
| 101 | testfmt("0", "%G", 0.0); | ||
| 102 | testfmt(" 0", "%3.0Lg", 0.0L); | ||
| 103 | testfmt(" 0", "%5.0f", 0.001); | ||
| 104 | |||
| 105 | /* | ||
| 106 | * Precision specifiers | ||
| 107 | */ | ||
| 108 | testfmt("1.0123e+00", "%.4e", 1.0123456789); | ||
| 109 | testfmt("1.0123", "%.4f", 1.0123456789); | ||
| 110 | testfmt("1.012", "%.4g", 1.0123456789); | ||
| 111 | testfmt("1.2346e-02", "%.4e", 0.0123456789); | ||
| 112 | testfmt("0.0123", "%.4f", 0.0123456789); | ||
| 113 | testfmt("0.01235", "%.4g", 0.0123456789); | ||
| 114 | |||
| 115 | /* | ||
| 116 | * Signed conversions | ||
| 117 | */ | ||
| 118 | testfmt("+2.500000e-01", "%+e", 0.25); | ||
| 119 | testfmt("+0.000000", "%+F", 0.0); | ||
| 120 | testfmt("-1", "%+g", -1.0); | ||
| 121 | |||
| 122 | testfmt("-1.000000e+00", "% e", -1.0); | ||
| 123 | testfmt("+1.000000", "% +f", 1.0); | ||
| 124 | testfmt(" 1", "% g", 1.0); | ||
| 125 | testfmt(" 0", "% g", 0.0); | ||
| 126 | |||
| 127 | /* | ||
| 128 | * ``Alternate form'' | ||
| 129 | */ | ||
| 130 | testfmt("1.250e+00", "%#.3e", 1.25); | ||
| 131 | testfmt("123.000000", "%#f", 123.0); | ||
| 132 | testfmt(" 12345.", "%#7.5g", 12345.0); | ||
| 133 | testfmt(" 1.00000", "%#8g", 1.0); | ||
| 134 | testfmt("0.0", "%#.2g", 0.0); | ||
| 135 | |||
| 136 | /* | ||
| 137 | * Padding and decimal point placement | ||
| 138 | */ | ||
| 139 | testfmt("03.2E+00", "%08.1E", 3.25); | ||
| 140 | testfmt("003.25", "%06.2F", 3.25); | ||
| 141 | testfmt("0003.25", "%07.4G", 3.25); | ||
| 142 | |||
| 143 | testfmt("3.14159e-05", "%g", 3.14159e-5); | ||
| 144 | testfmt("0.000314159", "%g", 3.14159e-4); | ||
| 145 | testfmt("3.14159e+06", "%g", 3.14159e6); | ||
| 146 | testfmt("314159", "%g", 3.14159e5); | ||
| 147 | testfmt("314159.", "%#g", 3.14159e5); | ||
| 148 | |||
| 149 | testfmt(" 9.000000e+03", "%13e", 9000.0); | ||
| 150 | testfmt(" 9000.000000", "%12f", 9000.0); | ||
| 151 | testfmt(" 9000", "%5g", 9000.0); | ||
| 152 | testfmt(" 900000.", "%#8g", 900000.0); | ||
| 153 | testfmt(" 9e+06", "%6g", 9000000.0); | ||
| 154 | testfmt(" 9.000000e-04", "%13e", 0.0009); | ||
| 155 | testfmt(" 0.000900", "%9f", 0.0009); | ||
| 156 | testfmt(" 0.0009", "%7g", 0.0009); | ||
| 157 | testfmt(" 9e-05", "%6g", 0.00009); | ||
| 158 | testfmt(" 9.00000e-05", "%#12g", 0.00009); | ||
| 159 | testfmt(" 9.e-05", "%#7.1g", 0.00009); | ||
| 160 | |||
| 161 | testfmt(" 0.0", "%4.1f", 0.0); | ||
| 162 | testfmt("90.0", "%4.1f", 90.0); | ||
| 163 | testfmt(" 100", "%4.0f", 100.0); | ||
| 164 | testfmt("9.0e+01", "%4.1e", 90.0); | ||
| 165 | testfmt("1e+02", "%4.0e", 100.0); | ||
| 166 | |||
| 167 | /* | ||
| 168 | * Hexadecimal floating point (%a, %A) tests. Some of these | ||
| 169 | * are only valid if the implementation converts to hex digits | ||
| 170 | * on nibble boundaries. | ||
| 171 | */ | ||
| 172 | testfmt("0x0p+0", "%a", 0x0.0p0); | ||
| 173 | testfmt("0X0.P+0", "%#LA", 0x0.0p0L); | ||
| 174 | #ifdef NAN | ||
| 175 | testfmt("inf", "%La", (long double)INFINITY); | ||
| 176 | testfmt("+INF", "%+A", INFINITY); | ||
| 177 | testfmt("nan", "%La", (long double)NAN); | ||
| 178 | testfmt("NAN", "%A", NAN); | ||
| 179 | #endif /* NAN */ | ||
| 180 | |||
| 181 | testfmt(" 0x1.23p+0", "%10a", 0x1.23p0); | ||
| 182 | testfmt(" 0x1.23p-500", "%12a", 0x1.23p-500); | ||
| 183 | testfmt(" 0x1.2p+40", "%10.1a", 0x1.23p40); | ||
| 184 | testfmt(" 0X1.230000000000000000000000P-4", "%32.24A", 0x1.23p-4); | ||
| 185 | testfmt("0x1p-1074", "%a", 0x1p-1074); | ||
| 186 | testfmt("0x1.2345p-1024", "%a", 0x1.2345p-1024); | ||
| 187 | |||
| 188 | return (0); | ||
| 189 | } | ||
| 190 | |||
| 191 | void | ||
| 192 | smash_stack(void) | ||
| 193 | { | ||
| 194 | static uint32_t junk = 0xdeadbeef; | ||
| 195 | uint32_t buf[512]; | ||
| 196 | int i; | ||
| 197 | |||
| 198 | for (i = 0; i < sizeof(buf) / sizeof(buf[0]); i++) | ||
| 199 | buf[i] = junk; | ||
| 200 | } | ||
| 201 | |||
| 202 | void | ||
| 203 | _testfmt(const char *result, int line, const char *argstr, const char *fmt,...) | ||
| 204 | { | ||
| 205 | char s[100]; | ||
| 206 | va_list ap; | ||
| 207 | |||
| 208 | va_start(ap, fmt); | ||
| 209 | smash_stack(); | ||
| 210 | vsnprintf(s, sizeof(s), fmt, ap); | ||
| 211 | if (strcmp(result, s) != 0) { | ||
| 212 | fprintf(stderr, | ||
| 213 | "%d: printf(\"%s\", %s) ==> [%s], expected [%s]\n", | ||
| 214 | line, fmt, argstr, s, result); | ||
| 215 | abort(); | ||
| 216 | } | ||
| 217 | } | ||
diff --git a/src/regress/lib/libc/regex/Makefile b/src/regress/lib/libc/regex/Makefile new file mode 100644 index 0000000000..6b646a46ac --- /dev/null +++ b/src/regress/lib/libc/regex/Makefile | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.8 2011/11/05 15:07:12 otto Exp $ | ||
| 2 | # $NetBSD: Makefile,v 1.2 1995/02/16 19:38:45 cgd Exp $ | ||
| 3 | |||
| 4 | PROG= re | ||
| 5 | SRCS= main.c split.c debug.c regcomp.c regerror.c regexec.c regfree.c | ||
| 6 | .PATH: ${.CURDIR}/../../../../lib/libc/regex | ||
| 7 | CLEANFILES += t_exhaust | ||
| 8 | |||
| 9 | CFLAGS+= -I${.CURDIR}/../../../../lib/libc/regex -DREDEBUG -DPOSIX_MISTAKE | ||
| 10 | |||
| 11 | TESTS= ${.CURDIR}/tests | ||
| 12 | |||
| 13 | REGRESS_TARGETS=do-reg do-reg-long do-reg-backref do-t_exhaust | ||
| 14 | |||
| 15 | do-reg: ${PROG} | ||
| 16 | ./re < ${TESTS} | ||
| 17 | do-reg-long: ${PROG} | ||
| 18 | ./re -el < ${TESTS} | ||
| 19 | do-reg-backref: ${PROG} | ||
| 20 | ./re -er < ${TESTS} | ||
| 21 | do-t_exhaust: t_exhaust | ||
| 22 | ./t_exhaust | ||
| 23 | |||
| 24 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/regex/debug.c b/src/regress/lib/libc/regex/debug.c new file mode 100644 index 0000000000..11129e7249 --- /dev/null +++ b/src/regress/lib/libc/regex/debug.c | |||
| @@ -0,0 +1,245 @@ | |||
| 1 | /* $OpenBSD: debug.c,v 1.4 2003/07/31 21:48:03 deraadt Exp $ */ | ||
| 2 | /* $NetBSD: debug.c,v 1.2 1995/04/20 22:39:42 cgd Exp $ */ | ||
| 3 | |||
| 4 | #include <stdio.h> | ||
| 5 | #include <string.h> | ||
| 6 | #include <ctype.h> | ||
| 7 | #include <limits.h> | ||
| 8 | #include <stdlib.h> | ||
| 9 | #include <sys/types.h> | ||
| 10 | #include <regex.h> | ||
| 11 | |||
| 12 | #include "utils.h" | ||
| 13 | #include "regex2.h" | ||
| 14 | #include "debug.ih" | ||
| 15 | |||
| 16 | /* | ||
| 17 | - regprint - print a regexp for debugging | ||
| 18 | == void regprint(regex_t *r, FILE *d); | ||
| 19 | */ | ||
| 20 | void | ||
| 21 | regprint(r, d) | ||
| 22 | regex_t *r; | ||
| 23 | FILE *d; | ||
| 24 | { | ||
| 25 | register struct re_guts *g = r->re_g; | ||
| 26 | register int i; | ||
| 27 | register int c; | ||
| 28 | register int last; | ||
| 29 | int nincat[NC]; | ||
| 30 | |||
| 31 | fprintf(d, "%ld states, %d categories", (long)g->nstates, | ||
| 32 | g->ncategories); | ||
| 33 | fprintf(d, ", first %ld last %ld", (long)g->firststate, | ||
| 34 | (long)g->laststate); | ||
| 35 | if (g->iflags&USEBOL) | ||
| 36 | fprintf(d, ", USEBOL"); | ||
| 37 | if (g->iflags&USEEOL) | ||
| 38 | fprintf(d, ", USEEOL"); | ||
| 39 | if (g->iflags&BAD) | ||
| 40 | fprintf(d, ", BAD"); | ||
| 41 | if (g->nsub > 0) | ||
| 42 | fprintf(d, ", nsub=%ld", (long)g->nsub); | ||
| 43 | if (g->must != NULL) | ||
| 44 | fprintf(d, ", must(%ld) `%*s'", (long)g->mlen, (int)g->mlen, | ||
| 45 | g->must); | ||
| 46 | if (g->backrefs) | ||
| 47 | fprintf(d, ", backrefs"); | ||
| 48 | if (g->nplus > 0) | ||
| 49 | fprintf(d, ", nplus %ld", (long)g->nplus); | ||
| 50 | fprintf(d, "\n"); | ||
| 51 | s_print(g, d); | ||
| 52 | for (i = 0; i < g->ncategories; i++) { | ||
| 53 | nincat[i] = 0; | ||
| 54 | for (c = CHAR_MIN; c <= CHAR_MAX; c++) | ||
| 55 | if (g->categories[c] == i) | ||
| 56 | nincat[i]++; | ||
| 57 | } | ||
| 58 | fprintf(d, "cc0#%d", nincat[0]); | ||
| 59 | for (i = 1; i < g->ncategories; i++) | ||
| 60 | if (nincat[i] == 1) { | ||
| 61 | for (c = CHAR_MIN; c <= CHAR_MAX; c++) | ||
| 62 | if (g->categories[c] == i) | ||
| 63 | break; | ||
| 64 | fprintf(d, ", %d=%s", i, regchar(c)); | ||
| 65 | } | ||
| 66 | fprintf(d, "\n"); | ||
| 67 | for (i = 1; i < g->ncategories; i++) | ||
| 68 | if (nincat[i] != 1) { | ||
| 69 | fprintf(d, "cc%d\t", i); | ||
| 70 | last = -1; | ||
| 71 | for (c = CHAR_MIN; c <= CHAR_MAX+1; c++) /* +1 does flush */ | ||
| 72 | if (c <= CHAR_MAX && g->categories[c] == i) { | ||
| 73 | if (last < 0) { | ||
| 74 | fprintf(d, "%s", regchar(c)); | ||
| 75 | last = c; | ||
| 76 | } | ||
| 77 | } else { | ||
| 78 | if (last >= 0) { | ||
| 79 | if (last != c-1) | ||
| 80 | fprintf(d, "-%s", | ||
| 81 | regchar(c-1)); | ||
| 82 | last = -1; | ||
| 83 | } | ||
| 84 | } | ||
| 85 | fprintf(d, "\n"); | ||
| 86 | } | ||
| 87 | } | ||
| 88 | |||
| 89 | /* | ||
| 90 | - s_print - print the strip for debugging | ||
| 91 | == static void s_print(register struct re_guts *g, FILE *d); | ||
| 92 | */ | ||
| 93 | static void | ||
| 94 | s_print(g, d) | ||
| 95 | register struct re_guts *g; | ||
| 96 | FILE *d; | ||
| 97 | { | ||
| 98 | register sop *s; | ||
| 99 | register cset *cs; | ||
| 100 | register int i; | ||
| 101 | register int done = 0; | ||
| 102 | register sop opnd; | ||
| 103 | register int col = 0; | ||
| 104 | register int last; | ||
| 105 | register sopno offset = 2; | ||
| 106 | # define GAP() { if (offset % 5 == 0) { \ | ||
| 107 | if (col > 40) { \ | ||
| 108 | fprintf(d, "\n\t"); \ | ||
| 109 | col = 0; \ | ||
| 110 | } else { \ | ||
| 111 | fprintf(d, " "); \ | ||
| 112 | col++; \ | ||
| 113 | } \ | ||
| 114 | } else \ | ||
| 115 | col++; \ | ||
| 116 | offset++; \ | ||
| 117 | } | ||
| 118 | |||
| 119 | if (OP(g->strip[0]) != OEND) | ||
| 120 | fprintf(d, "missing initial OEND!\n"); | ||
| 121 | for (s = &g->strip[1]; !done; s++) { | ||
| 122 | opnd = OPND(*s); | ||
| 123 | switch (OP(*s)) { | ||
| 124 | case OEND: | ||
| 125 | fprintf(d, "\n"); | ||
| 126 | done = 1; | ||
| 127 | break; | ||
| 128 | case OCHAR: | ||
| 129 | if (strchr("\\|()^$.[+*?{}!<> ", (char)opnd) != NULL) | ||
| 130 | fprintf(d, "\\%c", (char)opnd); | ||
| 131 | else | ||
| 132 | fprintf(d, "%s", regchar((char)opnd)); | ||
| 133 | break; | ||
| 134 | case OBOL: | ||
| 135 | fprintf(d, "^"); | ||
| 136 | break; | ||
| 137 | case OEOL: | ||
| 138 | fprintf(d, "$"); | ||
| 139 | break; | ||
| 140 | case OBOW: | ||
| 141 | fprintf(d, "\\{"); | ||
| 142 | break; | ||
| 143 | case OEOW: | ||
| 144 | fprintf(d, "\\}"); | ||
| 145 | break; | ||
| 146 | case OANY: | ||
| 147 | fprintf(d, "."); | ||
| 148 | break; | ||
| 149 | case OANYOF: | ||
| 150 | fprintf(d, "[(%ld)", (long)opnd); | ||
| 151 | cs = &g->sets[opnd]; | ||
| 152 | last = -1; | ||
| 153 | for (i = 0; i < g->csetsize+1; i++) /* +1 flushes */ | ||
| 154 | if (CHIN(cs, i) && i < g->csetsize) { | ||
| 155 | if (last < 0) { | ||
| 156 | fprintf(d, "%s", regchar(i)); | ||
| 157 | last = i; | ||
| 158 | } | ||
| 159 | } else { | ||
| 160 | if (last >= 0) { | ||
| 161 | if (last != i-1) | ||
| 162 | fprintf(d, "-%s", | ||
| 163 | regchar(i-1)); | ||
| 164 | last = -1; | ||
| 165 | } | ||
| 166 | } | ||
| 167 | fprintf(d, "]"); | ||
| 168 | break; | ||
| 169 | case OBACK_: | ||
| 170 | fprintf(d, "(\\<%ld>", (long)opnd); | ||
| 171 | break; | ||
| 172 | case O_BACK: | ||
| 173 | fprintf(d, "<%ld>\\)", (long)opnd); | ||
| 174 | break; | ||
| 175 | case OPLUS_: | ||
| 176 | fprintf(d, "(+"); | ||
| 177 | if (OP(*(s+opnd)) != O_PLUS) | ||
| 178 | fprintf(d, "<%ld>", (long)opnd); | ||
| 179 | break; | ||
| 180 | case O_PLUS: | ||
| 181 | if (OP(*(s-opnd)) != OPLUS_) | ||
| 182 | fprintf(d, "<%ld>", (long)opnd); | ||
| 183 | fprintf(d, "+)"); | ||
| 184 | break; | ||
| 185 | case OQUEST_: | ||
| 186 | fprintf(d, "(?"); | ||
| 187 | if (OP(*(s+opnd)) != O_QUEST) | ||
| 188 | fprintf(d, "<%ld>", (long)opnd); | ||
| 189 | break; | ||
| 190 | case O_QUEST: | ||
| 191 | if (OP(*(s-opnd)) != OQUEST_) | ||
| 192 | fprintf(d, "<%ld>", (long)opnd); | ||
| 193 | fprintf(d, "?)"); | ||
| 194 | break; | ||
| 195 | case OLPAREN: | ||
| 196 | fprintf(d, "((<%ld>", (long)opnd); | ||
| 197 | break; | ||
| 198 | case ORPAREN: | ||
| 199 | fprintf(d, "<%ld>))", (long)opnd); | ||
| 200 | break; | ||
| 201 | case OCH_: | ||
| 202 | fprintf(d, "<"); | ||
| 203 | if (OP(*(s+opnd)) != OOR2) | ||
| 204 | fprintf(d, "<%ld>", (long)opnd); | ||
| 205 | break; | ||
| 206 | case OOR1: | ||
| 207 | if (OP(*(s-opnd)) != OOR1 && OP(*(s-opnd)) != OCH_) | ||
| 208 | fprintf(d, "<%ld>", (long)opnd); | ||
| 209 | fprintf(d, "|"); | ||
| 210 | break; | ||
| 211 | case OOR2: | ||
| 212 | fprintf(d, "|"); | ||
| 213 | if (OP(*(s+opnd)) != OOR2 && OP(*(s+opnd)) != O_CH) | ||
| 214 | fprintf(d, "<%ld>", (long)opnd); | ||
| 215 | break; | ||
| 216 | case O_CH: | ||
| 217 | if (OP(*(s-opnd)) != OOR1) | ||
| 218 | fprintf(d, "<%ld>", (long)opnd); | ||
| 219 | fprintf(d, ">"); | ||
| 220 | break; | ||
| 221 | default: | ||
| 222 | fprintf(d, "!%ld(%ld)!", (long)OP(*s), (long)opnd); | ||
| 223 | break; | ||
| 224 | } | ||
| 225 | if (!done) | ||
| 226 | GAP(); | ||
| 227 | } | ||
| 228 | } | ||
| 229 | |||
| 230 | /* | ||
| 231 | - regchar - make a character printable | ||
| 232 | == static char *regchar(int ch); | ||
| 233 | */ | ||
| 234 | static char * /* -> representation */ | ||
| 235 | regchar(ch) | ||
| 236 | int ch; | ||
| 237 | { | ||
| 238 | static char buf[10]; | ||
| 239 | |||
| 240 | if (isprint(ch) || ch == ' ') | ||
| 241 | snprintf(buf, sizeof buf, "%c", ch); | ||
| 242 | else | ||
| 243 | snprintf(buf, sizeof buf, "\\%o", ch); | ||
| 244 | return(buf); | ||
| 245 | } | ||
diff --git a/src/regress/lib/libc/regex/debug.ih b/src/regress/lib/libc/regex/debug.ih new file mode 100644 index 0000000000..9eb313af23 --- /dev/null +++ b/src/regress/lib/libc/regex/debug.ih | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | /* $OpenBSD: debug.ih,v 1.3 2002/02/16 21:27:32 millert Exp $ */ | ||
| 2 | /* $NetBSD: debug.ih,v 1.2 1995/04/20 22:39:47 cgd Exp $ */ | ||
| 3 | |||
| 4 | /* ========= begin header generated by ./mkh ========= */ | ||
| 5 | #ifdef __cplusplus | ||
| 6 | extern "C" { | ||
| 7 | #endif | ||
| 8 | |||
| 9 | /* === debug.c === */ | ||
| 10 | void regprint(regex_t *r, FILE *d); | ||
| 11 | static void s_print(register struct re_guts *g, FILE *d); | ||
| 12 | static char *regchar(int ch); | ||
| 13 | |||
| 14 | #ifdef __cplusplus | ||
| 15 | } | ||
| 16 | #endif | ||
| 17 | /* ========= end header generated by ./mkh ========= */ | ||
diff --git a/src/regress/lib/libc/regex/main.c b/src/regress/lib/libc/regex/main.c new file mode 100644 index 0000000000..e0ed86f5e8 --- /dev/null +++ b/src/regress/lib/libc/regex/main.c | |||
| @@ -0,0 +1,516 @@ | |||
| 1 | /* $OpenBSD: main.c,v 1.7 2007/09/12 19:32:35 otto Exp $ */ | ||
| 2 | /* $NetBSD: main.c,v 1.2 1995/04/20 22:39:51 cgd Exp $ */ | ||
| 3 | |||
| 4 | #include <stdio.h> | ||
| 5 | #include <stdlib.h> | ||
| 6 | #include <string.h> | ||
| 7 | #include <sys/types.h> | ||
| 8 | #include <regex.h> | ||
| 9 | #include <assert.h> | ||
| 10 | #include <unistd.h> | ||
| 11 | |||
| 12 | #include "main.ih" | ||
| 13 | |||
| 14 | char *progname; | ||
| 15 | int debug = 0; | ||
| 16 | int line = 0; | ||
| 17 | int status = 0; | ||
| 18 | |||
| 19 | int copts = REG_EXTENDED; | ||
| 20 | int eopts = 0; | ||
| 21 | regoff_t startoff = 0; | ||
| 22 | regoff_t endoff = 0; | ||
| 23 | |||
| 24 | |||
| 25 | extern int split(char *, char *[], int, char *); | ||
| 26 | extern void regprint(regex_t *, FILE *); | ||
| 27 | |||
| 28 | /* | ||
| 29 | - main - do the simple case, hand off to regress() for regression | ||
| 30 | */ | ||
| 31 | int | ||
| 32 | main(int argc, char *argv[]) | ||
| 33 | |||
| 34 | { | ||
| 35 | regex_t re; | ||
| 36 | # define NS 10 | ||
| 37 | regmatch_t subs[NS]; | ||
| 38 | char erbuf[100]; | ||
| 39 | int err; | ||
| 40 | size_t len; | ||
| 41 | int c; | ||
| 42 | int errflg = 0; | ||
| 43 | register int i; | ||
| 44 | extern int optind; | ||
| 45 | extern char *optarg; | ||
| 46 | |||
| 47 | progname = argv[0]; | ||
| 48 | |||
| 49 | while ((c = getopt(argc, argv, "c:e:S:E:x")) != -1) | ||
| 50 | switch (c) { | ||
| 51 | case 'c': /* compile options */ | ||
| 52 | copts = options('c', optarg); | ||
| 53 | break; | ||
| 54 | case 'e': /* execute options */ | ||
| 55 | eopts = options('e', optarg); | ||
| 56 | break; | ||
| 57 | case 'S': /* start offset */ | ||
| 58 | startoff = (regoff_t)atoi(optarg); | ||
| 59 | break; | ||
| 60 | case 'E': /* end offset */ | ||
| 61 | endoff = (regoff_t)atoi(optarg); | ||
| 62 | break; | ||
| 63 | case 'x': /* Debugging. */ | ||
| 64 | debug++; | ||
| 65 | break; | ||
| 66 | case '?': | ||
| 67 | default: | ||
| 68 | errflg++; | ||
| 69 | break; | ||
| 70 | } | ||
| 71 | if (errflg) { | ||
| 72 | fprintf(stderr, "usage: %s ", progname); | ||
| 73 | fprintf(stderr, "[-c copt][-C][-d] [re]\n"); | ||
| 74 | exit(2); | ||
| 75 | } | ||
| 76 | |||
| 77 | if (optind >= argc) { | ||
| 78 | regress(stdin); | ||
| 79 | exit(status); | ||
| 80 | } | ||
| 81 | |||
| 82 | err = regcomp(&re, argv[optind++], copts); | ||
| 83 | if (err) { | ||
| 84 | len = regerror(err, &re, erbuf, sizeof(erbuf)); | ||
| 85 | fprintf(stderr, "error %s, %zu/%zu `%s'\n", | ||
| 86 | eprint(err), len, sizeof(erbuf), erbuf); | ||
| 87 | exit(status); | ||
| 88 | } | ||
| 89 | regprint(&re, stdout); | ||
| 90 | |||
| 91 | if (optind >= argc) { | ||
| 92 | regfree(&re); | ||
| 93 | exit(status); | ||
| 94 | } | ||
| 95 | |||
| 96 | if (eopts®_STARTEND) { | ||
| 97 | subs[0].rm_so = startoff; | ||
| 98 | subs[0].rm_eo = strlen(argv[optind]) - endoff; | ||
| 99 | } | ||
| 100 | err = regexec(&re, argv[optind], (size_t)NS, subs, eopts); | ||
| 101 | if (err) { | ||
| 102 | len = regerror(err, &re, erbuf, sizeof(erbuf)); | ||
| 103 | fprintf(stderr, "error %s, %zu/%zu `%s'\n", | ||
| 104 | eprint(err), len, sizeof(erbuf), erbuf); | ||
| 105 | exit(status); | ||
| 106 | } | ||
| 107 | if (!(copts®_NOSUB)) { | ||
| 108 | len = (size_t)(subs[0].rm_eo - subs[0].rm_so); | ||
| 109 | if (subs[0].rm_so != -1) { | ||
| 110 | if (len != 0) | ||
| 111 | printf("match `%.*s'\n", (int)len, | ||
| 112 | argv[optind] + subs[0].rm_so); | ||
| 113 | else | ||
| 114 | printf("match `'@%.1s\n", | ||
| 115 | argv[optind] + subs[0].rm_so); | ||
| 116 | } | ||
| 117 | for (i = 1; i < NS; i++) | ||
| 118 | if (subs[i].rm_so != -1) | ||
| 119 | printf("(%d) `%.*s'\n", i, | ||
| 120 | (int)(subs[i].rm_eo - subs[i].rm_so), | ||
| 121 | argv[optind] + subs[i].rm_so); | ||
| 122 | } | ||
| 123 | exit(status); | ||
| 124 | } | ||
| 125 | |||
| 126 | /* | ||
| 127 | - regress - main loop of regression test | ||
| 128 | == void regress(FILE *in); | ||
| 129 | */ | ||
| 130 | void | ||
| 131 | regress(in) | ||
| 132 | FILE *in; | ||
| 133 | { | ||
| 134 | char inbuf[1000]; | ||
| 135 | # define MAXF 10 | ||
| 136 | char *f[MAXF]; | ||
| 137 | int nf; | ||
| 138 | int i; | ||
| 139 | char erbuf[100]; | ||
| 140 | size_t ne; | ||
| 141 | char *badpat = "invalid regular expression"; | ||
| 142 | # define SHORT 10 | ||
| 143 | char *bpname = "REG_BADPAT"; | ||
| 144 | regex_t re; | ||
| 145 | |||
| 146 | while (fgets(inbuf, sizeof(inbuf), in) != NULL) { | ||
| 147 | line++; | ||
| 148 | if (inbuf[0] == '#' || inbuf[0] == '\n') | ||
| 149 | continue; /* NOTE CONTINUE */ | ||
| 150 | inbuf[strcspn(inbuf, "\n")] = '\0'; /* get rid of stupid \n */ | ||
| 151 | if (debug) | ||
| 152 | fprintf(stdout, "%d:\n", line); | ||
| 153 | nf = split(inbuf, f, MAXF, "\t\t"); | ||
| 154 | if (nf < 3) { | ||
| 155 | fprintf(stderr, "bad input, line %d\n", line); | ||
| 156 | exit(1); | ||
| 157 | } | ||
| 158 | for (i = 0; i < nf; i++) | ||
| 159 | if (strcmp(f[i], "\"\"") == 0) | ||
| 160 | f[i] = ""; | ||
| 161 | if (nf <= 3) | ||
| 162 | f[3] = NULL; | ||
| 163 | if (nf <= 4) | ||
| 164 | f[4] = NULL; | ||
| 165 | try(f[0], f[1], f[2], f[3], f[4], options('c', f[1])); | ||
| 166 | if (opt('&', f[1])) /* try with either type of RE */ | ||
| 167 | try(f[0], f[1], f[2], f[3], f[4], | ||
| 168 | options('c', f[1]) &~ REG_EXTENDED); | ||
| 169 | } | ||
| 170 | |||
| 171 | ne = regerror(REG_BADPAT, (regex_t *)NULL, erbuf, sizeof(erbuf)); | ||
| 172 | if (strcmp(erbuf, badpat) != 0 || ne != strlen(badpat)+1) { | ||
| 173 | fprintf(stderr, "end: regerror() test gave `%s' not `%s'\n", | ||
| 174 | erbuf, badpat); | ||
| 175 | status = 1; | ||
| 176 | } | ||
| 177 | ne = regerror(REG_BADPAT, (regex_t *)NULL, erbuf, (size_t)SHORT); | ||
| 178 | if (strncmp(erbuf, badpat, SHORT-1) != 0 || erbuf[SHORT-1] != '\0' || | ||
| 179 | ne != strlen(badpat)+1) { | ||
| 180 | fprintf(stderr, "end: regerror() short test gave `%s' not `%.*s'\n", | ||
| 181 | erbuf, SHORT-1, badpat); | ||
| 182 | status = 1; | ||
| 183 | } | ||
| 184 | ne = regerror(REG_ITOA|REG_BADPAT, (regex_t *)NULL, erbuf, sizeof(erbuf)); | ||
| 185 | if (strcmp(erbuf, bpname) != 0 || ne != strlen(bpname)+1) { | ||
| 186 | fprintf(stderr, "end: regerror() ITOA test gave `%s' not `%s'\n", | ||
| 187 | erbuf, bpname); | ||
| 188 | status = 1; | ||
| 189 | } | ||
| 190 | re.re_endp = bpname; | ||
| 191 | ne = regerror(REG_ATOI, &re, erbuf, sizeof(erbuf)); | ||
| 192 | if (atoi(erbuf) != (int)REG_BADPAT) { | ||
| 193 | fprintf(stderr, "end: regerror() ATOI test gave `%s' not `%ld'\n", | ||
| 194 | erbuf, (long)REG_BADPAT); | ||
| 195 | status = 1; | ||
| 196 | } else if (ne != strlen(erbuf)+1) { | ||
| 197 | fprintf(stderr, "end: regerror() ATOI test len(`%s') = %ld\n", | ||
| 198 | erbuf, (long)REG_BADPAT); | ||
| 199 | status = 1; | ||
| 200 | } | ||
| 201 | } | ||
| 202 | |||
| 203 | /* | ||
| 204 | - try - try it, and report on problems | ||
| 205 | == void try(char *f0, char *f1, char *f2, char *f3, char *f4, int opts); | ||
| 206 | */ | ||
| 207 | void | ||
| 208 | try(f0, f1, f2, f3, f4, opts) | ||
| 209 | char *f0; | ||
| 210 | char *f1; | ||
| 211 | char *f2; | ||
| 212 | char *f3; | ||
| 213 | char *f4; | ||
| 214 | int opts; /* may not match f1 */ | ||
| 215 | { | ||
| 216 | regex_t re; | ||
| 217 | # define NSUBS 10 | ||
| 218 | regmatch_t subs[NSUBS]; | ||
| 219 | # define NSHOULD 15 | ||
| 220 | char *should[NSHOULD]; | ||
| 221 | int nshould; | ||
| 222 | char erbuf[100]; | ||
| 223 | int err; | ||
| 224 | int len; | ||
| 225 | char *type = (opts & REG_EXTENDED) ? "ERE" : "BRE"; | ||
| 226 | register int i; | ||
| 227 | char *grump; | ||
| 228 | char f0copy[1000]; | ||
| 229 | char f2copy[1000]; | ||
| 230 | |||
| 231 | strlcpy(f0copy, f0, sizeof f0copy); | ||
| 232 | re.re_endp = (opts®_PEND) ? f0copy + strlen(f0copy) : NULL; | ||
| 233 | fixstr(f0copy); | ||
| 234 | err = regcomp(&re, f0copy, opts); | ||
| 235 | if (err != 0 && (!opt('C', f1) || err != efind(f2))) { | ||
| 236 | /* unexpected error or wrong error */ | ||
| 237 | len = regerror(err, &re, erbuf, sizeof(erbuf)); | ||
| 238 | fprintf(stderr, "%d: %s error %s, %d/%zu `%s'\n", | ||
| 239 | line, type, eprint(err), len, | ||
| 240 | sizeof(erbuf), erbuf); | ||
| 241 | status = 1; | ||
| 242 | } else if (err == 0 && opt('C', f1)) { | ||
| 243 | /* unexpected success */ | ||
| 244 | fprintf(stderr, "%d: %s should have given REG_%s\n", | ||
| 245 | line, type, f2); | ||
| 246 | status = 1; | ||
| 247 | err = 1; /* so we won't try regexec */ | ||
| 248 | } | ||
| 249 | |||
| 250 | if (err != 0) { | ||
| 251 | regfree(&re); | ||
| 252 | return; | ||
| 253 | } | ||
| 254 | |||
| 255 | strlcpy(f2copy, f2, sizeof f2copy); | ||
| 256 | fixstr(f2copy); | ||
| 257 | |||
| 258 | if (options('e', f1)®_STARTEND) { | ||
| 259 | if (strchr(f2, '(') == NULL || strchr(f2, ')') == NULL) | ||
| 260 | fprintf(stderr, "%d: bad STARTEND syntax\n", line); | ||
| 261 | subs[0].rm_so = strchr(f2, '(') - f2 + 1; | ||
| 262 | subs[0].rm_eo = strchr(f2, ')') - f2; | ||
| 263 | } | ||
| 264 | err = regexec(&re, f2copy, NSUBS, subs, options('e', f1)); | ||
| 265 | |||
| 266 | if (err != 0 && (f3 != NULL || err != REG_NOMATCH)) { | ||
| 267 | /* unexpected error or wrong error */ | ||
| 268 | len = regerror(err, &re, erbuf, sizeof(erbuf)); | ||
| 269 | fprintf(stderr, "%d: %s exec error %s, %d/%zu `%s'\n", | ||
| 270 | line, type, eprint(err), len, | ||
| 271 | sizeof(erbuf), erbuf); | ||
| 272 | status = 1; | ||
| 273 | } else if (err != 0) { | ||
| 274 | /* nothing more to check */ | ||
| 275 | } else if (f3 == NULL) { | ||
| 276 | /* unexpected success */ | ||
| 277 | fprintf(stderr, "%d: %s exec should have failed\n", | ||
| 278 | line, type); | ||
| 279 | status = 1; | ||
| 280 | err = 1; /* just on principle */ | ||
| 281 | } else if (opts®_NOSUB) { | ||
| 282 | /* nothing more to check */ | ||
| 283 | } else if ((grump = check(f2, subs[0], f3)) != NULL) { | ||
| 284 | fprintf(stderr, "%d: %s %s\n", line, type, grump); | ||
| 285 | status = 1; | ||
| 286 | err = 1; | ||
| 287 | } | ||
| 288 | |||
| 289 | if (err != 0 || f4 == NULL) { | ||
| 290 | regfree(&re); | ||
| 291 | return; | ||
| 292 | } | ||
| 293 | |||
| 294 | for (i = 1; i < NSHOULD; i++) | ||
| 295 | should[i] = NULL; | ||
| 296 | nshould = split(f4, should+1, NSHOULD-1, ","); | ||
| 297 | if (nshould == 0) { | ||
| 298 | nshould = 1; | ||
| 299 | should[1] = ""; | ||
| 300 | } | ||
| 301 | for (i = 1; i < NSUBS; i++) { | ||
| 302 | grump = check(f2, subs[i], should[i]); | ||
| 303 | if (grump != NULL) { | ||
| 304 | fprintf(stderr, "%d: %s $%d %s\n", line, | ||
| 305 | type, i, grump); | ||
| 306 | status = 1; | ||
| 307 | err = 1; | ||
| 308 | } | ||
| 309 | } | ||
| 310 | |||
| 311 | regfree(&re); | ||
| 312 | } | ||
| 313 | |||
| 314 | /* | ||
| 315 | - options - pick options out of a regression-test string | ||
| 316 | == int options(int type, char *s); | ||
| 317 | */ | ||
| 318 | int | ||
| 319 | options(type, s) | ||
| 320 | int type; /* 'c' compile, 'e' exec */ | ||
| 321 | char *s; | ||
| 322 | { | ||
| 323 | register char *p; | ||
| 324 | register int o = (type == 'c') ? copts : eopts; | ||
| 325 | register char *legal = (type == 'c') ? "bisnmp" : "^$#tl"; | ||
| 326 | |||
| 327 | for (p = s; *p != '\0'; p++) | ||
| 328 | if (strchr(legal, *p) != NULL) | ||
| 329 | switch (*p) { | ||
| 330 | case 'b': | ||
| 331 | o &= ~REG_EXTENDED; | ||
| 332 | break; | ||
| 333 | case 'i': | ||
| 334 | o |= REG_ICASE; | ||
| 335 | break; | ||
| 336 | case 's': | ||
| 337 | o |= REG_NOSUB; | ||
| 338 | break; | ||
| 339 | case 'n': | ||
| 340 | o |= REG_NEWLINE; | ||
| 341 | break; | ||
| 342 | case 'm': | ||
| 343 | o &= ~REG_EXTENDED; | ||
| 344 | o |= REG_NOSPEC; | ||
| 345 | break; | ||
| 346 | case 'p': | ||
| 347 | o |= REG_PEND; | ||
| 348 | break; | ||
| 349 | case '^': | ||
| 350 | o |= REG_NOTBOL; | ||
| 351 | break; | ||
| 352 | case '$': | ||
| 353 | o |= REG_NOTEOL; | ||
| 354 | break; | ||
| 355 | case '#': | ||
| 356 | o |= REG_STARTEND; | ||
| 357 | break; | ||
| 358 | case 't': /* trace */ | ||
| 359 | o |= REG_TRACE; | ||
| 360 | break; | ||
| 361 | case 'l': /* force long representation */ | ||
| 362 | o |= REG_LARGE; | ||
| 363 | break; | ||
| 364 | case 'r': /* force backref use */ | ||
| 365 | o |= REG_BACKR; | ||
| 366 | break; | ||
| 367 | } | ||
| 368 | return(o); | ||
| 369 | } | ||
| 370 | |||
| 371 | /* | ||
| 372 | - opt - is a particular option in a regression string? | ||
| 373 | == int opt(int c, char *s); | ||
| 374 | */ | ||
| 375 | int /* predicate */ | ||
| 376 | opt(c, s) | ||
| 377 | int c; | ||
| 378 | char *s; | ||
| 379 | { | ||
| 380 | return(strchr(s, c) != NULL); | ||
| 381 | } | ||
| 382 | |||
| 383 | /* | ||
| 384 | - fixstr - transform magic characters in strings | ||
| 385 | == void fixstr(register char *p); | ||
| 386 | */ | ||
| 387 | void | ||
| 388 | fixstr(p) | ||
| 389 | register char *p; | ||
| 390 | { | ||
| 391 | if (p == NULL) | ||
| 392 | return; | ||
| 393 | |||
| 394 | for (; *p != '\0'; p++) | ||
| 395 | if (*p == 'N') | ||
| 396 | *p = '\n'; | ||
| 397 | else if (*p == 'T') | ||
| 398 | *p = '\t'; | ||
| 399 | else if (*p == 'S') | ||
| 400 | *p = ' '; | ||
| 401 | else if (*p == 'Z') | ||
| 402 | *p = '\0'; | ||
| 403 | } | ||
| 404 | |||
| 405 | /* | ||
| 406 | - check - check a substring match | ||
| 407 | == char *check(char *str, regmatch_t sub, char *should); | ||
| 408 | */ | ||
| 409 | char * /* NULL or complaint */ | ||
| 410 | check(str, sub, should) | ||
| 411 | char *str; | ||
| 412 | regmatch_t sub; | ||
| 413 | char *should; | ||
| 414 | { | ||
| 415 | register int len; | ||
| 416 | register int shlen; | ||
| 417 | register char *p; | ||
| 418 | static char grump[500]; | ||
| 419 | register char *at = NULL; | ||
| 420 | |||
| 421 | if (should != NULL && strcmp(should, "-") == 0) | ||
| 422 | should = NULL; | ||
| 423 | if (should != NULL && should[0] == '@') { | ||
| 424 | at = should + 1; | ||
| 425 | should = ""; | ||
| 426 | } | ||
| 427 | |||
| 428 | /* check rm_so and rm_eo for consistency */ | ||
| 429 | if (sub.rm_so > sub.rm_eo || (sub.rm_so == -1 && sub.rm_eo != -1) || | ||
| 430 | (sub.rm_so != -1 && sub.rm_eo == -1) || | ||
| 431 | (sub.rm_so != -1 && sub.rm_so < 0) || | ||
| 432 | (sub.rm_eo != -1 && sub.rm_eo < 0) ) { | ||
| 433 | snprintf(grump, sizeof grump, | ||
| 434 | "start %ld end %ld", (long)sub.rm_so, | ||
| 435 | (long)sub.rm_eo); | ||
| 436 | return(grump); | ||
| 437 | } | ||
| 438 | |||
| 439 | /* check for no match */ | ||
| 440 | if (sub.rm_so == -1 && should == NULL) | ||
| 441 | return(NULL); | ||
| 442 | if (sub.rm_so == -1) | ||
| 443 | return("did not match"); | ||
| 444 | |||
| 445 | /* check for in range */ | ||
| 446 | if (sub.rm_eo > strlen(str)) { | ||
| 447 | snprintf(grump, sizeof grump, | ||
| 448 | "start %ld end %ld, past end of string", | ||
| 449 | (long)sub.rm_so, (long)sub.rm_eo); | ||
| 450 | return(grump); | ||
| 451 | } | ||
| 452 | |||
| 453 | len = (int)(sub.rm_eo - sub.rm_so); | ||
| 454 | shlen = (int)strlen(should); | ||
| 455 | p = str + sub.rm_so; | ||
| 456 | |||
| 457 | /* check for not supposed to match */ | ||
| 458 | if (should == NULL) { | ||
| 459 | snprintf(grump, sizeof grump, "matched `%.*s'", len, p); | ||
| 460 | return(grump); | ||
| 461 | } | ||
| 462 | |||
| 463 | /* check for wrong match */ | ||
| 464 | if (len != shlen || strncmp(p, should, (size_t)shlen) != 0) { | ||
| 465 | snprintf(grump, sizeof grump, "matched `%.*s' instead", len, p); | ||
| 466 | return(grump); | ||
| 467 | } | ||
| 468 | if (shlen > 0) | ||
| 469 | return(NULL); | ||
| 470 | |||
| 471 | /* check null match in right place */ | ||
| 472 | if (at == NULL) | ||
| 473 | return(NULL); | ||
| 474 | shlen = strlen(at); | ||
| 475 | if (shlen == 0) | ||
| 476 | shlen = 1; /* force check for end-of-string */ | ||
| 477 | if (strncmp(p, at, shlen) != 0) { | ||
| 478 | snprintf(grump, sizeof grump, "matched null at `%.20s'", p); | ||
| 479 | return(grump); | ||
| 480 | } | ||
| 481 | return(NULL); | ||
| 482 | } | ||
| 483 | |||
| 484 | /* | ||
| 485 | - eprint - convert error number to name | ||
| 486 | == static char *eprint(int err); | ||
| 487 | */ | ||
| 488 | static char * | ||
| 489 | eprint(err) | ||
| 490 | int err; | ||
| 491 | { | ||
| 492 | static char epbuf[100]; | ||
| 493 | size_t len; | ||
| 494 | |||
| 495 | len = regerror(REG_ITOA|err, (regex_t *)NULL, epbuf, sizeof(epbuf)); | ||
| 496 | assert(len <= sizeof(epbuf)); | ||
| 497 | return(epbuf); | ||
| 498 | } | ||
| 499 | |||
| 500 | /* | ||
| 501 | - efind - convert error name to number | ||
| 502 | == static int efind(char *name); | ||
| 503 | */ | ||
| 504 | static int | ||
| 505 | efind(name) | ||
| 506 | char *name; | ||
| 507 | { | ||
| 508 | static char efbuf[100]; | ||
| 509 | regex_t re; | ||
| 510 | |||
| 511 | snprintf(efbuf, sizeof efbuf, "REG_%s", name); | ||
| 512 | assert(strlen(efbuf) < sizeof(efbuf)); | ||
| 513 | re.re_endp = efbuf; | ||
| 514 | (void) regerror(REG_ATOI, &re, efbuf, sizeof(efbuf)); | ||
| 515 | return(atoi(efbuf)); | ||
| 516 | } | ||
diff --git a/src/regress/lib/libc/regex/main.ih b/src/regress/lib/libc/regex/main.ih new file mode 100644 index 0000000000..0860e26333 --- /dev/null +++ b/src/regress/lib/libc/regex/main.ih | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | /* $OpenBSD: main.ih,v 1.3 2002/02/16 21:27:32 millert Exp $ */ | ||
| 2 | /* $NetBSD: main.ih,v 1.2 1995/04/20 22:39:55 cgd Exp $ */ | ||
| 3 | |||
| 4 | /* ========= begin header generated by ./mkh ========= */ | ||
| 5 | #ifdef __cplusplus | ||
| 6 | extern "C" { | ||
| 7 | #endif | ||
| 8 | |||
| 9 | /* === main.c === */ | ||
| 10 | void regress(FILE *in); | ||
| 11 | void try(char *f0, char *f1, char *f2, char *f3, char *f4, int opts); | ||
| 12 | int options(int type, char *s); | ||
| 13 | int opt(int c, char *s); | ||
| 14 | void fixstr(register char *p); | ||
| 15 | char *check(char *str, regmatch_t sub, char *should); | ||
| 16 | static char *eprint(int err); | ||
| 17 | static int efind(char *name); | ||
| 18 | |||
| 19 | #ifdef __cplusplus | ||
| 20 | } | ||
| 21 | #endif | ||
| 22 | /* ========= end header generated by ./mkh ========= */ | ||
diff --git a/src/regress/lib/libc/regex/split.c b/src/regress/lib/libc/regex/split.c new file mode 100644 index 0000000000..fcd81a3503 --- /dev/null +++ b/src/regress/lib/libc/regex/split.c | |||
| @@ -0,0 +1,317 @@ | |||
| 1 | /* $OpenBSD: split.c,v 1.5 2007/09/09 23:25:12 chl Exp $ */ | ||
| 2 | /* $NetBSD: split.c,v 1.2 1995/04/20 22:39:57 cgd Exp $ */ | ||
| 3 | |||
| 4 | #include <stdio.h> | ||
| 5 | #include <string.h> | ||
| 6 | |||
| 7 | int split(char *string, char *fields[], int nfields, char *sep); | ||
| 8 | |||
| 9 | /* | ||
| 10 | - split - divide a string into fields, like awk split() | ||
| 11 | = int split(char *string, char *fields[], int nfields, char *sep); | ||
| 12 | */ | ||
| 13 | int /* number of fields, including overflow */ | ||
| 14 | split(char *string, char *fields[], int nfields, char *sep) | ||
| 15 | { | ||
| 16 | register char *p = string; | ||
| 17 | register char c; /* latest character */ | ||
| 18 | register char sepc = sep[0]; | ||
| 19 | register char sepc2; | ||
| 20 | register int fn; | ||
| 21 | register char **fp = fields; | ||
| 22 | register char *sepp; | ||
| 23 | register int trimtrail; | ||
| 24 | |||
| 25 | /* white space */ | ||
| 26 | if (sepc == '\0') { | ||
| 27 | while ((c = *p++) == ' ' || c == '\t') | ||
| 28 | continue; | ||
| 29 | p--; | ||
| 30 | trimtrail = 1; | ||
| 31 | sep = " \t"; /* note, code below knows this is 2 long */ | ||
| 32 | sepc = ' '; | ||
| 33 | } else | ||
| 34 | trimtrail = 0; | ||
| 35 | sepc2 = sep[1]; /* now we can safely pick this up */ | ||
| 36 | |||
| 37 | /* catch empties */ | ||
| 38 | if (*p == '\0') | ||
| 39 | return(0); | ||
| 40 | |||
| 41 | /* single separator */ | ||
| 42 | if (sepc2 == '\0') { | ||
| 43 | fn = nfields; | ||
| 44 | for (;;) { | ||
| 45 | *fp++ = p; | ||
| 46 | fn--; | ||
| 47 | if (fn == 0) | ||
| 48 | break; | ||
| 49 | while ((c = *p++) != sepc) | ||
| 50 | if (c == '\0') | ||
| 51 | return(nfields - fn); | ||
| 52 | *(p-1) = '\0'; | ||
| 53 | } | ||
| 54 | /* we have overflowed the fields vector -- just count them */ | ||
| 55 | fn = nfields; | ||
| 56 | for (;;) { | ||
| 57 | while ((c = *p++) != sepc) | ||
| 58 | if (c == '\0') | ||
| 59 | return(fn); | ||
| 60 | fn++; | ||
| 61 | } | ||
| 62 | /* not reached */ | ||
| 63 | } | ||
| 64 | |||
| 65 | /* two separators */ | ||
| 66 | if (sep[2] == '\0') { | ||
| 67 | fn = nfields; | ||
| 68 | for (;;) { | ||
| 69 | *fp++ = p; | ||
| 70 | fn--; | ||
| 71 | while ((c = *p++) != sepc && c != sepc2) | ||
| 72 | if (c == '\0') { | ||
| 73 | if (trimtrail && **(fp-1) == '\0') | ||
| 74 | fn++; | ||
| 75 | return(nfields - fn); | ||
| 76 | } | ||
| 77 | if (fn == 0) | ||
| 78 | break; | ||
| 79 | *(p-1) = '\0'; | ||
| 80 | while ((c = *p++) == sepc || c == sepc2) | ||
| 81 | continue; | ||
| 82 | p--; | ||
| 83 | } | ||
| 84 | /* we have overflowed the fields vector -- just count them */ | ||
| 85 | fn = nfields; | ||
| 86 | while (c != '\0') { | ||
| 87 | while ((c = *p++) == sepc || c == sepc2) | ||
| 88 | continue; | ||
| 89 | p--; | ||
| 90 | fn++; | ||
| 91 | while ((c = *p++) != '\0' && c != sepc && c != sepc2) | ||
| 92 | continue; | ||
| 93 | } | ||
| 94 | /* might have to trim trailing white space */ | ||
| 95 | if (trimtrail) { | ||
| 96 | p--; | ||
| 97 | while ((c = *--p) == sepc || c == sepc2) | ||
| 98 | continue; | ||
| 99 | p++; | ||
| 100 | if (*p != '\0') { | ||
| 101 | if (fn == nfields+1) | ||
| 102 | *p = '\0'; | ||
| 103 | fn--; | ||
| 104 | } | ||
| 105 | } | ||
| 106 | return(fn); | ||
| 107 | } | ||
| 108 | |||
| 109 | /* n separators */ | ||
| 110 | fn = 0; | ||
| 111 | for (;;) { | ||
| 112 | if (fn < nfields) | ||
| 113 | *fp++ = p; | ||
| 114 | fn++; | ||
| 115 | for (;;) { | ||
| 116 | c = *p++; | ||
| 117 | if (c == '\0') | ||
| 118 | return(fn); | ||
| 119 | sepp = sep; | ||
| 120 | while ((sepc = *sepp++) != '\0' && sepc != c) | ||
| 121 | continue; | ||
| 122 | if (sepc != '\0') /* it was a separator */ | ||
| 123 | break; | ||
| 124 | } | ||
| 125 | if (fn < nfields) | ||
| 126 | *(p-1) = '\0'; | ||
| 127 | for (;;) { | ||
| 128 | c = *p++; | ||
| 129 | sepp = sep; | ||
| 130 | while ((sepc = *sepp++) != '\0' && sepc != c) | ||
| 131 | continue; | ||
| 132 | if (sepc == '\0') /* it wasn't a separator */ | ||
| 133 | break; | ||
| 134 | } | ||
| 135 | p--; | ||
| 136 | } | ||
| 137 | |||
| 138 | /* not reached */ | ||
| 139 | } | ||
| 140 | |||
| 141 | #ifdef TEST_SPLIT | ||
| 142 | |||
| 143 | |||
| 144 | /* | ||
| 145 | * test program | ||
| 146 | * pgm runs regression | ||
| 147 | * pgm sep splits stdin lines by sep | ||
| 148 | * pgm str sep splits str by sep | ||
| 149 | * pgm str sep n splits str by sep n times | ||
| 150 | */ | ||
| 151 | int | ||
| 152 | main(argc, argv) | ||
| 153 | int argc; | ||
| 154 | char *argv[]; | ||
| 155 | { | ||
| 156 | char buf[512]; | ||
| 157 | register int n; | ||
| 158 | # define MNF 10 | ||
| 159 | char *fields[MNF]; | ||
| 160 | |||
| 161 | if (argc > 4) | ||
| 162 | for (n = atoi(argv[3]); n > 0; n--) { | ||
| 163 | (void) strlcpy(buf, argv[1], sizeof buf); | ||
| 164 | } | ||
| 165 | else if (argc > 3) | ||
| 166 | for (n = atoi(argv[3]); n > 0; n--) { | ||
| 167 | (void) strlcpy(buf, argv[1], sizeof buf); | ||
| 168 | (void) split(buf, fields, MNF, argv[2]); | ||
| 169 | } | ||
| 170 | else if (argc > 2) | ||
| 171 | dosplit(argv[1], argv[2]); | ||
| 172 | else if (argc > 1) | ||
| 173 | while (fgets(buf, sizeof(buf), stdin) != NULL) { | ||
| 174 | buf[strcspn(buf, "\n")] = '\0'; /* stomp newline */ | ||
| 175 | dosplit(buf, argv[1]); | ||
| 176 | } | ||
| 177 | else | ||
| 178 | regress(); | ||
| 179 | |||
| 180 | exit(0); | ||
| 181 | } | ||
| 182 | |||
| 183 | dosplit(string, seps) | ||
| 184 | char *string; | ||
| 185 | char *seps; | ||
| 186 | { | ||
| 187 | # define NF 5 | ||
| 188 | char *fields[NF]; | ||
| 189 | register int nf; | ||
| 190 | |||
| 191 | nf = split(string, fields, NF, seps); | ||
| 192 | print(nf, NF, fields); | ||
| 193 | } | ||
| 194 | |||
| 195 | print(nf, nfp, fields) | ||
| 196 | int nf; | ||
| 197 | int nfp; | ||
| 198 | char *fields[]; | ||
| 199 | { | ||
| 200 | register int fn; | ||
| 201 | register int bound; | ||
| 202 | |||
| 203 | bound = (nf > nfp) ? nfp : nf; | ||
| 204 | printf("%d:\t", nf); | ||
| 205 | for (fn = 0; fn < bound; fn++) | ||
| 206 | printf("\"%s\"%s", fields[fn], (fn+1 < nf) ? ", " : "\n"); | ||
| 207 | } | ||
| 208 | |||
| 209 | #define RNF 5 /* some table entries know this */ | ||
| 210 | struct { | ||
| 211 | char *str; | ||
| 212 | char *seps; | ||
| 213 | int nf; | ||
| 214 | char *fi[RNF]; | ||
| 215 | } tests[] = { | ||
| 216 | "", " ", 0, { "" }, | ||
| 217 | " ", " ", 2, { "", "" }, | ||
| 218 | "x", " ", 1, { "x" }, | ||
| 219 | "xy", " ", 1, { "xy" }, | ||
| 220 | "x y", " ", 2, { "x", "y" }, | ||
| 221 | "abc def g ", " ", 5, { "abc", "def", "", "g", "" }, | ||
| 222 | " a bcd", " ", 4, { "", "", "a", "bcd" }, | ||
| 223 | "a b c d e f", " ", 6, { "a", "b", "c", "d", "e f" }, | ||
| 224 | " a b c d ", " ", 6, { "", "a", "b", "c", "d " }, | ||
| 225 | |||
| 226 | "", " _", 0, { "" }, | ||
| 227 | " ", " _", 2, { "", "" }, | ||
| 228 | "x", " _", 1, { "x" }, | ||
| 229 | "x y", " _", 2, { "x", "y" }, | ||
| 230 | "ab _ cd", " _", 2, { "ab", "cd" }, | ||
| 231 | " a_b c ", " _", 5, { "", "a", "b", "c", "" }, | ||
| 232 | "a b c_d e f", " _", 6, { "a", "b", "c", "d", "e f" }, | ||
| 233 | " a b c d ", " _", 6, { "", "a", "b", "c", "d " }, | ||
| 234 | |||
| 235 | "", " _~", 0, { "" }, | ||
| 236 | " ", " _~", 2, { "", "" }, | ||
| 237 | "x", " _~", 1, { "x" }, | ||
| 238 | "x y", " _~", 2, { "x", "y" }, | ||
| 239 | "ab _~ cd", " _~", 2, { "ab", "cd" }, | ||
| 240 | " a_b c~", " _~", 5, { "", "a", "b", "c", "" }, | ||
| 241 | "a b_c d~e f", " _~", 6, { "a", "b", "c", "d", "e f" }, | ||
| 242 | "~a b c d ", " _~", 6, { "", "a", "b", "c", "d " }, | ||
| 243 | |||
| 244 | "", " _~-", 0, { "" }, | ||
| 245 | " ", " _~-", 2, { "", "" }, | ||
| 246 | "x", " _~-", 1, { "x" }, | ||
| 247 | "x y", " _~-", 2, { "x", "y" }, | ||
| 248 | "ab _~- cd", " _~-", 2, { "ab", "cd" }, | ||
| 249 | " a_b c~", " _~-", 5, { "", "a", "b", "c", "" }, | ||
| 250 | "a b_c-d~e f", " _~-", 6, { "a", "b", "c", "d", "e f" }, | ||
| 251 | "~a-b c d ", " _~-", 6, { "", "a", "b", "c", "d " }, | ||
| 252 | |||
| 253 | "", " ", 0, { "" }, | ||
| 254 | " ", " ", 2, { "", "" }, | ||
| 255 | "x", " ", 1, { "x" }, | ||
| 256 | "xy", " ", 1, { "xy" }, | ||
| 257 | "x y", " ", 2, { "x", "y" }, | ||
| 258 | "abc def g ", " ", 4, { "abc", "def", "g", "" }, | ||
| 259 | " a bcd", " ", 3, { "", "a", "bcd" }, | ||
| 260 | "a b c d e f", " ", 6, { "a", "b", "c", "d", "e f" }, | ||
| 261 | " a b c d ", " ", 6, { "", "a", "b", "c", "d " }, | ||
| 262 | |||
| 263 | "", "", 0, { "" }, | ||
| 264 | " ", "", 0, { "" }, | ||
| 265 | "x", "", 1, { "x" }, | ||
| 266 | "xy", "", 1, { "xy" }, | ||
| 267 | "x y", "", 2, { "x", "y" }, | ||
| 268 | "abc def g ", "", 3, { "abc", "def", "g" }, | ||
| 269 | "\t a bcd", "", 2, { "a", "bcd" }, | ||
| 270 | " a \tb\t c ", "", 3, { "a", "b", "c" }, | ||
| 271 | "a b c d e ", "", 5, { "a", "b", "c", "d", "e" }, | ||
| 272 | "a b\tc d e f", "", 6, { "a", "b", "c", "d", "e f" }, | ||
| 273 | " a b c d e f ", "", 6, { "a", "b", "c", "d", "e f " }, | ||
| 274 | |||
| 275 | NULL, NULL, 0, { NULL }, | ||
| 276 | }; | ||
| 277 | |||
| 278 | regress() | ||
| 279 | { | ||
| 280 | char buf[512]; | ||
| 281 | register int n; | ||
| 282 | char *fields[RNF+1]; | ||
| 283 | register int nf; | ||
| 284 | register int i; | ||
| 285 | register int printit; | ||
| 286 | register char *f; | ||
| 287 | |||
| 288 | for (n = 0; tests[n].str != NULL; n++) { | ||
| 289 | (void) strlcpy(buf, tests[n].str, sizeof buf); | ||
| 290 | fields[RNF] = NULL; | ||
| 291 | nf = split(buf, fields, RNF, tests[n].seps); | ||
| 292 | printit = 0; | ||
| 293 | if (nf != tests[n].nf) { | ||
| 294 | printf("split `%s' by `%s' gave %d fields, not %d\n", | ||
| 295 | tests[n].str, tests[n].seps, nf, tests[n].nf); | ||
| 296 | printit = 1; | ||
| 297 | } else if (fields[RNF] != NULL) { | ||
| 298 | printf("split() went beyond array end\n"); | ||
| 299 | printit = 1; | ||
| 300 | } else { | ||
| 301 | for (i = 0; i < nf && i < RNF; i++) { | ||
| 302 | f = fields[i]; | ||
| 303 | if (f == NULL) | ||
| 304 | f = "(NULL)"; | ||
| 305 | if (strcmp(f, tests[n].fi[i]) != 0) { | ||
| 306 | printf("split `%s' by `%s', field %d is `%s', not `%s'\n", | ||
| 307 | tests[n].str, tests[n].seps, | ||
| 308 | i, fields[i], tests[n].fi[i]); | ||
| 309 | printit = 1; | ||
| 310 | } | ||
| 311 | } | ||
| 312 | } | ||
| 313 | if (printit) | ||
| 314 | print(nf, RNF, fields); | ||
| 315 | } | ||
| 316 | } | ||
| 317 | #endif | ||
diff --git a/src/regress/lib/libc/regex/t_exhaust.c b/src/regress/lib/libc/regex/t_exhaust.c new file mode 100644 index 0000000000..e4d4e4f5d7 --- /dev/null +++ b/src/regress/lib/libc/regex/t_exhaust.c | |||
| @@ -0,0 +1,186 @@ | |||
| 1 | /* $OpenBSD: t_exhaust.c,v 1.2 2011/11/06 15:47:07 otto Exp $ */ | ||
| 2 | /* $NetBSD: t_exhaust.c,v 1.2 2011/10/21 00:41:34 christos Exp $ */ | ||
| 3 | |||
| 4 | /*- | ||
| 5 | * Copyright (c) 2011 The NetBSD Foundation, Inc. | ||
| 6 | * All rights reserved. | ||
| 7 | * | ||
| 8 | * This code is derived from software contributed to The NetBSD Foundation | ||
| 9 | * by Christos Zoulas. | ||
| 10 | * | ||
| 11 | * Redistribution and use in source and binary forms, with or without | ||
| 12 | * modification, are permitted provided that the following conditions | ||
| 13 | * are met: | ||
| 14 | * 1. Redistributions of source code must retain the above copyright | ||
| 15 | * notice, this list of conditions and the following disclaimer. | ||
| 16 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 17 | * notice, this list of conditions and the following disclaimer in the | ||
| 18 | * documentation and/or other materials provided with the distribution. | ||
| 19 | * 3. All advertising materials mentioning features or use of this software | ||
| 20 | * must display the following acknowledgement: | ||
| 21 | * This product includes software developed by the NetBSD | ||
| 22 | * Foundation, Inc. and its contributors. | ||
| 23 | * 4. Neither the name of The NetBSD Foundation nor the names of its | ||
| 24 | * contributors may be used to endorse or promote products derived | ||
| 25 | * from this software without specific prior written permission. | ||
| 26 | * | ||
| 27 | * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | ||
| 28 | * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | ||
| 29 | * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
| 30 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | ||
| 31 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
| 32 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
| 33 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
| 34 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
| 35 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
| 36 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
| 37 | * POSSIBILITY OF SUCH DAMAGE. | ||
| 38 | */ | ||
| 39 | |||
| 40 | #include <sys/cdefs.h> | ||
| 41 | |||
| 42 | #include <stdio.h> | ||
| 43 | #include <regex.h> | ||
| 44 | #include <string.h> | ||
| 45 | #include <stdlib.h> | ||
| 46 | #include <err.h> | ||
| 47 | //#include <atf-c.h> | ||
| 48 | |||
| 49 | |||
| 50 | static char * | ||
| 51 | mkstr(const char *str, size_t len) | ||
| 52 | { | ||
| 53 | size_t i, slen = strlen(str); | ||
| 54 | char *p = malloc(slen * len + 1); | ||
| 55 | if (p == NULL) | ||
| 56 | err(1, "malloc"); | ||
| 57 | for (i = 0; i < len; i++) | ||
| 58 | strlcpy(&p[i * slen], str, slen * len + 1 - (i * slen)); | ||
| 59 | return p; | ||
| 60 | } | ||
| 61 | |||
| 62 | static char * | ||
| 63 | concat(const char *d, const char *s) | ||
| 64 | { | ||
| 65 | size_t dlen = strlen(d); | ||
| 66 | size_t slen = strlen(s); | ||
| 67 | char *p = malloc(dlen + slen + 1); | ||
| 68 | strlcpy(p, d, dlen + slen + 1); | ||
| 69 | strlcat(p, s, dlen + slen + 1); | ||
| 70 | return p; | ||
| 71 | } | ||
| 72 | |||
| 73 | static char * | ||
| 74 | p0(size_t len) | ||
| 75 | { | ||
| 76 | char *d, *s1, *s2; | ||
| 77 | s1 = mkstr("\\(", len); | ||
| 78 | s2 = concat(s1, ")"); | ||
| 79 | free(s1); | ||
| 80 | d = concat("(", s2); | ||
| 81 | free(s2); | ||
| 82 | return d; | ||
| 83 | } | ||
| 84 | |||
| 85 | static char * | ||
| 86 | p1(size_t len) | ||
| 87 | { | ||
| 88 | char *d, *s1, *s2, *s3; | ||
| 89 | s1 = mkstr("\\(", 60); | ||
| 90 | s2 = mkstr("(.*)", len); | ||
| 91 | s3 = concat(s1, s2); | ||
| 92 | free(s2); | ||
| 93 | free(s1); | ||
| 94 | s1 = concat(s3, ")"); | ||
| 95 | free(s3); | ||
| 96 | d = concat("(", s1); | ||
| 97 | free(s1); | ||
| 98 | return d; | ||
| 99 | } | ||
| 100 | |||
| 101 | static char * | ||
| 102 | ps(const char *m, const char *s, size_t len) | ||
| 103 | { | ||
| 104 | char *d, *s1, *s2, *s3; | ||
| 105 | s1 = mkstr(m, len); | ||
| 106 | s2 = mkstr(s, len); | ||
| 107 | s3 = concat(s1, s2); | ||
| 108 | free(s2); | ||
| 109 | free(s1); | ||
| 110 | d = concat("(.?)", s3); | ||
| 111 | free(s3); | ||
| 112 | return d; | ||
| 113 | } | ||
| 114 | |||
| 115 | static char * | ||
| 116 | p2(size_t len) | ||
| 117 | { | ||
| 118 | return ps("((.*){0,255}", ")", len); | ||
| 119 | } | ||
| 120 | |||
| 121 | static char * | ||
| 122 | p3(size_t len) | ||
| 123 | { | ||
| 124 | return ps("(.\\{0,}", ")", len); | ||
| 125 | } | ||
| 126 | |||
| 127 | static char * | ||
| 128 | p4(size_t len) | ||
| 129 | { | ||
| 130 | return ps("((.*){1,255}", ")", len); | ||
| 131 | } | ||
| 132 | |||
| 133 | static char * | ||
| 134 | p5(size_t len) | ||
| 135 | { | ||
| 136 | return ps("(", "){1,100}", len); | ||
| 137 | } | ||
| 138 | |||
| 139 | static char * | ||
| 140 | p6(size_t len) | ||
| 141 | { | ||
| 142 | char *d, *s1, *s2; | ||
| 143 | s1 = mkstr("(?:(.*)|", len); | ||
| 144 | s2 = concat(s1, "(.*)"); | ||
| 145 | free(s1); | ||
| 146 | s1 = mkstr(")", len); | ||
| 147 | d = concat(s2, s1); | ||
| 148 | free(s1); | ||
| 149 | free(s2); | ||
| 150 | return d; | ||
| 151 | } | ||
| 152 | |||
| 153 | static char *(*patterns[])(size_t) = { | ||
| 154 | p0, | ||
| 155 | p1, | ||
| 156 | p2, | ||
| 157 | p3, | ||
| 158 | p4, | ||
| 159 | p5, | ||
| 160 | p6, | ||
| 161 | }; | ||
| 162 | |||
| 163 | |||
| 164 | main() | ||
| 165 | { | ||
| 166 | regex_t re; | ||
| 167 | int e, ret = 0; | ||
| 168 | size_t i; | ||
| 169 | |||
| 170 | for (i = 0; i < sizeof(patterns) / sizeof(patterns[0]); i++) { | ||
| 171 | char *d = (*patterns[i])(9999); | ||
| 172 | e = regcomp(&re, d, i == 6 ? REG_BASIC : REG_EXTENDED); | ||
| 173 | free(d); | ||
| 174 | if (e) { | ||
| 175 | if (e != REG_ESPACE) { | ||
| 176 | printf("regcomp returned %d for pattern %zu", e, i); | ||
| 177 | ret = 1; | ||
| 178 | } | ||
| 179 | continue; | ||
| 180 | } | ||
| 181 | (void)regexec(&re, "aaaaaaaa", 0, NULL, 0); | ||
| 182 | regfree(&re); | ||
| 183 | } | ||
| 184 | return ret; | ||
| 185 | } | ||
| 186 | |||
diff --git a/src/regress/lib/libc/regex/tests b/src/regress/lib/libc/regex/tests new file mode 100644 index 0000000000..c827c868b7 --- /dev/null +++ b/src/regress/lib/libc/regex/tests | |||
| @@ -0,0 +1,503 @@ | |||
| 1 | # $OpenBSD: tests,v 1.5 2004/11/29 16:50:31 otto Exp $ | ||
| 2 | # $NetBSD: tests,v 1.5 1995/04/20 22:40:00 cgd Exp $ | ||
| 3 | |||
| 4 | # regular expression test set | ||
| 5 | # Lines are at least three fields, separated by one or more tabs. "" stands | ||
| 6 | # for an empty field. First field is an RE. Second field is flags. If | ||
| 7 | # C flag given, regcomp() is expected to fail, and the third field is the | ||
| 8 | # error name (minus the leading REG_). | ||
| 9 | # | ||
| 10 | # Otherwise it is expected to succeed, and the third field is the string to | ||
| 11 | # try matching it against. If there is no fourth field, the match is | ||
| 12 | # expected to fail. If there is a fourth field, it is the substring that | ||
| 13 | # the RE is expected to match. If there is a fifth field, it is a comma- | ||
| 14 | # separated list of what the subexpressions should match, with - indicating | ||
| 15 | # no match for that one. In both the fourth and fifth fields, a (sub)field | ||
| 16 | # starting with @ indicates that the (sub)expression is expected to match | ||
| 17 | # a null string followed by the stuff after the @; this provides a way to | ||
| 18 | # test where null strings match. The character `N' in REs and strings | ||
| 19 | # is newline, `S' is space, `T' is tab, `Z' is NUL. | ||
| 20 | # | ||
| 21 | # The full list of flags: | ||
| 22 | # - placeholder, does nothing | ||
| 23 | # b RE is a BRE, not an ERE | ||
| 24 | # & try it as both an ERE and a BRE | ||
| 25 | # C regcomp() error expected, third field is error name | ||
| 26 | # i REG_ICASE | ||
| 27 | # m ("mundane") REG_NOSPEC | ||
| 28 | # s REG_NOSUB (not really testable) | ||
| 29 | # n REG_NEWLINE | ||
| 30 | # ^ REG_NOTBOL | ||
| 31 | # $ REG_NOTEOL | ||
| 32 | # # REG_STARTEND (see below) | ||
| 33 | # p REG_PEND | ||
| 34 | # | ||
| 35 | # For REG_STARTEND, the start/end offsets are those of the substring | ||
| 36 | # enclosed in (). | ||
| 37 | |||
| 38 | # basics | ||
| 39 | a & a a | ||
| 40 | abc & abc abc | ||
| 41 | abc|de - abc abc | ||
| 42 | a|b|c - abc a | ||
| 43 | |||
| 44 | # parentheses and perversions thereof | ||
| 45 | a(b)c - abc abc | ||
| 46 | a\(b\)c b abc abc | ||
| 47 | a( C EPAREN | ||
| 48 | a( b a( a( | ||
| 49 | a\( - a( a( | ||
| 50 | a\( bC EPAREN | ||
| 51 | a\(b bC EPAREN | ||
| 52 | a(b C EPAREN | ||
| 53 | a(b b a(b a(b | ||
| 54 | # gag me with a right parenthesis -- 1003.2 goofed here (my fault, partly) | ||
| 55 | a) - a) a) | ||
| 56 | ) - ) ) | ||
| 57 | # end gagging (in a just world, those *should* give EPAREN) | ||
| 58 | a) b a) a) | ||
| 59 | a\) bC EPAREN | ||
| 60 | \) bC EPAREN | ||
| 61 | a()b - ab ab | ||
| 62 | a\(\)b b ab ab | ||
| 63 | |||
| 64 | # anchoring and REG_NEWLINE | ||
| 65 | ^abc$ & abc abc | ||
| 66 | a^b - a^b | ||
| 67 | a^b b a^b a^b | ||
| 68 | a$b - a$b | ||
| 69 | a$b b a$b a$b | ||
| 70 | ^ & abc @abc | ||
| 71 | $ & abc @ | ||
| 72 | ^$ & "" @ | ||
| 73 | $^ - "" @ | ||
| 74 | \($\)\(^\) b "" @ | ||
| 75 | # stop retching, those are legitimate (although disgusting) | ||
| 76 | ^^ - "" @ | ||
| 77 | $$ - "" @ | ||
| 78 | b$ & abNc | ||
| 79 | b$ &n abNc b | ||
| 80 | ^b$ & aNbNc | ||
| 81 | ^b$ &n aNbNc b | ||
| 82 | ^$ &n aNNb @Nb | ||
| 83 | ^$ n abc | ||
| 84 | ^$ n abcN @ | ||
| 85 | $^ n aNNb @Nb | ||
| 86 | \($\)\(^\) bn aNNb @Nb | ||
| 87 | ^^ n^ aNNb @Nb | ||
| 88 | $$ n aNNb @NN | ||
| 89 | ^a ^ a | ||
| 90 | a$ $ a | ||
| 91 | ^a ^n aNb | ||
| 92 | ^b ^n aNb b | ||
| 93 | a$ $n bNa | ||
| 94 | b$ $n bNa b | ||
| 95 | a*(^b$)c* - b b | ||
| 96 | a*\(^b$\)c* b b b | ||
| 97 | |||
| 98 | # certain syntax errors and non-errors | ||
| 99 | | C EMPTY | ||
| 100 | | b | | | ||
| 101 | * C BADRPT | ||
| 102 | * b * * | ||
| 103 | + C BADRPT | ||
| 104 | ? C BADRPT | ||
| 105 | "" &C EMPTY | ||
| 106 | () - abc @abc | ||
| 107 | \(\) b abc @abc | ||
| 108 | a||b C EMPTY | ||
| 109 | |ab C EMPTY | ||
| 110 | ab| C EMPTY | ||
| 111 | (|a)b C EMPTY | ||
| 112 | (a|)b C EMPTY | ||
| 113 | (*a) C BADRPT | ||
| 114 | (+a) C BADRPT | ||
| 115 | (?a) C BADRPT | ||
| 116 | ({1}a) C BADRPT | ||
| 117 | \(\{1\}a\) bC BADRPT | ||
| 118 | (a|*b) C BADRPT | ||
| 119 | (a|+b) C BADRPT | ||
| 120 | (a|?b) C BADRPT | ||
| 121 | (a|{1}b) C BADRPT | ||
| 122 | ^* C BADRPT | ||
| 123 | ^* b * * | ||
| 124 | ^+ C BADRPT | ||
| 125 | ^? C BADRPT | ||
| 126 | ^{1} C BADRPT | ||
| 127 | ^\{1\} bC BADRPT | ||
| 128 | |||
| 129 | # metacharacters, backslashes | ||
| 130 | a.c & abc abc | ||
| 131 | a[bc]d & abd abd | ||
| 132 | a\*c & a*c a*c | ||
| 133 | a\\b & a\b a\b | ||
| 134 | a\\\*b & a\*b a\*b | ||
| 135 | a\bc & abc abc | ||
| 136 | a\ &C EESCAPE | ||
| 137 | a\\bc & a\bc a\bc | ||
| 138 | \{ bC BADRPT | ||
| 139 | a\[b & a[b a[b | ||
| 140 | a[b &C EBRACK | ||
| 141 | # trailing $ is a peculiar special case for the BRE code | ||
| 142 | a$ & a a | ||
| 143 | a$ & a$ | ||
| 144 | a\$ & a | ||
| 145 | a\$ & a$ a$ | ||
| 146 | a\\$ & a | ||
| 147 | a\\$ & a$ | ||
| 148 | a\\$ & a\$ | ||
| 149 | a\\$ & a\ a\ | ||
| 150 | |||
| 151 | # back references, ugh | ||
| 152 | a\(b\)\2c bC ESUBREG | ||
| 153 | a\(b\1\)c bC ESUBREG | ||
| 154 | a\(b*\)c\1d b abbcbbd abbcbbd bb | ||
| 155 | a\(b*\)c\1d b abbcbd | ||
| 156 | a\(b*\)c\1d b abbcbbbd | ||
| 157 | ^\(.\)\1 b abc | ||
| 158 | a\([bc]\)\1d b abcdabbd abbd b | ||
| 159 | a\(\([bc]\)\2\)*d b abbccd abbccd | ||
| 160 | a\(\([bc]\)\2\)*d b abbcbd | ||
| 161 | # actually, this next one probably ought to fail, but the spec is unclear | ||
| 162 | a\(\(b\)*\2\)*d b abbbd abbbd | ||
| 163 | # here is a case that no NFA implementation does right | ||
| 164 | \(ab*\)[ab]*\1 b ababaaa ababaaa a | ||
| 165 | # check out normal matching in the presence of back refs | ||
| 166 | \(a\)\1bcd b aabcd aabcd | ||
| 167 | \(a\)\1bc*d b aabcd aabcd | ||
| 168 | \(a\)\1bc*d b aabd aabd | ||
| 169 | \(a\)\1bc*d b aabcccd aabcccd | ||
| 170 | \(a\)\1bc*[ce]d b aabcccd aabcccd | ||
| 171 | ^\(a\)\1b\(c\)*cd$ b aabcccd aabcccd | ||
| 172 | \(b*\)\(a*\1\)* b ab a | ||
| 173 | \([^_]*\)\(_*\1\)* b foo_foo_bar_bar_bar_baz foo_foo foo,_foo | ||
| 174 | \([^_]*\)\(_*\1\)* b bar_bar_bar_baz bar_bar_bar bar,_bar | ||
| 175 | \([^_]*\)\(_*\1\)* b foo_bar_baz foo foo | ||
| 176 | \(.*\)\1 b "" "" | ||
| 177 | \(.*\)\1 b a "" | ||
| 178 | \(.*\)\1 b aa aa | ||
| 179 | \(.*\)\1 b aaa aa | ||
| 180 | \(.*\)\1 b aaaa aaaa | ||
| 181 | \([^_]*\)\1 b "" "" | ||
| 182 | \([^_]*\)\1 b a "" | ||
| 183 | \([^_]*\)\1 b aa aa | ||
| 184 | \([^_]*\)\1 b aaa aa | ||
| 185 | \([^_]*\)\1 b aaaa aaaa | ||
| 186 | foo\(.*\)bar\1 b foolbarl foolbarl l | ||
| 187 | foo\(.*\)bar\1 b foobar foobar "" | ||
| 188 | \(\(.\)b\)*\1 b aba | ||
| 189 | \(\(.\)b\)*\1 b abba | ||
| 190 | \(\(.\)b\)*\1 b abbba | ||
| 191 | \(\(.\)b\)*\1 b abbbba bbbb bb,b | ||
| 192 | \(\(.\)b\)*\1 b abbbbba abbbbb bb,b | ||
| 193 | \(\(.\)b\)*\1 b abbbbbba abbbbb bb,b | ||
| 194 | \(\(.\)b\)*\1 b abbbbbbbbbbbbbba abbbbbbbbbbbbb bb,b | ||
| 195 | \(\(.\)b\)*\1 b abbbbbbbbbbbbbbba abbbbbbbbbbbbbbb bb,b | ||
| 196 | |||
| 197 | # ordinary repetitions | ||
| 198 | ab*c & abc abc | ||
| 199 | ab+c - abc abc | ||
| 200 | ab?c - abc abc | ||
| 201 | a\(*\)b b a*b a*b | ||
| 202 | a\(**\)b b ab ab | ||
| 203 | a\(***\)b bC BADRPT | ||
| 204 | *a b *a *a | ||
| 205 | **a b a a | ||
| 206 | ***a bC BADRPT | ||
| 207 | |||
| 208 | # the dreaded bounded repetitions | ||
| 209 | { & { { | ||
| 210 | {abc & {abc {abc | ||
| 211 | {1 C BADRPT | ||
| 212 | {1} C BADRPT | ||
| 213 | a{b & a{b a{b | ||
| 214 | a{1}b - ab ab | ||
| 215 | a\{1\}b b ab ab | ||
| 216 | a{1,}b - ab ab | ||
| 217 | a\{1,\}b b ab ab | ||
| 218 | a{1,2}b - aab aab | ||
| 219 | a\{1,2\}b b aab aab | ||
| 220 | a{1 C EBRACE | ||
| 221 | a\{1 bC EBRACE | ||
| 222 | a{1a C EBRACE | ||
| 223 | a\{1a bC EBRACE | ||
| 224 | a{1a} C BADBR | ||
| 225 | a\{1a\} bC BADBR | ||
| 226 | a{,2} - a{,2} a{,2} | ||
| 227 | a\{,2\} bC BADBR | ||
| 228 | a{,} - a{,} a{,} | ||
| 229 | a\{,\} bC BADBR | ||
| 230 | a{1,x} C BADBR | ||
| 231 | a\{1,x\} bC BADBR | ||
| 232 | a{1,x C EBRACE | ||
| 233 | a\{1,x bC EBRACE | ||
| 234 | a{300} C BADBR | ||
| 235 | a\{300\} bC BADBR | ||
| 236 | a{1,0} C BADBR | ||
| 237 | a\{1,0\} bC BADBR | ||
| 238 | ab{0,0}c - abcac ac | ||
| 239 | ab\{0,0\}c b abcac ac | ||
| 240 | ab{0,1}c - abcac abc | ||
| 241 | ab\{0,1\}c b abcac abc | ||
| 242 | ab{0,3}c - abbcac abbc | ||
| 243 | ab\{0,3\}c b abbcac abbc | ||
| 244 | ab{1,1}c - acabc abc | ||
| 245 | ab\{1,1\}c b acabc abc | ||
| 246 | ab{1,3}c - acabc abc | ||
| 247 | ab\{1,3\}c b acabc abc | ||
| 248 | ab{2,2}c - abcabbc abbc | ||
| 249 | ab\{2,2\}c b abcabbc abbc | ||
| 250 | ab{2,4}c - abcabbc abbc | ||
| 251 | ab\{2,4\}c b abcabbc abbc | ||
| 252 | ((a{1,10}){1,10}){1,10} - a a a,a | ||
| 253 | |||
| 254 | # multiple repetitions | ||
| 255 | a** &C BADRPT | ||
| 256 | a++ C BADRPT | ||
| 257 | a?? C BADRPT | ||
| 258 | a*+ C BADRPT | ||
| 259 | a*? C BADRPT | ||
| 260 | a+* C BADRPT | ||
| 261 | a+? C BADRPT | ||
| 262 | a?* C BADRPT | ||
| 263 | a?+ C BADRPT | ||
| 264 | a{1}{1} C BADRPT | ||
| 265 | a*{1} C BADRPT | ||
| 266 | a+{1} C BADRPT | ||
| 267 | a?{1} C BADRPT | ||
| 268 | a{1}* C BADRPT | ||
| 269 | a{1}+ C BADRPT | ||
| 270 | a{1}? C BADRPT | ||
| 271 | a*{b} - a{b} a{b} | ||
| 272 | a\{1\}\{1\} bC BADRPT | ||
| 273 | a*\{1\} bC BADRPT | ||
| 274 | a\{1\}* bC BADRPT | ||
| 275 | |||
| 276 | # brackets, and numerous perversions thereof | ||
| 277 | a[b]c & abc abc | ||
| 278 | a[ab]c & abc abc | ||
| 279 | a[^ab]c & adc adc | ||
| 280 | a[]b]c & a]c a]c | ||
| 281 | a[[b]c & a[c a[c | ||
| 282 | a[-b]c & a-c a-c | ||
| 283 | a[^]b]c & adc adc | ||
| 284 | a[^-b]c & adc adc | ||
| 285 | a[b-]c & a-c a-c | ||
| 286 | a[b &C EBRACK | ||
| 287 | a[] &C EBRACK | ||
| 288 | a[1-3]c & a2c a2c | ||
| 289 | a[3-1]c &C ERANGE | ||
| 290 | a[1-3-5]c &C ERANGE | ||
| 291 | a[[.-.]--]c & a-c a-c | ||
| 292 | a[1- &C ERANGE | ||
| 293 | a[[. &C EBRACK | ||
| 294 | a[[.x &C EBRACK | ||
| 295 | a[[.x. &C EBRACK | ||
| 296 | a[[.x.] &C EBRACK | ||
| 297 | a[[.x.]] & ax ax | ||
| 298 | a[[.x,.]] &C ECOLLATE | ||
| 299 | a[[.one.]]b & a1b a1b | ||
| 300 | a[[.notdef.]]b &C ECOLLATE | ||
| 301 | a[[.].]]b & a]b a]b | ||
| 302 | a[[:alpha:]]c & abc abc | ||
| 303 | a[[:notdef:]]c &C ECTYPE | ||
| 304 | a[[: &C EBRACK | ||
| 305 | a[[:alpha &C EBRACK | ||
| 306 | a[[:alpha:] &C EBRACK | ||
| 307 | a[[:alpha,:] &C ECTYPE | ||
| 308 | a[[:]:]]b &C ECTYPE | ||
| 309 | a[[:-:]]b &C ECTYPE | ||
| 310 | a[[:alph:]] &C ECTYPE | ||
| 311 | a[[:alphabet:]] &C ECTYPE | ||
| 312 | [[:alnum:]]+ - -%@a0X- a0X | ||
| 313 | [[:alpha:]]+ - -%@aX0- aX | ||
| 314 | [[:blank:]]+ - aSSTb SST | ||
| 315 | [[:cntrl:]]+ - aNTb NT | ||
| 316 | [[:digit:]]+ - a019b 019 | ||
| 317 | [[:graph:]]+ - Sa%bS a%b | ||
| 318 | [[:lower:]]+ - AabC ab | ||
| 319 | [[:print:]]+ - NaSbN aSb | ||
| 320 | [[:punct:]]+ - S%-&T %-& | ||
| 321 | [[:space:]]+ - aSNTb SNT | ||
| 322 | [[:upper:]]+ - aBCd BC | ||
| 323 | [[:xdigit:]]+ - p0f3Cq 0f3C | ||
| 324 | a[[=b=]]c & abc abc | ||
| 325 | a[[= &C EBRACK | ||
| 326 | a[[=b &C EBRACK | ||
| 327 | a[[=b= &C EBRACK | ||
| 328 | a[[=b=] &C EBRACK | ||
| 329 | a[[=b,=]] &C ECOLLATE | ||
| 330 | a[[=one=]]b & a1b a1b | ||
| 331 | |||
| 332 | # complexities | ||
| 333 | a(((b)))c - abc abc | ||
| 334 | a(b|(c))d - abd abd | ||
| 335 | a(b*|c)d - abbd abbd | ||
| 336 | # just gotta have one DFA-buster, of course | ||
| 337 | a[ab]{20} - aaaaabaaaabaaaabaaaab aaaaabaaaabaaaabaaaab | ||
| 338 | # and an inline expansion in case somebody gets tricky | ||
| 339 | a[ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab] - aaaaabaaaabaaaabaaaab aaaaabaaaabaaaabaaaab | ||
| 340 | # and in case somebody just slips in an NFA... | ||
| 341 | a[ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab][ab](wee|week)(knights|night) - aaaaabaaaabaaaabaaaabweeknights aaaaabaaaabaaaabaaaabweeknights | ||
| 342 | # fish for anomalies as the number of states passes 32 | ||
| 343 | 12345678901234567890123456789 - a12345678901234567890123456789b 12345678901234567890123456789 | ||
| 344 | 123456789012345678901234567890 - a123456789012345678901234567890b 123456789012345678901234567890 | ||
| 345 | 1234567890123456789012345678901 - a1234567890123456789012345678901b 1234567890123456789012345678901 | ||
| 346 | 12345678901234567890123456789012 - a12345678901234567890123456789012b 12345678901234567890123456789012 | ||
| 347 | 123456789012345678901234567890123 - a123456789012345678901234567890123b 123456789012345678901234567890123 | ||
| 348 | # and one really big one, beyond any plausible word width | ||
| 349 | 1234567890123456789012345678901234567890123456789012345678901234567890 - a1234567890123456789012345678901234567890123456789012345678901234567890b 1234567890123456789012345678901234567890123456789012345678901234567890 | ||
| 350 | # fish for problems as brackets go past 8 | ||
| 351 | [ab][cd][ef][gh][ij][kl][mn] - xacegikmoq acegikm | ||
| 352 | [ab][cd][ef][gh][ij][kl][mn][op] - xacegikmoq acegikmo | ||
| 353 | [ab][cd][ef][gh][ij][kl][mn][op][qr] - xacegikmoqy acegikmoq | ||
| 354 | [ab][cd][ef][gh][ij][kl][mn][op][q] - xacegikmoqy acegikmoq | ||
| 355 | |||
| 356 | # subtleties of matching | ||
| 357 | abc & xabcy abc | ||
| 358 | a\(b\)?c\1d b acd | ||
| 359 | aBc i Abc Abc | ||
| 360 | a[Bc]*d i abBCcd abBCcd | ||
| 361 | 0[[:upper:]]1 &i 0a1 0a1 | ||
| 362 | 0[[:lower:]]1 &i 0A1 0A1 | ||
| 363 | a[^b]c &i abc | ||
| 364 | a[^b]c &i aBc | ||
| 365 | a[^b]c &i adc adc | ||
| 366 | [a]b[c] - abc abc | ||
| 367 | [a]b[a] - aba aba | ||
| 368 | [abc]b[abc] - abc abc | ||
| 369 | [abc]b[abd] - abd abd | ||
| 370 | a(b?c)+d - accd accd | ||
| 371 | (wee|week)(knights|night) - weeknights weeknights | ||
| 372 | (we|wee|week|frob)(knights|night|day) - weeknights weeknights | ||
| 373 | a[bc]d - xyzaaabcaababdacd abd | ||
| 374 | a[ab]c - aaabc abc | ||
| 375 | abc s abc abc | ||
| 376 | a* & b @b | ||
| 377 | |||
| 378 | # Let's have some fun -- try to match a C comment. | ||
| 379 | # first the obvious, which looks okay at first glance... | ||
| 380 | /\*.*\*/ - /*x*/ /*x*/ | ||
| 381 | # but... | ||
| 382 | /\*.*\*/ - /*x*/y/*z*/ /*x*/y/*z*/ | ||
| 383 | # okay, we must not match */ inside; try to do that... | ||
| 384 | /\*([^*]|\*[^/])*\*/ - /*x*/ /*x*/ | ||
| 385 | /\*([^*]|\*[^/])*\*/ - /*x*/y/*z*/ /*x*/ | ||
| 386 | # but... | ||
| 387 | /\*([^*]|\*[^/])*\*/ - /*x**/y/*z*/ /*x**/y/*z*/ | ||
| 388 | # and a still fancier version, which does it right (I think)... | ||
| 389 | /\*([^*]|\*+[^*/])*\*+/ - /*x*/ /*x*/ | ||
| 390 | /\*([^*]|\*+[^*/])*\*+/ - /*x*/y/*z*/ /*x*/ | ||
| 391 | /\*([^*]|\*+[^*/])*\*+/ - /*x**/y/*z*/ /*x**/ | ||
| 392 | /\*([^*]|\*+[^*/])*\*+/ - /*x****/y/*z*/ /*x****/ | ||
| 393 | /\*([^*]|\*+[^*/])*\*+/ - /*x**x*/y/*z*/ /*x**x*/ | ||
| 394 | /\*([^*]|\*+[^*/])*\*+/ - /*x***x/y/*z*/ /*x***x/y/*z*/ | ||
| 395 | |||
| 396 | # subexpressions | ||
| 397 | a(b)(c)d - abcd abcd b,c | ||
| 398 | a(((b)))c - abc abc b,b,b | ||
| 399 | a(b|(c))d - abd abd b,- | ||
| 400 | a(b*|c|e)d - abbd abbd bb | ||
| 401 | a(b*|c|e)d - acd acd c | ||
| 402 | a(b*|c|e)d - ad ad @d | ||
| 403 | a(b?)c - abc abc b | ||
| 404 | a(b?)c - ac ac @c | ||
| 405 | a(b+)c - abc abc b | ||
| 406 | a(b+)c - abbbc abbbc bbb | ||
| 407 | a(b*)c - ac ac @c | ||
| 408 | (a|ab)(bc([de]+)f|cde) - abcdef abcdef a,bcdef,de | ||
| 409 | # the regression tester only asks for 9 subexpressions | ||
| 410 | a(b)(c)(d)(e)(f)(g)(h)(i)(j)k - abcdefghijk abcdefghijk b,c,d,e,f,g,h,i,j | ||
| 411 | a(b)(c)(d)(e)(f)(g)(h)(i)(j)(k)l - abcdefghijkl abcdefghijkl b,c,d,e,f,g,h,i,j,k | ||
| 412 | a([bc]?)c - abc abc b | ||
| 413 | a([bc]?)c - ac ac @c | ||
| 414 | a([bc]+)c - abc abc b | ||
| 415 | a([bc]+)c - abcc abcc bc | ||
| 416 | a([bc]+)bc - abcbc abcbc bc | ||
| 417 | a(bb+|b)b - abb abb b | ||
| 418 | a(bbb+|bb+|b)b - abb abb b | ||
| 419 | a(bbb+|bb+|b)b - abbb abbb bb | ||
| 420 | a(bbb+|bb+|b)bb - abbb abbb b | ||
| 421 | (.*).* - abcdef abcdef abcdef | ||
| 422 | (a*)* - bc @b @b | ||
| 423 | |||
| 424 | # do we get the right subexpression when it is used more than once? | ||
| 425 | a(b|c)*d - ad ad - | ||
| 426 | a(b|c)*d - abcd abcd c | ||
| 427 | a(b|c)+d - abd abd b | ||
| 428 | a(b|c)+d - abcd abcd c | ||
| 429 | a(b|c?)+d - ad ad @d | ||
| 430 | a(b|c?)+d - abcd abcd @d | ||
| 431 | a(b|c){0,0}d - ad ad - | ||
| 432 | a(b|c){0,1}d - ad ad - | ||
| 433 | a(b|c){0,1}d - abd abd b | ||
| 434 | a(b|c){0,2}d - ad ad - | ||
| 435 | a(b|c){0,2}d - abcd abcd c | ||
| 436 | a(b|c){0,}d - ad ad - | ||
| 437 | a(b|c){0,}d - abcd abcd c | ||
| 438 | a(b|c){1,1}d - abd abd b | ||
| 439 | a(b|c){1,1}d - acd acd c | ||
| 440 | a(b|c){1,2}d - abd abd b | ||
| 441 | a(b|c){1,2}d - abcd abcd c | ||
| 442 | a(b|c){1,}d - abd abd b | ||
| 443 | a(b|c){1,}d - abcd abcd c | ||
| 444 | a(b|c){2,2}d - acbd acbd b | ||
| 445 | a(b|c){2,2}d - abcd abcd c | ||
| 446 | a(b|c){2,4}d - abcd abcd c | ||
| 447 | a(b|c){2,4}d - abcbd abcbd b | ||
| 448 | a(b|c){2,4}d - abcbcd abcbcd c | ||
| 449 | a(b|c){2,}d - abcd abcd c | ||
| 450 | a(b|c){2,}d - abcbd abcbd b | ||
| 451 | a(b+|((c)*))+d - abd abd @d,@d,- | ||
| 452 | a(b+|((c)*))+d - abcd abcd @d,@d,- | ||
| 453 | |||
| 454 | # check out the STARTEND option | ||
| 455 | [abc] &# a(b)c b | ||
| 456 | [abc] &# a(d)c | ||
| 457 | [abc] &# a(bc)d b | ||
| 458 | [abc] &# a(dc)d c | ||
| 459 | . &# a()c | ||
| 460 | b.*c &# b(bc)c bc | ||
| 461 | b.* &# b(bc)c bc | ||
| 462 | .*c &# b(bc)c bc | ||
| 463 | |||
| 464 | # plain strings, with the NOSPEC flag | ||
| 465 | abc m abc abc | ||
| 466 | abc m xabcy abc | ||
| 467 | abc m xyz | ||
| 468 | a*b m aba*b a*b | ||
| 469 | a*b m ab | ||
| 470 | "" mC EMPTY | ||
| 471 | |||
| 472 | # cases involving NULs | ||
| 473 | aZb & a a | ||
| 474 | aZb &p a | ||
| 475 | aZb &p# (aZb) aZb | ||
| 476 | aZ*b &p# (ab) ab | ||
| 477 | a.b &# (aZb) aZb | ||
| 478 | a.* &# (aZb)c aZb | ||
| 479 | |||
| 480 | # word boundaries (ick) | ||
| 481 | [[:<:]]a & a a | ||
| 482 | [[:<:]]a & ba | ||
| 483 | [[:<:]]a & -a a | ||
| 484 | a[[:>:]] & a a | ||
| 485 | a[[:>:]] & ab | ||
| 486 | a[[:>:]] & a- a | ||
| 487 | [[:<:]]a.c[[:>:]] & axcd-dayc-dazce-abc abc | ||
| 488 | [[:<:]]a.c[[:>:]] & axcd-dayc-dazce-abc-q abc | ||
| 489 | [[:<:]]a.c[[:>:]] & axc-dayc-dazce-abc axc | ||
| 490 | [[:<:]]b.c[[:>:]] & a_bxc-byc_d-bzc-q bzc | ||
| 491 | [[:<:]].x..[[:>:]] & y_xa_-_xb_y-_xc_-axdc _xc_ | ||
| 492 | [[:<:]]a_b[[:>:]] & x_a_b | ||
| 493 | |||
| 494 | # past problems, and suspected problems | ||
| 495 | (A[1])|(A[2])|(A[3])|(A[4])|(A[5])|(A[6])|(A[7])|(A[8])|(A[9])|(A[A]) - A1 A1 | ||
| 496 | abcdefghijklmnop i abcdefghijklmnop abcdefghijklmnop | ||
| 497 | abcdefghijklmnopqrstuv i abcdefghijklmnopqrstuv abcdefghijklmnopqrstuv | ||
| 498 | (ALAK)|(ALT[AB])|(CC[123]1)|(CM[123]1)|(GAMC)|(LC[23][EO ])|(SEM[1234])|(SL[ES][12])|(SLWW)|(SLF )|(SLDT)|(VWH[12])|(WH[34][EW])|(WP1[ESN]) - CC11 CC11 | ||
| 499 | CC[13]1|a{21}[23][EO][123][Es][12]a{15}aa[34][EW]aaaaaaa[X]a - CC11 CC11 | ||
| 500 | Char \([a-z0-9_]*\)\[.* b Char xyz[k Char xyz[k xyz | ||
| 501 | a?b - ab ab | ||
| 502 | -\{0,1\}[0-9]*$ b -5 -5 | ||
| 503 | |||
diff --git a/src/regress/lib/libc/setjmp-signal/Makefile b/src/regress/lib/libc/setjmp-signal/Makefile new file mode 100644 index 0000000000..a9649a8abe --- /dev/null +++ b/src/regress/lib/libc/setjmp-signal/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2002/07/31 05:18:24 art Exp $ | ||
| 2 | |||
| 3 | PROG= setjmp-signal | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/setjmp-signal/setjmp-signal.c b/src/regress/lib/libc/setjmp-signal/setjmp-signal.c new file mode 100644 index 0000000000..310e4052ef --- /dev/null +++ b/src/regress/lib/libc/setjmp-signal/setjmp-signal.c | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | /* $OpenBSD: setjmp-signal.c,v 1.3 2003/01/03 20:46:05 miod Exp $ */ | ||
| 2 | /* | ||
| 3 | * Written by Artur Grabowski <art@openbsd.org> 2002 Public Domain. | ||
| 4 | */ | ||
| 5 | |||
| 6 | #include <setjmp.h> | ||
| 7 | #include <signal.h> | ||
| 8 | |||
| 9 | jmp_buf jb; | ||
| 10 | |||
| 11 | void | ||
| 12 | segv_handler(int signum) | ||
| 13 | { | ||
| 14 | longjmp(jb, 1); | ||
| 15 | } | ||
| 16 | |||
| 17 | int | ||
| 18 | main() | ||
| 19 | { | ||
| 20 | signal(SIGSEGV, segv_handler); | ||
| 21 | if (setjmp(jb) == 0) { | ||
| 22 | *((int *)0L) = 0; | ||
| 23 | return (1); | ||
| 24 | } | ||
| 25 | return (0); | ||
| 26 | } | ||
diff --git a/src/regress/lib/libc/setjmp/Makefile b/src/regress/lib/libc/setjmp/Makefile new file mode 100644 index 0000000000..fc68e8d44c --- /dev/null +++ b/src/regress/lib/libc/setjmp/Makefile | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.3 2002/01/01 23:00:51 art Exp $ | ||
| 2 | # $NetBSD: Makefile,v 1.2 1995/04/20 22:40:13 cgd Exp $ | ||
| 3 | |||
| 4 | PROG= setjmptest | ||
| 5 | SRCS= jmptest.c | ||
| 6 | |||
| 7 | CFLAGS+= -DTEST_SETJMP | ||
| 8 | |||
| 9 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/setjmp/jmptest.c b/src/regress/lib/libc/setjmp/jmptest.c new file mode 100644 index 0000000000..9512c9ee34 --- /dev/null +++ b/src/regress/lib/libc/setjmp/jmptest.c | |||
| @@ -0,0 +1,136 @@ | |||
| 1 | /* $OpenBSD: jmptest.c,v 1.7 2003/09/02 23:52:16 david Exp $ */ | ||
| 2 | /* $NetBSD: jmptest.c,v 1.2 1995/01/01 20:55:35 jtc Exp $ */ | ||
| 3 | |||
| 4 | /* | ||
| 5 | * Copyright (c) 1994 Christopher G. Demetriou | ||
| 6 | * All rights reserved. | ||
| 7 | * | ||
| 8 | * Redistribution and use in source and binary forms, with or without | ||
| 9 | * modification, are permitted provided that the following conditions | ||
| 10 | * are met: | ||
| 11 | * 1. Redistributions of source code must retain the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer. | ||
| 13 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 14 | * notice, this list of conditions and the following disclaimer in the | ||
| 15 | * documentation and/or other materials provided with the distribution. | ||
| 16 | * 3. All advertising materials mentioning features or use of this software | ||
| 17 | * must display the following acknowledgement: | ||
| 18 | * This product includes software developed by Christopher G. Demetriou | ||
| 19 | * for the NetBSD Project. | ||
| 20 | * 4. The name of the author may not be used to endorse or promote products | ||
| 21 | * derived from this software without specific prior written permission | ||
| 22 | * | ||
| 23 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | ||
| 24 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
| 25 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
| 26 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| 27 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
| 28 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
| 29 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
| 30 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
| 31 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
| 32 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 33 | */ | ||
| 34 | |||
| 35 | #include <sys/types.h> | ||
| 36 | #include <err.h> | ||
| 37 | #include <setjmp.h> | ||
| 38 | #include <signal.h> | ||
| 39 | #include <stdio.h> | ||
| 40 | #include <stdlib.h> | ||
| 41 | #include <string.h> | ||
| 42 | #include <unistd.h> | ||
| 43 | |||
| 44 | #if (TEST_SETJMP + TEST_U_SETJMP + TEST_SIGSETJMP) != 1 | ||
| 45 | #error one of TEST_SETJMP, TEST_U_SETJMP, or TEST_SIGSETJMP must be defined | ||
| 46 | #endif | ||
| 47 | |||
| 48 | #ifdef TEST_SETJMP | ||
| 49 | #define BUF jmp_buf | ||
| 50 | #define SET(b, m) setjmp(b) | ||
| 51 | #define JMP(b, v) longjmp(b, v) | ||
| 52 | #endif | ||
| 53 | |||
| 54 | #ifdef TEST_U_SETJMP | ||
| 55 | #define BUF jmp_buf | ||
| 56 | #define SET(b, m) _setjmp(b) | ||
| 57 | #define JMP(b, v) _longjmp(b, v) | ||
| 58 | #endif | ||
| 59 | |||
| 60 | #ifdef TEST_SIGSETJMP | ||
| 61 | #define BUF sigjmp_buf | ||
| 62 | #define SET(b, m) sigsetjmp(b, m) | ||
| 63 | #define JMP(b, v) siglongjmp(b, v) | ||
| 64 | #endif | ||
| 65 | |||
| 66 | int expectsignal; | ||
| 67 | |||
| 68 | static void | ||
| 69 | aborthandler(int signo) | ||
| 70 | { | ||
| 71 | |||
| 72 | if (expectsignal) | ||
| 73 | _exit(0); | ||
| 74 | else { | ||
| 75 | warnx("kill(SIGABRT) succeeded"); | ||
| 76 | _exit(1); | ||
| 77 | } | ||
| 78 | } | ||
| 79 | |||
| 80 | int | ||
| 81 | main(int argc, char *argv[]) | ||
| 82 | { | ||
| 83 | struct sigaction sa; | ||
| 84 | BUF jb; | ||
| 85 | sigset_t ss; | ||
| 86 | int i, x; | ||
| 87 | |||
| 88 | i = getpid(); | ||
| 89 | |||
| 90 | #ifdef TEST_SETJMP | ||
| 91 | expectsignal = 0; | ||
| 92 | #endif | ||
| 93 | #ifdef TEST_U_SETJMP | ||
| 94 | expectsignal = 1; | ||
| 95 | #endif | ||
| 96 | #ifdef TEST_SIGSETJMP | ||
| 97 | if (argc != 2 || | ||
| 98 | (strcmp(argv[1], "save") && strcmp(argv[1], "nosave"))) { | ||
| 99 | fprintf(stderr, "usage: %s [save|nosave]\n", argv[0]); | ||
| 100 | exit(1); | ||
| 101 | } | ||
| 102 | expectsignal = (strcmp(argv[1], "save") != 0); | ||
| 103 | #endif | ||
| 104 | |||
| 105 | sa.sa_handler = aborthandler; | ||
| 106 | sigemptyset(&sa.sa_mask); | ||
| 107 | sa.sa_flags = 0; | ||
| 108 | if (sigaction(SIGABRT, &sa, NULL) == -1) | ||
| 109 | err(1, "sigaction failed"); | ||
| 110 | |||
| 111 | if (sigemptyset(&ss) == -1) | ||
| 112 | err(1, "sigemptyset failed"); | ||
| 113 | if (sigaddset(&ss, SIGABRT) == -1) | ||
| 114 | err(1, "sigaddset failed"); | ||
| 115 | if (sigprocmask(SIG_BLOCK, &ss, NULL) == -1) | ||
| 116 | err(1, "sigprocmask (1) failed"); | ||
| 117 | |||
| 118 | x = SET(jb, !expectsignal); | ||
| 119 | if (x != 0) { | ||
| 120 | if (x != i) | ||
| 121 | errx(1, "setjmp returned wrong value"); | ||
| 122 | |||
| 123 | kill(i, SIGABRT); | ||
| 124 | if (expectsignal) | ||
| 125 | errx(1, "kill(SIGABRT) failed"); | ||
| 126 | else | ||
| 127 | exit(0); | ||
| 128 | } | ||
| 129 | |||
| 130 | if (sigprocmask(SIG_UNBLOCK, &ss, NULL) == -1) | ||
| 131 | err(1, "sigprocmask (2) failed"); | ||
| 132 | |||
| 133 | JMP(jb, i); | ||
| 134 | |||
| 135 | errx(1, "jmp failed"); | ||
| 136 | } | ||
diff --git a/src/regress/lib/libc/sigreturn/Makefile b/src/regress/lib/libc/sigreturn/Makefile new file mode 100644 index 0000000000..9891ba9e05 --- /dev/null +++ b/src/regress/lib/libc/sigreturn/Makefile | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.5 2002/09/02 20:01:43 avsm Exp $ | ||
| 2 | |||
| 3 | PROG= sigret | ||
| 4 | |||
| 5 | DEBUG+= -ggdb | ||
| 6 | |||
| 7 | REGRESS_TARGETS+= sigret-normal sigret-indirect sigret-altstack | ||
| 8 | |||
| 9 | sigret-normal: ${PROG} | ||
| 10 | ./${PROG} | ||
| 11 | |||
| 12 | sigret-indirect: ${PROG} | ||
| 13 | ./${PROG} -i | ||
| 14 | |||
| 15 | sigret-altstack: ${PROG} | ||
| 16 | ./${PROG} -a | ||
| 17 | |||
| 18 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/sigreturn/sigret.c b/src/regress/lib/libc/sigreturn/sigret.c new file mode 100644 index 0000000000..72945fa503 --- /dev/null +++ b/src/regress/lib/libc/sigreturn/sigret.c | |||
| @@ -0,0 +1,181 @@ | |||
| 1 | /* | ||
| 2 | * $OpenBSD: sigret.c,v 1.5 2003/07/31 21:48:04 deraadt Exp $ | ||
| 3 | * | ||
| 4 | * Public Domain | ||
| 5 | * | ||
| 6 | * Playing games with sigreturn. Check if calling sigreturn from a | ||
| 7 | * signal handler screws anything up. | ||
| 8 | * | ||
| 9 | * Run with: | ||
| 10 | * -a: use an alternate signal stack | ||
| 11 | * | ||
| 12 | * -b: call sigreturn from outside of a signal handler | ||
| 13 | * An error is OK | ||
| 14 | * | ||
| 15 | * -c: clobber the sigcontext before calling sigreturn | ||
| 16 | * the program should die | ||
| 17 | * | ||
| 18 | * -f: don't use sigreturn -- fall through the signal handler | ||
| 19 | * -c, and -i options ignored when used | ||
| 20 | * | ||
| 21 | * -i: call sigreturn from a function called by the signal handler | ||
| 22 | * | ||
| 23 | */ | ||
| 24 | |||
| 25 | #include <sys/time.h> | ||
| 26 | |||
| 27 | #include <err.h> | ||
| 28 | #include <signal.h> | ||
| 29 | #include <stdarg.h> | ||
| 30 | #include <stdio.h> | ||
| 31 | #include <stdlib.h> | ||
| 32 | #include <string.h> | ||
| 33 | #include <unistd.h> | ||
| 34 | |||
| 35 | /* | ||
| 36 | * sigalarm occurs 50 times/second. Stop running after 10 seconds | ||
| 37 | * (100 interrupts). | ||
| 38 | */ | ||
| 39 | #define MAX_INTERRUPTS 500 | ||
| 40 | |||
| 41 | int failed; | ||
| 42 | int altstack; | ||
| 43 | int badcall; | ||
| 44 | int clobbercall; | ||
| 45 | int fallthru; | ||
| 46 | int indirect; | ||
| 47 | |||
| 48 | volatile int count; | ||
| 49 | struct sigcontext gscp; | ||
| 50 | int gscp_loaded; | ||
| 51 | |||
| 52 | static void | ||
| 53 | usage(const char * err, ...) | ||
| 54 | { | ||
| 55 | extern const char * __progname; | ||
| 56 | |||
| 57 | if (err) { | ||
| 58 | va_list ap; | ||
| 59 | va_start(ap, err); | ||
| 60 | vwarnx(err, ap); | ||
| 61 | va_end(ap); | ||
| 62 | } | ||
| 63 | fprintf(stderr, "usage: %s [-abcfi]\n", __progname); | ||
| 64 | exit(1); | ||
| 65 | } | ||
| 66 | |||
| 67 | static void | ||
| 68 | indirect_return(struct sigcontext * scp) | ||
| 69 | { | ||
| 70 | sigreturn(scp); | ||
| 71 | } | ||
| 72 | |||
| 73 | static void | ||
| 74 | sig_handler(int sig, siginfo_t *blah, void *x) | ||
| 75 | { | ||
| 76 | struct sigcontext * scp = x; | ||
| 77 | |||
| 78 | count++; | ||
| 79 | |||
| 80 | if (!fallthru) { | ||
| 81 | if (clobbercall) | ||
| 82 | memset(scp, 0, sizeof *scp); | ||
| 83 | if (indirect) | ||
| 84 | indirect_return(scp); | ||
| 85 | else if (badcall) { | ||
| 86 | gscp = *scp; | ||
| 87 | gscp_loaded = 1; | ||
| 88 | } else | ||
| 89 | sigreturn(scp); | ||
| 90 | } | ||
| 91 | } | ||
| 92 | |||
| 93 | static void | ||
| 94 | test2(char *fmt) | ||
| 95 | { | ||
| 96 | char *ofmt = fmt; | ||
| 97 | |||
| 98 | if (gscp_loaded) { | ||
| 99 | gscp_loaded = 0; | ||
| 100 | sigreturn(&gscp); | ||
| 101 | } | ||
| 102 | |||
| 103 | for (; *fmt; fmt++) | ||
| 104 | switch (*fmt) { | ||
| 105 | case 'i': | ||
| 106 | case 'c': | ||
| 107 | case 'l': | ||
| 108 | case 'p': | ||
| 109 | break; | ||
| 110 | default: | ||
| 111 | failed = 1; | ||
| 112 | fprintf(stderr, | ||
| 113 | "unexpected character 0x%02x `%c' in %s: count %d\n", | ||
| 114 | *fmt, *fmt, ofmt, count); | ||
| 115 | } | ||
| 116 | } | ||
| 117 | |||
| 118 | int | ||
| 119 | main(int argc, char * argv[]) | ||
| 120 | { | ||
| 121 | extern char *optarg; | ||
| 122 | extern int optind; | ||
| 123 | |||
| 124 | int opt; | ||
| 125 | |||
| 126 | struct sigaction act; | ||
| 127 | struct sigaltstack ss; | ||
| 128 | |||
| 129 | while ((opt = getopt(argc, argv, "abcfi")) != -1) { | ||
| 130 | switch (opt) { | ||
| 131 | case 'a': | ||
| 132 | /* use sigaltstack */ | ||
| 133 | altstack = 1; | ||
| 134 | break; | ||
| 135 | case 'b': | ||
| 136 | /* call outside of sig_handler */ | ||
| 137 | badcall = 1; | ||
| 138 | break; | ||
| 139 | case 'c': | ||
| 140 | /* force error by munging sigcontext */ | ||
| 141 | clobbercall = 1; | ||
| 142 | break; | ||
| 143 | case 'f': | ||
| 144 | /* don't use sigreturn */ | ||
| 145 | fallthru = 1; | ||
| 146 | break; | ||
| 147 | case 'i': | ||
| 148 | /* call sigreturn indirectly */ | ||
| 149 | indirect = 1; | ||
| 150 | break; | ||
| 151 | } | ||
| 152 | } | ||
| 153 | |||
| 154 | /* make sure there is no other cruft left on the command line */ | ||
| 155 | if (optind != argc) | ||
| 156 | usage("unknown argument -- %s", argv[ optind ]); | ||
| 157 | |||
| 158 | if (altstack) { | ||
| 159 | if ((ss.ss_sp = malloc(SIGSTKSZ)) == NULL) | ||
| 160 | errx(1, "ss_sp malloc"); | ||
| 161 | |||
| 162 | ss.ss_size = SIGSTKSZ; | ||
| 163 | ss.ss_flags = 0; | ||
| 164 | if (sigaltstack(&ss,0) == -1) | ||
| 165 | err(1, "sigaltstack"); | ||
| 166 | } | ||
| 167 | |||
| 168 | sigfillset(&act.sa_mask); | ||
| 169 | act.sa_sigaction = sig_handler; | ||
| 170 | act.sa_flags = SA_RESTART; | ||
| 171 | if (altstack) | ||
| 172 | act.sa_flags |= SA_ONSTACK; | ||
| 173 | sigaction(SIGALRM, &act, NULL); | ||
| 174 | |||
| 175 | ualarm(10000, 10000); | ||
| 176 | |||
| 177 | while (count < MAX_INTERRUPTS) | ||
| 178 | test2("iclp"); | ||
| 179 | |||
| 180 | return failed; | ||
| 181 | } | ||
diff --git a/src/regress/lib/libc/sigsetjmp/Makefile b/src/regress/lib/libc/sigsetjmp/Makefile new file mode 100644 index 0000000000..f88bea3b47 --- /dev/null +++ b/src/regress/lib/libc/sigsetjmp/Makefile | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.5 2002/09/02 20:01:43 avsm Exp $ | ||
| 2 | |||
| 3 | PROG= sigsetjmptest | ||
| 4 | SRCS= jmptest.c | ||
| 5 | |||
| 6 | CFLAGS+= -DTEST_SIGSETJMP | ||
| 7 | |||
| 8 | .PATH: ${.CURDIR}/../setjmp | ||
| 9 | |||
| 10 | REGRESS_TARGETS=sigsetjmp-save sigsetjmp-nosave | ||
| 11 | |||
| 12 | sigsetjmp-save: ${PROG} | ||
| 13 | ./${PROG} save | ||
| 14 | sigsetjmp-nosave: ${PROG} | ||
| 15 | ./${PROG} nosave | ||
| 16 | |||
| 17 | .PHONY: ${REGRESS_TARGETS} | ||
| 18 | |||
| 19 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/sleep/Makefile b/src/regress/lib/libc/sleep/Makefile new file mode 100644 index 0000000000..3700b1662a --- /dev/null +++ b/src/regress/lib/libc/sleep/Makefile | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2009/12/14 05:08:19 guenther Exp $ | ||
| 2 | |||
| 3 | NOMAN= | ||
| 4 | PROG=sleep_test | ||
| 5 | CPPFLAGS+=-I${.CURDIR}/../../../../lib/libc | ||
| 6 | |||
| 7 | run-regress-${PROG}: ${PROG} | ||
| 8 | [ x$$(./${PROG} 1) = x0 ] || exit 1 | ||
| 9 | file=$$(mktemp -t sleep.XXXXXXXXXX); ./${PROG} 4 >$$file & pid=$$!; \ | ||
| 10 | sleep 1; kill $$pid; sleep 1; v=$$(cat $$file); rm -f $$file; \ | ||
| 11 | { [ $$v -gt 0 ] && [ $$v -lt 4 ] ; } || exit 2 | ||
| 12 | |||
| 13 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/sleep/sleep_test.c b/src/regress/lib/libc/sleep/sleep_test.c new file mode 100644 index 0000000000..c9ab0d095f --- /dev/null +++ b/src/regress/lib/libc/sleep/sleep_test.c | |||
| @@ -0,0 +1,84 @@ | |||
| 1 | /* $OpenBSD: sleep_test.c,v 1.1 2009/12/14 05:08:19 guenther Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2009 Philip Guenther | ||
| 5 | * All rights reserved. | ||
| 6 | * | ||
| 7 | * Redistribution and use in source and binary forms, with or without | ||
| 8 | * modification, are permitted provided that the following conditions | ||
| 9 | * are met: | ||
| 10 | * | ||
| 11 | * - Redistributions of source code must retain the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer. | ||
| 13 | * - Redistributions in binary form must reproduce the above | ||
| 14 | * copyright notice, this list of conditions and the following | ||
| 15 | * disclaimer in the documentation and/or other materials provided | ||
| 16 | * with the distribution. | ||
| 17 | * | ||
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
| 19 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
| 20 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
| 21 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
| 22 | * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| 23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
| 24 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
| 25 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
| 26 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
| 28 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
| 29 | * POSSIBILITY OF SUCH DAMAGE. | ||
| 30 | */ | ||
| 31 | |||
| 32 | /* | ||
| 33 | * Test whether sleep returns the correct value | ||
| 34 | */ | ||
| 35 | |||
| 36 | #include <sys/types.h> | ||
| 37 | #include <err.h> | ||
| 38 | #include <errno.h> | ||
| 39 | #include <limits.h> | ||
| 40 | #include <signal.h> | ||
| 41 | #include <stddef.h> | ||
| 42 | #include <stdio.h> | ||
| 43 | #include <stdlib.h> | ||
| 44 | #include <unistd.h> | ||
| 45 | |||
| 46 | static void | ||
| 47 | handler(int sig) | ||
| 48 | { | ||
| 49 | return; | ||
| 50 | } | ||
| 51 | |||
| 52 | static void * | ||
| 53 | garbage(void) | ||
| 54 | { | ||
| 55 | char buf[20]; | ||
| 56 | strlcpy(buf, "012354678901235467890123546789", sizeof buf); | ||
| 57 | return buf; | ||
| 58 | } | ||
| 59 | |||
| 60 | int | ||
| 61 | main(int argc, char *argv[]) | ||
| 62 | { | ||
| 63 | struct sigaction sa; | ||
| 64 | char const *errstr; | ||
| 65 | int i; | ||
| 66 | |||
| 67 | if (argc != 2) | ||
| 68 | return (1); | ||
| 69 | errno = 0; | ||
| 70 | i = strtonum(argv[1], 0, INT_MAX, &errstr); | ||
| 71 | if (i == 0 && errno != 0) { | ||
| 72 | fprintf(stderr, "%s\n", errstr); | ||
| 73 | return (1); | ||
| 74 | } | ||
| 75 | |||
| 76 | memset(&sa, 0, sizeof sa); | ||
| 77 | sa.sa_handler = &handler; | ||
| 78 | if (sigaction(SIGTERM, &sa, NULL)) | ||
| 79 | err(3, "sigaction"); | ||
| 80 | garbage(); | ||
| 81 | printf("%d\n", sleep(i)); | ||
| 82 | return (0); | ||
| 83 | } | ||
| 84 | |||
diff --git a/src/regress/lib/libc/sprintf/Makefile b/src/regress/lib/libc/sprintf/Makefile new file mode 100644 index 0000000000..47bab9cdd3 --- /dev/null +++ b/src/regress/lib/libc/sprintf/Makefile | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2003/05/15 04:23:49 deraadt Exp $ | ||
| 2 | |||
| 3 | NOMAN= | ||
| 4 | PROG=sprintf_test | ||
| 5 | CPPFLAGS+=-I${.CURDIR}/../../../../lib/libc | ||
| 6 | |||
| 7 | run-regress-atexit_test: ${PROG} | ||
| 8 | ./${PROG} | ||
| 9 | |||
| 10 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/sprintf/sprintf_test.c b/src/regress/lib/libc/sprintf/sprintf_test.c new file mode 100644 index 0000000000..61c58f2f09 --- /dev/null +++ b/src/regress/lib/libc/sprintf/sprintf_test.c | |||
| @@ -0,0 +1,102 @@ | |||
| 1 | /* $OpenBSD: sprintf_test.c,v 1.4 2004/09/18 19:31:32 otto Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2003 Theo de Raadt | ||
| 5 | * All rights reserved. | ||
| 6 | * | ||
| 7 | * Redistribution and use in source and binary forms, with or without | ||
| 8 | * modification, are permitted provided that the following conditions | ||
| 9 | * are met: | ||
| 10 | * | ||
| 11 | * - Redistributions of source code must retain the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer. | ||
| 13 | * - Redistributions in binary form must reproduce the above | ||
| 14 | * copyright notice, this list of conditions and the following | ||
| 15 | * disclaimer in the documentation and/or other materials provided | ||
| 16 | * with the distribution. | ||
| 17 | * | ||
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
| 19 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
| 20 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
| 21 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
| 22 | * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| 23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
| 24 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
| 25 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
| 26 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
| 28 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
| 29 | * POSSIBILITY OF SUCH DAMAGE. | ||
| 30 | */ | ||
| 31 | |||
| 32 | #include <stddef.h> | ||
| 33 | #include <stdio.h> | ||
| 34 | #include <stdlib.h> | ||
| 35 | #include <string.h> | ||
| 36 | #include <signal.h> | ||
| 37 | |||
| 38 | char correct[] = | ||
| 39 | "|xx 01 02 03 04\n" | ||
| 40 | "|xx 05 06 07 08\n" | ||
| 41 | "|xx 09 10 11 12\n" | ||
| 42 | "|xx 13 14 15 16\n" | ||
| 43 | "|xx 17 18 19 20\n" | ||
| 44 | "|xx 21 22 23 24\n" | ||
| 45 | "|xx 25 26 27 28\n" | ||
| 46 | "|xx 29 30 31 32\n" | ||
| 47 | "|xx 33 34 35 36\n" | ||
| 48 | "|xx 37 38 39 40\n" | ||
| 49 | "|xx 41 42 43 44\n" | ||
| 50 | "|xx 45 -1 1 -1 1\n"; | ||
| 51 | |||
| 52 | char correct2[] = | ||
| 53 | "1 0 -1 1 1 2 1 3 -1 4 1 \n" | ||
| 54 | "1 -1 1 1 -1 1 \n"; | ||
| 55 | |||
| 56 | int | ||
| 57 | main(int argc, char *argv[]) | ||
| 58 | { | ||
| 59 | char buf[1024]; | ||
| 60 | size_t sz1, sz2, sz3, sz4; | ||
| 61 | ptrdiff_t p1, p2, p3, p4; | ||
| 62 | |||
| 63 | /* Test positional arguments */ | ||
| 64 | snprintf(buf, sizeof buf, | ||
| 65 | "|xx %1$s %2$s %3$s %4$s\n" | ||
| 66 | "|xx %5$s %6$s %7$s %8$s\n" | ||
| 67 | "|xx %9$s %10$s %11$s %12$s\n" | ||
| 68 | "|xx %13$s %14$s %15$s %16$s\n" | ||
| 69 | "|xx %17$s %18$s %19$s %20$s\n" | ||
| 70 | "|xx %21$s %22$s %23$s %24$s\n" | ||
| 71 | "|xx %25$s %26$s %27$s %28$s\n" | ||
| 72 | "|xx %29$s %30$s %31$s %32$s\n" | ||
| 73 | "|xx %33$s %34$s %35$s %36$s\n" | ||
| 74 | "|xx %37$s %38$s %39$s %40$s\n" | ||
| 75 | "|xx %41$s %42$s %43$s %44$s\n" | ||
| 76 | "|xx %45$d %46$ld %47$lld %48$d %49$lld\n", | ||
| 77 | "01", "02", "03", "04", "05", "06", | ||
| 78 | "07", "08", "09", "10", "11", "12", | ||
| 79 | "13", "14", "15", "16", "17", "18", | ||
| 80 | "19", "20", "21", "22", "23", "24", | ||
| 81 | "25", "26", "27", "28", "29", "30", | ||
| 82 | "31", "32", "33", "34", "35", "36", | ||
| 83 | "37", "38", "39", "40", "41", "42", | ||
| 84 | "43", "44", 45, -1L, 1LL, -1, 1LL | ||
| 85 | ); | ||
| 86 | |||
| 87 | if (strcmp(buf, correct) != 0) | ||
| 88 | exit(1); | ||
| 89 | |||
| 90 | sz1 = (size_t)1; | ||
| 91 | sz2 = (size_t)-1; | ||
| 92 | p1 = (ptrdiff_t)1; | ||
| 93 | p2 = (ptrdiff_t)-1; | ||
| 94 | snprintf(buf, sizeof buf, | ||
| 95 | "%zx %d %zd %d %zu %d %tx %d %td %d %tu %zn %tn\n" | ||
| 96 | "%1$zx %3$zd %5$zu %7$tx %9$td %11$tu %14$zn %15$tn\n", | ||
| 97 | sz1, 0, sz2, 1, sz1, 2, p1, 3, p2, 4, p1, &sz3, &p3, &sz4, &p4); | ||
| 98 | if (strcmp(buf, correct2) != 0 || sz3 != 24 || p3 != 25 || | ||
| 99 | sz4 != 40 || p4 != 41) | ||
| 100 | exit(1); | ||
| 101 | exit(0); | ||
| 102 | } | ||
diff --git a/src/regress/lib/libc/stdio_threading/Makefile b/src/regress/lib/libc/stdio_threading/Makefile new file mode 100644 index 0000000000..e42481afc2 --- /dev/null +++ b/src/regress/lib/libc/stdio_threading/Makefile | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | SUBDIR += fopen fread fwrite fgetln fgets fputs | ||
| 2 | |||
| 3 | .include <bsd.subdir.mk> | ||
diff --git a/src/regress/lib/libc/stdio_threading/fgetln/Makefile b/src/regress/lib/libc/stdio_threading/fgetln/Makefile new file mode 100644 index 0000000000..cad51e2b23 --- /dev/null +++ b/src/regress/lib/libc/stdio_threading/fgetln/Makefile | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | TOPDIR=${.CURDIR} | ||
| 2 | PROG=fgetln_test | ||
| 3 | CFLAGS+=-I${TOPDIR}/../include/ | ||
| 4 | LDFLAGS+=-lpthread | ||
| 5 | |||
| 6 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/stdio_threading/fgetln/fgetln_test.c b/src/regress/lib/libc/stdio_threading/fgetln/fgetln_test.c new file mode 100755 index 0000000000..d5c4db2edf --- /dev/null +++ b/src/regress/lib/libc/stdio_threading/fgetln/fgetln_test.c | |||
| @@ -0,0 +1,70 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2008 Bret S. Lambert <blambert@openbsd.org> | ||
| 3 | * | ||
| 4 | * Permission to use, copy, modify, and distribute this software for any | ||
| 5 | * purpose with or without fee is hereby granted, provided that the above | ||
| 6 | * copyright notice and this permission notice appear in all copies. | ||
| 7 | * | ||
| 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include "local.h" | ||
| 18 | |||
| 19 | void | ||
| 20 | fgetln_thread(void *v) | ||
| 21 | { | ||
| 22 | FILE *file = v; | ||
| 23 | size_t len; | ||
| 24 | char *buf; | ||
| 25 | int i; | ||
| 26 | |||
| 27 | for (i = 0; i < 4096; i++) { | ||
| 28 | if ((buf = fgetln(file, &len)) == NULL) { | ||
| 29 | |||
| 30 | if (feof(file)) | ||
| 31 | break; | ||
| 32 | |||
| 33 | printf("OMG!!!\n"); | ||
| 34 | fflush(stdout); | ||
| 35 | break; | ||
| 36 | } | ||
| 37 | if (strncmp(buf, TEXT_N, sizeof(TEXT_N))) | ||
| 38 | err(1, "fgetln not atomic!!!"); | ||
| 39 | } | ||
| 40 | } | ||
| 41 | |||
| 42 | int | ||
| 43 | main(void) | ||
| 44 | { | ||
| 45 | char sfn[24]; | ||
| 46 | char buf[sizeof(TEXT_N)]; | ||
| 47 | FILE *sfp; | ||
| 48 | int fd, i; | ||
| 49 | |||
| 50 | strlcpy(sfn, "/tmp/barnacles.XXXXXXXX", sizeof(sfn)); | ||
| 51 | if ((fd = mkstemp(sfn)) == -1 || | ||
| 52 | (sfp = fdopen(fd, "w+")) == NULL) { | ||
| 53 | if (fd != -1) { | ||
| 54 | unlink(sfn); | ||
| 55 | close(fd); | ||
| 56 | } | ||
| 57 | err(1, "could not open temporary file"); | ||
| 58 | } | ||
| 59 | |||
| 60 | for (i = 0; i < 4096 * THREAD_COUNT; i++) | ||
| 61 | if (fwrite(TEXT_N, sizeof(char), strlen(TEXT_N), sfp) == 0) | ||
| 62 | err(1, "Could not populate test file"); | ||
| 63 | |||
| 64 | run_threads(fgetln_thread, sfp); | ||
| 65 | |||
| 66 | unlink(sfn); | ||
| 67 | close(fd); | ||
| 68 | |||
| 69 | exit(0); | ||
| 70 | } | ||
diff --git a/src/regress/lib/libc/stdio_threading/fgets/Makefile b/src/regress/lib/libc/stdio_threading/fgets/Makefile new file mode 100644 index 0000000000..52310fd429 --- /dev/null +++ b/src/regress/lib/libc/stdio_threading/fgets/Makefile | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | TOPDIR=${.CURDIR} | ||
| 2 | PROG=fgets_test | ||
| 3 | CFLAGS+=-I${TOPDIR}/../include/ | ||
| 4 | LDFLAGS+=-lpthread | ||
| 5 | |||
| 6 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/stdio_threading/fgets/fgets_test.c b/src/regress/lib/libc/stdio_threading/fgets/fgets_test.c new file mode 100755 index 0000000000..685d4c8257 --- /dev/null +++ b/src/regress/lib/libc/stdio_threading/fgets/fgets_test.c | |||
| @@ -0,0 +1,69 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2008 Bret S. Lambert <blambert@openbsd.org> | ||
| 3 | * | ||
| 4 | * Permission to use, copy, modify, and distribute this software for any | ||
| 5 | * purpose with or without fee is hereby granted, provided that the above | ||
| 6 | * copyright notice and this permission notice appear in all copies. | ||
| 7 | * | ||
| 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include "local.h" | ||
| 18 | |||
| 19 | void | ||
| 20 | fgets_thread(void *v) | ||
| 21 | { | ||
| 22 | char buf[sizeof(TEXT_N) + 1]; | ||
| 23 | FILE *file = v; | ||
| 24 | int i; | ||
| 25 | |||
| 26 | for (i = 0; i < 4096; i++) { | ||
| 27 | if (fgets(buf, sizeof(buf), file) == NULL) { | ||
| 28 | |||
| 29 | if (feof(file)) | ||
| 30 | break; | ||
| 31 | |||
| 32 | printf("OMG!!!\n"); | ||
| 33 | fflush(stdout); | ||
| 34 | break; | ||
| 35 | } | ||
| 36 | if (strncmp(buf, TEXT, sizeof(TEXT))) | ||
| 37 | err(1, "Read not atomic!!!"); | ||
| 38 | } | ||
| 39 | } | ||
| 40 | |||
| 41 | int | ||
| 42 | main(void) | ||
| 43 | { | ||
| 44 | char sfn[24]; | ||
| 45 | char buf[sizeof(TEXT)]; | ||
| 46 | FILE *sfp; | ||
| 47 | int fd, i; | ||
| 48 | |||
| 49 | strlcpy(sfn, "/tmp/barnacles.XXXXXXXX", sizeof(sfn)); | ||
| 50 | if ((fd = mkstemp(sfn)) == -1 || | ||
| 51 | (sfp = fdopen(fd, "w+")) == NULL) { | ||
| 52 | if (fd != -1) { | ||
| 53 | unlink(sfn); | ||
| 54 | close(fd); | ||
| 55 | } | ||
| 56 | err(1, "could not open temporary file"); | ||
| 57 | } | ||
| 58 | |||
| 59 | for (i = 0; i < 4096 * THREAD_COUNT; i++) | ||
| 60 | if (fwrite(TEXT_N, sizeof(char), strlen(TEXT_N), sfp) == 0) | ||
| 61 | err(1, "Could not populate test file"); | ||
| 62 | |||
| 63 | run_threads(fgets_thread, sfp); | ||
| 64 | |||
| 65 | unlink(sfn); | ||
| 66 | close(fd); | ||
| 67 | |||
| 68 | exit(0); | ||
| 69 | } | ||
diff --git a/src/regress/lib/libc/stdio_threading/fopen/Makefile b/src/regress/lib/libc/stdio_threading/fopen/Makefile new file mode 100644 index 0000000000..e51deeff1d --- /dev/null +++ b/src/regress/lib/libc/stdio_threading/fopen/Makefile | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | TOPDIR=${.CURDIR} | ||
| 2 | PROG=fopen_test | ||
| 3 | CFLAGS+=-I${TOPDIR}/../include/ | ||
| 4 | LDFLAGS+=-lpthread | ||
| 5 | |||
| 6 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/stdio_threading/fopen/fopen_test.c b/src/regress/lib/libc/stdio_threading/fopen/fopen_test.c new file mode 100755 index 0000000000..72359bb323 --- /dev/null +++ b/src/regress/lib/libc/stdio_threading/fopen/fopen_test.c | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2008 Bret S. Lambert <blambert@openbsd.org> | ||
| 3 | * | ||
| 4 | * Permission to use, copy, modify, and distribute this software for any | ||
| 5 | * purpose with or without fee is hereby granted, provided that the above | ||
| 6 | * copyright notice and this permission notice appear in all copies. | ||
| 7 | * | ||
| 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include <stdio.h> | ||
| 18 | #include <pthread.h> | ||
| 19 | #include "local.h" | ||
| 20 | |||
| 21 | int | ||
| 22 | writefn(void *cookie, const char *buf, int size) | ||
| 23 | { | ||
| 24 | return 0; | ||
| 25 | } | ||
| 26 | |||
| 27 | void | ||
| 28 | fopen_thread(void *v) | ||
| 29 | { | ||
| 30 | FILE *file; | ||
| 31 | int i; | ||
| 32 | |||
| 33 | for (i = 0; i < 4096; i++) { | ||
| 34 | file = fwopen(&i, writefn); | ||
| 35 | if (file != NULL) { | ||
| 36 | fputc('0', file); | ||
| 37 | pthread_yield(); | ||
| 38 | fclose(file); | ||
| 39 | } | ||
| 40 | } | ||
| 41 | } | ||
| 42 | |||
| 43 | int | ||
| 44 | main(void) | ||
| 45 | { | ||
| 46 | run_threads(fopen_thread, NULL); | ||
| 47 | exit(0); | ||
| 48 | } | ||
diff --git a/src/regress/lib/libc/stdio_threading/fputs/Makefile b/src/regress/lib/libc/stdio_threading/fputs/Makefile new file mode 100644 index 0000000000..e561745581 --- /dev/null +++ b/src/regress/lib/libc/stdio_threading/fputs/Makefile | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | TOPDIR=${.CURDIR} | ||
| 2 | PROG=fputs_test | ||
| 3 | CFLAGS+=-I${TOPDIR}/../include/ | ||
| 4 | LDFLAGS+=-lpthread | ||
| 5 | |||
| 6 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/stdio_threading/fputs/fputs_test.c b/src/regress/lib/libc/stdio_threading/fputs/fputs_test.c new file mode 100755 index 0000000000..c0a617510e --- /dev/null +++ b/src/regress/lib/libc/stdio_threading/fputs/fputs_test.c | |||
| @@ -0,0 +1,66 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2008 Bret S. Lambert <blambert@openbsd.org> | ||
| 3 | * | ||
| 4 | * Permission to use, copy, modify, and distribute this software for any | ||
| 5 | * purpose with or without fee is hereby granted, provided that the above | ||
| 6 | * copyright notice and this permission notice appear in all copies. | ||
| 7 | * | ||
| 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include "local.h" | ||
| 18 | |||
| 19 | void | ||
| 20 | fputs_thread(void *v) | ||
| 21 | { | ||
| 22 | FILE *file = v; | ||
| 23 | int i; | ||
| 24 | |||
| 25 | for (i = 0; i < 4096; i++) { | ||
| 26 | if (fputs(TEXT, file) != 0) { | ||
| 27 | |||
| 28 | if (feof(file)) | ||
| 29 | break; | ||
| 30 | |||
| 31 | printf("OMG!!!\n"); | ||
| 32 | fflush(stdout); | ||
| 33 | break; | ||
| 34 | } | ||
| 35 | } | ||
| 36 | } | ||
| 37 | |||
| 38 | int | ||
| 39 | main(void) | ||
| 40 | { | ||
| 41 | char sfn[24]; | ||
| 42 | char buf[sizeof(TEXT)]; | ||
| 43 | FILE *sfp; | ||
| 44 | int fd, i; | ||
| 45 | |||
| 46 | strlcpy(sfn, "/tmp/barnacles.XXXXXXXX", sizeof(sfn)); | ||
| 47 | if ((fd = mkstemp(sfn)) == -1 || | ||
| 48 | (sfp = fdopen(fd, "w+")) == NULL) { | ||
| 49 | if (fd != -1) { | ||
| 50 | unlink(sfn); | ||
| 51 | close(fd); | ||
| 52 | } | ||
| 53 | err(1, "could not open temporary file"); | ||
| 54 | } | ||
| 55 | |||
| 56 | run_threads(fputs_thread, sfp); | ||
| 57 | |||
| 58 | while (fgets(buf, sizeof(buf), sfp) != NULL) /* verify */ | ||
| 59 | if (strcmp(buf, TEXT)) | ||
| 60 | err(1, "Thread writes were not atomic!!!"); | ||
| 61 | |||
| 62 | unlink(sfn); | ||
| 63 | close(fd); | ||
| 64 | |||
| 65 | exit(0); | ||
| 66 | } | ||
diff --git a/src/regress/lib/libc/stdio_threading/fread/Makefile b/src/regress/lib/libc/stdio_threading/fread/Makefile new file mode 100644 index 0000000000..25196dd7ab --- /dev/null +++ b/src/regress/lib/libc/stdio_threading/fread/Makefile | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | TOPDIR=${.CURDIR} | ||
| 2 | PROG=fread_test | ||
| 3 | CFLAGS+=-I${TOPDIR}/../include/ | ||
| 4 | LDFLAGS+=-lpthread | ||
| 5 | |||
| 6 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/stdio_threading/fread/fread_test.c b/src/regress/lib/libc/stdio_threading/fread/fread_test.c new file mode 100755 index 0000000000..b2372f5ab6 --- /dev/null +++ b/src/regress/lib/libc/stdio_threading/fread/fread_test.c | |||
| @@ -0,0 +1,71 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2008 Bret S. Lambert <blambert@openbsd.org> | ||
| 3 | * | ||
| 4 | * Permission to use, copy, modify, and distribute this software for any | ||
| 5 | * purpose with or without fee is hereby granted, provided that the above | ||
| 6 | * copyright notice and this permission notice appear in all copies. | ||
| 7 | * | ||
| 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include <stdio.h> | ||
| 18 | #include <pthread.h> | ||
| 19 | #include "local.h" | ||
| 20 | |||
| 21 | void | ||
| 22 | fread_thread(void *v) | ||
| 23 | { | ||
| 24 | char buf[sizeof(TEXT)]; | ||
| 25 | FILE *file = v; | ||
| 26 | int i; | ||
| 27 | |||
| 28 | for (i = 0; i < 4096; i++) { | ||
| 29 | if (fread(buf, sizeof(char), strlen(TEXT), file) == 0) { | ||
| 30 | |||
| 31 | if (feof(file)) | ||
| 32 | break; | ||
| 33 | |||
| 34 | printf("OMG!!!\n"); | ||
| 35 | fflush(stdout); | ||
| 36 | break; | ||
| 37 | } | ||
| 38 | if (strncmp(buf, TEXT, sizeof(TEXT))) | ||
| 39 | err(1, "Read not atomic!!!"); | ||
| 40 | } | ||
| 41 | } | ||
| 42 | |||
| 43 | int | ||
| 44 | main(void) | ||
| 45 | { | ||
| 46 | char sfn[24]; | ||
| 47 | char buf[sizeof(TEXT)]; | ||
| 48 | FILE *sfp; | ||
| 49 | int fd, i; | ||
| 50 | |||
| 51 | strlcpy(sfn, "/tmp/barnacles.XXXXXXXX", sizeof(sfn)); | ||
| 52 | if ((fd = mkstemp(sfn)) == -1 || | ||
| 53 | (sfp = fdopen(fd, "w+")) == NULL) { | ||
| 54 | if (fd != -1) { | ||
| 55 | unlink(sfn); | ||
| 56 | close(fd); | ||
| 57 | } | ||
| 58 | err(1, "could not open temporary file"); | ||
| 59 | } | ||
| 60 | |||
| 61 | for (i = 0; i < 4096 * THREAD_COUNT; i++) | ||
| 62 | if (fwrite(TEXT, sizeof(char), strlen(TEXT), sfp) == 0) | ||
| 63 | err(1, "Could not populate test file"); | ||
| 64 | |||
| 65 | run_threads(fread_thread, sfp); | ||
| 66 | |||
| 67 | unlink(sfn); | ||
| 68 | close(fd); | ||
| 69 | |||
| 70 | exit(0); | ||
| 71 | } | ||
diff --git a/src/regress/lib/libc/stdio_threading/fwrite/Makefile b/src/regress/lib/libc/stdio_threading/fwrite/Makefile new file mode 100644 index 0000000000..e79899c475 --- /dev/null +++ b/src/regress/lib/libc/stdio_threading/fwrite/Makefile | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | TOPDIR=${.CURDIR} | ||
| 2 | PROG=fwrite_test | ||
| 3 | CFLAGS+=-I${TOPDIR}/../include/ | ||
| 4 | LDFLAGS+=-lpthread | ||
| 5 | |||
| 6 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/stdio_threading/fwrite/fwrite_test.c b/src/regress/lib/libc/stdio_threading/fwrite/fwrite_test.c new file mode 100755 index 0000000000..39bfb51ef0 --- /dev/null +++ b/src/regress/lib/libc/stdio_threading/fwrite/fwrite_test.c | |||
| @@ -0,0 +1,66 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2008 Bret S. Lambert <blambert@openbsd.org> | ||
| 3 | * | ||
| 4 | * Permission to use, copy, modify, and distribute this software for any | ||
| 5 | * purpose with or without fee is hereby granted, provided that the above | ||
| 6 | * copyright notice and this permission notice appear in all copies. | ||
| 7 | * | ||
| 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include "local.h" | ||
| 18 | |||
| 19 | void | ||
| 20 | fwrite_thread(void *v) | ||
| 21 | { | ||
| 22 | FILE *file = v; | ||
| 23 | int i; | ||
| 24 | |||
| 25 | for (i = 0; i < 4096; i++) { | ||
| 26 | if (fwrite(TEXT, sizeof(char), strlen(TEXT), file) == 0) { | ||
| 27 | |||
| 28 | if (feof(file)) | ||
| 29 | break; | ||
| 30 | |||
| 31 | printf("OMG!!!\n"); | ||
| 32 | fflush(stdout); | ||
| 33 | break; | ||
| 34 | } | ||
| 35 | } | ||
| 36 | } | ||
| 37 | |||
| 38 | int | ||
| 39 | main(void) | ||
| 40 | { | ||
| 41 | char sfn[24]; | ||
| 42 | char buf[sizeof(TEXT)]; | ||
| 43 | FILE *sfp; | ||
| 44 | int fd, i; | ||
| 45 | |||
| 46 | strlcpy(sfn, "/tmp/barnacles.XXXXXXXX", sizeof(sfn)); | ||
| 47 | if ((fd = mkstemp(sfn)) == -1 || | ||
| 48 | (sfp = fdopen(fd, "w+")) == NULL) { | ||
| 49 | if (fd != -1) { | ||
| 50 | unlink(sfn); | ||
| 51 | close(fd); | ||
| 52 | } | ||
| 53 | err(1, "could not open temporary file"); | ||
| 54 | } | ||
| 55 | |||
| 56 | run_threads(fwrite_thread, sfp); | ||
| 57 | |||
| 58 | while (fread(buf, sizeof(char), strlen(TEXT), sfp)) /* verify */ | ||
| 59 | if (strncmp(buf, TEXT, sizeof(TEXT))) | ||
| 60 | err(1, "Thread writes were not atomic!!!"); | ||
| 61 | |||
| 62 | unlink(sfn); | ||
| 63 | close(fd); | ||
| 64 | |||
| 65 | exit(0); | ||
| 66 | } | ||
diff --git a/src/regress/lib/libc/stdio_threading/include/local.h b/src/regress/lib/libc/stdio_threading/include/local.h new file mode 100644 index 0000000000..e2ad4e31e0 --- /dev/null +++ b/src/regress/lib/libc/stdio_threading/include/local.h | |||
| @@ -0,0 +1,81 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2008 Bret S. Lambert <blambert@openbsd.org> | ||
| 3 | * | ||
| 4 | * Permission to use, copy, modify, and distribute this software for any | ||
| 5 | * purpose with or without fee is hereby granted, provided that the above | ||
| 6 | * copyright notice and this permission notice appear in all copies. | ||
| 7 | * | ||
| 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include <stdio.h> | ||
| 18 | #include <stdlib.h> | ||
| 19 | #include <string.h> | ||
| 20 | #include <unistd.h> | ||
| 21 | #include <pthread.h> | ||
| 22 | |||
| 23 | #define THREAD_COUNT 64 | ||
| 24 | |||
| 25 | #define TEXT "barnacles" | ||
| 26 | #define TEXT_N "barnacles\n" | ||
| 27 | |||
| 28 | void run_threads(void (*)(void *), void *); | ||
| 29 | |||
| 30 | static pthread_rwlock_t start; | ||
| 31 | static void (*real_func)(void *); | ||
| 32 | |||
| 33 | static void * | ||
| 34 | thread(void *arg) | ||
| 35 | { | ||
| 36 | int r; | ||
| 37 | |||
| 38 | if ((r = pthread_rwlock_rdlock(&start))) | ||
| 39 | errx(1, "could not obtain lock in thread: %s", strerror(r)); | ||
| 40 | real_func(arg); | ||
| 41 | if ((r = pthread_rwlock_unlock(&start))) | ||
| 42 | errx(1, "could not release lock in thread: %s", strerror(r)); | ||
| 43 | return NULL; | ||
| 44 | } | ||
| 45 | |||
| 46 | void | ||
| 47 | run_threads(void (*func)(void *), void *arg) | ||
| 48 | { | ||
| 49 | pthread_t self, pthread[THREAD_COUNT]; | ||
| 50 | int i, r; | ||
| 51 | |||
| 52 | self = pthread_self(); | ||
| 53 | real_func = func; | ||
| 54 | if ((r = pthread_rwlock_init(&start, NULL))) | ||
| 55 | errx(1, "could not initialize lock: %s", strerror(r)); | ||
| 56 | |||
| 57 | if ((r = pthread_rwlock_wrlock(&start))) /* block */ | ||
| 58 | errx(1, "could not lock lock: %s", strerror(r)); | ||
| 59 | |||
| 60 | for (i = 0; i < THREAD_COUNT; i++) | ||
| 61 | if ((r = pthread_create(&pthread[i], NULL, thread, arg))) { | ||
| 62 | warnx("could not create thread: %s", strerror(r)); | ||
| 63 | pthread[i] = self; | ||
| 64 | } | ||
| 65 | |||
| 66 | |||
| 67 | if ((r = pthread_rwlock_unlock(&start))) /* unleash */ | ||
| 68 | errx(1, "could not release lock: %s", strerror(r)); | ||
| 69 | |||
| 70 | sleep(1); | ||
| 71 | |||
| 72 | if ((r = pthread_rwlock_wrlock(&start))) /* sync */ | ||
| 73 | errx(1, "parent could not sync with children: %s", | ||
| 74 | strerror(r)); | ||
| 75 | |||
| 76 | for (i = 0; i < THREAD_COUNT; i++) | ||
| 77 | if (! pthread_equal(pthread[i], self) && | ||
| 78 | (r = pthread_join(pthread[i], NULL))) | ||
| 79 | warnx("could not join thread: %s", strerror(r)); | ||
| 80 | } | ||
| 81 | |||
diff --git a/src/regress/lib/libc/stpncpy/Makefile b/src/regress/lib/libc/stpncpy/Makefile new file mode 100644 index 0000000000..9333934da6 --- /dev/null +++ b/src/regress/lib/libc/stpncpy/Makefile | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | PROG=stpncpy_test | ||
| 2 | |||
| 3 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/stpncpy/stpncpy_test.c b/src/regress/lib/libc/stpncpy/stpncpy_test.c new file mode 100644 index 0000000000..63b7d25e53 --- /dev/null +++ b/src/regress/lib/libc/stpncpy/stpncpy_test.c | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | /* $OpenBSD: stpncpy_test.c,v 1.1 2012/07/11 10:46:23 naddy Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Public domain, 2012, Christian Weisgerber <naddy@openbsd.org> | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include <string.h> | ||
| 8 | |||
| 9 | int main(void) | ||
| 10 | { | ||
| 11 | char dst[8]; | ||
| 12 | char *src = "abcdef"; | ||
| 13 | |||
| 14 | if (stpncpy(dst, src, 5) != dst + 5) | ||
| 15 | return 1; | ||
| 16 | if (stpncpy(dst, src, 6) != dst + 6) | ||
| 17 | return 1; | ||
| 18 | if (stpncpy(dst, src, 7) != dst + 6) | ||
| 19 | return 1; | ||
| 20 | if (stpncpy(dst, src, 8) != dst + 6) | ||
| 21 | return 1; | ||
| 22 | |||
| 23 | return 0; | ||
| 24 | } | ||
diff --git a/src/regress/lib/libc/strerror/Makefile b/src/regress/lib/libc/strerror/Makefile new file mode 100644 index 0000000000..448b6da903 --- /dev/null +++ b/src/regress/lib/libc/strerror/Makefile | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2004/04/30 17:15:12 espie Exp $ | ||
| 2 | |||
| 3 | NOMAN= | ||
| 4 | PROG=strerror_test | ||
| 5 | CPPFLAGS+=-I${.CURDIR}/../../../../lib/libc | ||
| 6 | CLEANFILES+= invalid.out valid.out | ||
| 7 | |||
| 8 | run-regress-strerror_test: ${PROG} | ||
| 9 | ./${PROG} >${.OBJDIR}/valid.out | ||
| 10 | cmp -s ${.OBJDIR}/valid.out ${.CURDIR}/valid.ok | ||
| 11 | |||
| 12 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/strerror/strerror_test.c b/src/regress/lib/libc/strerror/strerror_test.c new file mode 100644 index 0000000000..700080cd3e --- /dev/null +++ b/src/regress/lib/libc/strerror/strerror_test.c | |||
| @@ -0,0 +1,71 @@ | |||
| 1 | /* $OpenBSD: strerror_test.c,v 1.4 2005/05/13 07:06:20 otto Exp $ */ | ||
| 2 | /* | ||
| 3 | * Copyright (c) 2004 Marc Espie <espie@cvs.openbsd.org> | ||
| 4 | * | ||
| 5 | * Permission to use, copy, modify, and distribute this software for any | ||
| 6 | * purpose with or without fee is hereby granted, provided that the above | ||
| 7 | * copyright notice and this permission notice appear in all copies. | ||
| 8 | * | ||
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 16 | */ | ||
| 17 | #include <signal.h> | ||
| 18 | #include <string.h> | ||
| 19 | #include <stdio.h> | ||
| 20 | #include <limits.h> | ||
| 21 | #include <errno.h> | ||
| 22 | |||
| 23 | void | ||
| 24 | check_strerror_r(int val) | ||
| 25 | { | ||
| 26 | char buffer[NL_TEXTMAX + 1]; | ||
| 27 | int i, r; | ||
| 28 | |||
| 29 | memset(buffer, 'X', sizeof(buffer) - 1); | ||
| 30 | buffer[sizeof(buffer) - 1] = '\0'; | ||
| 31 | (void)strerror_r(val, NULL, 0); /* XXX */ | ||
| 32 | for (i = 0; i < 25; i++) { | ||
| 33 | r = strerror_r(val, buffer, i); | ||
| 34 | printf("%d %d %zu: %s\n", i, r, strlen(buffer), buffer); | ||
| 35 | } | ||
| 36 | } | ||
| 37 | |||
| 38 | void | ||
| 39 | check_strsignal(int val) | ||
| 40 | { | ||
| 41 | char buffer[NL_TEXTMAX + 1]; | ||
| 42 | int i, r; | ||
| 43 | |||
| 44 | memset(buffer, 'X', sizeof(buffer) - 1); | ||
| 45 | buffer[sizeof(buffer) - 1] = '\0'; | ||
| 46 | (void)__strsignal(val, buffer); | ||
| 47 | printf("%s\n", buffer); | ||
| 48 | } | ||
| 49 | |||
| 50 | int | ||
| 51 | main() | ||
| 52 | { | ||
| 53 | printf("%s\n", strerror(21345)); | ||
| 54 | printf("%s\n", strerror(-21345)); | ||
| 55 | printf("%s\n", strerror(0)); | ||
| 56 | printf("%s\n", strerror(INT_MAX)); | ||
| 57 | printf("%s\n", strerror(INT_MIN)); | ||
| 58 | printf("%s\n", strerror(EPERM)); | ||
| 59 | check_strerror_r(EPERM); | ||
| 60 | check_strerror_r(21345); | ||
| 61 | check_strsignal(-1); | ||
| 62 | check_strsignal(0); | ||
| 63 | check_strsignal(10); | ||
| 64 | check_strsignal(NSIG-1); | ||
| 65 | check_strsignal(NSIG); | ||
| 66 | check_strsignal(100); | ||
| 67 | check_strsignal(INT_MAX); | ||
| 68 | check_strsignal(INT_MIN); | ||
| 69 | check_strsignal(UINT_MAX); | ||
| 70 | return 0; | ||
| 71 | } | ||
diff --git a/src/regress/lib/libc/strerror/valid.ok b/src/regress/lib/libc/strerror/valid.ok new file mode 100644 index 0000000000..cbc365c598 --- /dev/null +++ b/src/regress/lib/libc/strerror/valid.ok | |||
| @@ -0,0 +1,65 @@ | |||
| 1 | Unknown error: 21345 | ||
| 2 | Unknown error: -21345 | ||
| 3 | Undefined error: 0 | ||
| 4 | Unknown error: 2147483647 | ||
| 5 | Unknown error: -2147483648 | ||
| 6 | Operation not permitted | ||
| 7 | 0 34 255: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX | ||
| 8 | 1 34 0: | ||
| 9 | 2 34 1: O | ||
| 10 | 3 34 2: Op | ||
| 11 | 4 34 3: Ope | ||
| 12 | 5 34 4: Oper | ||
| 13 | 6 34 5: Opera | ||
| 14 | 7 34 6: Operat | ||
| 15 | 8 34 7: Operati | ||
| 16 | 9 34 8: Operatio | ||
| 17 | 10 34 9: Operation | ||
| 18 | 11 34 10: Operation | ||
| 19 | 12 34 11: Operation n | ||
| 20 | 13 34 12: Operation no | ||
| 21 | 14 34 13: Operation not | ||
| 22 | 15 34 14: Operation not | ||
| 23 | 16 34 15: Operation not p | ||
| 24 | 17 34 16: Operation not pe | ||
| 25 | 18 34 17: Operation not per | ||
| 26 | 19 34 18: Operation not perm | ||
| 27 | 20 34 19: Operation not permi | ||
| 28 | 21 34 20: Operation not permit | ||
| 29 | 22 34 21: Operation not permitt | ||
| 30 | 23 34 22: Operation not permitte | ||
| 31 | 24 0 23: Operation not permitted | ||
| 32 | 0 34 255: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX | ||
| 33 | 1 34 0: | ||
| 34 | 2 34 1: U | ||
| 35 | 3 34 2: Un | ||
| 36 | 4 34 3: Unk | ||
| 37 | 5 34 4: Unkn | ||
| 38 | 6 34 5: Unkno | ||
| 39 | 7 34 6: Unknow | ||
| 40 | 8 34 7: Unknown | ||
| 41 | 9 34 8: Unknown | ||
| 42 | 10 34 9: Unknown e | ||
| 43 | 11 34 10: Unknown er | ||
| 44 | 12 34 11: Unknown err | ||
| 45 | 13 34 12: Unknown erro | ||
| 46 | 14 34 13: Unknown error | ||
| 47 | 15 34 14: Unknown error: | ||
| 48 | 16 34 15: Unknown error: | ||
| 49 | 17 34 15: Unknown error: | ||
| 50 | 18 34 15: Unknown error: | ||
| 51 | 19 34 15: Unknown error: | ||
| 52 | 20 34 15: Unknown error: | ||
| 53 | 21 22 20: Unknown error: 21345 | ||
| 54 | 22 22 20: Unknown error: 21345 | ||
| 55 | 23 22 20: Unknown error: 21345 | ||
| 56 | 24 22 20: Unknown error: 21345 | ||
| 57 | Unknown signal: 4294967295 | ||
| 58 | Signal 0 | ||
| 59 | Bus error | ||
| 60 | Thread AST | ||
| 61 | Unknown signal: 33 | ||
| 62 | Unknown signal: 100 | ||
| 63 | Unknown signal: 2147483647 | ||
| 64 | Unknown signal: 2147483648 | ||
| 65 | Unknown signal: 4294967295 | ||
diff --git a/src/regress/lib/libc/strnlen/Makefile b/src/regress/lib/libc/strnlen/Makefile new file mode 100644 index 0000000000..e7c74972e1 --- /dev/null +++ b/src/regress/lib/libc/strnlen/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2010/06/02 12:20:47 millert Exp $ | ||
| 2 | |||
| 3 | PROG= strnlentest | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/strnlen/strnlentest.c b/src/regress/lib/libc/strnlen/strnlentest.c new file mode 100644 index 0000000000..e67e6adfb8 --- /dev/null +++ b/src/regress/lib/libc/strnlen/strnlentest.c | |||
| @@ -0,0 +1,69 @@ | |||
| 1 | /* $OpenBSD: strnlentest.c,v 1.1 2010/06/02 12:20:47 millert Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> | ||
| 5 | * | ||
| 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. | ||
| 9 | * | ||
| 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. | ||
| 17 | */ | ||
| 18 | |||
| 19 | #include <sys/types.h> | ||
| 20 | |||
| 21 | #include <stdio.h> | ||
| 22 | #include <stdlib.h> | ||
| 23 | #include <string.h> | ||
| 24 | #include <unistd.h> | ||
| 25 | |||
| 26 | int main(int argc, char *argv[]) | ||
| 27 | { | ||
| 28 | char *buf; | ||
| 29 | int failures = 0; | ||
| 30 | size_t len, bufsize; | ||
| 31 | |||
| 32 | /* Enable malloc security options. */ | ||
| 33 | setenv("MALLOC_OPTIONS", "S", 0); | ||
| 34 | |||
| 35 | bufsize = getpagesize(); /* trigger guard pages easily */ | ||
| 36 | buf = malloc(bufsize); | ||
| 37 | if (buf == NULL) { | ||
| 38 | fprintf(stderr, "unable to allocate memory\n"); | ||
| 39 | return 1; | ||
| 40 | } | ||
| 41 | memset(buf, 'a', bufsize); | ||
| 42 | |||
| 43 | len = strnlen(buf, bufsize); | ||
| 44 | if (len != bufsize) { | ||
| 45 | fprintf(stderr, "strnlen: failed unterminated buffer test (1)"); | ||
| 46 | failures++; | ||
| 47 | } | ||
| 48 | |||
| 49 | len = strnlen(buf, bufsize / 2); | ||
| 50 | if (len != bufsize / 2) { | ||
| 51 | fprintf(stderr, "strnlen: failed unterminated buffer test (2)"); | ||
| 52 | failures++; | ||
| 53 | } | ||
| 54 | |||
| 55 | buf[bufsize - 1] = '\0'; | ||
| 56 | len = strnlen(buf, bufsize); | ||
| 57 | if (len != bufsize - 1) { | ||
| 58 | fprintf(stderr, "strnlen: failed NUL-terminated buffer test (1)"); | ||
| 59 | failures++; | ||
| 60 | } | ||
| 61 | |||
| 62 | len = strnlen(buf, (size_t)-1); | ||
| 63 | if (len != bufsize - 1) { | ||
| 64 | fprintf(stderr, "strnlen: failed NUL-terminated buffer test (2)"); | ||
| 65 | failures++; | ||
| 66 | } | ||
| 67 | |||
| 68 | return failures; | ||
| 69 | } | ||
diff --git a/src/regress/lib/libc/strtod/Makefile b/src/regress/lib/libc/strtod/Makefile new file mode 100644 index 0000000000..030c0e7f56 --- /dev/null +++ b/src/regress/lib/libc/strtod/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2006/09/29 11:00:24 otto Exp $ | ||
| 2 | |||
| 3 | PROG= strtodtest | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/strtod/strtodtest.c b/src/regress/lib/libc/strtod/strtodtest.c new file mode 100644 index 0000000000..0291365a75 --- /dev/null +++ b/src/regress/lib/libc/strtod/strtodtest.c | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | /* $OpenBSD: strtodtest.c,v 1.1 2006/09/29 11:00:24 otto Exp $ */ | ||
| 2 | /* Public domain, Otto Moerbeek <otto@drijf.net>, 2006. */ | ||
| 3 | |||
| 4 | #include <stdio.h> | ||
| 5 | #include <stdlib.h> | ||
| 6 | #include <errno.h> | ||
| 7 | |||
| 8 | /* | ||
| 9 | * Checks if strtod() reports underflow. | ||
| 10 | */ | ||
| 11 | |||
| 12 | int | ||
| 13 | main() | ||
| 14 | { | ||
| 15 | char *tmp="0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002"; | ||
| 16 | double d; | ||
| 17 | |||
| 18 | d = strtod(tmp, NULL); | ||
| 19 | if (errno != ERANGE) | ||
| 20 | errx(1, "errno = %d", errno); | ||
| 21 | return (0); | ||
| 22 | } | ||
diff --git a/src/regress/lib/libc/strtonum/Makefile b/src/regress/lib/libc/strtonum/Makefile new file mode 100644 index 0000000000..e0e8ecd139 --- /dev/null +++ b/src/regress/lib/libc/strtonum/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2004/08/03 20:38:36 otto Exp $ | ||
| 2 | |||
| 3 | PROG= strtonumtest | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/strtonum/strtonumtest.c b/src/regress/lib/libc/strtonum/strtonumtest.c new file mode 100644 index 0000000000..7e82a007fe --- /dev/null +++ b/src/regress/lib/libc/strtonum/strtonumtest.c | |||
| @@ -0,0 +1,64 @@ | |||
| 1 | /* $OpenBSD: strtonumtest.c,v 1.1 2004/08/03 20:38:36 otto Exp $ */ | ||
| 2 | /* | ||
| 3 | * Copyright (c) 2004 Otto Moerbeek <otto@drijf.net> | ||
| 4 | * | ||
| 5 | * Permission to use, copy, modify, and distribute this software for any | ||
| 6 | * purpose with or without fee is hereby granted, provided that the above | ||
| 7 | * copyright notice and this permission notice appear in all copies. | ||
| 8 | * | ||
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #include <limits.h> | ||
| 19 | #include <stdio.h> | ||
| 20 | #include <stdlib.h> | ||
| 21 | |||
| 22 | int fail; | ||
| 23 | |||
| 24 | void | ||
| 25 | test(const char *p, long long lb, long long ub, int ok) | ||
| 26 | { | ||
| 27 | long long val; | ||
| 28 | const char *q; | ||
| 29 | |||
| 30 | val = strtonum(p, lb, ub, &q); | ||
| 31 | if (ok && q != NULL) { | ||
| 32 | fprintf(stderr, "%s [%lld-%lld] ", p, lb, ub); | ||
| 33 | fprintf(stderr, "NUMBER NOT ACCEPTED %s\n", q); | ||
| 34 | fail = 1; | ||
| 35 | } else if (!ok && q == NULL) { | ||
| 36 | fprintf(stderr, "%s [%lld-%lld] %lld ", p, lb, ub, val); | ||
| 37 | fprintf(stderr, "NUMBER ACCEPTED\n"); | ||
| 38 | fail = 1; | ||
| 39 | } | ||
| 40 | } | ||
| 41 | |||
| 42 | int main(int argc, char *argv[]) | ||
| 43 | { | ||
| 44 | test("1", 0, 10, 1); | ||
| 45 | test("0", -2, 5, 1); | ||
| 46 | test("0", 2, 5, 0); | ||
| 47 | test("0", 2, LLONG_MAX, 0); | ||
| 48 | test("-2", 0, LLONG_MAX, 0); | ||
| 49 | test("0", -5, LLONG_MAX, 1); | ||
| 50 | test("-3", -3, LLONG_MAX, 1); | ||
| 51 | test("-9223372036854775808", LLONG_MIN, LLONG_MAX, 1); | ||
| 52 | test("9223372036854775807", LLONG_MIN, LLONG_MAX, 1); | ||
| 53 | test("-9223372036854775809", LLONG_MIN, LLONG_MAX, 0); | ||
| 54 | test("9223372036854775808", LLONG_MIN, LLONG_MAX, 0); | ||
| 55 | test("1000000000000000000000000", LLONG_MIN, LLONG_MAX, 0); | ||
| 56 | test("-1000000000000000000000000", LLONG_MIN, LLONG_MAX, 0); | ||
| 57 | test("-2", 10, -1, 0); | ||
| 58 | test("-2", -10, -1, 1); | ||
| 59 | test("-20", -10, -1, 0); | ||
| 60 | test("20", -10, -1, 0); | ||
| 61 | |||
| 62 | return (fail); | ||
| 63 | } | ||
| 64 | |||
diff --git a/src/regress/lib/libc/telldir/Makefile b/src/regress/lib/libc/telldir/Makefile new file mode 100644 index 0000000000..0927779663 --- /dev/null +++ b/src/regress/lib/libc/telldir/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2006/03/25 20:27:11 otto Exp $ | ||
| 2 | |||
| 3 | PROG= telldir | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/telldir/telldir.c b/src/regress/lib/libc/telldir/telldir.c new file mode 100644 index 0000000000..fc1ca3e891 --- /dev/null +++ b/src/regress/lib/libc/telldir/telldir.c | |||
| @@ -0,0 +1,106 @@ | |||
| 1 | /* $OpenBSD: telldir.c,v 1.2 2006/04/01 18:24:53 otto Exp $ */ | ||
| 2 | |||
| 3 | /* Written by Otto Moerbeek, 2006, Public domain. */ | ||
| 4 | |||
| 5 | #include <sys/types.h> | ||
| 6 | #include <sys/stat.h> | ||
| 7 | #include <dirent.h> | ||
| 8 | #include <err.h> | ||
| 9 | #include <limits.h> | ||
| 10 | #include <fcntl.h> | ||
| 11 | #include <stdio.h> | ||
| 12 | #include <string.h> | ||
| 13 | #include <unistd.h> | ||
| 14 | |||
| 15 | |||
| 16 | #define NFILES 1000 | ||
| 17 | |||
| 18 | void | ||
| 19 | createfiles(void) | ||
| 20 | { | ||
| 21 | int i, fd; | ||
| 22 | char file[PATH_MAX]; | ||
| 23 | |||
| 24 | mkdir("d", 0755); | ||
| 25 | for (i = 0; i < NFILES; i++) { | ||
| 26 | snprintf(file, sizeof file, "d/%d", i); | ||
| 27 | if ((fd = open(file, O_CREAT | O_WRONLY, 0600)) == -1) | ||
| 28 | err(1, "open %s", file); | ||
| 29 | close(fd); | ||
| 30 | } | ||
| 31 | } | ||
| 32 | |||
| 33 | void | ||
| 34 | delfiles(void) | ||
| 35 | { | ||
| 36 | DIR *dp; | ||
| 37 | struct dirent *f; | ||
| 38 | char file[PATH_MAX]; | ||
| 39 | |||
| 40 | dp = opendir("d"); | ||
| 41 | if (dp == NULL) | ||
| 42 | err(1, "opendir"); | ||
| 43 | while (f = readdir(dp)) { | ||
| 44 | if (strcmp(f->d_name, ".") == 0 || | ||
| 45 | strcmp(f->d_name, "..") == 0) | ||
| 46 | continue; | ||
| 47 | snprintf(file, sizeof file, "d/%s", f->d_name); | ||
| 48 | if (unlink(file) == -1) | ||
| 49 | err(1, "unlink %s", f->d_name); | ||
| 50 | } | ||
| 51 | closedir(dp); | ||
| 52 | if (rmdir("d") == -1) | ||
| 53 | err(1, "rmdir"); | ||
| 54 | } | ||
| 55 | |||
| 56 | void | ||
| 57 | loop(DIR *dp, int i) | ||
| 58 | { | ||
| 59 | struct dirent *f; | ||
| 60 | char file[PATH_MAX]; | ||
| 61 | long pos, remember = -1; | ||
| 62 | |||
| 63 | rewinddir(dp); | ||
| 64 | snprintf(file, sizeof file, "%d", i); | ||
| 65 | for (;;) { | ||
| 66 | pos = telldir(dp); | ||
| 67 | f = readdir(dp); | ||
| 68 | if (f == NULL) | ||
| 69 | break; | ||
| 70 | if (strcmp(file, f->d_name) == 0) | ||
| 71 | remember = pos; | ||
| 72 | } | ||
| 73 | if (remember == -1) | ||
| 74 | errx(1, "remember"); | ||
| 75 | seekdir(dp, remember); | ||
| 76 | if (telldir(dp) != remember) | ||
| 77 | errx(1, "tell after seek"); | ||
| 78 | if (telldir(dp) != remember) | ||
| 79 | errx(1, "tell after tell"); | ||
| 80 | f = readdir(dp); | ||
| 81 | if (f == NULL) | ||
| 82 | err(1, "seek to %s %ld", file, remember); | ||
| 83 | |||
| 84 | if (strcmp(f->d_name, file) != 0) | ||
| 85 | err(1, "name mismatch: %s != %s\n", f->d_name, file); | ||
| 86 | } | ||
| 87 | |||
| 88 | int | ||
| 89 | main(void) | ||
| 90 | { | ||
| 91 | DIR *dp; | ||
| 92 | int i; | ||
| 93 | |||
| 94 | createfiles(); | ||
| 95 | |||
| 96 | dp = opendir("d"); | ||
| 97 | if (dp == NULL) | ||
| 98 | err(1, "opendir"); | ||
| 99 | |||
| 100 | for (i = 0; i < NFILES; i++) | ||
| 101 | loop(dp, (i + NFILES/2) % NFILES); | ||
| 102 | |||
| 103 | closedir(dp); | ||
| 104 | delfiles(); | ||
| 105 | return 0; | ||
| 106 | } | ||
diff --git a/src/regress/lib/libc/time/Makefile b/src/regress/lib/libc/time/Makefile new file mode 100644 index 0000000000..28b5556027 --- /dev/null +++ b/src/regress/lib/libc/time/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2004/01/20 16:47:55 millert Exp $ | ||
| 2 | |||
| 3 | SUBDIR+=strptime | ||
| 4 | |||
| 5 | .include <bsd.subdir.mk> | ||
diff --git a/src/regress/lib/libc/time/strptime/Makefile b/src/regress/lib/libc/time/strptime/Makefile new file mode 100644 index 0000000000..f2c9ebaf2c --- /dev/null +++ b/src/regress/lib/libc/time/strptime/Makefile | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.2 2004/01/21 18:13:48 david Exp $ | ||
| 2 | |||
| 3 | PROG= strptime_test | ||
| 4 | SRCS= main.c | ||
| 5 | CLEANFILES+= got | ||
| 6 | |||
| 7 | REGRESS_TARGETS=do-reg | ||
| 8 | do-reg: ${PROG} | ||
| 9 | ./${PROG} < ${.CURDIR}/tests > got | ||
| 10 | diff ${.CURDIR}/expected got | ||
| 11 | |||
| 12 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/time/strptime/expected b/src/regress/lib/libc/time/strptime/expected new file mode 100644 index 0000000000..d038d319af --- /dev/null +++ b/src/regress/lib/libc/time/strptime/expected | |||
| @@ -0,0 +1,346 @@ | |||
| 1 | --- ctime --- 1 | ||
| 2 | succeeded | ||
| 3 | 46 27 23 20 0 98 2 -1 | ||
| 4 | |||
| 5 | --- ctime --- 2 | ||
| 6 | succeeded | ||
| 7 | 46 27 23 20 0 98 2 -1 | ||
| 8 | |||
| 9 | --- ctime --- 3 | ||
| 10 | succeeded | ||
| 11 | 46 27 23 20 0 98 2 -1 | ||
| 12 | |||
| 13 | --- %a --- 1 | ||
| 14 | succeeded | ||
| 15 | -1 -1 -1 -1 -1 -1 0 -1 | ||
| 16 | |||
| 17 | --- %a --- 2 | ||
| 18 | succeeded | ||
| 19 | -1 -1 -1 -1 -1 -1 0 -1 | ||
| 20 | |||
| 21 | --- %a --- 3 | ||
| 22 | succeeded | ||
| 23 | -1 -1 -1 -1 -1 -1 1 -1 | ||
| 24 | |||
| 25 | --- %a --- 4 | ||
| 26 | succeeded | ||
| 27 | -1 -1 -1 -1 -1 -1 1 -1 | ||
| 28 | |||
| 29 | --- %a --- 5 | ||
| 30 | succeeded | ||
| 31 | -1 -1 -1 -1 -1 -1 2 -1 | ||
| 32 | |||
| 33 | --- %a --- 6 | ||
| 34 | succeeded | ||
| 35 | -1 -1 -1 -1 -1 -1 2 -1 | ||
| 36 | |||
| 37 | --- %a --- 7 | ||
| 38 | succeeded | ||
| 39 | -1 -1 -1 -1 -1 -1 3 -1 | ||
| 40 | |||
| 41 | --- %a --- 8 | ||
| 42 | succeeded | ||
| 43 | -1 -1 -1 -1 -1 -1 3 -1 | ||
| 44 | |||
| 45 | --- %a --- 9 | ||
| 46 | succeeded | ||
| 47 | -1 -1 -1 -1 -1 -1 4 -1 | ||
| 48 | |||
| 49 | --- %a --- 10 | ||
| 50 | succeeded | ||
| 51 | -1 -1 -1 -1 -1 -1 4 -1 | ||
| 52 | |||
| 53 | --- %a --- 11 | ||
| 54 | succeeded | ||
| 55 | -1 -1 -1 -1 -1 -1 5 -1 | ||
| 56 | |||
| 57 | --- %a --- 12 | ||
| 58 | succeeded | ||
| 59 | -1 -1 -1 -1 -1 -1 5 -1 | ||
| 60 | |||
| 61 | --- %a --- 13 | ||
| 62 | succeeded | ||
| 63 | -1 -1 -1 -1 -1 -1 6 -1 | ||
| 64 | |||
| 65 | --- %a --- 14 | ||
| 66 | succeeded | ||
| 67 | -1 -1 -1 -1 -1 -1 6 -1 | ||
| 68 | |||
| 69 | --- %a --- 15 | ||
| 70 | succeeded | ||
| 71 | -1 -1 -1 -1 -1 -1 6 -1 | ||
| 72 | urn | ||
| 73 | |||
| 74 | --- %a --- 16 | ||
| 75 | failed | ||
| 76 | --- %A --- 1 | ||
| 77 | succeeded | ||
| 78 | -1 -1 -1 -1 -1 -1 0 -1 | ||
| 79 | |||
| 80 | --- %A --- 2 | ||
| 81 | succeeded | ||
| 82 | -1 -1 -1 -1 -1 -1 0 -1 | ||
| 83 | |||
| 84 | --- %A --- 3 | ||
| 85 | succeeded | ||
| 86 | -1 -1 -1 -1 -1 -1 1 -1 | ||
| 87 | |||
| 88 | --- %A --- 4 | ||
| 89 | succeeded | ||
| 90 | -1 -1 -1 -1 -1 -1 1 -1 | ||
| 91 | |||
| 92 | --- %A --- 5 | ||
| 93 | succeeded | ||
| 94 | -1 -1 -1 -1 -1 -1 2 -1 | ||
| 95 | |||
| 96 | --- %A --- 6 | ||
| 97 | succeeded | ||
| 98 | -1 -1 -1 -1 -1 -1 2 -1 | ||
| 99 | |||
| 100 | --- %A --- 7 | ||
| 101 | succeeded | ||
| 102 | -1 -1 -1 -1 -1 -1 3 -1 | ||
| 103 | |||
| 104 | --- %A --- 8 | ||
| 105 | succeeded | ||
| 106 | -1 -1 -1 -1 -1 -1 3 -1 | ||
| 107 | |||
| 108 | --- %A --- 9 | ||
| 109 | succeeded | ||
| 110 | -1 -1 -1 -1 -1 -1 4 -1 | ||
| 111 | |||
| 112 | --- %A --- 10 | ||
| 113 | succeeded | ||
| 114 | -1 -1 -1 -1 -1 -1 4 -1 | ||
| 115 | |||
| 116 | --- %A --- 11 | ||
| 117 | succeeded | ||
| 118 | -1 -1 -1 -1 -1 -1 5 -1 | ||
| 119 | |||
| 120 | --- %A --- 12 | ||
| 121 | succeeded | ||
| 122 | -1 -1 -1 -1 -1 -1 5 -1 | ||
| 123 | |||
| 124 | --- %A --- 13 | ||
| 125 | succeeded | ||
| 126 | -1 -1 -1 -1 -1 -1 6 -1 | ||
| 127 | |||
| 128 | --- %A --- 14 | ||
| 129 | succeeded | ||
| 130 | -1 -1 -1 -1 -1 -1 6 -1 | ||
| 131 | |||
| 132 | --- %A --- 15 | ||
| 133 | succeeded | ||
| 134 | -1 -1 -1 -1 -1 -1 6 -1 | ||
| 135 | urn | ||
| 136 | |||
| 137 | --- %A --- 16 | ||
| 138 | failed | ||
| 139 | --- %b --- 1 | ||
| 140 | succeeded | ||
| 141 | -1 -1 -1 -1 0 -1 -1 -1 | ||
| 142 | |||
| 143 | --- %b --- 2 | ||
| 144 | succeeded | ||
| 145 | -1 -1 -1 -1 0 -1 -1 -1 | ||
| 146 | |||
| 147 | --- %b --- 3 | ||
| 148 | succeeded | ||
| 149 | -1 -1 -1 -1 1 -1 -1 -1 | ||
| 150 | |||
| 151 | --- %b --- 4 | ||
| 152 | succeeded | ||
| 153 | -1 -1 -1 -1 1 -1 -1 -1 | ||
| 154 | |||
| 155 | --- %b --- 5 | ||
| 156 | succeeded | ||
| 157 | -1 -1 -1 -1 2 -1 -1 -1 | ||
| 158 | |||
| 159 | --- %b --- 6 | ||
| 160 | succeeded | ||
| 161 | -1 -1 -1 -1 2 -1 -1 -1 | ||
| 162 | |||
| 163 | --- %b --- 7 | ||
| 164 | succeeded | ||
| 165 | -1 -1 -1 -1 3 -1 -1 -1 | ||
| 166 | |||
| 167 | --- %b --- 8 | ||
| 168 | succeeded | ||
| 169 | -1 -1 -1 -1 3 -1 -1 -1 | ||
| 170 | |||
| 171 | --- %b --- 9 | ||
| 172 | succeeded | ||
| 173 | -1 -1 -1 -1 4 -1 -1 -1 | ||
| 174 | |||
| 175 | --- %b --- 10 | ||
| 176 | succeeded | ||
| 177 | -1 -1 -1 -1 5 -1 -1 -1 | ||
| 178 | |||
| 179 | --- %b --- 11 | ||
| 180 | succeeded | ||
| 181 | -1 -1 -1 -1 5 -1 -1 -1 | ||
| 182 | |||
| 183 | --- %b --- 12 | ||
| 184 | succeeded | ||
| 185 | -1 -1 -1 -1 6 -1 -1 -1 | ||
| 186 | |||
| 187 | --- %b --- 13 | ||
| 188 | succeeded | ||
| 189 | -1 -1 -1 -1 6 -1 -1 -1 | ||
| 190 | |||
| 191 | --- %b --- 14 | ||
| 192 | succeeded | ||
| 193 | -1 -1 -1 -1 7 -1 -1 -1 | ||
| 194 | |||
| 195 | --- %b --- 15 | ||
| 196 | succeeded | ||
| 197 | -1 -1 -1 -1 7 -1 -1 -1 | ||
| 198 | |||
| 199 | --- %b --- 16 | ||
| 200 | succeeded | ||
| 201 | -1 -1 -1 -1 8 -1 -1 -1 | ||
| 202 | |||
| 203 | --- %b --- 17 | ||
| 204 | succeeded | ||
| 205 | -1 -1 -1 -1 8 -1 -1 -1 | ||
| 206 | |||
| 207 | --- %b --- 18 | ||
| 208 | succeeded | ||
| 209 | -1 -1 -1 -1 9 -1 -1 -1 | ||
| 210 | |||
| 211 | --- %b --- 19 | ||
| 212 | succeeded | ||
| 213 | -1 -1 -1 -1 9 -1 -1 -1 | ||
| 214 | |||
| 215 | --- %b --- 20 | ||
| 216 | succeeded | ||
| 217 | -1 -1 -1 -1 10 -1 -1 -1 | ||
| 218 | |||
| 219 | --- %b --- 21 | ||
| 220 | succeeded | ||
| 221 | -1 -1 -1 -1 10 -1 -1 -1 | ||
| 222 | |||
| 223 | --- %b --- 22 | ||
| 224 | succeeded | ||
| 225 | -1 -1 -1 -1 11 -1 -1 -1 | ||
| 226 | |||
| 227 | --- %b --- 23 | ||
| 228 | succeeded | ||
| 229 | -1 -1 -1 -1 11 -1 -1 -1 | ||
| 230 | |||
| 231 | --- %b --- 25 | ||
| 232 | succeeded | ||
| 233 | -1 -1 -1 -1 4 -1 -1 -1 | ||
| 234 | or | ||
| 235 | |||
| 236 | --- %b --- 24 | ||
| 237 | succeeded | ||
| 238 | -1 -1 -1 -1 2 -1 -1 -1 | ||
| 239 | s | ||
| 240 | |||
| 241 | --- %b --- 26 | ||
| 242 | failed | ||
| 243 | --- %B --- 1 | ||
| 244 | succeeded | ||
| 245 | -1 -1 -1 -1 0 -1 -1 -1 | ||
| 246 | |||
| 247 | --- %B --- 2 | ||
| 248 | succeeded | ||
| 249 | -1 -1 -1 -1 0 -1 -1 -1 | ||
| 250 | |||
| 251 | --- %B --- 3 | ||
| 252 | succeeded | ||
| 253 | -1 -1 -1 -1 1 -1 -1 -1 | ||
| 254 | |||
| 255 | --- %B --- 4 | ||
| 256 | succeeded | ||
| 257 | -1 -1 -1 -1 1 -1 -1 -1 | ||
| 258 | |||
| 259 | --- %B --- 5 | ||
| 260 | succeeded | ||
| 261 | -1 -1 -1 -1 2 -1 -1 -1 | ||
| 262 | |||
| 263 | --- %B --- 6 | ||
| 264 | succeeded | ||
| 265 | -1 -1 -1 -1 2 -1 -1 -1 | ||
| 266 | |||
| 267 | --- %B --- 7 | ||
| 268 | succeeded | ||
| 269 | -1 -1 -1 -1 3 -1 -1 -1 | ||
| 270 | |||
| 271 | --- %B --- 8 | ||
| 272 | succeeded | ||
| 273 | -1 -1 -1 -1 3 -1 -1 -1 | ||
| 274 | |||
| 275 | --- %B --- 9 | ||
| 276 | succeeded | ||
| 277 | -1 -1 -1 -1 4 -1 -1 -1 | ||
| 278 | |||
| 279 | --- %B --- 10 | ||
| 280 | succeeded | ||
| 281 | -1 -1 -1 -1 5 -1 -1 -1 | ||
| 282 | |||
| 283 | --- %B --- 11 | ||
| 284 | succeeded | ||
| 285 | -1 -1 -1 -1 5 -1 -1 -1 | ||
| 286 | |||
| 287 | --- %B --- 12 | ||
| 288 | succeeded | ||
| 289 | -1 -1 -1 -1 6 -1 -1 -1 | ||
| 290 | |||
| 291 | --- %B --- 13 | ||
| 292 | succeeded | ||
| 293 | -1 -1 -1 -1 6 -1 -1 -1 | ||
| 294 | |||
| 295 | --- %B --- 14 | ||
| 296 | succeeded | ||
| 297 | -1 -1 -1 -1 7 -1 -1 -1 | ||
| 298 | |||
| 299 | --- %B --- 15 | ||
| 300 | succeeded | ||
| 301 | -1 -1 -1 -1 7 -1 -1 -1 | ||
| 302 | |||
| 303 | --- %B --- 16 | ||
| 304 | succeeded | ||
| 305 | -1 -1 -1 -1 8 -1 -1 -1 | ||
| 306 | |||
| 307 | --- %B --- 17 | ||
| 308 | succeeded | ||
| 309 | -1 -1 -1 -1 8 -1 -1 -1 | ||
| 310 | |||
| 311 | --- %B --- 18 | ||
| 312 | succeeded | ||
| 313 | -1 -1 -1 -1 9 -1 -1 -1 | ||
| 314 | |||
| 315 | --- %B --- 19 | ||
| 316 | succeeded | ||
| 317 | -1 -1 -1 -1 9 -1 -1 -1 | ||
| 318 | |||
| 319 | --- %B --- 20 | ||
| 320 | succeeded | ||
| 321 | -1 -1 -1 -1 10 -1 -1 -1 | ||
| 322 | |||
| 323 | --- %B --- 21 | ||
| 324 | succeeded | ||
| 325 | -1 -1 -1 -1 10 -1 -1 -1 | ||
| 326 | |||
| 327 | --- %B --- 22 | ||
| 328 | succeeded | ||
| 329 | -1 -1 -1 -1 11 -1 -1 -1 | ||
| 330 | |||
| 331 | --- %B --- 23 | ||
| 332 | succeeded | ||
| 333 | -1 -1 -1 -1 11 -1 -1 -1 | ||
| 334 | |||
| 335 | --- %B --- 25 | ||
| 336 | succeeded | ||
| 337 | -1 -1 -1 -1 4 -1 -1 -1 | ||
| 338 | or | ||
| 339 | |||
| 340 | --- %B --- 24 | ||
| 341 | succeeded | ||
| 342 | -1 -1 -1 -1 2 -1 -1 -1 | ||
| 343 | s | ||
| 344 | |||
| 345 | --- %B --- 26 | ||
| 346 | failed | ||
diff --git a/src/regress/lib/libc/time/strptime/main.c b/src/regress/lib/libc/time/strptime/main.c new file mode 100644 index 0000000000..c4e06a9b59 --- /dev/null +++ b/src/regress/lib/libc/time/strptime/main.c | |||
| @@ -0,0 +1,110 @@ | |||
| 1 | /* $OpenBSD: main.c,v 1.2 2008/06/26 05:42:05 ray Exp $ */ | ||
| 2 | /* $NetBSD: main.c,v 1.4 2002/02/21 07:38:18 itojun Exp $ */ | ||
| 3 | |||
| 4 | /*- | ||
| 5 | * Copyright (c) 1998 The NetBSD Foundation, Inc. | ||
| 6 | * All rights reserved. | ||
| 7 | * | ||
| 8 | * Redistribution and use in source and binary forms, with or without | ||
| 9 | * modification, are permitted provided that the following conditions | ||
| 10 | * are met: | ||
| 11 | * 1. Redistributions of source code must retain the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer. | ||
| 13 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 14 | * notice, this list of conditions and the following disclaimer in the | ||
| 15 | * documentation and/or other materials provided with the distribution. | ||
| 16 | * | ||
| 17 | * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | ||
| 18 | * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | ||
| 19 | * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
| 20 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | ||
| 21 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
| 22 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
| 23 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
| 24 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
| 25 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
| 26 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
| 27 | * POSSIBILITY OF SUCH DAMAGE. | ||
| 28 | */ | ||
| 29 | #include <err.h> | ||
| 30 | #include <stdio.h> | ||
| 31 | #include <stdlib.h> | ||
| 32 | #include <string.h> | ||
| 33 | #include <time.h> | ||
| 34 | |||
| 35 | int main(int, char *[]); | ||
| 36 | void die(void); | ||
| 37 | |||
| 38 | void | ||
| 39 | die(void) | ||
| 40 | { | ||
| 41 | |||
| 42 | if (ferror(stdin)) | ||
| 43 | err(1, "fgetln"); | ||
| 44 | else | ||
| 45 | errx(1, "input is truncated"); | ||
| 46 | } | ||
| 47 | |||
| 48 | int | ||
| 49 | main(int argc, char *argv[]) | ||
| 50 | { | ||
| 51 | char *p, *title, *buf, *format; | ||
| 52 | size_t len; | ||
| 53 | struct tm tm; | ||
| 54 | |||
| 55 | for (;;) { | ||
| 56 | p = fgetln(stdin, &len); | ||
| 57 | if (p == 0) | ||
| 58 | die(); | ||
| 59 | title = malloc(len + 1); | ||
| 60 | memcpy(title, p, len); | ||
| 61 | title[len] = '\0'; | ||
| 62 | |||
| 63 | if (!strcmp(title, "EOF\n")) | ||
| 64 | return(0); | ||
| 65 | if (title[0] == '#' || title[0] == '\n') { | ||
| 66 | free(title); | ||
| 67 | continue; | ||
| 68 | } | ||
| 69 | |||
| 70 | p = fgetln(stdin, &len); | ||
| 71 | if (p == 0) | ||
| 72 | die(); | ||
| 73 | buf = malloc(len + 1); | ||
| 74 | memcpy(buf, p, len); | ||
| 75 | buf[len] = '\0'; | ||
| 76 | |||
| 77 | p = fgetln(stdin, &len); | ||
| 78 | if (p == 0) | ||
| 79 | die(); | ||
| 80 | format = malloc(len + 1); | ||
| 81 | memcpy(format, p, len); | ||
| 82 | format[len] = '\0'; | ||
| 83 | |||
| 84 | tm.tm_sec = -1; | ||
| 85 | tm.tm_min = -1; | ||
| 86 | tm.tm_hour = -1; | ||
| 87 | tm.tm_mday = -1; | ||
| 88 | tm.tm_mon = -1; | ||
| 89 | tm.tm_year = -1; | ||
| 90 | tm.tm_wday = -1; | ||
| 91 | tm.tm_yday = -1; | ||
| 92 | |||
| 93 | p = strptime(buf, format, &tm); | ||
| 94 | |||
| 95 | printf("%s", title); | ||
| 96 | if (p) { | ||
| 97 | printf("succeeded\n"); | ||
| 98 | printf("%d %d %d %d %d %d %d %d\n", | ||
| 99 | tm.tm_sec, tm.tm_min, tm.tm_hour, tm.tm_mday, | ||
| 100 | tm.tm_mon, tm.tm_year, tm.tm_wday, tm.tm_yday); | ||
| 101 | printf("%s\n", p); | ||
| 102 | } else { | ||
| 103 | printf("failed\n"); | ||
| 104 | } | ||
| 105 | |||
| 106 | free(title); | ||
| 107 | free(buf); | ||
| 108 | free(format); | ||
| 109 | } | ||
| 110 | } | ||
diff --git a/src/regress/lib/libc/time/strptime/tests b/src/regress/lib/libc/time/strptime/tests new file mode 100644 index 0000000000..d96393b2b7 --- /dev/null +++ b/src/regress/lib/libc/time/strptime/tests | |||
| @@ -0,0 +1,267 @@ | |||
| 1 | # some intial checks to make sure common things work | ||
| 2 | --- ctime --- 1 | ||
| 3 | Tue Jan 20 23:27:46 1998 | ||
| 4 | %a %b %d %T %Y | ||
| 5 | --- ctime --- 2 | ||
| 6 | Tue Jan 20 23:27:46 1998 | ||
| 7 | %a %b %d %H:%M:%S %Y | ||
| 8 | --- ctime --- 3 | ||
| 9 | Tue Jan 20 23:27:46 1998 | ||
| 10 | %c | ||
| 11 | |||
| 12 | # test some valid and invalid day names | ||
| 13 | --- %a --- 1 | ||
| 14 | Sun | ||
| 15 | %a | ||
| 16 | --- %a --- 2 | ||
| 17 | Sunday | ||
| 18 | %a | ||
| 19 | --- %a --- 3 | ||
| 20 | Mon | ||
| 21 | %a | ||
| 22 | --- %a --- 4 | ||
| 23 | Monday | ||
| 24 | %a | ||
| 25 | --- %a --- 5 | ||
| 26 | Tue | ||
| 27 | %a | ||
| 28 | --- %a --- 6 | ||
| 29 | Tuesday | ||
| 30 | %a | ||
| 31 | --- %a --- 7 | ||
| 32 | Wed | ||
| 33 | %a | ||
| 34 | --- %a --- 8 | ||
| 35 | Wednesday | ||
| 36 | %a | ||
| 37 | --- %a --- 9 | ||
| 38 | Thu | ||
| 39 | %a | ||
| 40 | --- %a --- 10 | ||
| 41 | Thursday | ||
| 42 | %a | ||
| 43 | --- %a --- 11 | ||
| 44 | Fri | ||
| 45 | %a | ||
| 46 | --- %a --- 12 | ||
| 47 | Friday | ||
| 48 | %a | ||
| 49 | --- %a --- 13 | ||
| 50 | Sat | ||
| 51 | %a | ||
| 52 | --- %a --- 14 | ||
| 53 | Saturday | ||
| 54 | %a | ||
| 55 | --- %a --- 15 | ||
| 56 | Saturn | ||
| 57 | %a | ||
| 58 | --- %a --- 16 | ||
| 59 | Moon | ||
| 60 | %a | ||
| 61 | --- %A --- 1 | ||
| 62 | Sun | ||
| 63 | %A | ||
| 64 | --- %A --- 2 | ||
| 65 | Sunday | ||
| 66 | %A | ||
| 67 | --- %A --- 3 | ||
| 68 | Mon | ||
| 69 | %A | ||
| 70 | --- %A --- 4 | ||
| 71 | Monday | ||
| 72 | %A | ||
| 73 | --- %A --- 5 | ||
| 74 | Tue | ||
| 75 | %A | ||
| 76 | --- %A --- 6 | ||
| 77 | Tuesday | ||
| 78 | %A | ||
| 79 | --- %A --- 7 | ||
| 80 | Wed | ||
| 81 | %A | ||
| 82 | --- %A --- 8 | ||
| 83 | Wednesday | ||
| 84 | %A | ||
| 85 | --- %A --- 9 | ||
| 86 | Thu | ||
| 87 | %A | ||
| 88 | --- %A --- 10 | ||
| 89 | Thursday | ||
| 90 | %A | ||
| 91 | --- %A --- 11 | ||
| 92 | Fri | ||
| 93 | %A | ||
| 94 | --- %A --- 12 | ||
| 95 | Friday | ||
| 96 | %A | ||
| 97 | --- %A --- 13 | ||
| 98 | Sat | ||
| 99 | %A | ||
| 100 | --- %A --- 14 | ||
| 101 | Saturday | ||
| 102 | %A | ||
| 103 | --- %A --- 15 | ||
| 104 | Saturn | ||
| 105 | %A | ||
| 106 | --- %A --- 16 | ||
| 107 | Moon | ||
| 108 | %A | ||
| 109 | |||
| 110 | # test some valid and invalid month names | ||
| 111 | --- %b --- 1 | ||
| 112 | Jan | ||
| 113 | %b | ||
| 114 | --- %b --- 2 | ||
| 115 | January | ||
| 116 | %b | ||
| 117 | --- %b --- 3 | ||
| 118 | Feb | ||
| 119 | %b | ||
| 120 | --- %b --- 4 | ||
| 121 | February | ||
| 122 | %b | ||
| 123 | --- %b --- 5 | ||
| 124 | Mar | ||
| 125 | %b | ||
| 126 | --- %b --- 6 | ||
| 127 | March | ||
| 128 | %b | ||
| 129 | --- %b --- 7 | ||
| 130 | Apr | ||
| 131 | %b | ||
| 132 | --- %b --- 8 | ||
| 133 | April | ||
| 134 | %b | ||
| 135 | --- %b --- 9 | ||
| 136 | May | ||
| 137 | %b | ||
| 138 | --- %b --- 10 | ||
| 139 | Jun | ||
| 140 | %b | ||
| 141 | --- %b --- 11 | ||
| 142 | June | ||
| 143 | %b | ||
| 144 | --- %b --- 12 | ||
| 145 | Jul | ||
| 146 | %b | ||
| 147 | --- %b --- 13 | ||
| 148 | July | ||
| 149 | %b | ||
| 150 | --- %b --- 14 | ||
| 151 | Aug | ||
| 152 | %b | ||
| 153 | --- %b --- 15 | ||
| 154 | August | ||
| 155 | %b | ||
| 156 | --- %b --- 16 | ||
| 157 | Sep | ||
| 158 | %b | ||
| 159 | --- %b --- 17 | ||
| 160 | September | ||
| 161 | %b | ||
| 162 | --- %b --- 18 | ||
| 163 | Oct | ||
| 164 | %b | ||
| 165 | --- %b --- 19 | ||
| 166 | October | ||
| 167 | %b | ||
| 168 | --- %b --- 20 | ||
| 169 | Nov | ||
| 170 | %b | ||
| 171 | --- %b --- 21 | ||
| 172 | November | ||
| 173 | %b | ||
| 174 | --- %b --- 22 | ||
| 175 | Dec | ||
| 176 | %b | ||
| 177 | --- %b --- 23 | ||
| 178 | December | ||
| 179 | %b | ||
| 180 | --- %b --- 25 | ||
| 181 | Mayor | ||
| 182 | %b | ||
| 183 | --- %b --- 24 | ||
| 184 | Mars | ||
| 185 | %b | ||
| 186 | --- %b --- 26 | ||
| 187 | Rover | ||
| 188 | %b | ||
| 189 | --- %B --- 1 | ||
| 190 | Jan | ||
| 191 | %B | ||
| 192 | --- %B --- 2 | ||
| 193 | January | ||
| 194 | %B | ||
| 195 | --- %B --- 3 | ||
| 196 | Feb | ||
| 197 | %B | ||
| 198 | --- %B --- 4 | ||
| 199 | February | ||
| 200 | %B | ||
| 201 | --- %B --- 5 | ||
| 202 | Mar | ||
| 203 | %B | ||
| 204 | --- %B --- 6 | ||
| 205 | March | ||
| 206 | %B | ||
| 207 | --- %B --- 7 | ||
| 208 | Apr | ||
| 209 | %B | ||
| 210 | --- %B --- 8 | ||
| 211 | April | ||
| 212 | %B | ||
| 213 | --- %B --- 9 | ||
| 214 | May | ||
| 215 | %B | ||
| 216 | --- %B --- 10 | ||
| 217 | Jun | ||
| 218 | %B | ||
| 219 | --- %B --- 11 | ||
| 220 | June | ||
| 221 | %B | ||
| 222 | --- %B --- 12 | ||
| 223 | Jul | ||
| 224 | %B | ||
| 225 | --- %B --- 13 | ||
| 226 | July | ||
| 227 | %B | ||
| 228 | --- %B --- 14 | ||
| 229 | Aug | ||
| 230 | %B | ||
| 231 | --- %B --- 15 | ||
| 232 | August | ||
| 233 | %B | ||
| 234 | --- %B --- 16 | ||
| 235 | Sep | ||
| 236 | %B | ||
| 237 | --- %B --- 17 | ||
| 238 | September | ||
| 239 | %B | ||
| 240 | --- %B --- 18 | ||
| 241 | Oct | ||
| 242 | %B | ||
| 243 | --- %B --- 19 | ||
| 244 | October | ||
| 245 | %B | ||
| 246 | --- %B --- 20 | ||
| 247 | Nov | ||
| 248 | %B | ||
| 249 | --- %B --- 21 | ||
| 250 | November | ||
| 251 | %B | ||
| 252 | --- %B --- 22 | ||
| 253 | Dec | ||
| 254 | %B | ||
| 255 | --- %B --- 23 | ||
| 256 | December | ||
| 257 | %B | ||
| 258 | --- %B --- 25 | ||
| 259 | Mayor | ||
| 260 | %B | ||
| 261 | --- %B --- 24 | ||
| 262 | Mars | ||
| 263 | %B | ||
| 264 | --- %B --- 26 | ||
| 265 | Rover | ||
| 266 | %B | ||
| 267 | EOF | ||
diff --git a/src/regress/lib/libc/vis/Makefile b/src/regress/lib/libc/vis/Makefile new file mode 100644 index 0000000000..13e560bbf7 --- /dev/null +++ b/src/regress/lib/libc/vis/Makefile | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2005/08/29 18:41:56 otto Exp $ | ||
| 2 | |||
| 3 | PROG= vis_test | ||
| 4 | CLEANFILES+= valid.out | ||
| 5 | |||
| 6 | run-regress-vis_test: ${PROG} | ||
| 7 | ./${PROG} >${.OBJDIR}/valid.out | ||
| 8 | cmp -s ${.OBJDIR}/valid.out ${.CURDIR}/valid.ok | ||
| 9 | |||
| 10 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/vis/valid.ok b/src/regress/lib/libc/vis/valid.ok new file mode 100644 index 0000000000..f8c0efa503 --- /dev/null +++ b/src/regress/lib/libc/vis/valid.ok | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | \^@\^A\^B\^C\^D\^E\^F\^G\^H | ||
| 2 | \^K\^L\^M\^N\^O\^P\^Q\^R\^S\^T\^U\^V\^W\^X\^Y\^Z\^[\^\\^]\^^\^_ !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\^?\M^@\M^A\M^B\M^C\M^D\M^E\M^F\M^G\M^H\M^I\M^J\M^K\M^L\M^M\M^N\M^O\M^P\M^Q\M^R\M^S\M^T\M^U\M^V\M^W\M^X\M^Y\M^Z\M^[\M^\\M^]\M^^\M^_\240\M-!\M-"\M-#\M-$\M-%\M-&\M-'\M-(\M-)\M-*\M-+\M-,\M--\M-.\M-/\M-0\M-1\M-2\M-3\M-4\M-5\M-6\M-7\M-8\M-9\M-:\M-;\M-<\M-=\M->\M-?\M-@\M-A\M-B\M-C\M-D\M-E\M-F\M-G\M-H\M-I\M-J\M-K\M-L\M-M\M-N\M-O\M-P\M-Q\M-R\M-S\M-T\M-U\M-V\M-W\M-X\M-Y\M-Z\M-[\M-\\M-]\M-^\M-_\M-`\M-a\M-b\M-c\M-d\M-e\M-f\M-g\M-h\M-i\M-j\M-k\M-l\M-m\M-n\M-o\M-p\M-q\M-r\M-s\M-t\M-u\M-v\M-w\M-x\M-y\M-z\M-{\M-|\M-}\M-~\M^? | ||
diff --git a/src/regress/lib/libc/vis/vis_test.c b/src/regress/lib/libc/vis/vis_test.c new file mode 100644 index 0000000000..74113e7a61 --- /dev/null +++ b/src/regress/lib/libc/vis/vis_test.c | |||
| @@ -0,0 +1,109 @@ | |||
| 1 | /* $OpenBSD: vis_test.c,v 1.3 2011/03/13 22:12:37 deraadt Exp $ */ | ||
| 2 | |||
| 3 | /* Public domain. 2005, Otto Moerbeek */ | ||
| 4 | |||
| 5 | #include <limits.h> | ||
| 6 | #include <stdlib.h> | ||
| 7 | #include <string.h> | ||
| 8 | #include <stdio.h> | ||
| 9 | #include <vis.h> | ||
| 10 | |||
| 11 | #define NTESTS 8000 | ||
| 12 | #define NCH 800 | ||
| 13 | |||
| 14 | char ibuf[NCH]; | ||
| 15 | char obuf[NCH * 4]; | ||
| 16 | char rbuf[NCH * 4]; | ||
| 17 | |||
| 18 | int flags[] = { | ||
| 19 | VIS_ALL, | ||
| 20 | VIS_GLOB, | ||
| 21 | VIS_TAB, | ||
| 22 | VIS_NL, | ||
| 23 | VIS_WHITE, | ||
| 24 | VIS_SAFE | ||
| 25 | }; | ||
| 26 | |||
| 27 | char *flagname[] = { | ||
| 28 | "VIS_ALL", | ||
| 29 | "VIS_GLOB", | ||
| 30 | "VIS_TAB", | ||
| 31 | "VIS_NL", | ||
| 32 | "VIS_WHITE", | ||
| 33 | "VIS_SAFE" | ||
| 34 | }; | ||
| 35 | |||
| 36 | int title; | ||
| 37 | |||
| 38 | void | ||
| 39 | dotitle(int i, int j) | ||
| 40 | { | ||
| 41 | if (title == 0) | ||
| 42 | printf("%d %s:", i, flagname[j]); | ||
| 43 | title = 1; | ||
| 44 | } | ||
| 45 | |||
| 46 | int | ||
| 47 | main(int argc, char *argv[]) | ||
| 48 | { | ||
| 49 | |||
| 50 | char inp[UCHAR_MAX + 1]; | ||
| 51 | char out[4 * UCHAR_MAX + 1]; | ||
| 52 | int i, j, fail = 0; | ||
| 53 | ssize_t owant, o, r; | ||
| 54 | |||
| 55 | for (i = 0; i <= UCHAR_MAX; i++) { | ||
| 56 | inp[i] = i; | ||
| 57 | } | ||
| 58 | strvisx(out, inp, UCHAR_MAX + 1, 0); | ||
| 59 | printf("%s\n", out); | ||
| 60 | |||
| 61 | for (i = 0; i < NTESTS; i++) { | ||
| 62 | arc4random_buf(ibuf, sizeof(ibuf) - 1); | ||
| 63 | ibuf[sizeof(ibuf) - 1] = '\0'; | ||
| 64 | title = 0; | ||
| 65 | |||
| 66 | for (j = 0; j < sizeof(flags)/sizeof(flags[0]); j++) { | ||
| 67 | owant = sizeof(ibuf); | ||
| 68 | o = strnvis(obuf, ibuf, owant, flags[j]); | ||
| 69 | if (o >= owant) { | ||
| 70 | owant = o + 1; | ||
| 71 | o = strnvis(obuf, ibuf, owant, flags[j]); | ||
| 72 | if (o > owant) { | ||
| 73 | dotitle(i, j); | ||
| 74 | printf("HUGE overflow\n"); | ||
| 75 | } | ||
| 76 | if (o < owant - 1) { | ||
| 77 | dotitle(i, j); | ||
| 78 | printf("over-estimate of overflow\n"); | ||
| 79 | } | ||
| 80 | } else if (o > strlen(ibuf) * 4) { | ||
| 81 | dotitle(i, j); | ||
| 82 | printf("wants too much %d %d\n", o, strlen(ibuf) * 4); | ||
| 83 | continue; | ||
| 84 | } | ||
| 85 | |||
| 86 | r = strnunvis(rbuf, obuf, sizeof rbuf); | ||
| 87 | |||
| 88 | if (r == -1) { | ||
| 89 | dotitle(i, j); | ||
| 90 | printf("cannot decode\n"); | ||
| 91 | printf("%s\n", obuf); | ||
| 92 | fail = 1; | ||
| 93 | } else if (r != strlen(ibuf)) { | ||
| 94 | dotitle(i, j); | ||
| 95 | printf("rlen %d != inlen %d\n", r, strlen(ibuf)); | ||
| 96 | printf("%s\n", obuf); | ||
| 97 | printf("%s\n", rbuf); | ||
| 98 | fail = 1; | ||
| 99 | } else if (bcmp(ibuf, rbuf, r)) { | ||
| 100 | dotitle(i, j); | ||
| 101 | printf("strings are different\n"); | ||
| 102 | printf("%s\n", ibuf); | ||
| 103 | printf("%s\n", rbuf); | ||
| 104 | fail = 1; | ||
| 105 | } | ||
| 106 | } | ||
| 107 | } | ||
| 108 | exit(fail); | ||
| 109 | } | ||
diff --git a/src/regress/lib/libc/wprintf/Makefile b/src/regress/lib/libc/wprintf/Makefile new file mode 100644 index 0000000000..7b1897f2c4 --- /dev/null +++ b/src/regress/lib/libc/wprintf/Makefile | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.1 2011/04/24 08:00:22 stsp Exp $ | ||
| 2 | |||
| 3 | PROG= wfp | ||
| 4 | |||
| 5 | .include <bsd.regress.mk> | ||
diff --git a/src/regress/lib/libc/wprintf/wfp.c b/src/regress/lib/libc/wprintf/wfp.c new file mode 100644 index 0000000000..fc3120b53c --- /dev/null +++ b/src/regress/lib/libc/wprintf/wfp.c | |||
| @@ -0,0 +1,218 @@ | |||
| 1 | /* $OpenBSD: wfp.c,v 1.1 2011/04/24 08:00:22 stsp Exp $ */ | ||
| 2 | /*- | ||
| 3 | * Copyright (c) 2002, 2005 David Schultz <das@FreeBSD.org> | ||
| 4 | * All rights reserved. | ||
| 5 | * | ||
| 6 | * Redistribution and use in source and binary forms, with or without | ||
| 7 | * modification, are permitted provided that the following conditions | ||
| 8 | * are met: | ||
| 9 | * 1. Redistributions of source code must retain the above copyright | ||
| 10 | * notice, this list of conditions and the following disclaimer. | ||
| 11 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 12 | * notice, this list of conditions and the following disclaimer in the | ||
| 13 | * documentation and/or other materials provided with the distribution. | ||
| 14 | * | ||
| 15 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | ||
| 16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 17 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 18 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
| 19 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 20 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 21 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 22 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 23 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 24 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 25 | * SUCH DAMAGE. | ||
| 26 | */ | ||
| 27 | |||
| 28 | /* | ||
| 29 | * Test for wprintf() floating point formats. | ||
| 30 | */ | ||
| 31 | |||
| 32 | #include <assert.h> | ||
| 33 | #include <err.h> | ||
| 34 | #include <float.h> | ||
| 35 | #include <math.h> | ||
| 36 | #include <stdio.h> | ||
| 37 | #include <stdarg.h> | ||
| 38 | #include <stdint.h> | ||
| 39 | #include <stdlib.h> | ||
| 40 | #include <string.h> | ||
| 41 | #include <wchar.h> | ||
| 42 | |||
| 43 | #define testfmt(result, fmt, ...) \ | ||
| 44 | _testfmt((result), __LINE__, #__VA_ARGS__, fmt, __VA_ARGS__) | ||
| 45 | void _testfmt(const wchar_t *, int, const char *, const wchar_t *, ...); | ||
| 46 | void smash_stack(void); | ||
| 47 | |||
| 48 | int | ||
| 49 | main(int argc, char *argv[]) | ||
| 50 | { | ||
| 51 | /* | ||
| 52 | * Basic tests of decimal output functionality. | ||
| 53 | */ | ||
| 54 | testfmt(L" 1.000000E+00", L"%13E", 1.0); | ||
| 55 | testfmt(L" 1.000000", L"%13f", 1.0); | ||
| 56 | testfmt(L" 1", L"%13G", 1.0); | ||
| 57 | testfmt(L" 1.000000E+00", L"%13LE", 1.0L); | ||
| 58 | testfmt(L" 1.000000", L"%13Lf", 1.0L); | ||
| 59 | testfmt(L" 1", L"%13LG", 1.0L); | ||
| 60 | |||
| 61 | testfmt(L"2.718282", L"%.*f", -2, 2.7182818); | ||
| 62 | |||
| 63 | testfmt(L"1.234568e+06", L"%e", 1234567.8); | ||
| 64 | testfmt(L"1234567.800000", L"%f", 1234567.8); | ||
| 65 | testfmt(L"1.23457E+06", L"%G", 1234567.8); | ||
| 66 | testfmt(L"1.234568e+06", L"%Le", 1234567.8L); | ||
| 67 | testfmt(L"1234567.800000", L"%Lf", 1234567.8L); | ||
| 68 | testfmt(L"1.23457E+06", L"%LG", 1234567.8L); | ||
| 69 | |||
| 70 | #if (LDBL_MANT_DIG > DBL_MANT_DIG) && !defined(__i386__) | ||
| 71 | testfmt(L"123456789.864210", L"%Lf", 123456789.8642097531L); | ||
| 72 | testfmt(L"-1.23457E+08", L"%LG", -123456789.8642097531L); | ||
| 73 | testfmt(L"123456789.8642097531", L"%.10Lf", 123456789.8642097531L); | ||
| 74 | testfmt(L" 3.141592653589793238e-4000", L"%L27.18Le", | ||
| 75 | 3.14159265358979323846e-4000L); | ||
| 76 | #endif /* (LDBL_MANT_DIG > DBL_MANT_DIG) && !defined(__i386__) */ | ||
| 77 | |||
| 78 | /* | ||
| 79 | * Infinities and NaNs | ||
| 80 | */ | ||
| 81 | #ifdef NAN | ||
| 82 | testfmt(L"nan", L"%e", NAN); | ||
| 83 | testfmt(L"NAN", L"%F", NAN); | ||
| 84 | testfmt(L"nan", L"%g", NAN); | ||
| 85 | testfmt(L"NAN", L"%LE", (long double)NAN); | ||
| 86 | testfmt(L" nan", L"%05e", NAN); | ||
| 87 | #endif /* NAN */ | ||
| 88 | |||
| 89 | testfmt(L"INF", L"%E", HUGE_VAL); | ||
| 90 | testfmt(L"-inf", L"%f", -HUGE_VAL); | ||
| 91 | testfmt(L"+inf", L"%+g", HUGE_VAL); | ||
| 92 | testfmt(L" inf", L"%4.2Le", HUGE_VALL); | ||
| 93 | testfmt(L"-inf", L"%Lf", -HUGE_VALL); | ||
| 94 | testfmt(L" inf", L"%05e", HUGE_VAL); | ||
| 95 | testfmt(L" -inf", L"%05e", -HUGE_VAL); | ||
| 96 | |||
| 97 | /* | ||
| 98 | * Padding | ||
| 99 | */ | ||
| 100 | testfmt(L"0.000000e+00", L"%e", 0.0); | ||
| 101 | testfmt(L"0.000000", L"%F", (double)0.0); | ||
| 102 | testfmt(L"0", L"%G", 0.0); | ||
| 103 | testfmt(L" 0", L"%3.0Lg", 0.0L); | ||
| 104 | testfmt(L" 0", L"%5.0f", 0.001); | ||
| 105 | |||
| 106 | /* | ||
| 107 | * Precision specifiers | ||
| 108 | */ | ||
| 109 | testfmt(L"1.0123e+00", L"%.4e", 1.0123456789); | ||
| 110 | testfmt(L"1.0123", L"%.4f", 1.0123456789); | ||
| 111 | testfmt(L"1.012", L"%.4g", 1.0123456789); | ||
| 112 | testfmt(L"1.2346e-02", L"%.4e", 0.0123456789); | ||
| 113 | testfmt(L"0.0123", L"%.4f", 0.0123456789); | ||
| 114 | testfmt(L"0.01235", L"%.4g", 0.0123456789); | ||
| 115 | |||
| 116 | /* | ||
| 117 | * Signed conversions | ||
| 118 | */ | ||
| 119 | testfmt(L"+2.500000e-01", L"%+e", 0.25); | ||
| 120 | testfmt(L"+0.000000", L"%+F", 0.0); | ||
| 121 | testfmt(L"-1", L"%+g", -1.0); | ||
| 122 | |||
| 123 | testfmt(L"-1.000000e+00", L"% e", -1.0); | ||
| 124 | testfmt(L"+1.000000", L"% +f", 1.0); | ||
| 125 | testfmt(L" 1", L"% g", 1.0); | ||
| 126 | testfmt(L" 0", L"% g", 0.0); | ||
| 127 | |||
| 128 | /* | ||
| 129 | * ``Alternate form'' | ||
| 130 | */ | ||
| 131 | testfmt(L"1.250e+00", L"%#.3e", 1.25); | ||
| 132 | testfmt(L"123.000000", L"%#f", 123.0); | ||
| 133 | testfmt(L" 12345.", L"%#7.5g", 12345.0); | ||
| 134 | testfmt(L" 1.00000", L"%#8g", 1.0); | ||
| 135 | testfmt(L"0.0", L"%#.2g", 0.0); | ||
| 136 | |||
| 137 | /* | ||
| 138 | * Padding and decimal point placement | ||
| 139 | */ | ||
| 140 | testfmt(L"03.2E+00", L"%08.1E", 3.25); | ||
| 141 | testfmt(L"003.25", L"%06.2F", 3.25); | ||
| 142 | testfmt(L"0003.25", L"%07.4G", 3.25); | ||
| 143 | |||
| 144 | testfmt(L"3.14159e-05", L"%g", 3.14159e-5); | ||
| 145 | testfmt(L"0.000314159", L"%g", 3.14159e-4); | ||
| 146 | testfmt(L"3.14159e+06", L"%g", 3.14159e6); | ||
| 147 | testfmt(L"314159", L"%g", 3.14159e5); | ||
| 148 | testfmt(L"314159.", L"%#g", 3.14159e5); | ||
| 149 | |||
| 150 | testfmt(L" 9.000000e+03", L"%13e", 9000.0); | ||
| 151 | testfmt(L" 9000.000000", L"%12f", 9000.0); | ||
| 152 | testfmt(L" 9000", L"%5g", 9000.0); | ||
| 153 | testfmt(L" 900000.", L"%#8g", 900000.0); | ||
| 154 | testfmt(L" 9e+06", L"%6g", 9000000.0); | ||
| 155 | testfmt(L" 9.000000e-04", L"%13e", 0.0009); | ||
| 156 | testfmt(L" 0.000900", L"%9f", 0.0009); | ||
| 157 | testfmt(L" 0.0009", L"%7g", 0.0009); | ||
| 158 | testfmt(L" 9e-05", L"%6g", 0.00009); | ||
| 159 | testfmt(L" 9.00000e-05", L"%#12g", 0.00009); | ||
| 160 | testfmt(L" 9.e-05", L"%#7.1g", 0.00009); | ||
| 161 | |||
| 162 | testfmt(L" 0.0", L"%4.1f", 0.0); | ||
| 163 | testfmt(L"90.0", L"%4.1f", 90.0); | ||
| 164 | testfmt(L" 100", L"%4.0f", 100.0); | ||
| 165 | testfmt(L"9.0e+01", L"%4.1e", 90.0); | ||
| 166 | testfmt(L"1e+02", L"%4.0e", 100.0); | ||
| 167 | |||
| 168 | /* | ||
| 169 | * Hexadecimal floating point (%a, %A) tests. Some of these | ||
| 170 | * are only valid if the implementation converts to hex digits | ||
| 171 | * on nibble boundaries. | ||
| 172 | */ | ||
| 173 | testfmt(L"0x0p+0", L"%a", 0x0.0p0); | ||
| 174 | testfmt(L"0X0.P+0", L"%#LA", 0x0.0p0L); | ||
| 175 | #ifdef NAN | ||
| 176 | testfmt(L"inf", L"%La", (long double)INFINITY); | ||
| 177 | testfmt(L"+INF", L"%+A", INFINITY); | ||
| 178 | testfmt(L"nan", L"%La", (long double)NAN); | ||
| 179 | testfmt(L"NAN", L"%A", NAN); | ||
| 180 | #endif /* NAN */ | ||
| 181 | |||
| 182 | testfmt(L" 0x1.23p+0", L"%10a", 0x1.23p0); | ||
| 183 | testfmt(L" 0x1.23p-500", L"%12a", 0x1.23p-500); | ||
| 184 | testfmt(L" 0x1.2p+40", L"%10.1a", 0x1.23p40); | ||
| 185 | testfmt(L" 0X1.230000000000000000000000P-4", L"%32.24A", 0x1.23p-4); | ||
| 186 | testfmt(L"0x1p-1074", L"%a", 0x1p-1074); | ||
| 187 | testfmt(L"0x1.2345p-1024", L"%a", 0x1.2345p-1024); | ||
| 188 | |||
| 189 | return (0); | ||
| 190 | } | ||
| 191 | |||
| 192 | void | ||
| 193 | smash_stack(void) | ||
| 194 | { | ||
| 195 | static uint32_t junk = 0xdeadbeef; | ||
| 196 | uint32_t buf[512]; | ||
| 197 | int i; | ||
| 198 | |||
| 199 | for (i = 0; i < sizeof(buf) / sizeof(buf[0]); i++) | ||
| 200 | buf[i] = junk; | ||
| 201 | } | ||
| 202 | |||
| 203 | void | ||
| 204 | _testfmt(const wchar_t *result, int line, const char *argstr, const wchar_t *fmt,...) | ||
| 205 | { | ||
| 206 | wchar_t s[100]; | ||
| 207 | va_list ap; | ||
| 208 | |||
| 209 | va_start(ap, fmt); | ||
| 210 | smash_stack(); | ||
| 211 | vswprintf(s, sizeof(s), fmt, ap); | ||
| 212 | if (wcscmp(result, s) != 0) { | ||
| 213 | fprintf(stderr, | ||
| 214 | "%d: printf(\"%s\", %s) ==> [%s], expected [%s]\n", | ||
| 215 | line, (char*)fmt, argstr, s, result); | ||
| 216 | abort(); | ||
| 217 | } | ||
| 218 | } | ||
