diff options
Diffstat (limited to 'src/lib/libc/stdlib')
103 files changed, 7099 insertions, 2452 deletions
diff --git a/src/lib/libc/stdlib/Makefile.inc b/src/lib/libc/stdlib/Makefile.inc index 782a4ab022..1d5ba5c9bd 100644 --- a/src/lib/libc/stdlib/Makefile.inc +++ b/src/lib/libc/stdlib/Makefile.inc | |||
@@ -1,24 +1,29 @@ | |||
1 | # from: @(#)Makefile.inc 5.6 (Berkeley) 6/4/91 | 1 | # $OpenBDS: Makefile.inc,v 1.6 1996/08/21 03:47:21 tholo Exp $ |
2 | # $Id: Makefile.inc,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $ | ||
3 | 2 | ||
4 | # stdlib sources | 3 | # stdlib sources |
5 | .PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/stdlib ${.CURDIR}/stdlib | 4 | .PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/stdlib ${LIBCSRCDIR}/stdlib |
6 | 5 | ||
7 | SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c bsearch.c calloc.c \ | 6 | SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c atoll.c bsearch.c \ |
8 | exit.c getenv.c getopt.c heapsort.c l64a.c malloc.c merge.c \ | 7 | calloc.c cfree.c exit.c ecvt.c gcvt.c getenv.c getopt_long.c \ |
9 | multibyte.c putenv.c qsort.c radixsort.c rand.c random.c realpath.c \ | 8 | getsubopt.c hcreate.c heapsort.c l64a.c llabs.c lsearch.c malloc.c \ |
10 | setenv.c strtod.c strtol.c strtoq.c strtoul.c strtouq.c system.c \ | 9 | merge.c multibyte.c putenv.c qsort.c radixsort.c rand.c random.c \ |
11 | _rand48.c drand48.c erand48.c jrand48.c lcong48.c lrand48.c \ | 10 | realpath.c setenv.c strtod.c strtol.c strtoll.c strtonum.c strtoul.c \ |
12 | mrand48.c nrand48.c seed48.c srand48.c qabs.c qdiv.c | 11 | strtoull.c system.c \ |
12 | tfind.c tsearch.c _rand48.c drand48.c erand48.c jrand48.c lcong48.c \ | ||
13 | lrand48.c mrand48.c nrand48.c seed48.c srand48.c qabs.c qdiv.c _Exit.c | ||
13 | 14 | ||
14 | .if (${MACHINE_ARCH} == "m68k") | 15 | .if (${MACHINE_ARCH} == "m68k") |
15 | SRCS+= abs.S div.c labs.c ldiv.c | 16 | SRCS+= abs.S div.c labs.c ldiv.c |
17 | LSRCS+= abs.c | ||
16 | .elif (${MACHINE_ARCH} == "i386") | 18 | .elif (${MACHINE_ARCH} == "i386") |
17 | SRCS+= abs.S div.S labs.S ldiv.S | 19 | SRCS+= abs.S div.S labs.S ldiv.S |
20 | LSRCS+= abs.c div.c labs.c ldiv.c | ||
18 | .elif (${MACHINE_ARCH} == "ns32k") | 21 | .elif (${MACHINE_ARCH} == "ns32k") |
19 | SRCS+= abs.S div.c labs.c ldiv.c | 22 | SRCS+= abs.S div.c labs.c ldiv.c |
23 | LSRCS+= abs.c | ||
20 | .elif (${MACHINE_ARCH} == "tahoe") | 24 | .elif (${MACHINE_ARCH} == "tahoe") |
21 | SRCS+= abs.S div.c labs.c ldiv.c | 25 | SRCS+= abs.S div.c labs.c ldiv.c |
26 | LSRCS+= abs.c | ||
22 | .elif (${MACHINE_ARCH} == "vax") | 27 | .elif (${MACHINE_ARCH} == "vax") |
23 | SRCS+= abs.c div.c labs.c ldiv.c | 28 | SRCS+= abs.c div.c labs.c ldiv.c |
24 | .elif (${MACHINE_ARCH} == "alpha") | 29 | .elif (${MACHINE_ARCH} == "alpha") |
@@ -28,18 +33,39 @@ SRCS+= abs.c div.c labs.c ldiv.c | |||
28 | SRCS+= abs.c div.c labs.c ldiv.c | 33 | SRCS+= abs.c div.c labs.c ldiv.c |
29 | .endif | 34 | .endif |
30 | 35 | ||
31 | MAN+= abort.3 abs.3 alloca.3 atexit.3 atof.3 atoi.3 atol.3 bsearch.3 \ | 36 | .if (${MACHINE_ARCH} == "vax") || (${MACHINE_ARCH} == "m68k") |
32 | calloc.3 div.3 exit.3 free.3 getenv.3 getopt.3 labs.3 ldiv.3 \ | 37 | SRCS+= insque.S remque.S |
33 | malloc.3 memory.3 qabs.3 qdiv.3 qsort.3 radixsort.3 rand48.3 \ | 38 | .else |
34 | rand.3 random.3 realloc.3 realpath.3 strtod.3 strtol.3 strtoul.3 \ | 39 | SRCS+= insque.c remque.c |
35 | system.3 | 40 | .endif |
41 | |||
42 | MAN+= a64l.3 abort.3 abs.3 alloca.3 atexit.3 atof.3 atoi.3 atol.3 atoll.3 \ | ||
43 | bsearch.3 div.3 ecvt.3 exit.3 getenv.3 getopt.3 getopt_long.3 \ | ||
44 | getsubopt.3 hcreate.3 insque.3 labs.3 ldiv.3 lsearch.3 malloc.3 qabs.3 \ | ||
45 | qdiv.3 qsort.3 radixsort.3 rand48.3 rand.3 random.3 realpath.3 \ | ||
46 | strtod.3 strtonum.3 strtol.3 strtoul.3 system.3 tsearch.3 | ||
36 | 47 | ||
48 | MLINKS+=exit.3 _Exit.3 | ||
49 | MLINKS+=ecvt.3 fcvt.3 ecvt.3 gcvt.3 | ||
37 | MLINKS+=getenv.3 setenv.3 getenv.3 unsetenv.3 getenv.3 putenv.3 | 50 | MLINKS+=getenv.3 setenv.3 getenv.3 unsetenv.3 getenv.3 putenv.3 |
51 | MLINKS+=getopt_long.3 getopt_long_only.3 | ||
52 | MLINKS+=hcreate.3 hdestroy.3 hcreate.3 hsearch.3 | ||
53 | MLINKS+=insque.3 remque.3 | ||
54 | MLINKS+=labs.3 llabs.3 | ||
55 | MLINKS+=lsearch.3 lfind.3 | ||
56 | MLINKS+=malloc.3 free.3 malloc.3 realloc.3 malloc.3 calloc.3 | ||
57 | MLINKS+=malloc.3 cfree.3 malloc.3 malloc.conf.5 | ||
38 | MLINKS+=qsort.3 heapsort.3 qsort.3 mergesort.3 | 58 | MLINKS+=qsort.3 heapsort.3 qsort.3 mergesort.3 |
39 | MLINKS+=rand.3 srand.3 | 59 | MLINKS+=radixsort.3 sradixsort.3 |
40 | MLINKS+=strtol.3 strtoq.3 | 60 | MLINKS+=rand.3 srand.3 rand.3 rand_r.3 |
41 | MLINKS+=strtoul.3 strtouq.3 | 61 | MLINKS+=random.3 initstate.3 random.3 setstate.3 |
42 | MLINKS+=random.3 initstate.3 random.3 setstate.3 random.3 srandom.3 | 62 | MLINKS+=random.3 srandom.3 random.3 srandomdev.3 |
43 | MLINKS+=rand48.3 drand48.3 rand48.3 erand48.3 rand48.3 lrand48.3 | 63 | MLINKS+=rand48.3 drand48.3 rand48.3 erand48.3 rand48.3 lrand48.3 |
44 | MLINKS+=rand48.3 mrand48.3 rand48.3 nrand48.3 rand48.3 jrand48.3 | 64 | MLINKS+=rand48.3 mrand48.3 rand48.3 nrand48.3 rand48.3 jrand48.3 |
45 | MLINKS+=rand48.3 srand48.3 rand48.3 seed48.3 rand48.3 lcong48.3 | 65 | MLINKS+=rand48.3 srand48.3 rand48.3 seed48.3 rand48.3 lcong48.3 |
66 | MLINKS+=strtol.3 strtoll.3 strtol.3 strtoq.3 | ||
67 | MLINKS+=strtoul.3 strtoull.3 strtoul.3 strtouq.3 | ||
68 | MLINKS+=tsearch.3 tfind.3 | ||
69 | MLINKS+=tsearch.3 tdelete.3 | ||
70 | MLINKS+=tsearch.3 twalk.3 | ||
71 | MLINKS+=a64l.3 l64a.3 | ||
diff --git a/src/lib/libc/stdlib/_Exit.c b/src/lib/libc/stdlib/_Exit.c new file mode 100644 index 0000000000..784015a21d --- /dev/null +++ b/src/lib/libc/stdlib/_Exit.c | |||
@@ -0,0 +1,26 @@ | |||
1 | /* $OpenBSD: _Exit.c,v 1.1 2004/05/03 17:21:13 millert Exp $ */ | ||
2 | |||
3 | /* | ||
4 | * Placed in the public domain by Todd C. Miller on January 21, 2004. | ||
5 | */ | ||
6 | |||
7 | #if defined(LIBC_SCCS) && !defined(lint) | ||
8 | static char *rcsid = "$OpenBSD: _Exit.c,v 1.1 2004/05/03 17:21:13 millert Exp $"; | ||
9 | #endif /* LIBC_SCCS and not lint */ | ||
10 | |||
11 | #include <stdlib.h> | ||
12 | #include <unistd.h> | ||
13 | |||
14 | /* | ||
15 | * _Exit() is the ISO/ANSI C99 equivalent of the POSIX _exit() function. | ||
16 | * No atexit() handlers are called and no signal handlers are run. | ||
17 | * Whether or not stdio buffers are flushed or temporary files are removed | ||
18 | * is implementation-dependent. As such it is safest to *not* flush | ||
19 | * stdio buffers or remove temporary files. This is also consistent | ||
20 | * with most other implementations. | ||
21 | */ | ||
22 | void | ||
23 | _Exit(int status) | ||
24 | { | ||
25 | _exit(status); | ||
26 | } | ||
diff --git a/src/lib/libc/stdlib/_rand48.c b/src/lib/libc/stdlib/_rand48.c index 83ade4645a..fed7372f68 100644 --- a/src/lib/libc/stdlib/_rand48.c +++ b/src/lib/libc/stdlib/_rand48.c | |||
@@ -11,6 +11,10 @@ | |||
11 | * to anyone/anything when using this software. | 11 | * to anyone/anything when using this software. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: _rand48.c,v 1.2 1996/08/19 08:33:19 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
14 | #include "rand48.h" | 18 | #include "rand48.h" |
15 | 19 | ||
16 | unsigned short __rand48_seed[3] = { | 20 | unsigned short __rand48_seed[3] = { |
diff --git a/src/lib/libc/stdlib/a64l.3 b/src/lib/libc/stdlib/a64l.3 new file mode 100644 index 0000000000..f2957a7ad4 --- /dev/null +++ b/src/lib/libc/stdlib/a64l.3 | |||
@@ -0,0 +1,133 @@ | |||
1 | .\" $OpenBSD: a64l.3,v 1.9 2005/02/25 03:12:44 cloder Exp $ | ||
2 | .\" | ||
3 | .\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> | ||
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 | .Dd August 17, 1997 | ||
18 | .Dt A64L 3 | ||
19 | .Os | ||
20 | .Sh NAME | ||
21 | .Nm a64l , | ||
22 | .Nm l64a | ||
23 | .Nd convert between 32-bit integer and radix-64 ASCII string | ||
24 | .Sh SYNOPSIS | ||
25 | .Fd #include <stdlib.h> | ||
26 | .Ft long | ||
27 | .Fn a64l "const char *s" | ||
28 | .Ft char * | ||
29 | .Fn l64a "long l" | ||
30 | .Sh DESCRIPTION | ||
31 | The | ||
32 | .Fn a64l | ||
33 | and | ||
34 | .Fn l64a | ||
35 | functions are used to maintain numbers stored in radix-64 | ||
36 | .Tn ASCII | ||
37 | characters. | ||
38 | This is a notation by which 32-bit integers | ||
39 | can be represented by up to six characters; each character represents a | ||
40 | .Dq digit | ||
41 | in a radix-64 notation. | ||
42 | .Pp | ||
43 | The characters used to represent digits are | ||
44 | .Ql \&. | ||
45 | for 0, | ||
46 | .Ql / | ||
47 | for 1, | ||
48 | .Ql 0 | ||
49 | through | ||
50 | .Ql 9 | ||
51 | for 2-11, | ||
52 | .Ql A | ||
53 | through | ||
54 | .Ql Z | ||
55 | for 12-37, and | ||
56 | .Ql a | ||
57 | through | ||
58 | .Ql z | ||
59 | for 38-63. | ||
60 | .Pp | ||
61 | The | ||
62 | .Fn a64l | ||
63 | function takes a pointer to a NUL-terminated radix-64 representation | ||
64 | and returns a corresponding 32-bit value. | ||
65 | If the string pointed to by | ||
66 | .Fa s | ||
67 | contains more than six characters, | ||
68 | .Fn a64l | ||
69 | will use the first six. | ||
70 | .Fn a64l | ||
71 | scans the character string from left to right, decoding | ||
72 | each character as a 6-bit radix-64 number. | ||
73 | If a long integer is | ||
74 | larger than 32 bits, the return value will be sign-extended. | ||
75 | .Pp | ||
76 | .Fn l64a | ||
77 | takes a long integer argument | ||
78 | .Fa l | ||
79 | and returns a pointer to the corresponding radix-64 representation. | ||
80 | .Sh RETURN VALUES | ||
81 | On success, | ||
82 | .Fn a64l | ||
83 | returns a 32-bit representation of | ||
84 | .Fa s . | ||
85 | If | ||
86 | .Fa s | ||
87 | is a null pointer or if it contains digits other than those described above, | ||
88 | .Fn a64l | ||
89 | returns \-1 and sets the global variable | ||
90 | .Va errno | ||
91 | to | ||
92 | .Er EINVAL . | ||
93 | .Pp | ||
94 | On success, | ||
95 | .Fn l64a | ||
96 | returns a pointer to a string containing the radix-64 representation of | ||
97 | .Fa l . | ||
98 | If | ||
99 | .Fa l | ||
100 | is 0, | ||
101 | .Fn l64a | ||
102 | returns a pointer to the empty string. | ||
103 | If | ||
104 | .Fa l | ||
105 | is negative, | ||
106 | .Fn l64a | ||
107 | returns a null pointer and sets the global variable | ||
108 | .Va errno | ||
109 | to | ||
110 | .Er EINVAL . | ||
111 | .Sh WARNINGS | ||
112 | The value returned by | ||
113 | .Fn l64a | ||
114 | is a pointer into a static buffer, the contents of which | ||
115 | will be overwritten by subsequent calls. | ||
116 | .Pp | ||
117 | The value returned by | ||
118 | .Fn a64l | ||
119 | may be incorrect if the value is too large; for that reason, only strings | ||
120 | that resulted from a call to | ||
121 | .Fn l64a | ||
122 | should be used to call | ||
123 | .Fn a64l . | ||
124 | .Pp | ||
125 | If a long integer is larger than 32 bits, only the low-order | ||
126 | 32 bits are used. | ||
127 | .Sh STANDARDS | ||
128 | The | ||
129 | .Fn a64l | ||
130 | and | ||
131 | .Fn l64a | ||
132 | functions conform to | ||
133 | .St -xpg4.2 . | ||
diff --git a/src/lib/libc/stdlib/a64l.c b/src/lib/libc/stdlib/a64l.c index 03fc77e034..518bdb64f9 100644 --- a/src/lib/libc/stdlib/a64l.c +++ b/src/lib/libc/stdlib/a64l.c | |||
@@ -4,31 +4,42 @@ | |||
4 | */ | 4 | */ |
5 | 5 | ||
6 | #if defined(LIBC_SCCS) && !defined(lint) | 6 | #if defined(LIBC_SCCS) && !defined(lint) |
7 | static char *rcsid = "$NetBSD: a64l.c,v 1.3 1995/05/11 23:04:47 jtc Exp $"; | 7 | static char *rcsid = "$OpenBSD: a64l.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; |
8 | #endif | 8 | #endif /* LIBC_SCCS and not lint */ |
9 | |||
10 | #include <errno.h> | ||
11 | #include <stdlib.h> | ||
9 | 12 | ||
10 | long | 13 | long |
11 | a64l(s) | 14 | a64l(const char *s) |
12 | const char *s; | ||
13 | { | 15 | { |
14 | long value, digit, shift; | 16 | long value, digit, shift; |
15 | int i; | 17 | int i; |
16 | 18 | ||
19 | if (s == NULL) { | ||
20 | errno = EINVAL; | ||
21 | return(-1L); | ||
22 | } | ||
23 | |||
17 | value = 0; | 24 | value = 0; |
18 | shift = 0; | 25 | shift = 0; |
19 | for (i = 0; *s && i < 6; i++, s++) { | 26 | for (i = 0; *s && i < 6; i++, s++) { |
20 | if (*s <= '/') | 27 | if (*s >= '.' && *s <= '/') |
21 | digit = *s - '.'; | 28 | digit = *s - '.'; |
22 | else if (*s <= '9') | 29 | else if (*s >= '0' && *s <= '9') |
23 | digit = *s - '0' + 2; | 30 | digit = *s - '0' + 2; |
24 | else if (*s <= 'Z') | 31 | else if (*s >= 'A' && *s <= 'Z') |
25 | digit = *s - 'A' + 12; | 32 | digit = *s - 'A' + 12; |
26 | else | 33 | else if (*s >= 'a' && *s <= 'z') |
27 | digit = *s - 'a' + 38; | 34 | digit = *s - 'a' + 38; |
35 | else { | ||
36 | errno = EINVAL; | ||
37 | return(-1L); | ||
38 | } | ||
28 | 39 | ||
29 | value |= digit << shift; | 40 | value |= digit << shift; |
30 | shift += 6; | 41 | shift += 6; |
31 | } | 42 | } |
32 | 43 | ||
33 | return (long) value; | 44 | return(value); |
34 | } | 45 | } |
diff --git a/src/lib/libc/stdlib/abort.3 b/src/lib/libc/stdlib/abort.3 index ab57327585..d411b859eb 100644 --- a/src/lib/libc/stdlib/abort.3 +++ b/src/lib/libc/stdlib/abort.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,8 +29,7 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)abort.3 6.7 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: abort.3,v 1.7 2003/06/02 20:18:37 millert Exp $ |
37 | .\" $Id: abort.3,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
40 | .Dt ABORT 3 | 35 | .Dt ABORT 3 |
@@ -49,23 +44,20 @@ | |||
49 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION |
50 | The | 45 | The |
51 | .Fn abort | 46 | .Fn abort |
52 | function causes abnormal program termination to occur, unless the | 47 | function causes abnormal program termination to occur, unless the signal |
53 | signal | ||
54 | .Dv SIGABRT | 48 | .Dv SIGABRT |
55 | is being caught and the signal handler does not return. | 49 | is being caught and the signal handler does not return. |
56 | .Pp | 50 | .Pp |
57 | No open streams are closed or flushed. | 51 | Any open streams are flushed and closed. |
58 | .Sh RETURN VALUES | 52 | .Sh RETURN VALUES |
59 | The | 53 | The |
60 | .Nm abort | 54 | .Fn abort |
61 | function | 55 | function never returns. |
62 | never returns. | ||
63 | .Sh SEE ALSO | 56 | .Sh SEE ALSO |
64 | .Xr sigaction 2 , | 57 | .Xr sigaction 2 , |
65 | .Xr exit 2 | 58 | .Xr exit 3 |
66 | .Sh STANDARDS | 59 | .Sh STANDARDS |
67 | The | 60 | The |
68 | .Fn abort | 61 | .Fn abort |
69 | function | 62 | function conforms to |
70 | conforms to | 63 | .St -p1003.1-90 . |
71 | .St -ansiC . | ||
diff --git a/src/lib/libc/stdlib/abort.c b/src/lib/libc/stdlib/abort.c index c298e016b4..2430c124f9 100644 --- a/src/lib/libc/stdlib/abort.c +++ b/src/lib/libc/stdlib/abort.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,26 +28,43 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)abort.c 5.11 (Berkeley) 2/23/91";*/ | 31 | static char *rcsid = "$OpenBSD: abort.c,v 1.13 2004/01/20 19:35:17 millert Exp $"; |
36 | static char *rcsid = "$Id: abort.c,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <signal.h> | 34 | #include <signal.h> |
40 | #include <stdlib.h> | 35 | #include <stdlib.h> |
41 | #include <unistd.h> | 36 | #include <unistd.h> |
37 | #include "thread_private.h" | ||
38 | #include "atexit.h" | ||
42 | 39 | ||
43 | void | 40 | void |
44 | abort() | 41 | abort(void) |
45 | { | 42 | { |
43 | struct atexit *p = __atexit; | ||
44 | static int cleanup_called = 0; | ||
46 | sigset_t mask; | 45 | sigset_t mask; |
47 | 46 | ||
47 | |||
48 | sigfillset(&mask); | 48 | sigfillset(&mask); |
49 | /* | 49 | /* |
50 | * don't block SIGABRT to give any handler a chance; we ignore | 50 | * don't block SIGABRT to give any handler a chance; we ignore |
51 | * any errors -- X311J doesn't allow abort to return anyway. | 51 | * any errors -- X311J doesn't allow abort to return anyway. |
52 | */ | 52 | */ |
53 | sigdelset(&mask, SIGABRT); | 53 | sigdelset(&mask, SIGABRT); |
54 | (void)sigprocmask(SIG_SETMASK, &mask, (sigset_t *)NULL); | 54 | (void)_thread_sys_sigprocmask(SIG_SETMASK, &mask, (sigset_t *)NULL); |
55 | |||
56 | /* | ||
57 | * POSIX requires we flush stdio buffers on abort | ||
58 | */ | ||
59 | if (cleanup_called == 0) { | ||
60 | while (p != NULL && p->next != NULL) | ||
61 | p = p->next; | ||
62 | if (p != NULL && p->fns[0] != NULL) { | ||
63 | cleanup_called = 1; | ||
64 | (*p->fns[0])(); | ||
65 | } | ||
66 | } | ||
67 | |||
55 | (void)kill(getpid(), SIGABRT); | 68 | (void)kill(getpid(), SIGABRT); |
56 | 69 | ||
57 | /* | 70 | /* |
@@ -59,7 +72,7 @@ abort() | |||
59 | * it again, only harder. | 72 | * it again, only harder. |
60 | */ | 73 | */ |
61 | (void)signal(SIGABRT, SIG_DFL); | 74 | (void)signal(SIGABRT, SIG_DFL); |
62 | (void)sigprocmask(SIG_SETMASK, &mask, (sigset_t *)NULL); | 75 | (void)_thread_sys_sigprocmask(SIG_SETMASK, &mask, (sigset_t *)NULL); |
63 | (void)kill(getpid(), SIGABRT); | 76 | (void)kill(getpid(), SIGABRT); |
64 | exit(1); | 77 | _exit(1); |
65 | } | 78 | } |
diff --git a/src/lib/libc/stdlib/abs.3 b/src/lib/libc/stdlib/abs.3 index 4748d89e77..f0a6b8a23a 100644 --- a/src/lib/libc/stdlib/abs.3 +++ b/src/lib/libc/stdlib/abs.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,8 +29,7 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)abs.3 6.4 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: abs.3,v 1.6 2003/06/02 20:18:37 millert Exp $ |
37 | .\" $Id: abs.3,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
40 | .Dt ABS 3 | 35 | .Dt ABS 3 |
@@ -49,21 +44,17 @@ | |||
49 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION |
50 | The | 45 | The |
51 | .Fn abs | 46 | .Fn abs |
52 | function | 47 | function computes the absolute value of the integer |
53 | computes | 48 | .Fa j . |
54 | the absolute value of the integer | ||
55 | .Ar j . | ||
56 | .Sh RETURN VALUES | 49 | .Sh RETURN VALUES |
57 | The | 50 | The |
58 | .Fn abs | 51 | .Fn abs |
59 | function | 52 | function returns the absolute value. |
60 | returns | ||
61 | the absolute value. | ||
62 | .Sh SEE ALSO | 53 | .Sh SEE ALSO |
63 | .Xr floor 3 , | ||
64 | .Xr labs 3 , | ||
65 | .Xr cabs 3 , | 54 | .Xr cabs 3 , |
55 | .Xr floor 3 , | ||
66 | .Xr hypot 3 , | 56 | .Xr hypot 3 , |
57 | .Xr labs 3 , | ||
67 | .Xr math 3 | 58 | .Xr math 3 |
68 | .Sh STANDARDS | 59 | .Sh STANDARDS |
69 | The | 60 | The |
diff --git a/src/lib/libc/stdlib/abs.c b/src/lib/libc/stdlib/abs.c index 64468e0224..a471ab3a1e 100644 --- a/src/lib/libc/stdlib/abs.c +++ b/src/lib/libc/stdlib/abs.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,15 +28,13 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)abs.c 5.2 (Berkeley) 5/17/90";*/ | 31 | static char *rcsid = "$OpenBSD: abs.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: abs.c,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <stdlib.h> | 34 | #include <stdlib.h> |
40 | 35 | ||
41 | int | 36 | int |
42 | abs(j) | 37 | abs(int j) |
43 | int j; | ||
44 | { | 38 | { |
45 | return(j < 0 ? -j : j); | 39 | return(j < 0 ? -j : j); |
46 | } | 40 | } |
diff --git a/src/lib/libc/stdlib/alloca.3 b/src/lib/libc/stdlib/alloca.3 index dcb97ab11c..4136dc405c 100644 --- a/src/lib/libc/stdlib/alloca.3 +++ b/src/lib/libc/stdlib/alloca.3 | |||
@@ -9,11 +9,7 @@ | |||
9 | .\" 2. Redistributions in binary form must reproduce the above copyright | 9 | .\" 2. Redistributions in binary form must reproduce the above copyright |
10 | .\" notice, this list of conditions and the following disclaimer in the | 10 | .\" notice, this list of conditions and the following disclaimer in the |
11 | .\" documentation and/or other materials provided with the distribution. | 11 | .\" documentation and/or other materials provided with the distribution. |
12 | .\" 3. All advertising materials mentioning features or use of this software | 12 | .\" 3. Neither the name of the University nor the names of its contributors |
13 | .\" must display the following acknowledgement: | ||
14 | .\" This product includes software developed by the University of | ||
15 | .\" California, Berkeley and its contributors. | ||
16 | .\" 4. 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 | 13 | .\" may be used to endorse or promote products derived from this software |
18 | .\" without specific prior written permission. | 14 | .\" without specific prior written permission. |
19 | .\" | 15 | .\" |
@@ -29,12 +25,11 @@ | |||
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 25 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
30 | .\" SUCH DAMAGE. | 26 | .\" SUCH DAMAGE. |
31 | .\" | 27 | .\" |
32 | .\" from: @(#)alloca.3 5.1 (Berkeley) 5/2/91 | 28 | .\" $OpenBSD: alloca.3,v 1.10 2003/06/02 20:18:37 millert Exp $ |
33 | .\" $Id: alloca.3,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $ | ||
34 | .\" | 29 | .\" |
35 | .Dd May 2, 1991 | 30 | .Dd May 2, 1991 |
36 | .Dt ALLOCA 3 | 31 | .Dt ALLOCA 3 |
37 | .Os BSD 4 | 32 | .Os |
38 | .Sh NAME | 33 | .Sh NAME |
39 | .Nm alloca | 34 | .Nm alloca |
40 | .Nd memory allocator | 35 | .Nd memory allocator |
@@ -45,35 +40,41 @@ | |||
45 | .Sh DESCRIPTION | 40 | .Sh DESCRIPTION |
46 | The | 41 | The |
47 | .Fn alloca | 42 | .Fn alloca |
48 | function | 43 | function allocates |
49 | allocates | ||
50 | .Fa size | 44 | .Fa size |
51 | bytes of space in the stack frame of the caller. | 45 | bytes of space in the stack frame of the caller. |
52 | This temporary space is automatically freed on | 46 | This temporary space is automatically freed on return. |
53 | return. | ||
54 | .Sh RETURN VALUES | 47 | .Sh RETURN VALUES |
55 | The | 48 | The |
56 | .Fn alloca | 49 | .Fn alloca |
57 | function returns a pointer to the beginning of the allocated space. | 50 | function returns a pointer to the beginning of the allocated space. |
58 | If the allocation failed, a | ||
59 | .Dv NULL | ||
60 | pointer is returned. | ||
61 | .Sh SEE ALSO | 51 | .Sh SEE ALSO |
52 | .Xr pagesize 1 , | ||
62 | .Xr brk 2 , | 53 | .Xr brk 2 , |
63 | .Xr pagesize 2 | ||
64 | .Xr calloc 3 , | 54 | .Xr calloc 3 , |
65 | .Xr malloc 3 , | 55 | .Xr malloc 3 , |
66 | .Xr realloc 3 , | 56 | .Xr realloc 3 |
67 | .Sh BUGS | 57 | .Sh BUGS |
68 | The | 58 | The |
69 | .Fn alloca | 59 | .Fn alloca |
70 | function | 60 | function is machine dependent; its use is discouraged. |
71 | is machine dependent; its use is discouraged. | ||
72 | .\" .Sh HISTORY | 61 | .\" .Sh HISTORY |
73 | .\" The | 62 | .\" The |
74 | .\" .Fn alloca | 63 | .\" .Fn alloca |
75 | .\" function appeared in | 64 | .\" function appeared in |
76 | .\" .Bx ?? . | 65 | .\" .Bx ?? . |
77 | .\" The function appeared in 32v, pwb and pwb.2 and in 3bsd 4bsd | 66 | .\" The function appeared in 32v, pwb and pwb.2 and in 3bsd 4bsd |
78 | .\" The first man page (or link to a man page that I can find at the | 67 | .\" The first man page (or link to a man page that I can find at the |
79 | .\" moment is 4.3... | 68 | .\" moment is 4.3... |
69 | .Pp | ||
70 | The | ||
71 | .Fn alloca | ||
72 | function is slightly unsafe because it cannot ensure that the pointer | ||
73 | returned points to a valid and usable block of memory. | ||
74 | The allocation made may exceed the bounds of the stack, or even go | ||
75 | further into other objects in memory, and | ||
76 | .Fn alloca | ||
77 | cannot determine such an error. | ||
78 | Avoid | ||
79 | .Fn alloca | ||
80 | with large unbounded allocations. | ||
diff --git a/src/lib/libc/stdlib/atexit.3 b/src/lib/libc/stdlib/atexit.3 index 07de054d3c..c8d4ce63d5 100644 --- a/src/lib/libc/stdlib/atexit.3 +++ b/src/lib/libc/stdlib/atexit.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,8 +29,7 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)atexit.3 5.3 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: atexit.3,v 1.5 2003/06/02 20:18:37 millert Exp $ |
37 | .\" $Id: atexit.3,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
40 | .Dt ATEXIT 3 | 35 | .Dt ATEXIT 3 |
@@ -49,13 +44,12 @@ | |||
49 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION |
50 | The | 45 | The |
51 | .Fn atexit | 46 | .Fn atexit |
52 | function | 47 | function registers the given |
53 | registers the given | 48 | .Fa function |
54 | .Ar function | ||
55 | to be called at program exit, whether via | 49 | to be called at program exit, whether via |
56 | .Xr exit 3 | 50 | .Xr exit 3 |
57 | or via return from the program's | 51 | or via return from the program's |
58 | .Em main . | 52 | .Fn main . |
59 | Functions so registered are called in reverse order; | 53 | Functions so registered are called in reverse order; |
60 | no arguments are passed. | 54 | no arguments are passed. |
61 | At least 32 functions can always be registered, | 55 | At least 32 functions can always be registered, |
@@ -73,6 +67,5 @@ The existing list of functions is unmodified. | |||
73 | .Sh STANDARDS | 67 | .Sh STANDARDS |
74 | The | 68 | The |
75 | .Fn atexit | 69 | .Fn atexit |
76 | function | 70 | function conforms to |
77 | conforms to | ||
78 | .St -ansiC . | 71 | .St -ansiC . |
diff --git a/src/lib/libc/stdlib/atexit.c b/src/lib/libc/stdlib/atexit.c index 4da1eb0d9c..4fd2c57318 100644 --- a/src/lib/libc/stdlib/atexit.c +++ b/src/lib/libc/stdlib/atexit.c | |||
@@ -1,68 +1,133 @@ | |||
1 | /*- | 1 | /* |
2 | * Copyright (c) 1990 The Regents of the University of California. | 2 | * Copyright (c) 2002 Daniel Hartmeier |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
5 | * This code is derived from software contributed to Berkeley by | ||
6 | * Chris Torek. | ||
7 | * | ||
8 | * Redistribution and use in source and binary forms, with or without | 5 | * Redistribution and use in source and binary forms, with or without |
9 | * modification, are permitted provided that the following conditions | 6 | * modification, are permitted provided that the following conditions |
10 | * are met: | 7 | * 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 the University of | ||
19 | * California, Berkeley and its contributors. | ||
20 | * 4. Neither the name of the University nor the names of its contributors | ||
21 | * may be used to endorse or promote products derived from this software | ||
22 | * without specific prior written permission. | ||
23 | * | 8 | * |
24 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 9 | * - Redistributions of source code must retain the above copyright |
25 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 10 | * notice, this list of conditions and the following disclaimer. |
26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 11 | * - Redistributions in binary form must reproduce the above |
27 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 12 | * copyright notice, this list of conditions and the following |
28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 13 | * disclaimer in the documentation and/or other materials provided |
29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 14 | * with the distribution. |
30 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 15 | * |
31 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
32 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 17 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
33 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 18 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
34 | * SUCH DAMAGE. | 19 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
20 | * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
22 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
23 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
24 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
25 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
26 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
27 | * POSSIBILITY OF SUCH DAMAGE. | ||
28 | * | ||
35 | */ | 29 | */ |
36 | 30 | ||
37 | #if defined(LIBC_SCCS) && !defined(lint) | 31 | #if defined(LIBC_SCCS) && !defined(lint) |
38 | /*static char *sccsid = "from: @(#)atexit.c 5.2 (Berkeley) 11/14/90";*/ | 32 | static char *rcsid = "$OpenBSD: atexit.c,v 1.8 2005/03/30 18:51:49 pat Exp $"; |
39 | static char *rcsid = "$Id: atexit.c,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $"; | ||
40 | #endif /* LIBC_SCCS and not lint */ | 33 | #endif /* LIBC_SCCS and not lint */ |
41 | 34 | ||
35 | #include <sys/types.h> | ||
36 | #include <sys/mman.h> | ||
42 | #include <stdlib.h> | 37 | #include <stdlib.h> |
38 | #include <unistd.h> | ||
43 | #include "atexit.h" | 39 | #include "atexit.h" |
44 | 40 | ||
41 | int __atexit_invalid = 1; | ||
45 | struct atexit *__atexit; | 42 | struct atexit *__atexit; |
46 | 43 | ||
47 | /* | 44 | /* |
45 | * Function pointers are stored in a linked list of pages. The list | ||
46 | * is initially empty, and pages are allocated on demand. The first | ||
47 | * function pointer in the first allocated page (the last one in | ||
48 | * the linked list) is reserved for the cleanup function. | ||
49 | * | ||
50 | * Outside the following two functions, all pages are mprotect()'ed | ||
51 | * to prevent unintentional/malicious corruption. | ||
52 | * | ||
53 | * The free(malloc(1)) is a workaround causing malloc_init() to | ||
54 | * ensure that malloc.c gets the first mmap() call for its sbrk() | ||
55 | * games. | ||
56 | */ | ||
57 | |||
58 | /* | ||
48 | * Register a function to be performed at exit. | 59 | * Register a function to be performed at exit. |
49 | */ | 60 | */ |
50 | int | 61 | int |
51 | atexit(fn) | 62 | atexit(void (*fn)(void)) |
52 | void (*fn)(); | ||
53 | { | 63 | { |
54 | static struct atexit __atexit0; /* one guaranteed table */ | 64 | struct atexit *p = __atexit; |
55 | register struct atexit *p; | 65 | int pgsize = getpagesize(); |
56 | 66 | ||
57 | if ((p = __atexit) == NULL) | 67 | if (pgsize < sizeof(*p)) |
58 | __atexit = p = &__atexit0; | 68 | return (-1); |
59 | else if (p->ind >= ATEXIT_SIZE) { | 69 | if (p != NULL) { |
60 | if ((p = malloc(sizeof(*p))) == NULL) | 70 | if (p->ind + 1 >= p->max) |
71 | p = NULL; | ||
72 | else if (mprotect(p, pgsize, PROT_READ | PROT_WRITE)) | ||
61 | return (-1); | 73 | return (-1); |
62 | p->ind = 0; | 74 | } |
75 | if (p == NULL) { | ||
76 | if (__atexit_invalid) { | ||
77 | free(malloc(1)); | ||
78 | __atexit_invalid = 0; | ||
79 | } | ||
80 | p = mmap(NULL, pgsize, PROT_READ | PROT_WRITE, | ||
81 | MAP_ANON | MAP_PRIVATE, -1, 0); | ||
82 | if (p == MAP_FAILED) | ||
83 | return (-1); | ||
84 | if (__atexit == NULL) { | ||
85 | p->fns[0] = NULL; | ||
86 | p->ind = 1; | ||
87 | } else | ||
88 | p->ind = 0; | ||
89 | p->max = (pgsize - ((char *)&p->fns[0] - (char *)p)) / | ||
90 | sizeof(p->fns[0]); | ||
63 | p->next = __atexit; | 91 | p->next = __atexit; |
64 | __atexit = p; | 92 | __atexit = p; |
65 | } | 93 | } |
66 | p->fns[p->ind++] = fn; | 94 | p->fns[p->ind++] = fn; |
95 | if (mprotect(p, pgsize, PROT_READ)) | ||
96 | return (-1); | ||
67 | return (0); | 97 | return (0); |
68 | } | 98 | } |
99 | |||
100 | /* | ||
101 | * Register the cleanup function | ||
102 | */ | ||
103 | void | ||
104 | __atexit_register_cleanup(void (*fn)(void)) | ||
105 | { | ||
106 | struct atexit *p = __atexit; | ||
107 | int pgsize = getpagesize(); | ||
108 | |||
109 | if (pgsize < sizeof(*p)) | ||
110 | return; | ||
111 | while (p != NULL && p->next != NULL) | ||
112 | p = p->next; | ||
113 | if (p == NULL) { | ||
114 | if (__atexit_invalid) { | ||
115 | free(malloc(1)); | ||
116 | __atexit_invalid = 0; | ||
117 | } | ||
118 | p = mmap(NULL, pgsize, PROT_READ | PROT_WRITE, | ||
119 | MAP_ANON | MAP_PRIVATE, -1, 0); | ||
120 | if (p == MAP_FAILED) | ||
121 | return; | ||
122 | p->ind = 1; | ||
123 | p->max = (pgsize - ((char *)&p->fns[0] - (char *)p)) / | ||
124 | sizeof(p->fns[0]); | ||
125 | p->next = NULL; | ||
126 | __atexit = p; | ||
127 | } else { | ||
128 | if (mprotect(p, pgsize, PROT_READ | PROT_WRITE)) | ||
129 | return; | ||
130 | } | ||
131 | p->fns[0] = fn; | ||
132 | mprotect(p, pgsize, PROT_READ); | ||
133 | } | ||
diff --git a/src/lib/libc/stdlib/atexit.h b/src/lib/libc/stdlib/atexit.h index 8b756e8fe2..21b0c2e532 100644 --- a/src/lib/libc/stdlib/atexit.h +++ b/src/lib/libc/stdlib/atexit.h | |||
@@ -1,46 +1,41 @@ | |||
1 | /*- | 1 | /* $OpenBSD: atexit.h,v 1.6 2003/07/31 07:08:42 deraadt Exp $ */ |
2 | * Copyright (c) 1990 The Regents of the University of California. | 2 | |
3 | /* | ||
4 | * Copyright (c) 2002 Daniel Hartmeier | ||
3 | * All rights reserved. | 5 | * All rights reserved. |
4 | * | 6 | * |
5 | * Redistribution and use in source and binary forms, with or without | 7 | * Redistribution and use in source and binary forms, with or without |
6 | * modification, are permitted provided that the following conditions | 8 | * modification, are permitted provided that the following conditions |
7 | * are met: | 9 | * are met: |
8 | * 1. Redistributions of source code must retain the above copyright | ||
9 | * notice, this list of conditions and the following disclaimer. | ||
10 | * 2. Redistributions in binary form must reproduce the above copyright | ||
11 | * notice, this list of conditions and the following disclaimer in the | ||
12 | * documentation and/or other materials provided with the distribution. | ||
13 | * 3. All advertising materials mentioning features or use of this software | ||
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | ||
19 | * without specific prior written permission. | ||
20 | * | 10 | * |
21 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 11 | * - Redistributions of source code must retain the above copyright |
22 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 12 | * notice, this list of conditions and the following disclaimer. |
23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 13 | * - Redistributions in binary form must reproduce the above |
24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 14 | * copyright notice, this list of conditions and the following |
25 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 15 | * disclaimer in the documentation and/or other materials provided |
26 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 16 | * with the distribution. |
27 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 17 | * |
28 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
29 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 19 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
30 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 20 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
31 | * SUCH DAMAGE. | 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. | ||
32 | * | 30 | * |
33 | * from: @(#)atexit.h 5.1 (Berkeley) 5/15/90 | ||
34 | * $Id: atexit.h,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $ | ||
35 | */ | 31 | */ |
36 | 32 | ||
37 | /* must be at least 32 to guarantee ANSI conformance */ | ||
38 | #define ATEXIT_SIZE 32 | ||
39 | |||
40 | struct atexit { | 33 | struct atexit { |
41 | struct atexit *next; /* next in list */ | 34 | struct atexit *next; /* next in list */ |
42 | int ind; /* next index in this table */ | 35 | int ind; /* next index in this table */ |
43 | void (*fns[ATEXIT_SIZE])(); /* the table itself */ | 36 | int max; /* max entries >= ATEXIT_SIZE */ |
37 | void (*fns[1])(void); /* the table itself */ | ||
44 | }; | 38 | }; |
45 | 39 | ||
40 | extern int __atexit_invalid; | ||
46 | extern struct atexit *__atexit; /* points to head of LIFO stack */ | 41 | extern struct atexit *__atexit; /* points to head of LIFO stack */ |
diff --git a/src/lib/libc/stdlib/atof.3 b/src/lib/libc/stdlib/atof.3 index 53e04f71c5..c60b9e9fd7 100644 --- a/src/lib/libc/stdlib/atof.3 +++ b/src/lib/libc/stdlib/atof.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,8 +29,7 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)atof.3 6.4 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: atof.3,v 1.4 2003/06/02 20:18:37 millert Exp $ |
37 | .\" $Id: atof.3,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
40 | .Dt ATOF 3 | 35 | .Dt ATOF 3 |
@@ -52,9 +47,9 @@ string to double | |||
52 | The | 47 | The |
53 | .Fn atof | 48 | .Fn atof |
54 | function converts the initial portion of the string pointed to by | 49 | function converts the initial portion of the string pointed to by |
55 | .Ar nptr | 50 | .Fa nptr |
56 | to | 51 | to |
57 | .Ar double | 52 | .Li double |
58 | representation. | 53 | representation. |
59 | .Pp | 54 | .Pp |
60 | It is equivalent to: | 55 | It is equivalent to: |
diff --git a/src/lib/libc/stdlib/atof.c b/src/lib/libc/stdlib/atof.c index 9202de50bb..2724530231 100644 --- a/src/lib/libc/stdlib/atof.c +++ b/src/lib/libc/stdlib/atof.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,15 +28,13 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)atof.c 5.3 (Berkeley) 1/8/93";*/ | 31 | static char *rcsid = "$OpenBSD: atof.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: atof.c,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <stdlib.h> | 34 | #include <stdlib.h> |
40 | 35 | ||
41 | double | 36 | double |
42 | atof(ascii) | 37 | atof(const char *ascii) |
43 | const char *ascii; | ||
44 | { | 38 | { |
45 | return(strtod(ascii, (char **)NULL)); | 39 | return(strtod(ascii, (char **)NULL)); |
46 | } | 40 | } |
diff --git a/src/lib/libc/stdlib/atoi.3 b/src/lib/libc/stdlib/atoi.3 index 219ba73c00..dee8b637a3 100644 --- a/src/lib/libc/stdlib/atoi.3 +++ b/src/lib/libc/stdlib/atoi.3 | |||
@@ -1,5 +1,5 @@ | |||
1 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 1 | .\" Copyright (c) 1990, 1991, 1993 |
2 | .\" All rights reserved. | 2 | .\" The Regents of the University of California. All rights reserved. |
3 | .\" | 3 | .\" |
4 | .\" This code is derived from software contributed to Berkeley by | 4 | .\" This code is derived from software contributed to Berkeley by |
5 | .\" the American National Standards Committee X3, on Information | 5 | .\" the American National Standards Committee X3, on Information |
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,10 +29,9 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)atoi.3 5.3 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: atoi.3,v 1.8 2004/08/22 21:47:41 jaredy Exp $ |
37 | .\" $Id: atoi.3,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd June 4, 1993 |
40 | .Dt ATOI 3 | 35 | .Dt ATOI 3 |
41 | .Os | 36 | .Os |
42 | .Sh NAME | 37 | .Sh NAME |
@@ -52,13 +47,12 @@ string to integer | |||
52 | The | 47 | The |
53 | .Fn atoi | 48 | .Fn atoi |
54 | function converts the initial portion of the string pointed to by | 49 | function converts the initial portion of the string pointed to by |
55 | .Em nptr | 50 | .Fa nptr |
56 | to | 51 | to |
57 | .Em integer | 52 | .Li integer |
58 | representation. | 53 | representation. |
59 | .Pp | 54 | .Pp |
60 | It is equivalent to: | 55 | It is equivalent to: |
61 | .Pp | ||
62 | .Bd -literal -offset indent | 56 | .Bd -literal -offset indent |
63 | (int)strtol(nptr, (char **)NULL, 10); | 57 | (int)strtol(nptr, (char **)NULL, 10); |
64 | .Ed | 58 | .Ed |
@@ -67,9 +61,26 @@ It is equivalent to: | |||
67 | .Xr atol 3 , | 61 | .Xr atol 3 , |
68 | .Xr strtod 3 , | 62 | .Xr strtod 3 , |
69 | .Xr strtol 3 , | 63 | .Xr strtol 3 , |
64 | .Xr strtonum 3 , | ||
70 | .Xr strtoul 3 | 65 | .Xr strtoul 3 |
71 | .Sh STANDARDS | 66 | .Sh STANDARDS |
72 | The | 67 | The |
73 | .Fn atoi | 68 | .Fn atoi |
74 | function conforms to | 69 | function conforms to |
75 | .St -ansiC . | 70 | .St -ansiC . |
71 | .Sh CAVEATS | ||
72 | .Nm | ||
73 | does no overflow checking, handles unsigned numbers poorly, | ||
74 | and handles strings containing trailing extra characters | ||
75 | (like | ||
76 | .Dq "123abc" ) | ||
77 | poorly. | ||
78 | Careful use of | ||
79 | .Xr strtol 3 | ||
80 | and | ||
81 | .Xr strtoul 3 | ||
82 | can alleviate these problems, | ||
83 | but | ||
84 | .Xr strtonum 3 | ||
85 | can be used to convert numbers from strings much more safely | ||
86 | and easily. | ||
diff --git a/src/lib/libc/stdlib/atoi.c b/src/lib/libc/stdlib/atoi.c index df7845f90c..ea821ced3d 100644 --- a/src/lib/libc/stdlib/atoi.c +++ b/src/lib/libc/stdlib/atoi.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,15 +28,13 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)atoi.c 5.7 (Berkeley) 2/23/91";*/ | 31 | static char *rcsid = "$OpenBSD: atoi.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: atoi.c,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <stdlib.h> | 34 | #include <stdlib.h> |
40 | 35 | ||
41 | int | 36 | int |
42 | atoi(str) | 37 | atoi(const char *str) |
43 | const char *str; | ||
44 | { | 38 | { |
45 | return((int)strtol(str, (char **)NULL, 10)); | 39 | return((int)strtol(str, (char **)NULL, 10)); |
46 | } | 40 | } |
diff --git a/src/lib/libc/stdlib/atol.3 b/src/lib/libc/stdlib/atol.3 index 86e3d324a3..80e54c892d 100644 --- a/src/lib/libc/stdlib/atol.3 +++ b/src/lib/libc/stdlib/atol.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,8 +29,7 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)atol.3 5.3 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: atol.3,v 1.6 2003/06/02 20:18:37 millert Exp $ |
37 | .\" $Id: atol.3,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
40 | .Dt ATOL 3 | 35 | .Dt ATOL 3 |
@@ -52,9 +47,9 @@ string to long integer | |||
52 | The | 47 | The |
53 | .Fn atol | 48 | .Fn atol |
54 | function converts the initial portion of the string pointed to by | 49 | function converts the initial portion of the string pointed to by |
55 | .Ar nptr | 50 | .Fa nptr |
56 | to | 51 | to |
57 | .Em long integer | 52 | .Li long integer |
58 | representation. | 53 | representation. |
59 | .Pp | 54 | .Pp |
60 | It is equivalent to: | 55 | It is equivalent to: |
@@ -64,12 +59,12 @@ strtol(nptr, (char **)NULL, 10); | |||
64 | .Sh SEE ALSO | 59 | .Sh SEE ALSO |
65 | .Xr atof 3 , | 60 | .Xr atof 3 , |
66 | .Xr atoi 3 , | 61 | .Xr atoi 3 , |
62 | .Xr atoll 3 , | ||
67 | .Xr strtod 3 , | 63 | .Xr strtod 3 , |
68 | .Xr strtol 3 , | 64 | .Xr strtol 3 , |
69 | .Xr strtoul 3 | 65 | .Xr strtoul 3 |
70 | .Sh STANDARDS | 66 | .Sh STANDARDS |
71 | The | 67 | The |
72 | .Fn atol | 68 | .Fn atol |
73 | function | 69 | function conforms to |
74 | conforms to | 70 | .St -ansiC-99 . |
75 | .St -ansiC . | ||
diff --git a/src/lib/libc/stdlib/atol.c b/src/lib/libc/stdlib/atol.c index 31ed06298b..38236b556c 100644 --- a/src/lib/libc/stdlib/atol.c +++ b/src/lib/libc/stdlib/atol.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,15 +28,13 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)atol.c 5.7 (Berkeley) 2/23/91";*/ | 31 | static char *rcsid = "$OpenBSD: atol.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: atol.c,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <stdlib.h> | 34 | #include <stdlib.h> |
40 | 35 | ||
41 | long | 36 | long |
42 | atol(str) | 37 | atol(const char *str) |
43 | const char *str; | ||
44 | { | 38 | { |
45 | return(strtol(str, (char **)NULL, 10)); | 39 | return(strtol(str, (char **)NULL, 10)); |
46 | } | 40 | } |
diff --git a/src/lib/libc/stdlib/calloc.3 b/src/lib/libc/stdlib/atoll.3 index d0754b46a0..40584e9d47 100644 --- a/src/lib/libc/stdlib/calloc.3 +++ b/src/lib/libc/stdlib/atoll.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" Copyright (c) 1991 The Regents of the University of California. | 1 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. |
2 | .\" All rights reserved. | 2 | .\" All rights reserved. |
3 | .\" | 3 | .\" |
4 | .\" This code is derived from software contributed to Berkeley by | 4 | .\" This code is derived from software contributed to Berkeley by |
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,39 +29,42 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)calloc.3 5.2 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: atoll.3,v 1.3 2003/06/02 20:18:37 millert Exp $ |
37 | .\" $Id: calloc.3,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
40 | .Dt CALLOC 3 | 35 | .Dt ATOLL 3 |
41 | .Os | 36 | .Os |
42 | .Sh NAME | 37 | .Sh NAME |
43 | .Nm calloc | 38 | .Nm atoll |
44 | .Nd allocate clean memory (zero initialized space) | 39 | .Nd convert |
40 | .Tn ASCII | ||
41 | string to long long integer | ||
45 | .Sh SYNOPSIS | 42 | .Sh SYNOPSIS |
46 | .Fd #include <stdlib.h> | 43 | .Fd #include <stdlib.h> |
47 | .Ft void * | 44 | .Ft long long |
48 | .Fn calloc "size_t nmemb" "size_t size" | 45 | .Fn atoll "const char *nptr" |
49 | .Sh DESCRIPTION | 46 | .Sh DESCRIPTION |
50 | The | 47 | The |
51 | .Fn calloc | 48 | .Fn atoll |
52 | function allocates space for an array of | 49 | function converts the initial portion of the string pointed to by |
53 | .Fa nmemb | 50 | .Fa nptr |
54 | objects, each of whose size is | 51 | to |
55 | .Fa size . | 52 | .Li long integer |
56 | The space is initialized to all bits zero. | 53 | representation. |
57 | .Sh RETURN VALUES | 54 | .Pp |
58 | The | 55 | It is equivalent to: |
59 | .Fn calloc | 56 | .Bd -literal -offset indent |
60 | function returns | 57 | strtoll(nptr, (char **)NULL, 10); |
61 | a pointer to the | 58 | .Ed |
62 | the allocated space if successful; otherwise a null pointer is returned. | ||
63 | .Sh SEE ALSO | 59 | .Sh SEE ALSO |
64 | .Xr malloc 3 , | 60 | .Xr atof 3 , |
65 | .Xr realloc 3 , | 61 | .Xr atoi 3 , |
66 | .Xr free 3 | 62 | .Xr atol 3 , |
63 | .Xr strtod 3 , | ||
64 | .Xr strtol 3 , | ||
65 | .Xr strtoul 3 | ||
67 | .Sh STANDARDS | 66 | .Sh STANDARDS |
68 | The | 67 | The |
69 | .Fn calloc | 68 | .Fn atoll |
70 | function conforms to | 69 | function conforms to |
71 | .St -ansiC . | 70 | .St -ansiC-99 . |
diff --git a/src/lib/libc/stdlib/atoll.c b/src/lib/libc/stdlib/atoll.c new file mode 100644 index 0000000000..6786b62e1a --- /dev/null +++ b/src/lib/libc/stdlib/atoll.c | |||
@@ -0,0 +1,41 @@ | |||
1 | /* | ||
2 | * Copyright (c) 1988 Regents of the University of California. | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions | ||
7 | * are met: | ||
8 | * 1. Redistributions of source code must retain the above copyright | ||
9 | * notice, this list of conditions and the following disclaimer. | ||
10 | * 2. Redistributions in binary form must reproduce the above copyright | ||
11 | * notice, this list of conditions and the following disclaimer in the | ||
12 | * documentation and/or other materials provided with the distribution. | ||
13 | * 3. Neither the name of the University nor the names of its contributors | ||
14 | * may be used to endorse or promote products derived from this software | ||
15 | * without specific prior written permission. | ||
16 | * | ||
17 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | ||
18 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
19 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
20 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | ||
21 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
22 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
23 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
24 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
25 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
26 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
27 | * SUCH DAMAGE. | ||
28 | */ | ||
29 | |||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: atoll.c,v 1.2 2003/06/02 20:18:37 millert Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <stdlib.h> | ||
35 | |||
36 | long long | ||
37 | atoll(str) | ||
38 | const char *str; | ||
39 | { | ||
40 | return(strtoll(str, (char **)NULL, 10)); | ||
41 | } | ||
diff --git a/src/lib/libc/stdlib/bsearch.3 b/src/lib/libc/stdlib/bsearch.3 index 1622c96c6b..d1dd9173db 100644 --- a/src/lib/libc/stdlib/bsearch.3 +++ b/src/lib/libc/stdlib/bsearch.3 | |||
@@ -1,5 +1,5 @@ | |||
1 | .\" Copyright (c) 1990, 1991 The Regents of the University of California. | 1 | .\" Copyright (c) 1990, 1991, 1993, 1994 |
2 | .\" All rights reserved. | 2 | .\" The Regents of the University of California. All rights reserved. |
3 | .\" | 3 | .\" |
4 | .\" This code is derived from software contributed to Berkeley by | 4 | .\" This code is derived from software contributed to Berkeley by |
5 | .\" the American National Standards Committee X3, on Information | 5 | .\" the American National Standards Committee X3, on Information |
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,10 +29,9 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)bsearch.3 5.6 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: bsearch.3,v 1.6 2003/06/02 20:18:37 millert Exp $ |
37 | .\" $Id: bsearch.3,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd April 19, 1994 |
40 | .Dt BSEARCH 3 | 35 | .Dt BSEARCH 3 |
41 | .Os | 36 | .Os |
42 | .Sh NAME | 37 | .Sh NAME |
@@ -51,12 +46,12 @@ The | |||
51 | .Fn bsearch | 46 | .Fn bsearch |
52 | function searches an array of | 47 | function searches an array of |
53 | .Fa nmemb | 48 | .Fa nmemb |
54 | objects, the initial member of which is | 49 | objects, the initial member of which is |
55 | pointed to by | 50 | pointed to by |
56 | .Fa base , | 51 | .Fa base , |
57 | for a member that matches the object pointed to by | 52 | for a member that matches the object pointed to by |
58 | .Fa key . | 53 | .Fa key . |
59 | The size of each member of the array is specified by | 54 | The size of each member of the array is specified by |
60 | .Fa size . | 55 | .Fa size . |
61 | .Pp | 56 | .Pp |
62 | The contents of the array should be in ascending sorted order according | 57 | The contents of the array should be in ascending sorted order according |
@@ -64,9 +59,7 @@ to the comparison function referenced by | |||
64 | .Fa compar . | 59 | .Fa compar . |
65 | The | 60 | The |
66 | .Fa compar | 61 | .Fa compar |
67 | routine | 62 | routine is expected to have two arguments which point to the |
68 | is expected to have two | ||
69 | two arguments which point to the | ||
70 | .Fa key | 63 | .Fa key |
71 | object and to an array member, in that order, and should return an integer | 64 | object and to an array member, in that order, and should return an integer |
72 | less than, equal to, or greater than zero if the | 65 | less than, equal to, or greater than zero if the |
@@ -83,7 +76,7 @@ If two members compare as equal, which member is matched is unspecified. | |||
83 | .Xr db 3 , | 76 | .Xr db 3 , |
84 | .Xr lsearch 3 , | 77 | .Xr lsearch 3 , |
85 | .Xr qsort 3 , | 78 | .Xr qsort 3 , |
86 | .\" .Xr tsearch 3 | 79 | .Xr tsearch 3 |
87 | .Sh STANDARDS | 80 | .Sh STANDARDS |
88 | The | 81 | The |
89 | .Fn bsearch | 82 | .Fn bsearch |
diff --git a/src/lib/libc/stdlib/bsearch.c b/src/lib/libc/stdlib/bsearch.c index fac03f694f..109211da92 100644 --- a/src/lib/libc/stdlib/bsearch.c +++ b/src/lib/libc/stdlib/bsearch.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,8 +28,7 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)bsearch.c 5.4 (Berkeley) 2/23/91";*/ | 31 | static char *rcsid = "$OpenBSD: bsearch.c,v 1.5 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: bsearch.c,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <stdlib.h> | 34 | #include <stdlib.h> |
@@ -55,16 +50,12 @@ static char *rcsid = "$Id: bsearch.c,v 1.1.1.1 1995/10/18 08:42:16 deraadt Exp $ | |||
55 | * look at item 3. | 50 | * look at item 3. |
56 | */ | 51 | */ |
57 | void * | 52 | void * |
58 | bsearch(key, base0, nmemb, size, compar) | 53 | bsearch(const void *key, const void *base0, size_t nmemb, size_t size, |
59 | register const void *key; | 54 | int (*compar)(const void *, const void *)) |
60 | const void *base0; | ||
61 | size_t nmemb; | ||
62 | register size_t size; | ||
63 | register int (*compar) __P((const void *, const void *)); | ||
64 | { | 55 | { |
65 | register const char *base = base0; | 56 | const char *base = base0; |
66 | register int lim, cmp; | 57 | int lim, cmp; |
67 | register const void *p; | 58 | const void *p; |
68 | 59 | ||
69 | for (lim = nmemb; lim != 0; lim >>= 1) { | 60 | for (lim = nmemb; lim != 0; lim >>= 1) { |
70 | p = base + (lim >> 1) * size; | 61 | p = base + (lim >> 1) * size; |
diff --git a/src/lib/libc/stdlib/calloc.c b/src/lib/libc/stdlib/calloc.c index 3353fab052..7aabed235f 100644 --- a/src/lib/libc/stdlib/calloc.c +++ b/src/lib/libc/stdlib/calloc.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,22 +28,26 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)calloc.c 5.6 (Berkeley) 2/23/91";*/ | 31 | static char *rcsid = "$OpenBSD: calloc.c,v 1.9 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: calloc.c,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <stdlib.h> | 34 | #include <stdlib.h> |
40 | #include <string.h> | 35 | #include <string.h> |
36 | #include <limits.h> | ||
37 | #include <errno.h> | ||
41 | 38 | ||
42 | void * | 39 | void * |
43 | calloc(num, size) | 40 | calloc(size_t num, size_t size) |
44 | size_t num; | ||
45 | register size_t size; | ||
46 | { | 41 | { |
47 | register void *p; | 42 | void *p; |
48 | 43 | ||
44 | if (num && size && SIZE_T_MAX / num < size) { | ||
45 | errno = ENOMEM; | ||
46 | return NULL; | ||
47 | } | ||
49 | size *= num; | 48 | size *= num; |
50 | if (p = malloc(size)) | 49 | p = malloc(size); |
51 | memset(p, '\0', size); | 50 | if (p) |
51 | memset(p, 0, size); | ||
52 | return(p); | 52 | return(p); |
53 | } | 53 | } |
diff --git a/src/lib/libc/stdlib/cfree.c b/src/lib/libc/stdlib/cfree.c new file mode 100644 index 0000000000..db1fa56039 --- /dev/null +++ b/src/lib/libc/stdlib/cfree.c | |||
@@ -0,0 +1,44 @@ | |||
1 | /* $OpenBSD: cfree.c,v 1.4 2005/03/30 18:51:49 pat Exp $ */ | ||
2 | |||
3 | /* | ||
4 | * Copyright (c) 1996 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> | ||
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 | * 1. Redistributions of source code must retain the above copyright | ||
11 | * notice, this list of conditions and the following disclaimer. | ||
12 | * 2. Redistributions in binary form must reproduce the above copyright | ||
13 | * notice, this list of conditions and the following disclaimer in the | ||
14 | * documentation and/or other materials provided with the distribution. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, | ||
17 | * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY | ||
18 | * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL | ||
19 | * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
20 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
21 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | ||
22 | * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | ||
23 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | ||
24 | * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | ||
25 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | #if defined(LIBC_SCCS) && !defined(lint) | ||
29 | static char rcsid[] = "$OpenBSD: cfree.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
30 | #endif /* LIBC_SCCS and not lint */ | ||
31 | |||
32 | #include <sys/cdefs.h> | ||
33 | #include <stdlib.h> | ||
34 | |||
35 | #ifdef __indr_reference | ||
36 | __indr_reference(free, cfree); | ||
37 | #else | ||
38 | |||
39 | void | ||
40 | cfree(void *p) | ||
41 | { | ||
42 | free(p); | ||
43 | } | ||
44 | #endif | ||
diff --git a/src/lib/libc/stdlib/div.3 b/src/lib/libc/stdlib/div.3 index a4730694a5..a75614310e 100644 --- a/src/lib/libc/stdlib/div.3 +++ b/src/lib/libc/stdlib/div.3 | |||
@@ -11,11 +11,7 @@ | |||
11 | .\" 2. Redistributions in binary form must reproduce the above copyright | 11 | .\" 2. Redistributions in binary form must reproduce the above copyright |
12 | .\" notice, this list of conditions and the following disclaimer in the | 12 | .\" notice, this list of conditions and the following disclaimer in the |
13 | .\" documentation and/or other materials provided with the distribution. | 13 | .\" documentation and/or other materials provided with the distribution. |
14 | .\" 3. All advertising materials mentioning features or use of this software | 14 | .\" 3. Neither the name of the University nor the names of its contributors |
15 | .\" must display the following acknowledgement: | ||
16 | .\" This product includes software developed by the University of | ||
17 | .\" California, Berkeley and its contributors. | ||
18 | .\" 4. Neither the name of the University nor the names of its contributors | ||
19 | .\" may be used to endorse or promote products derived from this software | 15 | .\" may be used to endorse or promote products derived from this software |
20 | .\" without specific prior written permission. | 16 | .\" without specific prior written permission. |
21 | .\" | 17 | .\" |
@@ -31,8 +27,7 @@ | |||
31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 27 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
32 | .\" SUCH DAMAGE. | 28 | .\" SUCH DAMAGE. |
33 | .\" | 29 | .\" |
34 | .\" from: @(#)div.3 5.2 (Berkeley) 4/19/91 | 30 | .\" $OpenBSD: div.3,v 1.7 2004/01/23 23:08:46 jmc Exp $ |
35 | .\" $Id: div.3,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp $ | ||
36 | .\" | 31 | .\" |
37 | .Dd April 19, 1991 | 32 | .Dd April 19, 1991 |
38 | .Dt DIV 3 | 33 | .Dt DIV 3 |
@@ -47,24 +42,22 @@ | |||
47 | .Sh DESCRIPTION | 42 | .Sh DESCRIPTION |
48 | The | 43 | The |
49 | .Fn div | 44 | .Fn div |
50 | function | 45 | function computes the value |
51 | computes the value | 46 | .Fa num Ns / Ns Fa denom |
52 | .Fa num/denom | ||
53 | and returns the quotient and remainder in a structure named | 47 | and returns the quotient and remainder in a structure named |
54 | .Fa div_t | 48 | .Fa div_t |
55 | that contains two | 49 | that contains two |
56 | .Em int | 50 | .Li int |
57 | members named | 51 | members named |
58 | .Fa quot | 52 | .Fa quot |
59 | and | 53 | and |
60 | .Fa rem . | 54 | .Fa rem . |
61 | .Sh SEE ALSO | 55 | .Sh SEE ALSO |
62 | .Xr ldiv 3 , | 56 | .Xr ldiv 3 , |
63 | .Xr qdiv 3 , | 57 | .Xr math 3 , |
64 | .Xr math 3 | 58 | .Xr qdiv 3 |
65 | .Sh STANDARDS | 59 | .Sh STANDARDS |
66 | The | 60 | The |
67 | .Fn div | 61 | .Fn div |
68 | function | 62 | function conforms to |
69 | conforms to | ||
70 | .St -ansiC . | 63 | .St -ansiC . |
diff --git a/src/lib/libc/stdlib/div.c b/src/lib/libc/stdlib/div.c index 122ac0deec..32c53dff03 100644 --- a/src/lib/libc/stdlib/div.c +++ b/src/lib/libc/stdlib/div.c | |||
@@ -13,11 +13,7 @@ | |||
13 | * 2. Redistributions in binary form must reproduce the above copyright | 13 | * 2. Redistributions in binary form must reproduce the above copyright |
14 | * notice, this list of conditions and the following disclaimer in the | 14 | * notice, this list of conditions and the following disclaimer in the |
15 | * documentation and/or other materials provided with the distribution. | 15 | * documentation and/or other materials provided with the distribution. |
16 | * 3. All advertising materials mentioning features or use of this software | 16 | * 3. Neither the name of the University nor the names of its contributors |
17 | * must display the following acknowledgement: | ||
18 | * This product includes software developed by the University of | ||
19 | * California, Berkeley and its contributors. | ||
20 | * 4. Neither the name of the University nor the names of its contributors | ||
21 | * may be used to endorse or promote products derived from this software | 17 | * may be used to endorse or promote products derived from this software |
22 | * without specific prior written permission. | 18 | * without specific prior written permission. |
23 | * | 19 | * |
@@ -35,15 +31,13 @@ | |||
35 | */ | 31 | */ |
36 | 32 | ||
37 | #if defined(LIBC_SCCS) && !defined(lint) | 33 | #if defined(LIBC_SCCS) && !defined(lint) |
38 | /*static char *sccsid = "from: @(#)div.c 5.2 (Berkeley) 4/16/91";*/ | 34 | static char *rcsid = "$OpenBSD: div.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; |
39 | static char *rcsid = "$Id: div.c,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp $"; | ||
40 | #endif /* LIBC_SCCS and not lint */ | 35 | #endif /* LIBC_SCCS and not lint */ |
41 | 36 | ||
42 | #include <stdlib.h> /* div_t */ | 37 | #include <stdlib.h> /* div_t */ |
43 | 38 | ||
44 | div_t | 39 | div_t |
45 | div(num, denom) | 40 | div(int num, int denom) |
46 | int num, denom; | ||
47 | { | 41 | { |
48 | div_t r; | 42 | div_t r; |
49 | 43 | ||
diff --git a/src/lib/libc/stdlib/drand48.c b/src/lib/libc/stdlib/drand48.c index ae1a8634dc..02886d5b62 100644 --- a/src/lib/libc/stdlib/drand48.c +++ b/src/lib/libc/stdlib/drand48.c | |||
@@ -11,6 +11,10 @@ | |||
11 | * to anyone/anything when using this software. | 11 | * to anyone/anything when using this software. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: drand48.c,v 1.2 1996/08/19 08:33:29 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
14 | #include "rand48.h" | 18 | #include "rand48.h" |
15 | 19 | ||
16 | extern unsigned short __rand48_seed[3]; | 20 | extern unsigned short __rand48_seed[3]; |
diff --git a/src/lib/libc/stdlib/ecvt.3 b/src/lib/libc/stdlib/ecvt.3 new file mode 100644 index 0000000000..689cb1c6f9 --- /dev/null +++ b/src/lib/libc/stdlib/ecvt.3 | |||
@@ -0,0 +1,165 @@ | |||
1 | .\" $OpenBSD: ecvt.3,v 1.7 2004/01/25 14:48:32 jmc Exp $ | ||
2 | .\" | ||
3 | .\" Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> | ||
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 | .\" Sponsored in part by the Defense Advanced Research Projects | ||
18 | .\" Agency (DARPA) and Air Force Research Laboratory, Air Force | ||
19 | .\" Materiel Command, USAF, under agreement number F39502-99-1-0512. | ||
20 | .\" | ||
21 | .Dd December 1, 2002 | ||
22 | .Dt ECVT 3 | ||
23 | .Os | ||
24 | .Sh NAME | ||
25 | .Nm ecvt , | ||
26 | .Nm fcvt , | ||
27 | .Nm gcvt | ||
28 | .Nd convert double to | ||
29 | .Tn ASCII | ||
30 | string | ||
31 | .Sh SYNOPSIS | ||
32 | .Fd #include <stdlib.h> | ||
33 | .Ft char * | ||
34 | .Fn ecvt "double value" "int ndigit" "int *decpt" "int *sign" | ||
35 | .Ft char * | ||
36 | .Fn fcvt "double value" "int ndigit" "int *decpt" "int *sign" | ||
37 | .Ft char * | ||
38 | .Fn gcvt "double value" "int ndigit" "char *buf" | ||
39 | .Sh DESCRIPTION | ||
40 | .Bf -symbolic | ||
41 | These functions are provided for compatibility with legacy code. | ||
42 | New code should use the | ||
43 | .Xr snprintf 3 | ||
44 | function for improved safety and portability. | ||
45 | .Ef | ||
46 | .Pp | ||
47 | The | ||
48 | .Fn ecvt , | ||
49 | .Fn fcvt | ||
50 | and | ||
51 | .Fn gcvt | ||
52 | functions convert the double precision floating-point number | ||
53 | .Fa value | ||
54 | to a NUL-terminated | ||
55 | .Tn ASCII | ||
56 | string. | ||
57 | .Pp | ||
58 | The | ||
59 | .Fn ecvt | ||
60 | function converts | ||
61 | .Fa value | ||
62 | to a NUL-terminated string of exactly | ||
63 | .Fa ndigit | ||
64 | digits and returns a pointer to that string. | ||
65 | The result is padded with zeroes from left to right as needed. | ||
66 | There are no leading zeroes unless | ||
67 | .Fa value | ||
68 | itself is 0. | ||
69 | The least significant digit is rounded in an implementation-dependent manner. | ||
70 | The position of the decimal point relative to the beginning of the string | ||
71 | is stored in | ||
72 | .Fa decpt . | ||
73 | A negative value indicates that the decimal point is located | ||
74 | to the left of the returned digits (this occurs when there is no | ||
75 | whole number component to | ||
76 | .Fa value ) . | ||
77 | If | ||
78 | .Fa value | ||
79 | is zero, it is unspecified whether the integer pointed to by | ||
80 | .Fa decpt | ||
81 | will be 0 or 1. | ||
82 | The decimal point itself is not included in the returned string. | ||
83 | If the sign of the result is negative, the integer pointed to by | ||
84 | .Fa sign | ||
85 | is non-zero; otherwise, it is 0. | ||
86 | .Pp | ||
87 | If the converted value is out of range or is not representable, | ||
88 | the contents of the returned string are unspecified. | ||
89 | .Pp | ||
90 | The | ||
91 | .Fn fcvt | ||
92 | function is identical to | ||
93 | .Fn ecvt | ||
94 | with the exception that | ||
95 | .Fa ndigit | ||
96 | specifies the number of digits after the decimal point (zero-padded as | ||
97 | needed). | ||
98 | .Pp | ||
99 | The | ||
100 | .Fn gcvt | ||
101 | function converts | ||
102 | .Fa value | ||
103 | to a NUL-terminated string similar to the %g | ||
104 | .Xr printf 3 | ||
105 | format specifier and stores the result in | ||
106 | .Fa buf . | ||
107 | It produces | ||
108 | .Fa ndigit | ||
109 | significant digits similar to the %f | ||
110 | .Xr printf 3 | ||
111 | format specifier where possible. | ||
112 | If | ||
113 | .Fa ndigit | ||
114 | does allow sufficient precision, the result is stored in | ||
115 | exponential notation similar to the %e | ||
116 | .Xr printf 3 | ||
117 | format specifier. | ||
118 | If | ||
119 | .Fa value | ||
120 | is less than zero, | ||
121 | .Fa buf | ||
122 | will be prefixed with a minus sign. | ||
123 | A decimal point is included in the returned string if | ||
124 | .Fa value | ||
125 | is not a whole number. | ||
126 | Unlike the | ||
127 | .Fn ecvt | ||
128 | and | ||
129 | .Fn fcvt | ||
130 | functions, | ||
131 | .Fa buf | ||
132 | is not zero-padded. | ||
133 | .Sh RETURN VALUES | ||
134 | The | ||
135 | .Fn ecvt , | ||
136 | .Fn fcvt | ||
137 | and | ||
138 | .Fn gcvt | ||
139 | functions return a NUL-terminated string representation of | ||
140 | .Fa value . | ||
141 | .Sh WARNINGS | ||
142 | The | ||
143 | .Fn ecvt | ||
144 | and | ||
145 | .Fn fcvt | ||
146 | functions return a pointer to internal storage space that will be | ||
147 | overwritten by subsequent calls to either function. | ||
148 | .Pp | ||
149 | The maximum possible precision of the return value is limited by the | ||
150 | precision of a double and may not be the same on all architectures. | ||
151 | .Pp | ||
152 | The | ||
153 | .Xr snprintf 3 | ||
154 | function is preferred over these functions for new code. | ||
155 | .Sh SEE ALSO | ||
156 | .Xr printf 3 , | ||
157 | .Xr strtod 3 | ||
158 | .Sh STANDARDS | ||
159 | The | ||
160 | .Fn ecvt , | ||
161 | .Fn fcvt | ||
162 | and | ||
163 | .Fn gcvt | ||
164 | functions conform to | ||
165 | .St -p1003.1-2001 . | ||
diff --git a/src/lib/libc/stdlib/ecvt.c b/src/lib/libc/stdlib/ecvt.c new file mode 100644 index 0000000000..657c531808 --- /dev/null +++ b/src/lib/libc/stdlib/ecvt.c | |||
@@ -0,0 +1,103 @@ | |||
1 | /* $OpenBSD: ecvt.c,v 1.3 2003/06/17 21:56:24 millert Exp $ */ | ||
2 | |||
3 | /* | ||
4 | * Copyright (c) 2002 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 | * Sponsored in part by the Defense Advanced Research Projects | ||
19 | * Agency (DARPA) and Air Force Research Laboratory, Air Force | ||
20 | * Materiel Command, USAF, under agreement number F39502-99-1-0512. | ||
21 | */ | ||
22 | |||
23 | #if defined(LIBC_SCCS) && !defined(lint) | ||
24 | static char rcsid[] = "$OpenBSD: ecvt.c,v 1.3 2003/06/17 21:56:24 millert Exp $"; | ||
25 | #endif /* LIBC_SCCS and not lint */ | ||
26 | |||
27 | #include <stdio.h> | ||
28 | #include <stdlib.h> | ||
29 | #include <string.h> | ||
30 | |||
31 | extern char *__dtoa(double, int, int, int *, int *, char **); | ||
32 | static char *__cvt(double, int, int *, int *, int, int); | ||
33 | |||
34 | static char * | ||
35 | __cvt(double value, int ndigit, int *decpt, int *sign, int fmode, int pad) | ||
36 | { | ||
37 | static char *s; | ||
38 | char *p, *rve; | ||
39 | size_t siz; | ||
40 | |||
41 | if (ndigit == 0) { | ||
42 | *sign = value < 0.0; | ||
43 | *decpt = 0; | ||
44 | return (""); | ||
45 | } | ||
46 | |||
47 | if (s) { | ||
48 | free(s); | ||
49 | s = NULL; | ||
50 | } | ||
51 | |||
52 | if (ndigit < 0) | ||
53 | siz = -ndigit + 1; | ||
54 | else | ||
55 | siz = ndigit + 1; | ||
56 | |||
57 | |||
58 | /* __dtoa() doesn't allocate space for 0 so we do it by hand */ | ||
59 | if (value == 0.0) { | ||
60 | *decpt = 1 - fmode; /* 1 for 'e', 0 for 'f' */ | ||
61 | *sign = 0; | ||
62 | if ((rve = s = (char *)malloc(siz)) == NULL) | ||
63 | return(NULL); | ||
64 | *rve++ = '0'; | ||
65 | *rve = '\0'; | ||
66 | } else { | ||
67 | p = __dtoa(value, fmode + 2, ndigit, decpt, sign, &rve); | ||
68 | if (*decpt == 9999) { | ||
69 | /* Nan or Infinity */ | ||
70 | *decpt = 0; | ||
71 | return(p); | ||
72 | } | ||
73 | /* make a local copy and adjust rve to be in terms of s */ | ||
74 | if (pad && fmode) | ||
75 | siz += *decpt; | ||
76 | if ((s = (char *)malloc(siz)) == NULL) | ||
77 | return(NULL); | ||
78 | (void) strlcpy(s, p, siz); | ||
79 | rve = s + (rve - p); | ||
80 | } | ||
81 | |||
82 | /* Add trailing zeros (unless we got NaN or Inf) */ | ||
83 | if (pad && *decpt != 9999) { | ||
84 | siz -= rve - s; | ||
85 | while (--siz) | ||
86 | *rve++ = '0'; | ||
87 | *rve = '\0'; | ||
88 | } | ||
89 | |||
90 | return(s); | ||
91 | } | ||
92 | |||
93 | char * | ||
94 | ecvt(double value, int ndigit, int *decpt, int *sign) | ||
95 | { | ||
96 | return(__cvt(value, ndigit, decpt, sign, 0, 1)); | ||
97 | } | ||
98 | |||
99 | char * | ||
100 | fcvt(double value, int ndigit, int *decpt, int *sign) | ||
101 | { | ||
102 | return(__cvt(value, ndigit, decpt, sign, 1, 1)); | ||
103 | } | ||
diff --git a/src/lib/libc/stdlib/erand48.c b/src/lib/libc/stdlib/erand48.c index cc9fbf770c..b92dacffcc 100644 --- a/src/lib/libc/stdlib/erand48.c +++ b/src/lib/libc/stdlib/erand48.c | |||
@@ -11,6 +11,10 @@ | |||
11 | * to anyone/anything when using this software. | 11 | * to anyone/anything when using this software. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: erand48.c,v 1.2 1996/08/19 08:33:29 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
14 | #include "rand48.h" | 18 | #include "rand48.h" |
15 | 19 | ||
16 | double | 20 | double |
diff --git a/src/lib/libc/stdlib/exit.3 b/src/lib/libc/stdlib/exit.3 index adb81ffcb4..fa233ac75f 100644 --- a/src/lib/libc/stdlib/exit.3 +++ b/src/lib/libc/stdlib/exit.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,25 +29,30 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)exit.3 6.6 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: exit.3,v 1.10 2004/05/03 17:21:13 millert Exp $ |
37 | .\" $Id: exit.3,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd January 21, 2004 |
40 | .Dt EXIT 3 | 35 | .Dt EXIT 3 |
41 | .Os | 36 | .Os |
42 | .Sh NAME | 37 | .Sh NAME |
43 | .Nm exit | 38 | .Nm exit, _Exit |
44 | .Nd perform normal program termination | 39 | .Nd perform normal program termination |
45 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS |
46 | .Fd #include <stdlib.h> | 41 | .Fd #include <stdlib.h> |
47 | .Ft void | 42 | .Ft void |
48 | .Fn exit "int status" | 43 | .Fn exit "int status" |
44 | .Ft void | ||
45 | .Fn _Exit "int status" | ||
49 | .Sh DESCRIPTION | 46 | .Sh DESCRIPTION |
50 | .Fn Exit | 47 | The |
51 | terminates a process. | 48 | .Fn exit |
49 | and | ||
50 | .Fn _Exit | ||
51 | functions terminate a process. | ||
52 | .Pp | 52 | .Pp |
53 | Before termination it performs the following functions in the | 53 | Before termination, |
54 | order listed: | 54 | .Fn exit |
55 | performs the following operations in the order listed: | ||
55 | .Bl -enum -offset indent | 56 | .Bl -enum -offset indent |
56 | .It | 57 | .It |
57 | Call the functions registered with the | 58 | Call the functions registered with the |
@@ -66,19 +67,48 @@ Unlink all files created with the | |||
66 | .Xr tmpfile 3 | 67 | .Xr tmpfile 3 |
67 | function. | 68 | function. |
68 | .El | 69 | .El |
70 | .Pp | ||
71 | The | ||
72 | .Fn _Exit | ||
73 | function terminates without calling the functions registered with the | ||
74 | .Xr atexit 3 | ||
75 | function. | ||
76 | The | ||
77 | .Ox | ||
78 | implementation of | ||
79 | .Fn _Exit | ||
80 | does not flush open output streams or unlink files created with the | ||
81 | .Xr tmpfile 3 | ||
82 | function. | ||
83 | However, this behavior is implementation-specific. | ||
84 | .Pp | ||
85 | Lastly, | ||
86 | .Fn exit | ||
87 | and | ||
88 | .Fn _Exit | ||
89 | call | ||
90 | .Xr _exit 2 . | ||
91 | Note that typically | ||
92 | .Xr _exit 2 | ||
93 | only passes the lower 8 bits of | ||
94 | .Fa status | ||
95 | on to the parent, thus negative values have less meaning. | ||
69 | .Sh RETURN VALUES | 96 | .Sh RETURN VALUES |
70 | The | 97 | The |
71 | .Fn exit | 98 | .Fn exit |
72 | function | 99 | and |
73 | never returns. | 100 | .Fn _Exit |
101 | functions never return. | ||
74 | .Sh SEE ALSO | 102 | .Sh SEE ALSO |
75 | .Xr _exit 2 , | 103 | .Xr _exit 2 , |
76 | .Xr atexit 3 , | 104 | .Xr atexit 3 , |
77 | .Xr intro 3 , | 105 | .Xr intro 3 , |
106 | .Xr sysexits 3 , | ||
78 | .Xr tmpfile 3 | 107 | .Xr tmpfile 3 |
79 | .Sh STANDARDS | 108 | .Sh STANDARDS |
80 | The | 109 | The |
81 | .Fn exit | 110 | .Fn exit |
82 | function | 111 | and |
83 | conforms to | 112 | .Fn _Exit |
84 | .St -ansiC . | 113 | functions conform to |
114 | .St -ansiC-99 . | ||
diff --git a/src/lib/libc/stdlib/exit.c b/src/lib/libc/stdlib/exit.c index b1412f42bb..a0960e83c4 100644 --- a/src/lib/libc/stdlib/exit.c +++ b/src/lib/libc/stdlib/exit.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,30 +28,45 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)exit.c 5.4 (Berkeley) 2/23/91";*/ | 31 | static char *rcsid = "$OpenBSD: exit.c,v 1.10 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: exit.c,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
34 | #include <sys/types.h> | ||
35 | #include <sys/mman.h> | ||
39 | #include <stdlib.h> | 36 | #include <stdlib.h> |
40 | #include <unistd.h> | 37 | #include <unistd.h> |
41 | #include "atexit.h" | 38 | #include "atexit.h" |
39 | #include "thread_private.h" | ||
42 | 40 | ||
43 | void (*__cleanup)(); | 41 | /* |
42 | * This variable is zero until a process has created a thread. | ||
43 | * It is used to avoid calling locking functions in libc when they | ||
44 | * are not required. By default, libc is intended to be(come) | ||
45 | * thread-safe, but without a (significant) penalty to non-threaded | ||
46 | * processes. | ||
47 | */ | ||
48 | int __isthreaded = 0; | ||
44 | 49 | ||
45 | /* | 50 | /* |
46 | * Exit, flushing stdio buffers if necessary. | 51 | * Exit, flushing stdio buffers if necessary. |
47 | */ | 52 | */ |
48 | void | 53 | void |
49 | exit(status) | 54 | exit(int status) |
50 | int status; | ||
51 | { | 55 | { |
52 | register struct atexit *p; | 56 | struct atexit *p, *q; |
53 | register int n; | 57 | int n, pgsize = getpagesize(); |
54 | 58 | ||
55 | for (p = __atexit; p; p = p->next) | 59 | if (!__atexit_invalid) { |
56 | for (n = p->ind; --n >= 0;) | 60 | p = __atexit; |
57 | (*p->fns[n])(); | 61 | while (p != NULL) { |
58 | if (__cleanup) | 62 | for (n = p->ind; --n >= 0;) |
59 | (*__cleanup)(); | 63 | if (p->fns[n] != NULL) |
64 | (*p->fns[n])(); | ||
65 | q = p; | ||
66 | p = p->next; | ||
67 | munmap(q, pgsize); | ||
68 | } | ||
69 | } | ||
70 | /* cleanup, if registered, was called through fns[0] in the last page */ | ||
60 | _exit(status); | 71 | _exit(status); |
61 | } | 72 | } |
diff --git a/src/lib/libc/stdlib/free.3 b/src/lib/libc/stdlib/free.3 deleted file mode 100644 index 3d0131d7de..0000000000 --- a/src/lib/libc/stdlib/free.3 +++ /dev/null | |||
@@ -1,82 +0,0 @@ | |||
1 | .\" Copyright (c) 1991 The Regents of the University of California. | ||
2 | .\" All rights reserved. | ||
3 | .\" | ||
4 | .\" This code is derived from software contributed to Berkeley by | ||
5 | .\" the American National Standards Committee X3, on Information | ||
6 | .\" Processing Systems. | ||
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 the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | ||
22 | .\" without specific prior written permission. | ||
23 | .\" | ||
24 | .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | ||
25 | .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
26 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
27 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | ||
28 | .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
29 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
30 | .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
31 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
32 | .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
34 | .\" SUCH DAMAGE. | ||
35 | .\" | ||
36 | .\" from: @(#)free.3 5.2 (Berkeley) 6/29/91 | ||
37 | .\" $Id: free.3,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp $ | ||
38 | .\" | ||
39 | .Dd June 29, 1991 | ||
40 | .Dt FREE 3 | ||
41 | .Os | ||
42 | .Sh NAME | ||
43 | .Nm free | ||
44 | .Nd free up memory allocated with malloc, calloc or realloc | ||
45 | .Sh SYNOPSIS | ||
46 | .Fd #include <stdlib.h> | ||
47 | .Ft void | ||
48 | .Fn free "void *ptr" | ||
49 | .Sh DESCRIPTION | ||
50 | The | ||
51 | .Fn free | ||
52 | function causes the space pointed to by | ||
53 | .Fa ptr | ||
54 | to be deallocated, that is, made available | ||
55 | for further allocation. | ||
56 | If | ||
57 | .Fa ptr | ||
58 | is a null pointer, no action occurs. | ||
59 | Otherwise, if the argument does not match a pointer earlier | ||
60 | returned by the | ||
61 | .Xr calloc , | ||
62 | .Xr malloc , | ||
63 | or | ||
64 | .Xr realloc | ||
65 | function, or if the space has been deallocated by a call to | ||
66 | .Fn free | ||
67 | or | ||
68 | .Xr realloc , | ||
69 | general havoc may occur. | ||
70 | .Sh RETURN VALUES | ||
71 | The | ||
72 | .Fn free | ||
73 | function returns no value. | ||
74 | .Sh SEE ALSO | ||
75 | .Xr calloc 3 , | ||
76 | .Xr malloc 3 , | ||
77 | .Xr realloc 3 | ||
78 | .Sh STANDARDS | ||
79 | The | ||
80 | .Fn free | ||
81 | function conforms to | ||
82 | .St -ansiC . | ||
diff --git a/src/lib/libc/stdlib/gcvt.c b/src/lib/libc/stdlib/gcvt.c new file mode 100644 index 0000000000..9fd664b346 --- /dev/null +++ b/src/lib/libc/stdlib/gcvt.c | |||
@@ -0,0 +1,99 @@ | |||
1 | /* $OpenBSD: gcvt.c,v 1.5 2003/06/17 21:56:24 millert Exp $ */ | ||
2 | |||
3 | /* | ||
4 | * Copyright (c) 2002, 2003 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 | * Sponsored in part by the Defense Advanced Research Projects | ||
19 | * Agency (DARPA) and Air Force Research Laboratory, Air Force | ||
20 | * Materiel Command, USAF, under agreement number F39502-99-1-0512. | ||
21 | */ | ||
22 | |||
23 | #if defined(LIBC_SCCS) && !defined(lint) | ||
24 | static char rcsid[] = "$OpenBSD: gcvt.c,v 1.5 2003/06/17 21:56:24 millert Exp $"; | ||
25 | #endif /* LIBC_SCCS and not lint */ | ||
26 | |||
27 | #include <stdio.h> | ||
28 | #include <stdlib.h> | ||
29 | #include <string.h> | ||
30 | |||
31 | extern char *__dtoa(double, int, int, int *, int *, char **); | ||
32 | |||
33 | char * | ||
34 | gcvt(double value, int ndigit, char *buf) | ||
35 | { | ||
36 | char *digits, *dst, *src; | ||
37 | int i, decpt, sign; | ||
38 | |||
39 | if (ndigit == 0) { | ||
40 | buf[0] = '\0'; | ||
41 | return (buf); | ||
42 | } | ||
43 | |||
44 | digits = __dtoa(value, 2, ndigit, &decpt, &sign, NULL); | ||
45 | if (decpt == 9999) { | ||
46 | /* Infinity or NaN, assume buffer is at least ndigit long. */ | ||
47 | strlcpy(buf, digits, ndigit + 1); | ||
48 | return (buf); | ||
49 | } | ||
50 | |||
51 | dst = buf; | ||
52 | if (sign) | ||
53 | *dst++ = '-'; | ||
54 | |||
55 | if (decpt < 0 || decpt > ndigit) { | ||
56 | /* exponential format */ | ||
57 | if (--decpt < 0) { | ||
58 | sign = 1; | ||
59 | decpt = -decpt; | ||
60 | } else | ||
61 | sign = 0; | ||
62 | for (src = digits; *src != '\0'; ) | ||
63 | *dst++ = *src++; | ||
64 | *dst++ = 'e'; | ||
65 | if (sign) | ||
66 | *dst++ = '-'; | ||
67 | else | ||
68 | *dst++ = '+'; | ||
69 | if (decpt < 10) { | ||
70 | *dst++ = '0'; | ||
71 | *dst++ = '0' + decpt; | ||
72 | *dst = '\0'; | ||
73 | } else { | ||
74 | /* XXX - optimize */ | ||
75 | for (sign = decpt, i = 0; (sign /= 10) != 0; i++) | ||
76 | sign /= 10; | ||
77 | while (decpt != 0) { | ||
78 | dst[i--] = '0' + decpt % 10; | ||
79 | decpt /= 10; | ||
80 | } | ||
81 | } | ||
82 | } else { | ||
83 | /* standard format */ | ||
84 | for (i = 0, src = digits; i < decpt; i++) { | ||
85 | if (*src != '\0') | ||
86 | *dst++ = *src++; | ||
87 | else | ||
88 | *dst++ = '0'; | ||
89 | } | ||
90 | if (*src != '\0') { | ||
91 | *dst++ = '.'; /* XXX - locale-specific (LC_NUMERIC) */ | ||
92 | for (i = decpt; digits[i] != '\0'; i++) { | ||
93 | *dst++ = digits[i]; | ||
94 | } | ||
95 | } | ||
96 | *dst = '\0'; | ||
97 | } | ||
98 | return (buf); | ||
99 | } | ||
diff --git a/src/lib/libc/stdlib/getenv.3 b/src/lib/libc/stdlib/getenv.3 index 411eb35da4..054004e1d8 100644 --- a/src/lib/libc/stdlib/getenv.3 +++ b/src/lib/libc/stdlib/getenv.3 | |||
@@ -1,5 +1,5 @@ | |||
1 | .\" Copyright (c) 1988, 1991 The Regents of the University of California. | 1 | .\" Copyright (c) 1988, 1991, 1993 |
2 | .\" All rights reserved. | 2 | .\" The Regents of the University of California. All rights reserved. |
3 | .\" | 3 | .\" |
4 | .\" This code is derived from software contributed to Berkeley by | 4 | .\" This code is derived from software contributed to Berkeley by |
5 | .\" the American National Standards Committee X3, on Information | 5 | .\" the American National Standards Committee X3, on Information |
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,10 +29,9 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)getenv.3 6.11 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: getenv.3,v 1.9 2004/01/23 23:08:46 jmc Exp $ |
37 | .\" $Id: getenv.3,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd December 11, 1993 |
40 | .Dt GETENV 3 | 35 | .Dt GETENV 3 |
41 | .Os | 36 | .Os |
42 | .Sh NAME | 37 | .Sh NAME |
@@ -56,59 +51,51 @@ | |||
56 | .Ft void | 51 | .Ft void |
57 | .Fn unsetenv "const char *name" | 52 | .Fn unsetenv "const char *name" |
58 | .Sh DESCRIPTION | 53 | .Sh DESCRIPTION |
59 | These functions set, unset and fetch environment variables from the | 54 | These functions set, unset, and fetch environment variables from the host |
60 | host | ||
61 | .Em environment list . | 55 | .Em environment list . |
62 | For compatibility with differing environment conventions, | 56 | For compatibility with differing environment conventions, the given arguments |
63 | the given arguments | 57 | .Fa name |
64 | .Ar name | ||
65 | and | 58 | and |
66 | .Ar value | 59 | .Fa value |
67 | may be appended and prepended, | 60 | may be appended and prepended, respectively, with an equal sign |
68 | respectively, | ||
69 | with an equal sign | ||
70 | .Dq Li \&= . | 61 | .Dq Li \&= . |
71 | .Pp | 62 | .Pp |
72 | The | 63 | The |
73 | .Fn getenv | 64 | .Fn getenv |
74 | function obtains the current value of the environment variable, | 65 | function obtains the current value of the environment variable, |
75 | .Ar name . | 66 | .Fa name . |
76 | If the variable | 67 | If the variable |
77 | .Ar name | 68 | .Fa name |
78 | is not in the current environment , | 69 | is not in the current environment, a null pointer is returned. |
79 | a null pointer is returned. | ||
80 | .Pp | 70 | .Pp |
81 | The | 71 | The |
82 | .Fn setenv | 72 | .Fn setenv |
83 | function inserts or resets the environment variable | 73 | function inserts or resets the environment variable |
84 | .Ar name | 74 | .Fa name |
85 | in the current environment list. | 75 | in the current environment list. |
86 | If the variable | 76 | If the variable |
87 | .Ar name | 77 | .Fa name |
88 | does not exist in the list, | 78 | does not exist in the list, it is inserted with the given |
89 | it is inserted with the given | 79 | .Fa value . |
90 | .Ar value. | ||
91 | If the variable does exist, the argument | 80 | If the variable does exist, the argument |
92 | .Ar overwrite | 81 | .Fa overwrite |
93 | is tested; if | 82 | is tested; if |
94 | .Ar overwrite is | 83 | .Fa overwrite |
95 | zero, the | 84 | is zero, the variable is not reset, otherwise it is reset to the given |
96 | variable is not reset, otherwise it is reset | 85 | .Fa value . |
97 | to the given | ||
98 | .Ar value . | ||
99 | .Pp | 86 | .Pp |
100 | The | 87 | The |
101 | .Fn putenv | 88 | .Fn putenv |
102 | function takes an argument of the form ``name=value'' and is | 89 | function takes an argument of the form |
103 | equivalent to: | 90 | .Ar name Ns = Ns Ar value |
91 | and is equivalent to: | ||
104 | .Bd -literal -offset indent | 92 | .Bd -literal -offset indent |
105 | setenv(name, value, 1); | 93 | setenv(name, value, 1); |
106 | .Ed | 94 | .Ed |
107 | .Pp | 95 | .Pp |
108 | The | 96 | The |
109 | .Fn unsetenv | 97 | .Fn unsetenv |
110 | function | 98 | function deletes all instances of the variable name pointed to by |
111 | deletes all instances of the variable name pointed to by | ||
112 | .Fa name | 99 | .Fa name |
113 | from the list. | 100 | from the list. |
114 | .Sh RETURN VALUES | 101 | .Sh RETURN VALUES |
@@ -118,10 +105,13 @@ and | |||
118 | .Fn putenv | 105 | .Fn putenv |
119 | return zero if successful; otherwise the global variable | 106 | return zero if successful; otherwise the global variable |
120 | .Va errno | 107 | .Va errno |
121 | is set to indicate the error and a | 108 | is set to indicate the error and \-1 is returned. |
122 | \-1 is returned. | 109 | .Pp |
110 | If | ||
111 | .Fn getenv | ||
112 | is successful, the string returned should be considered read-only. | ||
123 | .Sh ERRORS | 113 | .Sh ERRORS |
124 | .Bl -tag -width Er | 114 | .Bl -tag -width [ENOMEM] |
125 | .It Bq Er ENOMEM | 115 | .It Bq Er ENOMEM |
126 | The function | 116 | The function |
127 | .Fn setenv | 117 | .Fn setenv |
diff --git a/src/lib/libc/stdlib/getenv.c b/src/lib/libc/stdlib/getenv.c index 09d47f2149..7e4d6b91a9 100644 --- a/src/lib/libc/stdlib/getenv.c +++ b/src/lib/libc/stdlib/getenv.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) 1987 Regents of the University of California. | 2 | * Copyright (c) 1987, 1993 |
3 | * All rights reserved. | 3 | * The Regents of the University of California. All rights reserved. |
4 | * | 4 | * |
5 | * Redistribution and use in source and binary forms, with or without | 5 | * Redistribution and use in source and binary forms, with or without |
6 | * modification, are permitted provided that the following conditions | 6 | * modification, are permitted provided that the following conditions |
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,26 +28,13 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)getenv.c 5.8 (Berkeley) 2/23/91";*/ | 31 | static char *rcsid = "$OpenBSD: getenv.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: getenv.c,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <stdlib.h> | 34 | #include <stdlib.h> |
40 | #include <string.h> | 35 | #include <string.h> |
41 | 36 | ||
42 | /* | 37 | char *__findenv(const char *name, int *offset); |
43 | * getenv -- | ||
44 | * Returns ptr to value associated with name, if any, else NULL. | ||
45 | */ | ||
46 | char * | ||
47 | getenv(name) | ||
48 | const char *name; | ||
49 | { | ||
50 | int offset; | ||
51 | char *__findenv(); | ||
52 | |||
53 | return(__findenv(name, &offset)); | ||
54 | } | ||
55 | 38 | ||
56 | /* | 39 | /* |
57 | * __findenv -- | 40 | * __findenv -- |
@@ -63,20 +46,38 @@ getenv(name) | |||
63 | * This routine *should* be a static; don't use it. | 46 | * This routine *should* be a static; don't use it. |
64 | */ | 47 | */ |
65 | char * | 48 | char * |
66 | __findenv(name, offset) | 49 | __findenv(const char *name, int *offset) |
67 | register char *name; | ||
68 | int *offset; | ||
69 | { | 50 | { |
70 | extern char **environ; | 51 | extern char **environ; |
71 | register int len; | 52 | int len, i; |
72 | register char **P, *C; | 53 | const char *np; |
54 | char **p, *cp; | ||
55 | |||
56 | if (name == NULL || environ == NULL) | ||
57 | return (NULL); | ||
58 | for (np = name; *np && *np != '='; ++np) | ||
59 | ; | ||
60 | len = np - name; | ||
61 | for (p = environ; (cp = *p) != NULL; ++p) { | ||
62 | for (np = name, i = len; i && *cp; i--) | ||
63 | if (*cp++ != *np++) | ||
64 | break; | ||
65 | if (i == 0 && *cp++ == '=') { | ||
66 | *offset = p - environ; | ||
67 | return (cp); | ||
68 | } | ||
69 | } | ||
70 | return (NULL); | ||
71 | } | ||
72 | |||
73 | /* | ||
74 | * getenv -- | ||
75 | * Returns ptr to value associated with name, if any, else NULL. | ||
76 | */ | ||
77 | char * | ||
78 | getenv(const char *name) | ||
79 | { | ||
80 | int offset; | ||
73 | 81 | ||
74 | for (C = name, len = 0; *C && *C != '='; ++C, ++len); | 82 | return (__findenv(name, &offset)); |
75 | for (P = environ; *P; ++P) | ||
76 | if (!strncmp(*P, name, len)) | ||
77 | if (*(C = *P + len) == '=') { | ||
78 | *offset = P - environ; | ||
79 | return(++C); | ||
80 | } | ||
81 | return(NULL); | ||
82 | } | 83 | } |
diff --git a/src/lib/libc/stdlib/getopt.3 b/src/lib/libc/stdlib/getopt.3 index f843881afd..e0dc3701f9 100644 --- a/src/lib/libc/stdlib/getopt.3 +++ b/src/lib/libc/stdlib/getopt.3 | |||
@@ -9,11 +9,7 @@ | |||
9 | .\" 2. Redistributions in binary form must reproduce the above copyright | 9 | .\" 2. Redistributions in binary form must reproduce the above copyright |
10 | .\" notice, this list of conditions and the following disclaimer in the | 10 | .\" notice, this list of conditions and the following disclaimer in the |
11 | .\" documentation and/or other materials provided with the distribution. | 11 | .\" documentation and/or other materials provided with the distribution. |
12 | .\" 3. All advertising materials mentioning features or use of this software | 12 | .\" 3. Neither the name of the University nor the names of its contributors |
13 | .\" must display the following acknowledgement: | ||
14 | .\" This product includes software developed by the University of | ||
15 | .\" California, Berkeley and its contributors. | ||
16 | .\" 4. 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 | 13 | .\" may be used to endorse or promote products derived from this software |
18 | .\" without specific prior written permission. | 14 | .\" without specific prior written permission. |
19 | .\" | 15 | .\" |
@@ -29,20 +25,20 @@ | |||
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 25 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
30 | .\" SUCH DAMAGE. | 26 | .\" SUCH DAMAGE. |
31 | .\" | 27 | .\" |
32 | .\" @(#)getopt.3 8.4 (Berkeley) 4/19/94 | 28 | .\" $OpenBSD: getopt.3,v 1.31 2005/03/26 22:02:15 millert Exp $ |
33 | .\" | 29 | .\" |
34 | .Dd April 19, 1994 | 30 | .Dd December 17, 2002 |
35 | .Dt GETOPT 3 | 31 | .Dt GETOPT 3 |
36 | .Os BSD 4.3 | 32 | .Os |
37 | .Sh NAME | 33 | .Sh NAME |
38 | .Nm getopt | 34 | .Nm getopt |
39 | .Nd get option character from command line argument list | 35 | .Nd get option character from command line argument list |
40 | .Sh SYNOPSIS | 36 | .Sh SYNOPSIS |
41 | .Fd #include <unistd.h> | 37 | .Fd #include <unistd.h> |
42 | .Vt extern char *optarg; | 38 | .Vt extern char *optarg; |
39 | .Vt extern int opterr; | ||
43 | .Vt extern int optind; | 40 | .Vt extern int optind; |
44 | .Vt extern int optopt; | 41 | .Vt extern int optopt; |
45 | .Vt extern int opterr; | ||
46 | .Vt extern int optreset; | 42 | .Vt extern int optreset; |
47 | .Ft int | 43 | .Ft int |
48 | .Fn getopt "int argc" "char * const *argv" "const char *optstring" | 44 | .Fn getopt "int argc" "char * const *argv" "const char *optstring" |
@@ -61,20 +57,23 @@ if it has been specified in the string of accepted option characters, | |||
61 | .Pp | 57 | .Pp |
62 | The option string | 58 | The option string |
63 | .Fa optstring | 59 | .Fa optstring |
64 | may contain the following elements: individual characters, and | 60 | may contain the following elements: individual characters, |
65 | characters followed by a colon to indicate an option argument | 61 | characters followed by a colon, and characters followed by two colons. |
66 | is to follow. | 62 | A character followed by a single colon indicates that an argument |
63 | is to follow the option on the command line. | ||
64 | Two colons indicates that the argument is optional \- this is an | ||
65 | extension not covered by POSIX. | ||
67 | For example, an option string | 66 | For example, an option string |
68 | .Li "\&""x"" | 67 | .Qq x |
69 | recognizes an option | 68 | recognizes an option |
70 | .Dq Fl x , | 69 | .Fl x , |
71 | and an option string | 70 | and an option string |
72 | .Li "\&""x:"" | 71 | .Qq Li x: |
73 | recognizes an option and argument | 72 | recognizes an option and argument |
74 | .Dq Fl x Ar argument . | 73 | .Fl x Ar argument . |
75 | It does not matter to | 74 | It does not matter to |
76 | .Fn getopt | 75 | .Fn getopt |
77 | if a following argument has leading white space. | 76 | if a following argument has leading whitespace. |
78 | .Pp | 77 | .Pp |
79 | On return from | 78 | On return from |
80 | .Fn getopt , | 79 | .Fn getopt , |
@@ -87,23 +86,23 @@ contains the index to the next | |||
87 | argument for a subsequent call | 86 | argument for a subsequent call |
88 | to | 87 | to |
89 | .Fn getopt . | 88 | .Fn getopt . |
90 | The variable | ||
91 | .Va optopt | ||
92 | saves the last | ||
93 | .Em known | ||
94 | option character returned by | ||
95 | .Fn getopt . | ||
96 | .Pp | 89 | .Pp |
97 | The variable | 90 | The variables |
98 | .Va opterr | 91 | .Va opterr |
99 | and | 92 | and |
100 | .Va optind | 93 | .Va optind |
101 | are both initialized to 1. | 94 | are both initialized to 1. |
102 | The | 95 | The |
103 | .Va optind | 96 | .Va optind |
104 | variable may be set to another value before a set of calls to | 97 | variable may be set to another value larger than 0 before a set of calls to |
105 | .Fn getopt | 98 | .Fn getopt |
106 | in order to skip over more or less argv entries. | 99 | in order to skip over more or less |
100 | .Fa argv | ||
101 | entries. | ||
102 | An | ||
103 | .Va optind | ||
104 | value of 0 is reserved for compatibility with GNU | ||
105 | .Fn getopt . | ||
107 | .Pp | 106 | .Pp |
108 | In order to use | 107 | In order to use |
109 | .Fn getopt | 108 | .Fn getopt |
@@ -119,63 +118,62 @@ must be reinitialized. | |||
119 | .Pp | 118 | .Pp |
120 | The | 119 | The |
121 | .Fn getopt | 120 | .Fn getopt |
122 | function | 121 | function returns \-1 when the argument list is exhausted. |
123 | returns \-1 | ||
124 | when the argument list is exhausted, or a non-recognized | ||
125 | option is encountered. | ||
126 | The interpretation of options in the argument list may be cancelled | 122 | The interpretation of options in the argument list may be cancelled |
127 | by the option | 123 | by the option |
128 | .Ql -- | 124 | .Ql -- |
129 | (double dash) which causes | 125 | (double dash) which causes |
130 | .Fn getopt | 126 | .Fn getopt |
131 | to signal the end of argument processing and returns \-1. | 127 | to signal the end of argument processing and return \-1. |
132 | When all options have been processed (i.e., up to the first non-option | 128 | When all options have been processed (i.e., up to the first non-option |
133 | argument), | 129 | argument), |
134 | .Fn getopt | 130 | .Fn getopt |
135 | returns \-1. | 131 | returns \-1. |
136 | .Sh DIAGNOSTICS | 132 | .Sh RETURN VALUES |
137 | If the | 133 | The |
138 | .Fn getopt | 134 | .Fn getopt |
139 | function encounters a character not found in the string | 135 | function returns the next known option character in |
140 | .Va optarg | 136 | .Fa optstring . |
141 | or detects | ||
142 | a missing option argument it writes an error message and returns | ||
143 | .Ql ? | ||
144 | to the | ||
145 | .Em stderr . | ||
146 | Setting | ||
147 | .Va opterr | ||
148 | to a zero will disable these error messages. | ||
149 | If | 137 | If |
150 | .Va optstring | 138 | .Fn getopt |
151 | has a leading | 139 | encounters a character not found in |
152 | .Ql \&: | 140 | .Fa optstring |
153 | then a missing option argument causes a | 141 | or if it detects a missing option argument, |
154 | .Ql \&: | 142 | it returns |
155 | to be returned in addition to suppressing any error messages. | 143 | .Sq \&? |
156 | .Pp | 144 | (question mark). |
157 | Option arguments are allowed to begin with | 145 | If |
158 | .Dq Li \- ; | 146 | .Fa optstring |
159 | this is reasonable but | 147 | has a leading |
160 | reduces the amount of error checking possible. | 148 | .Sq \&: |
161 | .Sh EXTENSIONS | 149 | then a missing option argument causes |
150 | .Sq \&: | ||
151 | to be returned instead of | ||
152 | .Sq \&? . | ||
153 | In either case, the variable | ||
154 | .Va optopt | ||
155 | is set to the character that caused the error. | ||
162 | The | 156 | The |
163 | .Va optreset | ||
164 | variable was added to make it possible to call the | ||
165 | .Fn getopt | 157 | .Fn getopt |
166 | function multiple times. | 158 | function returns \-1 when the argument list is exhausted. |
167 | This is an extension to the | 159 | .Sh ENVIRONMENT |
168 | .St -p1003.2 | 160 | .Bl -tag -width POSIXLY_CORRECTXX |
169 | specification. | 161 | .It Ev POSIXLY_CORRECT |
170 | .Sh EXAMPLE | 162 | If set, a leading |
163 | .Sq - | ||
164 | in | ||
165 | .Ar optstring | ||
166 | is ignored. | ||
167 | .El | ||
168 | .Sh EXAMPLES | ||
171 | .Bd -literal -compact | 169 | .Bd -literal -compact |
172 | extern char *optarg; | 170 | extern char *optarg; |
173 | extern int optind; | 171 | extern int optind; |
174 | int bflag, ch, fd; | 172 | int bflag, ch, fd; |
175 | 173 | ||
176 | bflag = 0; | 174 | bflag = 0; |
177 | while ((ch = getopt(argc, argv, "bf:")) != -1) | 175 | while ((ch = getopt(argc, argv, "bf:")) != -1) { |
178 | switch(ch) { | 176 | switch (ch) { |
179 | case 'b': | 177 | case 'b': |
180 | bflag = 1; | 178 | bflag = 1; |
181 | break; | 179 | break; |
@@ -189,31 +187,90 @@ while ((ch = getopt(argc, argv, "bf:")) != -1) | |||
189 | case '?': | 187 | case '?': |
190 | default: | 188 | default: |
191 | usage(); | 189 | usage(); |
190 | } | ||
192 | } | 191 | } |
193 | argc -= optind; | 192 | argc -= optind; |
194 | argv += optind; | 193 | argv += optind; |
195 | .Ed | 194 | .Ed |
196 | .Sh HISTORY | 195 | .Sh DIAGNOSTICS |
196 | If the | ||
197 | .Fn getopt | ||
198 | function encounters a character not found in the string | ||
199 | .Fa optstring | ||
200 | or detects | ||
201 | a missing option argument it writes an error message to | ||
202 | .Em stderr | ||
203 | and returns | ||
204 | .Ql \&? . | ||
205 | Setting | ||
206 | .Va opterr | ||
207 | to a zero will disable these error messages. | ||
208 | If | ||
209 | .Fa optstring | ||
210 | has a leading | ||
211 | .Ql \&: | ||
212 | then a missing option argument causes a | ||
213 | .Ql \&: | ||
214 | to be returned in addition to suppressing any error messages. | ||
215 | .Pp | ||
216 | Option arguments are allowed to begin with | ||
217 | .Ql - ; | ||
218 | this is reasonable but reduces the amount of error checking possible. | ||
219 | .Sh SEE ALSO | ||
220 | .Xr getopt 1 , | ||
221 | .Xr getopt_long 3 , | ||
222 | .Xr getsubopt 3 | ||
223 | .Sh STANDARDS | ||
197 | The | 224 | The |
198 | .Fn getopt | 225 | .Fn getopt |
199 | function appeared | 226 | function implements a superset of the functionality specified by |
200 | .Bx 4.3 . | 227 | .St -p1003.1 . |
201 | .Sh BUGS | 228 | .Pp |
229 | The following extensions are supported: | ||
230 | .Bl -tag -width "xxx" | ||
231 | .It Li o | ||
202 | The | 232 | The |
233 | .Va optreset | ||
234 | variable was added to make it possible to call the | ||
203 | .Fn getopt | 235 | .Fn getopt |
204 | function was once specified to return | 236 | function multiple times. |
205 | .Dv EOF | 237 | .It Li o |
206 | instead of \-1. | 238 | If the |
207 | This was changed by | 239 | .Va optind |
208 | .St -p1003.2-92 | 240 | variable is set to 0, |
209 | to decouple | ||
210 | .Fn getopt | 241 | .Fn getopt |
211 | from | 242 | will behave as if the |
212 | .Pa <stdio.h> . | 243 | .Va optreset |
213 | .Pp | 244 | variable has been set. |
245 | This is for compatibility with | ||
246 | .Tn GNU | ||
247 | .Fn getopt . | ||
248 | New code should use | ||
249 | .Va optreset | ||
250 | instead. | ||
251 | .It Li o | ||
252 | If the first character of | ||
253 | .Fa optstring | ||
254 | is a plus sign | ||
255 | .Pq Ql + , | ||
256 | it will be ignored. | ||
257 | This is for compatibility with | ||
258 | .Tn GNU | ||
259 | .Fn getopt . | ||
260 | .It Li o | ||
261 | If the first character of | ||
262 | .Fa optstring | ||
263 | is a dash | ||
264 | .Pq Ql - , | ||
265 | non-options will be returned as arguments to the option character | ||
266 | .Ql \e1 . | ||
267 | This is for compatibility with | ||
268 | .Tn GNU | ||
269 | .Fn getopt . | ||
270 | .It Li o | ||
214 | A single dash | 271 | A single dash |
215 | .Dq Li - | 272 | .Pq Ql - |
216 | may be specified as an character in | 273 | may be specified as a character in |
217 | .Fa optstring , | 274 | .Fa optstring , |
218 | however it should | 275 | however it should |
219 | .Em never | 276 | .Em never |
@@ -221,39 +278,94 @@ have an argument associated with it. | |||
221 | This allows | 278 | This allows |
222 | .Fn getopt | 279 | .Fn getopt |
223 | to be used with programs that expect | 280 | to be used with programs that expect |
224 | .Dq Li - | 281 | .Ql - |
225 | as an option flag. | 282 | as an option flag. |
226 | This practice is wrong, and should not be used in any current development. | 283 | This practice is wrong, and should not be used in any current development. |
227 | It is provided for backward compatibility | 284 | It is provided for backward compatibility |
228 | .Em only . | 285 | .Em only . |
286 | Care should be taken not to use | ||
287 | .Ql - | ||
288 | as the first character in | ||
289 | .Fa optstring | ||
290 | to avoid a semantic conflict with | ||
291 | .Tn GNU | ||
292 | .Fn getopt | ||
293 | semantics (see above). | ||
229 | By default, a single dash causes | 294 | By default, a single dash causes |
230 | .Fn getopt | 295 | .Fn getopt |
231 | to return \-1. | 296 | to return \-1. |
232 | This is, we believe, compatible with System V. | 297 | .El |
298 | .Pp | ||
299 | Unlike | ||
300 | .Tn GNU | ||
301 | .Fn getopt , | ||
302 | .Ox | ||
303 | does not permute the argument vector to allow non-options to be | ||
304 | interspersed with options on the command line. | ||
305 | Programs requiring this behavior should use | ||
306 | .Xr getopt_long 3 | ||
307 | instead. | ||
308 | Because of this (and unlike | ||
309 | .Tn GNU ) , | ||
310 | the | ||
311 | .Ox | ||
312 | .Fn getopt | ||
313 | supports optional arguments separated by whitespace. | ||
314 | .Pp | ||
315 | Historic | ||
316 | .Bx | ||
317 | versions of | ||
318 | .Fn getopt | ||
319 | set | ||
320 | .Fa optopt | ||
321 | to the last option character processed. | ||
322 | However, this conflicts with | ||
323 | .St -p1003.1 | ||
324 | which stipulates that | ||
325 | .Fa optopt | ||
326 | be set to the last character that caused an error. | ||
327 | .Sh HISTORY | ||
328 | The | ||
329 | .Fn getopt | ||
330 | function appeared in | ||
331 | .Bx 4.3 . | ||
332 | .Sh BUGS | ||
333 | The | ||
334 | .Fn getopt | ||
335 | function was once specified to return | ||
336 | .Dv EOF | ||
337 | instead of \-1. | ||
338 | This was changed by | ||
339 | .St -p1003.2-92 | ||
340 | to decouple | ||
341 | .Fn getopt | ||
342 | from | ||
343 | .Aq Pa stdio.h . | ||
233 | .Pp | 344 | .Pp |
234 | It is also possible to handle digits as option letters. | 345 | It is possible to handle digits as option letters. |
235 | This allows | 346 | This allows |
236 | .Fn getopt | 347 | .Fn getopt |
237 | to be used with programs that expect a number | 348 | to be used with programs that expect a number |
238 | .Pq Dq Li \&-\&3 | 349 | .Pq Dq Li \-3 |
239 | as an option. | 350 | as an option. |
240 | This practice is wrong, and should not be used in any current development. | 351 | This practice is wrong, and should not be used in any current development. |
241 | It is provided for backward compatibility | 352 | It is provided for backward compatibility |
242 | .Em only . | 353 | .Em only . |
243 | The following code fragment works in most cases. | 354 | The following code fragment works in most cases. |
244 | .Bd -literal -offset indent | 355 | .Bd -literal -offset indent |
245 | int length; | 356 | int ch; |
357 | long length; | ||
246 | char *p; | 358 | char *p; |
247 | 359 | ||
248 | while ((c = getopt(argc, argv, "0123456789")) != -1) | 360 | while ((ch = getopt(argc, argv, "0123456789")) != -1) { |
249 | switch (c) { | 361 | switch (ch) { |
250 | case '0': case '1': case '2': case '3': case '4': | 362 | case '0': case '1': case '2': case '3': case '4': |
251 | case '5': case '6': case '7': case '8': case '9': | 363 | case '5': case '6': case '7': case '8': case '9': |
252 | p = argv[optind - 1]; | 364 | p = argv[optind - 1]; |
253 | if (p[0] == '-' && p[1] == ch && !p[2]) | 365 | if (p[0] == '-' && p[1] == ch && !p[2]) |
254 | length = atoi(++p); | 366 | length = ch - '0'; |
255 | else | 367 | else |
256 | length = atoi(argv[optind] + 1); | 368 | length = strtol(argv[optind] + 1, NULL, 10); |
257 | break; | 369 | break; |
258 | } | 370 | } |
259 | } | 371 | } |
diff --git a/src/lib/libc/stdlib/getopt.c b/src/lib/libc/stdlib/getopt.c deleted file mode 100644 index 63c5e6a479..0000000000 --- a/src/lib/libc/stdlib/getopt.c +++ /dev/null | |||
@@ -1,118 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) 1987, 1993, 1994 | ||
3 | * The Regents of the University of California. All rights reserved. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions | ||
7 | * are met: | ||
8 | * 1. Redistributions of source code must retain the above copyright | ||
9 | * notice, this list of conditions and the following disclaimer. | ||
10 | * 2. Redistributions in binary form must reproduce the above copyright | ||
11 | * notice, this list of conditions and the following disclaimer in the | ||
12 | * documentation and/or other materials provided with the distribution. | ||
13 | * 3. All advertising materials mentioning features or use of this software | ||
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | ||
19 | * without specific prior written permission. | ||
20 | * | ||
21 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | ||
22 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | ||
25 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
26 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
27 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
28 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
29 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
30 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
31 | * SUCH DAMAGE. | ||
32 | */ | ||
33 | |||
34 | #if defined(LIBC_SCCS) && !defined(lint) | ||
35 | /* static char sccsid[] = "from: @(#)getopt.c 8.2 (Berkeley) 4/2/94"; */ | ||
36 | static char *rcsid = "$Id: getopt.c,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | ||
38 | |||
39 | #include <stdio.h> | ||
40 | #include <stdlib.h> | ||
41 | #include <string.h> | ||
42 | |||
43 | int opterr = 1, /* if error message should be printed */ | ||
44 | optind = 1, /* index into parent argv vector */ | ||
45 | optopt, /* character checked for validity */ | ||
46 | optreset; /* reset getopt */ | ||
47 | char *optarg; /* argument associated with option */ | ||
48 | |||
49 | #define BADCH (int)'?' | ||
50 | #define BADARG (int)':' | ||
51 | #define EMSG "" | ||
52 | |||
53 | /* | ||
54 | * getopt -- | ||
55 | * Parse argc/argv argument vector. | ||
56 | */ | ||
57 | int | ||
58 | getopt(nargc, nargv, ostr) | ||
59 | int nargc; | ||
60 | char * const *nargv; | ||
61 | const char *ostr; | ||
62 | { | ||
63 | extern char *__progname; | ||
64 | static char *place = EMSG; /* option letter processing */ | ||
65 | char *oli; /* option letter list index */ | ||
66 | |||
67 | if (optreset || !*place) { /* update scanning pointer */ | ||
68 | optreset = 0; | ||
69 | if (optind >= nargc || *(place = nargv[optind]) != '-') { | ||
70 | place = EMSG; | ||
71 | return (-1); | ||
72 | } | ||
73 | if (place[1] && *++place == '-') { /* found "--" */ | ||
74 | ++optind; | ||
75 | place = EMSG; | ||
76 | return (-1); | ||
77 | } | ||
78 | } /* option letter okay? */ | ||
79 | if ((optopt = (int)*place++) == (int)':' || | ||
80 | !(oli = strchr(ostr, optopt))) { | ||
81 | /* | ||
82 | * if the user didn't specify '-' as an option, | ||
83 | * assume it means -1. | ||
84 | */ | ||
85 | if (optopt == (int)'-') | ||
86 | return (-1); | ||
87 | if (!*place) | ||
88 | ++optind; | ||
89 | if (opterr && *ostr != ':') | ||
90 | (void)fprintf(stderr, | ||
91 | "%s: illegal option -- %c\n", __progname, optopt); | ||
92 | return (BADCH); | ||
93 | } | ||
94 | if (*++oli != ':') { /* don't need argument */ | ||
95 | optarg = NULL; | ||
96 | if (!*place) | ||
97 | ++optind; | ||
98 | } | ||
99 | else { /* need an argument */ | ||
100 | if (*place) /* no white space */ | ||
101 | optarg = place; | ||
102 | else if (nargc <= ++optind) { /* no arg */ | ||
103 | place = EMSG; | ||
104 | if (*ostr == ':') | ||
105 | return (BADARG); | ||
106 | if (opterr) | ||
107 | (void)fprintf(stderr, | ||
108 | "%s: option requires an argument -- %c\n", | ||
109 | __progname, optopt); | ||
110 | return (BADCH); | ||
111 | } | ||
112 | else /* white space */ | ||
113 | optarg = nargv[optind]; | ||
114 | place = EMSG; | ||
115 | ++optind; | ||
116 | } | ||
117 | return (optopt); /* dump back option letter */ | ||
118 | } | ||
diff --git a/src/lib/libc/stdlib/getopt_long.3 b/src/lib/libc/stdlib/getopt_long.3 new file mode 100644 index 0000000000..978583ef96 --- /dev/null +++ b/src/lib/libc/stdlib/getopt_long.3 | |||
@@ -0,0 +1,377 @@ | |||
1 | .\" $OpenBSD: getopt_long.3,v 1.10 2004/01/06 23:44:28 fgsch Exp $ | ||
2 | .\" $NetBSD: getopt_long.3,v 1.11 2002/10/02 10:54:19 wiz Exp $ | ||
3 | .\" | ||
4 | .\" Copyright (c) 1988, 1991, 1993 | ||
5 | .\" The Regents of the University of California. 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 | .\" 1. Redistributions of source code must retain the above copyright | ||
11 | .\" notice, this list of conditions and the following disclaimer. | ||
12 | .\" 2. Redistributions in binary form must reproduce the above copyright | ||
13 | .\" notice, this list of conditions and the following disclaimer in the | ||
14 | .\" documentation and/or other materials provided with the distribution. | ||
15 | .\" 3. Neither the name of the University nor the names of its contributors | ||
16 | .\" may be used to endorse or promote products derived from this software | ||
17 | .\" without specific prior written permission. | ||
18 | .\" | ||
19 | .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | ||
20 | .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
21 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
22 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | ||
23 | .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
24 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
25 | .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
26 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
27 | .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
28 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
29 | .\" SUCH DAMAGE. | ||
30 | .\" | ||
31 | .\" @(#)getopt.3 8.5 (Berkeley) 4/27/95 | ||
32 | .\" | ||
33 | .Dd April 1, 2000 | ||
34 | .Dt GETOPT_LONG 3 | ||
35 | .Os | ||
36 | .Sh NAME | ||
37 | .Nm getopt_long , | ||
38 | .Nm getopt_long_only | ||
39 | .Nd get long options from command line argument list | ||
40 | .Sh SYNOPSIS | ||
41 | .Fd #include <getopt.h> | ||
42 | .Vt extern char *optarg; | ||
43 | .Vt extern int optind; | ||
44 | .Vt extern int optopt; | ||
45 | .Vt extern int opterr; | ||
46 | .Vt extern int optreset; | ||
47 | .Ft int | ||
48 | .Fn getopt_long "int argc" "char * const *argv" "const char *optstring" "const struct option *longopts" "int *longindex" | ||
49 | .Ft int | ||
50 | .Fn getopt_long_only "int argc" "char * const *argv" "const char *optstring" "const struct option *longopts" "int *longindex" | ||
51 | .Sh DESCRIPTION | ||
52 | The | ||
53 | .Fn getopt_long | ||
54 | function is similar to | ||
55 | .Xr getopt 3 | ||
56 | but it accepts options in two forms: words and characters. | ||
57 | The | ||
58 | .Fn getopt_long | ||
59 | function provides a superset of the functionality of | ||
60 | .Xr getopt 3 . | ||
61 | .Fn getopt_long | ||
62 | can be used in two ways. | ||
63 | In the first way, every long option understood by the program has a | ||
64 | corresponding short option, and the option structure is only used to | ||
65 | translate from long options to short options. | ||
66 | When used in this fashion, | ||
67 | .Fn getopt_long | ||
68 | behaves identically to | ||
69 | .Xr getopt 3 . | ||
70 | This is a good way to add long option processing to an existing program | ||
71 | with the minimum of rewriting. | ||
72 | .Pp | ||
73 | In the second mechanism, a long option sets a flag in the | ||
74 | .Fa option | ||
75 | structure passed, or will store a pointer to the command line argument | ||
76 | in the | ||
77 | .Fa option | ||
78 | structure passed to it for options that take arguments. | ||
79 | Additionally, the long option's argument may be specified as a single | ||
80 | argument with an equal sign, e.g. | ||
81 | .Bd -literal | ||
82 | myprogram --myoption=somevalue | ||
83 | .Ed | ||
84 | .Pp | ||
85 | When a long option is processed the call to | ||
86 | .Fn getopt_long | ||
87 | will return 0. | ||
88 | For this reason, long option processing without | ||
89 | shortcuts is not backwards compatible with | ||
90 | .Xr getopt 3 . | ||
91 | .Pp | ||
92 | It is possible to combine these methods, providing for long options | ||
93 | processing with short option equivalents for some options. | ||
94 | Less frequently used options would be processed as long options only. | ||
95 | .Pp | ||
96 | The | ||
97 | .Fn getopt_long | ||
98 | call requires a structure to be initialized describing the long | ||
99 | options. | ||
100 | The structure is: | ||
101 | .Bd -literal | ||
102 | struct option { | ||
103 | char *name; | ||
104 | int has_arg; | ||
105 | int *flag; | ||
106 | int val; | ||
107 | }; | ||
108 | .Ed | ||
109 | .Pp | ||
110 | The | ||
111 | .Fa name | ||
112 | field should contain the option name without the leading double dash. | ||
113 | .Pp | ||
114 | The | ||
115 | .Fa has_arg | ||
116 | field should be one of: | ||
117 | .Bl -tag -width "optional_argument" | ||
118 | .It Li no_argument | ||
119 | no argument to the option is expect. | ||
120 | .It Li required_argument | ||
121 | an argument to the option is required. | ||
122 | .It Li optional_argument | ||
123 | an argument to the option may be presented. | ||
124 | .El | ||
125 | .Pp | ||
126 | If | ||
127 | .Fa flag | ||
128 | is not | ||
129 | .Dv NULL , | ||
130 | then the integer pointed to by it will be set to the value in the | ||
131 | .Fa val | ||
132 | field. | ||
133 | If the | ||
134 | .Fa flag | ||
135 | field is | ||
136 | .Dv NULL , | ||
137 | then the | ||
138 | .Fa val | ||
139 | field will be returned. | ||
140 | Setting | ||
141 | .Fa flag | ||
142 | to | ||
143 | .Dv NULL | ||
144 | and setting | ||
145 | .Fa val | ||
146 | to the corresponding short option will make this function act just | ||
147 | like | ||
148 | .Xr getopt 3 . | ||
149 | .Pp | ||
150 | If the | ||
151 | .Fa longindex | ||
152 | field is not | ||
153 | .Dv NULL , | ||
154 | then the integer pointed to by it will be set to the index of the long | ||
155 | option relative to | ||
156 | .Fa longopts . | ||
157 | .Pp | ||
158 | The last element of the | ||
159 | .Fa longopts | ||
160 | array has to be filled with zeroes. | ||
161 | .Pp | ||
162 | The | ||
163 | .Fn getopt_long_only | ||
164 | function behaves identically to | ||
165 | .Fn getopt_long | ||
166 | with the exception that long options may start with | ||
167 | .Sq - | ||
168 | in addition to | ||
169 | .Sq -- . | ||
170 | If an option starting with | ||
171 | .Sq - | ||
172 | does not match a long option but does match a single-character option, | ||
173 | the single-character option is returned. | ||
174 | .Sh RETURN VALUES | ||
175 | If the | ||
176 | .Fa flag | ||
177 | field in | ||
178 | .Li struct option | ||
179 | is | ||
180 | .Dv NULL , | ||
181 | .Fn getopt_long | ||
182 | and | ||
183 | .Fn getopt_long_only | ||
184 | return the value specified in the | ||
185 | .Fa val | ||
186 | field, which is usually just the corresponding short option. | ||
187 | If | ||
188 | .Fa flag | ||
189 | is not | ||
190 | .Dv NULL , | ||
191 | these functions return 0 and store | ||
192 | .Fa val | ||
193 | in the location pointed to by | ||
194 | .Fa flag . | ||
195 | These functions return | ||
196 | .Sq \: | ||
197 | if there was a missing option argument, | ||
198 | .Sq \&? | ||
199 | if the user specified an unknown or ambiguous option, and | ||
200 | \-1 when the argument list has been exhausted. | ||
201 | .Sh EXAMPLES | ||
202 | .Bd -literal -compact | ||
203 | int bflag, ch, fd; | ||
204 | int daggerset; | ||
205 | |||
206 | /* options descriptor */ | ||
207 | static struct option longopts[] = { | ||
208 | { "buffy", no_argument, NULL, 'b' }, | ||
209 | { "fluoride", required_argument, NULL, 'f' }, | ||
210 | { "daggerset", no_argument, &daggerset, 1 }, | ||
211 | { NULL, 0, NULL, 0 } | ||
212 | }; | ||
213 | |||
214 | bflag = 0; | ||
215 | while ((ch = getopt_long(argc, argv, "bf:", longopts, NULL)) != -1) | ||
216 | switch (ch) { | ||
217 | case 'b': | ||
218 | bflag = 1; | ||
219 | break; | ||
220 | case 'f': | ||
221 | if ((fd = open(optarg, O_RDONLY, 0)) == -1) | ||
222 | err(1, "unable to open %s", optarg); | ||
223 | break; | ||
224 | case 0: | ||
225 | if (daggerset) { | ||
226 | fprintf(stderr,"Buffy will use her dagger to " | ||
227 | "apply fluoride to dracula's teeth\en"); | ||
228 | } | ||
229 | break; | ||
230 | default: | ||
231 | usage(); | ||
232 | } | ||
233 | argc -= optind; | ||
234 | argv += optind; | ||
235 | .Ed | ||
236 | .Sh IMPLEMENTATION DIFFERENCES | ||
237 | This section describes differences to the GNU implementation | ||
238 | found in glibc-2.1.3: | ||
239 | .Bl -tag -width "xxx" | ||
240 | .It Li o | ||
241 | handling of - as first char of option string in presence of | ||
242 | environment variable POSIXLY_CORRECT: | ||
243 | .Bl -tag -width "OpenBSD" | ||
244 | .It Li GNU | ||
245 | ignores POSIXLY_CORRECT and returns non-options as | ||
246 | arguments to option '\e1'. | ||
247 | .It Li OpenBSD | ||
248 | honors POSIXLY_CORRECT and stops at the first non-option. | ||
249 | .El | ||
250 | .It Li o | ||
251 | handling of - within the option string (not the first character): | ||
252 | .Bl -tag -width "OpenBSD" | ||
253 | .It Li GNU | ||
254 | treats a | ||
255 | .Ql - | ||
256 | on the command line as a non-argument. | ||
257 | .It Li OpenBSD | ||
258 | a | ||
259 | .Ql - | ||
260 | within the option string matches a | ||
261 | .Ql - | ||
262 | (single dash) on the command line. | ||
263 | This functionality is provided for backward compatibility with | ||
264 | programs, such as | ||
265 | .Xr su 1 , | ||
266 | that use | ||
267 | .Ql - | ||
268 | as an option flag. | ||
269 | This practice is wrong, and should not be used in any current development. | ||
270 | .El | ||
271 | .It Li o | ||
272 | handling of :: in options string in presence of POSIXLY_CORRECT: | ||
273 | .Bl -tag -width "OpenBSD" | ||
274 | .It Li Both | ||
275 | GNU and OpenBSD ignore POSIXLY_CORRECT here and take :: to | ||
276 | mean the preceding option takes an optional argument. | ||
277 | .El | ||
278 | .It Li o | ||
279 | return value in case of missing argument if first character | ||
280 | (after + or -) in option string is not ':': | ||
281 | .Bl -tag -width "OpenBSD" | ||
282 | .It Li GNU | ||
283 | returns '?' | ||
284 | .It OpenBSD | ||
285 | returns ':' (since OpenBSD's getopt does). | ||
286 | .El | ||
287 | .It Li o | ||
288 | handling of --a in getopt: | ||
289 | .Bl -tag -width "OpenBSD" | ||
290 | .It Li GNU | ||
291 | parses this as option '-', option 'a'. | ||
292 | .It Li OpenBSD | ||
293 | parses this as '--', and returns \-1 (ignoring the a). | ||
294 | (Because the original getopt does.) | ||
295 | .El | ||
296 | .It Li o | ||
297 | setting of optopt for long options with flag != | ||
298 | .Dv NULL : | ||
299 | .Bl -tag -width "OpenBSD" | ||
300 | .It Li GNU | ||
301 | sets optopt to val. | ||
302 | .It Li OpenBSD | ||
303 | sets optopt to 0 (since val would never be returned). | ||
304 | .El | ||
305 | .It Li o | ||
306 | handling of -W with W; in option string in getopt (not getopt_long): | ||
307 | .Bl -tag -width "OpenBSD" | ||
308 | .It Li GNU | ||
309 | causes a segfault. | ||
310 | .It Li OpenBSD | ||
311 | no special handling is done; | ||
312 | .Dq W; | ||
313 | is interpreted as two separate options, neither of which take an argument. | ||
314 | .El | ||
315 | .It Li o | ||
316 | setting of optarg for long options without an argument that are | ||
317 | invoked via -W (W; in option string): | ||
318 | .Bl -tag -width "OpenBSD" | ||
319 | .It Li GNU | ||
320 | sets optarg to the option name (the argument of -W). | ||
321 | .It Li OpenBSD | ||
322 | sets optarg to | ||
323 | .Dv NULL | ||
324 | (the argument of the long option). | ||
325 | .El | ||
326 | .It Li o | ||
327 | handling of -W with an argument that is not (a prefix to) a known | ||
328 | long option (W; in option string): | ||
329 | .Bl -tag -width "OpenBSD" | ||
330 | .It Li GNU | ||
331 | returns -W with optarg set to the unknown option. | ||
332 | .It Li OpenBSD | ||
333 | treats this as an error (unknown option) and returns '?' with | ||
334 | optopt set to 0 and optarg set to | ||
335 | .Dv NULL | ||
336 | (as GNU's man page documents). | ||
337 | .El | ||
338 | .It Li o | ||
339 | The error messages are different. | ||
340 | .It Li o | ||
341 | OpenBSD does not permute the argument vector at the same points in | ||
342 | the calling sequence as GNU does. | ||
343 | The aspects normally used by the caller | ||
344 | (ordering after \-1 is returned, value of optind relative | ||
345 | to current positions) are the same, though. | ||
346 | (We do fewer variable swaps.) | ||
347 | .El | ||
348 | .Sh ENVIRONMENT | ||
349 | .Bl -tag -width POSIXLY_CORRECT | ||
350 | .It Ev POSIXLY_CORRECT | ||
351 | If set, option processing stops when the first non-option is found and | ||
352 | a leading | ||
353 | .Sq - | ||
354 | or | ||
355 | .Sq + | ||
356 | in the | ||
357 | .Ar optstring | ||
358 | is ignored. | ||
359 | .El | ||
360 | .Sh SEE ALSO | ||
361 | .Xr getopt 3 | ||
362 | .Sh HISTORY | ||
363 | The | ||
364 | .Fn getopt_long | ||
365 | and | ||
366 | .Fn getopt_long_only | ||
367 | functions first appeared in GNU libiberty. | ||
368 | This implementation first appeared in | ||
369 | .Ox 3.3 . | ||
370 | .Sh BUGS | ||
371 | The | ||
372 | .Ar argv | ||
373 | argument is not really | ||
374 | .Dv const | ||
375 | as its elements may be permuted (unless | ||
376 | .Ev POSIXLY_CORRECT | ||
377 | is set). | ||
diff --git a/src/lib/libc/stdlib/getopt_long.c b/src/lib/libc/stdlib/getopt_long.c new file mode 100644 index 0000000000..6ddc8e2060 --- /dev/null +++ b/src/lib/libc/stdlib/getopt_long.c | |||
@@ -0,0 +1,537 @@ | |||
1 | /* $OpenBSD: getopt_long.c,v 1.18 2005/03/30 18:51:49 pat Exp $ */ | ||
2 | /* $NetBSD: getopt_long.c,v 1.15 2002/01/31 22:43:40 tv Exp $ */ | ||
3 | |||
4 | /* | ||
5 | * Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> | ||
6 | * | ||
7 | * Permission to use, copy, modify, and distribute this software for any | ||
8 | * purpose with or without fee is hereby granted, provided that the above | ||
9 | * copyright notice and this permission notice appear in all copies. | ||
10 | * | ||
11 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
12 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
13 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
14 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
15 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
16 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
17 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
18 | * | ||
19 | * Sponsored in part by the Defense Advanced Research Projects | ||
20 | * Agency (DARPA) and Air Force Research Laboratory, Air Force | ||
21 | * Materiel Command, USAF, under agreement number F39502-99-1-0512. | ||
22 | */ | ||
23 | /*- | ||
24 | * Copyright (c) 2000 The NetBSD Foundation, Inc. | ||
25 | * All rights reserved. | ||
26 | * | ||
27 | * This code is derived from software contributed to The NetBSD Foundation | ||
28 | * by Dieter Baron and Thomas Klausner. | ||
29 | * | ||
30 | * Redistribution and use in source and binary forms, with or without | ||
31 | * modification, are permitted provided that the following conditions | ||
32 | * are met: | ||
33 | * 1. Redistributions of source code must retain the above copyright | ||
34 | * notice, this list of conditions and the following disclaimer. | ||
35 | * 2. Redistributions in binary form must reproduce the above copyright | ||
36 | * notice, this list of conditions and the following disclaimer in the | ||
37 | * documentation and/or other materials provided with the distribution. | ||
38 | * 3. All advertising materials mentioning features or use of this software | ||
39 | * must display the following acknowledgement: | ||
40 | * This product includes software developed by the NetBSD | ||
41 | * Foundation, Inc. and its contributors. | ||
42 | * 4. Neither the name of The NetBSD Foundation nor the names of its | ||
43 | * contributors may be used to endorse or promote products derived | ||
44 | * from this software without specific prior written permission. | ||
45 | * | ||
46 | * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | ||
47 | * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | ||
48 | * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
49 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | ||
50 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
51 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
52 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
53 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
54 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
55 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
56 | * POSSIBILITY OF SUCH DAMAGE. | ||
57 | */ | ||
58 | |||
59 | #if defined(LIBC_SCCS) && !defined(lint) | ||
60 | static char *rcsid = "$OpenBSD: getopt_long.c,v 1.18 2005/03/30 18:51:49 pat Exp $"; | ||
61 | #endif /* LIBC_SCCS and not lint */ | ||
62 | |||
63 | #include <err.h> | ||
64 | #include <errno.h> | ||
65 | #include <getopt.h> | ||
66 | #include <stdlib.h> | ||
67 | #include <string.h> | ||
68 | |||
69 | #define REPLACE_GETOPT /* use this getopt as the system getopt(3) */ | ||
70 | |||
71 | #ifdef REPLACE_GETOPT | ||
72 | int opterr = 1; /* if error message should be printed */ | ||
73 | int optind = 1; /* index into parent argv vector */ | ||
74 | int optopt = '?'; /* character checked for validity */ | ||
75 | int optreset; /* reset getopt */ | ||
76 | char *optarg; /* argument associated with option */ | ||
77 | #endif | ||
78 | |||
79 | #define PRINT_ERROR ((opterr) && (*options != ':')) | ||
80 | |||
81 | #define FLAG_PERMUTE 0x01 /* permute non-options to the end of argv */ | ||
82 | #define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */ | ||
83 | #define FLAG_LONGONLY 0x04 /* operate as getopt_long_only */ | ||
84 | |||
85 | /* return values */ | ||
86 | #define BADCH (int)'?' | ||
87 | #define BADARG ((*options == ':') ? (int)':' : (int)'?') | ||
88 | #define INORDER (int)1 | ||
89 | |||
90 | #define EMSG "" | ||
91 | |||
92 | static int getopt_internal(int, char * const *, const char *, | ||
93 | const struct option *, int *, int); | ||
94 | static int parse_long_options(char * const *, const char *, | ||
95 | const struct option *, int *, int); | ||
96 | static int gcd(int, int); | ||
97 | static void permute_args(int, int, int, char * const *); | ||
98 | |||
99 | static char *place = EMSG; /* option letter processing */ | ||
100 | |||
101 | /* XXX: set optreset to 1 rather than these two */ | ||
102 | static int nonopt_start = -1; /* first non option argument (for permute) */ | ||
103 | static int nonopt_end = -1; /* first option after non options (for permute) */ | ||
104 | |||
105 | /* Error messages */ | ||
106 | static const char recargchar[] = "option requires an argument -- %c"; | ||
107 | static const char recargstring[] = "option requires an argument -- %s"; | ||
108 | static const char ambig[] = "ambiguous option -- %.*s"; | ||
109 | static const char noarg[] = "option doesn't take an argument -- %.*s"; | ||
110 | static const char illoptchar[] = "unknown option -- %c"; | ||
111 | static const char illoptstring[] = "unknown option -- %s"; | ||
112 | |||
113 | /* | ||
114 | * Compute the greatest common divisor of a and b. | ||
115 | */ | ||
116 | static int | ||
117 | gcd(int a, int b) | ||
118 | { | ||
119 | int c; | ||
120 | |||
121 | c = a % b; | ||
122 | while (c != 0) { | ||
123 | a = b; | ||
124 | b = c; | ||
125 | c = a % b; | ||
126 | } | ||
127 | |||
128 | return (b); | ||
129 | } | ||
130 | |||
131 | /* | ||
132 | * Exchange the block from nonopt_start to nonopt_end with the block | ||
133 | * from nonopt_end to opt_end (keeping the same order of arguments | ||
134 | * in each block). | ||
135 | */ | ||
136 | static void | ||
137 | permute_args(int panonopt_start, int panonopt_end, int opt_end, | ||
138 | char * const *nargv) | ||
139 | { | ||
140 | int cstart, cyclelen, i, j, ncycle, nnonopts, nopts, pos; | ||
141 | char *swap; | ||
142 | |||
143 | /* | ||
144 | * compute lengths of blocks and number and size of cycles | ||
145 | */ | ||
146 | nnonopts = panonopt_end - panonopt_start; | ||
147 | nopts = opt_end - panonopt_end; | ||
148 | ncycle = gcd(nnonopts, nopts); | ||
149 | cyclelen = (opt_end - panonopt_start) / ncycle; | ||
150 | |||
151 | for (i = 0; i < ncycle; i++) { | ||
152 | cstart = panonopt_end+i; | ||
153 | pos = cstart; | ||
154 | for (j = 0; j < cyclelen; j++) { | ||
155 | if (pos >= panonopt_end) | ||
156 | pos -= nnonopts; | ||
157 | else | ||
158 | pos += nopts; | ||
159 | swap = nargv[pos]; | ||
160 | /* LINTED const cast */ | ||
161 | ((char **) nargv)[pos] = nargv[cstart]; | ||
162 | /* LINTED const cast */ | ||
163 | ((char **)nargv)[cstart] = swap; | ||
164 | } | ||
165 | } | ||
166 | } | ||
167 | |||
168 | /* | ||
169 | * parse_long_options -- | ||
170 | * Parse long options in argc/argv argument vector. | ||
171 | * Returns -1 if short_too is set and the option does not match long_options. | ||
172 | */ | ||
173 | static int | ||
174 | parse_long_options(char * const *nargv, const char *options, | ||
175 | const struct option *long_options, int *idx, int short_too) | ||
176 | { | ||
177 | char *current_argv, *has_equal; | ||
178 | size_t current_argv_len; | ||
179 | int i, match; | ||
180 | |||
181 | current_argv = place; | ||
182 | match = -1; | ||
183 | |||
184 | optind++; | ||
185 | |||
186 | if ((has_equal = strchr(current_argv, '=')) != NULL) { | ||
187 | /* argument found (--option=arg) */ | ||
188 | current_argv_len = has_equal - current_argv; | ||
189 | has_equal++; | ||
190 | } else | ||
191 | current_argv_len = strlen(current_argv); | ||
192 | |||
193 | for (i = 0; long_options[i].name; i++) { | ||
194 | /* find matching long option */ | ||
195 | if (strncmp(current_argv, long_options[i].name, | ||
196 | current_argv_len)) | ||
197 | continue; | ||
198 | |||
199 | if (strlen(long_options[i].name) == current_argv_len) { | ||
200 | /* exact match */ | ||
201 | match = i; | ||
202 | break; | ||
203 | } | ||
204 | /* | ||
205 | * If this is a known short option, don't allow | ||
206 | * a partial match of a single character. | ||
207 | */ | ||
208 | if (short_too && current_argv_len == 1) | ||
209 | continue; | ||
210 | |||
211 | if (match == -1) /* partial match */ | ||
212 | match = i; | ||
213 | else { | ||
214 | /* ambiguous abbreviation */ | ||
215 | if (PRINT_ERROR) | ||
216 | warnx(ambig, (int)current_argv_len, | ||
217 | current_argv); | ||
218 | optopt = 0; | ||
219 | return (BADCH); | ||
220 | } | ||
221 | } | ||
222 | if (match != -1) { /* option found */ | ||
223 | if (long_options[match].has_arg == no_argument | ||
224 | && has_equal) { | ||
225 | if (PRINT_ERROR) | ||
226 | warnx(noarg, (int)current_argv_len, | ||
227 | current_argv); | ||
228 | /* | ||
229 | * XXX: GNU sets optopt to val regardless of flag | ||
230 | */ | ||
231 | if (long_options[match].flag == NULL) | ||
232 | optopt = long_options[match].val; | ||
233 | else | ||
234 | optopt = 0; | ||
235 | return (BADARG); | ||
236 | } | ||
237 | if (long_options[match].has_arg == required_argument || | ||
238 | long_options[match].has_arg == optional_argument) { | ||
239 | if (has_equal) | ||
240 | optarg = has_equal; | ||
241 | else if (long_options[match].has_arg == | ||
242 | required_argument) { | ||
243 | /* | ||
244 | * optional argument doesn't use next nargv | ||
245 | */ | ||
246 | optarg = nargv[optind++]; | ||
247 | } | ||
248 | } | ||
249 | if ((long_options[match].has_arg == required_argument) | ||
250 | && (optarg == NULL)) { | ||
251 | /* | ||
252 | * Missing argument; leading ':' indicates no error | ||
253 | * should be generated. | ||
254 | */ | ||
255 | if (PRINT_ERROR) | ||
256 | warnx(recargstring, | ||
257 | current_argv); | ||
258 | /* | ||
259 | * XXX: GNU sets optopt to val regardless of flag | ||
260 | */ | ||
261 | if (long_options[match].flag == NULL) | ||
262 | optopt = long_options[match].val; | ||
263 | else | ||
264 | optopt = 0; | ||
265 | --optind; | ||
266 | return (BADARG); | ||
267 | } | ||
268 | } else { /* unknown option */ | ||
269 | if (short_too) { | ||
270 | --optind; | ||
271 | return (-1); | ||
272 | } | ||
273 | if (PRINT_ERROR) | ||
274 | warnx(illoptstring, current_argv); | ||
275 | optopt = 0; | ||
276 | return (BADCH); | ||
277 | } | ||
278 | if (idx) | ||
279 | *idx = match; | ||
280 | if (long_options[match].flag) { | ||
281 | *long_options[match].flag = long_options[match].val; | ||
282 | return (0); | ||
283 | } else | ||
284 | return (long_options[match].val); | ||
285 | } | ||
286 | |||
287 | /* | ||
288 | * getopt_internal -- | ||
289 | * Parse argc/argv argument vector. Called by user level routines. | ||
290 | */ | ||
291 | static int | ||
292 | getopt_internal(int nargc, char * const *nargv, const char *options, | ||
293 | const struct option *long_options, int *idx, int flags) | ||
294 | { | ||
295 | char *oli; /* option letter list index */ | ||
296 | int optchar, short_too; | ||
297 | static int posixly_correct = -1; | ||
298 | |||
299 | if (options == NULL) | ||
300 | return (-1); | ||
301 | |||
302 | /* | ||
303 | * Disable GNU extensions if POSIXLY_CORRECT is set or options | ||
304 | * string begins with a '+'. | ||
305 | */ | ||
306 | if (posixly_correct == -1) | ||
307 | posixly_correct = (getenv("POSIXLY_CORRECT") != NULL); | ||
308 | if (posixly_correct || *options == '+') | ||
309 | flags &= ~FLAG_PERMUTE; | ||
310 | else if (*options == '-') | ||
311 | flags |= FLAG_ALLARGS; | ||
312 | if (*options == '+' || *options == '-') | ||
313 | options++; | ||
314 | |||
315 | /* | ||
316 | * XXX Some GNU programs (like cvs) set optind to 0 instead of | ||
317 | * XXX using optreset. Work around this braindamage. | ||
318 | */ | ||
319 | if (optind == 0) | ||
320 | optind = optreset = 1; | ||
321 | |||
322 | optarg = NULL; | ||
323 | if (optreset) | ||
324 | nonopt_start = nonopt_end = -1; | ||
325 | start: | ||
326 | if (optreset || !*place) { /* update scanning pointer */ | ||
327 | optreset = 0; | ||
328 | if (optind >= nargc) { /* end of argument vector */ | ||
329 | place = EMSG; | ||
330 | if (nonopt_end != -1) { | ||
331 | /* do permutation, if we have to */ | ||
332 | permute_args(nonopt_start, nonopt_end, | ||
333 | optind, nargv); | ||
334 | optind -= nonopt_end - nonopt_start; | ||
335 | } | ||
336 | else if (nonopt_start != -1) { | ||
337 | /* | ||
338 | * If we skipped non-options, set optind | ||
339 | * to the first of them. | ||
340 | */ | ||
341 | optind = nonopt_start; | ||
342 | } | ||
343 | nonopt_start = nonopt_end = -1; | ||
344 | return (-1); | ||
345 | } | ||
346 | if (*(place = nargv[optind]) != '-' || | ||
347 | (place[1] == '\0' && strchr(options, '-') == NULL)) { | ||
348 | place = EMSG; /* found non-option */ | ||
349 | if (flags & FLAG_ALLARGS) { | ||
350 | /* | ||
351 | * GNU extension: | ||
352 | * return non-option as argument to option 1 | ||
353 | */ | ||
354 | optarg = nargv[optind++]; | ||
355 | return (INORDER); | ||
356 | } | ||
357 | if (!(flags & FLAG_PERMUTE)) { | ||
358 | /* | ||
359 | * If no permutation wanted, stop parsing | ||
360 | * at first non-option. | ||
361 | */ | ||
362 | return (-1); | ||
363 | } | ||
364 | /* do permutation */ | ||
365 | if (nonopt_start == -1) | ||
366 | nonopt_start = optind; | ||
367 | else if (nonopt_end != -1) { | ||
368 | permute_args(nonopt_start, nonopt_end, | ||
369 | optind, nargv); | ||
370 | nonopt_start = optind - | ||
371 | (nonopt_end - nonopt_start); | ||
372 | nonopt_end = -1; | ||
373 | } | ||
374 | optind++; | ||
375 | /* process next argument */ | ||
376 | goto start; | ||
377 | } | ||
378 | if (nonopt_start != -1 && nonopt_end == -1) | ||
379 | nonopt_end = optind; | ||
380 | |||
381 | /* | ||
382 | * If we have "-" do nothing, if "--" we are done. | ||
383 | */ | ||
384 | if (place[1] != '\0' && *++place == '-' && place[1] == '\0') { | ||
385 | optind++; | ||
386 | place = EMSG; | ||
387 | /* | ||
388 | * We found an option (--), so if we skipped | ||
389 | * non-options, we have to permute. | ||
390 | */ | ||
391 | if (nonopt_end != -1) { | ||
392 | permute_args(nonopt_start, nonopt_end, | ||
393 | optind, nargv); | ||
394 | optind -= nonopt_end - nonopt_start; | ||
395 | } | ||
396 | nonopt_start = nonopt_end = -1; | ||
397 | return (-1); | ||
398 | } | ||
399 | } | ||
400 | |||
401 | /* | ||
402 | * Check long options if: | ||
403 | * 1) we were passed some | ||
404 | * 2) the arg is not just "-" | ||
405 | * 3) either the arg starts with -- we are getopt_long_only() | ||
406 | */ | ||
407 | if (long_options != NULL && place != nargv[optind] && | ||
408 | (*place == '-' || (flags & FLAG_LONGONLY))) { | ||
409 | short_too = 0; | ||
410 | if (*place == '-') | ||
411 | place++; /* --foo long option */ | ||
412 | else if (*place != ':' && strchr(options, *place) != NULL) | ||
413 | short_too = 1; /* could be short option too */ | ||
414 | |||
415 | optchar = parse_long_options(nargv, options, long_options, | ||
416 | idx, short_too); | ||
417 | if (optchar != -1) { | ||
418 | place = EMSG; | ||
419 | return (optchar); | ||
420 | } | ||
421 | } | ||
422 | |||
423 | if ((optchar = (int)*place++) == (int)':' || | ||
424 | optchar == (int)'-' && *place != '\0' || | ||
425 | (oli = strchr(options, optchar)) == NULL) { | ||
426 | /* | ||
427 | * If the user specified "-" and '-' isn't listed in | ||
428 | * options, return -1 (non-option) as per POSIX. | ||
429 | * Otherwise, it is an unknown option character (or ':'). | ||
430 | */ | ||
431 | if (optchar == (int)'-' && *place == '\0') | ||
432 | return (-1); | ||
433 | if (!*place) | ||
434 | ++optind; | ||
435 | if (PRINT_ERROR) | ||
436 | warnx(illoptchar, optchar); | ||
437 | optopt = optchar; | ||
438 | return (BADCH); | ||
439 | } | ||
440 | if (long_options != NULL && optchar == 'W' && oli[1] == ';') { | ||
441 | /* -W long-option */ | ||
442 | if (*place) /* no space */ | ||
443 | /* NOTHING */; | ||
444 | else if (++optind >= nargc) { /* no arg */ | ||
445 | place = EMSG; | ||
446 | if (PRINT_ERROR) | ||
447 | warnx(recargchar, optchar); | ||
448 | optopt = optchar; | ||
449 | return (BADARG); | ||
450 | } else /* white space */ | ||
451 | place = nargv[optind]; | ||
452 | optchar = parse_long_options(nargv, options, long_options, | ||
453 | idx, 0); | ||
454 | place = EMSG; | ||
455 | return (optchar); | ||
456 | } | ||
457 | if (*++oli != ':') { /* doesn't take argument */ | ||
458 | if (!*place) | ||
459 | ++optind; | ||
460 | } else { /* takes (optional) argument */ | ||
461 | optarg = NULL; | ||
462 | if (*place) /* no white space */ | ||
463 | optarg = place; | ||
464 | /* XXX: disable test for :: if PC? (GNU doesn't) */ | ||
465 | else if (oli[1] != ':') { /* arg not optional */ | ||
466 | if (++optind >= nargc) { /* no arg */ | ||
467 | place = EMSG; | ||
468 | if (PRINT_ERROR) | ||
469 | warnx(recargchar, optchar); | ||
470 | optopt = optchar; | ||
471 | return (BADARG); | ||
472 | } else | ||
473 | optarg = nargv[optind]; | ||
474 | } else if (!(flags & FLAG_PERMUTE)) { | ||
475 | /* | ||
476 | * If permutation is disabled, we can accept an | ||
477 | * optional arg separated by whitespace so long | ||
478 | * as it does not start with a dash (-). | ||
479 | */ | ||
480 | if (optind + 1 < nargc && *nargv[optind + 1] != '-') | ||
481 | optarg = nargv[++optind]; | ||
482 | } | ||
483 | place = EMSG; | ||
484 | ++optind; | ||
485 | } | ||
486 | /* dump back option letter */ | ||
487 | return (optchar); | ||
488 | } | ||
489 | |||
490 | #ifdef REPLACE_GETOPT | ||
491 | /* | ||
492 | * getopt -- | ||
493 | * Parse argc/argv argument vector. | ||
494 | * | ||
495 | * [eventually this will replace the BSD getopt] | ||
496 | */ | ||
497 | int | ||
498 | getopt(int nargc, char * const *nargv, const char *options) | ||
499 | { | ||
500 | |||
501 | /* | ||
502 | * We dont' pass FLAG_PERMUTE to getopt_internal() since | ||
503 | * the BSD getopt(3) (unlike GNU) has never done this. | ||
504 | * | ||
505 | * Furthermore, since many privileged programs call getopt() | ||
506 | * before dropping privileges it makes sense to keep things | ||
507 | * as simple (and bug-free) as possible. | ||
508 | */ | ||
509 | return (getopt_internal(nargc, nargv, options, NULL, NULL, 0)); | ||
510 | } | ||
511 | #endif /* REPLACE_GETOPT */ | ||
512 | |||
513 | /* | ||
514 | * getopt_long -- | ||
515 | * Parse argc/argv argument vector. | ||
516 | */ | ||
517 | int | ||
518 | getopt_long(int nargc, char * const *nargv, const char *options, | ||
519 | const struct option *long_options, int *idx) | ||
520 | { | ||
521 | |||
522 | return (getopt_internal(nargc, nargv, options, long_options, idx, | ||
523 | FLAG_PERMUTE)); | ||
524 | } | ||
525 | |||
526 | /* | ||
527 | * getopt_long_only -- | ||
528 | * Parse argc/argv argument vector. | ||
529 | */ | ||
530 | int | ||
531 | getopt_long_only(int nargc, char * const *nargv, const char *options, | ||
532 | const struct option *long_options, int *idx) | ||
533 | { | ||
534 | |||
535 | return (getopt_internal(nargc, nargv, options, long_options, idx, | ||
536 | FLAG_PERMUTE|FLAG_LONGONLY)); | ||
537 | } | ||
diff --git a/src/lib/libc/stdlib/getsubopt.3 b/src/lib/libc/stdlib/getsubopt.3 new file mode 100644 index 0000000000..6cb4975ced --- /dev/null +++ b/src/lib/libc/stdlib/getsubopt.3 | |||
@@ -0,0 +1,143 @@ | |||
1 | .\" $OpenBSD: getsubopt.3,v 1.9 2005/02/25 03:12:44 cloder Exp $ | ||
2 | .\" | ||
3 | .\" Copyright (c) 1990, 1991, 1993 | ||
4 | .\" The Regents of the University of California. 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 | .\" 3. Neither the name of the University nor the names of its contributors | ||
15 | .\" may be used to endorse or promote products derived from this software | ||
16 | .\" without specific prior written permission. | ||
17 | .\" | ||
18 | .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | ||
19 | .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
20 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
21 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | ||
22 | .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
23 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
24 | .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
25 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
26 | .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
27 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
28 | .\" SUCH DAMAGE. | ||
29 | .\" | ||
30 | .\" @(#)getsubopt.3 8.1 (Berkeley) 6/9/93 | ||
31 | .\" | ||
32 | .Dd June 9, 1993 | ||
33 | .Dt GETSUBOPT 3 | ||
34 | .Os | ||
35 | .Sh NAME | ||
36 | .Nm getsubopt | ||
37 | .Nd get sub options from an argument | ||
38 | .Sh SYNOPSIS | ||
39 | .Fd #include <stdlib.h> | ||
40 | .Vt extern char *suboptarg; | ||
41 | .Ft int | ||
42 | .Fn getsubopt "char **optionp" "char * const *tokens" "char **valuep" | ||
43 | .Sh DESCRIPTION | ||
44 | The | ||
45 | .Fn getsubopt | ||
46 | function parses a string containing tokens delimited by one or more | ||
47 | tab, space or comma | ||
48 | .Pq Ql \&, | ||
49 | characters. | ||
50 | It is intended for use in parsing groups of option arguments provided | ||
51 | as part of a utility command line. | ||
52 | .Pp | ||
53 | The argument | ||
54 | .Fa optionp | ||
55 | is a pointer to a pointer to the string. | ||
56 | The argument | ||
57 | .Fa tokens | ||
58 | is a pointer to a null-terminated array of pointers to strings. | ||
59 | .Pp | ||
60 | The | ||
61 | .Fn getsubopt | ||
62 | function returns the zero-based offset of the pointer in the | ||
63 | .Fa tokens | ||
64 | array referencing a string which matches the first token | ||
65 | in the string, or \-1 if the string contains no tokens or | ||
66 | .Fa tokens | ||
67 | does not contain a matching string. | ||
68 | .Pp | ||
69 | If the token is of the form | ||
70 | .Ar name Ns = Ns Ar value , | ||
71 | the location referenced by | ||
72 | .Fa valuep | ||
73 | will be set to point to the start of the | ||
74 | .Dq value | ||
75 | portion of the token. | ||
76 | .Pp | ||
77 | On return from | ||
78 | .Fn getsubopt , | ||
79 | .Fa optionp | ||
80 | will be set to point to the start of the next token in the string, | ||
81 | or the NUL at the end of the string if no more tokens are present. | ||
82 | The external variable | ||
83 | .Fa suboptarg | ||
84 | will be set to point to the start of the current token, or | ||
85 | .Dv NULL | ||
86 | if no tokens were present. | ||
87 | The argument | ||
88 | .Fa valuep | ||
89 | will be set to point to the value portion of the token, or | ||
90 | .Dv NULL | ||
91 | if no value portion was present. | ||
92 | .Sh EXAMPLES | ||
93 | .Bd -literal -compact | ||
94 | char *tokens[] = { | ||
95 | #define ONE 0 | ||
96 | "one", | ||
97 | #define TWO 1 | ||
98 | "two", | ||
99 | NULL | ||
100 | }; | ||
101 | |||
102 | \&... | ||
103 | |||
104 | extern char *optarg, *suboptarg; | ||
105 | char *options, *value; | ||
106 | |||
107 | while ((ch = getopt(argc, argv, "ab:")) != \-1) { | ||
108 | switch(ch) { | ||
109 | case 'a': | ||
110 | /* process ``a'' option */ | ||
111 | break; | ||
112 | case 'b': | ||
113 | options = optarg; | ||
114 | while (*options) { | ||
115 | switch(getsubopt(&options, tokens, &value)) { | ||
116 | case ONE: | ||
117 | /* process ``one'' sub option */ | ||
118 | break; | ||
119 | case TWO: | ||
120 | /* process ``two'' sub option */ | ||
121 | if (!value) | ||
122 | error("no value for two"); | ||
123 | i = atoi(value); | ||
124 | break; | ||
125 | case \-1: | ||
126 | if (suboptarg) | ||
127 | error("illegal sub option %s", | ||
128 | suboptarg); | ||
129 | else | ||
130 | error("missing sub option"); | ||
131 | break; | ||
132 | } | ||
133 | break; | ||
134 | } | ||
135 | .Ed | ||
136 | .Sh SEE ALSO | ||
137 | .Xr getopt 3 , | ||
138 | .Xr strsep 3 | ||
139 | .Sh HISTORY | ||
140 | The | ||
141 | .Fn getsubopt | ||
142 | function first appeared in | ||
143 | .Bx 4.4 . | ||
diff --git a/src/lib/libc/stdlib/getsubopt.c b/src/lib/libc/stdlib/getsubopt.c new file mode 100644 index 0000000000..dfd7a50bd8 --- /dev/null +++ b/src/lib/libc/stdlib/getsubopt.c | |||
@@ -0,0 +1,100 @@ | |||
1 | /* $OpenBSD: getsubopt.c,v 1.3 2005/03/30 18:51:49 pat Exp $ */ | ||
2 | |||
3 | /*- | ||
4 | * Copyright (c) 1990, 1993 | ||
5 | * The Regents of the University of California. 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 | * 1. Redistributions of source code must retain the above copyright | ||
11 | * notice, this list of conditions and the following disclaimer. | ||
12 | * 2. Redistributions in binary form must reproduce the above copyright | ||
13 | * notice, this list of conditions and the following disclaimer in the | ||
14 | * documentation and/or other materials provided with the distribution. | ||
15 | * 3. Neither the name of the University nor the names of its contributors | ||
16 | * may be used to endorse or promote products derived from this software | ||
17 | * without specific prior written permission. | ||
18 | * | ||
19 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | ||
20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | ||
23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
29 | * SUCH DAMAGE. | ||
30 | */ | ||
31 | |||
32 | #ifndef lint | ||
33 | #if 0 | ||
34 | static char sccsid[] = "@(#)getsubopt.c 8.1 (Berkeley) 6/4/93"; | ||
35 | #else | ||
36 | static char rcsid[] = "$OpenBSD: getsubopt.c,v 1.3 2005/03/30 18:51:49 pat Exp $"; | ||
37 | #endif | ||
38 | #endif /* not lint */ | ||
39 | |||
40 | #include <unistd.h> | ||
41 | #include <stdlib.h> | ||
42 | #include <string.h> | ||
43 | |||
44 | /* | ||
45 | * The SVID interface to getsubopt provides no way of figuring out which | ||
46 | * part of the suboptions list wasn't matched. This makes error messages | ||
47 | * tricky... The extern variable suboptarg is a pointer to the token | ||
48 | * which didn't match. | ||
49 | */ | ||
50 | char *suboptarg; | ||
51 | |||
52 | int | ||
53 | getsubopt(char **optionp, char * const *tokens, char **valuep) | ||
54 | { | ||
55 | int cnt; | ||
56 | char *p; | ||
57 | |||
58 | suboptarg = *valuep = NULL; | ||
59 | |||
60 | if (!optionp || !*optionp) | ||
61 | return(-1); | ||
62 | |||
63 | /* skip leading white-space, commas */ | ||
64 | for (p = *optionp; *p && (*p == ',' || *p == ' ' || *p == '\t'); ++p); | ||
65 | |||
66 | if (!*p) { | ||
67 | *optionp = p; | ||
68 | return(-1); | ||
69 | } | ||
70 | |||
71 | /* save the start of the token, and skip the rest of the token. */ | ||
72 | for (suboptarg = p; | ||
73 | *++p && *p != ',' && *p != '=' && *p != ' ' && *p != '\t';); | ||
74 | |||
75 | if (*p) { | ||
76 | /* | ||
77 | * If there's an equals sign, set the value pointer, and | ||
78 | * skip over the value part of the token. Terminate the | ||
79 | * token. | ||
80 | */ | ||
81 | if (*p == '=') { | ||
82 | *p = '\0'; | ||
83 | for (*valuep = ++p; | ||
84 | *p && *p != ',' && *p != ' ' && *p != '\t'; ++p); | ||
85 | if (*p) | ||
86 | *p++ = '\0'; | ||
87 | } else | ||
88 | *p++ = '\0'; | ||
89 | /* Skip any whitespace or commas after this token. */ | ||
90 | for (; *p && (*p == ',' || *p == ' ' || *p == '\t'); ++p); | ||
91 | } | ||
92 | |||
93 | /* set optionp for next round. */ | ||
94 | *optionp = p; | ||
95 | |||
96 | for (cnt = 0; *tokens; ++tokens, ++cnt) | ||
97 | if (!strcmp(suboptarg, *tokens)) | ||
98 | return(cnt); | ||
99 | return(-1); | ||
100 | } | ||
diff --git a/src/lib/libc/stdlib/hcreate.3 b/src/lib/libc/stdlib/hcreate.3 new file mode 100644 index 0000000000..d1d4e5c185 --- /dev/null +++ b/src/lib/libc/stdlib/hcreate.3 | |||
@@ -0,0 +1,195 @@ | |||
1 | .\" $OpenBSD: hcreate.3,v 1.1 2004/06/24 04:43:33 millert Exp $ | ||
2 | .\" $NetBSD: hcreate.3,v 1.6 2003/04/16 13:34:46 wiz Exp $ | ||
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 Klaus Klein. | ||
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 | .\" 3. All advertising materials mentioning features or use of this software | ||
19 | .\" must display the following acknowledgement: | ||
20 | .\" This product includes software developed by the NetBSD | ||
21 | .\" Foundation, Inc. and its contributors. | ||
22 | .\" 4. Neither the name of The NetBSD Foundation nor the names of its | ||
23 | .\" contributors may be used to endorse or promote products derived | ||
24 | .\" from this software without specific prior written permission. | ||
25 | .\" | ||
26 | .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS | ||
27 | .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | ||
28 | .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
29 | .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS | ||
30 | .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
31 | .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
32 | .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
33 | .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
34 | .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
35 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
36 | .\" POSSIBILITY OF SUCH DAMAGE. | ||
37 | .\" | ||
38 | .Dd February 13, 2001 | ||
39 | .Dt HCREATE 3 | ||
40 | .Os | ||
41 | .Sh NAME | ||
42 | .Nm hcreate , | ||
43 | .Nm hdestroy , | ||
44 | .Nm hsearch | ||
45 | .Nd manage hash search table | ||
46 | .Sh SYNOPSIS | ||
47 | .In search.h | ||
48 | .Ft int | ||
49 | .Fn hcreate "size_t nel" | ||
50 | .Ft void | ||
51 | .Fn hdestroy "void" | ||
52 | .Ft ENTRY * | ||
53 | .Fn hsearch "ENTRY item" "ACTION action" | ||
54 | .Sh DESCRIPTION | ||
55 | The | ||
56 | .Fn hcreate , | ||
57 | .Fn hdestroy | ||
58 | and | ||
59 | .Fn hsearch | ||
60 | functions manage hash search tables. | ||
61 | .Pp | ||
62 | The | ||
63 | .Fn hcreate | ||
64 | function allocates and initializes the table. | ||
65 | The | ||
66 | .Fa nel | ||
67 | argument specifies an estimate of the maximum number of entries to be held | ||
68 | by the table. | ||
69 | Unless further memory allocation fails, supplying an insufficient | ||
70 | .Fa nel | ||
71 | value will not result in functional harm, although a performance degradation | ||
72 | may occur. | ||
73 | Initialization using the | ||
74 | .Fn hcreate | ||
75 | function is mandatory prior to any access operations using | ||
76 | .Fn hsearch . | ||
77 | .Pp | ||
78 | The | ||
79 | .Fn hdestroy | ||
80 | function destroys a table previously created using | ||
81 | .Fn hcreate . | ||
82 | After a call to | ||
83 | .Fn hdestroy , | ||
84 | the data can no longer be accessed. | ||
85 | .Pp | ||
86 | The | ||
87 | .Fn hsearch | ||
88 | function is used to search to the hash table. | ||
89 | It returns a pointer into the | ||
90 | hash table indicating the address of an item. | ||
91 | The | ||
92 | .Fa item | ||
93 | argument is of type | ||
94 | .Dv ENTRY , | ||
95 | a structural type which contains the following members: | ||
96 | .Bl -tag -compact -offset indent -width voidX*dataXX | ||
97 | .It Fa char *key | ||
98 | comparison key. | ||
99 | .It Fa void *data | ||
100 | pointer to data associated with | ||
101 | .Fa key . | ||
102 | .El | ||
103 | .Pp | ||
104 | The key comparison function used by | ||
105 | .Fn hsearch | ||
106 | is | ||
107 | .Xr strcmp 3 . | ||
108 | .Pp | ||
109 | The | ||
110 | .Fa action | ||
111 | argument is of type | ||
112 | .Dv ACTION , | ||
113 | an enumeration type which defines the following values: | ||
114 | .Bl -tag -compact -offset indent -width ENTERXX | ||
115 | .It Dv ENTER | ||
116 | Insert | ||
117 | .Fa item | ||
118 | into the hash table. | ||
119 | If an existing item with the same key is found, it is not replaced. | ||
120 | Note that the | ||
121 | .Fa key | ||
122 | and | ||
123 | .Fa data | ||
124 | elements of | ||
125 | .Fa item | ||
126 | are used directly by the new table entry. | ||
127 | The storage for the | ||
128 | key must not be modified during the lifetime of the hash table. | ||
129 | .It Dv FIND | ||
130 | Search the hash table without inserting | ||
131 | .Fa item . | ||
132 | .El | ||
133 | .Sh RETURN VALUES | ||
134 | If successful, the | ||
135 | .Fn hcreate | ||
136 | function returns a non-zero value. | ||
137 | Otherwise, a value of 0 is returned and | ||
138 | .Va errno | ||
139 | is set to indicate the error. | ||
140 | .Pp | ||
141 | The | ||
142 | .Fn hdestroy | ||
143 | functions | ||
144 | returns no value. | ||
145 | .Pp | ||
146 | If successful, the | ||
147 | .Fn hsearch | ||
148 | function returns a pointer to hash table entry matching | ||
149 | the provided key. | ||
150 | If the action is | ||
151 | .Dv FIND | ||
152 | and the item was not found, or if the action is | ||
153 | .Dv ENTER | ||
154 | and the insertion failed, | ||
155 | .Dv NULL | ||
156 | is returned and | ||
157 | .Va errno | ||
158 | is set to indicate the error. | ||
159 | If the action is | ||
160 | .Dv ENTER | ||
161 | and an entry already existed in the table matching the given | ||
162 | key, the existing entry is returned and is not replaced. | ||
163 | .Sh ERRORS | ||
164 | The | ||
165 | .Fn hcreate | ||
166 | and | ||
167 | .Fn hsearch | ||
168 | functions will fail if: | ||
169 | .Bl -tag -width Er | ||
170 | .It Bq Er ENOMEM | ||
171 | Insufficient memory is available. | ||
172 | .El | ||
173 | .Sh SEE ALSO | ||
174 | .Xr bsearch 3 , | ||
175 | .Xr lsearch 3 , | ||
176 | .Xr malloc 3 , | ||
177 | .Xr strcmp 3 | ||
178 | .Sh STANDARDS | ||
179 | The | ||
180 | .Fn hcreate , | ||
181 | .Fn hdestroy | ||
182 | and | ||
183 | .Fn hsearch | ||
184 | functions conform to | ||
185 | .St -xpg4.2 . | ||
186 | .Sh HISTORY | ||
187 | The | ||
188 | .Fn hcreate , | ||
189 | .Fn hdestroy | ||
190 | and | ||
191 | .Fn hsearch | ||
192 | functions first appeared in | ||
193 | .At V . | ||
194 | .Sh BUGS | ||
195 | The interface permits the use of only one hash table at a time. | ||
diff --git a/src/lib/libc/stdlib/hcreate.c b/src/lib/libc/stdlib/hcreate.c new file mode 100644 index 0000000000..14e6fa41f2 --- /dev/null +++ b/src/lib/libc/stdlib/hcreate.c | |||
@@ -0,0 +1,200 @@ | |||
1 | /* $OpenBSD: hcreate.c,v 1.1 2004/06/24 04:43:33 millert Exp $ */ | ||
2 | /* $NetBSD: hcreate.c,v 1.5 2004/04/23 02:48:12 simonb 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 | * hcreate() / hsearch() / hdestroy() | ||
40 | * | ||
41 | * SysV/XPG4 hash table functions. | ||
42 | * | ||
43 | * Implementation done based on NetBSD manual page and Solaris manual page, | ||
44 | * plus my own personal experience about how they're supposed to work. | ||
45 | * | ||
46 | * I tried to look at Knuth (as cited by the Solaris manual page), but | ||
47 | * nobody had a copy in the office, so... | ||
48 | */ | ||
49 | |||
50 | #ifndef lint | ||
51 | static const char copyright[] = | ||
52 | "@(#) Copyright (c) 2001 Christopher G. Demetriou. All rights reserved.\n"; | ||
53 | #endif /* not lint */ | ||
54 | |||
55 | #ifndef lint | ||
56 | static const char rcsid[] = "$OpenBSD: hcreate.c,v 1.1 2004/06/24 04:43:33 millert Exp $"; | ||
57 | #endif /* not lint */ | ||
58 | |||
59 | #include "namespace.h" | ||
60 | #include <assert.h> | ||
61 | #include <errno.h> | ||
62 | #include <inttypes.h> | ||
63 | #include <search.h> | ||
64 | #include <stdlib.h> | ||
65 | #include <string.h> | ||
66 | #include <sys/queue.h> | ||
67 | |||
68 | #ifndef _DIAGASSERT | ||
69 | #define _DIAGASSERT | ||
70 | #endif | ||
71 | |||
72 | /* | ||
73 | * DO NOT MAKE THIS STRUCTURE LARGER THAN 32 BYTES (4 ptrs on 64-bit | ||
74 | * ptr machine) without adjusting MAX_BUCKETS_LG2 below. | ||
75 | */ | ||
76 | struct internal_entry { | ||
77 | SLIST_ENTRY(internal_entry) link; | ||
78 | ENTRY ent; | ||
79 | }; | ||
80 | SLIST_HEAD(internal_head, internal_entry); | ||
81 | |||
82 | #define MIN_BUCKETS_LG2 4 | ||
83 | #define MIN_BUCKETS (1 << MIN_BUCKETS_LG2) | ||
84 | |||
85 | /* | ||
86 | * max * sizeof internal_entry must fit into size_t. | ||
87 | * assumes internal_entry is <= 32 (2^5) bytes. | ||
88 | */ | ||
89 | #define MAX_BUCKETS_LG2 (sizeof (size_t) * 8 - 1 - 5) | ||
90 | #define MAX_BUCKETS ((size_t)1 << MAX_BUCKETS_LG2) | ||
91 | |||
92 | /* Default hash function, from db/hash/hash_func.c */ | ||
93 | extern u_int32_t (*__default_hash)(const void *, size_t); | ||
94 | |||
95 | static struct internal_head *htable; | ||
96 | static size_t htablesize; | ||
97 | |||
98 | int | ||
99 | hcreate(size_t nel) | ||
100 | { | ||
101 | size_t idx; | ||
102 | unsigned int p2; | ||
103 | |||
104 | /* Make sure this isn't called when a table already exists. */ | ||
105 | _DIAGASSERT(htable == NULL); | ||
106 | if (htable != NULL) { | ||
107 | errno = EINVAL; | ||
108 | return 0; | ||
109 | } | ||
110 | |||
111 | /* If nel is too small, make it min sized. */ | ||
112 | if (nel < MIN_BUCKETS) | ||
113 | nel = MIN_BUCKETS; | ||
114 | |||
115 | /* If it's too large, cap it. */ | ||
116 | if (nel > MAX_BUCKETS) | ||
117 | nel = MAX_BUCKETS; | ||
118 | |||
119 | /* If it's is not a power of two in size, round up. */ | ||
120 | if ((nel & (nel - 1)) != 0) { | ||
121 | for (p2 = 0; nel != 0; p2++) | ||
122 | nel >>= 1; | ||
123 | _DIAGASSERT(p2 <= MAX_BUCKETS_LG2); | ||
124 | nel = 1 << p2; | ||
125 | } | ||
126 | |||
127 | /* Allocate the table. */ | ||
128 | htablesize = nel; | ||
129 | htable = malloc(htablesize * sizeof htable[0]); | ||
130 | if (htable == NULL) { | ||
131 | errno = ENOMEM; | ||
132 | return 0; | ||
133 | } | ||
134 | |||
135 | /* Initialize it. */ | ||
136 | for (idx = 0; idx < htablesize; idx++) | ||
137 | SLIST_INIT(&htable[idx]); | ||
138 | |||
139 | return 1; | ||
140 | } | ||
141 | |||
142 | void | ||
143 | hdestroy(void) | ||
144 | { | ||
145 | struct internal_entry *ie; | ||
146 | size_t idx; | ||
147 | |||
148 | _DIAGASSERT(htable != NULL); | ||
149 | if (htable == NULL) | ||
150 | return; | ||
151 | |||
152 | for (idx = 0; idx < htablesize; idx++) { | ||
153 | while (!SLIST_EMPTY(&htable[idx])) { | ||
154 | ie = SLIST_FIRST(&htable[idx]); | ||
155 | SLIST_REMOVE_HEAD(&htable[idx], link); | ||
156 | free(ie->ent.key); | ||
157 | free(ie); | ||
158 | } | ||
159 | } | ||
160 | free(htable); | ||
161 | htable = NULL; | ||
162 | } | ||
163 | |||
164 | ENTRY * | ||
165 | hsearch(ENTRY item, ACTION action) | ||
166 | { | ||
167 | struct internal_head *head; | ||
168 | struct internal_entry *ie; | ||
169 | uint32_t hashval; | ||
170 | size_t len; | ||
171 | |||
172 | _DIAGASSERT(htable != NULL); | ||
173 | _DIAGASSERT(item.key != NULL); | ||
174 | _DIAGASSERT(action == ENTER || action == FIND); | ||
175 | |||
176 | len = strlen(item.key); | ||
177 | hashval = (*__default_hash)(item.key, len); | ||
178 | |||
179 | head = &htable[hashval & (htablesize - 1)]; | ||
180 | ie = SLIST_FIRST(head); | ||
181 | while (ie != NULL) { | ||
182 | if (strcmp(ie->ent.key, item.key) == 0) | ||
183 | break; | ||
184 | ie = SLIST_NEXT(ie, link); | ||
185 | } | ||
186 | |||
187 | if (ie != NULL) | ||
188 | return &ie->ent; | ||
189 | else if (action == FIND) | ||
190 | return NULL; | ||
191 | |||
192 | ie = malloc(sizeof *ie); | ||
193 | if (ie == NULL) | ||
194 | return NULL; | ||
195 | ie->ent.key = item.key; | ||
196 | ie->ent.data = item.data; | ||
197 | |||
198 | SLIST_INSERT_HEAD(head, ie, link); | ||
199 | return &ie->ent; | ||
200 | } | ||
diff --git a/src/lib/libc/stdlib/heapsort.c b/src/lib/libc/stdlib/heapsort.c index bd998fa357..dcc0c8baad 100644 --- a/src/lib/libc/stdlib/heapsort.c +++ b/src/lib/libc/stdlib/heapsort.c | |||
@@ -13,11 +13,7 @@ | |||
13 | * 2. Redistributions in binary form must reproduce the above copyright | 13 | * 2. Redistributions in binary form must reproduce the above copyright |
14 | * notice, this list of conditions and the following disclaimer in the | 14 | * notice, this list of conditions and the following disclaimer in the |
15 | * documentation and/or other materials provided with the distribution. | 15 | * documentation and/or other materials provided with the distribution. |
16 | * 3. All advertising materials mentioning features or use of this software | 16 | * 3. Neither the name of the University nor the names of its contributors |
17 | * must display the following acknowledgement: | ||
18 | * This product includes software developed by the University of | ||
19 | * California, Berkeley and its contributors. | ||
20 | * 4. Neither the name of the University nor the names of its contributors | ||
21 | * may be used to endorse or promote products derived from this software | 17 | * may be used to endorse or promote products derived from this software |
22 | * without specific prior written permission. | 18 | * without specific prior written permission. |
23 | * | 19 | * |
@@ -35,8 +31,7 @@ | |||
35 | */ | 31 | */ |
36 | 32 | ||
37 | #if defined(LIBC_SCCS) && !defined(lint) | 33 | #if defined(LIBC_SCCS) && !defined(lint) |
38 | /*static char sccsid[] = "from: @(#)heapsort.c 8.1 (Berkeley) 6/4/93";*/ | 34 | static char *rcsid = "$OpenBSD: heapsort.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; |
39 | static char *rcsid = "$Id: heapsort.c,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp $"; | ||
40 | #endif /* LIBC_SCCS and not lint */ | 35 | #endif /* LIBC_SCCS and not lint */ |
41 | 36 | ||
42 | #include <sys/types.h> | 37 | #include <sys/types.h> |
@@ -73,7 +68,7 @@ static char *rcsid = "$Id: heapsort.c,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp | |||
73 | * Build the list into a heap, where a heap is defined such that for | 68 | * Build the list into a heap, where a heap is defined such that for |
74 | * the records K1 ... KN, Kj/2 >= Kj for 1 <= j/2 <= j <= N. | 69 | * the records K1 ... KN, Kj/2 >= Kj for 1 <= j/2 <= j <= N. |
75 | * | 70 | * |
76 | * There two cases. If j == nmemb, select largest of Ki and Kj. If | 71 | * There are two cases. If j == nmemb, select largest of Ki and Kj. If |
77 | * j < nmemb, select largest of Ki, Kj and Kj+1. | 72 | * j < nmemb, select largest of Ki, Kj and Kj+1. |
78 | */ | 73 | */ |
79 | #define CREATE(initval, nmemb, par_i, child_i, par, child, size, count, tmp) { \ | 74 | #define CREATE(initval, nmemb, par_i, child_i, par, child, size, count, tmp) { \ |
@@ -95,12 +90,12 @@ static char *rcsid = "$Id: heapsort.c,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp | |||
95 | * Select the top of the heap and 'heapify'. Since by far the most expensive | 90 | * Select the top of the heap and 'heapify'. Since by far the most expensive |
96 | * action is the call to the compar function, a considerable optimization | 91 | * action is the call to the compar function, a considerable optimization |
97 | * in the average case can be achieved due to the fact that k, the displaced | 92 | * in the average case can be achieved due to the fact that k, the displaced |
98 | * elememt, is ususally quite small, so it would be preferable to first | 93 | * element, is usually quite small, so it would be preferable to first |
99 | * heapify, always maintaining the invariant that the larger child is copied | 94 | * heapify, always maintaining the invariant that the larger child is copied |
100 | * over its parent's record. | 95 | * over its parent's record. |
101 | * | 96 | * |
102 | * Then, starting from the *bottom* of the heap, finding k's correct place, | 97 | * Then, starting from the *bottom* of the heap, finding k's correct place, |
103 | * again maintianing the invariant. As a result of the invariant no element | 98 | * again maintaining the invariant. As a result of the invariant no element |
104 | * is 'lost' when k is assigned its correct place in the heap. | 99 | * is 'lost' when k is assigned its correct place in the heap. |
105 | * | 100 | * |
106 | * The time savings from this optimization are on the order of 15-20% for the | 101 | * The time savings from this optimization are on the order of 15-20% for the |
@@ -139,13 +134,11 @@ static char *rcsid = "$Id: heapsort.c,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp | |||
139 | * only advantage over quicksort is that it requires little additional memory. | 134 | * only advantage over quicksort is that it requires little additional memory. |
140 | */ | 135 | */ |
141 | int | 136 | int |
142 | heapsort(vbase, nmemb, size, compar) | 137 | heapsort(void *vbase, size_t nmemb, size_t size, |
143 | void *vbase; | 138 | int (*compar)(const void *, const void *)) |
144 | size_t nmemb, size; | ||
145 | int (*compar) __P((const void *, const void *)); | ||
146 | { | 139 | { |
147 | register int cnt, i, j, l; | 140 | int cnt, i, j, l; |
148 | register char tmp, *tmp1, *tmp2; | 141 | char tmp, *tmp1, *tmp2; |
149 | char *base, *k, *p, *t; | 142 | char *base, *k, *p, *t; |
150 | 143 | ||
151 | if (nmemb <= 1) | 144 | if (nmemb <= 1) |
diff --git a/src/lib/libc/stdlib/insque.3 b/src/lib/libc/stdlib/insque.3 new file mode 100644 index 0000000000..cd8110ed90 --- /dev/null +++ b/src/lib/libc/stdlib/insque.3 | |||
@@ -0,0 +1,100 @@ | |||
1 | .\" $OpenBSD: insque.3,v 1.3 2004/01/25 14:48:32 jmc Exp $ | ||
2 | .\" Copyright (c) 1993 John Brezak | ||
3 | .\" All rights reserved. | ||
4 | .\" | ||
5 | .\" Redistribution and use in source and binary forms, with or without | ||
6 | .\" modification, are permitted provided that the following conditions | ||
7 | .\" are met: | ||
8 | .\" 1. Redistributions of source code must retain the above copyright | ||
9 | .\" notice, this list of conditions and the following disclaimer. | ||
10 | .\" 2. Redistributions in binary form must reproduce the above copyright | ||
11 | .\" notice, this list of conditions and the following disclaimer in the | ||
12 | .\" documentation and/or other materials provided with the distribution. | ||
13 | .\" 3. The name of the author may be used to endorse or promote products | ||
14 | .\" derived from this software without specific prior written permission. | ||
15 | .\" | ||
16 | .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND | ||
17 | .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
18 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
19 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE | ||
20 | .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
21 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
22 | .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
23 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
24 | .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
25 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
26 | .\" SUCH DAMAGE. | ||
27 | .\" | ||
28 | .\" | ||
29 | .Dd August 12, 1993 | ||
30 | .Dt INSQUE 3 | ||
31 | .Os | ||
32 | .Sh NAME | ||
33 | .Nm insque , | ||
34 | .Nm remque | ||
35 | .Nd insert/remove element from a queue | ||
36 | .Sh SYNOPSIS | ||
37 | .Fd #include <search.h> | ||
38 | .Ft void | ||
39 | .Fn insque "void *elem" "void *pred" | ||
40 | .Ft void | ||
41 | .Fn remque "void *elem" | ||
42 | .Sh DESCRIPTION | ||
43 | .Bf -symbolic | ||
44 | These interfaces have been superceded by the | ||
45 | .Xr queue 3 | ||
46 | macros and are provided for compatibility with legacy code. | ||
47 | .Ef | ||
48 | .Pp | ||
49 | .Fn insque | ||
50 | and | ||
51 | .Fn remque | ||
52 | manipulate queues built from doubly linked lists. | ||
53 | The queue can be either circular or linear. | ||
54 | Each element in the queue must be of the following form: | ||
55 | .Bd -literal | ||
56 | struct qelem { | ||
57 | struct qelem *q_forw; | ||
58 | struct qelem *q_back; | ||
59 | char q_data[]; | ||
60 | }; | ||
61 | .Ed | ||
62 | .Pp | ||
63 | The first two elements in the struct must be pointers of the | ||
64 | same type that point to the previous and next elements in | ||
65 | the queue respectively. | ||
66 | Any subsequent data in the struct is application-dependent. | ||
67 | .Pp | ||
68 | The | ||
69 | .Fn insque | ||
70 | function inserts | ||
71 | .Fa elem | ||
72 | into a queue immediately after | ||
73 | .Fa pred . | ||
74 | .Pp | ||
75 | The | ||
76 | .Fn remque | ||
77 | function removes | ||
78 | .Fa elem | ||
79 | from the queue. | ||
80 | .Sh DIAGNOSTICS | ||
81 | These functions are not atomic unless that machine architecture allows it. | ||
82 | .Sh SEE ALSO | ||
83 | .Xr queue 3 | ||
84 | .Sh STANDARDS | ||
85 | The | ||
86 | .Fn lsearch | ||
87 | and | ||
88 | .Fn lfind | ||
89 | functions conform to the | ||
90 | .St -p1003.1-2001 | ||
91 | and | ||
92 | .St -xpg4.3 . | ||
93 | specifications. | ||
94 | .Sh HISTORY | ||
95 | The | ||
96 | .Fn insque | ||
97 | and | ||
98 | .Fn remque | ||
99 | functions are derived from the insque and remque instructions on a | ||
100 | .Tn VAX . | ||
diff --git a/src/lib/libc/stdlib/insque.c b/src/lib/libc/stdlib/insque.c new file mode 100644 index 0000000000..549246c71f --- /dev/null +++ b/src/lib/libc/stdlib/insque.c | |||
@@ -0,0 +1,52 @@ | |||
1 | /* $OpenBSD: insque.c,v 1.1 2003/05/08 23:26:30 millert Exp $ */ | ||
2 | |||
3 | /* | ||
4 | * Copyright (c) 1993 John Brezak | ||
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 | * 1. Redistributions of source code must retain the above copyright | ||
11 | * notice, this list of conditions and the following disclaimer. | ||
12 | * 2. Redistributions in binary form must reproduce the above copyright | ||
13 | * notice, this list of conditions and the following disclaimer in the | ||
14 | * documentation and/or other materials provided with the distribution. | ||
15 | * 3. The name of the author may be used to endorse or promote products | ||
16 | * derived from this software without specific prior written permission. | ||
17 | * | ||
18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR | ||
19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
20 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
21 | * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, | ||
22 | * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
23 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
24 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
25 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
26 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
27 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
28 | * POSSIBILITY OF SUCH DAMAGE. | ||
29 | */ | ||
30 | |||
31 | #if defined(LIBC_SCCS) && !defined(lint) | ||
32 | static char *rcsid = "$OpenBSD: insque.c,v 1.1 2003/05/08 23:26:30 millert Exp $"; | ||
33 | #endif /* LIBC_SCCS and not lint */ | ||
34 | |||
35 | #include <search.h> | ||
36 | |||
37 | struct qelem { | ||
38 | struct qelem *q_forw; | ||
39 | struct qelem *q_back; | ||
40 | }; | ||
41 | |||
42 | void | ||
43 | insque(void *entry, void *pred) | ||
44 | { | ||
45 | struct qelem *e = (struct qelem *) entry; | ||
46 | struct qelem *p = (struct qelem *) pred; | ||
47 | |||
48 | e->q_forw = p->q_forw; | ||
49 | e->q_back = p; | ||
50 | p->q_forw->q_back = e; | ||
51 | p->q_forw = e; | ||
52 | } | ||
diff --git a/src/lib/libc/stdlib/jrand48.c b/src/lib/libc/stdlib/jrand48.c index 205781e0ee..99cddb71e5 100644 --- a/src/lib/libc/stdlib/jrand48.c +++ b/src/lib/libc/stdlib/jrand48.c | |||
@@ -11,6 +11,10 @@ | |||
11 | * to anyone/anything when using this software. | 11 | * to anyone/anything when using this software. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: jrand48.c,v 1.2 1996/08/19 08:33:33 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
14 | #include "rand48.h" | 18 | #include "rand48.h" |
15 | 19 | ||
16 | long | 20 | long |
diff --git a/src/lib/libc/stdlib/l64a.c b/src/lib/libc/stdlib/l64a.c index 3069b31bf6..325b41b33b 100644 --- a/src/lib/libc/stdlib/l64a.c +++ b/src/lib/libc/stdlib/l64a.c | |||
@@ -4,22 +4,24 @@ | |||
4 | */ | 4 | */ |
5 | 5 | ||
6 | #if defined(LIBC_SCCS) && !defined(lint) | 6 | #if defined(LIBC_SCCS) && !defined(lint) |
7 | static char *rcsid = "$NetBSD: l64a.c,v 1.4 1995/05/11 23:04:52 jtc Exp $"; | 7 | static char *rcsid = "$OpenBSD: l64a.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; |
8 | #endif | 8 | #endif /* LIBC_SCCS and not lint */ |
9 | 9 | ||
10 | #include <errno.h> | ||
10 | #include <stdlib.h> | 11 | #include <stdlib.h> |
11 | 12 | ||
12 | char * | 13 | char * |
13 | l64a (value) | 14 | l64a(long value) |
14 | long value; | ||
15 | { | 15 | { |
16 | static char buf[8]; | 16 | static char buf[8]; |
17 | char *s = buf; | 17 | char *s = buf; |
18 | int digit; | 18 | int digit; |
19 | int i; | 19 | int i; |
20 | 20 | ||
21 | if (!value) | 21 | if (value < 0) { |
22 | return NULL; | 22 | errno = EINVAL; |
23 | return(NULL); | ||
24 | } | ||
23 | 25 | ||
24 | for (i = 0; value != 0 && i < 6; i++) { | 26 | for (i = 0; value != 0 && i < 6; i++) { |
25 | digit = value & 0x3f; | 27 | digit = value & 0x3f; |
@@ -39,5 +41,5 @@ l64a (value) | |||
39 | 41 | ||
40 | *s = '\0'; | 42 | *s = '\0'; |
41 | 43 | ||
42 | return buf; | 44 | return(buf); |
43 | } | 45 | } |
diff --git a/src/lib/libc/stdlib/labs.3 b/src/lib/libc/stdlib/labs.3 index 28e4d2053c..742f3eedba 100644 --- a/src/lib/libc/stdlib/labs.3 +++ b/src/lib/libc/stdlib/labs.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,35 +29,40 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)labs.3 5.3 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: labs.3,v 1.7 2003/07/21 20:20:04 millert Exp $ |
37 | .\" $Id: labs.3,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd May 14, 2003 |
40 | .Dt LABS 3 | 35 | .Dt LABS 3 |
41 | .Os | 36 | .Os |
42 | .Sh NAME | 37 | .Sh NAME |
43 | .Nm labs | 38 | .Nm labs, llabs |
44 | .Nd return the absolute value of a long integer | 39 | .Nd return the absolute value of a long integer |
45 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS |
46 | .Fd #include <stdlib.h> | 41 | .Fd #include <stdlib.h> |
47 | .Ft long | 42 | .Ft long |
48 | .Fn labs "long j" | 43 | .Fn labs "long i" |
44 | .Ft long long | ||
45 | .Fn llabs "long long j" | ||
49 | .Sh DESCRIPTION | 46 | .Sh DESCRIPTION |
50 | The | 47 | The |
51 | .Fn labs | 48 | .Fn labs |
52 | function | 49 | function returns the absolute value of the long integer |
53 | returns the absolute value of the long integer | 50 | .Fa i . |
54 | .Ar j . | 51 | The |
52 | .Fn llabs | ||
53 | function returns the absolute value of the long long integer | ||
54 | .Fa j . | ||
55 | .Sh SEE ALSO | 55 | .Sh SEE ALSO |
56 | .Xr abs 3 , | 56 | .Xr abs 3 , |
57 | .Xr floor 3 , | ||
58 | .Xr cabs 3 , | 57 | .Xr cabs 3 , |
58 | .Xr floor 3 , | ||
59 | .Xr math 3 | 59 | .Xr math 3 |
60 | .Sh STANDARDS | 60 | .Sh STANDARDS |
61 | The | 61 | The |
62 | .Fn labs | 62 | .Fn labs |
63 | function | 63 | and |
64 | conforms to | 64 | .Fn llabs |
65 | .St -ansiC . | 65 | functions conform to |
66 | .St -ansiC-99 . | ||
66 | .Sh BUGS | 67 | .Sh BUGS |
67 | The absolute value of the most negative integer remains negative. | 68 | The absolute value of the most negative integer remains negative. |
diff --git a/src/lib/libc/stdlib/labs.c b/src/lib/libc/stdlib/labs.c index ccf1415792..1dc8b0184a 100644 --- a/src/lib/libc/stdlib/labs.c +++ b/src/lib/libc/stdlib/labs.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,15 +28,13 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)labs.c 5.2 (Berkeley) 5/17/90";*/ | 31 | static char *rcsid = "$OpenBSD: labs.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: labs.c,v 1.1.1.1 1995/10/18 08:42:17 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <stdlib.h> | 34 | #include <stdlib.h> |
40 | 35 | ||
41 | long | 36 | long |
42 | labs(j) | 37 | labs(long j) |
43 | long j; | ||
44 | { | 38 | { |
45 | return(j < 0 ? -j : j); | 39 | return(j < 0 ? -j : j); |
46 | } | 40 | } |
diff --git a/src/lib/libc/stdlib/lcong48.c b/src/lib/libc/stdlib/lcong48.c index 965d46b17a..44bd74e48a 100644 --- a/src/lib/libc/stdlib/lcong48.c +++ b/src/lib/libc/stdlib/lcong48.c | |||
@@ -11,6 +11,10 @@ | |||
11 | * to anyone/anything when using this software. | 11 | * to anyone/anything when using this software. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: lcong48.c,v 1.2 1996/08/19 08:33:35 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
14 | #include "rand48.h" | 18 | #include "rand48.h" |
15 | 19 | ||
16 | extern unsigned short __rand48_seed[3]; | 20 | extern unsigned short __rand48_seed[3]; |
diff --git a/src/lib/libc/stdlib/ldiv.3 b/src/lib/libc/stdlib/ldiv.3 index a7b5ccf878..63e1f2165c 100644 --- a/src/lib/libc/stdlib/ldiv.3 +++ b/src/lib/libc/stdlib/ldiv.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,8 +29,7 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)ldiv.3 5.3 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: ldiv.3,v 1.7 2004/01/23 23:08:46 jmc Exp $ |
37 | .\" $Id: ldiv.3,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
40 | .Dt LDIV 3 | 35 | .Dt LDIV 3 |
@@ -49,24 +44,22 @@ | |||
49 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION |
50 | The | 45 | The |
51 | .Fn ldiv | 46 | .Fn ldiv |
52 | function | 47 | function computes the value |
53 | computes the value | 48 | .Fa num Ns / Ns Fa denom |
54 | .Ar num/denom | ||
55 | and returns the quotient and remainder in a structure named | 49 | and returns the quotient and remainder in a structure named |
56 | .Ar ldiv_t | 50 | .Li ldiv_t |
57 | that contains two | 51 | that contains two |
58 | .Em long integer | 52 | .Li long integer |
59 | members named | 53 | members named |
60 | .Ar quot | 54 | .Fa quot |
61 | and | 55 | and |
62 | .Ar rem . | 56 | .Fa rem . |
63 | .Sh SEE ALSO | 57 | .Sh SEE ALSO |
64 | .Xr div 3 , | 58 | .Xr div 3 , |
65 | .Xr qdiv 3 , | 59 | .Xr math 3 , |
66 | .Xr math 3 | 60 | .Xr qdiv 3 |
67 | .Sh STANDARDS | 61 | .Sh STANDARDS |
68 | The | 62 | The |
69 | .Fn ldiv | 63 | .Fn ldiv |
70 | function | 64 | function conforms to |
71 | conforms to | ||
72 | .St -ansiC . | 65 | .St -ansiC . |
diff --git a/src/lib/libc/stdlib/ldiv.c b/src/lib/libc/stdlib/ldiv.c index f7074507e5..bbb539a68b 100644 --- a/src/lib/libc/stdlib/ldiv.c +++ b/src/lib/libc/stdlib/ldiv.c | |||
@@ -13,11 +13,7 @@ | |||
13 | * 2. Redistributions in binary form must reproduce the above copyright | 13 | * 2. Redistributions in binary form must reproduce the above copyright |
14 | * notice, this list of conditions and the following disclaimer in the | 14 | * notice, this list of conditions and the following disclaimer in the |
15 | * documentation and/or other materials provided with the distribution. | 15 | * documentation and/or other materials provided with the distribution. |
16 | * 3. All advertising materials mentioning features or use of this software | 16 | * 3. Neither the name of the University nor the names of its contributors |
17 | * must display the following acknowledgement: | ||
18 | * This product includes software developed by the University of | ||
19 | * California, Berkeley and its contributors. | ||
20 | * 4. Neither the name of the University nor the names of its contributors | ||
21 | * may be used to endorse or promote products derived from this software | 17 | * may be used to endorse or promote products derived from this software |
22 | * without specific prior written permission. | 18 | * without specific prior written permission. |
23 | * | 19 | * |
@@ -35,15 +31,13 @@ | |||
35 | */ | 31 | */ |
36 | 32 | ||
37 | #if defined(LIBC_SCCS) && !defined(lint) | 33 | #if defined(LIBC_SCCS) && !defined(lint) |
38 | /*static char *sccsid = "from: @(#)ldiv.c 5.2 (Berkeley) 4/16/91";*/ | 34 | static char *rcsid = "$OpenBSD: ldiv.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; |
39 | static char *rcsid = "$Id: ldiv.c,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $"; | ||
40 | #endif /* LIBC_SCCS and not lint */ | 35 | #endif /* LIBC_SCCS and not lint */ |
41 | 36 | ||
42 | #include <stdlib.h> /* ldiv_t */ | 37 | #include <stdlib.h> /* ldiv_t */ |
43 | 38 | ||
44 | ldiv_t | 39 | ldiv_t |
45 | ldiv(num, denom) | 40 | ldiv(long num, long denom) |
46 | long num, denom; | ||
47 | { | 41 | { |
48 | ldiv_t r; | 42 | ldiv_t r; |
49 | 43 | ||
diff --git a/src/lib/libc/stdlib/llabs.c b/src/lib/libc/stdlib/llabs.c new file mode 100644 index 0000000000..9611b5aefd --- /dev/null +++ b/src/lib/libc/stdlib/llabs.c | |||
@@ -0,0 +1,45 @@ | |||
1 | /* $OpenBSD: llabs.c,v 1.1 2003/07/21 20:20:04 millert Exp $ */ | ||
2 | |||
3 | /*- | ||
4 | * Copyright (c) 1990 The Regents of the University of California. | ||
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 | * 1. Redistributions of source code must retain the above copyright | ||
11 | * notice, this list of conditions and the following disclaimer. | ||
12 | * 2. Redistributions in binary form must reproduce the above copyright | ||
13 | * notice, this list of conditions and the following disclaimer in the | ||
14 | * documentation and/or other materials provided with the distribution. | ||
15 | * 3. All advertising materials mentioning features or use of this software | ||
16 | * must display the following acknowledgement: | ||
17 | * This product includes software developed by the University of | ||
18 | * California, Berkeley and its contributors. | ||
19 | * 4. Neither the name of the University nor the names of its contributors | ||
20 | * may be used to endorse or promote products derived from this software | ||
21 | * without specific prior written permission. | ||
22 | * | ||
23 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | ||
24 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
25 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
26 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | ||
27 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
28 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
29 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
30 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
31 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
32 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
33 | * SUCH DAMAGE. | ||
34 | */ | ||
35 | |||
36 | #if defined(LIBC_SCCS) && !defined(lint) | ||
37 | static char *rcsid = "$OpenBSD: llabs.c,v 1.1 2003/07/21 20:20:04 millert Exp $"; | ||
38 | #endif /* LIBC_SCCS and not lint */ | ||
39 | |||
40 | #include <stdlib.h> | ||
41 | |||
42 | long long llabs(long long j) | ||
43 | { | ||
44 | return (j < 0 ? -j : j); | ||
45 | } | ||
diff --git a/src/lib/libc/stdlib/lrand48.c b/src/lib/libc/stdlib/lrand48.c index 8e7f26237f..6b7524a51b 100644 --- a/src/lib/libc/stdlib/lrand48.c +++ b/src/lib/libc/stdlib/lrand48.c | |||
@@ -11,6 +11,10 @@ | |||
11 | * to anyone/anything when using this software. | 11 | * to anyone/anything when using this software. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: lrand48.c,v 1.2 1996/08/19 08:33:36 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
14 | #include "rand48.h" | 18 | #include "rand48.h" |
15 | 19 | ||
16 | extern unsigned short __rand48_seed[3]; | 20 | extern unsigned short __rand48_seed[3]; |
diff --git a/src/lib/libc/stdlib/lsearch.3 b/src/lib/libc/stdlib/lsearch.3 new file mode 100644 index 0000000000..818aa1bb43 --- /dev/null +++ b/src/lib/libc/stdlib/lsearch.3 | |||
@@ -0,0 +1,105 @@ | |||
1 | .\" $OpenBSD: lsearch.3,v 1.4 2004/10/01 04:08:45 jsg Exp $ | ||
2 | .\" | ||
3 | .\" Copyright (c) 1989, 1991, 1993 | ||
4 | .\" The Regents of the University of California. 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 | .\" 3. Neither the name of the University nor the names of its contributors | ||
15 | .\" may be used to endorse or promote products derived from this software | ||
16 | .\" without specific prior written permission. | ||
17 | .\" | ||
18 | .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | ||
19 | .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
20 | .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
21 | .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | ||
22 | .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
23 | .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
24 | .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
25 | .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
26 | .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
27 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
28 | .\" SUCH DAMAGE. | ||
29 | .\" | ||
30 | .\" @(#)lsearch.3 8.1 (Berkeley) 6/4/93 | ||
31 | .\" | ||
32 | .Dd June 4, 1993 | ||
33 | .Dt LSEARCH 3 | ||
34 | .Os | ||
35 | .Sh NAME | ||
36 | .Nm lsearch , | ||
37 | .Nm lfind | ||
38 | .Nd linear searching routines | ||
39 | .Sh SYNOPSIS | ||
40 | .Ft char * | ||
41 | .Fn lsearch "const void *key" "const void *base" "size_t *nelp" "size_t width" "int (*compar)(void *, void *)" | ||
42 | .Ft char * | ||
43 | .Fn lfind "const void *key" "const void *base" "size_t *nelp" "size_t width" "int (*compar)(void *, void *)" | ||
44 | .Sh DESCRIPTION | ||
45 | The functions | ||
46 | .Fn lsearch , | ||
47 | and | ||
48 | .Fn lfind | ||
49 | provide basic linear searching functionality. | ||
50 | .Pp | ||
51 | .Fa base | ||
52 | is the pointer to the beginning of an array. | ||
53 | The argument | ||
54 | .Fa nelp | ||
55 | is the current number of elements in the array, where each element | ||
56 | is | ||
57 | .Fa width | ||
58 | bytes long. | ||
59 | The | ||
60 | .Fa compar | ||
61 | function | ||
62 | is a comparison routine which is used to compare two elements. | ||
63 | It takes two arguments which point to the | ||
64 | .Fa key | ||
65 | object and to an array member, in that order, and must return an integer | ||
66 | less than, equivalent to, or greater than zero if the | ||
67 | .Fa key | ||
68 | object is considered, respectively, to be less than, equal to, or greater | ||
69 | than the array member. | ||
70 | .Pp | ||
71 | The | ||
72 | .Fn lsearch | ||
73 | and | ||
74 | .Fn lfind | ||
75 | functions | ||
76 | return a pointer into the array referenced by | ||
77 | .Fa base | ||
78 | where | ||
79 | .Fa key | ||
80 | is located. | ||
81 | If | ||
82 | .Fa key | ||
83 | does not exist, | ||
84 | .Fn lfind | ||
85 | will return a null pointer and | ||
86 | .Fn lsearch | ||
87 | will add it to the array. | ||
88 | When an element is added to the array by | ||
89 | .Fn lsearch | ||
90 | the location referenced by the argument | ||
91 | .Fa nelp | ||
92 | is incremented by one. | ||
93 | .Sh SEE ALSO | ||
94 | .Xr bsearch 3 , | ||
95 | .Xr db 3 | ||
96 | .Sh STANDARDS | ||
97 | The | ||
98 | .Fn lsearch | ||
99 | and | ||
100 | .Fn lfind | ||
101 | functions conform to the | ||
102 | .St -p1003.1-2001 | ||
103 | and | ||
104 | .St -xpg4.3 . | ||
105 | specifications. | ||
diff --git a/src/lib/libc/stdlib/lsearch.c b/src/lib/libc/stdlib/lsearch.c new file mode 100644 index 0000000000..0815430199 --- /dev/null +++ b/src/lib/libc/stdlib/lsearch.c | |||
@@ -0,0 +1,88 @@ | |||
1 | /* $OpenBSD: lsearch.c,v 1.3 2004/10/01 04:08:45 jsg Exp $ */ | ||
2 | |||
3 | /* | ||
4 | * Copyright (c) 1989, 1993 | ||
5 | * The Regents of the University of California. All rights reserved. | ||
6 | * | ||
7 | * This code is derived from software contributed to Berkeley by | ||
8 | * Roger L. Snyder. | ||
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 | * 3. Neither the name of the University nor the names of its contributors | ||
19 | * may be used to endorse or promote products derived from this software | ||
20 | * without specific prior written permission. | ||
21 | * | ||
22 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | ||
23 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
24 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
25 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | ||
26 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
27 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
28 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
29 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
30 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
31 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
32 | * SUCH DAMAGE. | ||
33 | */ | ||
34 | |||
35 | #if defined(LIBC_SCCS) && !defined(lint) | ||
36 | static char sccsid[] = "@(#)lsearch.c 8.1 (Berkeley) 6/4/93"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | ||
38 | |||
39 | #include <sys/types.h> | ||
40 | #include <string.h> | ||
41 | #include <search.h> | ||
42 | |||
43 | typedef int (*cmp_fn_t)(const void *, const void *); | ||
44 | static void *linear_base(const void *, const void *, size_t *, size_t, | ||
45 | cmp_fn_t, int); | ||
46 | |||
47 | void * | ||
48 | lsearch(const void *key, const void *base, size_t *nelp, size_t width, | ||
49 | cmp_fn_t compar) | ||
50 | { | ||
51 | |||
52 | return(linear_base(key, base, nelp, width, compar, 1)); | ||
53 | } | ||
54 | |||
55 | void * | ||
56 | lfind(const void *key, const void *base, size_t *nelp, size_t width, | ||
57 | cmp_fn_t compar) | ||
58 | { | ||
59 | return(linear_base(key, base, nelp, width, compar, 0)); | ||
60 | } | ||
61 | |||
62 | static void * | ||
63 | linear_base(const void *key, const void *base, size_t *nelp, size_t width, | ||
64 | cmp_fn_t compar, int add_flag) | ||
65 | { | ||
66 | const char *element, *end; | ||
67 | |||
68 | end = (const char *)base + *nelp * width; | ||
69 | for (element = base; element < end; element += width) | ||
70 | if (!compar(key, element)) /* key found */ | ||
71 | return((void *)element); | ||
72 | |||
73 | if (!add_flag) /* key not found */ | ||
74 | return(NULL); | ||
75 | |||
76 | /* | ||
77 | * The UNIX System User's Manual, 1986 edition claims that | ||
78 | * a NULL pointer is returned by lsearch with errno set | ||
79 | * appropriately, if there is not enough room in the table | ||
80 | * to add a new item. This can't be done as none of these | ||
81 | * routines have any method of determining the size of the | ||
82 | * table. This comment isn't in the 1986-87 System V | ||
83 | * manual. | ||
84 | */ | ||
85 | ++*nelp; | ||
86 | memcpy((void *)end, key, width); | ||
87 | return((void *)end); | ||
88 | } | ||
diff --git a/src/lib/libc/stdlib/malloc.3 b/src/lib/libc/stdlib/malloc.3 index 3bbf2bf65e..138ec708e8 100644 --- a/src/lib/libc/stdlib/malloc.3 +++ b/src/lib/libc/stdlib/malloc.3 | |||
@@ -1,5 +1,6 @@ | |||
1 | .\" Copyright (c) 1980, 1991 Regents of the University of California. | 1 | .\" |
2 | .\" All rights reserved. | 2 | .\" Copyright (c) 1980, 1991, 1993 |
3 | .\" The Regents of the University of California. All rights reserved. | ||
3 | .\" | 4 | .\" |
4 | .\" This code is derived from software contributed to Berkeley by | 5 | .\" This code is derived from software contributed to Berkeley by |
5 | .\" the American National Standards Committee X3, on Information | 6 | .\" the American National Standards Committee X3, on Information |
@@ -13,11 +14,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 14 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 15 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 16 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 17 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 18 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 19 | .\" without specific prior written permission. |
23 | .\" | 20 | .\" |
@@ -33,19 +30,32 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 30 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 31 | .\" SUCH DAMAGE. |
35 | .\" | 32 | .\" |
36 | .\" from: @(#)malloc.3 6.7 (Berkeley) 6/29/91 | 33 | .\" $OpenBSD: malloc.3,v 1.37 2004/07/02 10:42:55 jmc Exp $ |
37 | .\" $Id: malloc.3,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $ | ||
38 | .\" | 34 | .\" |
39 | .Dd June 29, 1991 | 35 | .Dd August 27, 1996 |
40 | .Dt MALLOC 3 | 36 | .Dt MALLOC 3 |
41 | .Os BSD 4 | 37 | .Os |
42 | .Sh NAME | 38 | .Sh NAME |
43 | .Nm malloc | 39 | .Nm malloc , |
44 | .Nd general memory allocation function | 40 | .Nm calloc , |
41 | .Nm realloc , | ||
42 | .Nm free , | ||
43 | .Nm cfree | ||
44 | .Nd memory allocation and deallocation | ||
45 | .Sh SYNOPSIS | 45 | .Sh SYNOPSIS |
46 | .Fd #include <stdlib.h> | 46 | .Fd #include <stdlib.h> |
47 | .Ft void * | 47 | .Ft void * |
48 | .Fn malloc "size_t size" | 48 | .Fn malloc "size_t size" |
49 | .Ft void * | ||
50 | .Fn calloc "size_t nmemb" "size_t size" | ||
51 | .Ft void * | ||
52 | .Fn realloc "void *ptr" "size_t size" | ||
53 | .Ft void | ||
54 | .Fn free "void *ptr" | ||
55 | .Ft void | ||
56 | .Fn cfree "void *ptr" | ||
57 | .Ft char * | ||
58 | .Va malloc_options ; | ||
49 | .Sh DESCRIPTION | 59 | .Sh DESCRIPTION |
50 | The | 60 | The |
51 | .Fn malloc | 61 | .Fn malloc |
@@ -59,33 +69,363 @@ space from the appropriate list. | |||
59 | .Pp | 69 | .Pp |
60 | The allocated space is | 70 | The allocated space is |
61 | suitably aligned (after possible pointer | 71 | suitably aligned (after possible pointer |
62 | coercion) for storage of any type of object. If the space is of | 72 | coercion) for storage of any type of object. |
73 | If the space is of | ||
63 | .Em pagesize | 74 | .Em pagesize |
64 | or larger, the memory returned will be page-aligned. | 75 | or larger, the memory returned will be page-aligned. |
76 | .Pp | ||
77 | Allocation of a zero size object returns a pointer to a zero size object. | ||
78 | This zero size object is access protected, so any access to it will | ||
79 | generate an exception (SIGSEGV). | ||
80 | Many zero-sized objects can be placed consecutively in shared | ||
81 | protected pages. | ||
82 | The minimum size of the protection on each object is suitably aligned and | ||
83 | sized as previously stated, but the protection may extend further depending | ||
84 | on where in a protected zone the object lands. | ||
85 | .Pp | ||
86 | The | ||
87 | .Fn calloc | ||
88 | function allocates space for an array of | ||
89 | .Fa nmemb | ||
90 | objects, each of whose size is | ||
91 | .Fa size . | ||
92 | The space is initialized to all bits zero. | ||
93 | .Pp | ||
94 | The | ||
95 | .Fn free | ||
96 | function causes the space pointed to by | ||
97 | .Fa ptr | ||
98 | to be deallocated, that is, at least made available for further allocation, | ||
99 | but if possible, it will passed back to the kernel with | ||
100 | .Xr sbrk 2 . | ||
101 | If | ||
102 | .Fa ptr | ||
103 | is a null pointer, no action occurs. | ||
104 | .Pp | ||
105 | A | ||
106 | .Fn cfree | ||
107 | function is also provided for compatibility with old systems and other | ||
108 | .Nm malloc | ||
109 | libraries; it is simply an alias for | ||
110 | .Fn free . | ||
111 | .Pp | ||
112 | The | ||
113 | .Fn realloc | ||
114 | function changes the size of the object pointed to by | ||
115 | .Fa ptr | ||
116 | to | ||
117 | .Fa size | ||
118 | bytes and returns a pointer to the (possibly moved) object. | ||
119 | The contents of the object are unchanged up to the lesser | ||
120 | of the new and old sizes. | ||
121 | If the new size is larger, the value of the newly allocated portion | ||
122 | of the object is indeterminate and uninitialized. | ||
123 | If | ||
124 | .Fa ptr | ||
125 | is a null pointer, the | ||
126 | .Fn realloc | ||
127 | function behaves like the | ||
128 | .Fn malloc | ||
129 | function for the specified size. | ||
130 | If the space cannot be allocated, the object | ||
131 | pointed to by | ||
132 | .Fa ptr | ||
133 | is unchanged. | ||
134 | If | ||
135 | .Fa size | ||
136 | is zero and | ||
137 | .Fa ptr | ||
138 | is not a null pointer, the object it points to is freed and a new zero size | ||
139 | object is returned. | ||
140 | .Pp | ||
141 | When using | ||
142 | .Fn realloc | ||
143 | one must be careful to avoid the following idiom: | ||
144 | .Bd -literal -offset indent | ||
145 | size += 50; | ||
146 | if ((p = realloc(p, size)) == NULL) | ||
147 | return (NULL); | ||
148 | .Ed | ||
149 | .Pp | ||
150 | Do not adjust the variable describing how much memory has been allocated | ||
151 | until one knows the allocation has been successful. | ||
152 | This can cause aberrant program behavior if the incorrect size value is used. | ||
153 | In most cases, the above sample will also result in a leak of memory. | ||
154 | As stated earlier, a return value of | ||
155 | .Dv NULL | ||
156 | indicates that the old object still remains allocated. | ||
157 | Better code looks like this: | ||
158 | .Bd -literal -offset indent | ||
159 | newsize = size + 50; | ||
160 | if ((newp = realloc(p, newsize)) == NULL) { | ||
161 | free(p); | ||
162 | p = NULL; | ||
163 | size = 0; | ||
164 | return (NULL); | ||
165 | } | ||
166 | p = newp; | ||
167 | size = newsize; | ||
168 | .Ed | ||
169 | .Pp | ||
170 | Malloc will first look for a symbolic link called | ||
171 | .Pa /etc/malloc.conf | ||
172 | and next check the environment for a variable called | ||
173 | .Ev MALLOC_OPTIONS | ||
174 | and finally for the global variable | ||
175 | .Va malloc_options | ||
176 | and scan them for flags in that order. | ||
177 | Flags are single letters, uppercase means on, lowercase means off. | ||
178 | .Bl -tag -width indent | ||
179 | .It Cm A | ||
180 | .Dq Abort . | ||
181 | .Fn malloc | ||
182 | will coredump the process, rather than tolerate failure. | ||
183 | This is a very handy debugging aid, since the core file will represent the | ||
184 | time of failure, rather than when the null pointer was accessed. | ||
185 | .Pp | ||
186 | .It Cm D | ||
187 | .Dq Dump . | ||
188 | .Fn malloc | ||
189 | will dump statistics in a file called | ||
190 | .Pa malloc.out | ||
191 | at exit. | ||
192 | This option requires the library to have been compiled with -DMALLOC_STATS in | ||
193 | order to have any effect. | ||
194 | .Pp | ||
195 | .It Cm F | ||
196 | .Dq Freeguard . | ||
197 | Enable use after free protection. | ||
198 | Unused pages on the freelist are read and write protected to | ||
199 | cause a segmentation fault upon access. | ||
200 | .Pp | ||
201 | .It Cm G | ||
202 | .Dq Guard . | ||
203 | Enable guard pages and chunk randomization. | ||
204 | Each page size or larger allocation is followed by a guard page that will | ||
205 | cause a segmentation fault upon any access. | ||
206 | Smaller than page size chunks are returned in a random order. | ||
207 | .Pp | ||
208 | .It Cm H | ||
209 | .Dq Hint . | ||
210 | Pass a hint to the kernel about pages we don't use. | ||
211 | If the machine is paging a lot this may help a bit. | ||
212 | .Pp | ||
213 | .It Cm J | ||
214 | .Dq Junk . | ||
215 | Fill some junk into the area allocated. | ||
216 | Currently junk is bytes of 0xd0; this is pronounced | ||
217 | .Dq Duh . | ||
218 | \&:-) | ||
219 | .Pp | ||
220 | .It Cm N | ||
221 | Do not output warning messages when encountering possible corruption | ||
222 | or bad pointers. | ||
223 | .Pp | ||
224 | .It Cm R | ||
225 | .Dq realloc . | ||
226 | Always reallocate when | ||
227 | .Fn realloc | ||
228 | is called, even if the initial allocation was big enough. | ||
229 | This can substantially aid in compacting memory. | ||
230 | .\".Pp | ||
231 | .\".It Cm U | ||
232 | .\".Dq utrace . | ||
233 | .\"Generate entries for | ||
234 | .\".Xr ktrace 1 | ||
235 | .\"for all operations. | ||
236 | .\"Consult the source for this one. | ||
237 | .Pp | ||
238 | .It Cm X | ||
239 | .Dq xmalloc . | ||
240 | Rather than return failure, | ||
241 | .Xr abort 3 | ||
242 | the program with a diagnostic message on stderr. | ||
243 | It is the intention that this option be set at compile time by | ||
244 | including in the source: | ||
245 | .Bd -literal -offset indent | ||
246 | extern char *malloc_options; | ||
247 | malloc_options = "X"; | ||
248 | .Ed | ||
249 | .Pp | ||
250 | .It Cm Z | ||
251 | .Dq Zero . | ||
252 | Fill some junk into the area allocated (see | ||
253 | .Cm J ) , | ||
254 | except for the exact length the user asked for, which is zeroed. | ||
255 | .Pp | ||
256 | .It Cm < | ||
257 | .Dq Half the cache size . | ||
258 | Reduce the size of the cache by a factor of two. | ||
259 | .Pp | ||
260 | .It Cm > | ||
261 | .Dq Double the cache size . | ||
262 | Double the size of the cache by a factor of two. | ||
263 | .El | ||
264 | .Pp | ||
265 | So to set a systemwide reduction of cache size and coredumps on problems | ||
266 | one would: | ||
267 | .Li ln -s 'A<' /etc/malloc.conf | ||
268 | .Pp | ||
269 | The | ||
270 | .Cm J | ||
271 | and | ||
272 | .Cm Z | ||
273 | flags are mostly for testing and debugging. | ||
274 | If a program changes behavior if either of these options are used, | ||
275 | it is buggy. | ||
276 | .Pp | ||
277 | The default cache size is 16 pages. | ||
65 | .Sh RETURN VALUES | 278 | .Sh RETURN VALUES |
66 | The | 279 | The |
67 | .Fn malloc | 280 | .Fn malloc |
68 | function returns | 281 | and |
69 | a pointer to the allocated space if successful; otherwise | 282 | .Fn calloc |
70 | a null pointer is returned. | 283 | functions return a pointer to the allocated space if successful; otherwise, |
284 | a null pointer is returned and | ||
285 | .Va errno | ||
286 | is set to | ||
287 | .Er ENOMEM . | ||
288 | .Pp | ||
289 | The | ||
290 | .Fn free | ||
291 | and | ||
292 | .Fn cfree | ||
293 | functions return no value. | ||
294 | .Pp | ||
295 | The | ||
296 | .Fn realloc | ||
297 | function returns a pointer to the (possibly moved) allocated space | ||
298 | if successful; otherwise, a null pointer is returned and | ||
299 | .Va errno | ||
300 | is set to | ||
301 | .Er ENOMEM . | ||
302 | .Sh ENVIRONMENT | ||
303 | See above. | ||
304 | .Sh FILES | ||
305 | .Bl -tag -width "/etc/malloc.conf" | ||
306 | .It Pa /etc/malloc.conf | ||
307 | symbolic link to filename containing option flags | ||
308 | .El | ||
309 | .Sh DIAGNOSTICS | ||
310 | If | ||
311 | .Fn malloc , | ||
312 | .Fn calloc , | ||
313 | .Fn realloc , | ||
314 | or | ||
315 | .Fn free | ||
316 | detect an error or warning condition, | ||
317 | a message will be printed to file descriptor | ||
318 | 2 (not using stdio). | ||
319 | Errors will always result in the process being | ||
320 | .Xr abort 3 'ed. | ||
321 | If the | ||
322 | .Cm A | ||
323 | option has been specified, warnings will also | ||
324 | .Xr abort 3 | ||
325 | the process. | ||
326 | .Pp | ||
327 | Here is a brief description of the error messages and what they mean: | ||
328 | .Bl -tag -width Fl | ||
329 | .It Dq (ES): mumble mumble mumble | ||
330 | .Fn malloc | ||
331 | has been compiled with | ||
332 | .Dv \&-DEXTRA_SANITY | ||
333 | and something looks fishy in there. | ||
334 | Consult sources and/or wizards. | ||
335 | .It Dq allocation failed | ||
336 | If the | ||
337 | .Cm A | ||
338 | option is specified it is an error for | ||
339 | .Fn malloc , | ||
340 | .Fn calloc , | ||
341 | or | ||
342 | .Fn realloc | ||
343 | to return | ||
344 | .Dv NULL . | ||
345 | .It Dq mmap(2) failed, check limits. | ||
346 | This is a rather weird condition that is most likely to indicate a | ||
347 | seriously overloaded system or a | ||
348 | .Xr ulimit 1 | ||
349 | restriction. | ||
350 | .It Dq freelist is destroyed. | ||
351 | .Fn malloc Ns 's | ||
352 | internal freelist has been stomped on. | ||
353 | .El | ||
354 | .Pp | ||
355 | Here is a brief description of the warning messages and what they mean: | ||
356 | .Bl -tag -width Fl | ||
357 | .It Dq chunk/page is already free. | ||
358 | There was an attempt to free a chunk that had already been freed. | ||
359 | .It Dq junk pointer, too high to make sense. | ||
360 | The pointer doesn't make sense. | ||
361 | It's above the area of memory that | ||
362 | .Fn malloc | ||
363 | knows something about. | ||
364 | This could be a pointer from some | ||
365 | .Xr mmap 2 'ed | ||
366 | memory. | ||
367 | .It Dq junk pointer, too low to make sense. | ||
368 | The pointer doesn't make sense. | ||
369 | It's below the area of memory that | ||
370 | .Fn malloc | ||
371 | knows something about. | ||
372 | This pointer probably came from your data or bss segments. | ||
373 | .It Dq malloc() has never been called. | ||
374 | Nothing has ever been allocated, yet something is being freed or | ||
375 | realloc'ed. | ||
376 | .It Dq modified (chunk-/page-) pointer. | ||
377 | The pointer passed to free or realloc has been modified. | ||
378 | .It Dq pointer to wrong page. | ||
379 | The pointer that | ||
380 | .Fn malloc | ||
381 | is trying to free is not pointing to | ||
382 | a sensible page. | ||
383 | .It Dq recursive call. | ||
384 | An attempt was made to call recursively into these functions, i.e., from a | ||
385 | signal handler. | ||
386 | This behavior is not supported. | ||
387 | In particular, signal handlers should | ||
388 | .Em not | ||
389 | use any of the | ||
390 | .Fn malloc | ||
391 | functions nor utilize any other functions which may call | ||
392 | .Fn malloc | ||
393 | (e.g., | ||
394 | .Xr stdio 3 | ||
395 | routines). | ||
396 | .It Dq unknown char in MALLOC_OPTIONS | ||
397 | We found something we didn't understand. | ||
398 | .El | ||
71 | .Sh SEE ALSO | 399 | .Sh SEE ALSO |
72 | .Xr brk 2 , | 400 | .Xr brk 2 , |
73 | .Xr getpagesize 2 , | ||
74 | .Xr free 3 , | ||
75 | .Xr calloc 3 , | ||
76 | .Xr alloca 3 , | 401 | .Xr alloca 3 , |
77 | .Xr realloc 3 , | 402 | .Xr getpagesize 3 |
78 | .Xr memory 3 | ||
79 | .Sh STANDARDS | 403 | .Sh STANDARDS |
80 | The | 404 | The |
81 | .Fn malloc | 405 | .Fn malloc |
82 | function conforms to | 406 | function conforms to |
83 | .St -ansiC . | 407 | .St -ansiC . |
84 | .Sh BUGS | 408 | .Sh HISTORY |
85 | The current implementation of | 409 | The present implementation of |
86 | .Xr malloc | 410 | .Fn malloc |
87 | does not always fail gracefully when system | 411 | started out as a filesystem on a drum |
88 | memory limits are approached. | 412 | attached to a 20-bit binary challenged computer built with discrete germanium |
89 | It may fail to allocate memory when larger free blocks could be broken | 413 | transistors, and it has since graduated to handle primary storage rather than |
90 | up, or when limits are exceeded because the size is rounded up. | 414 | secondary. |
91 | It is optimized for sizes that are powers of two. | 415 | .Pp |
416 | The main difference from other | ||
417 | .Fn malloc | ||
418 | implementations are believed to be that | ||
419 | the free pages are not accessed until allocated. | ||
420 | Most | ||
421 | .Fn malloc | ||
422 | implementations will store a data structure containing a, | ||
423 | possibly double-, linked list in the free chunks of memory, used to tie | ||
424 | all the free memory together. | ||
425 | That is a quite suboptimal thing to do. | ||
426 | Every time the free-list is traversed, all the otherwise unused, and very | ||
427 | likely paged out, pages get faulted into primary memory, just to see what | ||
428 | lies after them in the list. | ||
429 | .Pp | ||
430 | On systems which are paging, this can increase the page-faults | ||
431 | of a process by a factor of five. | ||
diff --git a/src/lib/libc/stdlib/malloc.c b/src/lib/libc/stdlib/malloc.c index 3c57fad024..ae89f5d72b 100644 --- a/src/lib/libc/stdlib/malloc.c +++ b/src/lib/libc/stdlib/malloc.c | |||
@@ -1,421 +1,1698 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) 1983 Regents of the University of California. | 2 | * ---------------------------------------------------------------------------- |
3 | * All rights reserved. | 3 | * "THE BEER-WARE LICENSE" (Revision 42): |
4 | * | 4 | * <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you |
5 | * Redistribution and use in source and binary forms, with or without | 5 | * can do whatever you want with this stuff. If we meet some day, and you think |
6 | * modification, are permitted provided that the following conditions | 6 | * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp |
7 | * are met: | 7 | * ---------------------------------------------------------------------------- |
8 | * 1. Redistributions of source code must retain the above copyright | ||
9 | * notice, this list of conditions and the following disclaimer. | ||
10 | * 2. Redistributions in binary form must reproduce the above copyright | ||
11 | * notice, this list of conditions and the following disclaimer in the | ||
12 | * documentation and/or other materials provided with the distribution. | ||
13 | * 3. All advertising materials mentioning features or use of this software | ||
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | ||
19 | * without specific prior written permission. | ||
20 | * | ||
21 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | ||
22 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | ||
25 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
26 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
27 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
28 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
29 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
30 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
31 | * SUCH DAMAGE. | ||
32 | */ | 8 | */ |
33 | 9 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 10 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)malloc.c 5.11 (Berkeley) 2/23/91";*/ | 11 | static char rcsid[] = "$OpenBSD: malloc.c,v 1.72 2005/03/31 21:24:46 tdeval Exp $"; |
36 | static char *rcsid = "$Id: malloc.c,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 12 | #endif /* LIBC_SCCS and not lint */ |
38 | 13 | ||
39 | /* | 14 | /* |
40 | * malloc.c (Caltech) 2/21/82 | 15 | * Defining MALLOC_EXTRA_SANITY will enable extra checks which are |
41 | * Chris Kingsley, kingsley@cit-20. | 16 | * related to internal conditions and consistency in malloc.c. This has |
42 | * | 17 | * a noticeable runtime performance hit, and generally will not do you |
43 | * This is a very fast storage allocator. It allocates blocks of a small | 18 | * any good unless you fiddle with the internals of malloc or want |
44 | * number of different sizes, and keeps free lists of each size. Blocks that | 19 | * to catch random pointer corruption as early as possible. |
45 | * don't exactly fit are passed up to the next larger size. In this | ||
46 | * implementation, the available sizes are 2^n-4 (or 2^n-10) bytes long. | ||
47 | * This is designed for use in a virtual memory environment. | ||
48 | */ | 20 | */ |
21 | #ifndef MALLOC_EXTRA_SANITY | ||
22 | #undef MALLOC_EXTRA_SANITY | ||
23 | #endif | ||
24 | |||
25 | /* | ||
26 | * Defining MALLOC_STATS will enable you to call malloc_dump() and set | ||
27 | * the [dD] options in the MALLOC_OPTIONS environment variable. | ||
28 | * It has no run-time performance hit, but does pull in stdio... | ||
29 | */ | ||
30 | #ifndef MALLOC_STATS | ||
31 | #undef MALLOC_STATS | ||
32 | #endif | ||
33 | |||
34 | /* | ||
35 | * What to use for Junk. This is the byte value we use to fill with | ||
36 | * when the 'J' option is enabled. | ||
37 | */ | ||
38 | #define SOME_JUNK 0xd0 /* as in "Duh" :-) */ | ||
49 | 39 | ||
50 | #include <sys/types.h> | 40 | #include <sys/types.h> |
41 | #include <sys/time.h> | ||
42 | #include <sys/resource.h> | ||
43 | #include <sys/param.h> | ||
44 | #include <sys/mman.h> | ||
45 | #include <sys/uio.h> | ||
46 | #include <stdio.h> | ||
51 | #include <stdlib.h> | 47 | #include <stdlib.h> |
52 | #include <string.h> | 48 | #include <string.h> |
53 | #include <unistd.h> | 49 | #include <unistd.h> |
50 | #include <fcntl.h> | ||
51 | #include <limits.h> | ||
52 | #include <errno.h> | ||
54 | 53 | ||
55 | #define NULL 0 | 54 | #include "thread_private.h" |
56 | 55 | ||
57 | static void morecore(); | 56 | /* |
58 | static int findbucket(); | 57 | * The basic parameters you can tweak. |
58 | * | ||
59 | * malloc_pageshift pagesize = 1 << malloc_pageshift | ||
60 | * It's probably best if this is the native | ||
61 | * page size, but it shouldn't have to be. | ||
62 | * | ||
63 | * malloc_minsize minimum size of an allocation in bytes. | ||
64 | * If this is too small it's too much work | ||
65 | * to manage them. This is also the smallest | ||
66 | * unit of alignment used for the storage | ||
67 | * returned by malloc/realloc. | ||
68 | * | ||
69 | */ | ||
70 | |||
71 | #if defined(__OpenBSD__) && defined(__sparc__) | ||
72 | # define malloc_pageshift 13U | ||
73 | #endif /* __OpenBSD__ */ | ||
59 | 74 | ||
60 | /* | 75 | /* |
61 | * The overhead on a block is at least 4 bytes. When free, this space | 76 | * No user serviceable parts behind this point. |
62 | * contains a pointer to the next free block, and the bottom two bits must | 77 | * |
63 | * be zero. When in use, the first byte is set to MAGIC, and the second | 78 | * This structure describes a page worth of chunks. |
64 | * byte is the size index. The remaining bytes are for alignment. | ||
65 | * If range checking is enabled then a second word holds the size of the | ||
66 | * requested block, less 1, rounded up to a multiple of sizeof(RMAGIC). | ||
67 | * The order of elements is critical: ov_magic must overlay the low order | ||
68 | * bits of ov_next, and ov_magic can not be a valid ov_next bit pattern. | ||
69 | */ | 79 | */ |
70 | union overhead { | 80 | |
71 | union overhead *ov_next; /* when free */ | 81 | struct pginfo { |
72 | struct { | 82 | struct pginfo *next; /* next on the free list */ |
73 | u_char ovu_magic; /* magic number */ | 83 | void *page; /* Pointer to the page */ |
74 | u_char ovu_index; /* bucket # */ | 84 | u_short size; /* size of this page's chunks */ |
75 | #ifdef RCHECK | 85 | u_short shift; /* How far to shift for this size chunks */ |
76 | u_short ovu_rmagic; /* range magic number */ | 86 | u_short free; /* How many free chunks */ |
77 | u_long ovu_size; /* actual block size */ | 87 | u_short total; /* How many chunk */ |
78 | #endif | 88 | u_long bits[1]; /* Which chunks are free */ |
79 | } ovu; | ||
80 | #define ov_magic ovu.ovu_magic | ||
81 | #define ov_index ovu.ovu_index | ||
82 | #define ov_rmagic ovu.ovu_rmagic | ||
83 | #define ov_size ovu.ovu_size | ||
84 | }; | 89 | }; |
85 | 90 | ||
86 | #define MAGIC 0xef /* magic # on accounting info */ | 91 | /* |
87 | #define RMAGIC 0x5555 /* magic # on range info */ | 92 | * This structure describes a number of free pages. |
93 | */ | ||
94 | |||
95 | struct pgfree { | ||
96 | struct pgfree *next; /* next run of free pages */ | ||
97 | struct pgfree *prev; /* prev run of free pages */ | ||
98 | void *page; /* pointer to free pages */ | ||
99 | void *pdir; /* pointer to the base page's dir */ | ||
100 | size_t size; /* number of bytes free */ | ||
101 | }; | ||
88 | 102 | ||
89 | #ifdef RCHECK | 103 | /* |
90 | #define RSLOP sizeof (u_short) | 104 | * How many bits per u_long in the bitmap. |
105 | * Change only if not 8 bits/byte | ||
106 | */ | ||
107 | #define MALLOC_BITS (8*sizeof(u_long)) | ||
108 | |||
109 | /* | ||
110 | * Magic values to put in the page_directory | ||
111 | */ | ||
112 | #define MALLOC_NOT_MINE ((struct pginfo*) 0) | ||
113 | #define MALLOC_FREE ((struct pginfo*) 1) | ||
114 | #define MALLOC_FIRST ((struct pginfo*) 2) | ||
115 | #define MALLOC_FOLLOW ((struct pginfo*) 3) | ||
116 | #define MALLOC_MAGIC ((struct pginfo*) 4) | ||
117 | |||
118 | #ifndef malloc_pageshift | ||
119 | #define malloc_pageshift (PGSHIFT) | ||
120 | #endif | ||
121 | |||
122 | #ifndef malloc_minsize | ||
123 | #define malloc_minsize 16U | ||
124 | #endif | ||
125 | |||
126 | #ifndef malloc_pageshift | ||
127 | #error "malloc_pageshift undefined" | ||
128 | #endif | ||
129 | |||
130 | #if !defined(malloc_pagesize) | ||
131 | #define malloc_pagesize (1UL<<malloc_pageshift) | ||
132 | #endif | ||
133 | |||
134 | #if ((1UL<<malloc_pageshift) != malloc_pagesize) | ||
135 | #error "(1UL<<malloc_pageshift) != malloc_pagesize" | ||
136 | #endif | ||
137 | |||
138 | #ifndef malloc_maxsize | ||
139 | #define malloc_maxsize ((malloc_pagesize)>>1) | ||
140 | #endif | ||
141 | |||
142 | /* A mask for the offset inside a page. */ | ||
143 | #define malloc_pagemask ((malloc_pagesize)-1) | ||
144 | |||
145 | #define pageround(foo) (((foo) + (malloc_pagemask)) & ~malloc_pagemask) | ||
146 | #define ptr2index(foo) (((u_long)(foo) >> malloc_pageshift)+malloc_pageshift) | ||
147 | |||
148 | /* fd of /dev/zero */ | ||
149 | #ifdef USE_DEV_ZERO | ||
150 | static int fdzero; | ||
151 | #define MMAP_FD fdzero | ||
152 | #define INIT_MMAP() \ | ||
153 | { if ((fdzero=open("/dev/zero", O_RDWR, 0000)) == -1) \ | ||
154 | wrterror("open of /dev/zero\n"); } | ||
91 | #else | 155 | #else |
92 | #define RSLOP 0 | 156 | #define MMAP_FD (-1) |
157 | #define INIT_MMAP() | ||
158 | #endif | ||
159 | |||
160 | /* Set when initialization has been done */ | ||
161 | static unsigned int malloc_started; | ||
162 | |||
163 | /* Number of free pages we cache */ | ||
164 | static unsigned int malloc_cache = 16; | ||
165 | |||
166 | /* Structure used for linking discrete directory pages. */ | ||
167 | struct pdinfo { | ||
168 | struct pginfo **base; | ||
169 | struct pdinfo *prev; | ||
170 | struct pdinfo *next; | ||
171 | u_long dirnum; | ||
172 | }; | ||
173 | static struct pdinfo *last_dir; /* Caches to the last and previous */ | ||
174 | static struct pdinfo *prev_dir; /* referenced directory pages. */ | ||
175 | |||
176 | static size_t pdi_off; | ||
177 | static u_long pdi_mod; | ||
178 | #define PD_IDX(num) ((num) / (malloc_pagesize/sizeof(struct pginfo *))) | ||
179 | #define PD_OFF(num) ((num) & ((malloc_pagesize/sizeof(struct pginfo *))-1)) | ||
180 | #define PI_IDX(index) ((index) / pdi_mod) | ||
181 | #define PI_OFF(index) ((index) % pdi_mod) | ||
182 | |||
183 | /* The last index in the page directory we care about */ | ||
184 | static u_long last_index; | ||
185 | |||
186 | /* Pointer to page directory. Allocated "as if with" malloc */ | ||
187 | static struct pginfo **page_dir; | ||
188 | |||
189 | /* Free pages line up here */ | ||
190 | static struct pgfree free_list; | ||
191 | |||
192 | /* Abort(), user doesn't handle problems. */ | ||
193 | static int malloc_abort = 2; | ||
194 | |||
195 | /* Are we trying to die ? */ | ||
196 | static int suicide; | ||
197 | |||
198 | #ifdef MALLOC_STATS | ||
199 | /* dump statistics */ | ||
200 | static int malloc_stats; | ||
93 | #endif | 201 | #endif |
94 | 202 | ||
203 | /* avoid outputting warnings? */ | ||
204 | static int malloc_silent; | ||
205 | |||
206 | /* always realloc ? */ | ||
207 | static int malloc_realloc; | ||
208 | |||
209 | /* mprotect free pages PROT_NONE? */ | ||
210 | static int malloc_freeprot; | ||
211 | |||
212 | /* use guard pages after allocations? */ | ||
213 | static int malloc_guard = 0; | ||
214 | |||
215 | #if defined(__FreeBSD__) || (defined(__OpenBSD__) && defined(MADV_FREE)) | ||
216 | /* pass the kernel a hint on free pages ? */ | ||
217 | static int malloc_hint; | ||
218 | #endif | ||
219 | |||
220 | /* xmalloc behaviour ? */ | ||
221 | static int malloc_xmalloc; | ||
222 | |||
223 | /* zero fill ? */ | ||
224 | static int malloc_zero; | ||
225 | |||
226 | /* junk fill ? */ | ||
227 | static int malloc_junk; | ||
228 | |||
229 | #ifdef __FreeBSD__ | ||
230 | /* utrace ? */ | ||
231 | static int malloc_utrace; | ||
232 | |||
233 | struct ut { void *p; size_t s; void *r; }; | ||
234 | |||
235 | void utrace(struct ut *, int); | ||
236 | |||
237 | #define UTRACE(a, b, c) \ | ||
238 | if (malloc_utrace) \ | ||
239 | {struct ut u; u.p=a; u.s = b; u.r=c; utrace(&u, sizeof u);} | ||
240 | #else /* !__FreeBSD__ */ | ||
241 | #define UTRACE(a,b,c) | ||
242 | #endif | ||
243 | |||
244 | /* Status of malloc. */ | ||
245 | static int malloc_active; | ||
246 | |||
247 | /* Allocated memory. */ | ||
248 | static size_t malloc_used; | ||
249 | |||
250 | /* My last break. */ | ||
251 | static void *malloc_brk; | ||
252 | |||
253 | /* One location cache for free-list holders. */ | ||
254 | static struct pgfree *px; | ||
255 | |||
256 | /* Compile-time options. */ | ||
257 | char *malloc_options; | ||
258 | |||
259 | /* Name of the current public function. */ | ||
260 | static char *malloc_func; | ||
261 | |||
262 | /* Macro for mmap. */ | ||
263 | #define MMAP(size) \ | ||
264 | mmap((void *)0, (size), PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, \ | ||
265 | MMAP_FD, (off_t)0) | ||
266 | |||
95 | /* | 267 | /* |
96 | * nextf[i] is the pointer to the next free block of size 2^(i+3). The | 268 | * Necessary function declarations. |
97 | * smallest allocatable block is 8 bytes. The overhead information | ||
98 | * precedes the data area returned to the user. | ||
99 | */ | 269 | */ |
100 | #define NBUCKETS 30 | 270 | static void *imalloc(size_t size); |
101 | static union overhead *nextf[NBUCKETS]; | 271 | static void ifree(void *ptr); |
102 | extern char *sbrk(); | 272 | static void *irealloc(void *ptr, size_t size); |
273 | static void *malloc_bytes(size_t size); | ||
103 | 274 | ||
104 | static int pagesz; /* page size */ | ||
105 | static int pagebucket; /* page size bucket */ | ||
106 | 275 | ||
107 | #ifdef MSTATS | ||
108 | /* | 276 | /* |
109 | * nmalloc[i] is the difference between the number of mallocs and frees | 277 | * Function for page directory lookup. |
110 | * for a given block size. | ||
111 | */ | 278 | */ |
112 | static u_int nmalloc[NBUCKETS]; | 279 | static int |
113 | #include <stdio.h> | 280 | pdir_lookup(u_long index, struct pdinfo **pdi) |
114 | #endif | ||
115 | |||
116 | #if defined(DEBUG) || defined(RCHECK) | ||
117 | #define ASSERT(p) if (!(p)) botch("p") | ||
118 | #include <stdio.h> | ||
119 | static | ||
120 | botch(s) | ||
121 | char *s; | ||
122 | { | 281 | { |
123 | fprintf(stderr, "\r\nassertion botched: %s\r\n", s); | 282 | struct pdinfo *spi; |
124 | (void) fflush(stderr); /* just in case user buffered it */ | 283 | u_long pidx = PI_IDX(index); |
125 | abort(); | 284 | |
285 | if (last_dir != NULL && PD_IDX(last_dir->dirnum) == pidx) | ||
286 | *pdi = last_dir; | ||
287 | else if (prev_dir != NULL && PD_IDX(prev_dir->dirnum) == pidx) | ||
288 | *pdi = prev_dir; | ||
289 | else if (last_dir != NULL && prev_dir != NULL) { | ||
290 | if ((PD_IDX(last_dir->dirnum) > pidx) ? | ||
291 | (PD_IDX(last_dir->dirnum) - pidx):(pidx - PD_IDX(last_dir->dirnum)) | ||
292 | < (PD_IDX(prev_dir->dirnum) > pidx) ? | ||
293 | (PD_IDX(prev_dir->dirnum) - pidx):(pidx - PD_IDX(prev_dir->dirnum))) | ||
294 | *pdi = last_dir; | ||
295 | else | ||
296 | *pdi = prev_dir; | ||
297 | |||
298 | if (PD_IDX((*pdi)->dirnum) > pidx) { | ||
299 | for (spi=(*pdi)->prev;spi!=NULL && PD_IDX(spi->dirnum)>pidx; | ||
300 | spi=spi->prev) | ||
301 | *pdi = spi; | ||
302 | if (spi != NULL) | ||
303 | *pdi = spi; | ||
304 | } else | ||
305 | for (spi=(*pdi)->next;spi!=NULL && PD_IDX(spi->dirnum)<=pidx; | ||
306 | spi=spi->next) | ||
307 | *pdi = spi; | ||
308 | } else { | ||
309 | *pdi = (struct pdinfo *)((caddr_t)page_dir + pdi_off); | ||
310 | for (spi=*pdi;spi!=NULL && PD_IDX(spi->dirnum)<=pidx;spi=spi->next) | ||
311 | *pdi = spi; | ||
312 | } | ||
313 | |||
314 | return ((PD_IDX((*pdi)->dirnum) == pidx)?0:(PD_IDX((*pdi)->dirnum) > pidx)?1:-1); | ||
126 | } | 315 | } |
127 | #else | ||
128 | #define ASSERT(p) | ||
129 | #endif | ||
130 | 316 | ||
131 | void * | 317 | |
132 | malloc(nbytes) | 318 | #ifdef MALLOC_STATS |
133 | size_t nbytes; | 319 | void |
320 | malloc_dump(FILE *fd) | ||
134 | { | 321 | { |
135 | register union overhead *op; | 322 | struct pginfo **pd; |
136 | register long bucket, n; | 323 | struct pgfree *pf; |
137 | register unsigned amt; | 324 | struct pdinfo *pi; |
325 | int j; | ||
138 | 326 | ||
139 | /* | 327 | pd = page_dir; |
140 | * First time malloc is called, setup page size and | 328 | pi = (struct pdinfo *)((caddr_t)pd + pdi_off); |
141 | * align break pointer so all data will be page aligned. | 329 | |
142 | */ | 330 | /* print out all the pages */ |
143 | if (pagesz == 0) { | 331 | for(j=0;j<=last_index;) { |
144 | pagesz = n = getpagesize(); | 332 | fprintf(fd, "%08lx %5d ", j << malloc_pageshift, j); |
145 | op = (union overhead *)sbrk(0); | 333 | if (pd[PI_OFF(j)] == MALLOC_NOT_MINE) { |
146 | n = n - sizeof (*op) - ((long)op & (n - 1)); | 334 | for(j++;j<=last_index && pd[PI_OFF(j)] == MALLOC_NOT_MINE;) { |
147 | if (n < 0) | 335 | if (!PI_OFF(++j)) { |
148 | n += pagesz; | 336 | if ((pi = pi->next) == NULL || |
149 | if (n) { | 337 | PD_IDX(pi->dirnum) != PI_IDX(j)) break; |
150 | if (sbrk(n) == (char *)-1) | 338 | pd = pi->base; |
151 | return (NULL); | 339 | j += pdi_mod; |
152 | } | 340 | } |
153 | bucket = 0; | 341 | } |
154 | amt = 8; | 342 | j--; |
155 | while (pagesz > amt) { | 343 | fprintf(fd, ".. %5d not mine\n", j); |
156 | amt <<= 1; | 344 | } else if (pd[PI_OFF(j)] == MALLOC_FREE) { |
157 | bucket++; | 345 | for(j++;j<=last_index && pd[PI_OFF(j)] == MALLOC_FREE;) { |
346 | if (!PI_OFF(++j)) { | ||
347 | if ((pi = pi->next) == NULL || | ||
348 | PD_IDX(pi->dirnum) != PI_IDX(j)) break; | ||
349 | pd = pi->base; | ||
350 | j += pdi_mod; | ||
158 | } | 351 | } |
159 | pagebucket = bucket; | 352 | } |
353 | j--; | ||
354 | fprintf(fd, ".. %5d free\n", j); | ||
355 | } else if (pd[PI_OFF(j)] == MALLOC_FIRST) { | ||
356 | for(j++;j<=last_index && pd[PI_OFF(j)] == MALLOC_FOLLOW;) { | ||
357 | if (!PI_OFF(++j)) { | ||
358 | if ((pi = pi->next) == NULL || | ||
359 | PD_IDX(pi->dirnum) != PI_IDX(j)) break; | ||
360 | pd = pi->base; | ||
361 | j += pdi_mod; | ||
362 | } | ||
363 | } | ||
364 | j--; | ||
365 | fprintf(fd, ".. %5d in use\n", j); | ||
366 | } else if (pd[PI_OFF(j)] < MALLOC_MAGIC) { | ||
367 | fprintf(fd, "(%p)\n", pd[PI_OFF(j)]); | ||
368 | } else { | ||
369 | fprintf(fd, "%p %d (of %d) x %d @ %p --> %p\n", | ||
370 | pd[PI_OFF(j)], pd[PI_OFF(j)]->free, pd[PI_OFF(j)]->total, | ||
371 | pd[PI_OFF(j)]->size, pd[PI_OFF(j)]->page, pd[PI_OFF(j)]->next); | ||
160 | } | 372 | } |
161 | /* | 373 | if (!PI_OFF(++j)) { |
162 | * Convert amount of memory requested into closest block size | 374 | if ((pi = pi->next) == NULL) |
163 | * stored in hash buckets which satisfies request. | 375 | break; |
164 | * Account for space used per block for accounting. | 376 | pd = pi->base; |
165 | */ | 377 | j += (1 + PD_IDX(pi->dirnum) - PI_IDX(j)) * pdi_mod; |
166 | if (nbytes <= (n = pagesz - sizeof (*op) - RSLOP)) { | 378 | } |
167 | #ifndef RCHECK | 379 | } |
168 | amt = 8; /* size of first bucket */ | 380 | |
169 | bucket = 0; | 381 | for(pf=free_list.next; pf; pf=pf->next) { |
170 | #else | 382 | fprintf(fd, "Free: @%p [%p...%p[ %ld ->%p <-%p\n", |
171 | amt = 16; /* size of first bucket */ | 383 | pf, pf->page, pf->page + pf->size, pf->size, |
172 | bucket = 1; | 384 | pf->prev, pf->next); |
173 | #endif | 385 | if (pf == pf->next) { |
174 | n = -((long)sizeof (*op) + RSLOP); | 386 | fprintf(fd, "Free_list loops\n"); |
387 | break; | ||
388 | } | ||
389 | } | ||
390 | |||
391 | /* print out various info */ | ||
392 | fprintf(fd, "Minsize\t%d\n", malloc_minsize); | ||
393 | fprintf(fd, "Maxsize\t%d\n", malloc_maxsize); | ||
394 | fprintf(fd, "Pagesize\t%lu\n", (u_long)malloc_pagesize); | ||
395 | fprintf(fd, "Pageshift\t%d\n", malloc_pageshift); | ||
396 | fprintf(fd, "In use\t%lu\n", (u_long)malloc_used); | ||
397 | } | ||
398 | #endif /* MALLOC_STATS */ | ||
399 | |||
400 | extern char *__progname; | ||
401 | |||
402 | static void | ||
403 | wrterror(char *p) | ||
404 | { | ||
405 | char *q = " error: "; | ||
406 | struct iovec iov[4]; | ||
407 | |||
408 | iov[0].iov_base = __progname; | ||
409 | iov[0].iov_len = strlen(__progname); | ||
410 | iov[1].iov_base = malloc_func; | ||
411 | iov[1].iov_len = strlen(malloc_func); | ||
412 | iov[2].iov_base = q; | ||
413 | iov[2].iov_len = strlen(q); | ||
414 | iov[3].iov_base = p; | ||
415 | iov[3].iov_len = strlen(p); | ||
416 | writev(STDERR_FILENO, iov, 4); | ||
417 | |||
418 | suicide = 1; | ||
419 | #ifdef MALLOC_STATS | ||
420 | if (malloc_stats) | ||
421 | malloc_dump(stderr); | ||
422 | #endif /* MALLOC_STATS */ | ||
423 | malloc_active--; | ||
424 | if (malloc_abort) | ||
425 | abort(); | ||
426 | } | ||
427 | |||
428 | static void | ||
429 | wrtwarning(char *p) | ||
430 | { | ||
431 | char *q = " warning: "; | ||
432 | struct iovec iov[4]; | ||
433 | |||
434 | if (malloc_abort) | ||
435 | wrterror(p); | ||
436 | else if (malloc_silent) | ||
437 | return; | ||
438 | |||
439 | iov[0].iov_base = __progname; | ||
440 | iov[0].iov_len = strlen(__progname); | ||
441 | iov[1].iov_base = malloc_func; | ||
442 | iov[1].iov_len = strlen(malloc_func); | ||
443 | iov[2].iov_base = q; | ||
444 | iov[2].iov_len = strlen(q); | ||
445 | iov[3].iov_base = p; | ||
446 | iov[3].iov_len = strlen(p); | ||
447 | writev(STDERR_FILENO, iov, 4); | ||
448 | } | ||
449 | |||
450 | #ifdef MALLOC_STATS | ||
451 | static void | ||
452 | malloc_exit(void) | ||
453 | { | ||
454 | FILE *fd = fopen("malloc.out", "a"); | ||
455 | char *q = "malloc() warning: Couldn't dump stats\n"; | ||
456 | if (fd != NULL) { | ||
457 | malloc_dump(fd); | ||
458 | fclose(fd); | ||
459 | } else | ||
460 | write(STDERR_FILENO, q, strlen(q)); | ||
461 | } | ||
462 | #endif /* MALLOC_STATS */ | ||
463 | |||
464 | |||
465 | /* | ||
466 | * Allocate a number of pages from the OS | ||
467 | */ | ||
468 | static void * | ||
469 | map_pages(size_t pages) | ||
470 | { | ||
471 | struct pdinfo *pi, *spi; | ||
472 | struct pginfo **pd; | ||
473 | u_long pidx,lidx; | ||
474 | void *result, *tail; | ||
475 | u_long index; | ||
476 | |||
477 | pages <<= malloc_pageshift; | ||
478 | result = MMAP(pages + malloc_guard); | ||
479 | if (result == MAP_FAILED) { | ||
480 | errno = ENOMEM; | ||
481 | #ifdef MALLOC_EXTRA_SANITY | ||
482 | wrtwarning("(ES): map_pages fails\n"); | ||
483 | #endif /* MALLOC_EXTRA_SANITY */ | ||
484 | return (NULL); | ||
485 | } | ||
486 | tail = result + pages + malloc_guard; | ||
487 | if (malloc_guard) | ||
488 | mprotect(result + pages, malloc_guard, PROT_NONE); | ||
489 | |||
490 | if (tail > malloc_brk) | ||
491 | malloc_brk = tail; | ||
492 | if ((index = ptr2index(tail) - 1) > last_index) | ||
493 | last_index = index; | ||
494 | |||
495 | /* Insert directory pages, if needed. */ | ||
496 | pidx = PI_IDX(ptr2index(result)); | ||
497 | lidx = PI_IDX(index); | ||
498 | |||
499 | pdir_lookup(ptr2index(result), &pi); | ||
500 | |||
501 | for (index=pidx,spi=pi;index<=lidx;index++) { | ||
502 | if (pi == NULL || PD_IDX(pi->dirnum) != index) { | ||
503 | if ((pd = MMAP(malloc_pagesize)) == MAP_FAILED) { | ||
504 | errno = ENOMEM; | ||
505 | munmap(result, tail - result); | ||
506 | #ifdef MALLOC_EXTRA_SANITY | ||
507 | wrtwarning("(ES): map_pages fails\n"); | ||
508 | #endif /* MALLOC_EXTRA_SANITY */ | ||
509 | return (NULL); | ||
510 | } | ||
511 | memset(pd, 0, malloc_pagesize); | ||
512 | pi = (struct pdinfo *)((caddr_t)pd + pdi_off); | ||
513 | pi->base = pd; | ||
514 | pi->prev = spi; | ||
515 | pi->next = spi->next; | ||
516 | pi->dirnum = index * (malloc_pagesize/sizeof(struct pginfo *)); | ||
517 | |||
518 | if (spi->next != NULL) | ||
519 | spi->next->prev = pi; | ||
520 | spi->next = pi; | ||
521 | } | ||
522 | if (index > pidx && index < lidx) { | ||
523 | pi->dirnum += pdi_mod; | ||
524 | } else if (index == pidx) { | ||
525 | if (pidx == lidx) { | ||
526 | pi->dirnum += (tail - result) >> malloc_pageshift; | ||
527 | } else { | ||
528 | pi->dirnum += pdi_mod - PI_OFF(ptr2index(result)); | ||
529 | } | ||
175 | } else { | 530 | } else { |
176 | amt = pagesz; | 531 | pi->dirnum += PI_OFF(ptr2index(tail - 1)) + 1; |
177 | bucket = pagebucket; | ||
178 | } | 532 | } |
179 | while (nbytes > amt + n) { | 533 | #ifdef MALLOC_EXTRA_SANITY |
180 | amt <<= 1; | 534 | if (PD_OFF(pi->dirnum) > pdi_mod || PD_IDX(pi->dirnum) > index) { |
181 | if (amt == 0) | 535 | wrterror("(ES): pages directory overflow\n"); |
182 | return (NULL); | 536 | errno = EFAULT; |
183 | bucket++; | 537 | return (NULL); |
184 | } | 538 | } |
185 | /* | 539 | #endif /* MALLOC_EXTRA_SANITY */ |
186 | * If nothing in hash bucket right now, | 540 | if (index == pidx && pi != last_dir) { |
187 | * request more memory from the system. | 541 | prev_dir = last_dir; |
188 | */ | 542 | last_dir = pi; |
189 | if ((op = nextf[bucket]) == NULL) { | 543 | } |
190 | morecore(bucket); | 544 | spi = pi; |
191 | if ((op = nextf[bucket]) == NULL) | 545 | pi = spi->next; |
192 | return (NULL); | 546 | } |
193 | } | 547 | |
194 | /* remove from linked list */ | 548 | return (result); |
195 | nextf[bucket] = op->ov_next; | ||
196 | op->ov_magic = MAGIC; | ||
197 | op->ov_index = bucket; | ||
198 | #ifdef MSTATS | ||
199 | nmalloc[bucket]++; | ||
200 | #endif | ||
201 | #ifdef RCHECK | ||
202 | /* | ||
203 | * Record allocated size of block and | ||
204 | * bound space with magic numbers. | ||
205 | */ | ||
206 | op->ov_size = (nbytes + RSLOP - 1) & ~(RSLOP - 1); | ||
207 | op->ov_rmagic = RMAGIC; | ||
208 | *(u_short *)((caddr_t)(op + 1) + op->ov_size) = RMAGIC; | ||
209 | #endif | ||
210 | return ((char *)(op + 1)); | ||
211 | } | 549 | } |
212 | 550 | ||
551 | |||
213 | /* | 552 | /* |
214 | * Allocate more memory to the indicated bucket. | 553 | * Initialize the world |
215 | */ | 554 | */ |
216 | static void | 555 | static void |
217 | morecore(bucket) | 556 | malloc_init(void) |
218 | int bucket; | ||
219 | { | 557 | { |
220 | register union overhead *op; | 558 | char *p, b[64]; |
221 | register long sz; /* size of desired block */ | 559 | int i, j; |
222 | long amt; /* amount to allocate */ | 560 | int save_errno = errno; |
223 | int nblks; /* how many blocks we get */ | ||
224 | 561 | ||
225 | /* | 562 | _MALLOC_LOCK_INIT(); |
226 | * sbrk_size <= 0 only for big, FLUFFY, requests (about | 563 | |
227 | * 2^30 bytes on a VAX, I think) or for a negative arg. | 564 | INIT_MMAP(); |
228 | */ | 565 | |
229 | sz = 1 << (bucket + 3); | 566 | #ifdef MALLOC_EXTRA_SANITY |
230 | #ifdef DEBUG | 567 | malloc_junk = 1; |
231 | ASSERT(sz > 0); | 568 | #endif /* MALLOC_EXTRA_SANITY */ |
232 | #else | 569 | |
233 | if (sz <= 0) | 570 | for (i = 0; i < 3; i++) { |
234 | return; | 571 | switch (i) { |
235 | #endif | 572 | case 0: |
236 | if (sz < pagesz) { | 573 | j = readlink("/etc/malloc.conf", b, sizeof b - 1); |
237 | amt = pagesz; | 574 | if (j <= 0) |
238 | nblks = amt / sz; | 575 | continue; |
239 | } else { | 576 | b[j] = '\0'; |
240 | amt = sz + pagesz; | 577 | p = b; |
241 | nblks = 1; | 578 | break; |
579 | |||
580 | case 1: | ||
581 | if (issetugid() == 0) | ||
582 | p = getenv("MALLOC_OPTIONS"); | ||
583 | else | ||
584 | continue; | ||
585 | break; | ||
586 | |||
587 | case 2: | ||
588 | p = malloc_options; | ||
589 | break; | ||
590 | |||
591 | default: p = NULL; | ||
242 | } | 592 | } |
243 | op = (union overhead *)sbrk(amt); | 593 | for (; p != NULL && *p != '\0'; p++) { |
244 | /* no more room! */ | 594 | switch (*p) { |
245 | if ((long)op == -1) | 595 | case '>': malloc_cache <<= 1; break; |
246 | return; | 596 | case '<': malloc_cache >>= 1; break; |
247 | /* | 597 | case 'a': malloc_abort = 0; break; |
248 | * Add new memory allocated to that on | 598 | case 'A': malloc_abort = 1; break; |
249 | * free list for this hash bucket. | 599 | #ifdef MALLOC_STATS |
250 | */ | 600 | case 'd': malloc_stats = 0; break; |
251 | nextf[bucket] = op; | 601 | case 'D': malloc_stats = 1; break; |
252 | while (--nblks > 0) { | 602 | #endif /* MALLOC_STATS */ |
253 | op->ov_next = (union overhead *)((caddr_t)op + sz); | 603 | case 'f': malloc_freeprot = 0; break; |
254 | op = (union overhead *)((caddr_t)op + sz); | 604 | case 'F': malloc_freeprot = 1; break; |
255 | } | 605 | case 'g': malloc_guard = 0; break; |
606 | case 'G': malloc_guard = malloc_pagesize; break; | ||
607 | #if defined(__FreeBSD__) || (defined(__OpenBSD__) && defined(MADV_FREE)) | ||
608 | case 'h': malloc_hint = 0; break; | ||
609 | case 'H': malloc_hint = 1; break; | ||
610 | #endif /* __FreeBSD__ */ | ||
611 | case 'j': malloc_junk = 0; break; | ||
612 | case 'J': malloc_junk = 1; break; | ||
613 | case 'n': malloc_silent = 0; break; | ||
614 | case 'N': malloc_silent = 1; break; | ||
615 | case 'r': malloc_realloc = 0; break; | ||
616 | case 'R': malloc_realloc = 1; break; | ||
617 | #ifdef __FreeBSD__ | ||
618 | case 'u': malloc_utrace = 0; break; | ||
619 | case 'U': malloc_utrace = 1; break; | ||
620 | #endif /* __FreeBSD__ */ | ||
621 | case 'x': malloc_xmalloc = 0; break; | ||
622 | case 'X': malloc_xmalloc = 1; break; | ||
623 | case 'z': malloc_zero = 0; break; | ||
624 | case 'Z': malloc_zero = 1; break; | ||
625 | default: | ||
626 | j = malloc_abort; | ||
627 | malloc_abort = 0; | ||
628 | wrtwarning("unknown char in MALLOC_OPTIONS\n"); | ||
629 | malloc_abort = j; | ||
630 | break; | ||
631 | } | ||
632 | } | ||
633 | } | ||
634 | |||
635 | UTRACE(0, 0, 0); | ||
636 | |||
637 | /* | ||
638 | * We want junk in the entire allocation, and zero only in the part | ||
639 | * the user asked for. | ||
640 | */ | ||
641 | if (malloc_zero) | ||
642 | malloc_junk=1; | ||
643 | |||
644 | #ifdef MALLOC_STATS | ||
645 | if (malloc_stats && (atexit(malloc_exit) == -1)) | ||
646 | wrtwarning("atexit(2) failed. Will not be able to dump malloc stats on exit\n"); | ||
647 | #endif /* MALLOC_STATS */ | ||
648 | |||
649 | /* Allocate one page for the page directory. */ | ||
650 | page_dir = (struct pginfo **) MMAP(malloc_pagesize); | ||
651 | |||
652 | if (page_dir == MAP_FAILED) { | ||
653 | wrterror("mmap(2) failed, check limits\n"); | ||
654 | errno = ENOMEM; | ||
655 | return; | ||
656 | } | ||
657 | |||
658 | pdi_off = (malloc_pagesize - sizeof(struct pdinfo)) & ~(malloc_minsize - 1); | ||
659 | pdi_mod = pdi_off / sizeof(struct pginfo *); | ||
660 | |||
661 | last_dir = (struct pdinfo *)((caddr_t)page_dir + pdi_off); | ||
662 | last_dir->base = page_dir; | ||
663 | last_dir->prev = last_dir->next = NULL; | ||
664 | last_dir->dirnum = malloc_pageshift; | ||
665 | |||
666 | /* Been here, done that. */ | ||
667 | malloc_started++; | ||
668 | |||
669 | /* Recalculate the cache size in bytes, and make sure it's nonzero. */ | ||
670 | |||
671 | if (!malloc_cache) | ||
672 | malloc_cache++; | ||
673 | |||
674 | malloc_cache <<= malloc_pageshift; | ||
675 | |||
676 | errno = save_errno; | ||
256 | } | 677 | } |
257 | 678 | ||
258 | void | 679 | /* |
259 | free(cp) | 680 | * Allocate a number of complete pages |
260 | void *cp; | 681 | */ |
261 | { | 682 | static void * |
262 | register long size; | 683 | malloc_pages(size_t size) |
263 | register union overhead *op; | 684 | { |
264 | 685 | void *p, *delay_free = NULL; | |
265 | if (cp == NULL) | 686 | int i; |
266 | return; | 687 | struct rlimit rl; |
267 | op = (union overhead *)((caddr_t)cp - sizeof (union overhead)); | 688 | struct pginfo **pd; |
268 | #ifdef DEBUG | 689 | struct pdinfo *pi; |
269 | ASSERT(op->ov_magic == MAGIC); /* make sure it was in use */ | 690 | u_long pidx; |
270 | #else | 691 | void *tp; |
271 | if (op->ov_magic != MAGIC) | 692 | struct pgfree *pf; |
272 | return; /* sanity */ | 693 | u_long index; |
273 | #endif | 694 | int m; |
274 | #ifdef RCHECK | 695 | |
275 | ASSERT(op->ov_rmagic == RMAGIC); | 696 | size = pageround(size) + malloc_guard; |
276 | ASSERT(*(u_short *)((caddr_t)(op + 1) + op->ov_size) == RMAGIC); | 697 | |
277 | #endif | 698 | p = NULL; |
278 | size = op->ov_index; | 699 | /* Look for free pages before asking for more */ |
279 | ASSERT(size < NBUCKETS); | 700 | for (pf = free_list.next; pf; pf = pf->next) { |
280 | op->ov_next = nextf[size]; /* also clobbers ov_magic */ | 701 | |
281 | nextf[size] = op; | 702 | #ifdef MALLOC_EXTRA_SANITY |
282 | #ifdef MSTATS | 703 | if (pf->size & malloc_pagemask) { |
283 | nmalloc[size]--; | 704 | wrterror("(ES): junk length entry on free_list\n"); |
284 | #endif | 705 | errno = EFAULT; |
706 | return (NULL); | ||
707 | } | ||
708 | if (!pf->size) { | ||
709 | wrterror("(ES): zero length entry on free_list\n"); | ||
710 | errno = EFAULT; | ||
711 | return (NULL); | ||
712 | } | ||
713 | if (pf->page > (pf->page + pf->size)) { | ||
714 | wrterror("(ES): sick entry on free_list\n"); | ||
715 | errno = EFAULT; | ||
716 | return (NULL); | ||
717 | } | ||
718 | if ((pi = pf->pdir) == NULL) { | ||
719 | wrterror("(ES): invalid page directory on free-list\n"); | ||
720 | errno = EFAULT; | ||
721 | return (NULL); | ||
722 | } | ||
723 | if ((pidx = PI_IDX(ptr2index(pf->page))) != PD_IDX(pi->dirnum)) { | ||
724 | wrterror("(ES): directory index mismatch on free-list\n"); | ||
725 | errno = EFAULT; | ||
726 | return (NULL); | ||
727 | } | ||
728 | pd = pi->base; | ||
729 | if (pd[PI_OFF(ptr2index(pf->page))] != MALLOC_FREE) { | ||
730 | wrterror("(ES): non-free first page on free-list\n"); | ||
731 | errno = EFAULT; | ||
732 | return (NULL); | ||
733 | } | ||
734 | pidx = PI_IDX(ptr2index((pf->page)+(pf->size))-1); | ||
735 | for (pi=pf->pdir; pi!=NULL && PD_IDX(pi->dirnum)<pidx; pi=pi->next); | ||
736 | if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { | ||
737 | wrterror("(ES): last page not referenced in page directory\n"); | ||
738 | errno = EFAULT; | ||
739 | return (NULL); | ||
740 | } | ||
741 | pd = pi->base; | ||
742 | if (pd[PI_OFF(ptr2index((pf->page)+(pf->size))-1)] != MALLOC_FREE) { | ||
743 | wrterror("(ES): non-free last page on free-list\n"); | ||
744 | errno = EFAULT; | ||
745 | return (NULL); | ||
746 | } | ||
747 | #endif /* MALLOC_EXTRA_SANITY */ | ||
748 | |||
749 | if (pf->size < size) | ||
750 | continue; | ||
751 | |||
752 | if (pf->size == size) { | ||
753 | p = pf->page; | ||
754 | pi = pf->pdir; | ||
755 | if (pf->next != NULL) | ||
756 | pf->next->prev = pf->prev; | ||
757 | pf->prev->next = pf->next; | ||
758 | delay_free = pf; | ||
759 | break; | ||
760 | } | ||
761 | |||
762 | p = pf->page; | ||
763 | pf->page = (char *)pf->page + size; | ||
764 | pf->size -= size; | ||
765 | pidx = PI_IDX(ptr2index(pf->page)); | ||
766 | for (pi=pf->pdir; pi!=NULL && PD_IDX(pi->dirnum)<pidx; pi=pi->next); | ||
767 | if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { | ||
768 | wrterror("(ES): hole in directories\n"); | ||
769 | errno = EFAULT; | ||
770 | return (NULL); | ||
771 | } | ||
772 | tp = pf->pdir; | ||
773 | pf->pdir = pi; | ||
774 | pi = tp; | ||
775 | break; | ||
776 | } | ||
777 | |||
778 | size -= malloc_guard; | ||
779 | |||
780 | #ifdef MALLOC_EXTRA_SANITY | ||
781 | if (p != NULL && pi != NULL) { | ||
782 | pidx = PD_IDX(pi->dirnum); | ||
783 | pd = pi->base; | ||
784 | } | ||
785 | if (p != NULL && pd[PI_OFF(ptr2index(p))] != MALLOC_FREE) { | ||
786 | wrterror("(ES): allocated non-free page on free-list\n"); | ||
787 | errno = EFAULT; | ||
788 | return (NULL); | ||
789 | } | ||
790 | #endif /* MALLOC_EXTRA_SANITY */ | ||
791 | |||
792 | if (p != NULL && (malloc_guard || malloc_freeprot)) | ||
793 | mprotect(p, size, PROT_READ|PROT_WRITE); | ||
794 | |||
795 | size >>= malloc_pageshift; | ||
796 | |||
797 | /* Map new pages */ | ||
798 | if (p == NULL) | ||
799 | p = map_pages(size); | ||
800 | |||
801 | if (p != NULL) { | ||
802 | |||
803 | index = ptr2index(p); | ||
804 | pidx = PI_IDX(index); | ||
805 | pdir_lookup(index, &pi); | ||
806 | #ifdef MALLOC_EXTRA_SANITY | ||
807 | if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { | ||
808 | wrterror("(ES): mapped pages not found in directory\n"); | ||
809 | errno = EFAULT; | ||
810 | return (NULL); | ||
811 | } | ||
812 | #endif /* MALLOC_EXTRA_SANITY */ | ||
813 | if (pi != last_dir) { | ||
814 | prev_dir = last_dir; | ||
815 | last_dir = pi; | ||
816 | } | ||
817 | pd = pi->base; | ||
818 | pd[PI_OFF(index)] = MALLOC_FIRST; | ||
819 | for (i=1;i<size;i++) { | ||
820 | if (!PI_OFF(index+i)) { | ||
821 | pidx++; | ||
822 | pi = pi->next; | ||
823 | #ifdef MALLOC_EXTRA_SANITY | ||
824 | if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { | ||
825 | wrterror("(ES): hole in mapped pages directory\n"); | ||
826 | errno = EFAULT; | ||
827 | return (NULL); | ||
828 | } | ||
829 | #endif /* MALLOC_EXTRA_SANITY */ | ||
830 | pd = pi->base; | ||
831 | } | ||
832 | pd[PI_OFF(index+i)] = MALLOC_FOLLOW; | ||
833 | } | ||
834 | if (malloc_guard) { | ||
835 | if (!PI_OFF(index+i)) { | ||
836 | pidx++; | ||
837 | pi = pi->next; | ||
838 | #ifdef MALLOC_EXTRA_SANITY | ||
839 | if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { | ||
840 | wrterror("(ES): hole in mapped pages directory\n"); | ||
841 | errno = EFAULT; | ||
842 | return (NULL); | ||
843 | } | ||
844 | #endif /* MALLOC_EXTRA_SANITY */ | ||
845 | pd = pi->base; | ||
846 | } | ||
847 | pd[PI_OFF(index+i)] = MALLOC_FIRST; | ||
848 | } | ||
849 | |||
850 | malloc_used += size << malloc_pageshift; | ||
851 | |||
852 | if (malloc_junk) | ||
853 | memset(p, SOME_JUNK, size << malloc_pageshift); | ||
854 | } | ||
855 | |||
856 | if (delay_free) { | ||
857 | if (px == NULL) | ||
858 | px = delay_free; | ||
859 | else | ||
860 | ifree(delay_free); | ||
861 | } | ||
862 | |||
863 | return (p); | ||
285 | } | 864 | } |
286 | 865 | ||
287 | /* | 866 | /* |
288 | * When a program attempts "storage compaction" as mentioned in the | 867 | * Allocate a page of fragments |
289 | * old malloc man page, it realloc's an already freed block. Usually | ||
290 | * this is the last block it freed; occasionally it might be farther | ||
291 | * back. We have to search all the free lists for the block in order | ||
292 | * to determine its bucket: 1st we make one pass thru the lists | ||
293 | * checking only the first block in each; if that fails we search | ||
294 | * ``realloc_srchlen'' blocks in each list for a match (the variable | ||
295 | * is extern so the caller can modify it). If that fails we just copy | ||
296 | * however many bytes was given to realloc() and hope it's not huge. | ||
297 | */ | 868 | */ |
298 | int realloc_srchlen = 4; /* 4 should be plenty, -1 =>'s whole list */ | ||
299 | 869 | ||
300 | void * | 870 | static __inline__ int |
301 | realloc(cp, nbytes) | 871 | malloc_make_chunks(int bits) |
302 | void *cp; | 872 | { |
303 | size_t nbytes; | 873 | struct pginfo *bp; |
304 | { | 874 | struct pginfo **pd; |
305 | register u_long onb; | 875 | struct pdinfo *pi; |
306 | register long i; | 876 | u_long pidx; |
307 | union overhead *op; | 877 | void *pp; |
308 | char *res; | 878 | int i, k, l; |
309 | int was_alloced = 0; | 879 | |
310 | 880 | /* Allocate a new bucket */ | |
311 | if (cp == NULL) | 881 | pp = malloc_pages((size_t)malloc_pagesize); |
312 | return (malloc(nbytes)); | 882 | if (pp == NULL) |
313 | op = (union overhead *)((caddr_t)cp - sizeof (union overhead)); | 883 | return (0); |
314 | if (op->ov_magic == MAGIC) { | 884 | |
315 | was_alloced++; | 885 | /* Find length of admin structure */ |
316 | i = op->ov_index; | 886 | l = sizeof *bp - sizeof(u_long); |
317 | } else { | 887 | l += sizeof(u_long) * |
318 | /* | 888 | (((malloc_pagesize >> bits)+MALLOC_BITS-1) / MALLOC_BITS); |
319 | * Already free, doing "compaction". | 889 | |
320 | * | 890 | /* Don't waste more than two chunks on this */ |
321 | * Search for the old block of memory on the | 891 | /* |
322 | * free list. First, check the most common | 892 | * If we are to allocate a memory protected page for the malloc(0) |
323 | * case (last element free'd), then (this failing) | 893 | * case (when bits=0), it must be from a different page than the |
324 | * the last ``realloc_srchlen'' items free'd. | 894 | * pginfo page. |
325 | * If all lookups fail, then assume the size of | 895 | * --> Treat it like the big chunk alloc, get a second data page. |
326 | * the memory block being realloc'd is the | 896 | */ |
327 | * largest possible (so that all "nbytes" of new | 897 | if (bits != 0 && (1UL<<(bits)) <= l+l) { |
328 | * memory are copied into). Note that this could cause | 898 | bp = (struct pginfo *)pp; |
329 | * a memory fault if the old area was tiny, and the moon | 899 | } else { |
330 | * is gibbous. However, that is very unlikely. | 900 | bp = (struct pginfo *)imalloc(l); |
331 | */ | 901 | if (bp == NULL) { |
332 | if ((i = findbucket(op, 1)) < 0 && | 902 | ifree(pp); |
333 | (i = findbucket(op, realloc_srchlen)) < 0) | 903 | return (0); |
334 | i = NBUCKETS; | 904 | } |
335 | } | 905 | } |
336 | onb = 1 << (i + 3); | 906 | |
337 | if (onb < pagesz) | 907 | /* memory protect the page allocated in the malloc(0) case */ |
338 | onb -= sizeof (*op) + RSLOP; | 908 | if (bits == 0) { |
909 | |||
910 | bp->size = 0; | ||
911 | bp->shift = 1; | ||
912 | i = malloc_minsize-1; | ||
913 | while (i >>= 1) | ||
914 | bp->shift++; | ||
915 | bp->total = bp->free = malloc_pagesize >> bp->shift; | ||
916 | bp->page = pp; | ||
917 | |||
918 | k = mprotect(pp, malloc_pagesize, PROT_NONE); | ||
919 | if (k < 0) { | ||
920 | ifree(pp); | ||
921 | ifree(bp); | ||
922 | return (0); | ||
923 | } | ||
924 | } else { | ||
925 | bp->size = (1UL<<bits); | ||
926 | bp->shift = bits; | ||
927 | bp->total = bp->free = malloc_pagesize >> bits; | ||
928 | bp->page = pp; | ||
929 | } | ||
930 | |||
931 | /* set all valid bits in the bitmap */ | ||
932 | k = bp->total; | ||
933 | i = 0; | ||
934 | |||
935 | /* Do a bunch at a time */ | ||
936 | for(;k-i >= MALLOC_BITS; i += MALLOC_BITS) | ||
937 | bp->bits[i / MALLOC_BITS] = ~0UL; | ||
938 | |||
939 | for(; i < k; i++) | ||
940 | bp->bits[i/MALLOC_BITS] |= 1UL<<(i%MALLOC_BITS); | ||
941 | |||
942 | if (bp == bp->page) { | ||
943 | /* Mark the ones we stole for ourselves */ | ||
944 | for(i=0;l > 0;i++) { | ||
945 | bp->bits[i/MALLOC_BITS] &= ~(1UL<<(i%MALLOC_BITS)); | ||
946 | bp->free--; | ||
947 | bp->total--; | ||
948 | l -= (1 << bits); | ||
949 | } | ||
950 | } | ||
951 | |||
952 | /* MALLOC_LOCK */ | ||
953 | |||
954 | pidx = PI_IDX(ptr2index(pp)); | ||
955 | pdir_lookup(ptr2index(pp), &pi); | ||
956 | #ifdef MALLOC_EXTRA_SANITY | ||
957 | if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { | ||
958 | wrterror("(ES): mapped pages not found in directory\n"); | ||
959 | errno = EFAULT; | ||
960 | return (0); | ||
961 | } | ||
962 | #endif /* MALLOC_EXTRA_SANITY */ | ||
963 | if (pi != last_dir) { | ||
964 | prev_dir = last_dir; | ||
965 | last_dir = pi; | ||
966 | } | ||
967 | pd = pi->base; | ||
968 | pd[PI_OFF(ptr2index(pp))] = bp; | ||
969 | |||
970 | bp->next = page_dir[bits]; | ||
971 | page_dir[bits] = bp; | ||
972 | |||
973 | /* MALLOC_UNLOCK */ | ||
974 | |||
975 | return (1); | ||
976 | } | ||
977 | |||
978 | /* | ||
979 | * Allocate a fragment | ||
980 | */ | ||
981 | static void * | ||
982 | malloc_bytes(size_t size) | ||
983 | { | ||
984 | int i,j; | ||
985 | u_long u; | ||
986 | struct pginfo *bp; | ||
987 | int k; | ||
988 | u_long *lp; | ||
989 | |||
990 | /* Don't bother with anything less than this */ | ||
991 | /* unless we have a malloc(0) requests */ | ||
992 | if (size != 0 && size < malloc_minsize) | ||
993 | size = malloc_minsize; | ||
994 | |||
995 | /* Find the right bucket */ | ||
996 | if (size == 0) | ||
997 | j=0; | ||
998 | else { | ||
999 | j = 1; | ||
1000 | i = size-1; | ||
1001 | while (i >>= 1) | ||
1002 | j++; | ||
1003 | } | ||
1004 | |||
1005 | /* If it's empty, make a page more of that size chunks */ | ||
1006 | if (page_dir[j] == NULL && !malloc_make_chunks(j)) | ||
1007 | return (NULL); | ||
1008 | |||
1009 | bp = page_dir[j]; | ||
1010 | |||
1011 | /* Find first word of bitmap which isn't empty */ | ||
1012 | for (lp = bp->bits; !*lp; lp++) | ||
1013 | ; | ||
1014 | |||
1015 | /* Find that bit, and tweak it */ | ||
1016 | u = 1; | ||
1017 | k = 0; | ||
1018 | while (!(*lp & u)) { | ||
1019 | u += u; | ||
1020 | k++; | ||
1021 | } | ||
1022 | |||
1023 | if (malloc_guard) { | ||
1024 | /* Walk to a random position. */ | ||
1025 | i = arc4random() % bp->free; | ||
1026 | while (i > 0) { | ||
1027 | u += u; | ||
1028 | k++; | ||
1029 | if (k >= MALLOC_BITS) { | ||
1030 | lp++; | ||
1031 | u = 1; | ||
1032 | k = 0; | ||
1033 | } | ||
1034 | #ifdef MALLOC_EXTRA_SANITY | ||
1035 | if (lp - bp->bits > (bp->total - 1) / MALLOC_BITS) { | ||
1036 | wrterror("chunk overflow\n"); | ||
1037 | errno = EFAULT; | ||
1038 | return (NULL); | ||
1039 | } | ||
1040 | #endif /* MALLOC_EXTRA_SANITY */ | ||
1041 | if (*lp & u) | ||
1042 | i--; | ||
1043 | } | ||
1044 | } | ||
1045 | *lp ^= u; | ||
1046 | |||
1047 | /* If there are no more free, remove from free-list */ | ||
1048 | if (!--bp->free) { | ||
1049 | page_dir[j] = bp->next; | ||
1050 | bp->next = NULL; | ||
1051 | } | ||
1052 | |||
1053 | /* Adjust to the real offset of that chunk */ | ||
1054 | k += (lp-bp->bits)*MALLOC_BITS; | ||
1055 | k <<= bp->shift; | ||
1056 | |||
1057 | if (malloc_junk && bp->size != 0) | ||
1058 | memset((char *)bp->page + k, SOME_JUNK, bp->size); | ||
1059 | |||
1060 | return ((u_char *)bp->page + k); | ||
1061 | } | ||
1062 | |||
1063 | /* | ||
1064 | * Allocate a piece of memory | ||
1065 | */ | ||
1066 | static void * | ||
1067 | imalloc(size_t size) | ||
1068 | { | ||
1069 | void *result; | ||
1070 | int ptralloc = 0; | ||
1071 | |||
1072 | if (!malloc_started) | ||
1073 | malloc_init(); | ||
1074 | |||
1075 | if (suicide) | ||
1076 | abort(); | ||
1077 | |||
1078 | if ((size + malloc_pagesize) < size) { /* Check for overflow */ | ||
1079 | result = NULL; | ||
1080 | errno = ENOMEM; | ||
1081 | } | ||
1082 | else if (size <= malloc_maxsize) | ||
1083 | result = malloc_bytes(size); | ||
1084 | else | ||
1085 | result = malloc_pages(size); | ||
1086 | |||
1087 | if (malloc_abort == 1 && result == NULL) | ||
1088 | wrterror("allocation failed\n"); | ||
1089 | |||
1090 | if (malloc_zero && result != NULL) | ||
1091 | memset(result, 0, size); | ||
1092 | |||
1093 | return (result); | ||
1094 | } | ||
1095 | |||
1096 | /* | ||
1097 | * Change the size of an allocation. | ||
1098 | */ | ||
1099 | static void * | ||
1100 | irealloc(void *ptr, size_t size) | ||
1101 | { | ||
1102 | void *p; | ||
1103 | u_long osize, index, i; | ||
1104 | struct pginfo **mp; | ||
1105 | struct pginfo **pd; | ||
1106 | struct pdinfo *pi; | ||
1107 | u_long pidx; | ||
1108 | |||
1109 | if (suicide) | ||
1110 | abort(); | ||
1111 | |||
1112 | if (!malloc_started) { | ||
1113 | wrtwarning("malloc() has never been called\n"); | ||
1114 | return (NULL); | ||
1115 | } | ||
1116 | |||
1117 | index = ptr2index(ptr); | ||
1118 | |||
1119 | if (index < malloc_pageshift) { | ||
1120 | wrtwarning("junk pointer, too low to make sense\n"); | ||
1121 | return (NULL); | ||
1122 | } | ||
1123 | |||
1124 | if (index > last_index) { | ||
1125 | wrtwarning("junk pointer, too high to make sense\n"); | ||
1126 | return (NULL); | ||
1127 | } | ||
1128 | |||
1129 | pidx = PI_IDX(index); | ||
1130 | pdir_lookup(index, &pi); | ||
1131 | #ifdef MALLOC_EXTRA_SANITY | ||
1132 | if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { | ||
1133 | wrterror("(ES): mapped pages not found in directory\n"); | ||
1134 | errno = EFAULT; | ||
1135 | return (NULL); | ||
1136 | } | ||
1137 | #endif /* MALLOC_EXTRA_SANITY */ | ||
1138 | if (pi != last_dir) { | ||
1139 | prev_dir = last_dir; | ||
1140 | last_dir = pi; | ||
1141 | } | ||
1142 | |||
1143 | pd = pi->base; | ||
1144 | mp = &pd[PI_OFF(index)]; | ||
1145 | |||
1146 | if (*mp == MALLOC_FIRST) { /* Page allocation */ | ||
1147 | |||
1148 | /* Check the pointer */ | ||
1149 | if ((u_long)ptr & malloc_pagemask) { | ||
1150 | wrtwarning("modified (page-) pointer\n"); | ||
1151 | return (NULL); | ||
1152 | } | ||
1153 | |||
1154 | /* Find the size in bytes */ | ||
1155 | i = index; | ||
1156 | if (!PI_OFF(++i)) { | ||
1157 | pi = pi->next; | ||
1158 | if (pi != NULL && PD_IDX(pi->dirnum) != PI_IDX(i)) | ||
1159 | pi = NULL; | ||
1160 | if (pi != NULL) | ||
1161 | pd = pi->base; | ||
1162 | } | ||
1163 | for (osize = malloc_pagesize; | ||
1164 | pi != NULL && pd[PI_OFF(i)] == MALLOC_FOLLOW;) { | ||
1165 | osize += malloc_pagesize; | ||
1166 | if (!PI_OFF(++i)) { | ||
1167 | pi = pi->next; | ||
1168 | if (pi != NULL && PD_IDX(pi->dirnum) != PI_IDX(i)) | ||
1169 | pi = NULL; | ||
1170 | if (pi != NULL) | ||
1171 | pd = pi->base; | ||
1172 | } | ||
1173 | } | ||
1174 | |||
1175 | if (!malloc_realloc && /* Unless we have to, */ | ||
1176 | size <= osize && /* .. or are too small, */ | ||
1177 | size > (osize - malloc_pagesize)) { /* .. or can free a page, */ | ||
1178 | if (malloc_junk) | ||
1179 | memset((char *)ptr + size, SOME_JUNK, osize-size); | ||
1180 | return (ptr); /* ..don't do anything else. */ | ||
1181 | } | ||
1182 | |||
1183 | } else if (*mp >= MALLOC_MAGIC) { /* Chunk allocation */ | ||
1184 | |||
1185 | /* Check the pointer for sane values */ | ||
1186 | if ((u_long)ptr & ((1UL<<((*mp)->shift))-1)) { | ||
1187 | wrtwarning("modified (chunk-) pointer\n"); | ||
1188 | return (NULL); | ||
1189 | } | ||
1190 | |||
1191 | /* Find the chunk index in the page */ | ||
1192 | i = ((u_long)ptr & malloc_pagemask) >> (*mp)->shift; | ||
1193 | |||
1194 | /* Verify that it isn't a free chunk already */ | ||
1195 | if ((*mp)->bits[i/MALLOC_BITS] & (1UL<<(i%MALLOC_BITS))) { | ||
1196 | wrtwarning("chunk is already free\n"); | ||
1197 | return (NULL); | ||
1198 | } | ||
1199 | |||
1200 | osize = (*mp)->size; | ||
1201 | |||
1202 | if (!malloc_realloc && /* Unless we have to, */ | ||
1203 | size <= osize && /* ..or are too small, */ | ||
1204 | (size > osize/2 || /* ..or could use a smaller size, */ | ||
1205 | osize == malloc_minsize)) { /* ..(if there is one) */ | ||
1206 | if (malloc_junk) | ||
1207 | memset((char *)ptr + size, SOME_JUNK, osize-size); | ||
1208 | return (ptr); /* ..don't do anything else. */ | ||
1209 | } | ||
1210 | |||
1211 | } else { | ||
1212 | wrtwarning("pointer to wrong page\n"); | ||
1213 | return (NULL); | ||
1214 | } | ||
1215 | |||
1216 | p = imalloc(size); | ||
1217 | |||
1218 | if (p != NULL) { | ||
1219 | /* copy the lesser of the two sizes, and free the old one */ | ||
1220 | /* Don't move from/to 0 sized region !!! */ | ||
1221 | if (osize != 0 && size != 0) { | ||
1222 | if (osize < size) | ||
1223 | memcpy(p, ptr, osize); | ||
1224 | else | ||
1225 | memcpy(p, ptr, size); | ||
1226 | } | ||
1227 | ifree(ptr); | ||
1228 | } | ||
1229 | |||
1230 | return (p); | ||
1231 | } | ||
1232 | |||
1233 | /* | ||
1234 | * Free a sequence of pages | ||
1235 | */ | ||
1236 | |||
1237 | static __inline__ void | ||
1238 | free_pages(void *ptr, u_long index, struct pginfo *info) | ||
1239 | { | ||
1240 | u_long i, l; | ||
1241 | struct pginfo **pd; | ||
1242 | struct pdinfo *pi, *spi; | ||
1243 | u_long pidx, lidx; | ||
1244 | struct pgfree *pf, *pt=NULL; | ||
1245 | void *tail; | ||
1246 | |||
1247 | if (info == MALLOC_FREE) { | ||
1248 | wrtwarning("page is already free\n"); | ||
1249 | return; | ||
1250 | } | ||
1251 | |||
1252 | if (info != MALLOC_FIRST) { | ||
1253 | wrtwarning("pointer to wrong page\n"); | ||
1254 | return; | ||
1255 | } | ||
1256 | |||
1257 | if ((u_long)ptr & malloc_pagemask) { | ||
1258 | wrtwarning("modified (page-) pointer\n"); | ||
1259 | return; | ||
1260 | } | ||
1261 | |||
1262 | /* Count how many pages and mark them free at the same time */ | ||
1263 | pidx = PI_IDX(index); | ||
1264 | pdir_lookup(index, &pi); | ||
1265 | #ifdef MALLOC_EXTRA_SANITY | ||
1266 | if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { | ||
1267 | wrterror("(ES): mapped pages not found in directory\n"); | ||
1268 | errno = EFAULT; | ||
1269 | return; | ||
1270 | } | ||
1271 | #endif /* MALLOC_EXTRA_SANITY */ | ||
1272 | |||
1273 | spi = pi; /* Save page index for start of region. */ | ||
1274 | |||
1275 | pd = pi->base; | ||
1276 | pd[PI_OFF(index)] = MALLOC_FREE; | ||
1277 | i = 1; | ||
1278 | if (!PI_OFF(index+i)) { | ||
1279 | pi = pi->next; | ||
1280 | if (pi == NULL || PD_IDX(pi->dirnum) != PI_IDX(index+i)) | ||
1281 | pi = NULL; | ||
339 | else | 1282 | else |
340 | onb += pagesz - sizeof (*op) - RSLOP; | 1283 | pd = pi->base; |
341 | /* avoid the copy if same size block */ | 1284 | } |
342 | if (was_alloced) { | 1285 | while (pi != NULL && pd[PI_OFF(index+i)] == MALLOC_FOLLOW) { |
343 | if (i) { | 1286 | pd[PI_OFF(index+i)] = MALLOC_FREE; |
344 | i = 1 << (i + 2); | 1287 | i++; |
345 | if (i < pagesz) | 1288 | if (!PI_OFF(index+i)) { |
346 | i -= sizeof (*op) + RSLOP; | 1289 | if ((pi=pi->next) == NULL || PD_IDX(pi->dirnum) != PI_IDX(index+i)) |
347 | else | 1290 | pi = NULL; |
348 | i += pagesz - sizeof (*op) - RSLOP; | 1291 | else |
349 | } | 1292 | pd = pi->base; |
350 | if (nbytes <= onb && nbytes > i) { | 1293 | } |
351 | #ifdef RCHECK | 1294 | } |
352 | op->ov_size = (nbytes + RSLOP - 1) & ~(RSLOP - 1); | 1295 | |
353 | *(u_short *)((caddr_t)(op + 1) + op->ov_size) = RMAGIC; | 1296 | l = i << malloc_pageshift; |
1297 | |||
1298 | if (malloc_junk) | ||
1299 | memset(ptr, SOME_JUNK, l); | ||
1300 | |||
1301 | malloc_used -= l; | ||
1302 | if (malloc_guard) { | ||
1303 | #ifdef MALLOC_EXTRA_SANITY | ||
1304 | if (pi == NULL || PD_IDX(pi->dirnum) != PI_IDX(index+i)) { | ||
1305 | wrterror("(ES): hole in mapped pages directory\n"); | ||
1306 | errno = EFAULT; | ||
1307 | return; | ||
1308 | } | ||
1309 | #endif /* MALLOC_EXTRA_SANITY */ | ||
1310 | pd[PI_OFF(index+i)] = MALLOC_FREE; | ||
1311 | l += malloc_guard; | ||
1312 | } | ||
1313 | tail = (char *)ptr + l; | ||
1314 | |||
1315 | #if defined(__FreeBSD__) || (defined(__OpenBSD__) && defined(MADV_FREE)) | ||
1316 | if (malloc_hint) | ||
1317 | madvise(ptr, l, MADV_FREE); | ||
354 | #endif | 1318 | #endif |
355 | return(cp); | 1319 | |
356 | } else | 1320 | if (malloc_freeprot) |
357 | free(cp); | 1321 | mprotect(ptr, l, PROT_NONE); |
358 | } | 1322 | |
359 | if ((res = malloc(nbytes)) == NULL) | 1323 | /* Add to free-list. */ |
360 | return (NULL); | 1324 | if (px == NULL) |
361 | if (cp != res) /* common optimization if "compacting" */ | 1325 | px = imalloc(sizeof *px); /* This cannot fail... */ |
362 | bcopy(cp, res, (nbytes < onb) ? nbytes : onb); | 1326 | px->page = ptr; |
363 | return (res); | 1327 | px->pdir = spi; |
1328 | px->size = l; | ||
1329 | |||
1330 | if (free_list.next == NULL) { | ||
1331 | |||
1332 | /* Nothing on free list, put this at head. */ | ||
1333 | px->next = NULL; | ||
1334 | px->prev = &free_list; | ||
1335 | free_list.next = px; | ||
1336 | pf = px; | ||
1337 | px = NULL; | ||
1338 | |||
1339 | } else { | ||
1340 | |||
1341 | /* Find the right spot, leave pf pointing to the modified entry. */ | ||
1342 | |||
1343 | for(pf = free_list.next; (pf->page+pf->size) < ptr && pf->next != NULL; | ||
1344 | pf = pf->next) | ||
1345 | ; /* Race ahead here. */ | ||
1346 | |||
1347 | if (pf->page > tail) { | ||
1348 | /* Insert before entry */ | ||
1349 | px->next = pf; | ||
1350 | px->prev = pf->prev; | ||
1351 | pf->prev = px; | ||
1352 | px->prev->next = px; | ||
1353 | pf = px; | ||
1354 | px = NULL; | ||
1355 | } else if ((pf->page + pf->size) == ptr ) { | ||
1356 | /* Append to the previous entry. */ | ||
1357 | pf->size += l; | ||
1358 | if (pf->next != NULL && (pf->page + pf->size) == pf->next->page ) { | ||
1359 | /* And collapse the next too. */ | ||
1360 | pt = pf->next; | ||
1361 | pf->size += pt->size; | ||
1362 | pf->next = pt->next; | ||
1363 | if (pf->next != NULL) | ||
1364 | pf->next->prev = pf; | ||
1365 | } | ||
1366 | } else if (pf->page == tail) { | ||
1367 | /* Prepend to entry. */ | ||
1368 | pf->size += l; | ||
1369 | pf->page = ptr; | ||
1370 | pf->pdir = spi; | ||
1371 | } else if (pf->next == NULL) { | ||
1372 | /* Append at tail of chain. */ | ||
1373 | px->next = NULL; | ||
1374 | px->prev = pf; | ||
1375 | pf->next = px; | ||
1376 | pf = px; | ||
1377 | px = NULL; | ||
1378 | } else { | ||
1379 | wrterror("freelist is destroyed\n"); | ||
1380 | errno = EFAULT; | ||
1381 | return; | ||
1382 | } | ||
1383 | } | ||
1384 | |||
1385 | if (pf->pdir != last_dir) { | ||
1386 | prev_dir = last_dir; | ||
1387 | last_dir = pf->pdir; | ||
1388 | } | ||
1389 | |||
1390 | /* Return something to OS ? */ | ||
1391 | if (pf->next == NULL && /* If we're the last one, */ | ||
1392 | pf->size > malloc_cache && /* ..and the cache is full, */ | ||
1393 | (pf->page + pf->size) == malloc_brk) { /* ..and none behind us, */ | ||
1394 | |||
1395 | /* | ||
1396 | * Keep the cache intact. Notice that the '>' above guarantees that | ||
1397 | * the pf will always have at least one page afterwards. | ||
1398 | */ | ||
1399 | if (munmap((char *)pf->page + malloc_cache, pf->size - malloc_cache)!=0) | ||
1400 | goto not_return; | ||
1401 | tail = pf->page + pf->size; | ||
1402 | lidx = ptr2index(tail) - 1; | ||
1403 | pf->size = malloc_cache; | ||
1404 | |||
1405 | malloc_brk = pf->page + malloc_cache; | ||
1406 | |||
1407 | index = ptr2index(malloc_brk); | ||
1408 | |||
1409 | pidx = PI_IDX(index); | ||
1410 | if (prev_dir != NULL && PD_IDX(prev_dir->dirnum) >= pidx) | ||
1411 | prev_dir = NULL; /* Will be wiped out below ! */ | ||
1412 | |||
1413 | for (pi=pf->pdir; pi!=NULL && PD_IDX(pi->dirnum)<pidx; pi=pi->next); | ||
1414 | |||
1415 | if (pi != NULL && PD_IDX(pi->dirnum) == pidx) { | ||
1416 | pd = pi->base; | ||
1417 | |||
1418 | for(i=index;i <= last_index;) { | ||
1419 | if (pd[PI_OFF(i)] != MALLOC_NOT_MINE) { | ||
1420 | pd[PI_OFF(i)] = MALLOC_NOT_MINE; | ||
1421 | #ifdef MALLOC_EXTRA_SANITY | ||
1422 | if (!PD_OFF(pi->dirnum)) { | ||
1423 | wrterror("(ES): pages directory underflow\n"); | ||
1424 | errno = EFAULT; | ||
1425 | return; | ||
1426 | } | ||
1427 | #endif /* MALLOC_EXTRA_SANITY */ | ||
1428 | pi->dirnum--; | ||
1429 | } | ||
1430 | i++; | ||
1431 | if (!PI_OFF(i)) { | ||
1432 | /* If no page in that dir, free directory page. */ | ||
1433 | if (!PD_OFF(pi->dirnum)) { | ||
1434 | /* Remove from list. */ | ||
1435 | pi->prev->next = pi->next; | ||
1436 | if (pi->next != NULL) | ||
1437 | pi->next->prev = pi->prev; | ||
1438 | pi = pi->next; | ||
1439 | munmap(pd, malloc_pagesize); | ||
1440 | } else | ||
1441 | pi = pi->next; | ||
1442 | if (pi == NULL || PD_IDX(pi->dirnum) != PI_IDX(i)) | ||
1443 | break; | ||
1444 | pd = pi->base; | ||
1445 | } | ||
1446 | } | ||
1447 | } | ||
1448 | |||
1449 | last_index = index - 1; | ||
1450 | |||
1451 | /* XXX: We could realloc/shrink the pagedir here I guess. */ | ||
1452 | } | ||
1453 | not_return: | ||
1454 | if (pt != NULL) | ||
1455 | ifree(pt); | ||
364 | } | 1456 | } |
365 | 1457 | ||
366 | /* | 1458 | /* |
367 | * Search ``srchlen'' elements of each free list for a block whose | 1459 | * Free a chunk, and possibly the page it's on, if the page becomes empty. |
368 | * header starts at ``freep''. If srchlen is -1 search the whole list. | ||
369 | * Return bucket number, or -1 if not found. | ||
370 | */ | 1460 | */ |
371 | static | 1461 | |
372 | findbucket(freep, srchlen) | 1462 | /* ARGSUSED */ |
373 | union overhead *freep; | 1463 | static __inline__ void |
374 | int srchlen; | 1464 | free_bytes(void *ptr, int index, struct pginfo *info) |
375 | { | 1465 | { |
376 | register union overhead *p; | 1466 | int i; |
377 | register int i, j; | 1467 | struct pginfo **mp; |
378 | 1468 | struct pginfo **pd; | |
379 | for (i = 0; i < NBUCKETS; i++) { | 1469 | struct pdinfo *pi; |
380 | j = 0; | 1470 | u_long pidx; |
381 | for (p = nextf[i]; p && j != srchlen; p = p->ov_next) { | 1471 | void *vp; |
382 | if (p == freep) | 1472 | |
383 | return (i); | 1473 | /* Find the chunk number on the page */ |
384 | j++; | 1474 | i = ((u_long)ptr & malloc_pagemask) >> info->shift; |
385 | } | 1475 | |
1476 | if ((u_long)ptr & ((1UL<<(info->shift))-1)) { | ||
1477 | wrtwarning("modified (chunk-) pointer\n"); | ||
1478 | return; | ||
1479 | } | ||
1480 | |||
1481 | if (info->bits[i/MALLOC_BITS] & (1UL<<(i%MALLOC_BITS))) { | ||
1482 | wrtwarning("chunk is already free\n"); | ||
1483 | return; | ||
1484 | } | ||
1485 | |||
1486 | if (malloc_junk && info->size != 0) | ||
1487 | memset(ptr, SOME_JUNK, info->size); | ||
1488 | |||
1489 | info->bits[i/MALLOC_BITS] |= 1UL<<(i%MALLOC_BITS); | ||
1490 | info->free++; | ||
1491 | |||
1492 | if (info->size != 0) | ||
1493 | mp = page_dir + info->shift; | ||
1494 | else | ||
1495 | mp = page_dir; | ||
1496 | |||
1497 | if (info->free == 1) { | ||
1498 | |||
1499 | /* Page became non-full */ | ||
1500 | |||
1501 | /* Insert in address order */ | ||
1502 | while (*mp != NULL && (*mp)->next != NULL && | ||
1503 | (*mp)->next->page < info->page) | ||
1504 | mp = &(*mp)->next; | ||
1505 | info->next = *mp; | ||
1506 | *mp = info; | ||
1507 | return; | ||
1508 | } | ||
1509 | |||
1510 | if (info->free != info->total) | ||
1511 | return; | ||
1512 | |||
1513 | /* Find & remove this page in the queue */ | ||
1514 | while (*mp != info) { | ||
1515 | mp = &((*mp)->next); | ||
1516 | #ifdef MALLOC_EXTRA_SANITY | ||
1517 | if (!*mp) { | ||
1518 | wrterror("(ES): Not on queue\n"); | ||
1519 | errno = EFAULT; | ||
1520 | return; | ||
386 | } | 1521 | } |
387 | return (-1); | 1522 | #endif /* MALLOC_EXTRA_SANITY */ |
1523 | } | ||
1524 | *mp = info->next; | ||
1525 | |||
1526 | /* Free the page & the info structure if need be */ | ||
1527 | pidx = PI_IDX(ptr2index(info->page)); | ||
1528 | pdir_lookup(ptr2index(info->page), &pi); | ||
1529 | #ifdef MALLOC_EXTRA_SANITY | ||
1530 | if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { | ||
1531 | wrterror("(ES): mapped pages not found in directory\n"); | ||
1532 | errno = EFAULT; | ||
1533 | return; | ||
1534 | } | ||
1535 | #endif /* MALLOC_EXTRA_SANITY */ | ||
1536 | if (pi != last_dir) { | ||
1537 | prev_dir = last_dir; | ||
1538 | last_dir = pi; | ||
1539 | } | ||
1540 | |||
1541 | pd = pi->base; | ||
1542 | pd[PI_OFF(ptr2index(info->page))] = MALLOC_FIRST; | ||
1543 | |||
1544 | /* If the page was mprotected, unprotect it before releasing it */ | ||
1545 | if (info->size == 0) { | ||
1546 | mprotect(info->page, malloc_pagesize, PROT_READ|PROT_WRITE); | ||
1547 | /* Do we have to care if mprotect succeeds here ? */ | ||
1548 | } | ||
1549 | |||
1550 | vp = info->page; /* Order is important ! */ | ||
1551 | if(vp != (void*)info) | ||
1552 | ifree(info); | ||
1553 | ifree(vp); | ||
1554 | } | ||
1555 | |||
1556 | static void | ||
1557 | ifree(void *ptr) | ||
1558 | { | ||
1559 | struct pginfo *info; | ||
1560 | struct pginfo **pd; | ||
1561 | struct pdinfo *pi; | ||
1562 | u_long pidx; | ||
1563 | u_long index; | ||
1564 | |||
1565 | /* This is legal */ | ||
1566 | if (ptr == NULL) | ||
1567 | return; | ||
1568 | |||
1569 | if (!malloc_started) { | ||
1570 | wrtwarning("malloc() has never been called\n"); | ||
1571 | return; | ||
1572 | } | ||
1573 | |||
1574 | /* If we're already sinking, don't make matters any worse. */ | ||
1575 | if (suicide) | ||
1576 | return; | ||
1577 | |||
1578 | index = ptr2index(ptr); | ||
1579 | |||
1580 | if (index < malloc_pageshift) { | ||
1581 | wrtwarning("junk pointer, too low to make sense\n"); | ||
1582 | return; | ||
1583 | } | ||
1584 | |||
1585 | if (index > last_index) { | ||
1586 | wrtwarning("junk pointer, too high to make sense\n"); | ||
1587 | return; | ||
1588 | } | ||
1589 | |||
1590 | pidx = PI_IDX(index); | ||
1591 | pdir_lookup(index, &pi); | ||
1592 | #ifdef MALLOC_EXTRA_SANITY | ||
1593 | if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { | ||
1594 | wrterror("(ES): mapped pages not found in directory\n"); | ||
1595 | errno = EFAULT; | ||
1596 | return; | ||
1597 | } | ||
1598 | #endif /* MALLOC_EXTRA_SANITY */ | ||
1599 | if (pi != last_dir) { | ||
1600 | prev_dir = last_dir; | ||
1601 | last_dir = pi; | ||
1602 | } | ||
1603 | |||
1604 | pd = pi->base; | ||
1605 | info = pd[PI_OFF(index)]; | ||
1606 | |||
1607 | if (info < MALLOC_MAGIC) | ||
1608 | free_pages(ptr, index, info); | ||
1609 | else | ||
1610 | free_bytes(ptr, index, info); | ||
1611 | return; | ||
388 | } | 1612 | } |
389 | 1613 | ||
390 | #ifdef MSTATS | ||
391 | /* | 1614 | /* |
392 | * mstats - print out statistics about malloc | 1615 | * Common function for handling recursion. Only |
393 | * | 1616 | * print the error message once, to avoid making the problem |
394 | * Prints two lines of numbers, one showing the length of the free list | 1617 | * potentially worse. |
395 | * for each size category, the second showing the number of mallocs - | ||
396 | * frees for each size category. | ||
397 | */ | 1618 | */ |
398 | mstats(s) | 1619 | static void |
399 | char *s; | 1620 | malloc_recurse(void) |
400 | { | 1621 | { |
401 | register int i, j; | 1622 | static int noprint; |
402 | register union overhead *p; | 1623 | |
403 | int totfree = 0, | 1624 | if (noprint == 0) { |
404 | totused = 0; | 1625 | noprint = 1; |
405 | 1626 | wrtwarning("recursive call\n"); | |
406 | fprintf(stderr, "Memory allocation statistics %s\nfree:\t", s); | 1627 | } |
407 | for (i = 0; i < NBUCKETS; i++) { | 1628 | malloc_active--; |
408 | for (j = 0, p = nextf[i]; p; p = p->ov_next, j++) | 1629 | _MALLOC_UNLOCK(); |
409 | ; | 1630 | errno = EDEADLK; |
410 | fprintf(stderr, " %d", j); | 1631 | } |
411 | totfree += j * (1 << (i + 3)); | 1632 | |
412 | } | 1633 | /* |
413 | fprintf(stderr, "\nused:\t"); | 1634 | * These are the public exported interface routines. |
414 | for (i = 0; i < NBUCKETS; i++) { | 1635 | */ |
415 | fprintf(stderr, " %d", nmalloc[i]); | 1636 | void * |
416 | totused += nmalloc[i] * (1 << (i + 3)); | 1637 | malloc(size_t size) |
417 | } | 1638 | { |
418 | fprintf(stderr, "\n\tTotal in use: %d, total free: %d\n", | 1639 | void *r; |
419 | totused, totfree); | 1640 | |
1641 | _MALLOC_LOCK(); | ||
1642 | malloc_func = " in malloc():"; | ||
1643 | if (malloc_active++) { | ||
1644 | malloc_recurse(); | ||
1645 | return (NULL); | ||
1646 | } | ||
1647 | r = imalloc(size); | ||
1648 | UTRACE(0, size, r); | ||
1649 | malloc_active--; | ||
1650 | _MALLOC_UNLOCK(); | ||
1651 | if (malloc_xmalloc && r == NULL) { | ||
1652 | wrterror("out of memory\n"); | ||
1653 | errno = ENOMEM; | ||
1654 | } | ||
1655 | return (r); | ||
1656 | } | ||
1657 | |||
1658 | void | ||
1659 | free(void *ptr) | ||
1660 | { | ||
1661 | _MALLOC_LOCK(); | ||
1662 | malloc_func = " in free():"; | ||
1663 | if (malloc_active++) { | ||
1664 | malloc_recurse(); | ||
1665 | return; | ||
1666 | } | ||
1667 | ifree(ptr); | ||
1668 | UTRACE(ptr, 0, 0); | ||
1669 | malloc_active--; | ||
1670 | _MALLOC_UNLOCK(); | ||
1671 | return; | ||
1672 | } | ||
1673 | |||
1674 | void * | ||
1675 | realloc(void *ptr, size_t size) | ||
1676 | { | ||
1677 | void *r; | ||
1678 | |||
1679 | _MALLOC_LOCK(); | ||
1680 | malloc_func = " in realloc():"; | ||
1681 | if (malloc_active++) { | ||
1682 | malloc_recurse(); | ||
1683 | return (NULL); | ||
1684 | } | ||
1685 | if (ptr == NULL) { | ||
1686 | r = imalloc(size); | ||
1687 | } else { | ||
1688 | r = irealloc(ptr, size); | ||
1689 | } | ||
1690 | UTRACE(ptr, size, r); | ||
1691 | malloc_active--; | ||
1692 | _MALLOC_UNLOCK(); | ||
1693 | if (malloc_xmalloc && r == NULL) { | ||
1694 | wrterror("out of memory\n"); | ||
1695 | errno = ENOMEM; | ||
1696 | } | ||
1697 | return (r); | ||
420 | } | 1698 | } |
421 | #endif | ||
diff --git a/src/lib/libc/stdlib/memory.3 b/src/lib/libc/stdlib/memory.3 deleted file mode 100644 index 735252c837..0000000000 --- a/src/lib/libc/stdlib/memory.3 +++ /dev/null | |||
@@ -1,71 +0,0 @@ | |||
1 | .\" Copyright (c) 1991 Regents of the University of California. | ||
2 | .\" All rights reserved. | ||
3 | .\" | ||
4 | .\" Redistribution and use in source and binary forms, with or without | ||
5 | .\" modification, are permitted provided that the following conditions | ||
6 | .\" are met: | ||
7 | .\" 1. Redistributions of source code must retain the above copyright | ||
8 | .\" notice, this list of conditions and the following disclaimer. | ||
9 | .\" 2. Redistributions in binary form must reproduce the above copyright | ||
10 | .\" notice, this list of conditions and the following disclaimer in the | ||
11 | .\" documentation and/or other materials provided with the distribution. | ||
12 | .\" 3. All advertising materials mentioning features or use of this software | ||
13 | .\" must display the following acknowledgement: | ||
14 | .\" This product includes software developed by the University of | ||
15 | .\" California, Berkeley and its contributors. | ||
16 | .\" 4. 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 | .\" from: @(#)memory.3 5.1 (Berkeley) 5/2/91 | ||
33 | .\" $Id: memory.3,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $ | ||
34 | .\" | ||
35 | .Dd May 2, 1991 | ||
36 | .Dt MEMORY 3 | ||
37 | .Os BSD 4 | ||
38 | .Sh NAME | ||
39 | .Nm malloc , | ||
40 | .Nm free , | ||
41 | .Nm realloc , | ||
42 | .Nm calloc , | ||
43 | .Nm alloca | ||
44 | .Nd general memory allocation operations | ||
45 | .Sh SYNOPSIS | ||
46 | .Fd #include <stdlib.h> | ||
47 | .Ft void * | ||
48 | .Fn malloc "size_t size" | ||
49 | .Ft void | ||
50 | .Fn free "void *ptr" | ||
51 | .Ft void * | ||
52 | .Fn realloc "void *ptr" "size_t size" | ||
53 | .Ft void * | ||
54 | .Fn calloc "size_t nelem" "size_t elsize" | ||
55 | .Ft void * | ||
56 | .Fn alloca "size_t size" | ||
57 | .Sh DESCRIPTION | ||
58 | These functions allocate and free memory for the calling process. | ||
59 | They are described in the | ||
60 | individual manual pages. | ||
61 | .Sh SEE ALSO | ||
62 | .Xr calloc 3 , | ||
63 | .Xr free 3 , | ||
64 | .Xr malloc 3 , | ||
65 | .Xr realloc 3 , | ||
66 | .Xr alloca 3 , | ||
67 | .Sh STANDARDS | ||
68 | These functions, with the exception of | ||
69 | .Fn alloca | ||
70 | conform to | ||
71 | .St -ansiC . | ||
diff --git a/src/lib/libc/stdlib/merge.c b/src/lib/libc/stdlib/merge.c index 381fdc0830..b193ae345c 100644 --- a/src/lib/libc/stdlib/merge.c +++ b/src/lib/libc/stdlib/merge.c | |||
@@ -13,11 +13,7 @@ | |||
13 | * 2. Redistributions in binary form must reproduce the above copyright | 13 | * 2. Redistributions in binary form must reproduce the above copyright |
14 | * notice, this list of conditions and the following disclaimer in the | 14 | * notice, this list of conditions and the following disclaimer in the |
15 | * documentation and/or other materials provided with the distribution. | 15 | * documentation and/or other materials provided with the distribution. |
16 | * 3. All advertising materials mentioning features or use of this software | 16 | * 3. Neither the name of the University nor the names of its contributors |
17 | * must display the following acknowledgement: | ||
18 | * This product includes software developed by the University of | ||
19 | * California, Berkeley and its contributors. | ||
20 | * 4. Neither the name of the University nor the names of its contributors | ||
21 | * may be used to endorse or promote products derived from this software | 17 | * may be used to endorse or promote products derived from this software |
22 | * without specific prior written permission. | 18 | * without specific prior written permission. |
23 | * | 19 | * |
@@ -35,8 +31,7 @@ | |||
35 | */ | 31 | */ |
36 | 32 | ||
37 | #if defined(LIBC_SCCS) && !defined(lint) | 33 | #if defined(LIBC_SCCS) && !defined(lint) |
38 | /*static char sccsid[] = "from: @(#)merge.c 8.2 (Berkeley) 2/14/94";*/ | 34 | static char *rcsid = "$OpenBSD: merge.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; |
39 | static char *rcsid = "$Id: merge.c,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $"; | ||
40 | #endif /* LIBC_SCCS and not lint */ | 35 | #endif /* LIBC_SCCS and not lint */ |
41 | 36 | ||
42 | /* | 37 | /* |
@@ -59,8 +54,8 @@ static char *rcsid = "$Id: merge.c,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $"; | |||
59 | #include <stdlib.h> | 54 | #include <stdlib.h> |
60 | #include <string.h> | 55 | #include <string.h> |
61 | 56 | ||
62 | static void setup __P((u_char *, u_char *, size_t, size_t, int (*)())); | 57 | static void setup(u_char *, u_char *, size_t, size_t, int (*)()); |
63 | static void insertionsort __P((u_char *, size_t, size_t, int (*)())); | 58 | static void insertionsort(u_char *, size_t, size_t, int (*)()); |
64 | 59 | ||
65 | #define ISIZE sizeof(int) | 60 | #define ISIZE sizeof(int) |
66 | #define PSIZE sizeof(u_char *) | 61 | #define PSIZE sizeof(u_char *) |
@@ -96,15 +91,12 @@ static void insertionsort __P((u_char *, size_t, size_t, int (*)())); | |||
96 | * Arguments are as for qsort. | 91 | * Arguments are as for qsort. |
97 | */ | 92 | */ |
98 | int | 93 | int |
99 | mergesort(base, nmemb, size, cmp) | 94 | mergesort(void *base, size_t nmemb, size_t size, |
100 | void *base; | 95 | int (*cmp)(const void *, const void *)) |
101 | size_t nmemb; | ||
102 | register size_t size; | ||
103 | int (*cmp) __P((const void *, const void *)); | ||
104 | { | 96 | { |
105 | register int i, sense; | 97 | int i, sense; |
106 | int big, iflag; | 98 | int big, iflag; |
107 | register u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; | 99 | u_char *f1, *f2, *t, *b, *tp2, *q, *l1, *l2; |
108 | u_char *list2, *list1, *p2, *p, *last, **p1; | 100 | u_char *list2, *list1, *p2, *p, *last, **p1; |
109 | 101 | ||
110 | if (size < PSIZE / 2) { /* Pointers must fit into 2 * size. */ | 102 | if (size < PSIZE / 2) { /* Pointers must fit into 2 * size. */ |
@@ -148,7 +140,7 @@ mergesort(base, nmemb, size, cmp) | |||
148 | sense = 0; | 140 | sense = 0; |
149 | } | 141 | } |
150 | if (!big) { /* here i = 0 */ | 142 | if (!big) { /* here i = 0 */ |
151 | LINEAR: while ((b += size) < t && cmp(q, b) >sense) | 143 | while ((b += size) < t && cmp(q, b) >sense) |
152 | if (++i == 6) { | 144 | if (++i == 6) { |
153 | big = 1; | 145 | big = 1; |
154 | goto EXPONENTIAL; | 146 | goto EXPONENTIAL; |
@@ -169,7 +161,7 @@ EXPONENTIAL: for (i = size; ; i <<= 1) | |||
169 | goto FASTCASE; | 161 | goto FASTCASE; |
170 | } else | 162 | } else |
171 | b = p; | 163 | b = p; |
172 | SLOWCASE: while (t > b+size) { | 164 | while (t > b+size) { |
173 | i = (((t - b) / size) >> 1) * size; | 165 | i = (((t - b) / size) >> 1) * size; |
174 | if ((*cmp)(q, p = b + i) <= sense) | 166 | if ((*cmp)(q, p = b + i) <= sense) |
175 | t = p; | 167 | t = p; |
@@ -256,10 +248,8 @@ COPY: b = t; | |||
256 | * is defined. Otherwise simple pairwise merging is used.) | 248 | * is defined. Otherwise simple pairwise merging is used.) |
257 | */ | 249 | */ |
258 | void | 250 | void |
259 | setup(list1, list2, n, size, cmp) | 251 | setup(u_char *list1, u_char *list2, size_t n, size_t size, |
260 | size_t n, size; | 252 | int (*cmp)(const void *, const void *)) |
261 | int (*cmp) __P((const void *, const void *)); | ||
262 | u_char *list1, *list2; | ||
263 | { | 253 | { |
264 | int i, length, size2, tmp, sense; | 254 | int i, length, size2, tmp, sense; |
265 | u_char *f1, *f2, *s, *l2, *last, *p2; | 255 | u_char *f1, *f2, *s, *l2, *last, *p2; |
@@ -330,10 +320,8 @@ setup(list1, list2, n, size, cmp) | |||
330 | * last 4 elements. | 320 | * last 4 elements. |
331 | */ | 321 | */ |
332 | static void | 322 | static void |
333 | insertionsort(a, n, size, cmp) | 323 | insertionsort(u_char *a, size_t n, size_t size, |
334 | u_char *a; | 324 | int (*cmp)(const void *, const void *)) |
335 | size_t n, size; | ||
336 | int (*cmp) __P((const void *, const void *)); | ||
337 | { | 325 | { |
338 | u_char *ai, *s, *t, *u, tmp; | 326 | u_char *ai, *s, *t, *u, tmp; |
339 | int i; | 327 | int i; |
diff --git a/src/lib/libc/stdlib/mrand48.c b/src/lib/libc/stdlib/mrand48.c index 43356e66b3..cd34260b5c 100644 --- a/src/lib/libc/stdlib/mrand48.c +++ b/src/lib/libc/stdlib/mrand48.c | |||
@@ -11,6 +11,10 @@ | |||
11 | * to anyone/anything when using this software. | 11 | * to anyone/anything when using this software. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: mrand48.c,v 1.2 1996/08/19 08:33:39 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
14 | #include "rand48.h" | 18 | #include "rand48.h" |
15 | 19 | ||
16 | extern unsigned short __rand48_seed[3]; | 20 | extern unsigned short __rand48_seed[3]; |
diff --git a/src/lib/libc/stdlib/multibyte.c b/src/lib/libc/stdlib/multibyte.c index fe1cd5781b..ba878b8fdc 100644 --- a/src/lib/libc/stdlib/multibyte.c +++ b/src/lib/libc/stdlib/multibyte.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,8 +28,7 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)multibyte.c 5.1 (Berkeley) 2/18/91";*/ | 31 | static char *rcsid = "$OpenBSD: multibyte.c,v 1.4 2003/06/02 20:18:38 millert Exp $"; |
36 | static char *rcsid = "$Id: multibyte.c,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <stdlib.h> | 34 | #include <stdlib.h> |
@@ -74,13 +69,7 @@ mbtowc(pwc, s, n) | |||
74 | 69 | ||
75 | /*ARGSUSED*/ | 70 | /*ARGSUSED*/ |
76 | int | 71 | int |
77 | #ifdef __STDC__ | ||
78 | wctomb(char *s, wchar_t wchar) | 72 | wctomb(char *s, wchar_t wchar) |
79 | #else | ||
80 | wctomb(s, wchar) | ||
81 | char *s; | ||
82 | wchar_t wchar; | ||
83 | #endif | ||
84 | { | 73 | { |
85 | if (s == NULL) | 74 | if (s == NULL) |
86 | return 0; | 75 | return 0; |
diff --git a/src/lib/libc/stdlib/nrand48.c b/src/lib/libc/stdlib/nrand48.c index 63f839cb05..b1ec2cebb1 100644 --- a/src/lib/libc/stdlib/nrand48.c +++ b/src/lib/libc/stdlib/nrand48.c | |||
@@ -11,6 +11,10 @@ | |||
11 | * to anyone/anything when using this software. | 11 | * to anyone/anything when using this software. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: nrand48.c,v 1.2 1996/08/19 08:33:40 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
14 | #include "rand48.h" | 18 | #include "rand48.h" |
15 | 19 | ||
16 | long | 20 | long |
diff --git a/src/lib/libc/stdlib/putenv.c b/src/lib/libc/stdlib/putenv.c index 2194c2c608..231982bf87 100644 --- a/src/lib/libc/stdlib/putenv.c +++ b/src/lib/libc/stdlib/putenv.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /*- | 1 | /*- |
2 | * Copyright (c) 1988 The Regents of the University of California. | 2 | * Copyright (c) 1988, 1993 |
3 | * All rights reserved. | 3 | * The Regents of the University of California. All rights reserved. |
4 | * | 4 | * |
5 | * Redistribution and use in source and binary forms, with or without | 5 | * Redistribution and use in source and binary forms, with or without |
6 | * modification, are permitted provided that the following conditions | 6 | * modification, are permitted provided that the following conditions |
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,28 +28,26 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)putenv.c 5.4 (Berkeley) 2/23/91";*/ | 31 | static char *rcsid = "$OpenBSD: putenv.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: putenv.c,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <stdlib.h> | 34 | #include <stdlib.h> |
40 | #include <string.h> | 35 | #include <string.h> |
41 | 36 | ||
42 | int | 37 | int |
43 | putenv(str) | 38 | putenv(const char *str) |
44 | const char *str; | ||
45 | { | 39 | { |
46 | register char *p, *equal; | 40 | char *p, *equal; |
47 | int rval; | 41 | int rval; |
48 | 42 | ||
49 | if (!(p = strdup(str))) | 43 | if ((p = strdup(str)) == NULL) |
50 | return(1); | 44 | return (-1); |
51 | if (!(equal = strchr(p, '='))) { | 45 | if ((equal = strchr(p, '=')) == NULL) { |
52 | (void)free(p); | 46 | (void)free(p); |
53 | return(1); | 47 | return (-1); |
54 | } | 48 | } |
55 | *equal = '\0'; | 49 | *equal = '\0'; |
56 | rval = setenv(p, equal + 1, 1); | 50 | rval = setenv(p, equal + 1, 1); |
57 | (void)free(p); | 51 | (void)free(p); |
58 | return(rval); | 52 | return (rval); |
59 | } | 53 | } |
diff --git a/src/lib/libc/stdlib/qabs.3 b/src/lib/libc/stdlib/qabs.3 index cb1e052191..093212edf5 100644 --- a/src/lib/libc/stdlib/qabs.3 +++ b/src/lib/libc/stdlib/qabs.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,8 +29,7 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)labs.3 5.3 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: qabs.3,v 1.6 2003/06/02 20:18:38 millert Exp $ |
37 | .\" $Id: qabs.3,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
40 | .Dt QABS 3 | 35 | .Dt QABS 3 |
@@ -49,14 +44,13 @@ | |||
49 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION |
50 | The | 45 | The |
51 | .Fn qabs | 46 | .Fn qabs |
52 | function | 47 | function returns the absolute value of the quad integer |
53 | returns the absolute value of the quad integer | 48 | .Fa j . |
54 | .Ar j . | ||
55 | .Sh SEE ALSO | 49 | .Sh SEE ALSO |
56 | .Xr abs 3 , | 50 | .Xr abs 3 , |
57 | .Xr labs 3 , | ||
58 | .Xr floor 3 , | ||
59 | .Xr cabs 3 , | 51 | .Xr cabs 3 , |
52 | .Xr floor 3 , | ||
53 | .Xr labs 3 , | ||
60 | .Xr math 3 | 54 | .Xr math 3 |
61 | .Sh BUGS | 55 | .Sh BUGS |
62 | The absolute value of the most negative integer remains negative. | 56 | The absolute value of the most negative integer remains negative. |
diff --git a/src/lib/libc/stdlib/qabs.c b/src/lib/libc/stdlib/qabs.c index 9c51a8baa9..4c561b3351 100644 --- a/src/lib/libc/stdlib/qabs.c +++ b/src/lib/libc/stdlib/qabs.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,15 +28,13 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)labs.c 5.2 (Berkeley) 5/17/90";*/ | 31 | static char *rcsid = "$OpenBSD: qabs.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: qabs.c,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <stdlib.h> | 34 | #include <stdlib.h> |
40 | 35 | ||
41 | quad_t | 36 | quad_t |
42 | qabs(j) | 37 | qabs(quad_t j) |
43 | quad_t j; | ||
44 | { | 38 | { |
45 | return(j < 0 ? -j : j); | 39 | return(j < 0 ? -j : j); |
46 | } | 40 | } |
diff --git a/src/lib/libc/stdlib/qdiv.3 b/src/lib/libc/stdlib/qdiv.3 index 0efcfc96ef..5f17ec17d4 100644 --- a/src/lib/libc/stdlib/qdiv.3 +++ b/src/lib/libc/stdlib/qdiv.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,8 +29,7 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)qdiv.3 5.3 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: qdiv.3,v 1.6 2004/01/23 23:08:46 jmc Exp $ |
37 | .\" $Id: qdiv.3,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
40 | .Dt QDIV 3 | 35 | .Dt QDIV 3 |
@@ -49,17 +44,16 @@ | |||
49 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION |
50 | The | 45 | The |
51 | .Fn qdiv | 46 | .Fn qdiv |
52 | function | 47 | function computes the value |
53 | computes the value | 48 | .Fa num Ns / Ns Fa denom |
54 | .Ar num/denom | ||
55 | and returns the quotient and remainder in a structure named | 49 | and returns the quotient and remainder in a structure named |
56 | .Ar qdiv_t | 50 | .Li qdiv_t |
57 | that contains two | 51 | that contains two |
58 | .Em quad integer | 52 | .Li quad integer |
59 | members named | 53 | members named |
60 | .Ar quot | 54 | .Fa quot |
61 | and | 55 | and |
62 | .Ar rem . | 56 | .Fa rem . |
63 | .Sh SEE ALSO | 57 | .Sh SEE ALSO |
64 | .Xr div 3 , | 58 | .Xr div 3 , |
65 | .Xr ldiv 3 , | 59 | .Xr ldiv 3 , |
diff --git a/src/lib/libc/stdlib/qdiv.c b/src/lib/libc/stdlib/qdiv.c index 8f8e3f89c4..8147ee89a6 100644 --- a/src/lib/libc/stdlib/qdiv.c +++ b/src/lib/libc/stdlib/qdiv.c | |||
@@ -13,11 +13,7 @@ | |||
13 | * 2. Redistributions in binary form must reproduce the above copyright | 13 | * 2. Redistributions in binary form must reproduce the above copyright |
14 | * notice, this list of conditions and the following disclaimer in the | 14 | * notice, this list of conditions and the following disclaimer in the |
15 | * documentation and/or other materials provided with the distribution. | 15 | * documentation and/or other materials provided with the distribution. |
16 | * 3. All advertising materials mentioning features or use of this software | 16 | * 3. Neither the name of the University nor the names of its contributors |
17 | * must display the following acknowledgement: | ||
18 | * This product includes software developed by the University of | ||
19 | * California, Berkeley and its contributors. | ||
20 | * 4. Neither the name of the University nor the names of its contributors | ||
21 | * may be used to endorse or promote products derived from this software | 17 | * may be used to endorse or promote products derived from this software |
22 | * without specific prior written permission. | 18 | * without specific prior written permission. |
23 | * | 19 | * |
@@ -35,15 +31,13 @@ | |||
35 | */ | 31 | */ |
36 | 32 | ||
37 | #if defined(LIBC_SCCS) && !defined(lint) | 33 | #if defined(LIBC_SCCS) && !defined(lint) |
38 | /*static char *sccsid = "from: @(#)ldiv.c 5.2 (Berkeley) 4/16/91";*/ | 34 | static char *rcsid = "$OpenBSD: qdiv.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; |
39 | static char *rcsid = "$Id: qdiv.c,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $"; | ||
40 | #endif /* LIBC_SCCS and not lint */ | 35 | #endif /* LIBC_SCCS and not lint */ |
41 | 36 | ||
42 | #include <stdlib.h> /* qdiv_t */ | 37 | #include <stdlib.h> /* qdiv_t */ |
43 | 38 | ||
44 | qdiv_t | 39 | qdiv_t |
45 | qdiv(num, denom) | 40 | qdiv(quad_t num, quad_t denom) |
46 | quad_t num, denom; | ||
47 | { | 41 | { |
48 | qdiv_t r; | 42 | qdiv_t r; |
49 | 43 | ||
diff --git a/src/lib/libc/stdlib/qsort.3 b/src/lib/libc/stdlib/qsort.3 index eb122cde12..668ea90243 100644 --- a/src/lib/libc/stdlib/qsort.3 +++ b/src/lib/libc/stdlib/qsort.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,14 +29,15 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)qsort.3 8.1 (Berkeley) 6/4/93 | 32 | .\" $OpenBSD: qsort.3,v 1.14 2003/10/01 08:11:58 jmc Exp $ |
37 | .\" $Id: qsort.3,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 4, 1993 | 34 | .Dd June 4, 1993 |
40 | .Dt QSORT 3 | 35 | .Dt QSORT 3 |
41 | .Os | 36 | .Os |
42 | .Sh NAME | 37 | .Sh NAME |
43 | .Nm qsort, heapsort, mergesort | 38 | .Nm qsort , |
39 | .Nm heapsort , | ||
40 | .Nm mergesort | ||
44 | .Nd sort functions | 41 | .Nd sort functions |
45 | .Sh SYNOPSIS | 42 | .Sh SYNOPSIS |
46 | .Fd #include <stdlib.h> | 43 | .Fd #include <stdlib.h> |
@@ -72,7 +69,7 @@ objects, the initial member of which is pointed to by | |||
72 | .Fa base . | 69 | .Fa base . |
73 | The size of each object is specified by | 70 | The size of each object is specified by |
74 | .Fa size . | 71 | .Fa size . |
75 | .Fn Mergesort | 72 | .Fn mergesort |
76 | behaves similarly, but | 73 | behaves similarly, but |
77 | .Em requires | 74 | .Em requires |
78 | that | 75 | that |
@@ -106,51 +103,49 @@ is stable. | |||
106 | .Pp | 103 | .Pp |
107 | The | 104 | The |
108 | .Fn qsort | 105 | .Fn qsort |
109 | function is an implementation of C.A.R. Hoare's ``quicksort'' algorithm, | 106 | function is an implementation of C.A.R. Hoare's |
107 | .Dq quicksort | ||
108 | algorithm, | ||
110 | a variant of partition-exchange sorting; in particular, see D.E. Knuth's | 109 | a variant of partition-exchange sorting; in particular, see D.E. Knuth's |
111 | Algorithm Q. | 110 | Algorithm Q. |
112 | .Fn Qsort | 111 | .Fn qsort |
113 | takes O N lg N average time. | 112 | takes O N lg N average time. |
114 | This implementation uses median selection to avoid its | 113 | This implementation uses median selection to avoid its |
115 | O N**2 worst-case behavior. | 114 | O N**2 worst-case behavior. |
116 | .Pp | 115 | .Pp |
117 | The | 116 | The |
118 | .Fn heapsort | 117 | .Fn heapsort |
119 | function is an implementation of J.W.J. William's ``heapsort'' algorithm, | 118 | function is an implementation of J.W.J. William's |
119 | .Dq heapsort | ||
120 | algorithm, | ||
120 | a variant of selection sorting; in particular, see D.E. Knuth's Algorithm H. | 121 | a variant of selection sorting; in particular, see D.E. Knuth's Algorithm H. |
121 | .Fn Heapsort | 122 | .Fn heapsort |
122 | takes O N lg N worst-case time. | 123 | takes O N lg N worst-case time. |
123 | Its | 124 | This implementation of |
124 | .Em only | 125 | .Fn heapsort |
125 | advantage over | 126 | is implemented without recursive function calls. |
126 | .Fn qsort | ||
127 | is that it uses almost no additional memory; while | ||
128 | .Fn qsort | ||
129 | does not allocate memory, it is implemented using recursion. | ||
130 | .Pp | 127 | .Pp |
131 | The function | 128 | The function |
132 | .Fn mergesort | 129 | .Fn mergesort |
133 | requires additional memory of size | 130 | requires additional memory of size |
134 | .Fa nmemb * | 131 | .Fa nmemb * |
135 | .Fa size | 132 | .Fa size |
136 | bytes; it should be used only when space is not at a premium. | 133 | bytes; it should be used only when space is not at a premium. |
137 | .Fn Mergesort | 134 | .Fn mergesort |
138 | is optimized for data with pre-existing order; its worst case | 135 | is optimized for data with pre-existing order; its worst case |
139 | time is O N lg N; its best case is O N. | 136 | time is O N lg N; its best case is O N. |
140 | .Pp | 137 | .Pp |
141 | Normally, | 138 | Normally, |
142 | .Fn qsort | 139 | .Fn qsort |
143 | is faster than | 140 | is faster than |
144 | .Fn mergesort | 141 | .Fn mergesort , |
145 | is faster than | 142 | which is faster than |
146 | .Fn heapsort . | 143 | .Fn heapsort . |
147 | Memory availability and pre-existing order in the data can make this | 144 | Memory availability and pre-existing order in the data can make this untrue. |
148 | untrue. | ||
149 | .Sh RETURN VALUES | 145 | .Sh RETURN VALUES |
150 | The | 146 | The |
151 | .Fn qsort | 147 | .Fn qsort |
152 | function | 148 | function returns no value. |
153 | returns no value. | ||
154 | .Pp | 149 | .Pp |
155 | Upon successful completion, | 150 | Upon successful completion, |
156 | .Fn heapsort | 151 | .Fn heapsort |
@@ -163,30 +158,25 @@ is set to indicate the error. | |||
163 | .Sh ERRORS | 158 | .Sh ERRORS |
164 | The | 159 | The |
165 | .Fn heapsort | 160 | .Fn heapsort |
166 | function succeeds unless: | 161 | and |
162 | .Fn mergesort | ||
163 | functions succeed unless: | ||
167 | .Bl -tag -width Er | 164 | .Bl -tag -width Er |
168 | .It Bq Er EINVAL | 165 | .It Bq Er EINVAL |
169 | The | 166 | The |
170 | .Fa size | 167 | .Fa size |
171 | argument is zero, or, | 168 | argument is zero, or the |
172 | the | ||
173 | .Fa size | 169 | .Fa size |
174 | argument to | 170 | argument to |
175 | .Fn mergesort | 171 | .Fn mergesort |
176 | is less than | 172 | is less than |
177 | .Dq "sizeof(void *) / 2" . | 173 | .Dq "sizeof(void *) / 2" . |
178 | .It Bq Er ENOMEM | 174 | .It Bq Er ENOMEM |
179 | .Fn Heapsort | 175 | .Fn heapsort |
180 | or | 176 | or |
181 | .Fn mergesort | 177 | .Fn mergesort |
182 | were unable to allocate memory. | 178 | were unable to allocate memory. |
183 | .El | 179 | .El |
184 | .Sh COMPATIBILITY | ||
185 | Previous versions of | ||
186 | .Fn qsort | ||
187 | did not permit the comparison routine itself to call | ||
188 | .Fn qsort 3 . | ||
189 | This is no longer true. | ||
190 | .Sh SEE ALSO | 180 | .Sh SEE ALSO |
191 | .Xr sort 1 , | 181 | .Xr sort 1 , |
192 | .Xr radixsort 3 | 182 | .Xr radixsort 3 |
@@ -204,7 +194,7 @@ This is no longer true. | |||
204 | .%T "Heapsort" | 194 | .%T "Heapsort" |
205 | .%J "Communications of the ACM" | 195 | .%J "Communications of the ACM" |
206 | .%V 7:1 | 196 | .%V 7:1 |
207 | .%P pp. 347-348 | 197 | .%P pp. 347\-348 |
208 | .Re | 198 | .Re |
209 | .Rs | 199 | .Rs |
210 | .%A Knuth, D.E. | 200 | .%A Knuth, D.E. |
@@ -212,23 +202,32 @@ This is no longer true. | |||
212 | .%B "The Art of Computer Programming" | 202 | .%B "The Art of Computer Programming" |
213 | .%V Vol. 3 | 203 | .%V Vol. 3 |
214 | .%T "Sorting and Searching" | 204 | .%T "Sorting and Searching" |
215 | .%P pp. 114-123, 145-149 | 205 | .%P pp. 114\-123, 145\-149 |
216 | .Re | 206 | .Re |
217 | .Rs | 207 | .Rs |
218 | .%A Mcilroy, P.M. | 208 | .%A McIlroy, P.M. |
219 | .%T "Optimistic Sorting and Information Theoretic Complexity" | 209 | .%T "Optimistic Sorting and Information Theoretic Complexity" |
220 | .%J "Fourth Annual ACM-SIAM Symposium on Discrete Algorithms" | 210 | .%J "Fourth Annual ACM-SIAM Symposium on Discrete Algorithms" |
221 | .%V January 1992 | 211 | .%P pp. 467\-464 |
212 | .%D January 1993 | ||
222 | .Re | 213 | .Re |
223 | .Rs | 214 | .Rs |
224 | .%A Bentley, J.L. | 215 | .%A Bentley, J.L. |
216 | .%A McIlroy, M.D. | ||
225 | .%T "Engineering a Sort Function" | 217 | .%T "Engineering a Sort Function" |
226 | .%J "bentley@research.att.com" | 218 | .%J "Software \- Practice and Experience" |
227 | .%V January 1992 | 219 | .%V Vol. 23(11) |
220 | .%P pp. 1249\-1265 | ||
221 | .%D November 1993 | ||
228 | .Re | 222 | .Re |
229 | .Sh STANDARDS | 223 | .Sh STANDARDS |
224 | Previous versions of | ||
225 | .Fn qsort | ||
226 | did not permit the comparison routine itself to call | ||
227 | .Fn qsort . | ||
228 | This is no longer true. | ||
229 | .Pp | ||
230 | The | 230 | The |
231 | .Fn qsort | 231 | .Fn qsort |
232 | function | 232 | function conforms to |
233 | conforms to | ||
234 | .St -ansiC . | 233 | .St -ansiC . |
diff --git a/src/lib/libc/stdlib/qsort.c b/src/lib/libc/stdlib/qsort.c index c06bd54054..154c51a86c 100644 --- a/src/lib/libc/stdlib/qsort.c +++ b/src/lib/libc/stdlib/qsort.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,15 +28,14 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char sccsid[] = "from: @(#)qsort.c 8.1 (Berkeley) 6/4/93";*/ | 31 | static char *rcsid = "$OpenBSD: qsort.c,v 1.9 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: qsort.c,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <sys/types.h> | 34 | #include <sys/types.h> |
40 | #include <stdlib.h> | 35 | #include <stdlib.h> |
41 | 36 | ||
42 | static inline char *med3 __P((char *, char *, char *, int (*)())); | 37 | static __inline char *med3(char *, char *, char *, int (*)(const void *, const void *)); |
43 | static inline void swapfunc __P((char *, char *, int, int)); | 38 | static __inline void swapfunc(char *, char *, int, int); |
44 | 39 | ||
45 | #define min(a, b) (a) < (b) ? a : b | 40 | #define min(a, b) (a) < (b) ? a : b |
46 | 41 | ||
@@ -49,10 +44,10 @@ static inline void swapfunc __P((char *, char *, int, int)); | |||
49 | */ | 44 | */ |
50 | #define swapcode(TYPE, parmi, parmj, n) { \ | 45 | #define swapcode(TYPE, parmi, parmj, n) { \ |
51 | long i = (n) / sizeof (TYPE); \ | 46 | long i = (n) / sizeof (TYPE); \ |
52 | register TYPE *pi = (TYPE *) (parmi); \ | 47 | TYPE *pi = (TYPE *) (parmi); \ |
53 | register TYPE *pj = (TYPE *) (parmj); \ | 48 | TYPE *pj = (TYPE *) (parmj); \ |
54 | do { \ | 49 | do { \ |
55 | register TYPE t = *pi; \ | 50 | TYPE t = *pi; \ |
56 | *pi++ = *pj; \ | 51 | *pi++ = *pj; \ |
57 | *pj++ = t; \ | 52 | *pj++ = t; \ |
58 | } while (--i > 0); \ | 53 | } while (--i > 0); \ |
@@ -61,12 +56,10 @@ static inline void swapfunc __P((char *, char *, int, int)); | |||
61 | #define SWAPINIT(a, es) swaptype = ((char *)a - (char *)0) % sizeof(long) || \ | 56 | #define SWAPINIT(a, es) swaptype = ((char *)a - (char *)0) % sizeof(long) || \ |
62 | es % sizeof(long) ? 2 : es == sizeof(long)? 0 : 1; | 57 | es % sizeof(long) ? 2 : es == sizeof(long)? 0 : 1; |
63 | 58 | ||
64 | static inline void | 59 | static __inline void |
65 | swapfunc(a, b, n, swaptype) | 60 | swapfunc(char *a, char *b, int n, int swaptype) |
66 | char *a, *b; | ||
67 | int n, swaptype; | ||
68 | { | 61 | { |
69 | if(swaptype <= 1) | 62 | if (swaptype <= 1) |
70 | swapcode(long, a, b, n) | 63 | swapcode(long, a, b, n) |
71 | else | 64 | else |
72 | swapcode(char, a, b, n) | 65 | swapcode(char, a, b, n) |
@@ -82,10 +75,8 @@ swapfunc(a, b, n, swaptype) | |||
82 | 75 | ||
83 | #define vecswap(a, b, n) if ((n) > 0) swapfunc(a, b, n, swaptype) | 76 | #define vecswap(a, b, n) if ((n) > 0) swapfunc(a, b, n, swaptype) |
84 | 77 | ||
85 | static inline char * | 78 | static __inline char * |
86 | med3(a, b, c, cmp) | 79 | med3(char *a, char *b, char *c, int (*cmp)(const void *, const void *)) |
87 | char *a, *b, *c; | ||
88 | int (*cmp)(); | ||
89 | { | 80 | { |
90 | return cmp(a, b) < 0 ? | 81 | return cmp(a, b) < 0 ? |
91 | (cmp(b, c) < 0 ? b : (cmp(a, c) < 0 ? c : a )) | 82 | (cmp(b, c) < 0 ? b : (cmp(a, c) < 0 ? c : a )) |
@@ -93,27 +84,25 @@ med3(a, b, c, cmp) | |||
93 | } | 84 | } |
94 | 85 | ||
95 | void | 86 | void |
96 | qsort(a, n, es, cmp) | 87 | qsort(void *aa, size_t n, size_t es, int (*cmp)(const void *, const void *)) |
97 | void *a; | ||
98 | size_t n, es; | ||
99 | int (*cmp)(); | ||
100 | { | 88 | { |
101 | char *pa, *pb, *pc, *pd, *pl, *pm, *pn; | 89 | char *pa, *pb, *pc, *pd, *pl, *pm, *pn; |
102 | int d, r, swaptype, swap_cnt; | 90 | int d, r, swaptype, swap_cnt; |
91 | char *a = aa; | ||
103 | 92 | ||
104 | loop: SWAPINIT(a, es); | 93 | loop: SWAPINIT(a, es); |
105 | swap_cnt = 0; | 94 | swap_cnt = 0; |
106 | if (n < 7) { | 95 | if (n < 7) { |
107 | for (pm = a + es; pm < (char *) a + n * es; pm += es) | 96 | for (pm = (char *)a + es; pm < (char *) a + n * es; pm += es) |
108 | for (pl = pm; pl > (char *) a && cmp(pl - es, pl) > 0; | 97 | for (pl = pm; pl > (char *) a && cmp(pl - es, pl) > 0; |
109 | pl -= es) | 98 | pl -= es) |
110 | swap(pl, pl - es); | 99 | swap(pl, pl - es); |
111 | return; | 100 | return; |
112 | } | 101 | } |
113 | pm = a + (n / 2) * es; | 102 | pm = (char *)a + (n / 2) * es; |
114 | if (n > 7) { | 103 | if (n > 7) { |
115 | pl = a; | 104 | pl = (char *)a; |
116 | pn = a + (n - 1) * es; | 105 | pn = (char *)a + (n - 1) * es; |
117 | if (n > 40) { | 106 | if (n > 40) { |
118 | d = (n / 8) * es; | 107 | d = (n / 8) * es; |
119 | pl = med3(pl, pl + d, pl + 2 * d, cmp); | 108 | pl = med3(pl, pl + d, pl + 2 * d, cmp); |
@@ -123,9 +112,9 @@ loop: SWAPINIT(a, es); | |||
123 | pm = med3(pl, pm, pn, cmp); | 112 | pm = med3(pl, pm, pn, cmp); |
124 | } | 113 | } |
125 | swap(a, pm); | 114 | swap(a, pm); |
126 | pa = pb = a + es; | 115 | pa = pb = (char *)a + es; |
127 | 116 | ||
128 | pc = pd = a + (n - 1) * es; | 117 | pc = pd = (char *)a + (n - 1) * es; |
129 | for (;;) { | 118 | for (;;) { |
130 | while (pb <= pc && (r = cmp(pb, a)) <= 0) { | 119 | while (pb <= pc && (r = cmp(pb, a)) <= 0) { |
131 | if (r == 0) { | 120 | if (r == 0) { |
@@ -151,14 +140,14 @@ loop: SWAPINIT(a, es); | |||
151 | pc -= es; | 140 | pc -= es; |
152 | } | 141 | } |
153 | if (swap_cnt == 0) { /* Switch to insertion sort */ | 142 | if (swap_cnt == 0) { /* Switch to insertion sort */ |
154 | for (pm = a + es; pm < (char *) a + n * es; pm += es) | 143 | for (pm = (char *) a + es; pm < (char *) a + n * es; pm += es) |
155 | for (pl = pm; pl > (char *) a && cmp(pl - es, pl) > 0; | 144 | for (pl = pm; pl > (char *) a && cmp(pl - es, pl) > 0; |
156 | pl -= es) | 145 | pl -= es) |
157 | swap(pl, pl - es); | 146 | swap(pl, pl - es); |
158 | return; | 147 | return; |
159 | } | 148 | } |
160 | 149 | ||
161 | pn = a + n * es; | 150 | pn = (char *)a + n * es; |
162 | r = min(pa - (char *)a, pb - pa); | 151 | r = min(pa - (char *)a, pb - pa); |
163 | vecswap(a, pb - r, r); | 152 | vecswap(a, pb - r, r); |
164 | r = min(pd - pc, pn - pd - es); | 153 | r = min(pd - pc, pn - pd - es); |
diff --git a/src/lib/libc/stdlib/radixsort.3 b/src/lib/libc/stdlib/radixsort.3 index a2af9f17a4..028837d4d1 100644 --- a/src/lib/libc/stdlib/radixsort.3 +++ b/src/lib/libc/stdlib/radixsort.3 | |||
@@ -9,11 +9,7 @@ | |||
9 | .\" 2. Redistributions in binary form must reproduce the above copyright | 9 | .\" 2. Redistributions in binary form must reproduce the above copyright |
10 | .\" notice, this list of conditions and the following disclaimer in the | 10 | .\" notice, this list of conditions and the following disclaimer in the |
11 | .\" documentation and/or other materials provided with the distribution. | 11 | .\" documentation and/or other materials provided with the distribution. |
12 | .\" 3. All advertising materials mentioning features or use of this software | 12 | .\" 3. Neither the name of the University nor the names of its contributors |
13 | .\" must display the following acknowledgement: | ||
14 | .\" This product includes software developed by the University of | ||
15 | .\" California, Berkeley and its contributors. | ||
16 | .\" 4. 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 | 13 | .\" may be used to endorse or promote products derived from this software |
18 | .\" without specific prior written permission. | 14 | .\" without specific prior written permission. |
19 | .\" | 15 | .\" |
@@ -29,32 +25,33 @@ | |||
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 25 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
30 | .\" SUCH DAMAGE. | 26 | .\" SUCH DAMAGE. |
31 | .\" | 27 | .\" |
32 | .\" from: @(#)radixsort.3 8.2 (Berkeley) 1/27/94 | 28 | .\" $OpenBSD: radixsort.3,v 1.9 2003/06/02 20:18:38 millert Exp $ |
33 | .\" $Id: radixsort.3,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $ | ||
34 | .\" | 29 | .\" |
35 | .Dd January 27, 1994 | 30 | .Dd January 27, 1994 |
36 | .Dt RADIXSORT 3 | 31 | .Dt RADIXSORT 3 |
37 | .Os | 32 | .Os |
38 | .Sh NAME | 33 | .Sh NAME |
39 | .Nm radixsort | 34 | .Nm radixsort , |
35 | .Nm sradixsort | ||
40 | .Nd radix sort | 36 | .Nd radix sort |
41 | .Sh SYNOPSIS | 37 | .Sh SYNOPSIS |
42 | .Fd #include <limits.h> | 38 | .Fd #include <limits.h> |
43 | .Fd #include <stdlib.h> | 39 | .Fd #include <stdlib.h> |
44 | .Ft int | 40 | .Ft int |
45 | .Fn radixsort "u_char **base" "int nmemb" "u_char *table" "u_int endbyte" | 41 | .Fn radixsort "const u_char **base" "int nmemb" "const u_char *table" "u_int endbyte" |
46 | .Ft int | 42 | .Ft int |
47 | .Fn sradixsort "u_char **base" "int nmemb" "u_char *table" "u_int endbyte" | 43 | .Fn sradixsort "const u_char **base" "int nmemb" "const u_char *table" "u_int endbyte" |
48 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION |
49 | The | 45 | The |
50 | .Fn radixsort | 46 | .Fn radixsort |
51 | and | 47 | and |
52 | .Fn sradixsort | 48 | .Fn sradixsort |
53 | functions | 49 | functions are implementations of radix sort. |
54 | are implementations of radix sort. | ||
55 | .Pp | 50 | .Pp |
56 | These functions sort an array of pointers to byte strings, the initial | 51 | These functions sort an array of |
57 | member of which is referenced by | 52 | .Fa nmemb |
53 | pointers to byte strings. | ||
54 | The initial member is referenced by | ||
58 | .Fa base . | 55 | .Fa base . |
59 | The byte strings may contain any values; the end of each string | 56 | The byte strings may contain any values; the end of each string |
60 | is denoted by the user-specified value | 57 | is denoted by the user-specified value |
@@ -63,26 +60,24 @@ is denoted by the user-specified value | |||
63 | Applications may specify a sort order by providing the | 60 | Applications may specify a sort order by providing the |
64 | .Fa table | 61 | .Fa table |
65 | argument. | 62 | argument. |
66 | If | 63 | If non-null, |
67 | .Pf non- Dv NULL , | ||
68 | .Fa table | 64 | .Fa table |
69 | must reference an array of | 65 | must reference an array of |
70 | .Dv UCHAR_MAX | 66 | .Dv UCHAR_MAX |
71 | + 1 bytes which contains the sort | 67 | + 1 bytes which contains the sort weight of each possible byte value. |
72 | weight of each possible byte value. | ||
73 | The end-of-string byte must have a sort weight of 0 or 255 | 68 | The end-of-string byte must have a sort weight of 0 or 255 |
74 | (for sorting in reverse order). | 69 | (for sorting in reverse order). |
75 | More than one byte may have the same sort weight. | 70 | More than one byte may have the same sort weight. |
76 | The | 71 | The |
77 | .Fa table | 72 | .Fa table |
78 | argument | 73 | argument is useful for applications which wish to sort different characters |
79 | is useful for applications which wish to sort different characters | ||
80 | equally, for example, providing a table with the same weights | 74 | equally, for example, providing a table with the same weights |
81 | for A-Z as for a-z will result in a case-insensitive sort. | 75 | for A-Z as for a-z will result in a case-insensitive sort. |
82 | If | 76 | If |
83 | .Fa table | 77 | .Fa table |
84 | is NULL, the contents of the array are sorted in ascending order | 78 | is |
85 | according to the | 79 | .Dv NULL , |
80 | the contents of the array are sorted in ascending order according to the | ||
86 | .Tn ASCII | 81 | .Tn ASCII |
87 | order of the byte strings they reference and | 82 | order of the byte strings they reference and |
88 | .Fa endbyte | 83 | .Fa endbyte |
@@ -90,7 +85,7 @@ has a sorting weight of 0. | |||
90 | .Pp | 85 | .Pp |
91 | The | 86 | The |
92 | .Fn sradixsort | 87 | .Fn sradixsort |
93 | function is stable, that is, if two elements compare as equal, their | 88 | function is stable; that is, if two elements compare as equal, their |
94 | order in the sorted array is unchanged. | 89 | order in the sorted array is unchanged. |
95 | The | 90 | The |
96 | .Fn sradixsort | 91 | .Fn sradixsort |
@@ -107,7 +102,7 @@ particular, see D.E. Knuth's Algorithm R and section 5.2.5, exercise 10. | |||
107 | They take linear time relative to the number of bytes in the strings. | 102 | They take linear time relative to the number of bytes in the strings. |
108 | .Sh RETURN VALUES | 103 | .Sh RETURN VALUES |
109 | Upon successful completion 0 is returned. | 104 | Upon successful completion 0 is returned. |
110 | Otherwise, \-1 is returned and the global variable | 105 | Otherwise, \-1 is returned and the global variable |
111 | .Va errno | 106 | .Va errno |
112 | is set to indicate the error. | 107 | is set to indicate the error. |
113 | .Sh ERRORS | 108 | .Sh ERRORS |
@@ -122,15 +117,13 @@ is not 0 or 255. | |||
122 | .Pp | 117 | .Pp |
123 | Additionally, the | 118 | Additionally, the |
124 | .Fn sradixsort | 119 | .Fn sradixsort |
125 | function | 120 | function may fail and set |
126 | may fail and set | ||
127 | .Va errno | 121 | .Va errno |
128 | for any of the errors specified for the library routine | 122 | for any of the errors specified for the library routine |
129 | .Xr malloc 3 . | 123 | .Xr malloc 3 . |
130 | .Sh SEE ALSO | 124 | .Sh SEE ALSO |
131 | .Xr sort 1 , | 125 | .Xr sort 1 , |
132 | .Xr qsort 3 | 126 | .Xr qsort 3 |
133 | .Pp | ||
134 | .Rs | 127 | .Rs |
135 | .%A Knuth, D.E. | 128 | .%A Knuth, D.E. |
136 | .%D 1968 | 129 | .%D 1968 |
@@ -158,4 +151,5 @@ for any of the errors specified for the library routine | |||
158 | .Sh HISTORY | 151 | .Sh HISTORY |
159 | The | 152 | The |
160 | .Fn radixsort | 153 | .Fn radixsort |
161 | function first appeared in 4.4BSD. | 154 | function first appeared in |
155 | .Bx 4.4 . | ||
diff --git a/src/lib/libc/stdlib/radixsort.c b/src/lib/libc/stdlib/radixsort.c index dd51013c94..96392ea73a 100644 --- a/src/lib/libc/stdlib/radixsort.c +++ b/src/lib/libc/stdlib/radixsort.c | |||
@@ -13,11 +13,7 @@ | |||
13 | * 2. Redistributions in binary form must reproduce the above copyright | 13 | * 2. Redistributions in binary form must reproduce the above copyright |
14 | * notice, this list of conditions and the following disclaimer in the | 14 | * notice, this list of conditions and the following disclaimer in the |
15 | * documentation and/or other materials provided with the distribution. | 15 | * documentation and/or other materials provided with the distribution. |
16 | * 3. All advertising materials mentioning features or use of this software | 16 | * 3. Neither the name of the University nor the names of its contributors |
17 | * must display the following acknowledgement: | ||
18 | * This product includes software developed by the University of | ||
19 | * California, Berkeley and its contributors. | ||
20 | * 4. Neither the name of the University nor the names of its contributors | ||
21 | * may be used to endorse or promote products derived from this software | 17 | * may be used to endorse or promote products derived from this software |
22 | * without specific prior written permission. | 18 | * without specific prior written permission. |
23 | * | 19 | * |
@@ -35,8 +31,7 @@ | |||
35 | */ | 31 | */ |
36 | 32 | ||
37 | #if defined(LIBC_SCCS) && !defined(lint) | 33 | #if defined(LIBC_SCCS) && !defined(lint) |
38 | /*static char sccsid[] = "from: @(#)radixsort.c 8.1 (Berkeley) 6/4/93";*/ | 34 | static char *rcsid = "$OpenBSD: radixsort.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; |
39 | static char *rcsid = "$Id: radixsort.c,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $"; | ||
40 | #endif /* LIBC_SCCS and not lint */ | 35 | #endif /* LIBC_SCCS and not lint */ |
41 | 36 | ||
42 | /* | 37 | /* |
@@ -61,11 +56,11 @@ typedef struct { | |||
61 | int sn, si; | 56 | int sn, si; |
62 | } stack; | 57 | } stack; |
63 | 58 | ||
64 | static inline void simplesort | 59 | static __inline void simplesort |
65 | __P((const u_char **, int, int, const u_char *, u_int)); | 60 | (const u_char **, int, int, const u_char *, u_int); |
66 | static void r_sort_a __P((const u_char **, int, int, const u_char *, u_int)); | 61 | static void r_sort_a(const u_char **, int, int, const u_char *, u_int); |
67 | static void r_sort_b __P((const u_char **, | 62 | static void r_sort_b(const u_char **, |
68 | const u_char **, int, int, const u_char *, u_int)); | 63 | const u_char **, int, int, const u_char *, u_int); |
69 | 64 | ||
70 | #define THRESHOLD 20 /* Divert to simplesort(). */ | 65 | #define THRESHOLD 20 /* Divert to simplesort(). */ |
71 | #define SIZE 512 /* Default stack size. */ | 66 | #define SIZE 512 /* Default stack size. */ |
@@ -90,10 +85,7 @@ static void r_sort_b __P((const u_char **, | |||
90 | } | 85 | } |
91 | 86 | ||
92 | int | 87 | int |
93 | radixsort(a, n, tab, endch) | 88 | radixsort(const u_char **a, int n, const u_char *tab, u_int endch) |
94 | const u_char **a, *tab; | ||
95 | int n; | ||
96 | u_int endch; | ||
97 | { | 89 | { |
98 | const u_char *tr; | 90 | const u_char *tr; |
99 | int c; | 91 | int c; |
@@ -105,10 +97,7 @@ radixsort(a, n, tab, endch) | |||
105 | } | 97 | } |
106 | 98 | ||
107 | int | 99 | int |
108 | sradixsort(a, n, tab, endch) | 100 | sradixsort(const u_char **a, int n, const u_char *tab, u_int endch) |
109 | const u_char **a, *tab; | ||
110 | int n; | ||
111 | u_int endch; | ||
112 | { | 101 | { |
113 | const u_char *tr, **ta; | 102 | const u_char *tr, **ta; |
114 | int c; | 103 | int c; |
@@ -133,15 +122,11 @@ sradixsort(a, n, tab, endch) | |||
133 | 122 | ||
134 | /* Unstable, in-place sort. */ | 123 | /* Unstable, in-place sort. */ |
135 | void | 124 | void |
136 | r_sort_a(a, n, i, tr, endch) | 125 | r_sort_a(const u_char **a, int n, int i, const u_char *tr, u_int endch) |
137 | const u_char **a; | ||
138 | int n, i; | ||
139 | const u_char *tr; | ||
140 | u_int endch; | ||
141 | { | 126 | { |
142 | static int count[256], nc, bmin; | 127 | static int count[256], nc, bmin; |
143 | register int c; | 128 | int c; |
144 | register const u_char **ak, *r; | 129 | const u_char **ak, *r; |
145 | stack s[SIZE], *sp, *sp0, *sp1, temp; | 130 | stack s[SIZE], *sp, *sp0, *sp1, temp; |
146 | int *cp, bigc; | 131 | int *cp, bigc; |
147 | const u_char **an, *t, **aj, **top[256]; | 132 | const u_char **an, *t, **aj, **top[256]; |
@@ -224,15 +209,12 @@ r_sort_a(a, n, i, tr, endch) | |||
224 | 209 | ||
225 | /* Stable sort, requiring additional memory. */ | 210 | /* Stable sort, requiring additional memory. */ |
226 | void | 211 | void |
227 | r_sort_b(a, ta, n, i, tr, endch) | 212 | r_sort_b(const u_char **a, const u_char **ta, int n, int i, const u_char *tr, |
228 | const u_char **a, **ta; | 213 | u_int endch) |
229 | int n, i; | ||
230 | const u_char *tr; | ||
231 | u_int endch; | ||
232 | { | 214 | { |
233 | static int count[256], nc, bmin; | 215 | static int count[256], nc, bmin; |
234 | register int c; | 216 | int c; |
235 | register const u_char **ak, **ai; | 217 | const u_char **ak, **ai; |
236 | stack s[512], *sp, *sp0, *sp1, temp; | 218 | stack s[512], *sp, *sp0, *sp1, temp; |
237 | const u_char **top[256]; | 219 | const u_char **top[256]; |
238 | int *cp, bigc; | 220 | int *cp, bigc; |
@@ -295,14 +277,11 @@ r_sort_b(a, ta, n, i, tr, endch) | |||
295 | } | 277 | } |
296 | } | 278 | } |
297 | 279 | ||
298 | static inline void | 280 | static __inline void |
299 | simplesort(a, n, b, tr, endch) /* insertion sort */ | 281 | simplesort(const u_char **a, int n, int b, const u_char *tr, u_int endch) |
300 | register const u_char **a; | 282 | /* insertion sort */ |
301 | int n, b; | ||
302 | register const u_char *tr; | ||
303 | u_int endch; | ||
304 | { | 283 | { |
305 | register u_char ch; | 284 | u_char ch; |
306 | const u_char **ak, **ai, *s, *t; | 285 | const u_char **ak, **ai, *s, *t; |
307 | 286 | ||
308 | for (ak = a+1; --n >= 1; ak++) | 287 | for (ak = a+1; --n >= 1; ak++) |
diff --git a/src/lib/libc/stdlib/rand.3 b/src/lib/libc/stdlib/rand.3 index a0e7740e66..0d9c52a3b9 100644 --- a/src/lib/libc/stdlib/rand.3 +++ b/src/lib/libc/stdlib/rand.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,8 +29,7 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)rand.3 6.7 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: rand.3,v 1.9 2003/06/02 20:18:38 millert Exp $ |
37 | .\" $Id: rand.3,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
40 | .Dt RAND 3 | 35 | .Dt RAND 3 |
@@ -46,12 +41,15 @@ | |||
46 | .Sh SYNOPSIS | 41 | .Sh SYNOPSIS |
47 | .Fd #include <stdlib.h> | 42 | .Fd #include <stdlib.h> |
48 | .Ft void | 43 | .Ft void |
49 | .Fn srand "unsigned seed" | 44 | .Fn srand "unsigned int seed" |
50 | .Ft int | 45 | .Ft int |
51 | .Fn rand void | 46 | .Fn rand void |
47 | .Ft int | ||
48 | .Fn rand_r "unsigned int *seed" | ||
52 | .Sh DESCRIPTION | 49 | .Sh DESCRIPTION |
53 | .Bf -symbolic | 50 | .Bf -symbolic |
54 | These interfaces are obsoleted by random(3). | 51 | These interfaces are obsoleted by |
52 | .Xr random 3 . | ||
55 | .Ef | 53 | .Ef |
56 | .Pp | 54 | .Pp |
57 | The | 55 | The |
@@ -73,13 +71,28 @@ with the same seed value. | |||
73 | .Pp | 71 | .Pp |
74 | If no seed value is provided, the functions are automatically | 72 | If no seed value is provided, the functions are automatically |
75 | seeded with a value of 1. | 73 | seeded with a value of 1. |
74 | .Pp | ||
75 | The | ||
76 | .Fn rand_r | ||
77 | is a thread-safe version of | ||
78 | .Fn rand . | ||
79 | Storage for the seed must be provided through the | ||
80 | .Fa seed | ||
81 | argument, and needs to have been initialized by the caller. | ||
76 | .Sh SEE ALSO | 82 | .Sh SEE ALSO |
83 | .Xr arc4random 3 , | ||
84 | .Xr rand48 3 , | ||
77 | .Xr random 3 | 85 | .Xr random 3 |
78 | .Sh STANDARDS | 86 | .Sh STANDARDS |
79 | The | 87 | The |
80 | .Fn rand | 88 | .Fn rand |
81 | and | 89 | and |
82 | .Fn srand | 90 | .Fn srand |
83 | functions | 91 | functions conform to |
84 | conform to | ||
85 | .St -ansiC . | 92 | .St -ansiC . |
93 | .Pp | ||
94 | The | ||
95 | .Fn rand_r | ||
96 | function conforms to ISO/IEC 9945-1 ANSI/IEEE | ||
97 | .Pq Dq Tn POSIX | ||
98 | Std 1003.1c Draft 10. | ||
diff --git a/src/lib/libc/stdlib/rand.c b/src/lib/libc/stdlib/rand.c index 361d473448..6b27ad46d3 100644 --- a/src/lib/libc/stdlib/rand.c +++ b/src/lib/libc/stdlib/rand.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,24 +28,29 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)rand.c 5.6 (Berkeley) 6/24/91";*/ | 31 | static char *rcsid = "$OpenBSD: rand.c,v 1.8 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: rand.c,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <sys/types.h> | 34 | #include <sys/types.h> |
40 | #include <stdlib.h> | 35 | #include <stdlib.h> |
41 | 36 | ||
42 | static u_long next = 1; | 37 | static u_int next = 1; |
43 | 38 | ||
44 | int | 39 | int |
45 | rand() | 40 | rand_r(u_int *seed) |
46 | { | 41 | { |
47 | return ((next = next * 1103515245 + 12345) % ((u_int)RAND_MAX + 1)); | 42 | *seed = *seed * 1103515245 + 12345; |
43 | return (*seed % ((u_int)RAND_MAX + 1)); | ||
44 | } | ||
45 | |||
46 | int | ||
47 | rand(void) | ||
48 | { | ||
49 | return (rand_r(&next)); | ||
48 | } | 50 | } |
49 | 51 | ||
50 | void | 52 | void |
51 | srand(seed) | 53 | srand(u_int seed) |
52 | u_int seed; | ||
53 | { | 54 | { |
54 | next = seed; | 55 | next = seed; |
55 | } | 56 | } |
diff --git a/src/lib/libc/stdlib/rand48.3 b/src/lib/libc/stdlib/rand48.3 index 5a772c9a8c..78cd0a7cd5 100644 --- a/src/lib/libc/stdlib/rand48.3 +++ b/src/lib/libc/stdlib/rand48.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | \" Copyright (c) 1993 Martin Birgmeier | 1 | .\" Copyright (c) 1993 Martin Birgmeier |
2 | .\" All rights reserved. | 2 | .\" All rights reserved. |
3 | .\" | 3 | .\" |
4 | .\" You may redistribute unmodified or modified versions of this source | 4 | .\" You may redistribute unmodified or modified versions of this source |
@@ -9,7 +9,7 @@ | |||
9 | .\" of any kind. I shall in no event be liable for anything that happens | 9 | .\" of any kind. I shall in no event be liable for anything that happens |
10 | .\" to anyone/anything when using this software. | 10 | .\" to anyone/anything when using this software. |
11 | .\" | 11 | .\" |
12 | .\" $Id: rand48.3,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $ | 12 | .\" $OpenBSD: rand48.3,v 1.10 2003/06/01 19:27:27 jmc Exp $ |
13 | .\" | 13 | .\" |
14 | .Dd October 8, 1993 | 14 | .Dd October 8, 1993 |
15 | .Dt RAND48 3 | 15 | .Dt RAND48 3 |
@@ -24,10 +24,10 @@ | |||
24 | .Nm srand48 , | 24 | .Nm srand48 , |
25 | .Nm seed48 , | 25 | .Nm seed48 , |
26 | .Nm lcong48 | 26 | .Nm lcong48 |
27 | .Nd pseudo random number generators and initialization routines | 27 | .Nd pseudo-random number generators and initialization routines |
28 | .Sh SYNOPSIS | 28 | .Sh SYNOPSIS |
29 | .Fd #include <stdlib.h> | 29 | .Fd #include <stdlib.h> |
30 | .Ft double | 30 | .Ft double |
31 | .Fn drand48 void | 31 | .Fn drand48 void |
32 | .Ft double | 32 | .Ft double |
33 | .Fn erand48 "unsigned short xseed[3]" | 33 | .Fn erand48 "unsigned short xseed[3]" |
@@ -49,12 +49,13 @@ | |||
49 | The | 49 | The |
50 | .Fn rand48 | 50 | .Fn rand48 |
51 | family of functions generates pseudo-random numbers using a linear | 51 | family of functions generates pseudo-random numbers using a linear |
52 | congruential algorithm working on integers 48 bits in size. The | 52 | congruential algorithm working on integers 48 bits in size. |
53 | particular formula employed is | 53 | The particular formula employed is |
54 | r(n+1) = (a * r(n) + c) mod m | 54 | r(n+1) = (a * r(n) + c) mod m |
55 | where the default values are | 55 | where the default values are |
56 | for the multiplicand a = 0xfdeece66d = 25214903917 and | 56 | for the multiplicand a = 0xfdeece66d = 25214903917 and |
57 | the addend c = 0xb = 11. The modulus is always fixed at m = 2 ** 48. | 57 | the addend c = 0xb = 11. |
58 | The modulus is always fixed at m = 2 ** 48. | ||
58 | r(n) is called the seed of the random number generator. | 59 | r(n) is called the seed of the random number generator. |
59 | .Pp | 60 | .Pp |
60 | For all the six generator routines described next, the first | 61 | For all the six generator routines described next, the first |
@@ -63,15 +64,17 @@ computational step is to perform a single iteration of the algorithm. | |||
63 | .Fn drand48 | 64 | .Fn drand48 |
64 | and | 65 | and |
65 | .Fn erand48 | 66 | .Fn erand48 |
66 | return values of type double. The full 48 bits of r(n+1) are | 67 | return values of type double. |
68 | The full 48 bits of r(n+1) are | ||
67 | loaded into the mantissa of the returned value, with the exponent set | 69 | loaded into the mantissa of the returned value, with the exponent set |
68 | such that the values produced lie in the interval [0.0, 1.0). | 70 | such that the values produced lie in the interval [0.0, 1.0]. |
69 | .Pp | 71 | .Pp |
70 | .Fn lrand48 | 72 | .Fn lrand48 |
71 | and | 73 | and |
72 | .Fn nrand48 | 74 | .Fn nrand48 |
73 | return values of type long in the range | 75 | return values of type long in the range |
74 | [0, 2**31-1]. The high-order (31) bits of | 76 | [0, 2**31-1]. |
77 | The high-order (31) bits of | ||
75 | r(n+1) are loaded into the lower bits of the returned value, with | 78 | r(n+1) are loaded into the lower bits of the returned value, with |
76 | the topmost (sign) bit set to zero. | 79 | the topmost (sign) bit set to zero. |
77 | .Pp | 80 | .Pp |
@@ -79,14 +82,15 @@ the topmost (sign) bit set to zero. | |||
79 | and | 82 | and |
80 | .Fn jrand48 | 83 | .Fn jrand48 |
81 | return values of type long in the range | 84 | return values of type long in the range |
82 | [-2**31, 2**31-1]. The high-order (32) bits of | 85 | [-2**31, 2**31-1]. |
83 | r(n+1) are loaded into the returned value. | 86 | The high-order (32) bits of r(n+1) are loaded into the returned value. |
84 | .Pp | 87 | .Pp |
85 | .Fn drand48 , | 88 | .Fn drand48 , |
86 | .Fn lrand48 , | 89 | .Fn lrand48 , |
87 | and | 90 | and |
88 | .Fn mrand48 | 91 | .Fn mrand48 |
89 | use an internal buffer to store r(n). For these functions | 92 | use an internal buffer to store r(n). |
93 | For these functions | ||
90 | the initial value of r(0) = 0x1234abcd330e = 20017429951246. | 94 | the initial value of r(0) = 0x1234abcd330e = 20017429951246. |
91 | .Pp | 95 | .Pp |
92 | On the other hand, | 96 | On the other hand, |
@@ -118,12 +122,12 @@ also initializes the internal buffer r(n) of | |||
118 | and | 122 | and |
119 | .Fn mrand48 , | 123 | .Fn mrand48 , |
120 | but here all 48 bits of the seed can be specified in an array of 3 shorts, | 124 | but here all 48 bits of the seed can be specified in an array of 3 shorts, |
121 | where the zeroth member specifies the lowest bits. Again, | 125 | where the zeroth member specifies the lowest bits. |
122 | the constant multiplicand and addend of the algorithm are | 126 | Again, the constant multiplicand and addend of the algorithm are |
123 | reset to the default values given above. | 127 | reset to the default values given above. |
124 | .Fn seed48 | 128 | .Fn seed48 |
125 | returns a pointer to an array of 3 shorts which contains the old seed. | 129 | returns a pointer to an array of 3 shorts which contains the old seed. |
126 | This array is statically allocated, thus its contents are lost after | 130 | This array is statically allocated, so its contents are lost after |
127 | each new call to | 131 | each new call to |
128 | .Fn seed48 . | 132 | .Fn seed48 . |
129 | .Pp | 133 | .Pp |
@@ -152,9 +156,10 @@ always also set the multiplicand and addend for any of the six | |||
152 | generator calls. | 156 | generator calls. |
153 | .Pp | 157 | .Pp |
154 | For a more powerful random number generator, see | 158 | For a more powerful random number generator, see |
155 | .Xr random 3 | 159 | .Xr random 3 . |
156 | .Sh AUTHOR | ||
157 | Martin Birgmeier | ||
158 | .Sh SEE ALSO | 160 | .Sh SEE ALSO |
161 | .Xr arc4random 3 , | ||
159 | .Xr rand 3 , | 162 | .Xr rand 3 , |
160 | .Xr random 3 . | 163 | .Xr random 3 |
164 | .Sh AUTHORS | ||
165 | Martin Birgmeier | ||
diff --git a/src/lib/libc/stdlib/rand48.h b/src/lib/libc/stdlib/rand48.h index 12496d1c8c..afa49f65f3 100644 --- a/src/lib/libc/stdlib/rand48.h +++ b/src/lib/libc/stdlib/rand48.h | |||
@@ -9,6 +9,8 @@ | |||
9 | * This software is provided ``as is'', and comes with no warranties | 9 | * This software is provided ``as is'', and comes with no warranties |
10 | * of any kind. I shall in no event be liable for anything that happens | 10 | * of any kind. I shall in no event be liable for anything that happens |
11 | * to anyone/anything when using this software. | 11 | * to anyone/anything when using this software. |
12 | * | ||
13 | * $OpenBSD: rand48.h,v 1.3 2002/02/16 21:27:24 millert Exp $ | ||
12 | */ | 14 | */ |
13 | 15 | ||
14 | #ifndef _RAND48_H_ | 16 | #ifndef _RAND48_H_ |
@@ -17,7 +19,7 @@ | |||
17 | #include <math.h> | 19 | #include <math.h> |
18 | #include <stdlib.h> | 20 | #include <stdlib.h> |
19 | 21 | ||
20 | void __dorand48 __P((unsigned short[3])); | 22 | void __dorand48(unsigned short[3]); |
21 | 23 | ||
22 | #define RAND48_SEED_0 (0x330e) | 24 | #define RAND48_SEED_0 (0x330e) |
23 | #define RAND48_SEED_1 (0xabcd) | 25 | #define RAND48_SEED_1 (0xabcd) |
diff --git a/src/lib/libc/stdlib/random.3 b/src/lib/libc/stdlib/random.3 index 38c15a9803..f43f06420d 100644 --- a/src/lib/libc/stdlib/random.3 +++ b/src/lib/libc/stdlib/random.3 | |||
@@ -9,11 +9,7 @@ | |||
9 | .\" 2. Redistributions in binary form must reproduce the above copyright | 9 | .\" 2. Redistributions in binary form must reproduce the above copyright |
10 | .\" notice, this list of conditions and the following disclaimer in the | 10 | .\" notice, this list of conditions and the following disclaimer in the |
11 | .\" documentation and/or other materials provided with the distribution. | 11 | .\" documentation and/or other materials provided with the distribution. |
12 | .\" 3. All advertising materials mentioning features or use of this software | 12 | .\" 3. Neither the name of the University nor the names of its contributors |
13 | .\" must display the following acknowledgement: | ||
14 | .\" This product includes software developed by the University of | ||
15 | .\" California, Berkeley and its contributors. | ||
16 | .\" 4. 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 | 13 | .\" may be used to endorse or promote products derived from this software |
18 | .\" without specific prior written permission. | 14 | .\" without specific prior written permission. |
19 | .\" | 15 | .\" |
@@ -29,97 +25,106 @@ | |||
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 25 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
30 | .\" SUCH DAMAGE. | 26 | .\" SUCH DAMAGE. |
31 | .\" | 27 | .\" |
32 | .\" from: @(#)random.3 6.5 (Berkeley) 4/19/91 | 28 | .\" $OpenBSD: random.3,v 1.17 2003/06/02 20:18:38 millert Exp $ |
33 | .\" $Id: random.3,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $ | ||
34 | .\" | 29 | .\" |
35 | .Dd April 19, 1991 | 30 | .Dd April 19, 1991 |
36 | .Dt RANDOM 3 | 31 | .Dt RANDOM 3 |
37 | .Os BSD 4.2 | 32 | .Os |
38 | .Sh NAME | 33 | .Sh NAME |
39 | .Nm random , | 34 | .Nm random , |
40 | .Nm srandom , | 35 | .Nm srandom , |
36 | .Nm srandomdev , | ||
41 | .Nm initstate , | 37 | .Nm initstate , |
42 | .Nm setstate | 38 | .Nm setstate |
43 | .Nd better random number generator; routines for changing generators | 39 | .Nd better random number generator; routines for changing generators |
44 | .Sh SYNOPSIS | 40 | .Sh SYNOPSIS |
45 | .Fd #include <stdlib.h> | 41 | .Fd #include <stdlib.h> |
46 | .Ft long | 42 | .Ft long |
47 | .Fn random void | 43 | .Fn random void |
48 | .Ft void | 44 | .Ft void |
49 | .Fn srandom "unsigned seed" | 45 | .Fn srandom "unsigned int seed" |
46 | .Ft void | ||
47 | .Fn srandomdev void | ||
50 | .Ft char * | 48 | .Ft char * |
51 | .Fn initstate "unsigned seed" "char *state" "int n" | 49 | .Fn initstate "unsigned int seed" "char *state" "size_t n" |
52 | .Ft char * | 50 | .Ft char * |
53 | .Fn setstate "char *state" | 51 | .Fn setstate "const char *state" |
54 | .Sh DESCRIPTION | 52 | .Sh DESCRIPTION |
55 | The | 53 | The |
56 | .Fn random | 54 | .Fn random |
57 | function | 55 | function uses a non-linear additive feedback random number generator employing |
58 | uses a non-linear additive feedback random number generator employing a | 56 | a default table of size 31 long integers to return successive pseudo-random |
59 | default table of size 31 long integers to return successive pseudo-random | 57 | numbers in the range from 0 to (2**31)\-1. |
60 | numbers in the range from 0 to | ||
61 | .if t 2\u\s731\s10\d\(mi1. | ||
62 | .if n (2**31)\(mi1. | ||
63 | The period of this random number generator is very large, approximately | 58 | The period of this random number generator is very large, approximately |
64 | .if t 16\(mu(2\u\s731\s10\d\(mi1). | 59 | 16*((2**31)\-1). |
65 | .if n 16*((2**31)\(mi1). | ||
66 | .Pp | 60 | .Pp |
67 | The | 61 | The |
68 | .Fn random Ns / Fn srandom | 62 | .Fn random |
69 | have (almost) the same calling sequence and initialization properties as | 63 | and |
70 | .Xr rand 3 Ns / Xr srand 3 . | 64 | .Fn srandom |
65 | functions have (almost) the same calling sequence and initialization | ||
66 | properties as | ||
67 | .Xr rand 3 Ns / Ns Xr srand 3 . | ||
71 | The difference is that | 68 | The difference is that |
72 | .Xr rand | 69 | .Xr rand |
73 | produces a much less random sequence \(em in fact, the low dozen bits | 70 | produces a much less random sequence \(em in fact, the low dozen bits |
74 | generated by rand go through a cyclic pattern. All the bits generated by | 71 | generated by rand go through a cyclic pattern. |
72 | All the bits generated by | ||
75 | .Fn random | 73 | .Fn random |
76 | are usable. For example, | 74 | are usable. |
75 | For example, | ||
77 | .Sq Li random()&01 | 76 | .Sq Li random()&01 |
78 | will produce a random binary | 77 | will produce a random binary |
79 | value. | 78 | value. |
80 | .Pp | 79 | .Pp |
81 | Unlike | 80 | Like |
82 | .Xr srand , | ||
83 | .Fn srandom | ||
84 | does not return the old seed; the reason for this is that the amount of | ||
85 | state information used is much more than a single word. (Two other | ||
86 | routines are provided to deal with restarting/changing random | ||
87 | number generators). Like | ||
88 | .Xr rand 3 , | 81 | .Xr rand 3 , |
89 | however, | ||
90 | .Fn random | 82 | .Fn random |
91 | will by default produce a sequence of numbers that can be duplicated | 83 | will by default produce a sequence of numbers that can be duplicated |
92 | by calling | 84 | by calling |
93 | .Fn srandom | 85 | .Fn srandom |
94 | with | 86 | with |
95 | .Ql 1 | 87 | .Ql 1 |
96 | as the seed. | 88 | as the seed. |
97 | .Pp | 89 | .Pp |
98 | The | 90 | The |
91 | .Fn srandomdev | ||
92 | routine initializes a state array using the | ||
93 | .Xr arandom 4 | ||
94 | random number device which returns good random numbers, | ||
95 | suitable for cryptographic use. | ||
96 | Note that this particular seeding procedure can generate | ||
97 | states which are impossible to reproduce by calling | ||
98 | .Fn srandom | ||
99 | with any value, since the succeeding terms in the | ||
100 | state buffer are no longer derived from the LC algorithm applied to | ||
101 | a fixed seed. | ||
102 | .Pp | ||
103 | The | ||
99 | .Fn initstate | 104 | .Fn initstate |
100 | routine allows a state array, passed in as an argument, to be initialized | 105 | routine allows a state array, passed in as an argument, to be initialized |
101 | for future use. The size of the state array (in bytes) is used by | 106 | for future use. |
107 | The size of the state array (in bytes) is used by | ||
102 | .Fn initstate | 108 | .Fn initstate |
103 | to decide how sophisticated a random number generator it should use \(em the | 109 | to decide how sophisticated a random number generator it should use \(em the |
104 | more state, the better the random numbers will be. | 110 | more state, the better the random numbers will be. |
105 | (Current "optimal" values for the amount of state information are | 111 | (Current "optimal" values for the amount of state information are |
106 | 8, 32, 64, 128, and 256 bytes; other amounts will be rounded down to | 112 | 8, 32, 64, 128, and 256 bytes; other amounts will be rounded down to |
107 | the nearest known amount. Using less than 8 bytes will cause an error.) | 113 | the nearest known amount. |
114 | Using less than 8 bytes will cause an error.) | ||
108 | The seed for the initialization (which specifies a starting point for | 115 | The seed for the initialization (which specifies a starting point for |
109 | the random number sequence, and provides for restarting at the same | 116 | the random number sequence, and provides for restarting at the same |
110 | point) is also an argument. | 117 | point) is also an argument. |
111 | The | 118 | The |
112 | .Fn initstate | 119 | .Fn initstate |
113 | function | 120 | function returns a pointer to the previous state information array. |
114 | returns a pointer to the previous state information array. | ||
115 | .Pp | 121 | .Pp |
116 | Once a state has been initialized, the | 122 | Once a state has been initialized, the |
117 | .Fn setstate | 123 | .Fn setstate |
118 | routine provides for rapid switching between states. | 124 | routine provides for rapid switching between states. |
119 | The | 125 | The |
120 | .Fn setstate | 126 | .Fn setstate |
121 | function | 127 | function returns a pointer to the previous state array; its |
122 | returns a pointer to the previous state array; its | ||
123 | argument state array is used for further random number generation | 128 | argument state array is used for further random number generation |
124 | until the next call to | 129 | until the next call to |
125 | .Fn initstate | 130 | .Fn initstate |
@@ -143,12 +148,8 @@ is that the size of the state array does not have to be remembered after | |||
143 | it is initialized. | 148 | it is initialized. |
144 | .Pp | 149 | .Pp |
145 | With 256 bytes of state information, the period of the random number | 150 | With 256 bytes of state information, the period of the random number |
146 | generator is greater than | 151 | generator is greater than 2**69 |
147 | .if t 2\u\s769\s10\d, | ||
148 | .if n 2**69 | ||
149 | which should be sufficient for most purposes. | 152 | which should be sufficient for most purposes. |
150 | .Sh AUTHOR | ||
151 | Earl T. Cohen | ||
152 | .Sh DIAGNOSTICS | 153 | .Sh DIAGNOSTICS |
153 | If | 154 | If |
154 | .Fn initstate | 155 | .Fn initstate |
@@ -157,11 +158,29 @@ is called with less than 8 bytes of state information, or if | |||
157 | detects that the state information has been garbled, error | 158 | detects that the state information has been garbled, error |
158 | messages are printed on the standard error output. | 159 | messages are printed on the standard error output. |
159 | .Sh SEE ALSO | 160 | .Sh SEE ALSO |
160 | .Xr rand 3 | 161 | .Xr arc4random 3 , |
162 | .Xr drand48 3 , | ||
163 | .Xr rand 3 , | ||
164 | .Xr random 4 | ||
165 | .Sh STANDARDS | ||
166 | The | ||
167 | .Fn random , | ||
168 | .Fn srandom , | ||
169 | .Fn initstate , | ||
170 | and | ||
171 | .Fn setstate | ||
172 | functions conform to | ||
173 | .St -xpg4.2 . | ||
174 | .Pp | ||
175 | The | ||
176 | .Fn srandomdev | ||
177 | function is an extension. | ||
161 | .Sh HISTORY | 178 | .Sh HISTORY |
162 | These | 179 | These |
163 | functions appeared in | 180 | functions appeared in |
164 | .Bx 4.2 . | 181 | .Bx 4.2 . |
182 | .Sh AUTHORS | ||
183 | .An Earl T. Cohen | ||
165 | .Sh BUGS | 184 | .Sh BUGS |
166 | About 2/3 the speed of | 185 | About 2/3 the speed of |
167 | .Xr rand 3 . | 186 | .Xr rand 3 . |
diff --git a/src/lib/libc/stdlib/random.c b/src/lib/libc/stdlib/random.c index 469b6d976a..4ca8735e75 100644 --- a/src/lib/libc/stdlib/random.c +++ b/src/lib/libc/stdlib/random.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,12 +28,16 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)random.c 5.9 (Berkeley) 2/23/91";*/ | 31 | static char *rcsid = "$OpenBSD: random.c,v 1.13 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: random.c,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
34 | #include <sys/param.h> | ||
35 | #include <sys/sysctl.h> | ||
36 | #include <sys/time.h> | ||
37 | #include <fcntl.h> | ||
39 | #include <stdio.h> | 38 | #include <stdio.h> |
40 | #include <stdlib.h> | 39 | #include <stdlib.h> |
40 | #include <unistd.h> | ||
41 | 41 | ||
42 | /* | 42 | /* |
43 | * random.c: | 43 | * random.c: |
@@ -55,10 +55,10 @@ static char *rcsid = "$Id: random.c,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $" | |||
55 | * congruential generator. If the amount of state information is less than | 55 | * congruential generator. If the amount of state information is less than |
56 | * 32 bytes, a simple linear congruential R.N.G. is used. | 56 | * 32 bytes, a simple linear congruential R.N.G. is used. |
57 | * | 57 | * |
58 | * Internally, the state information is treated as an array of longs; the | 58 | * Internally, the state information is treated as an array of int32_t; the |
59 | * zeroeth element of the array is the type of R.N.G. being used (small | 59 | * zeroeth element of the array is the type of R.N.G. being used (small |
60 | * integer); the remainder of the array is the state information for the | 60 | * integer); the remainder of the array is the state information for the |
61 | * R.N.G. Thus, 32 bytes of state information will give 7 longs worth of | 61 | * R.N.G. Thus, 32 bytes of state information will give 7 int32_ts worth of |
62 | * state information, which will allow a degree seven polynomial. (Note: | 62 | * state information, which will allow a degree seven polynomial. (Note: |
63 | * the zeroeth word of state information also has some other information | 63 | * the zeroeth word of state information also has some other information |
64 | * stored in it -- see setstate() for details). | 64 | * stored in it -- see setstate() for details). |
@@ -134,14 +134,14 @@ static int seps [MAX_TYPES] = { SEP_0, SEP_1, SEP_2, SEP_3, SEP_4 }; | |||
134 | * MAX_TYPES * (rptr - state) + TYPE_3 == TYPE_3. | 134 | * MAX_TYPES * (rptr - state) + TYPE_3 == TYPE_3. |
135 | */ | 135 | */ |
136 | 136 | ||
137 | static long randtbl[DEG_3 + 1] = { | 137 | static int32_t randtbl[DEG_3 + 1] = { |
138 | TYPE_3, | 138 | TYPE_3, |
139 | 0x9a319039, 0x32d9c024, 0x9b663182, 0x5da1f342, 0xde3b81e0, 0xdf0a6fb5, | 139 | 0x991539b1, 0x16a5bce3, 0x6774a4cd, 0x3e01511e, 0x4e508aaa, 0x61048c05, |
140 | 0xf103bc02, 0x48f340fb, 0x7449e56b, 0xbeb1dbb0, 0xab5c5918, 0x946554fd, | 140 | 0xf5500617, 0x846b7115, 0x6a19892c, 0x896a97af, 0xdb48f936, 0x14898454, |
141 | 0x8c2e680f, 0xeb3d799f, 0xb11ee0b7, 0x2d436b86, 0xda672e2a, 0x1588ca88, | 141 | 0x37ffd106, 0xb58bff9c, 0x59e17104, 0xcf918a49, 0x09378c83, 0x52c7a471, |
142 | 0xe369735d, 0x904f35f7, 0xd7158fd6, 0x6fa6f051, 0x616e6b96, 0xac94efdc, | 142 | 0x8d293ea9, 0x1f4fc301, 0xc3db71be, 0x39b44e1c, 0xf8a44ef9, 0x4c8b80b1, |
143 | 0x36413f93, 0xc622c298, 0xf5a42ab8, 0x8a88d77b, 0xf5ad9d0e, 0x8999220b, | 143 | 0x19edc328, 0x87bf4bdd, 0xc9b240e5, 0xe9ee4b1b, 0x4382aee7, 0x535b6b41, |
144 | 0x27fb47b9, | 144 | 0xf3bec5da, |
145 | }; | 145 | }; |
146 | 146 | ||
147 | /* | 147 | /* |
@@ -158,8 +158,8 @@ static long randtbl[DEG_3 + 1] = { | |||
158 | * in the initialization of randtbl) because the state table pointer is set | 158 | * in the initialization of randtbl) because the state table pointer is set |
159 | * to point to randtbl[1] (as explained below). | 159 | * to point to randtbl[1] (as explained below). |
160 | */ | 160 | */ |
161 | static long *fptr = &randtbl[SEP_3 + 1]; | 161 | static int32_t *fptr = &randtbl[SEP_3 + 1]; |
162 | static long *rptr = &randtbl[1]; | 162 | static int32_t *rptr = &randtbl[1]; |
163 | 163 | ||
164 | /* | 164 | /* |
165 | * The following things are the pointer to the state information table, the | 165 | * The following things are the pointer to the state information table, the |
@@ -171,11 +171,11 @@ static long *rptr = &randtbl[1]; | |||
171 | * this is more efficient than indexing every time to find the address of | 171 | * this is more efficient than indexing every time to find the address of |
172 | * the last element to see if the front and rear pointers have wrapped. | 172 | * the last element to see if the front and rear pointers have wrapped. |
173 | */ | 173 | */ |
174 | static long *state = &randtbl[1]; | 174 | static int32_t *state = &randtbl[1]; |
175 | static int32_t *end_ptr = &randtbl[DEG_3 + 1]; | ||
175 | static int rand_type = TYPE_3; | 176 | static int rand_type = TYPE_3; |
176 | static int rand_deg = DEG_3; | 177 | static int rand_deg = DEG_3; |
177 | static int rand_sep = SEP_3; | 178 | static int rand_sep = SEP_3; |
178 | static long *end_ptr = &randtbl[DEG_3 + 1]; | ||
179 | 179 | ||
180 | /* | 180 | /* |
181 | * srandom: | 181 | * srandom: |
@@ -190,18 +190,28 @@ static long *end_ptr = &randtbl[DEG_3 + 1]; | |||
190 | * for default usage relies on values produced by this routine. | 190 | * for default usage relies on values produced by this routine. |
191 | */ | 191 | */ |
192 | void | 192 | void |
193 | srandom(x) | 193 | srandom(unsigned int x) |
194 | u_int x; | ||
195 | { | 194 | { |
196 | register int i, j; | 195 | int i; |
196 | int32_t test; | ||
197 | div_t val; | ||
197 | 198 | ||
198 | if (rand_type == TYPE_0) | 199 | if (rand_type == TYPE_0) |
199 | state[0] = x; | 200 | state[0] = x; |
200 | else { | 201 | else { |
201 | j = 1; | ||
202 | state[0] = x; | 202 | state[0] = x; |
203 | for (i = 1; i < rand_deg; i++) | 203 | for (i = 1; i < rand_deg; i++) { |
204 | state[i] = 1103515245 * state[i - 1] + 12345; | 204 | /* |
205 | * Implement the following, without overflowing 31 bits: | ||
206 | * | ||
207 | * state[i] = (16807 * state[i - 1]) % 2147483647; | ||
208 | * | ||
209 | * 2^31-1 (prime) = 2147483647 = 127773*16807+2836 | ||
210 | */ | ||
211 | val = div(state[i-1], 127773); | ||
212 | test = 16807 * val.rem - 2836 * val.quot; | ||
213 | state[i] = test + (test < 0 ? 2147483647 : 0); | ||
214 | } | ||
205 | fptr = &state[rand_sep]; | 215 | fptr = &state[rand_sep]; |
206 | rptr = &state[0]; | 216 | rptr = &state[0]; |
207 | for (i = 0; i < 10 * rand_deg; i++) | 217 | for (i = 0; i < 10 * rand_deg; i++) |
@@ -210,6 +220,65 @@ srandom(x) | |||
210 | } | 220 | } |
211 | 221 | ||
212 | /* | 222 | /* |
223 | * srandomdev: | ||
224 | * | ||
225 | * Many programs choose the seed value in a totally predictable manner. | ||
226 | * This often causes problems. We seed the generator using the much more | ||
227 | * secure arandom(4) interface. Note that this particular seeding | ||
228 | * procedure can generate states which are impossible to reproduce by | ||
229 | * calling srandom() with any value, since the succeeding terms in the | ||
230 | * state buffer are no longer derived from the LC algorithm applied to | ||
231 | * a fixed seed. | ||
232 | */ | ||
233 | void | ||
234 | srandomdev(void) | ||
235 | { | ||
236 | int fd, i, mib[2], n; | ||
237 | size_t len; | ||
238 | |||
239 | if (rand_type == TYPE_0) | ||
240 | len = sizeof(state[0]); | ||
241 | else | ||
242 | len = rand_deg * sizeof(state[0]); | ||
243 | |||
244 | /* | ||
245 | * To get seed data, first try reading from /dev/arandom. | ||
246 | * If that fails, try the KERN_ARND sysctl() (one int at a time). | ||
247 | * As a last resort, call srandom(). | ||
248 | */ | ||
249 | if ((fd = open("/dev/arandom", O_RDONLY, 0)) != -1 && | ||
250 | read(fd, (void *) state, len) == (ssize_t) len) { | ||
251 | close(fd); | ||
252 | } else { | ||
253 | if (fd != -1) | ||
254 | close(fd); | ||
255 | mib[0] = CTL_KERN; | ||
256 | mib[1] = KERN_ARND; | ||
257 | n = len / sizeof(int); | ||
258 | len = sizeof(int); | ||
259 | for (i = 0; i < n; i++) { | ||
260 | if (sysctl(mib, 2, (char *)((int *)state + i), &len, | ||
261 | NULL, 0) == -1) | ||
262 | break; | ||
263 | } | ||
264 | if (i != n) { | ||
265 | struct timeval tv; | ||
266 | u_int junk; | ||
267 | |||
268 | /* XXX - this could be better */ | ||
269 | gettimeofday(&tv, NULL); | ||
270 | srandom(getpid() ^ tv.tv_sec ^ tv.tv_usec ^ junk); | ||
271 | return; | ||
272 | } | ||
273 | } | ||
274 | |||
275 | if (rand_type != TYPE_0) { | ||
276 | fptr = &state[rand_sep]; | ||
277 | rptr = &state[0]; | ||
278 | } | ||
279 | } | ||
280 | |||
281 | /* | ||
213 | * initstate: | 282 | * initstate: |
214 | * | 283 | * |
215 | * Initialize the state information in the given array of n bytes for future | 284 | * Initialize the state information in the given array of n bytes for future |
@@ -229,22 +298,16 @@ srandom(x) | |||
229 | * Returns a pointer to the old state. | 298 | * Returns a pointer to the old state. |
230 | */ | 299 | */ |
231 | char * | 300 | char * |
232 | initstate(seed, arg_state, n) | 301 | initstate(u_int seed, char *arg_state, size_t n) |
233 | u_int seed; /* seed for R.N.G. */ | ||
234 | char *arg_state; /* pointer to state array */ | ||
235 | int n; /* # bytes of state info */ | ||
236 | { | 302 | { |
237 | register char *ostate = (char *)(&state[-1]); | 303 | char *ostate = (char *)(&state[-1]); |
238 | 304 | ||
239 | if (rand_type == TYPE_0) | 305 | if (rand_type == TYPE_0) |
240 | state[-1] = rand_type; | 306 | state[-1] = rand_type; |
241 | else | 307 | else |
242 | state[-1] = MAX_TYPES * (rptr - state) + rand_type; | 308 | state[-1] = MAX_TYPES * (rptr - state) + rand_type; |
243 | if (n < BREAK_0) { | 309 | if (n < BREAK_0) |
244 | (void)fprintf(stderr, | 310 | return(NULL); |
245 | "random: not enough state (%d bytes); ignored.\n", n); | ||
246 | return(0); | ||
247 | } | ||
248 | if (n < BREAK_1) { | 311 | if (n < BREAK_1) { |
249 | rand_type = TYPE_0; | 312 | rand_type = TYPE_0; |
250 | rand_deg = DEG_0; | 313 | rand_deg = DEG_0; |
@@ -266,7 +329,7 @@ initstate(seed, arg_state, n) | |||
266 | rand_deg = DEG_4; | 329 | rand_deg = DEG_4; |
267 | rand_sep = SEP_4; | 330 | rand_sep = SEP_4; |
268 | } | 331 | } |
269 | state = &(((long *)arg_state)[1]); /* first location */ | 332 | state = &(((int32_t *)arg_state)[1]); /* first location */ |
270 | end_ptr = &state[rand_deg]; /* must set end_ptr before srandom */ | 333 | end_ptr = &state[rand_deg]; /* must set end_ptr before srandom */ |
271 | srandom(seed); | 334 | srandom(seed); |
272 | if (rand_type == TYPE_0) | 335 | if (rand_type == TYPE_0) |
@@ -292,12 +355,11 @@ initstate(seed, arg_state, n) | |||
292 | * Returns a pointer to the old state information. | 355 | * Returns a pointer to the old state information. |
293 | */ | 356 | */ |
294 | char * | 357 | char * |
295 | setstate(arg_state) | 358 | setstate(const char *arg_state) |
296 | char *arg_state; | ||
297 | { | 359 | { |
298 | register long *new_state = (long *)arg_state; | 360 | int32_t *new_state = (int32_t *)arg_state; |
299 | register int type = new_state[0] % MAX_TYPES; | 361 | int32_t type = new_state[0] % MAX_TYPES; |
300 | register int rear = new_state[0] / MAX_TYPES; | 362 | int32_t rear = new_state[0] / MAX_TYPES; |
301 | char *ostate = (char *)(&state[-1]); | 363 | char *ostate = (char *)(&state[-1]); |
302 | 364 | ||
303 | if (rand_type == TYPE_0) | 365 | if (rand_type == TYPE_0) |
@@ -315,8 +377,7 @@ setstate(arg_state) | |||
315 | rand_sep = seps[type]; | 377 | rand_sep = seps[type]; |
316 | break; | 378 | break; |
317 | default: | 379 | default: |
318 | (void)fprintf(stderr, | 380 | return(NULL); |
319 | "random: state info corrupted; not changed.\n"); | ||
320 | } | 381 | } |
321 | state = &new_state[1]; | 382 | state = &new_state[1]; |
322 | if (rand_type != TYPE_0) { | 383 | if (rand_type != TYPE_0) { |
@@ -345,9 +406,9 @@ setstate(arg_state) | |||
345 | * Returns a 31-bit random number. | 406 | * Returns a 31-bit random number. |
346 | */ | 407 | */ |
347 | long | 408 | long |
348 | random() | 409 | random(void) |
349 | { | 410 | { |
350 | long i; | 411 | int32_t i; |
351 | 412 | ||
352 | if (rand_type == TYPE_0) | 413 | if (rand_type == TYPE_0) |
353 | i = state[0] = (state[0] * 1103515245 + 12345) & 0x7fffffff; | 414 | i = state[0] = (state[0] * 1103515245 + 12345) & 0x7fffffff; |
@@ -360,5 +421,5 @@ random() | |||
360 | } else if (++rptr >= end_ptr) | 421 | } else if (++rptr >= end_ptr) |
361 | rptr = state; | 422 | rptr = state; |
362 | } | 423 | } |
363 | return(i); | 424 | return((long)i); |
364 | } | 425 | } |
diff --git a/src/lib/libc/stdlib/realloc.3 b/src/lib/libc/stdlib/realloc.3 deleted file mode 100644 index 66f09b2081..0000000000 --- a/src/lib/libc/stdlib/realloc.3 +++ /dev/null | |||
@@ -1,100 +0,0 @@ | |||
1 | .\" Copyright (c) 1991 The Regents of the University of California. | ||
2 | .\" All rights reserved. | ||
3 | .\" | ||
4 | .\" Redistribution and use in source and binary forms, with or without | ||
5 | .\" modification, are permitted provided that the following conditions | ||
6 | .\" are met: | ||
7 | .\" 1. Redistributions of source code must retain the above copyright | ||
8 | .\" notice, this list of conditions and the following disclaimer. | ||
9 | .\" 2. Redistributions in binary form must reproduce the above copyright | ||
10 | .\" notice, this list of conditions and the following disclaimer in the | ||
11 | .\" documentation and/or other materials provided with the distribution. | ||
12 | .\" 3. All advertising materials mentioning features or use of this software | ||
13 | .\" must display the following acknowledgement: | ||
14 | .\" This product includes software developed by the University of | ||
15 | .\" California, Berkeley and its contributors. | ||
16 | .\" 4. 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 | .\" from: @(#)realloc.3 5.1 (Berkeley) 5/2/91 | ||
33 | .\" $Id: realloc.3,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $ | ||
34 | .\" | ||
35 | .Dd May 2, 1991 | ||
36 | .Dt REALLOC 3 | ||
37 | .Os | ||
38 | .Sh NAME | ||
39 | .Nm realloc | ||
40 | .Nd reallocation of memory function | ||
41 | .Sh SYNOPSIS | ||
42 | .Fd #include <stdlib.h> | ||
43 | .Ft void * | ||
44 | .Fn realloc "void *ptr" "size_t size" | ||
45 | .Sh DESCRIPTION | ||
46 | The | ||
47 | .Fn realloc | ||
48 | function changes the size of the object pointed to by | ||
49 | .Fa ptr | ||
50 | to the size specified by | ||
51 | .Fa size . | ||
52 | The contents of the object are unchanged up to the lesser | ||
53 | of the new and old sizes. | ||
54 | If the new size is larger, the value of the newly allocated portion | ||
55 | of the object is indeterminate. | ||
56 | If | ||
57 | .Fa ptr | ||
58 | is a null pointer, the | ||
59 | .Fn realloc | ||
60 | function behaves like the | ||
61 | .Xr malloc 3 | ||
62 | function for the specified size. | ||
63 | Otherwise, if | ||
64 | .Fa ptr | ||
65 | does not match a pointer earlier returned by the | ||
66 | .Xr calloc 3 , | ||
67 | .Xr malloc 3 , | ||
68 | or | ||
69 | .Fn realloc | ||
70 | function, or if the space has been deallocated | ||
71 | by a call to the | ||
72 | .Xr free | ||
73 | or | ||
74 | .Fn realloc | ||
75 | function, unpredictable and usually detrimental | ||
76 | behavior will occur. | ||
77 | If the space cannot be allocated, the object | ||
78 | pointed to by | ||
79 | .Fa ptr | ||
80 | is unchanged. | ||
81 | If | ||
82 | .Fa size | ||
83 | is zero and | ||
84 | .Fa ptr | ||
85 | is not a null pointer, the object it points to is freed. | ||
86 | .Pp | ||
87 | The | ||
88 | .Fn realloc | ||
89 | function returns either a null pointer or a pointer | ||
90 | to the possibly moved allocated space. | ||
91 | .Sh SEE ALSO | ||
92 | .Xr alloca 3 , | ||
93 | .Xr calloc 3 , | ||
94 | .Xr free 3 , | ||
95 | .Xr malloc 3 , | ||
96 | .Sh STANDARDS | ||
97 | The | ||
98 | .Fn realloc | ||
99 | function conforms to | ||
100 | .St -ansiC . | ||
diff --git a/src/lib/libc/stdlib/realpath.3 b/src/lib/libc/stdlib/realpath.3 index 9d8b1ff2ce..e1e0b10605 100644 --- a/src/lib/libc/stdlib/realpath.3 +++ b/src/lib/libc/stdlib/realpath.3 | |||
@@ -12,11 +12,7 @@ | |||
12 | .\" 2. Redistributions in binary form must reproduce the above copyright | 12 | .\" 2. Redistributions in binary form must reproduce the above copyright |
13 | .\" notice, this list of conditions and the following disclaimer in the | 13 | .\" notice, this list of conditions and the following disclaimer in the |
14 | .\" documentation and/or other materials provided with the distribution. | 14 | .\" documentation and/or other materials provided with the distribution. |
15 | .\" 3. All advertising materials mentioning features or use of this software | 15 | .\" 3. Neither the name of the University nor the names of its contributors |
16 | .\" must display the following acknowledgement: | ||
17 | .\" This product includes software developed by the University of | ||
18 | .\" California, Berkeley and its contributors. | ||
19 | .\" 4. Neither the name of the University nor the names of its contributors | ||
20 | .\" may be used to endorse or promote products derived from this software | 16 | .\" may be used to endorse or promote products derived from this software |
21 | .\" without specific prior written permission. | 17 | .\" without specific prior written permission. |
22 | .\" | 18 | .\" |
@@ -32,10 +28,9 @@ | |||
32 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 28 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
33 | .\" SUCH DAMAGE. | 29 | .\" SUCH DAMAGE. |
34 | .\" | 30 | .\" |
35 | .\" from: @(#)realpath.3 8.2 (Berkeley) 2/16/94 | 31 | .\" $OpenBSD: realpath.3,v 1.13 2005/04/03 18:59:15 otto Exp $ |
36 | .\" $Id: realpath.3,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $ | ||
37 | .\" | 32 | .\" |
38 | .Dd "February 16, 1994" | 33 | .Dd February 16, 1994 |
39 | .Dt REALPATH 3 | 34 | .Dt REALPATH 3 |
40 | .Os | 35 | .Os |
41 | .Sh NAME | 36 | .Sh NAME |
@@ -45,7 +40,7 @@ | |||
45 | .Fd #include <sys/param.h> | 40 | .Fd #include <sys/param.h> |
46 | .Fd #include <stdlib.h> | 41 | .Fd #include <stdlib.h> |
47 | .Ft "char *" | 42 | .Ft "char *" |
48 | .Fn realpath "const char *pathname" "char resolvedname[MAXPATHLEN]" | 43 | .Fn realpath "const char *pathname" "char resolved[PATH_MAX]" |
49 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION |
50 | The | 45 | The |
51 | .Fn realpath | 46 | .Fn realpath |
@@ -57,18 +52,17 @@ and | |||
57 | .Pa /../ | 52 | .Pa /../ |
58 | in | 53 | in |
59 | .Fa pathname , | 54 | .Fa pathname , |
60 | and copies the resulting absolute pathname into | 55 | and copies the resulting absolute pathname into the memory referenced by |
61 | the memory referenced by | 56 | .Fa resolved . |
62 | .Fa resolvedname . | ||
63 | The | 57 | The |
64 | .Fa resolvedname | 58 | .Fa resolved |
65 | argument | 59 | argument |
66 | .Em must | 60 | .Em must |
67 | refer to a buffer capable of storing at least | 61 | refer to a buffer capable of storing at least |
68 | .Dv MAXPATHLEN | 62 | .Dv PATH_MAX |
69 | characters. | 63 | characters. |
70 | .Pp | 64 | .Pp |
71 | The | 65 | The |
72 | .Fn realpath | 66 | .Fn realpath |
73 | function will resolve both absolute and relative paths | 67 | function will resolve both absolute and relative paths |
74 | and return the absolute pathname corresponding to | 68 | and return the absolute pathname corresponding to |
@@ -78,33 +72,37 @@ All but the last component of | |||
78 | must exist when | 72 | must exist when |
79 | .Fn realpath | 73 | .Fn realpath |
80 | is called. | 74 | is called. |
81 | .Sh "RETURN VALUES" | 75 | .Sh RETURN VALUES |
82 | The | 76 | The |
83 | .Fn realpath | 77 | .Fn realpath |
84 | function returns | 78 | function returns |
85 | .Fa resolved_name | 79 | .Fa resolved |
86 | on success. | 80 | on success. |
87 | If an error occurs, | 81 | If an error occurs, |
88 | .Fn realpath | 82 | .Fn realpath |
89 | returns | 83 | returns |
90 | .Dv NULL , | 84 | .Dv NULL |
91 | and | 85 | and the contents of |
92 | .Fa resolved_name | 86 | .Fa resolved |
93 | contains the pathname which caused the problem. | 87 | are undefined. |
94 | .Sh ERRORS | 88 | .Sh ERRORS |
95 | The function | 89 | The function |
96 | .Fn realpath | 90 | .Fn realpath |
97 | may fail and set the external variable | 91 | may fail and set the external variable |
98 | .Va errno | 92 | .Va errno |
99 | for any of the errors specified for the library functions | 93 | for any of the errors specified for the library functions |
100 | .Xr chdir 2 , | ||
101 | .Xr close 2 , | ||
102 | .Xr fchdir 2 , | ||
103 | .Xr lstat 2 , | 94 | .Xr lstat 2 , |
104 | .Xr open 2 , | 95 | .Xr readlink 2 , |
105 | .Xr readlink 2 | ||
106 | and | 96 | and |
107 | .Xr getcwd 3 . | 97 | .Xr getcwd 3 . |
98 | .Sh SEE ALSO | ||
99 | .Xr readlink 1 , | ||
100 | .Xr getcwd 3 | ||
101 | .Sh HISTORY | ||
102 | The | ||
103 | .Fn realpath | ||
104 | function call first appeared in | ||
105 | .Bx 4.4 . | ||
108 | .Sh CAVEATS | 106 | .Sh CAVEATS |
109 | This implementation of | 107 | This implementation of |
110 | .Fn realpath | 108 | .Fn realpath |
@@ -114,13 +112,6 @@ The | |||
114 | version always returns absolute pathnames, | 112 | version always returns absolute pathnames, |
115 | whereas the Solaris implementation will, | 113 | whereas the Solaris implementation will, |
116 | under certain circumstances, return a relative | 114 | under certain circumstances, return a relative |
117 | .Fa resolved_path | 115 | .Fa resolved |
118 | when given a relative | 116 | when given a relative |
119 | .Fa pathname . | 117 | .Fa pathname . |
120 | .Sh "SEE ALSO" | ||
121 | .Xr getcwd 3 | ||
122 | .Sh HISTORY | ||
123 | The | ||
124 | .Fn realpath | ||
125 | function call first appeared in | ||
126 | .Bx 4.4 . | ||
diff --git a/src/lib/libc/stdlib/realpath.c b/src/lib/libc/stdlib/realpath.c index e349b7e068..62e06b00be 100644 --- a/src/lib/libc/stdlib/realpath.c +++ b/src/lib/libc/stdlib/realpath.c | |||
@@ -1,9 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) 1994 | 2 | * Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> |
3 | * The Regents of the University of California. All rights reserved. | ||
4 | * | ||
5 | * This code is derived from software contributed to Berkeley by | ||
6 | * Jan-Simon Pendry. | ||
7 | * | 3 | * |
8 | * Redistribution and use in source and binary forms, with or without | 4 | * Redistribution and use in source and binary forms, with or without |
9 | * modification, are permitted provided that the following conditions | 5 | * modification, are permitted provided that the following conditions |
@@ -13,18 +9,14 @@ | |||
13 | * 2. Redistributions in binary form must reproduce the above copyright | 9 | * 2. Redistributions in binary form must reproduce the above copyright |
14 | * notice, this list of conditions and the following disclaimer in the | 10 | * notice, this list of conditions and the following disclaimer in the |
15 | * documentation and/or other materials provided with the distribution. | 11 | * documentation and/or other materials provided with the distribution. |
16 | * 3. All advertising materials mentioning features or use of this software | 12 | * 3. The names of the authors may not be used to endorse or promote |
17 | * must display the following acknowledgement: | 13 | * products derived from this software without specific prior written |
18 | * This product includes software developed by the University of | 14 | * permission. |
19 | * California, Berkeley and its contributors. | ||
20 | * 4. Neither the name of the University nor the names of its contributors | ||
21 | * may be used to endorse or promote products derived from this software | ||
22 | * without specific prior written permission. | ||
23 | * | 15 | * |
24 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
25 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 17 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
27 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 20 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 21 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
30 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 22 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
@@ -34,126 +26,173 @@ | |||
34 | * SUCH DAMAGE. | 26 | * SUCH DAMAGE. |
35 | */ | 27 | */ |
36 | 28 | ||
29 | #if 0 | ||
30 | #include <sys/cdefs.h> | ||
31 | __FBSDID("$FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/lib/libc/stdlib/realpath.c,v 1.9.2.1 2003/05/22 17:11:44 fjoe Exp $"); | ||
32 | #endif | ||
33 | |||
37 | #if defined(LIBC_SCCS) && !defined(lint) | 34 | #if defined(LIBC_SCCS) && !defined(lint) |
38 | /*static char sccsid[] = "from: @(#)realpath.c 8.1 (Berkeley) 2/16/94";*/ | 35 | static char *rcsid = "$OpenBSD: realpath.c,v 1.12 2005/03/29 19:34:14 brad Exp $"; |
39 | static char *rcsid = "$Id: realpath.c,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $"; | ||
40 | #endif /* LIBC_SCCS and not lint */ | 36 | #endif /* LIBC_SCCS and not lint */ |
41 | 37 | ||
42 | #include <sys/param.h> | 38 | #include <sys/param.h> |
43 | #include <sys/stat.h> | 39 | #include <sys/stat.h> |
44 | 40 | ||
45 | #include <errno.h> | 41 | #include <errno.h> |
46 | #include <fcntl.h> | ||
47 | #include <stdlib.h> | 42 | #include <stdlib.h> |
48 | #include <string.h> | 43 | #include <string.h> |
49 | #include <unistd.h> | 44 | #include <unistd.h> |
50 | 45 | ||
51 | /* | 46 | /* |
52 | * char *realpath(const char *path, char resolved_path[MAXPATHLEN]); | 47 | * char *realpath(const char *path, char resolved[PATH_MAX]); |
53 | * | 48 | * |
54 | * Find the real name of path, by removing all ".", ".." and symlink | 49 | * Find the real name of path, by removing all ".", ".." and symlink |
55 | * components. Returns (resolved) on success, or (NULL) on failure, | 50 | * components. Returns (resolved) on success, or (NULL) on failure, |
56 | * in which case the path which caused trouble is left in (resolved). | 51 | * in which case the path which caused trouble is left in (resolved). |
57 | */ | 52 | */ |
58 | char * | 53 | char * |
59 | realpath(path, resolved) | 54 | realpath(const char *path, char resolved[PATH_MAX]) |
60 | const char *path; | ||
61 | char *resolved; | ||
62 | { | 55 | { |
63 | struct stat sb; | 56 | struct stat sb; |
64 | int fd, n, rootd, serrno; | 57 | char *p, *q, *s; |
65 | char *p, *q, wbuf[MAXPATHLEN]; | 58 | size_t left_len, resolved_len; |
59 | unsigned symlinks; | ||
60 | int serrno, slen; | ||
61 | char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; | ||
66 | 62 | ||
67 | /* Save the starting point. */ | 63 | serrno = errno; |
68 | if ((fd = open(".", O_RDONLY)) < 0) { | 64 | symlinks = 0; |
69 | (void)strcpy(resolved, "."); | 65 | if (path[0] == '/') { |
66 | resolved[0] = '/'; | ||
67 | resolved[1] = '\0'; | ||
68 | if (path[1] == '\0') | ||
69 | return (resolved); | ||
70 | resolved_len = 1; | ||
71 | left_len = strlcpy(left, path + 1, sizeof(left)); | ||
72 | } else { | ||
73 | if (getcwd(resolved, PATH_MAX) == NULL) { | ||
74 | strlcpy(resolved, ".", PATH_MAX); | ||
75 | return (NULL); | ||
76 | } | ||
77 | resolved_len = strlen(resolved); | ||
78 | left_len = strlcpy(left, path, sizeof(left)); | ||
79 | } | ||
80 | if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) { | ||
81 | errno = ENAMETOOLONG; | ||
70 | return (NULL); | 82 | return (NULL); |
71 | } | 83 | } |
72 | 84 | ||
73 | /* | 85 | /* |
74 | * Find the dirname and basename from the path to be resolved. | 86 | * Iterate over path components in `left'. |
75 | * Change directory to the dirname component. | ||
76 | * lstat the basename part. | ||
77 | * if it is a symlink, read in the value and loop. | ||
78 | * if it is a directory, then change to that directory. | ||
79 | * get the current directory name and append the basename. | ||
80 | */ | 87 | */ |
81 | (void)strncpy(resolved, path, MAXPATHLEN - 1); | 88 | while (left_len != 0) { |
82 | resolved[MAXPATHLEN - 1] = '\0'; | 89 | /* |
83 | loop: | 90 | * Extract the next path component and adjust `left' |
84 | q = strrchr(resolved, '/'); | 91 | * and its length. |
85 | if (q != NULL) { | 92 | */ |
86 | p = q + 1; | 93 | p = strchr(left, '/'); |
87 | if (q == resolved) | 94 | s = p ? p : left + left_len; |
88 | q = "/"; | 95 | if (s - left >= sizeof(next_token)) { |
89 | else { | 96 | errno = ENAMETOOLONG; |
90 | do { | 97 | return (NULL); |
91 | --q; | ||
92 | } while (q > resolved && *q == '/'); | ||
93 | q[1] = '\0'; | ||
94 | q = resolved; | ||
95 | } | 98 | } |
96 | if (chdir(q) < 0) | 99 | memcpy(next_token, left, s - left); |
97 | goto err1; | 100 | next_token[s - left] = '\0'; |
98 | } else | 101 | left_len -= s - left; |
99 | p = resolved; | 102 | if (p != NULL) |
100 | 103 | memmove(left, s + 1, left_len + 1); | |
101 | /* Deal with the last component. */ | 104 | if (resolved[resolved_len - 1] != '/') { |
102 | if (lstat(p, &sb) == 0) { | 105 | if (resolved_len + 1 >= PATH_MAX) { |
103 | if (S_ISLNK(sb.st_mode)) { | 106 | errno = ENAMETOOLONG; |
104 | n = readlink(p, resolved, MAXPATHLEN); | 107 | return (NULL); |
105 | if (n < 0) | 108 | } |
106 | goto err1; | 109 | resolved[resolved_len++] = '/'; |
107 | resolved[n] = '\0'; | 110 | resolved[resolved_len] = '\0'; |
108 | goto loop; | ||
109 | } | 111 | } |
110 | if (S_ISDIR(sb.st_mode)) { | 112 | if (next_token[0] == '\0') |
111 | if (chdir(p) < 0) | 113 | continue; |
112 | goto err1; | 114 | else if (strcmp(next_token, ".") == 0) |
113 | p = ""; | 115 | continue; |
116 | else if (strcmp(next_token, "..") == 0) { | ||
117 | /* | ||
118 | * Strip the last path component except when we have | ||
119 | * single "/" | ||
120 | */ | ||
121 | if (resolved_len > 1) { | ||
122 | resolved[resolved_len - 1] = '\0'; | ||
123 | q = strrchr(resolved, '/') + 1; | ||
124 | *q = '\0'; | ||
125 | resolved_len = q - resolved; | ||
126 | } | ||
127 | continue; | ||
114 | } | 128 | } |
115 | } | ||
116 | |||
117 | /* | ||
118 | * Save the last component name and get the full pathname of | ||
119 | * the current directory. | ||
120 | */ | ||
121 | (void)strcpy(wbuf, p); | ||
122 | if (getcwd(resolved, MAXPATHLEN) == 0) | ||
123 | goto err1; | ||
124 | 129 | ||
125 | /* | 130 | /* |
126 | * Join the two strings together, ensuring that the right thing | 131 | * Append the next path component and lstat() it. If |
127 | * happens if the last component is empty, or the dirname is root. | 132 | * lstat() fails we still can return successfully if |
128 | */ | 133 | * there are no more path components left. |
129 | if (resolved[0] == '/' && resolved[1] == '\0') | 134 | */ |
130 | rootd = 1; | 135 | resolved_len = strlcat(resolved, next_token, PATH_MAX); |
131 | else | 136 | if (resolved_len >= PATH_MAX) { |
132 | rootd = 0; | ||
133 | |||
134 | if (*wbuf) { | ||
135 | if (strlen(resolved) + strlen(wbuf) + rootd + 1 > MAXPATHLEN) { | ||
136 | errno = ENAMETOOLONG; | 137 | errno = ENAMETOOLONG; |
137 | goto err1; | 138 | return (NULL); |
138 | } | 139 | } |
139 | if (rootd == 0) | 140 | if (lstat(resolved, &sb) != 0) { |
140 | (void)strcat(resolved, "/"); | 141 | if (errno == ENOENT && p == NULL) { |
141 | (void)strcat(resolved, wbuf); | 142 | errno = serrno; |
142 | } | 143 | return (resolved); |
144 | } | ||
145 | return (NULL); | ||
146 | } | ||
147 | if (S_ISLNK(sb.st_mode)) { | ||
148 | if (symlinks++ > MAXSYMLINKS) { | ||
149 | errno = ELOOP; | ||
150 | return (NULL); | ||
151 | } | ||
152 | slen = readlink(resolved, symlink, sizeof(symlink) - 1); | ||
153 | if (slen < 0) | ||
154 | return (NULL); | ||
155 | symlink[slen] = '\0'; | ||
156 | if (symlink[0] == '/') { | ||
157 | resolved[1] = 0; | ||
158 | resolved_len = 1; | ||
159 | } else if (resolved_len > 1) { | ||
160 | /* Strip the last path component. */ | ||
161 | resolved[resolved_len - 1] = '\0'; | ||
162 | q = strrchr(resolved, '/') + 1; | ||
163 | *q = '\0'; | ||
164 | resolved_len = q - resolved; | ||
165 | } | ||
143 | 166 | ||
144 | /* Go back to where we came from. */ | 167 | /* |
145 | if (fchdir(fd) < 0) { | 168 | * If there are any path components left, then |
146 | serrno = errno; | 169 | * append them to symlink. The result is placed |
147 | goto err2; | 170 | * in `left'. |
171 | */ | ||
172 | if (p != NULL) { | ||
173 | if (symlink[slen - 1] != '/') { | ||
174 | if (slen + 1 >= sizeof(symlink)) { | ||
175 | errno = ENAMETOOLONG; | ||
176 | return (NULL); | ||
177 | } | ||
178 | symlink[slen] = '/'; | ||
179 | symlink[slen + 1] = 0; | ||
180 | } | ||
181 | left_len = strlcat(symlink, left, sizeof(left)); | ||
182 | if (left_len >= sizeof(left)) { | ||
183 | errno = ENAMETOOLONG; | ||
184 | return (NULL); | ||
185 | } | ||
186 | } | ||
187 | left_len = strlcpy(left, symlink, sizeof(left)); | ||
188 | } | ||
148 | } | 189 | } |
149 | 190 | ||
150 | /* It's okay if the close fails, what's an fd more or less? */ | 191 | /* |
151 | (void)close(fd); | 192 | * Remove trailing slash except when the resolved pathname |
193 | * is a single "/". | ||
194 | */ | ||
195 | if (resolved_len > 1 && resolved[resolved_len - 1] == '/') | ||
196 | resolved[resolved_len - 1] = '\0'; | ||
152 | return (resolved); | 197 | return (resolved); |
153 | |||
154 | err1: serrno = errno; | ||
155 | (void)fchdir(fd); | ||
156 | err2: (void)close(fd); | ||
157 | errno = serrno; | ||
158 | return (NULL); | ||
159 | } | 198 | } |
diff --git a/src/lib/libc/stdlib/remque.c b/src/lib/libc/stdlib/remque.c new file mode 100644 index 0000000000..f4c5769a8c --- /dev/null +++ b/src/lib/libc/stdlib/remque.c | |||
@@ -0,0 +1,48 @@ | |||
1 | /* $OpenBSD: remque.c,v 1.1 2003/05/08 23:26:30 millert Exp $ */ | ||
2 | |||
3 | /* | ||
4 | * Copyright (c) 1993 John Brezak | ||
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 | * 1. Redistributions of source code must retain the above copyright | ||
11 | * notice, this list of conditions and the following disclaimer. | ||
12 | * 2. Redistributions in binary form must reproduce the above copyright | ||
13 | * notice, this list of conditions and the following disclaimer in the | ||
14 | * documentation and/or other materials provided with the distribution. | ||
15 | * 3. The name of the author may be used to endorse or promote products | ||
16 | * derived from this software without specific prior written permission. | ||
17 | * | ||
18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR | ||
19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
20 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
21 | * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, | ||
22 | * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
23 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
24 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
25 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
26 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
27 | * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
28 | * POSSIBILITY OF SUCH DAMAGE. | ||
29 | */ | ||
30 | |||
31 | #if defined(LIBC_SCCS) && !defined(lint) | ||
32 | static char *rcsid = "$OpenBSD: remque.c,v 1.1 2003/05/08 23:26:30 millert Exp $"; | ||
33 | #endif /* LIBC_SCCS and not lint */ | ||
34 | |||
35 | #include <search.h> | ||
36 | |||
37 | struct qelem { | ||
38 | struct qelem *q_forw; | ||
39 | struct qelem *q_back; | ||
40 | }; | ||
41 | |||
42 | void | ||
43 | remque(void *element) | ||
44 | { | ||
45 | struct qelem *e = (struct qelem *) element; | ||
46 | e->q_forw->q_back = e->q_back; | ||
47 | e->q_back->q_forw = e->q_forw; | ||
48 | } | ||
diff --git a/src/lib/libc/stdlib/seed48.c b/src/lib/libc/stdlib/seed48.c index e3d31901dd..c4dcd0ead8 100644 --- a/src/lib/libc/stdlib/seed48.c +++ b/src/lib/libc/stdlib/seed48.c | |||
@@ -11,6 +11,10 @@ | |||
11 | * to anyone/anything when using this software. | 11 | * to anyone/anything when using this software. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: seed48.c,v 1.2 1996/08/19 08:33:48 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
14 | #include "rand48.h" | 18 | #include "rand48.h" |
15 | 19 | ||
16 | extern unsigned short __rand48_seed[3]; | 20 | extern unsigned short __rand48_seed[3]; |
diff --git a/src/lib/libc/stdlib/setenv.c b/src/lib/libc/stdlib/setenv.c index a36669888d..ce0d3f9699 100644 --- a/src/lib/libc/stdlib/setenv.c +++ b/src/lib/libc/stdlib/setenv.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,29 +28,27 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)setenv.c 5.6 (Berkeley) 6/4/91";*/ | 31 | static char *rcsid = "$OpenBSD: setenv.c,v 1.8 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: setenv.c,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <stdlib.h> | 34 | #include <stdlib.h> |
40 | #include <string.h> | 35 | #include <string.h> |
41 | 36 | ||
37 | char *__findenv(const char *name, int *offset); | ||
38 | |||
39 | extern char **environ; | ||
40 | |||
42 | /* | 41 | /* |
43 | * setenv -- | 42 | * setenv -- |
44 | * Set the value of the environmental variable "name" to be | 43 | * Set the value of the environmental variable "name" to be |
45 | * "value". If rewrite is set, replace any current value. | 44 | * "value". If rewrite is set, replace any current value. |
46 | */ | 45 | */ |
47 | int | 46 | int |
48 | setenv(name, value, rewrite) | 47 | setenv(const char *name, const char *value, int rewrite) |
49 | register const char *name; | ||
50 | register const char *value; | ||
51 | int rewrite; | ||
52 | { | 48 | { |
53 | extern char **environ; | 49 | static char **lastenv; /* last value of environ */ |
54 | static int alloced; /* if allocated space before */ | 50 | char *C; |
55 | register char *C; | ||
56 | int l_value, offset; | 51 | int l_value, offset; |
57 | char *__findenv(); | ||
58 | 52 | ||
59 | if (*value == '=') /* no `=' in value */ | 53 | if (*value == '=') /* no `=' in value */ |
60 | ++value; | 54 | ++value; |
@@ -63,39 +57,34 @@ setenv(name, value, rewrite) | |||
63 | if (!rewrite) | 57 | if (!rewrite) |
64 | return (0); | 58 | return (0); |
65 | if (strlen(C) >= l_value) { /* old larger; copy over */ | 59 | if (strlen(C) >= l_value) { /* old larger; copy over */ |
66 | while (*C++ = *value++); | 60 | while ((*C++ = *value++)) |
61 | ; | ||
67 | return (0); | 62 | return (0); |
68 | } | 63 | } |
69 | } else { /* create new slot */ | 64 | } else { /* create new slot */ |
70 | register int cnt; | 65 | size_t cnt; |
71 | register char **P; | 66 | char **P; |
72 | 67 | ||
73 | for (P = environ, cnt = 0; *P; ++P, ++cnt); | 68 | for (P = environ; *P != NULL; P++) |
74 | if (alloced) { /* just increase size */ | 69 | ; |
75 | environ = (char **)realloc((char *)environ, | 70 | cnt = P - environ; |
76 | (size_t)(sizeof(char *) * (cnt + 2))); | 71 | P = (char **)realloc(lastenv, sizeof(char *) * (cnt + 2)); |
77 | if (!environ) | 72 | if (!P) |
78 | return (-1); | 73 | return (-1); |
79 | } | 74 | if (lastenv != environ) |
80 | else { /* get new space */ | 75 | memcpy(P, environ, cnt * sizeof(char *)); |
81 | alloced = 1; /* copy old entries into it */ | 76 | lastenv = environ = P; |
82 | P = (char **)malloc((size_t)(sizeof(char *) * | ||
83 | (cnt + 2))); | ||
84 | if (!P) | ||
85 | return (-1); | ||
86 | bcopy(environ, P, cnt * sizeof(char *)); | ||
87 | environ = P; | ||
88 | } | ||
89 | environ[cnt + 1] = NULL; | ||
90 | offset = cnt; | 77 | offset = cnt; |
78 | environ[cnt + 1] = NULL; | ||
91 | } | 79 | } |
92 | for (C = (char *)name; *C && *C != '='; ++C); /* no `=' in name */ | 80 | for (C = (char *)name; *C && *C != '='; ++C) |
81 | ; /* no `=' in name */ | ||
93 | if (!(environ[offset] = /* name + `=' + value */ | 82 | if (!(environ[offset] = /* name + `=' + value */ |
94 | malloc((size_t)((int)(C - name) + l_value + 2)))) | 83 | malloc((size_t)((int)(C - name) + l_value + 2)))) |
95 | return (-1); | 84 | return (-1); |
96 | for (C = environ[offset]; (*C = *name++) && *C != '='; ++C) | 85 | for (C = environ[offset]; (*C = *name++) && *C != '='; ++C) |
97 | ; | 86 | ; |
98 | for (*C++ = '='; *C++ = *value++; ) | 87 | for (*C++ = '='; (*C++ = *value++); ) |
99 | ; | 88 | ; |
100 | return (0); | 89 | return (0); |
101 | } | 90 | } |
@@ -105,15 +94,12 @@ setenv(name, value, rewrite) | |||
105 | * Delete environmental variable "name". | 94 | * Delete environmental variable "name". |
106 | */ | 95 | */ |
107 | void | 96 | void |
108 | unsetenv(name) | 97 | unsetenv(const char *name) |
109 | const char *name; | ||
110 | { | 98 | { |
111 | extern char **environ; | 99 | char **P; |
112 | register char **P; | ||
113 | int offset; | 100 | int offset; |
114 | char *__findenv(); | ||
115 | 101 | ||
116 | while (__findenv(name, &offset)) /* if set multiple times */ | 102 | while (__findenv(name, &offset)) /* if set multiple times */ |
117 | for (P = &environ[offset];; ++P) | 103 | for (P = &environ[offset];; ++P) |
118 | if (!(*P = *(P + 1))) | 104 | if (!(*P = *(P + 1))) |
119 | break; | 105 | break; |
diff --git a/src/lib/libc/stdlib/srand48.c b/src/lib/libc/stdlib/srand48.c index daf733f93e..fcff8a172e 100644 --- a/src/lib/libc/stdlib/srand48.c +++ b/src/lib/libc/stdlib/srand48.c | |||
@@ -11,6 +11,10 @@ | |||
11 | * to anyone/anything when using this software. | 11 | * to anyone/anything when using this software. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: srand48.c,v 1.2 1996/08/19 08:33:49 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
14 | #include "rand48.h" | 18 | #include "rand48.h" |
15 | 19 | ||
16 | extern unsigned short __rand48_seed[3]; | 20 | extern unsigned short __rand48_seed[3]; |
diff --git a/src/lib/libc/stdlib/strtod.3 b/src/lib/libc/stdlib/strtod.3 index 0b7f973857..e25b0a5511 100644 --- a/src/lib/libc/stdlib/strtod.3 +++ b/src/lib/libc/stdlib/strtod.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,8 +29,7 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)strtod.3 5.3 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: strtod.3,v 1.8 2003/06/02 20:18:38 millert Exp $ |
37 | .\" $Id: strtod.3,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
40 | .Dt STRTOD 3 | 35 | .Dt STRTOD 3 |
@@ -51,20 +46,25 @@ string to double | |||
51 | .Sh DESCRIPTION | 46 | .Sh DESCRIPTION |
52 | The | 47 | The |
53 | .Fn strtod | 48 | .Fn strtod |
54 | function converts the initial portion of the string | 49 | function converts the initial portion of the string pointed to by |
55 | pointed to by | ||
56 | .Fa nptr | 50 | .Fa nptr |
57 | to | 51 | to |
58 | .Em double | 52 | .Li double |
59 | representation. | 53 | representation. |
60 | .Pp | 54 | .Pp |
61 | The expected form of the string is an optional plus (``+'') or minus | 55 | The expected form of the string is an optional plus |
62 | sign (``-'') followed by a sequence of digits optionally containing | 56 | .Pq Ql + |
57 | or minus sign | ||
58 | .Pq Ql - | ||
59 | followed by a sequence of digits optionally containing | ||
63 | a decimal-point character, optionally followed by an exponent. | 60 | a decimal-point character, optionally followed by an exponent. |
64 | An exponent consists of an ``E'' or ``e'', followed by an optional plus | 61 | An exponent consists of an |
65 | or minus sign, followed by a sequence of digits. | 62 | .Sq E |
63 | or | ||
64 | .Sq e , | ||
65 | followed by an optional plus or minus sign, followed by a sequence of digits. | ||
66 | .Pp | 66 | .Pp |
67 | Leading white-space characters in the string (as defined by the | 67 | Leading whitespace characters in the string (as defined by the |
68 | .Xr isspace 3 | 68 | .Xr isspace 3 |
69 | function) are skipped. | 69 | function) are skipped. |
70 | .Sh RETURN VALUES | 70 | .Sh RETURN VALUES |
@@ -88,18 +88,18 @@ is stored in the location referenced by | |||
88 | If the correct value would cause overflow, plus or minus | 88 | If the correct value would cause overflow, plus or minus |
89 | .Dv HUGE_VAL | 89 | .Dv HUGE_VAL |
90 | is returned (according to the sign of the value), and | 90 | is returned (according to the sign of the value), and |
91 | .Dv ERANGE | 91 | .Er ERANGE |
92 | is stored in | 92 | is stored in |
93 | .Va errno . | 93 | .Va errno . |
94 | If the correct value would cause underflow, zero is | 94 | If the correct value would cause underflow, zero is returned and |
95 | returned and | 95 | .Er ERANGE |
96 | .Dv ERANGE | 96 | is stored in |
97 | is stored in | ||
98 | .Va errno . | 97 | .Va errno . |
99 | .Sh ERRORS | 98 | .Sh ERRORS |
100 | .Bl -tag -width Er | 99 | .Bl -tag -width Er |
101 | .It Bq Er ERANGE | 100 | .It Bq Er ERANGE |
102 | Overflow or underflow occurred. | 101 | Overflow or underflow occurred. |
102 | .El | ||
103 | .Sh SEE ALSO | 103 | .Sh SEE ALSO |
104 | .Xr atof 3 , | 104 | .Xr atof 3 , |
105 | .Xr atoi 3 , | 105 | .Xr atoi 3 , |
@@ -109,6 +109,5 @@ Overflow or underflow occurred. | |||
109 | .Sh STANDARDS | 109 | .Sh STANDARDS |
110 | The | 110 | The |
111 | .Fn strtod | 111 | .Fn strtod |
112 | function | 112 | function conforms to |
113 | conforms to | ||
114 | .St -ansiC . | 113 | .St -ansiC . |
diff --git a/src/lib/libc/stdlib/strtod.c b/src/lib/libc/stdlib/strtod.c index b13fa128f5..94eca88659 100644 --- a/src/lib/libc/stdlib/strtod.c +++ b/src/lib/libc/stdlib/strtod.c | |||
@@ -79,7 +79,6 @@ | |||
79 | * #define Just_16 to store 16 bits per 32-bit Long when doing high-precision | 79 | * #define Just_16 to store 16 bits per 32-bit Long when doing high-precision |
80 | * integer arithmetic. Whether this speeds things up or slows things | 80 | * integer arithmetic. Whether this speeds things up or slows things |
81 | * down depends on the machine and the number being converted. | 81 | * down depends on the machine and the number being converted. |
82 | * #define KR_headers for old-style C function headers. | ||
83 | * #define Bad_float_h if your system lacks a float.h or if it does not | 82 | * #define Bad_float_h if your system lacks a float.h or if it does not |
84 | * define some or all of DBL_DIG, DBL_MAX_10_EXP, DBL_MAX_EXP, | 83 | * define some or all of DBL_DIG, DBL_MAX_10_EXP, DBL_MAX_EXP, |
85 | * FLT_RADIX, FLT_ROUNDS, and DBL_MAX. | 84 | * FLT_RADIX, FLT_ROUNDS, and DBL_MAX. |
@@ -90,12 +89,14 @@ | |||
90 | */ | 89 | */ |
91 | 90 | ||
92 | #if defined(LIBC_SCCS) && !defined(lint) | 91 | #if defined(LIBC_SCCS) && !defined(lint) |
93 | static char *rcsid = "$Id: strtod.c,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $"; | 92 | static char *rcsid = "$OpenBSD: strtod.c,v 1.20 2005/03/30 18:51:49 pat Exp $"; |
94 | #endif /* LIBC_SCCS and not lint */ | 93 | #endif /* LIBC_SCCS and not lint */ |
95 | 94 | ||
96 | #if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ | 95 | #if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ |
97 | defined(__mips__) || defined(__ns32k__) || defined(__alpha__) | 96 | defined(__mips__) || defined(__ns32k__) || defined(__alpha__) || \ |
98 | #include <machine/endian.h> | 97 | defined(__powerpc__) || defined(__m88k__) || defined(__hppa__) || \ |
98 | defined(__x86_64__) || (defined(__arm__) && defined(__VFP_FP__)) | ||
99 | #include <sys/types.h> | ||
99 | #if BYTE_ORDER == BIG_ENDIAN | 100 | #if BYTE_ORDER == BIG_ENDIAN |
100 | #define IEEE_BIG_ENDIAN | 101 | #define IEEE_BIG_ENDIAN |
101 | #else | 102 | #else |
@@ -103,7 +104,16 @@ static char *rcsid = "$Id: strtod.c,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $" | |||
103 | #endif | 104 | #endif |
104 | #endif | 105 | #endif |
105 | 106 | ||
106 | #ifdef vax | 107 | #if defined(__arm__) && !defined(__VFP_FP__) |
108 | /* | ||
109 | * Although the CPU is little endian the FP has different | ||
110 | * byte and word endianness. The byte order is still little endian | ||
111 | * but the word order is big endian. | ||
112 | */ | ||
113 | #define IEEE_BIG_ENDIAN | ||
114 | #endif | ||
115 | |||
116 | #ifdef __vax__ | ||
107 | #define VAX | 117 | #define VAX |
108 | #endif | 118 | #endif |
109 | 119 | ||
@@ -119,22 +129,13 @@ static char *rcsid = "$Id: strtod.c,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $" | |||
119 | #include "malloc.h" | 129 | #include "malloc.h" |
120 | #include "memory.h" | 130 | #include "memory.h" |
121 | #else | 131 | #else |
122 | #ifndef KR_headers | ||
123 | #include "stdlib.h" | 132 | #include "stdlib.h" |
124 | #include "string.h" | 133 | #include "string.h" |
125 | #include "locale.h" | 134 | #include "locale.h" |
126 | #else | ||
127 | #include "malloc.h" | ||
128 | #include "memory.h" | ||
129 | #endif | ||
130 | #endif | 135 | #endif |
131 | 136 | ||
132 | #ifdef MALLOC | 137 | #ifdef MALLOC |
133 | #ifdef KR_headers | ||
134 | extern char *MALLOC(); | ||
135 | #else | ||
136 | extern void *MALLOC(size_t); | 138 | extern void *MALLOC(size_t); |
137 | #endif | ||
138 | #else | 139 | #else |
139 | #define MALLOC malloc | 140 | #define MALLOC malloc |
140 | #endif | 141 | #endif |
@@ -143,7 +144,6 @@ extern void *MALLOC(size_t); | |||
143 | #include "errno.h" | 144 | #include "errno.h" |
144 | 145 | ||
145 | #ifdef Bad_float_h | 146 | #ifdef Bad_float_h |
146 | #undef __STDC__ | ||
147 | #ifdef IEEE_BIG_ENDIAN | 147 | #ifdef IEEE_BIG_ENDIAN |
148 | #define IEEE_ARITHMETIC | 148 | #define IEEE_ARITHMETIC |
149 | #endif | 149 | #endif |
@@ -193,12 +193,8 @@ extern "C" { | |||
193 | #endif | 193 | #endif |
194 | 194 | ||
195 | #ifndef CONST | 195 | #ifndef CONST |
196 | #ifdef KR_headers | ||
197 | #define CONST /* blank */ | ||
198 | #else | ||
199 | #define CONST const | 196 | #define CONST const |
200 | #endif | 197 | #endif |
201 | #endif | ||
202 | 198 | ||
203 | #ifdef Unsigned_Shifts | 199 | #ifdef Unsigned_Shifts |
204 | #define Sign_Extend(a,b) if (b < 0) a |= 0xffff0000; | 200 | #define Sign_Extend(a,b) if (b < 0) a |= 0xffff0000; |
@@ -212,19 +208,24 @@ Exactly one of IEEE_LITTLE_ENDIAN IEEE_BIG_ENDIAN, VAX, or | |||
212 | IBM should be defined. | 208 | IBM should be defined. |
213 | #endif | 209 | #endif |
214 | 210 | ||
211 | typedef union { | ||
212 | double d; | ||
213 | ULong ul[2]; | ||
214 | } _double; | ||
215 | #define value(x) ((x).d) | ||
215 | #ifdef IEEE_LITTLE_ENDIAN | 216 | #ifdef IEEE_LITTLE_ENDIAN |
216 | #define word0(x) ((ULong *)&x)[1] | 217 | #define word0(x) ((x).ul[1]) |
217 | #define word1(x) ((ULong *)&x)[0] | 218 | #define word1(x) ((x).ul[0]) |
218 | #else | 219 | #else |
219 | #define word0(x) ((ULong *)&x)[0] | 220 | #define word0(x) ((x).ul[0]) |
220 | #define word1(x) ((ULong *)&x)[1] | 221 | #define word1(x) ((x).ul[1]) |
221 | #endif | 222 | #endif |
222 | 223 | ||
223 | /* The following definition of Storeinc is appropriate for MIPS processors. | 224 | /* The following definition of Storeinc is appropriate for MIPS processors. |
224 | * An alternative that might be better on some machines is | 225 | * An alternative that might be better on some machines is |
225 | * #define Storeinc(a,b,c) (*a++ = b << 16 | c & 0xffff) | 226 | * #define Storeinc(a,b,c) (*a++ = b << 16 | c & 0xffff) |
226 | */ | 227 | */ |
227 | #if defined(IEEE_LITTLE_ENDIAN) + defined(VAX) | 228 | #if defined(IEEE_LITTLE_ENDIAN) + defined(VAX) + defined(__arm__) |
228 | #define Storeinc(a,b,c) (((unsigned short *)a)[1] = (unsigned short)b, \ | 229 | #define Storeinc(a,b,c) (((unsigned short *)a)[1] = (unsigned short)b, \ |
229 | ((unsigned short *)a)[0] = (unsigned short)c, a++) | 230 | ((unsigned short *)a)[0] = (unsigned short)c, a++) |
230 | #else | 231 | #else |
@@ -326,11 +327,7 @@ IBM should be defined. | |||
326 | #ifdef RND_PRODQUOT | 327 | #ifdef RND_PRODQUOT |
327 | #define rounded_product(a,b) a = rnd_prod(a, b) | 328 | #define rounded_product(a,b) a = rnd_prod(a, b) |
328 | #define rounded_quotient(a,b) a = rnd_quot(a, b) | 329 | #define rounded_quotient(a,b) a = rnd_quot(a, b) |
329 | #ifdef KR_headers | ||
330 | extern double rnd_prod(), rnd_quot(); | ||
331 | #else | ||
332 | extern double rnd_prod(double, double), rnd_quot(double, double); | 330 | extern double rnd_prod(double, double), rnd_quot(double, double); |
333 | #endif | ||
334 | #else | 331 | #else |
335 | #define rounded_product(a,b) a *= b | 332 | #define rounded_product(a,b) a *= b |
336 | #define rounded_quotient(a,b) a /= b | 333 | #define rounded_quotient(a,b) a /= b |
@@ -370,17 +367,12 @@ Bigint { | |||
370 | static Bigint *freelist[Kmax+1]; | 367 | static Bigint *freelist[Kmax+1]; |
371 | 368 | ||
372 | static Bigint * | 369 | static Bigint * |
373 | Balloc | 370 | Balloc(int k) |
374 | #ifdef KR_headers | ||
375 | (k) int k; | ||
376 | #else | ||
377 | (int k) | ||
378 | #endif | ||
379 | { | 371 | { |
380 | int x; | 372 | int x; |
381 | Bigint *rv; | 373 | Bigint *rv; |
382 | 374 | ||
383 | if (rv = freelist[k]) { | 375 | if ((rv = freelist[k])) { |
384 | freelist[k] = rv->next; | 376 | freelist[k] = rv->next; |
385 | } | 377 | } |
386 | else { | 378 | else { |
@@ -394,12 +386,7 @@ Balloc | |||
394 | } | 386 | } |
395 | 387 | ||
396 | static void | 388 | static void |
397 | Bfree | 389 | Bfree(Bigint *v) |
398 | #ifdef KR_headers | ||
399 | (v) Bigint *v; | ||
400 | #else | ||
401 | (Bigint *v) | ||
402 | #endif | ||
403 | { | 390 | { |
404 | if (v) { | 391 | if (v) { |
405 | v->next = freelist[v->k]; | 392 | v->next = freelist[v->k]; |
@@ -411,12 +398,7 @@ Bfree | |||
411 | y->wds*sizeof(Long) + 2*sizeof(int)) | 398 | y->wds*sizeof(Long) + 2*sizeof(int)) |
412 | 399 | ||
413 | static Bigint * | 400 | static Bigint * |
414 | multadd | 401 | multadd(Bigint *b, int m, int a) /* multiply by m and add a */ |
415 | #ifdef KR_headers | ||
416 | (b, m, a) Bigint *b; int m, a; | ||
417 | #else | ||
418 | (Bigint *b, int m, int a) /* multiply by m and add a */ | ||
419 | #endif | ||
420 | { | 402 | { |
421 | int i, wds; | 403 | int i, wds; |
422 | ULong *x, y; | 404 | ULong *x, y; |
@@ -456,12 +438,7 @@ multadd | |||
456 | } | 438 | } |
457 | 439 | ||
458 | static Bigint * | 440 | static Bigint * |
459 | s2b | 441 | s2b(CONST char *s, int nd0, int nd, ULong y9) |
460 | #ifdef KR_headers | ||
461 | (s, nd0, nd, y9) CONST char *s; int nd0, nd; ULong y9; | ||
462 | #else | ||
463 | (CONST char *s, int nd0, int nd, ULong y9) | ||
464 | #endif | ||
465 | { | 442 | { |
466 | Bigint *b; | 443 | Bigint *b; |
467 | int i, k; | 444 | int i, k; |
@@ -494,14 +471,9 @@ s2b | |||
494 | } | 471 | } |
495 | 472 | ||
496 | static int | 473 | static int |
497 | hi0bits | 474 | hi0bits(ULong x) |
498 | #ifdef KR_headers | ||
499 | (x) register ULong x; | ||
500 | #else | ||
501 | (register ULong x) | ||
502 | #endif | ||
503 | { | 475 | { |
504 | register int k = 0; | 476 | int k = 0; |
505 | 477 | ||
506 | if (!(x & 0xffff0000)) { | 478 | if (!(x & 0xffff0000)) { |
507 | k = 16; | 479 | k = 16; |
@@ -528,15 +500,10 @@ hi0bits | |||
528 | } | 500 | } |
529 | 501 | ||
530 | static int | 502 | static int |
531 | lo0bits | 503 | lo0bits(ULong *y) |
532 | #ifdef KR_headers | ||
533 | (y) ULong *y; | ||
534 | #else | ||
535 | (ULong *y) | ||
536 | #endif | ||
537 | { | 504 | { |
538 | register int k; | 505 | int k; |
539 | register ULong x = *y; | 506 | ULong x = *y; |
540 | 507 | ||
541 | if (x & 7) { | 508 | if (x & 7) { |
542 | if (x & 1) | 509 | if (x & 1) |
@@ -576,12 +543,7 @@ lo0bits | |||
576 | } | 543 | } |
577 | 544 | ||
578 | static Bigint * | 545 | static Bigint * |
579 | i2b | 546 | i2b(int i) |
580 | #ifdef KR_headers | ||
581 | (i) int i; | ||
582 | #else | ||
583 | (int i) | ||
584 | #endif | ||
585 | { | 547 | { |
586 | Bigint *b; | 548 | Bigint *b; |
587 | 549 | ||
@@ -592,12 +554,7 @@ i2b | |||
592 | } | 554 | } |
593 | 555 | ||
594 | static Bigint * | 556 | static Bigint * |
595 | mult | 557 | mult(Bigint *a, Bigint *b) |
596 | #ifdef KR_headers | ||
597 | (a, b) Bigint *a, *b; | ||
598 | #else | ||
599 | (Bigint *a, Bigint *b) | ||
600 | #endif | ||
601 | { | 558 | { |
602 | Bigint *c; | 559 | Bigint *c; |
603 | int k, wa, wb, wc; | 560 | int k, wa, wb, wc; |
@@ -628,7 +585,7 @@ mult | |||
628 | xc0 = c->x; | 585 | xc0 = c->x; |
629 | #ifdef Pack_32 | 586 | #ifdef Pack_32 |
630 | for(; xb < xbe; xb++, xc0++) { | 587 | for(; xb < xbe; xb++, xc0++) { |
631 | if (y = *xb & 0xffff) { | 588 | if ((y = *xb & 0xffff)) { |
632 | x = xa; | 589 | x = xa; |
633 | xc = xc0; | 590 | xc = xc0; |
634 | carry = 0; | 591 | carry = 0; |
@@ -642,7 +599,7 @@ mult | |||
642 | while(x < xae); | 599 | while(x < xae); |
643 | *xc = carry; | 600 | *xc = carry; |
644 | } | 601 | } |
645 | if (y = *xb >> 16) { | 602 | if ((y = *xb >> 16)) { |
646 | x = xa; | 603 | x = xa; |
647 | xc = xc0; | 604 | xc = xc0; |
648 | carry = 0; | 605 | carry = 0; |
@@ -682,18 +639,13 @@ mult | |||
682 | static Bigint *p5s; | 639 | static Bigint *p5s; |
683 | 640 | ||
684 | static Bigint * | 641 | static Bigint * |
685 | pow5mult | 642 | pow5mult(Bigint *b, int k) |
686 | #ifdef KR_headers | ||
687 | (b, k) Bigint *b; int k; | ||
688 | #else | ||
689 | (Bigint *b, int k) | ||
690 | #endif | ||
691 | { | 643 | { |
692 | Bigint *b1, *p5, *p51; | 644 | Bigint *b1, *p5, *p51; |
693 | int i; | 645 | int i; |
694 | static int p05[3] = { 5, 25, 125 }; | 646 | static int p05[3] = { 5, 25, 125 }; |
695 | 647 | ||
696 | if (i = k & 3) | 648 | if ((i = k & 3)) |
697 | b = multadd(b, p05[i-1], 0); | 649 | b = multadd(b, p05[i-1], 0); |
698 | 650 | ||
699 | if (!(k >>= 2)) | 651 | if (!(k >>= 2)) |
@@ -721,12 +673,7 @@ pow5mult | |||
721 | } | 673 | } |
722 | 674 | ||
723 | static Bigint * | 675 | static Bigint * |
724 | lshift | 676 | lshift(Bigint *b, int k) |
725 | #ifdef KR_headers | ||
726 | (b, k) Bigint *b; int k; | ||
727 | #else | ||
728 | (Bigint *b, int k) | ||
729 | #endif | ||
730 | { | 677 | { |
731 | int i, k1, n, n1; | 678 | int i, k1, n, n1; |
732 | Bigint *b1; | 679 | Bigint *b1; |
@@ -756,7 +703,7 @@ lshift | |||
756 | z = *x++ >> k1; | 703 | z = *x++ >> k1; |
757 | } | 704 | } |
758 | while(x < xe); | 705 | while(x < xe); |
759 | if (*x1 = z) | 706 | if ((*x1 = z)) |
760 | ++n1; | 707 | ++n1; |
761 | } | 708 | } |
762 | #else | 709 | #else |
@@ -781,12 +728,7 @@ lshift | |||
781 | } | 728 | } |
782 | 729 | ||
783 | static int | 730 | static int |
784 | cmp | 731 | cmp(Bigint *a, Bigint *b) |
785 | #ifdef KR_headers | ||
786 | (a, b) Bigint *a, *b; | ||
787 | #else | ||
788 | (Bigint *a, Bigint *b) | ||
789 | #endif | ||
790 | { | 732 | { |
791 | ULong *xa, *xa0, *xb, *xb0; | 733 | ULong *xa, *xa0, *xb, *xb0; |
792 | int i, j; | 734 | int i, j; |
@@ -815,12 +757,7 @@ cmp | |||
815 | } | 757 | } |
816 | 758 | ||
817 | static Bigint * | 759 | static Bigint * |
818 | diff | 760 | diff(Bigint *a, Bigint *b) |
819 | #ifdef KR_headers | ||
820 | (a, b) Bigint *a, *b; | ||
821 | #else | ||
822 | (Bigint *a, Bigint *b) | ||
823 | #endif | ||
824 | { | 761 | { |
825 | Bigint *c; | 762 | Bigint *c; |
826 | int i, wa, wb; | 763 | int i, wa, wb; |
@@ -897,16 +834,13 @@ diff | |||
897 | } | 834 | } |
898 | 835 | ||
899 | static double | 836 | static double |
900 | ulp | 837 | ulp(double _x) |
901 | #ifdef KR_headers | ||
902 | (x) double x; | ||
903 | #else | ||
904 | (double x) | ||
905 | #endif | ||
906 | { | 838 | { |
907 | register Long L; | 839 | _double x; |
908 | double a; | 840 | Long L; |
841 | _double a; | ||
909 | 842 | ||
843 | value(x) = _x; | ||
910 | L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1; | 844 | L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1; |
911 | #ifndef Sudden_Underflow | 845 | #ifndef Sudden_Underflow |
912 | if (L > 0) { | 846 | if (L > 0) { |
@@ -931,20 +865,15 @@ ulp | |||
931 | } | 865 | } |
932 | } | 866 | } |
933 | #endif | 867 | #endif |
934 | return a; | 868 | return value(a); |
935 | } | 869 | } |
936 | 870 | ||
937 | static double | 871 | static double |
938 | b2d | 872 | b2d(Bigint *a, int *e) |
939 | #ifdef KR_headers | ||
940 | (a, e) Bigint *a; int *e; | ||
941 | #else | ||
942 | (Bigint *a, int *e) | ||
943 | #endif | ||
944 | { | 873 | { |
945 | ULong *xa, *xa0, w, y, z; | 874 | ULong *xa, *xa0, w, y, z; |
946 | int k; | 875 | int k; |
947 | double d; | 876 | _double d; |
948 | #ifdef VAX | 877 | #ifdef VAX |
949 | ULong d0, d1; | 878 | ULong d0, d1; |
950 | #else | 879 | #else |
@@ -1001,22 +930,22 @@ b2d | |||
1001 | #undef d0 | 930 | #undef d0 |
1002 | #undef d1 | 931 | #undef d1 |
1003 | #endif | 932 | #endif |
1004 | return d; | 933 | return value(d); |
1005 | } | 934 | } |
1006 | 935 | ||
1007 | static Bigint * | 936 | static Bigint * |
1008 | d2b | 937 | d2b(double _d, int *e, int *bits) |
1009 | #ifdef KR_headers | ||
1010 | (d, e, bits) double d; int *e, *bits; | ||
1011 | #else | ||
1012 | (double d, int *e, int *bits) | ||
1013 | #endif | ||
1014 | { | 938 | { |
1015 | Bigint *b; | 939 | Bigint *b; |
1016 | int de, i, k; | 940 | int de, i, k; |
1017 | ULong *x, y, z; | 941 | ULong *x, y, z; |
942 | _double d; | ||
1018 | #ifdef VAX | 943 | #ifdef VAX |
1019 | ULong d0, d1; | 944 | ULong d0, d1; |
945 | #endif | ||
946 | |||
947 | value(d) = _d; | ||
948 | #ifdef VAX | ||
1020 | d0 = word0(d) >> 16 | word0(d) << 16; | 949 | d0 = word0(d) >> 16 | word0(d) << 16; |
1021 | d1 = word1(d) >> 16 | word1(d) << 16; | 950 | d1 = word1(d) >> 16 | word1(d) << 16; |
1022 | #else | 951 | #else |
@@ -1134,18 +1063,13 @@ d2b | |||
1134 | #undef d1 | 1063 | #undef d1 |
1135 | 1064 | ||
1136 | static double | 1065 | static double |
1137 | ratio | 1066 | ratio(Bigint *a, Bigint *b) |
1138 | #ifdef KR_headers | ||
1139 | (a, b) Bigint *a, *b; | ||
1140 | #else | ||
1141 | (Bigint *a, Bigint *b) | ||
1142 | #endif | ||
1143 | { | 1067 | { |
1144 | double da, db; | 1068 | _double da, db; |
1145 | int k, ka, kb; | 1069 | int k, ka, kb; |
1146 | 1070 | ||
1147 | da = b2d(a, &ka); | 1071 | value(da) = b2d(a, &ka); |
1148 | db = b2d(b, &kb); | 1072 | value(db) = b2d(b, &kb); |
1149 | #ifdef Pack_32 | 1073 | #ifdef Pack_32 |
1150 | k = ka - kb + 32*(a->wds - b->wds); | 1074 | k = ka - kb + 32*(a->wds - b->wds); |
1151 | #else | 1075 | #else |
@@ -1171,7 +1095,7 @@ ratio | |||
1171 | word0(db) += k*Exp_msk1; | 1095 | word0(db) += k*Exp_msk1; |
1172 | } | 1096 | } |
1173 | #endif | 1097 | #endif |
1174 | return da / db; | 1098 | return value(da) / value(db); |
1175 | } | 1099 | } |
1176 | 1100 | ||
1177 | static CONST double | 1101 | static CONST double |
@@ -1201,32 +1125,24 @@ static CONST double tinytens[] = { 1e-16, 1e-32 }; | |||
1201 | #endif | 1125 | #endif |
1202 | 1126 | ||
1203 | double | 1127 | double |
1204 | strtod | 1128 | strtod(CONST char *s00, char **se) |
1205 | #ifdef KR_headers | ||
1206 | (s00, se) CONST char *s00; char **se; | ||
1207 | #else | ||
1208 | (CONST char *s00, char **se) | ||
1209 | #endif | ||
1210 | { | 1129 | { |
1211 | int bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, dsign, | 1130 | int bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, dsign, |
1212 | e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign; | 1131 | e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign; |
1213 | CONST char *s, *s0, *s1; | 1132 | CONST char *s, *s0, *s1; |
1214 | double aadj, aadj1, adj, rv, rv0; | 1133 | double aadj, aadj1, adj; |
1134 | _double rv, rv0; | ||
1215 | Long L; | 1135 | Long L; |
1216 | ULong y, z; | 1136 | ULong y, z; |
1217 | Bigint *bb, *bb1, *bd, *bd0, *bs, *delta; | 1137 | Bigint *bb, *bb1, *bd, *bd0, *bs, *delta; |
1218 | 1138 | ||
1219 | #ifndef KR_headers | ||
1220 | CONST char decimal_point = localeconv()->decimal_point[0]; | 1139 | CONST char decimal_point = localeconv()->decimal_point[0]; |
1221 | #else | ||
1222 | CONST char decimal_point = '.'; | ||
1223 | #endif | ||
1224 | 1140 | ||
1225 | sign = nz0 = nz = 0; | 1141 | sign = nz0 = nz = 0; |
1226 | rv = 0.; | 1142 | value(rv) = 0.; |
1227 | 1143 | ||
1228 | 1144 | ||
1229 | for(s = s00; isspace(*s); s++) | 1145 | for(s = s00; isspace((unsigned char) *s); s++) |
1230 | ; | 1146 | ; |
1231 | 1147 | ||
1232 | if (*s == '-') { | 1148 | if (*s == '-') { |
@@ -1340,9 +1256,9 @@ strtod | |||
1340 | if (!nd0) | 1256 | if (!nd0) |
1341 | nd0 = nd; | 1257 | nd0 = nd; |
1342 | k = nd < DBL_DIG + 1 ? nd : DBL_DIG + 1; | 1258 | k = nd < DBL_DIG + 1 ? nd : DBL_DIG + 1; |
1343 | rv = y; | 1259 | value(rv) = y; |
1344 | if (k > 9) | 1260 | if (k > 9) |
1345 | rv = tens[k - 9] * rv + z; | 1261 | value(rv) = tens[k - 9] * value(rv) + z; |
1346 | bd0 = 0; | 1262 | bd0 = 0; |
1347 | if (nd <= DBL_DIG | 1263 | if (nd <= DBL_DIG |
1348 | #ifndef RND_PRODQUOT | 1264 | #ifndef RND_PRODQUOT |
@@ -1356,7 +1272,8 @@ strtod | |||
1356 | #ifdef VAX | 1272 | #ifdef VAX |
1357 | goto vax_ovfl_check; | 1273 | goto vax_ovfl_check; |
1358 | #else | 1274 | #else |
1359 | /* rv = */ rounded_product(rv, tens[e]); | 1275 | /* value(rv) = */ rounded_product(value(rv), |
1276 | tens[e]); | ||
1360 | goto ret; | 1277 | goto ret; |
1361 | #endif | 1278 | #endif |
1362 | } | 1279 | } |
@@ -1366,27 +1283,30 @@ strtod | |||
1366 | * this for larger i values. | 1283 | * this for larger i values. |
1367 | */ | 1284 | */ |
1368 | e -= i; | 1285 | e -= i; |
1369 | rv *= tens[i]; | 1286 | value(rv) *= tens[i]; |
1370 | #ifdef VAX | 1287 | #ifdef VAX |
1371 | /* VAX exponent range is so narrow we must | 1288 | /* VAX exponent range is so narrow we must |
1372 | * worry about overflow here... | 1289 | * worry about overflow here... |
1373 | */ | 1290 | */ |
1374 | vax_ovfl_check: | 1291 | vax_ovfl_check: |
1375 | word0(rv) -= P*Exp_msk1; | 1292 | word0(rv) -= P*Exp_msk1; |
1376 | /* rv = */ rounded_product(rv, tens[e]); | 1293 | /* value(rv) = */ rounded_product(value(rv), |
1294 | tens[e]); | ||
1377 | if ((word0(rv) & Exp_mask) | 1295 | if ((word0(rv) & Exp_mask) |
1378 | > Exp_msk1*(DBL_MAX_EXP+Bias-1-P)) | 1296 | > Exp_msk1*(DBL_MAX_EXP+Bias-1-P)) |
1379 | goto ovfl; | 1297 | goto ovfl; |
1380 | word0(rv) += P*Exp_msk1; | 1298 | word0(rv) += P*Exp_msk1; |
1381 | #else | 1299 | #else |
1382 | /* rv = */ rounded_product(rv, tens[e]); | 1300 | /* value(rv) = */ rounded_product(value(rv), |
1301 | tens[e]); | ||
1383 | #endif | 1302 | #endif |
1384 | goto ret; | 1303 | goto ret; |
1385 | } | 1304 | } |
1386 | } | 1305 | } |
1387 | #ifndef Inaccurate_Divide | 1306 | #ifndef Inaccurate_Divide |
1388 | else if (e >= -Ten_pmax) { | 1307 | else if (e >= -Ten_pmax) { |
1389 | /* rv = */ rounded_quotient(rv, tens[-e]); | 1308 | /* value(rv) = */ rounded_quotient(value(rv), |
1309 | tens[-e]); | ||
1390 | goto ret; | 1310 | goto ret; |
1391 | } | 1311 | } |
1392 | #endif | 1312 | #endif |
@@ -1397,13 +1317,13 @@ strtod | |||
1397 | 1317 | ||
1398 | if (e1 > 0) { | 1318 | if (e1 > 0) { |
1399 | if (i = e1 & 15) | 1319 | if (i = e1 & 15) |
1400 | rv *= tens[i]; | 1320 | value(rv) *= tens[i]; |
1401 | if (e1 &= ~15) { | 1321 | if (e1 &= ~15) { |
1402 | if (e1 > DBL_MAX_10_EXP) { | 1322 | if (e1 > DBL_MAX_10_EXP) { |
1403 | ovfl: | 1323 | ovfl: |
1404 | errno = ERANGE; | 1324 | errno = ERANGE; |
1405 | #ifdef __STDC__ | 1325 | #ifndef Bad_float_h |
1406 | rv = HUGE_VAL; | 1326 | value(rv) = HUGE_VAL; |
1407 | #else | 1327 | #else |
1408 | /* Can't trust HUGE_VAL */ | 1328 | /* Can't trust HUGE_VAL */ |
1409 | #ifdef IEEE_Arith | 1329 | #ifdef IEEE_Arith |
@@ -1421,10 +1341,10 @@ strtod | |||
1421 | if (e1 >>= 4) { | 1341 | if (e1 >>= 4) { |
1422 | for(j = 0; e1 > 1; j++, e1 >>= 1) | 1342 | for(j = 0; e1 > 1; j++, e1 >>= 1) |
1423 | if (e1 & 1) | 1343 | if (e1 & 1) |
1424 | rv *= bigtens[j]; | 1344 | value(rv) *= bigtens[j]; |
1425 | /* The last multiplication could overflow. */ | 1345 | /* The last multiplication could overflow. */ |
1426 | word0(rv) -= P*Exp_msk1; | 1346 | word0(rv) -= P*Exp_msk1; |
1427 | rv *= bigtens[j]; | 1347 | value(rv) *= bigtens[j]; |
1428 | if ((z = word0(rv) & Exp_mask) | 1348 | if ((z = word0(rv) & Exp_mask) |
1429 | > Exp_msk1*(DBL_MAX_EXP+Bias-P)) | 1349 | > Exp_msk1*(DBL_MAX_EXP+Bias-P)) |
1430 | goto ovfl; | 1350 | goto ovfl; |
@@ -1443,23 +1363,23 @@ strtod | |||
1443 | else if (e1 < 0) { | 1363 | else if (e1 < 0) { |
1444 | e1 = -e1; | 1364 | e1 = -e1; |
1445 | if (i = e1 & 15) | 1365 | if (i = e1 & 15) |
1446 | rv /= tens[i]; | 1366 | value(rv) /= tens[i]; |
1447 | if (e1 &= ~15) { | 1367 | if (e1 &= ~15) { |
1448 | e1 >>= 4; | 1368 | e1 >>= 4; |
1449 | if (e1 >= 1 << n_bigtens) | 1369 | if (e1 >= 1 << n_bigtens) |
1450 | goto undfl; | 1370 | goto undfl; |
1451 | for(j = 0; e1 > 1; j++, e1 >>= 1) | 1371 | for(j = 0; e1 > 1; j++, e1 >>= 1) |
1452 | if (e1 & 1) | 1372 | if (e1 & 1) |
1453 | rv *= tinytens[j]; | 1373 | value(rv) *= tinytens[j]; |
1454 | /* The last multiplication could underflow. */ | 1374 | /* The last multiplication could underflow. */ |
1455 | rv0 = rv; | 1375 | value(rv0) = value(rv); |
1456 | rv *= tinytens[j]; | 1376 | value(rv) *= tinytens[j]; |
1457 | if (!rv) { | 1377 | if (!value(rv)) { |
1458 | rv = 2.*rv0; | 1378 | value(rv) = 2.*value(rv0); |
1459 | rv *= tinytens[j]; | 1379 | value(rv) *= tinytens[j]; |
1460 | if (!rv) { | 1380 | if (!value(rv)) { |
1461 | undfl: | 1381 | undfl: |
1462 | rv = 0.; | 1382 | value(rv) = 0.; |
1463 | errno = ERANGE; | 1383 | errno = ERANGE; |
1464 | if (bd0) | 1384 | if (bd0) |
1465 | goto retfree; | 1385 | goto retfree; |
@@ -1483,7 +1403,7 @@ strtod | |||
1483 | for(;;) { | 1403 | for(;;) { |
1484 | bd = Balloc(bd0->k); | 1404 | bd = Balloc(bd0->k); |
1485 | Bcopy(bd, bd0); | 1405 | Bcopy(bd, bd0); |
1486 | bb = d2b(rv, &bbe, &bbbits); /* rv = bb * 2^bbe */ | 1406 | bb = d2b(value(rv), &bbe, &bbbits); /* rv = bb * 2^bbe */ |
1487 | bs = i2b(1); | 1407 | bs = i2b(1); |
1488 | 1408 | ||
1489 | if (e >= 0) { | 1409 | if (e >= 0) { |
@@ -1595,12 +1515,12 @@ strtod | |||
1595 | break; | 1515 | break; |
1596 | #endif | 1516 | #endif |
1597 | if (dsign) | 1517 | if (dsign) |
1598 | rv += ulp(rv); | 1518 | value(rv) += ulp(value(rv)); |
1599 | #ifndef ROUND_BIASED | 1519 | #ifndef ROUND_BIASED |
1600 | else { | 1520 | else { |
1601 | rv -= ulp(rv); | 1521 | value(rv) -= ulp(value(rv)); |
1602 | #ifndef Sudden_Underflow | 1522 | #ifndef Sudden_Underflow |
1603 | if (!rv) | 1523 | if (!value(rv)) |
1604 | goto undfl; | 1524 | goto undfl; |
1605 | #endif | 1525 | #endif |
1606 | } | 1526 | } |
@@ -1651,10 +1571,10 @@ strtod | |||
1651 | /* Check for overflow */ | 1571 | /* Check for overflow */ |
1652 | 1572 | ||
1653 | if (y == Exp_msk1*(DBL_MAX_EXP+Bias-1)) { | 1573 | if (y == Exp_msk1*(DBL_MAX_EXP+Bias-1)) { |
1654 | rv0 = rv; | 1574 | value(rv0) = value(rv); |
1655 | word0(rv) -= P*Exp_msk1; | 1575 | word0(rv) -= P*Exp_msk1; |
1656 | adj = aadj1 * ulp(rv); | 1576 | adj = aadj1 * ulp(value(rv)); |
1657 | rv += adj; | 1577 | value(rv) += adj; |
1658 | if ((word0(rv) & Exp_mask) >= | 1578 | if ((word0(rv) & Exp_mask) >= |
1659 | Exp_msk1*(DBL_MAX_EXP+Bias-P)) { | 1579 | Exp_msk1*(DBL_MAX_EXP+Bias-P)) { |
1660 | if (word0(rv0) == Big0 && word1(rv0) == Big1) | 1580 | if (word0(rv0) == Big0 && word1(rv0) == Big1) |
@@ -1669,10 +1589,10 @@ strtod | |||
1669 | else { | 1589 | else { |
1670 | #ifdef Sudden_Underflow | 1590 | #ifdef Sudden_Underflow |
1671 | if ((word0(rv) & Exp_mask) <= P*Exp_msk1) { | 1591 | if ((word0(rv) & Exp_mask) <= P*Exp_msk1) { |
1672 | rv0 = rv; | 1592 | value(rv0) = value(rv); |
1673 | word0(rv) += P*Exp_msk1; | 1593 | word0(rv) += P*Exp_msk1; |
1674 | adj = aadj1 * ulp(rv); | 1594 | adj = aadj1 * ulp(value(rv)); |
1675 | rv += adj; | 1595 | value(rv) += adj; |
1676 | #ifdef IBM | 1596 | #ifdef IBM |
1677 | if ((word0(rv) & Exp_mask) < P*Exp_msk1) | 1597 | if ((word0(rv) & Exp_mask) < P*Exp_msk1) |
1678 | #else | 1598 | #else |
@@ -1690,8 +1610,8 @@ strtod | |||
1690 | word0(rv) -= P*Exp_msk1; | 1610 | word0(rv) -= P*Exp_msk1; |
1691 | } | 1611 | } |
1692 | else { | 1612 | else { |
1693 | adj = aadj1 * ulp(rv); | 1613 | adj = aadj1 * ulp(value(rv)); |
1694 | rv += adj; | 1614 | value(rv) += adj; |
1695 | } | 1615 | } |
1696 | #else | 1616 | #else |
1697 | /* Compute adj so that the IEEE rounding rules will | 1617 | /* Compute adj so that the IEEE rounding rules will |
@@ -1706,8 +1626,8 @@ strtod | |||
1706 | if (!dsign) | 1626 | if (!dsign) |
1707 | aadj1 = -aadj1; | 1627 | aadj1 = -aadj1; |
1708 | } | 1628 | } |
1709 | adj = aadj1 * ulp(rv); | 1629 | adj = aadj1 * ulp(value(rv)); |
1710 | rv += adj; | 1630 | value(rv) += adj; |
1711 | #endif | 1631 | #endif |
1712 | } | 1632 | } |
1713 | z = word0(rv) & Exp_mask; | 1633 | z = word0(rv) & Exp_mask; |
@@ -1738,16 +1658,11 @@ strtod | |||
1738 | ret: | 1658 | ret: |
1739 | if (se) | 1659 | if (se) |
1740 | *se = (char *)s; | 1660 | *se = (char *)s; |
1741 | return sign ? -rv : rv; | 1661 | return sign ? -value(rv) : value(rv); |
1742 | } | 1662 | } |
1743 | 1663 | ||
1744 | static int | 1664 | static int |
1745 | quorem | 1665 | quorem(Bigint *b, Bigint *S) |
1746 | #ifdef KR_headers | ||
1747 | (b, S) Bigint *b, *S; | ||
1748 | #else | ||
1749 | (Bigint *b, Bigint *S) | ||
1750 | #endif | ||
1751 | { | 1666 | { |
1752 | int n; | 1667 | int n; |
1753 | Long borrow, y; | 1668 | Long borrow, y; |
@@ -1882,13 +1797,7 @@ quorem | |||
1882 | */ | 1797 | */ |
1883 | 1798 | ||
1884 | char * | 1799 | char * |
1885 | __dtoa | 1800 | __dtoa(double _d, int mode, int ndigits, int *decpt, int *sign, char **rve) |
1886 | #ifdef KR_headers | ||
1887 | (d, mode, ndigits, decpt, sign, rve) | ||
1888 | double d; int mode, ndigits, *decpt, *sign; char **rve; | ||
1889 | #else | ||
1890 | (double d, int mode, int ndigits, int *decpt, int *sign, char **rve) | ||
1891 | #endif | ||
1892 | { | 1801 | { |
1893 | /* Arguments ndigits, decpt, sign are similar to those | 1802 | /* Arguments ndigits, decpt, sign are similar to those |
1894 | of ecvt and fcvt; trailing zeros are suppressed from | 1803 | of ecvt and fcvt; trailing zeros are suppressed from |
@@ -1933,11 +1842,13 @@ __dtoa | |||
1933 | ULong x; | 1842 | ULong x; |
1934 | #endif | 1843 | #endif |
1935 | Bigint *b, *b1, *delta, *mlo, *mhi, *S; | 1844 | Bigint *b, *b1, *delta, *mlo, *mhi, *S; |
1936 | double d2, ds, eps; | 1845 | double ds; |
1937 | char *s, *s0; | 1846 | char *s, *s0; |
1938 | static Bigint *result; | 1847 | static Bigint *result; |
1939 | static int result_k; | 1848 | static int result_k; |
1849 | _double d, d2, eps; | ||
1940 | 1850 | ||
1851 | value(d) = _d; | ||
1941 | if (result) { | 1852 | if (result) { |
1942 | result->k = result_k; | 1853 | result->k = result_k; |
1943 | result->maxwds = 1 << result_k; | 1854 | result->maxwds = 1 << result_k; |
@@ -1964,7 +1875,7 @@ __dtoa | |||
1964 | *decpt = 9999; | 1875 | *decpt = 9999; |
1965 | s = | 1876 | s = |
1966 | #ifdef IEEE_Arith | 1877 | #ifdef IEEE_Arith |
1967 | !word1(d) && !(word0(d) & 0xfffff) ? "Infinity" : | 1878 | !word1(d) && !(word0(d) & 0xfffff) ? ndigits < 8 ? "Inf" : "Infinity" : |
1968 | #endif | 1879 | #endif |
1969 | "NaN"; | 1880 | "NaN"; |
1970 | if (rve) | 1881 | if (rve) |
@@ -1977,9 +1888,9 @@ __dtoa | |||
1977 | } | 1888 | } |
1978 | #endif | 1889 | #endif |
1979 | #ifdef IBM | 1890 | #ifdef IBM |
1980 | d += 0; /* normalize */ | 1891 | value(d) += 0; /* normalize */ |
1981 | #endif | 1892 | #endif |
1982 | if (!d) { | 1893 | if (!value(d)) { |
1983 | *decpt = 1; | 1894 | *decpt = 1; |
1984 | s = "0"; | 1895 | s = "0"; |
1985 | if (rve) | 1896 | if (rve) |
@@ -1987,18 +1898,18 @@ __dtoa | |||
1987 | return s; | 1898 | return s; |
1988 | } | 1899 | } |
1989 | 1900 | ||
1990 | b = d2b(d, &be, &bbits); | 1901 | b = d2b(value(d), &be, &bbits); |
1991 | #ifdef Sudden_Underflow | 1902 | #ifdef Sudden_Underflow |
1992 | i = (int)(word0(d) >> Exp_shift1 & (Exp_mask>>Exp_shift1)); | 1903 | i = (int)(word0(d) >> Exp_shift1 & (Exp_mask>>Exp_shift1)); |
1993 | #else | 1904 | #else |
1994 | if (i = (int)(word0(d) >> Exp_shift1 & (Exp_mask>>Exp_shift1))) { | 1905 | if (i = (int)(word0(d) >> Exp_shift1 & (Exp_mask>>Exp_shift1))) { |
1995 | #endif | 1906 | #endif |
1996 | d2 = d; | 1907 | value(d2) = value(d); |
1997 | word0(d2) &= Frac_mask1; | 1908 | word0(d2) &= Frac_mask1; |
1998 | word0(d2) |= Exp_11; | 1909 | word0(d2) |= Exp_11; |
1999 | #ifdef IBM | 1910 | #ifdef IBM |
2000 | if (j = 11 - hi0bits(word0(d2) & Frac_mask)) | 1911 | if (j = 11 - hi0bits(word0(d2) & Frac_mask)) |
2001 | d2 /= 1 << j; | 1912 | value(d2) /= 1 << j; |
2002 | #endif | 1913 | #endif |
2003 | 1914 | ||
2004 | /* log(x) ~=~ log(1.5) + (x-1.5)/1.5 | 1915 | /* log(x) ~=~ log(1.5) + (x-1.5)/1.5 |
@@ -2037,19 +1948,20 @@ __dtoa | |||
2037 | i = bbits + be + (Bias + (P-1) - 1); | 1948 | i = bbits + be + (Bias + (P-1) - 1); |
2038 | x = i > 32 ? word0(d) << 64 - i | word1(d) >> i - 32 | 1949 | x = i > 32 ? word0(d) << 64 - i | word1(d) >> i - 32 |
2039 | : word1(d) << 32 - i; | 1950 | : word1(d) << 32 - i; |
2040 | d2 = x; | 1951 | value(d2) = x; |
2041 | word0(d2) -= 31*Exp_msk1; /* adjust exponent */ | 1952 | word0(d2) -= 31*Exp_msk1; /* adjust exponent */ |
2042 | i -= (Bias + (P-1) - 1) + 1; | 1953 | i -= (Bias + (P-1) - 1) + 1; |
2043 | denorm = 1; | 1954 | denorm = 1; |
2044 | } | 1955 | } |
2045 | #endif | 1956 | #endif |
2046 | ds = (d2-1.5)*0.289529654602168 + 0.1760912590558 + i*0.301029995663981; | 1957 | ds = (value(d2)-1.5)*0.289529654602168 + 0.1760912590558 + |
1958 | i*0.301029995663981; | ||
2047 | k = (int)ds; | 1959 | k = (int)ds; |
2048 | if (ds < 0. && ds != k) | 1960 | if (ds < 0. && ds != k) |
2049 | k--; /* want k = floor(ds) */ | 1961 | k--; /* want k = floor(ds) */ |
2050 | k_check = 1; | 1962 | k_check = 1; |
2051 | if (k >= 0 && k <= Ten_pmax) { | 1963 | if (k >= 0 && k <= Ten_pmax) { |
2052 | if (d < tens[k]) | 1964 | if (value(d) < tens[k]) |
2053 | k--; | 1965 | k--; |
2054 | k_check = 0; | 1966 | k_check = 0; |
2055 | } | 1967 | } |
@@ -2116,7 +2028,7 @@ __dtoa | |||
2116 | /* Try to get by with floating-point arithmetic. */ | 2028 | /* Try to get by with floating-point arithmetic. */ |
2117 | 2029 | ||
2118 | i = 0; | 2030 | i = 0; |
2119 | d2 = d; | 2031 | value(d2) = value(d); |
2120 | k0 = k; | 2032 | k0 = k; |
2121 | ilim0 = ilim; | 2033 | ilim0 = ilim; |
2122 | ieps = 2; /* conservative */ | 2034 | ieps = 2; /* conservative */ |
@@ -2126,7 +2038,7 @@ __dtoa | |||
2126 | if (j & Bletch) { | 2038 | if (j & Bletch) { |
2127 | /* prevent overflows */ | 2039 | /* prevent overflows */ |
2128 | j &= Bletch - 1; | 2040 | j &= Bletch - 1; |
2129 | d /= bigtens[n_bigtens-1]; | 2041 | value(d) /= bigtens[n_bigtens-1]; |
2130 | ieps++; | 2042 | ieps++; |
2131 | } | 2043 | } |
2132 | for(; j; j >>= 1, i++) | 2044 | for(; j; j >>= 1, i++) |
@@ -2134,32 +2046,32 @@ __dtoa | |||
2134 | ieps++; | 2046 | ieps++; |
2135 | ds *= bigtens[i]; | 2047 | ds *= bigtens[i]; |
2136 | } | 2048 | } |
2137 | d /= ds; | 2049 | value(d) /= ds; |
2138 | } | 2050 | } |
2139 | else if (j1 = -k) { | 2051 | else if (j1 = -k) { |
2140 | d *= tens[j1 & 0xf]; | 2052 | value(d) *= tens[j1 & 0xf]; |
2141 | for(j = j1 >> 4; j; j >>= 1, i++) | 2053 | for(j = j1 >> 4; j; j >>= 1, i++) |
2142 | if (j & 1) { | 2054 | if (j & 1) { |
2143 | ieps++; | 2055 | ieps++; |
2144 | d *= bigtens[i]; | 2056 | value(d) *= bigtens[i]; |
2145 | } | 2057 | } |
2146 | } | 2058 | } |
2147 | if (k_check && d < 1. && ilim > 0) { | 2059 | if (k_check && value(d) < 1. && ilim > 0) { |
2148 | if (ilim1 <= 0) | 2060 | if (ilim1 <= 0) |
2149 | goto fast_failed; | 2061 | goto fast_failed; |
2150 | ilim = ilim1; | 2062 | ilim = ilim1; |
2151 | k--; | 2063 | k--; |
2152 | d *= 10.; | 2064 | value(d) *= 10.; |
2153 | ieps++; | 2065 | ieps++; |
2154 | } | 2066 | } |
2155 | eps = ieps*d + 7.; | 2067 | value(eps) = ieps*value(d) + 7.; |
2156 | word0(eps) -= (P-1)*Exp_msk1; | 2068 | word0(eps) -= (P-1)*Exp_msk1; |
2157 | if (ilim == 0) { | 2069 | if (ilim == 0) { |
2158 | S = mhi = 0; | 2070 | S = mhi = 0; |
2159 | d -= 5.; | 2071 | value(d) -= 5.; |
2160 | if (d > eps) | 2072 | if (value(d) > value(eps)) |
2161 | goto one_digit; | 2073 | goto one_digit; |
2162 | if (d < -eps) | 2074 | if (value(d) < -value(eps)) |
2163 | goto no_digits; | 2075 | goto no_digits; |
2164 | goto fast_failed; | 2076 | goto fast_failed; |
2165 | } | 2077 | } |
@@ -2168,33 +2080,33 @@ __dtoa | |||
2168 | /* Use Steele & White method of only | 2080 | /* Use Steele & White method of only |
2169 | * generating digits needed. | 2081 | * generating digits needed. |
2170 | */ | 2082 | */ |
2171 | eps = 0.5/tens[ilim-1] - eps; | 2083 | value(eps) = 0.5/tens[ilim-1] - value(eps); |
2172 | for(i = 0;;) { | 2084 | for(i = 0;;) { |
2173 | L = d; | 2085 | L = value(d); |
2174 | d -= L; | 2086 | value(d) -= L; |
2175 | *s++ = '0' + (int)L; | 2087 | *s++ = '0' + (int)L; |
2176 | if (d < eps) | 2088 | if (value(d) < value(eps)) |
2177 | goto ret1; | 2089 | goto ret1; |
2178 | if (1. - d < eps) | 2090 | if (1. - value(d) < value(eps)) |
2179 | goto bump_up; | 2091 | goto bump_up; |
2180 | if (++i >= ilim) | 2092 | if (++i >= ilim) |
2181 | break; | 2093 | break; |
2182 | eps *= 10.; | 2094 | value(eps) *= 10.; |
2183 | d *= 10.; | 2095 | value(d) *= 10.; |
2184 | } | 2096 | } |
2185 | } | 2097 | } |
2186 | else { | 2098 | else { |
2187 | #endif | 2099 | #endif |
2188 | /* Generate ilim digits, then fix them up. */ | 2100 | /* Generate ilim digits, then fix them up. */ |
2189 | eps *= tens[ilim-1]; | 2101 | value(eps) *= tens[ilim-1]; |
2190 | for(i = 1;; i++, d *= 10.) { | 2102 | for(i = 1;; i++, value(d) *= 10.) { |
2191 | L = d; | 2103 | L = value(d); |
2192 | d -= L; | 2104 | value(d) -= L; |
2193 | *s++ = '0' + (int)L; | 2105 | *s++ = '0' + (int)L; |
2194 | if (i == ilim) { | 2106 | if (i == ilim) { |
2195 | if (d > 0.5 + eps) | 2107 | if (value(d) > 0.5 + value(eps)) |
2196 | goto bump_up; | 2108 | goto bump_up; |
2197 | else if (d < 0.5 - eps) { | 2109 | else if (value(d) < 0.5 - value(eps)) { |
2198 | while(*--s == '0'); | 2110 | while(*--s == '0'); |
2199 | s++; | 2111 | s++; |
2200 | goto ret1; | 2112 | goto ret1; |
@@ -2207,7 +2119,7 @@ __dtoa | |||
2207 | #endif | 2119 | #endif |
2208 | fast_failed: | 2120 | fast_failed: |
2209 | s = s0; | 2121 | s = s0; |
2210 | d = d2; | 2122 | value(d) = value(d2); |
2211 | k = k0; | 2123 | k = k0; |
2212 | ilim = ilim0; | 2124 | ilim = ilim0; |
2213 | } | 2125 | } |
@@ -2219,24 +2131,24 @@ __dtoa | |||
2219 | ds = tens[k]; | 2131 | ds = tens[k]; |
2220 | if (ndigits < 0 && ilim <= 0) { | 2132 | if (ndigits < 0 && ilim <= 0) { |
2221 | S = mhi = 0; | 2133 | S = mhi = 0; |
2222 | if (ilim < 0 || d <= 5*ds) | 2134 | if (ilim < 0 || value(d) <= 5*ds) |
2223 | goto no_digits; | 2135 | goto no_digits; |
2224 | goto one_digit; | 2136 | goto one_digit; |
2225 | } | 2137 | } |
2226 | for(i = 1;; i++) { | 2138 | for(i = 1;; i++) { |
2227 | L = d / ds; | 2139 | L = value(d) / ds; |
2228 | d -= L*ds; | 2140 | value(d) -= L*ds; |
2229 | #ifdef Check_FLT_ROUNDS | 2141 | #ifdef Check_FLT_ROUNDS |
2230 | /* If FLT_ROUNDS == 2, L will usually be high by 1 */ | 2142 | /* If FLT_ROUNDS == 2, L will usually be high by 1 */ |
2231 | if (d < 0) { | 2143 | if (value(d) < 0) { |
2232 | L--; | 2144 | L--; |
2233 | d += ds; | 2145 | value(d) += ds; |
2234 | } | 2146 | } |
2235 | #endif | 2147 | #endif |
2236 | *s++ = '0' + (int)L; | 2148 | *s++ = '0' + (int)L; |
2237 | if (i == ilim) { | 2149 | if (i == ilim) { |
2238 | d += d; | 2150 | value(d) += value(d); |
2239 | if (d > ds || d == ds && L & 1) { | 2151 | if (value(d) > ds || value(d) == ds && L & 1) { |
2240 | bump_up: | 2152 | bump_up: |
2241 | while(*--s == '9') | 2153 | while(*--s == '9') |
2242 | if (s == s0) { | 2154 | if (s == s0) { |
@@ -2248,7 +2160,7 @@ __dtoa | |||
2248 | } | 2160 | } |
2249 | break; | 2161 | break; |
2250 | } | 2162 | } |
2251 | if (!(d *= 10.)) | 2163 | if (!(value(d) *= 10.)) |
2252 | break; | 2164 | break; |
2253 | } | 2165 | } |
2254 | goto ret1; | 2166 | goto ret1; |
diff --git a/src/lib/libc/stdlib/strtol.3 b/src/lib/libc/stdlib/strtol.3 index 808ba90165..3f5375c5e3 100644 --- a/src/lib/libc/stdlib/strtol.3 +++ b/src/lib/libc/stdlib/strtol.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,49 +29,57 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)strtol.3 5.4 (Berkeley) 6/25/92 | 32 | .\" $OpenBSD: strtol.3,v 1.13 2003/06/02 20:18:38 millert Exp $ |
37 | .\" $Id: strtol.3,v 1.1.1.1 1995/10/18 08:42:19 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 25, 1992 | 34 | .Dd June 25, 1992 |
40 | .Dt STRTOL 3 | 35 | .Dt STRTOL 3 |
41 | .Os | 36 | .Os |
42 | .Sh NAME | 37 | .Sh NAME |
43 | .Nm strtol, strtoq | 38 | .Nm strtol , |
44 | .Nd convert string value to a long or quad_t integer | 39 | .Nm strtoll , |
40 | .Nm strtoq | ||
41 | .Nd "convert string value to a long or long long integer" | ||
45 | .Sh SYNOPSIS | 42 | .Sh SYNOPSIS |
46 | .Fd #include <stdlib.h> | 43 | .Fd #include <stdlib.h> |
47 | .Fd #include <limits.h> | 44 | .Fd #include <limits.h> |
48 | .Ft long | 45 | .Ft long |
49 | .Fn strtol "char *nptr" "char **endptr" "int base" | 46 | .Fn strtol "const char *nptr" "char **endptr" "int base" |
50 | 47 | .Pp | |
48 | .Fd #include <stdlib.h> | ||
49 | .Fd #include <limits.h> | ||
50 | .Ft long long | ||
51 | .Fn strtoll "const char *nptr" "char **endptr" "int base" | ||
52 | .Pp | ||
51 | .Fd #include <sys/types.h> | 53 | .Fd #include <sys/types.h> |
52 | .Fd #include <stdlib.h> | 54 | .Fd #include <stdlib.h> |
53 | .Fd #include <limits.h> | 55 | .Fd #include <limits.h> |
54 | .Ft quad_t | 56 | .Ft quad_t |
55 | .Fn strtoq "char *nptr" "char **endptr" "int base" | 57 | .Fn strtoq "const char *nptr" "char **endptr" "int base" |
56 | .Sh DESCRIPTION | 58 | .Sh DESCRIPTION |
57 | The | 59 | The |
58 | .Fn strtol | 60 | .Fn strtol |
59 | function | 61 | function converts the string in |
60 | converts the string in | ||
61 | .Fa nptr | 62 | .Fa nptr |
62 | to a | 63 | to a |
63 | .Em long | 64 | .Li long |
64 | value. | 65 | value. |
65 | The | 66 | The |
66 | .Fn strtoq | 67 | .Fn strtoll |
67 | function | 68 | function converts the string in |
68 | converts the string in | ||
69 | .Fa nptr | 69 | .Fa nptr |
70 | to a | 70 | to a |
71 | .Em quad_t | 71 | .Li long long |
72 | value. | 72 | value. |
73 | The | ||
74 | .Fn strtoq | ||
75 | function is a deprecated equivalent of | ||
76 | .Fn strtoll | ||
77 | and is provided for backwards compatibility with legacy programs. | ||
73 | The conversion is done according to the given | 78 | The conversion is done according to the given |
74 | .Fa base , | 79 | .Fa base , |
75 | which must be between 2 and 36 inclusive, | 80 | which must be a number between 2 and 36 inclusive or the special value 0. |
76 | or be the special value 0. | ||
77 | .Pp | 81 | .Pp |
78 | The string may begin with an arbitrary amount of white space | 82 | The string may begin with an arbitrary amount of whitespace |
79 | (as determined by | 83 | (as determined by |
80 | .Xr isspace 3 ) | 84 | .Xr isspace 3 ) |
81 | followed by a single optional | 85 | followed by a single optional |
@@ -85,25 +89,22 @@ or | |||
85 | sign. | 89 | sign. |
86 | If | 90 | If |
87 | .Fa base | 91 | .Fa base |
88 | is zero or 16, | 92 | is zero or 16, the string may then include a |
89 | the string may then include a | ||
90 | .Ql 0x | 93 | .Ql 0x |
91 | prefix, | 94 | prefix, and the number will be read in base 16; otherwise, a zero |
92 | and the number will be read in base 16; otherwise, a zero | ||
93 | .Fa base | 95 | .Fa base |
94 | is taken as 10 (decimal) unless the next character is | 96 | is taken as 10 (decimal) unless the next character is |
95 | .Ql 0 , | 97 | .Ql 0 , |
96 | in which case it is taken as 8 (octal). | 98 | in which case it is taken as 8 (octal). |
97 | .Pp | 99 | .Pp |
98 | The remainder of the string is converted to a | 100 | The remainder of the string is converted to a |
99 | .Em long | 101 | .Li long |
100 | value in the obvious manner, | 102 | value in the obvious manner, |
101 | stopping at the first character which is not a valid digit | 103 | stopping at the first character which is not a valid digit |
102 | in the given base. | 104 | in the given base. |
103 | (In bases above 10, the letter | 105 | (In bases above 10, the letter |
104 | .Ql A | 106 | .Ql A |
105 | in either upper or lower case | 107 | in either upper or lower case represents 10, |
106 | represents 10, | ||
107 | .Ql B | 108 | .Ql B |
108 | represents 11, and so forth, with | 109 | represents 11, and so forth, with |
109 | .Ql Z | 110 | .Ql Z |
@@ -111,7 +112,7 @@ representing 35.) | |||
111 | .Pp | 112 | .Pp |
112 | If | 113 | If |
113 | .Fa endptr | 114 | .Fa endptr |
114 | is non nil, | 115 | is non-null, |
115 | .Fn strtol | 116 | .Fn strtol |
116 | stores the address of the first invalid character in | 117 | stores the address of the first invalid character in |
117 | .Fa *endptr . | 118 | .Fa *endptr . |
@@ -133,8 +134,7 @@ on return, the entire string was valid.) | |||
133 | .Sh RETURN VALUES | 134 | .Sh RETURN VALUES |
134 | The | 135 | The |
135 | .Fn strtol | 136 | .Fn strtol |
136 | function | 137 | function returns the result of the conversion, |
137 | returns the result of the conversion, | ||
138 | unless the value would underflow or overflow. | 138 | unless the value would underflow or overflow. |
139 | If an underflow occurs, | 139 | If an underflow occurs, |
140 | .Fn strtol | 140 | .Fn strtol |
@@ -148,6 +148,76 @@ In both cases, | |||
148 | .Va errno | 148 | .Va errno |
149 | is set to | 149 | is set to |
150 | .Er ERANGE . | 150 | .Er ERANGE . |
151 | .Pp | ||
152 | The | ||
153 | .Fn strtoll | ||
154 | function has identical return values except that | ||
155 | .Dv LLONG_MIN | ||
156 | and | ||
157 | .Dv LLONG_MAX | ||
158 | are used to indicate underflow and overflow respectively. | ||
159 | .Sh EXAMPLES | ||
160 | Ensuring that a string is a valid number (i.e., in range and containing no | ||
161 | trailing characters) requires clearing | ||
162 | .Va errno | ||
163 | beforehand explicitly since | ||
164 | .Va errno | ||
165 | is not changed on a successful call to | ||
166 | .Fn strtol , | ||
167 | and the return value of | ||
168 | .Fn strtol | ||
169 | cannot be used unambiguously to signal an error: | ||
170 | .Bd -literal -offset indent | ||
171 | char *ep; | ||
172 | long lval; | ||
173 | |||
174 | \&... | ||
175 | |||
176 | errno = 0; | ||
177 | lval = strtol(buf, &ep, 10); | ||
178 | if (buf[0] == '\e0' || *ep != '\e0') | ||
179 | goto not_a_number; | ||
180 | if (errno == ERANGE && (lval == LONG_MAX || lval == LONG_MIN)) | ||
181 | goto out_of_range; | ||
182 | .Ed | ||
183 | .Pp | ||
184 | This example will accept | ||
185 | .Dq 12 | ||
186 | but not | ||
187 | .Dq 12foo | ||
188 | or | ||
189 | .Dq 12\en . | ||
190 | If trailing whitespace is acceptable, further checks must be done on | ||
191 | .Va *ep ; | ||
192 | alternately, use | ||
193 | .Xr sscanf 3 . | ||
194 | .Pp | ||
195 | If | ||
196 | .Fn strtol | ||
197 | is being used instead of | ||
198 | .Xr atoi 3 , | ||
199 | error checking is further complicated because the desired return value is an | ||
200 | .Li int | ||
201 | rather than a | ||
202 | .Li long ; | ||
203 | however, on some architectures integers and long integers are the same size. | ||
204 | Thus the following is necessary: | ||
205 | .Bd -literal -offset indent | ||
206 | char *ep; | ||
207 | int ival; | ||
208 | long lval; | ||
209 | |||
210 | \&... | ||
211 | |||
212 | errno = 0; | ||
213 | lval = strtol(buf, &ep, 10); | ||
214 | if (buf[0] == '\e0' || *ep != '\e0') | ||
215 | goto not_a_number; | ||
216 | if ((errno == ERANGE && (lval == LONG_MAX || lval == LONG_MIN)) || | ||
217 | (lval > INT_MAX || lval < INT_MIN)) | ||
218 | goto out_of_range; | ||
219 | ival = lval; | ||
220 | .Ed | ||
151 | .Sh ERRORS | 221 | .Sh ERRORS |
152 | .Bl -tag -width Er | 222 | .Bl -tag -width Er |
153 | .It Bq Er ERANGE | 223 | .It Bq Er ERANGE |
@@ -157,13 +227,21 @@ The given string was out of range; the value converted has been clamped. | |||
157 | .Xr atof 3 , | 227 | .Xr atof 3 , |
158 | .Xr atoi 3 , | 228 | .Xr atoi 3 , |
159 | .Xr atol 3 , | 229 | .Xr atol 3 , |
230 | .Xr atoll 3 , | ||
231 | .Xr sscanf 3 , | ||
160 | .Xr strtod 3 , | 232 | .Xr strtod 3 , |
161 | .Xr strtoul 3 | 233 | .Xr strtoul 3 |
162 | .Sh STANDARDS | 234 | .Sh STANDARDS |
163 | The | 235 | The |
164 | .Fn strtol | 236 | .Fn strtol |
165 | function | 237 | and |
166 | conforms to | 238 | .Fn strtoll |
167 | .St -ansiC . | 239 | functions conform to |
240 | .St -ansiC-99 . | ||
241 | The | ||
242 | .Fn strtoq | ||
243 | function is a | ||
244 | .Bx | ||
245 | extension and is provided for backwards compatibility with legacy programs. | ||
168 | .Sh BUGS | 246 | .Sh BUGS |
169 | Ignores the current locale. | 247 | Ignores the current locale. |
diff --git a/src/lib/libc/stdlib/strtol.c b/src/lib/libc/stdlib/strtol.c index 6f374abd5f..9692bb6b07 100644 --- a/src/lib/libc/stdlib/strtol.c +++ b/src/lib/libc/stdlib/strtol.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,13 +28,12 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)strtol.c 5.4 (Berkeley) 2/23/91";*/ | 31 | static char *rcsid = "$OpenBSD: strtol.c,v 1.6 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: strtol.c,v 1.1.1.1 1995/10/18 08:42:20 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <limits.h> | ||
40 | #include <ctype.h> | 34 | #include <ctype.h> |
41 | #include <errno.h> | 35 | #include <errno.h> |
36 | #include <limits.h> | ||
42 | #include <stdlib.h> | 37 | #include <stdlib.h> |
43 | 38 | ||
44 | 39 | ||
@@ -49,30 +44,30 @@ static char *rcsid = "$Id: strtol.c,v 1.1.1.1 1995/10/18 08:42:20 deraadt Exp $" | |||
49 | * alphabets and digits are each contiguous. | 44 | * alphabets and digits are each contiguous. |
50 | */ | 45 | */ |
51 | long | 46 | long |
52 | strtol(nptr, endptr, base) | 47 | strtol(const char *nptr, char **endptr, int base) |
53 | const char *nptr; | ||
54 | char **endptr; | ||
55 | register int base; | ||
56 | { | 48 | { |
57 | register const char *s = nptr; | 49 | const char *s; |
58 | register unsigned long acc; | 50 | long acc, cutoff; |
59 | register int c; | 51 | int c; |
60 | register unsigned long cutoff; | 52 | int neg, any, cutlim; |
61 | register int neg = 0, any, cutlim; | ||
62 | 53 | ||
63 | /* | 54 | /* |
64 | * Skip white space and pick up leading +/- sign if any. | 55 | * Skip white space and pick up leading +/- sign if any. |
65 | * If base is 0, allow 0x for hex and 0 for octal, else | 56 | * If base is 0, allow 0x for hex and 0 for octal, else |
66 | * assume decimal; if base is already 16, allow 0x. | 57 | * assume decimal; if base is already 16, allow 0x. |
67 | */ | 58 | */ |
59 | s = nptr; | ||
68 | do { | 60 | do { |
69 | c = *s++; | 61 | c = (unsigned char) *s++; |
70 | } while (isspace(c)); | 62 | } while (isspace(c)); |
71 | if (c == '-') { | 63 | if (c == '-') { |
72 | neg = 1; | 64 | neg = 1; |
73 | c = *s++; | 65 | c = *s++; |
74 | } else if (c == '+') | 66 | } else { |
75 | c = *s++; | 67 | neg = 0; |
68 | if (c == '+') | ||
69 | c = *s++; | ||
70 | } | ||
76 | if ((base == 0 || base == 16) && | 71 | if ((base == 0 || base == 16) && |
77 | c == '0' && (*s == 'x' || *s == 'X')) { | 72 | c == '0' && (*s == 'x' || *s == 'X')) { |
78 | c = s[1]; | 73 | c = s[1]; |
@@ -99,10 +94,17 @@ strtol(nptr, endptr, base) | |||
99 | * Set any if any `digits' consumed; make it negative to indicate | 94 | * Set any if any `digits' consumed; make it negative to indicate |
100 | * overflow. | 95 | * overflow. |
101 | */ | 96 | */ |
102 | cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX; | 97 | cutoff = neg ? LONG_MIN : LONG_MAX; |
103 | cutlim = cutoff % (unsigned long)base; | 98 | cutlim = cutoff % base; |
104 | cutoff /= (unsigned long)base; | 99 | cutoff /= base; |
105 | for (acc = 0, any = 0;; c = *s++) { | 100 | if (neg) { |
101 | if (cutlim > 0) { | ||
102 | cutlim -= base; | ||
103 | cutoff += 1; | ||
104 | } | ||
105 | cutlim = -cutlim; | ||
106 | } | ||
107 | for (acc = 0, any = 0;; c = (unsigned char) *s++) { | ||
106 | if (isdigit(c)) | 108 | if (isdigit(c)) |
107 | c -= '0'; | 109 | c -= '0'; |
108 | else if (isalpha(c)) | 110 | else if (isalpha(c)) |
@@ -111,19 +113,30 @@ strtol(nptr, endptr, base) | |||
111 | break; | 113 | break; |
112 | if (c >= base) | 114 | if (c >= base) |
113 | break; | 115 | break; |
114 | if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim) | 116 | if (any < 0) |
115 | any = -1; | 117 | continue; |
116 | else { | 118 | if (neg) { |
117 | any = 1; | 119 | if (acc < cutoff || acc == cutoff && c > cutlim) { |
118 | acc *= base; | 120 | any = -1; |
119 | acc += c; | 121 | acc = LONG_MIN; |
122 | errno = ERANGE; | ||
123 | } else { | ||
124 | any = 1; | ||
125 | acc *= base; | ||
126 | acc -= c; | ||
127 | } | ||
128 | } else { | ||
129 | if (acc > cutoff || acc == cutoff && c > cutlim) { | ||
130 | any = -1; | ||
131 | acc = LONG_MAX; | ||
132 | errno = ERANGE; | ||
133 | } else { | ||
134 | any = 1; | ||
135 | acc *= base; | ||
136 | acc += c; | ||
137 | } | ||
120 | } | 138 | } |
121 | } | 139 | } |
122 | if (any < 0) { | ||
123 | acc = neg ? LONG_MIN : LONG_MAX; | ||
124 | errno = ERANGE; | ||
125 | } else if (neg) | ||
126 | acc = -acc; | ||
127 | if (endptr != 0) | 140 | if (endptr != 0) |
128 | *endptr = (char *) (any ? s - 1 : nptr); | 141 | *endptr = (char *) (any ? s - 1 : nptr); |
129 | return (acc); | 142 | return (acc); |
diff --git a/src/lib/libc/stdlib/strtoq.c b/src/lib/libc/stdlib/strtoll.c index fc559e9d7f..fa4d30ef5a 100644 --- a/src/lib/libc/stdlib/strtoq.c +++ b/src/lib/libc/stdlib/strtoll.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,33 +28,29 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | static char sccsid[] = "@(#)strtoq.c 5.1 (Berkeley) 6/26/92"; | 31 | static const char rcsid[] = "$OpenBSD: strtoll.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; |
36 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
37 | 33 | ||
38 | #include <sys/types.h> | 34 | #include <sys/types.h> |
39 | 35 | ||
40 | #include <limits.h> | ||
41 | #include <errno.h> | ||
42 | #include <ctype.h> | 36 | #include <ctype.h> |
37 | #include <errno.h> | ||
38 | #include <limits.h> | ||
43 | #include <stdlib.h> | 39 | #include <stdlib.h> |
44 | 40 | ||
45 | /* | 41 | /* |
46 | * Convert a string to a quad integer. | 42 | * Convert a string to a long long. |
47 | * | 43 | * |
48 | * Ignores `locale' stuff. Assumes that the upper and lower case | 44 | * Ignores `locale' stuff. Assumes that the upper and lower case |
49 | * alphabets and digits are each contiguous. | 45 | * alphabets and digits are each contiguous. |
50 | */ | 46 | */ |
51 | quad_t | 47 | long long |
52 | strtoq(nptr, endptr, base) | 48 | strtoll(const char *nptr, char **endptr, int base) |
53 | const char *nptr; | ||
54 | char **endptr; | ||
55 | register int base; | ||
56 | { | 49 | { |
57 | register const char *s; | 50 | const char *s; |
58 | register u_quad_t acc; | 51 | long long acc, cutoff; |
59 | register int c; | 52 | int c; |
60 | register u_quad_t qbase, cutoff; | 53 | int neg, any, cutlim; |
61 | register int neg, any, cutlim; | ||
62 | 54 | ||
63 | /* | 55 | /* |
64 | * Skip white space and pick up leading +/- sign if any. | 56 | * Skip white space and pick up leading +/- sign if any. |
@@ -67,7 +59,7 @@ strtoq(nptr, endptr, base) | |||
67 | */ | 59 | */ |
68 | s = nptr; | 60 | s = nptr; |
69 | do { | 61 | do { |
70 | c = *s++; | 62 | c = (unsigned char) *s++; |
71 | } while (isspace(c)); | 63 | } while (isspace(c)); |
72 | if (c == '-') { | 64 | if (c == '-') { |
73 | neg = 1; | 65 | neg = 1; |
@@ -93,7 +85,7 @@ strtoq(nptr, endptr, base) | |||
93 | * followed by a legal input character, is too big. One that | 85 | * followed by a legal input character, is too big. One that |
94 | * is equal to this value may be valid or not; the limit | 86 | * is equal to this value may be valid or not; the limit |
95 | * between valid and invalid numbers is then based on the last | 87 | * between valid and invalid numbers is then based on the last |
96 | * digit. For instance, if the range for quads is | 88 | * digit. For instance, if the range for long longs is |
97 | * [-9223372036854775808..9223372036854775807] and the input base | 89 | * [-9223372036854775808..9223372036854775807] and the input base |
98 | * is 10, cutoff will be set to 922337203685477580 and cutlim to | 90 | * is 10, cutoff will be set to 922337203685477580 and cutlim to |
99 | * either 7 (neg==0) or 8 (neg==1), meaning that if we have | 91 | * either 7 (neg==0) or 8 (neg==1), meaning that if we have |
@@ -104,11 +96,17 @@ strtoq(nptr, endptr, base) | |||
104 | * Set any if any `digits' consumed; make it negative to indicate | 96 | * Set any if any `digits' consumed; make it negative to indicate |
105 | * overflow. | 97 | * overflow. |
106 | */ | 98 | */ |
107 | qbase = (unsigned)base; | 99 | cutoff = neg ? LLONG_MIN : LLONG_MAX; |
108 | cutoff = neg ? -(u_quad_t)QUAD_MIN : QUAD_MAX; | 100 | cutlim = cutoff % base; |
109 | cutlim = cutoff % qbase; | 101 | cutoff /= base; |
110 | cutoff /= qbase; | 102 | if (neg) { |
111 | for (acc = 0, any = 0;; c = *s++) { | 103 | if (cutlim > 0) { |
104 | cutlim -= base; | ||
105 | cutoff += 1; | ||
106 | } | ||
107 | cutlim = -cutlim; | ||
108 | } | ||
109 | for (acc = 0, any = 0;; c = (unsigned char) *s++) { | ||
112 | if (isdigit(c)) | 110 | if (isdigit(c)) |
113 | c -= '0'; | 111 | c -= '0'; |
114 | else if (isalpha(c)) | 112 | else if (isalpha(c)) |
@@ -117,20 +115,42 @@ strtoq(nptr, endptr, base) | |||
117 | break; | 115 | break; |
118 | if (c >= base) | 116 | if (c >= base) |
119 | break; | 117 | break; |
120 | if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim) | 118 | if (any < 0) |
121 | any = -1; | 119 | continue; |
122 | else { | 120 | if (neg) { |
123 | any = 1; | 121 | if (acc < cutoff || (acc == cutoff && c > cutlim)) { |
124 | acc *= qbase; | 122 | any = -1; |
125 | acc += c; | 123 | acc = LLONG_MIN; |
124 | errno = ERANGE; | ||
125 | } else { | ||
126 | any = 1; | ||
127 | acc *= base; | ||
128 | acc -= c; | ||
129 | } | ||
130 | } else { | ||
131 | if (acc > cutoff || (acc == cutoff && c > cutlim)) { | ||
132 | any = -1; | ||
133 | acc = LLONG_MAX; | ||
134 | errno = ERANGE; | ||
135 | } else { | ||
136 | any = 1; | ||
137 | acc *= base; | ||
138 | acc += c; | ||
139 | } | ||
126 | } | 140 | } |
127 | } | 141 | } |
128 | if (any < 0) { | ||
129 | acc = neg ? QUAD_MIN : QUAD_MAX; | ||
130 | errno = ERANGE; | ||
131 | } else if (neg) | ||
132 | acc = -acc; | ||
133 | if (endptr != 0) | 142 | if (endptr != 0) |
134 | *endptr = (char *) (any ? s - 1 : nptr); | 143 | *endptr = (char *) (any ? s - 1 : nptr); |
135 | return (acc); | 144 | return (acc); |
136 | } | 145 | } |
146 | |||
147 | #ifdef __weak_alias | ||
148 | __weak_alias(strtoq, strtoll); | ||
149 | #else | ||
150 | quad_t | ||
151 | strtoq(const char *nptr, char **endptr, int base) | ||
152 | { | ||
153 | |||
154 | return ((quad_t)strtoll(nptr, endptr, base)); | ||
155 | } | ||
156 | #endif | ||
diff --git a/src/lib/libc/stdlib/strtonum.3 b/src/lib/libc/stdlib/strtonum.3 new file mode 100644 index 0000000000..11910a627c --- /dev/null +++ b/src/lib/libc/stdlib/strtonum.3 | |||
@@ -0,0 +1,151 @@ | |||
1 | .\" $OpenBSD: strtonum.3,v 1.11 2005/04/14 07:58:46 jmc Exp $ | ||
2 | .\" | ||
3 | .\" Copyright (c) 2004 Ted Unangst | ||
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 | .Dd April 29, 2004 | ||
18 | .Dt STRTONUM 3 | ||
19 | .Os | ||
20 | .Sh NAME | ||
21 | .Nm strtonum | ||
22 | .Nd "reliably convert string value to an integer" | ||
23 | .Sh SYNOPSIS | ||
24 | .Fd #include <stdlib.h> | ||
25 | .Fd #include <limits.h> | ||
26 | .Ft long long | ||
27 | .Fo strtonum | ||
28 | .Fa "const char *nptr" | ||
29 | .Fa "long long minval" | ||
30 | .Fa "long long maxval" | ||
31 | .Fa "const char **errstr" | ||
32 | .Fc | ||
33 | .Sh DESCRIPTION | ||
34 | The | ||
35 | .Fn strtonum | ||
36 | function converts the string in | ||
37 | .Fa nptr | ||
38 | to a | ||
39 | .Li long long | ||
40 | value. | ||
41 | The | ||
42 | .Fn strtonum | ||
43 | function was designed to facilitate safe, robust programming | ||
44 | and overcome the shortcomings of the | ||
45 | .Xr atoi 3 | ||
46 | and | ||
47 | .Xr strtol 3 | ||
48 | family of interfaces. | ||
49 | .Pp | ||
50 | The string may begin with an arbitrary amount of whitespace | ||
51 | (as determined by | ||
52 | .Xr isspace 3 ) | ||
53 | followed by a single optional | ||
54 | .Ql + | ||
55 | or | ||
56 | .Ql - | ||
57 | sign. | ||
58 | .Pp | ||
59 | The remainder of the string is converted to a | ||
60 | .Li long long | ||
61 | value according to base 10. | ||
62 | .Pp | ||
63 | The value obtained is then checked against the provided | ||
64 | .Fa minval | ||
65 | and | ||
66 | .Fa maxval | ||
67 | bounds. | ||
68 | If | ||
69 | .Fa errstr | ||
70 | is non-null, | ||
71 | .Fn strtonum | ||
72 | stores an error string in | ||
73 | .Fa *errstr | ||
74 | indicating the failure. | ||
75 | .Sh RETURN VALUES | ||
76 | The | ||
77 | .Fn strtonum | ||
78 | function returns the result of the conversion, | ||
79 | unless the value would exceed the provided bounds or is invalid. | ||
80 | On error, 0 is returned and | ||
81 | .Fa errstr | ||
82 | will point to an error message. | ||
83 | .Fa *errstr | ||
84 | will be set to | ||
85 | .Dv NULL | ||
86 | on success; | ||
87 | this fact can be used to differentiate | ||
88 | a successful return of 0 from an error. | ||
89 | .Sh EXAMPLES | ||
90 | Using | ||
91 | .Fn strtonum | ||
92 | correctly is meant to be simpler than the alternative functions. | ||
93 | .Bd -literal -offset indent | ||
94 | int iterations; | ||
95 | const char *errstr; | ||
96 | |||
97 | iterations = strtonum(optarg, 1, 64, &errstr); | ||
98 | if (errstr) | ||
99 | errx(1, "number of iterations is %s: %s", errstr, optarg); | ||
100 | .Ed | ||
101 | .Pp | ||
102 | The above example will guarantee that the value of iterations is between | ||
103 | 1 and 64. | ||
104 | .Sh ERRORS | ||
105 | .Bl -tag -width Er | ||
106 | .It Bq Er ERANGE | ||
107 | The given string was out of range. | ||
108 | .It Bq Er EINVAL | ||
109 | The given string did not consist solely of digit characters. | ||
110 | .It Bq Er EINVAL | ||
111 | .Ar minval | ||
112 | was larger than | ||
113 | .Ar maxval . | ||
114 | .El | ||
115 | .Pp | ||
116 | If an error occurs, | ||
117 | .Fa errstr | ||
118 | will be set to one of the following strings: | ||
119 | .Pp | ||
120 | .Bl -tag -width "too largeXX" -compact | ||
121 | .It too large | ||
122 | The result was larger than the provided maximum value. | ||
123 | .It too small | ||
124 | The result was smaller than the provided minimum value. | ||
125 | .It invalid | ||
126 | The string did not consist solely of digit characters. | ||
127 | .El | ||
128 | .Sh SEE ALSO | ||
129 | .Xr atof 3 , | ||
130 | .Xr atoi 3 , | ||
131 | .Xr atol 3 , | ||
132 | .Xr atoll 3 , | ||
133 | .Xr sscanf 3 , | ||
134 | .Xr strtod 3 , | ||
135 | .Xr strtol 3 , | ||
136 | .Xr strtoul 3 | ||
137 | .Sh STANDARDS | ||
138 | .Fn strtonum | ||
139 | is an | ||
140 | .Ox | ||
141 | extension. | ||
142 | The existing alternatives, such as | ||
143 | .Xr atoi 3 | ||
144 | and | ||
145 | .Xr strtol 3 , | ||
146 | are either impossible or difficult to use safely. | ||
147 | .Sh HISTORY | ||
148 | The | ||
149 | .Fn strtonum | ||
150 | function first appeared in | ||
151 | .Ox 3.6 . | ||
diff --git a/src/lib/libc/stdlib/strtonum.c b/src/lib/libc/stdlib/strtonum.c new file mode 100644 index 0000000000..e426388ed0 --- /dev/null +++ b/src/lib/libc/stdlib/strtonum.c | |||
@@ -0,0 +1,65 @@ | |||
1 | /* $OpenBSD: strtonum.c,v 1.6 2004/08/03 19:38:01 millert Exp $ */ | ||
2 | |||
3 | /* | ||
4 | * Copyright (c) 2004 Ted Unangst and Todd Miller | ||
5 | * All rights reserved. | ||
6 | * | ||
7 | * Permission to use, copy, modify, and distribute this software for any | ||
8 | * purpose with or without fee is hereby granted, provided that the above | ||
9 | * copyright notice and this permission notice appear in all copies. | ||
10 | * | ||
11 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
12 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
13 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
14 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
15 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
16 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
17 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
18 | */ | ||
19 | |||
20 | #include <errno.h> | ||
21 | #include <limits.h> | ||
22 | #include <stdlib.h> | ||
23 | |||
24 | #define INVALID 1 | ||
25 | #define TOOSMALL 2 | ||
26 | #define TOOLARGE 3 | ||
27 | |||
28 | long long | ||
29 | strtonum(const char *numstr, long long minval, long long maxval, | ||
30 | const char **errstrp) | ||
31 | { | ||
32 | long long ll = 0; | ||
33 | char *ep; | ||
34 | int error = 0; | ||
35 | struct errval { | ||
36 | const char *errstr; | ||
37 | int err; | ||
38 | } ev[4] = { | ||
39 | { NULL, 0 }, | ||
40 | { "invalid", EINVAL }, | ||
41 | { "too small", ERANGE }, | ||
42 | { "too large", ERANGE }, | ||
43 | }; | ||
44 | |||
45 | ev[0].err = errno; | ||
46 | errno = 0; | ||
47 | if (minval > maxval) | ||
48 | error = INVALID; | ||
49 | else { | ||
50 | ll = strtoll(numstr, &ep, 10); | ||
51 | if (numstr == ep || *ep != '\0') | ||
52 | error = INVALID; | ||
53 | else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval) | ||
54 | error = TOOSMALL; | ||
55 | else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval) | ||
56 | error = TOOLARGE; | ||
57 | } | ||
58 | if (errstrp != NULL) | ||
59 | *errstrp = ev[error].errstr; | ||
60 | errno = ev[error].err; | ||
61 | if (error) | ||
62 | ll = 0; | ||
63 | |||
64 | return (ll); | ||
65 | } | ||
diff --git a/src/lib/libc/stdlib/strtoul.3 b/src/lib/libc/stdlib/strtoul.3 index db551b0141..4f6d6a51f9 100644 --- a/src/lib/libc/stdlib/strtoul.3 +++ b/src/lib/libc/stdlib/strtoul.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,21 +29,27 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)strtoul.3 5.4 (Berkeley) 6/25/92 | 32 | .\" $OpenBSD: strtoul.3,v 1.15 2003/06/02 20:18:38 millert Exp $ |
37 | .\" $Id: strtoul.3,v 1.1.1.1 1995/10/18 08:42:20 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 25, 1992 | 34 | .Dd June 25, 1992 |
40 | .Dt STRTOUL 3 | 35 | .Dt STRTOUL 3 |
41 | .Os | 36 | .Os |
42 | .Sh NAME | 37 | .Sh NAME |
43 | .Nm strtoul, strtouq | 38 | .Nm strtoul , |
44 | .Nd convert a string to an unsigned long or uquad_t integer | 39 | .Nm strtoull , |
40 | .Nm strtouq | ||
41 | .Nd "convert a string to an unsigned long or unsigned long long integer" | ||
45 | .Sh SYNOPSIS | 42 | .Sh SYNOPSIS |
46 | .Fd #include <stdlib.h> | 43 | .Fd #include <stdlib.h> |
47 | .Fd #include <limits.h> | 44 | .Fd #include <limits.h> |
48 | .Ft unsigned long | 45 | .Ft unsigned long |
49 | .Fn strtoul "const char *nptr" "char **endptr" "int base" | 46 | .Fn strtoul "const char *nptr" "char **endptr" "int base" |
50 | 47 | .Pp | |
48 | .Fd #include <stdlib.h> | ||
49 | .Fd #include <limits.h> | ||
50 | .Ft unsigned long long | ||
51 | .Fn strtoull "const char *nptr" "char **endptr" "int base" | ||
52 | .Pp | ||
51 | .Fd #include <sys/types.h> | 53 | .Fd #include <sys/types.h> |
52 | .Fd #include <stdlib.h> | 54 | .Fd #include <stdlib.h> |
53 | .Fd #include <limits.h> | 55 | .Fd #include <limits.h> |
@@ -56,26 +58,34 @@ | |||
56 | .Sh DESCRIPTION | 58 | .Sh DESCRIPTION |
57 | The | 59 | The |
58 | .Fn strtoul | 60 | .Fn strtoul |
59 | function | 61 | function converts the string in |
60 | converts the string in | ||
61 | .Fa nptr | 62 | .Fa nptr |
62 | to an | 63 | to an |
63 | .Em unsigned long | 64 | .Li unsigned long |
64 | value. | 65 | value. |
65 | The | 66 | The |
66 | .Fn strtouq | 67 | .Fn strtoull |
67 | function | 68 | function converts the string in |
68 | converts the string in | ||
69 | .Fa nptr | 69 | .Fa nptr |
70 | to a | 70 | to an |
71 | .Em u_quad_t | 71 | .Li unsigned long long |
72 | value. | 72 | value. |
73 | The | ||
74 | .Fn strtouq | ||
75 | function is a deprecated equivalent of | ||
76 | .Fn strtoull | ||
77 | and is provided for backwards compatibility with legacy programs. | ||
73 | The conversion is done according to the given | 78 | The conversion is done according to the given |
74 | .Fa base , | 79 | .Fa base , |
75 | which must be between 2 and 36 inclusive, | 80 | which must be a number between 2 and 36 inclusive |
76 | or be the special value 0. | 81 | or the special value 0. |
82 | If the string in | ||
83 | .Fa nptr | ||
84 | represents a negative number, it will be converted to its unsigned equivalent. | ||
85 | This behavior is consistent with what happens when a signed integer type is | ||
86 | cast to its unsigned counterpart. | ||
77 | .Pp | 87 | .Pp |
78 | The string may begin with an arbitrary amount of white space | 88 | The string may begin with an arbitrary amount of whitespace |
79 | (as determined by | 89 | (as determined by |
80 | .Xr isspace 3 ) | 90 | .Xr isspace 3 ) |
81 | followed by a single optional | 91 | followed by a single optional |
@@ -85,26 +95,22 @@ or | |||
85 | sign. | 95 | sign. |
86 | If | 96 | If |
87 | .Fa base | 97 | .Fa base |
88 | is zero or 16, | 98 | is zero or 16, the string may then include a |
89 | the string may then include a | ||
90 | .Ql 0x | 99 | .Ql 0x |
91 | prefix, | 100 | prefix, and the number will be read in base 16; otherwise, a zero |
92 | and the number will be read in base 16; otherwise, a zero | ||
93 | .Fa base | 101 | .Fa base |
94 | is taken as 10 (decimal) unless the next character is | 102 | is taken as 10 (decimal) unless the next character is |
95 | .Ql 0 , | 103 | .Ql 0 , |
96 | in which case it is taken as 8 (octal). | 104 | in which case it is taken as 8 (octal). |
97 | .Pp | 105 | .Pp |
98 | The remainder of the string is converted to an | 106 | The remainder of the string is converted to an |
99 | .Em unsigned long | 107 | .Li unsigned long |
100 | value in the obvious manner, | 108 | value in the obvious manner, stopping at the end of the string |
101 | stopping at the end of the string | ||
102 | or at the first character that does not produce a valid digit | 109 | or at the first character that does not produce a valid digit |
103 | in the given base. | 110 | in the given base. |
104 | (In bases above 10, the letter | 111 | (In bases above 10, the letter |
105 | .Ql A | 112 | .Ql A |
106 | in either upper or lower case | 113 | in either upper or lower case represents 10, |
107 | represents 10, | ||
108 | .Ql B | 114 | .Ql B |
109 | represents 11, and so forth, with | 115 | represents 11, and so forth, with |
110 | .Ql Z | 116 | .Ql Z |
@@ -112,7 +118,7 @@ representing 35.) | |||
112 | .Pp | 118 | .Pp |
113 | If | 119 | If |
114 | .Fa endptr | 120 | .Fa endptr |
115 | is non nil, | 121 | is non-null, |
116 | .Fn strtoul | 122 | .Fn strtoul |
117 | stores the address of the first invalid character in | 123 | stores the address of the first invalid character in |
118 | .Fa *endptr . | 124 | .Fa *endptr . |
@@ -134,12 +140,18 @@ on return, the entire string was valid.) | |||
134 | .Sh RETURN VALUES | 140 | .Sh RETURN VALUES |
135 | The | 141 | The |
136 | .Fn strtoul | 142 | .Fn strtoul |
137 | function | 143 | function returns the result of the conversion, |
138 | returns either the result of the conversion | 144 | unless the value would overflow, in which case |
139 | or, if there was a leading minus sign, | 145 | .Dv ULONG_MAX |
140 | the negation of the result of the conversion, | 146 | is returned and |
141 | unless the original (non-negated) value would overflow; | 147 | .Va errno |
142 | in the latter case, | 148 | is set to |
149 | .Er ERANGE . | ||
150 | If there was a leading minus sign, | ||
151 | .Fn strtoul | ||
152 | returns the (unsigned) negation of the absolute value of the number, unless | ||
153 | the absolute value would overflow. | ||
154 | In this case, | ||
143 | .Fn strtoul | 155 | .Fn strtoul |
144 | returns | 156 | returns |
145 | .Dv ULONG_MAX | 157 | .Dv ULONG_MAX |
@@ -147,18 +159,73 @@ and sets the global variable | |||
147 | .Va errno | 159 | .Va errno |
148 | to | 160 | to |
149 | .Er ERANGE . | 161 | .Er ERANGE . |
162 | .Pp | ||
163 | The | ||
164 | .Fn strtoull | ||
165 | function has identical return values except that | ||
166 | .Dv ULLONG_MAX | ||
167 | is used to indicate overflow. | ||
168 | .Pp | ||
169 | There is no way to determine if | ||
170 | .Fn strtoul | ||
171 | has processed a negative number (and returned an unsigned value) short of | ||
172 | examining the string in | ||
173 | .Fa nptr | ||
174 | directly. | ||
175 | .Sh EXAMPLES | ||
176 | Ensuring that a string is a valid number (i.e., in range and containing no | ||
177 | trailing characters) requires clearing | ||
178 | .Va errno | ||
179 | beforehand explicitly since | ||
180 | .Va errno | ||
181 | is not changed on a successful call to | ||
182 | .Fn strtoul , | ||
183 | and the return value of | ||
184 | .Fn strtoul | ||
185 | cannot be used unambiguously to signal an error: | ||
186 | .Bd -literal -offset indent | ||
187 | char *ep; | ||
188 | unsigned long ulval; | ||
189 | |||
190 | \&... | ||
191 | |||
192 | errno = 0; | ||
193 | ulval = strtoul(buf, &ep, 10); | ||
194 | if (buf[0] == '\e0' || *ep != '\e0') | ||
195 | goto not_a_number; | ||
196 | if (errno == ERANGE && ulval == ULONG_MAX) | ||
197 | goto out_of_range; | ||
198 | .Ed | ||
199 | .Pp | ||
200 | This example will accept | ||
201 | .Dq 12 | ||
202 | but not | ||
203 | .Dq 12foo | ||
204 | or | ||
205 | .Dq 12\en . | ||
206 | If trailing whitespace is acceptable, further checks must be done on | ||
207 | .Va *ep ; | ||
208 | alternately, use | ||
209 | .Xr sscanf 3 . | ||
150 | .Sh ERRORS | 210 | .Sh ERRORS |
151 | .Bl -tag -width Er | 211 | .Bl -tag -width Er |
152 | .It Bq Er ERANGE | 212 | .It Bq Er ERANGE |
153 | The given string was out of range; the value converted has been clamped. | 213 | The given string was out of range; the value converted has been clamped. |
154 | .El | 214 | .El |
155 | .Sh SEE ALSO | 215 | .Sh SEE ALSO |
216 | .Xr sscanf 3 , | ||
156 | .Xr strtol 3 | 217 | .Xr strtol 3 |
157 | .Sh STANDARDS | 218 | .Sh STANDARDS |
158 | The | 219 | The |
159 | .Fn strtoul | 220 | .Fn strtoul |
160 | function | 221 | and |
161 | conforms to | 222 | .Fn strtoull |
162 | .St -ansiC . | 223 | functions conform to |
224 | .St -ansiC-99 . | ||
225 | The | ||
226 | .Fn strtouq | ||
227 | function is a | ||
228 | .Bx | ||
229 | extension and is provided for backwards compatibility with legacy programs. | ||
163 | .Sh BUGS | 230 | .Sh BUGS |
164 | Ignores the current locale. | 231 | Ignores the current locale. |
diff --git a/src/lib/libc/stdlib/strtoul.c b/src/lib/libc/stdlib/strtoul.c index 00f7210fa1..1faa0abbd0 100644 --- a/src/lib/libc/stdlib/strtoul.c +++ b/src/lib/libc/stdlib/strtoul.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,13 +28,12 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)strtoul.c 5.3 (Berkeley) 2/23/91";*/ | 31 | static char *rcsid = "$OpenBSD: strtoul.c,v 1.6 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: strtoul.c,v 1.1.1.1 1995/10/18 08:42:20 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <limits.h> | ||
40 | #include <ctype.h> | 34 | #include <ctype.h> |
41 | #include <errno.h> | 35 | #include <errno.h> |
36 | #include <limits.h> | ||
42 | #include <stdlib.h> | 37 | #include <stdlib.h> |
43 | 38 | ||
44 | /* | 39 | /* |
@@ -48,28 +43,28 @@ static char *rcsid = "$Id: strtoul.c,v 1.1.1.1 1995/10/18 08:42:20 deraadt Exp $ | |||
48 | * alphabets and digits are each contiguous. | 43 | * alphabets and digits are each contiguous. |
49 | */ | 44 | */ |
50 | unsigned long | 45 | unsigned long |
51 | strtoul(nptr, endptr, base) | 46 | strtoul(const char *nptr, char **endptr, int base) |
52 | const char *nptr; | ||
53 | char **endptr; | ||
54 | register int base; | ||
55 | { | 47 | { |
56 | register const char *s = nptr; | 48 | const char *s; |
57 | register unsigned long acc; | 49 | unsigned long acc, cutoff; |
58 | register int c; | 50 | int c; |
59 | register unsigned long cutoff; | 51 | int neg, any, cutlim; |
60 | register int neg = 0, any, cutlim; | ||
61 | 52 | ||
62 | /* | 53 | /* |
63 | * See strtol for comments as to the logic used. | 54 | * See strtol for comments as to the logic used. |
64 | */ | 55 | */ |
56 | s = nptr; | ||
65 | do { | 57 | do { |
66 | c = *s++; | 58 | c = (unsigned char) *s++; |
67 | } while (isspace(c)); | 59 | } while (isspace(c)); |
68 | if (c == '-') { | 60 | if (c == '-') { |
69 | neg = 1; | 61 | neg = 1; |
70 | c = *s++; | 62 | c = *s++; |
71 | } else if (c == '+') | 63 | } else { |
72 | c = *s++; | 64 | neg = 0; |
65 | if (c == '+') | ||
66 | c = *s++; | ||
67 | } | ||
73 | if ((base == 0 || base == 16) && | 68 | if ((base == 0 || base == 16) && |
74 | c == '0' && (*s == 'x' || *s == 'X')) { | 69 | c == '0' && (*s == 'x' || *s == 'X')) { |
75 | c = s[1]; | 70 | c = s[1]; |
@@ -78,9 +73,10 @@ strtoul(nptr, endptr, base) | |||
78 | } | 73 | } |
79 | if (base == 0) | 74 | if (base == 0) |
80 | base = c == '0' ? 8 : 10; | 75 | base = c == '0' ? 8 : 10; |
81 | cutoff = (unsigned long)ULONG_MAX / (unsigned long)base; | 76 | |
82 | cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; | 77 | cutoff = ULONG_MAX / (unsigned long)base; |
83 | for (acc = 0, any = 0;; c = *s++) { | 78 | cutlim = ULONG_MAX % (unsigned long)base; |
79 | for (acc = 0, any = 0;; c = (unsigned char) *s++) { | ||
84 | if (isdigit(c)) | 80 | if (isdigit(c)) |
85 | c -= '0'; | 81 | c -= '0'; |
86 | else if (isalpha(c)) | 82 | else if (isalpha(c)) |
@@ -89,18 +85,19 @@ strtoul(nptr, endptr, base) | |||
89 | break; | 85 | break; |
90 | if (c >= base) | 86 | if (c >= base) |
91 | break; | 87 | break; |
92 | if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim) | 88 | if (any < 0) |
89 | continue; | ||
90 | if (acc > cutoff || acc == cutoff && c > cutlim) { | ||
93 | any = -1; | 91 | any = -1; |
94 | else { | 92 | acc = ULONG_MAX; |
93 | errno = ERANGE; | ||
94 | } else { | ||
95 | any = 1; | 95 | any = 1; |
96 | acc *= base; | 96 | acc *= (unsigned long)base; |
97 | acc += c; | 97 | acc += c; |
98 | } | 98 | } |
99 | } | 99 | } |
100 | if (any < 0) { | 100 | if (neg && any > 0) |
101 | acc = ULONG_MAX; | ||
102 | errno = ERANGE; | ||
103 | } else if (neg) | ||
104 | acc = -acc; | 101 | acc = -acc; |
105 | if (endptr != 0) | 102 | if (endptr != 0) |
106 | *endptr = (char *) (any ? s - 1 : nptr); | 103 | *endptr = (char *) (any ? s - 1 : nptr); |
diff --git a/src/lib/libc/stdlib/strtouq.c b/src/lib/libc/stdlib/strtoull.c index cc647d8d28..5fa841fff7 100644 --- a/src/lib/libc/stdlib/strtouq.c +++ b/src/lib/libc/stdlib/strtoull.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,40 +28,36 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | static char sccsid[] = "@(#)strtouq.c 5.1 (Berkeley) 6/26/92"; | 31 | static const char rcsid[] = "$OpenBSD: strtoull.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; |
36 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
37 | 33 | ||
38 | #include <sys/types.h> | 34 | #include <sys/types.h> |
39 | 35 | ||
40 | #include <limits.h> | ||
41 | #include <errno.h> | ||
42 | #include <ctype.h> | 36 | #include <ctype.h> |
37 | #include <errno.h> | ||
38 | #include <limits.h> | ||
43 | #include <stdlib.h> | 39 | #include <stdlib.h> |
44 | 40 | ||
45 | /* | 41 | /* |
46 | * Convert a string to an unsigned quad integer. | 42 | * Convert a string to an unsigned long long. |
47 | * | 43 | * |
48 | * Ignores `locale' stuff. Assumes that the upper and lower case | 44 | * Ignores `locale' stuff. Assumes that the upper and lower case |
49 | * alphabets and digits are each contiguous. | 45 | * alphabets and digits are each contiguous. |
50 | */ | 46 | */ |
51 | u_quad_t | 47 | unsigned long long |
52 | strtouq(nptr, endptr, base) | 48 | strtoull(const char *nptr, char **endptr, int base) |
53 | const char *nptr; | ||
54 | char **endptr; | ||
55 | register int base; | ||
56 | { | 49 | { |
57 | register const char *s = nptr; | 50 | const char *s; |
58 | register u_quad_t acc; | 51 | unsigned long long acc, cutoff; |
59 | register int c; | 52 | int c; |
60 | register u_quad_t qbase, cutoff; | 53 | int neg, any, cutlim; |
61 | register int neg, any, cutlim; | ||
62 | 54 | ||
63 | /* | 55 | /* |
64 | * See strtoq for comments as to the logic used. | 56 | * See strtoq for comments as to the logic used. |
65 | */ | 57 | */ |
66 | s = nptr; | 58 | s = nptr; |
67 | do { | 59 | do { |
68 | c = *s++; | 60 | c = (unsigned char) *s++; |
69 | } while (isspace(c)); | 61 | } while (isspace(c)); |
70 | if (c == '-') { | 62 | if (c == '-') { |
71 | neg = 1; | 63 | neg = 1; |
@@ -83,10 +75,10 @@ strtouq(nptr, endptr, base) | |||
83 | } | 75 | } |
84 | if (base == 0) | 76 | if (base == 0) |
85 | base = c == '0' ? 8 : 10; | 77 | base = c == '0' ? 8 : 10; |
86 | qbase = (unsigned)base; | 78 | |
87 | cutoff = (u_quad_t)UQUAD_MAX / qbase; | 79 | cutoff = ULLONG_MAX / (unsigned long long)base; |
88 | cutlim = (u_quad_t)UQUAD_MAX % qbase; | 80 | cutlim = ULLONG_MAX % (unsigned long long)base; |
89 | for (acc = 0, any = 0;; c = *s++) { | 81 | for (acc = 0, any = 0;; c = (unsigned char) *s++) { |
90 | if (isdigit(c)) | 82 | if (isdigit(c)) |
91 | c -= '0'; | 83 | c -= '0'; |
92 | else if (isalpha(c)) | 84 | else if (isalpha(c)) |
@@ -95,20 +87,32 @@ strtouq(nptr, endptr, base) | |||
95 | break; | 87 | break; |
96 | if (c >= base) | 88 | if (c >= base) |
97 | break; | 89 | break; |
98 | if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim) | 90 | if (any < 0) |
91 | continue; | ||
92 | if (acc > cutoff || (acc == cutoff && c > cutlim)) { | ||
99 | any = -1; | 93 | any = -1; |
100 | else { | 94 | acc = ULLONG_MAX; |
95 | errno = ERANGE; | ||
96 | } else { | ||
101 | any = 1; | 97 | any = 1; |
102 | acc *= qbase; | 98 | acc *= (unsigned long long)base; |
103 | acc += c; | 99 | acc += c; |
104 | } | 100 | } |
105 | } | 101 | } |
106 | if (any < 0) { | 102 | if (neg && any > 0) |
107 | acc = UQUAD_MAX; | ||
108 | errno = ERANGE; | ||
109 | } else if (neg) | ||
110 | acc = -acc; | 103 | acc = -acc; |
111 | if (endptr != 0) | 104 | if (endptr != 0) |
112 | *endptr = (char *) (any ? s - 1 : nptr); | 105 | *endptr = (char *) (any ? s - 1 : nptr); |
113 | return (acc); | 106 | return (acc); |
114 | } | 107 | } |
108 | |||
109 | #ifdef __weak_alias | ||
110 | __weak_alias(strtouq, strtoull); | ||
111 | #else | ||
112 | u_quad_t | ||
113 | strtouq(const char *nptr, char **endptr, int base) | ||
114 | { | ||
115 | |||
116 | return ((u_quad_t)strtoull(nptr, endptr, base)); | ||
117 | } | ||
118 | #endif | ||
diff --git a/src/lib/libc/stdlib/system.3 b/src/lib/libc/stdlib/system.3 index 520f51db0a..1034b01066 100644 --- a/src/lib/libc/stdlib/system.3 +++ b/src/lib/libc/stdlib/system.3 | |||
@@ -13,11 +13,7 @@ | |||
13 | .\" 2. Redistributions in binary form must reproduce the above copyright | 13 | .\" 2. Redistributions in binary form must reproduce the above copyright |
14 | .\" notice, this list of conditions and the following disclaimer in the | 14 | .\" notice, this list of conditions and the following disclaimer in the |
15 | .\" documentation and/or other materials provided with the distribution. | 15 | .\" documentation and/or other materials provided with the distribution. |
16 | .\" 3. All advertising materials mentioning features or use of this software | 16 | .\" 3. Neither the name of the University nor the names of its contributors |
17 | .\" must display the following acknowledgement: | ||
18 | .\" This product includes software developed by the University of | ||
19 | .\" California, Berkeley and its contributors. | ||
20 | .\" 4. Neither the name of the University nor the names of its contributors | ||
21 | .\" may be used to endorse or promote products derived from this software | 17 | .\" may be used to endorse or promote products derived from this software |
22 | .\" without specific prior written permission. | 18 | .\" without specific prior written permission. |
23 | .\" | 19 | .\" |
@@ -33,8 +29,7 @@ | |||
33 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
34 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
35 | .\" | 31 | .\" |
36 | .\" from: @(#)system.3 6.5 (Berkeley) 6/29/91 | 32 | .\" $OpenBSD: system.3,v 1.9 2003/06/02 20:18:38 millert Exp $ |
37 | .\" $Id: system.3,v 1.1.1.1 1995/10/18 08:42:20 deraadt Exp $ | ||
38 | .\" | 33 | .\" |
39 | .Dd June 29, 1991 | 34 | .Dd June 29, 1991 |
40 | .Dt SYSTEM 3 | 35 | .Dt SYSTEM 3 |
@@ -49,8 +44,7 @@ | |||
49 | .Sh DESCRIPTION | 44 | .Sh DESCRIPTION |
50 | The | 45 | The |
51 | .Fn system | 46 | .Fn system |
52 | function | 47 | function hands the argument |
53 | hands the argument | ||
54 | .Fa string | 48 | .Fa string |
55 | to the command interpreter | 49 | to the command interpreter |
56 | .Xr sh 1 . | 50 | .Xr sh 1 . |
@@ -64,36 +58,42 @@ and blocking | |||
64 | .Pp | 58 | .Pp |
65 | If | 59 | If |
66 | .Fa string | 60 | .Fa string |
67 | is a | 61 | is |
68 | .Dv NULL | 62 | .Dv NULL , |
69 | pointer, | ||
70 | .Fn system | 63 | .Fn system |
71 | will return non-zero. | 64 | will return non-zero. |
72 | Otherwise, | 65 | Otherwise, |
73 | .Fn system | 66 | .Fn system |
74 | returns the termination status of the shell in the format specified by | 67 | returns the termination status of the shell in the format specified by |
75 | .Xr waitpid 3 . | 68 | .Xr waitpid 2 . |
76 | .Sh RETURN VALUES | 69 | .Sh RETURN VALUES |
77 | If a child process cannot be created, or the termination status of | 70 | If a child process cannot be created, or the termination status of |
78 | the shell cannot be obtained, | 71 | the shell cannot be obtained, |
79 | .Fn system | 72 | .Fn system |
80 | returns -1 and sets | 73 | returns \-1 and sets |
81 | .Va errno | 74 | .Va errno |
82 | to indicate the error. | 75 | to indicate the error. |
83 | If execution of the shell fails, | 76 | If execution of the shell fails, |
84 | .Fn system | 77 | .Fn system |
85 | returns the termination status for a program that terminates with a call of | 78 | returns the termination status for a program that terminates with a call of |
86 | .Fn exit 127 . | 79 | .Fn exit 127 . |
87 | .Sh SEE ALSO | 80 | .Sh SEE ALSO |
88 | .Xr sh 1 , | 81 | .Xr sh 1 , |
89 | .Xr execve 2 , | 82 | .Xr execve 2 , |
90 | .Xr popen 3 , | 83 | .Xr waitpid 2 , |
91 | .Xr waitpid 3 , | 84 | .Xr popen 3 |
92 | .Sh STANDARDS | 85 | .Sh STANDARDS |
93 | The | 86 | The |
94 | .Fn system | 87 | .Fn system |
95 | function | 88 | function conforms to |
96 | conforms to | 89 | .St -ansiC |
97 | .St -ansiC | ||
98 | and | 90 | and |
99 | .St -1003.2-92 . | 91 | .St -p1003.2-92 . |
92 | .Sh CAVEATS | ||
93 | Never supply the | ||
94 | .Fn system | ||
95 | function with a command containing any part of an unsanitized user-supplied | ||
96 | string. | ||
97 | Shell meta-characters present will be honored by the | ||
98 | .Xr sh 1 | ||
99 | command interpreter. | ||
diff --git a/src/lib/libc/stdlib/system.c b/src/lib/libc/stdlib/system.c index c2f39325f6..ebf5577674 100644 --- a/src/lib/libc/stdlib/system.c +++ b/src/lib/libc/stdlib/system.c | |||
@@ -10,11 +10,7 @@ | |||
10 | * 2. Redistributions in binary form must reproduce the above copyright | 10 | * 2. Redistributions in binary form must reproduce the above copyright |
11 | * notice, this list of conditions and the following disclaimer in the | 11 | * notice, this list of conditions and the following disclaimer in the |
12 | * documentation and/or other materials provided with the distribution. | 12 | * documentation and/or other materials provided with the distribution. |
13 | * 3. All advertising materials mentioning features or use of this software | 13 | * 3. Neither the name of the University nor the names of its contributors |
14 | * must display the following acknowledgement: | ||
15 | * This product includes software developed by the University of | ||
16 | * California, Berkeley and its contributors. | ||
17 | * 4. Neither the name of the University nor the names of its contributors | ||
18 | * may be used to endorse or promote products derived from this software | 14 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 15 | * without specific prior written permission. |
20 | * | 16 | * |
@@ -32,8 +28,7 @@ | |||
32 | */ | 28 | */ |
33 | 29 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 30 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)system.c 5.10 (Berkeley) 2/23/91";*/ | 31 | static char *rcsid = "$OpenBSD: system.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; |
36 | static char *rcsid = "$Id: system.c,v 1.1.1.1 1995/10/18 08:42:20 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 32 | #endif /* LIBC_SCCS and not lint */ |
38 | 33 | ||
39 | #include <sys/types.h> | 34 | #include <sys/types.h> |
@@ -46,25 +41,28 @@ static char *rcsid = "$Id: system.c,v 1.1.1.1 1995/10/18 08:42:20 deraadt Exp $" | |||
46 | extern char **environ; | 41 | extern char **environ; |
47 | 42 | ||
48 | int | 43 | int |
49 | system(command) | 44 | system(const char *command) |
50 | const char *command; | ||
51 | { | 45 | { |
52 | pid_t pid; | 46 | pid_t pid; |
53 | sig_t intsave, quitsave; | 47 | sig_t intsave, quitsave; |
54 | int omask; | 48 | sigset_t mask, omask; |
55 | int pstat; | 49 | int pstat; |
56 | char *argp[] = {"sh", "-c", (char *) command, NULL}; | 50 | char *argp[] = {"sh", "-c", NULL, NULL}; |
57 | 51 | ||
58 | if (!command) /* just checking... */ | 52 | if (!command) /* just checking... */ |
59 | return(1); | 53 | return(1); |
60 | 54 | ||
61 | omask = sigblock(sigmask(SIGCHLD)); | 55 | argp[2] = (char *)command; |
62 | switch(pid = vfork()) { | 56 | |
57 | sigemptyset(&mask); | ||
58 | sigaddset(&mask, SIGCHLD); | ||
59 | sigprocmask(SIG_BLOCK, &mask, &omask); | ||
60 | switch (pid = vfork()) { | ||
63 | case -1: /* error */ | 61 | case -1: /* error */ |
64 | (void)sigsetmask(omask); | 62 | sigprocmask(SIG_SETMASK, &omask, NULL); |
65 | return(-1); | 63 | return(-1); |
66 | case 0: /* child */ | 64 | case 0: /* child */ |
67 | (void)sigsetmask(omask); | 65 | sigprocmask(SIG_SETMASK, &omask, NULL); |
68 | execve(_PATH_BSHELL, argp, environ); | 66 | execve(_PATH_BSHELL, argp, environ); |
69 | _exit(127); | 67 | _exit(127); |
70 | } | 68 | } |
@@ -72,8 +70,8 @@ system(command) | |||
72 | intsave = signal(SIGINT, SIG_IGN); | 70 | intsave = signal(SIGINT, SIG_IGN); |
73 | quitsave = signal(SIGQUIT, SIG_IGN); | 71 | quitsave = signal(SIGQUIT, SIG_IGN); |
74 | pid = waitpid(pid, (int *)&pstat, 0); | 72 | pid = waitpid(pid, (int *)&pstat, 0); |
75 | (void)sigsetmask(omask); | 73 | sigprocmask(SIG_SETMASK, &omask, NULL); |
76 | (void)signal(SIGINT, intsave); | 74 | (void)signal(SIGINT, intsave); |
77 | (void)signal(SIGQUIT, quitsave); | 75 | (void)signal(SIGQUIT, quitsave); |
78 | return(pid == -1 ? -1 : pstat); | 76 | return (pid == -1 ? -1 : pstat); |
79 | } | 77 | } |
diff --git a/src/lib/libc/stdlib/tfind.c b/src/lib/libc/stdlib/tfind.c new file mode 100644 index 0000000000..ff6bcd742d --- /dev/null +++ b/src/lib/libc/stdlib/tfind.c | |||
@@ -0,0 +1,41 @@ | |||
1 | /* $OpenBSD: tfind.c,v 1.5 2005/03/30 18:51:49 pat Exp $ */ | ||
2 | |||
3 | /* | ||
4 | * Tree search generalized from Knuth (6.2.2) Algorithm T just like | ||
5 | * the AT&T man page says. | ||
6 | * | ||
7 | * The node_t structure is for internal use only, lint doesn't grok it. | ||
8 | * | ||
9 | * Written by reading the System V Interface Definition, not the code. | ||
10 | * | ||
11 | * Totally public domain. | ||
12 | */ | ||
13 | /*LINTLIBRARY*/ | ||
14 | #include <search.h> | ||
15 | |||
16 | typedef struct node_t | ||
17 | { | ||
18 | char *key; | ||
19 | struct node_t *llink, *rlink; | ||
20 | } node; | ||
21 | |||
22 | /* find a node, or return 0 */ | ||
23 | void * | ||
24 | tfind(const void *vkey, void * const *vrootp, | ||
25 | int (*compar)(const void *, const void *)) | ||
26 | { | ||
27 | char *key = (char *)vkey; | ||
28 | node **rootp = (node **)vrootp; | ||
29 | |||
30 | if (rootp == (struct node_t **)0) | ||
31 | return ((struct node_t *)0); | ||
32 | while (*rootp != (struct node_t *)0) { /* T1: */ | ||
33 | int r; | ||
34 | if ((r = (*compar)(key, (*rootp)->key)) == 0) /* T2: */ | ||
35 | return (*rootp); /* key found */ | ||
36 | rootp = (r < 0) ? | ||
37 | &(*rootp)->llink : /* T3: follow left branch */ | ||
38 | &(*rootp)->rlink; /* T4: follow right branch */ | ||
39 | } | ||
40 | return (node *)0; | ||
41 | } | ||
diff --git a/src/lib/libc/stdlib/tsearch.3 b/src/lib/libc/stdlib/tsearch.3 new file mode 100644 index 0000000000..15d7b84a3a --- /dev/null +++ b/src/lib/libc/stdlib/tsearch.3 | |||
@@ -0,0 +1,116 @@ | |||
1 | .\" $OpenBSD: tsearch.3,v 1.12 2003/06/17 21:56:24 millert Exp $ | ||
2 | .\" | ||
3 | .\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> | ||
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 | .Dd June 15, 1997 | ||
18 | .Dt TSEARCH 3 | ||
19 | .Os | ||
20 | .Sh NAME | ||
21 | .Nm tsearch , | ||
22 | .Nm tfind , | ||
23 | .Nm tdelete , | ||
24 | .Nm twalk | ||
25 | .Nd manipulate binary search trees | ||
26 | .Sh SYNOPSIS | ||
27 | .Fd #include <search.h> | ||
28 | .Ft void * | ||
29 | .Fn tdelete "const void *key" "void **rootp" "int (*compar) (const void *, const void *)" | ||
30 | .Ft void * | ||
31 | .Fn tfind "const void *key" "void * const *rootp" "int (*compar) (const void *, const void *)" | ||
32 | .Ft void * | ||
33 | .Fn tsearch "const void *key" "void **rootp" "int (*compar) (const void *, const void *)" | ||
34 | .Ft void | ||
35 | .Fn twalk "const void *root" "void (*action) (const void *, VISIT, int)" | ||
36 | .Sh DESCRIPTION | ||
37 | The | ||
38 | .Fn tdelete , | ||
39 | .Fn tfind , | ||
40 | .Fn tsearch , | ||
41 | and | ||
42 | .Fn twalk | ||
43 | functions manage binary search trees based on algorithms T and D | ||
44 | from Knuth (6.2.2). | ||
45 | The comparison function passed in by | ||
46 | the user has the same style of return values as | ||
47 | .Xr strcmp 3 . | ||
48 | .Pp | ||
49 | .Fn tfind | ||
50 | searches for the datum matched by the argument | ||
51 | .Fa key | ||
52 | in the binary tree rooted at | ||
53 | .Fa rootp , | ||
54 | returning a pointer to the datum if it is found and | ||
55 | .Dv NULL | ||
56 | if it is not. | ||
57 | .Pp | ||
58 | .Fn tsearch | ||
59 | is identical to | ||
60 | .Fn tfind | ||
61 | except that if no match is found, | ||
62 | .Fa key | ||
63 | is inserted into the tree and a pointer to it is returned. | ||
64 | If | ||
65 | .Fa rootp | ||
66 | points to a null value a new binary search tree is created. | ||
67 | .Pp | ||
68 | .Fn tdelete | ||
69 | deletes a node from the specified binary search tree and returns | ||
70 | a pointer to the parent of the node to be deleted. | ||
71 | It takes the same arguments as | ||
72 | .Fn tfind | ||
73 | and | ||
74 | .Fn tsearch . | ||
75 | If the node to be deleted is the root of the binary search tree, | ||
76 | .Fa rootp | ||
77 | will be adjusted. | ||
78 | .Pp | ||
79 | .Fn twalk | ||
80 | walks the binary search tree rooted in | ||
81 | .Fa root | ||
82 | and calls the function | ||
83 | .Fa action | ||
84 | on each node. | ||
85 | .Fa action | ||
86 | is called with three arguments: a pointer to the current node, | ||
87 | a value from the enum | ||
88 | .Sy "typedef enum { preorder, postorder, endorder, leaf } VISIT;" | ||
89 | specifying the traversal type, and a node level (where level | ||
90 | zero is the root of the tree). | ||
91 | .Sh RETURN VALUES | ||
92 | The | ||
93 | .Fn tsearch | ||
94 | function returns | ||
95 | .Dv NULL | ||
96 | if allocation of a new node fails (usually | ||
97 | due to a lack of free memory). | ||
98 | .Pp | ||
99 | .Fn tfind , | ||
100 | .Fn tsearch , | ||
101 | and | ||
102 | .Fn tdelete | ||
103 | return | ||
104 | .Dv NULL | ||
105 | if | ||
106 | .Fa rootp | ||
107 | is | ||
108 | .Dv NULL | ||
109 | or the datum cannot be found. | ||
110 | .Pp | ||
111 | The | ||
112 | .Fn twalk | ||
113 | function returns no value. | ||
114 | .Sh SEE ALSO | ||
115 | .Xr bsearch 3 , | ||
116 | .Xr lsearch 3 | ||
diff --git a/src/lib/libc/stdlib/tsearch.c b/src/lib/libc/stdlib/tsearch.c new file mode 100644 index 0000000000..a5d0c2b9b3 --- /dev/null +++ b/src/lib/libc/stdlib/tsearch.c | |||
@@ -0,0 +1,119 @@ | |||
1 | /* $OpenBSD: tsearch.c,v 1.5 2005/03/30 18:51:49 pat Exp $ */ | ||
2 | |||
3 | /* | ||
4 | * Tree search generalized from Knuth (6.2.2) Algorithm T just like | ||
5 | * the AT&T man page says. | ||
6 | * | ||
7 | * The node_t structure is for internal use only, lint doesn't grok it. | ||
8 | * | ||
9 | * Written by reading the System V Interface Definition, not the code. | ||
10 | * | ||
11 | * Totally public domain. | ||
12 | */ | ||
13 | /*LINTLIBRARY*/ | ||
14 | |||
15 | #include <search.h> | ||
16 | #include <stdlib.h> | ||
17 | |||
18 | typedef struct node_t { | ||
19 | char *key; | ||
20 | struct node_t *left, *right; | ||
21 | } node; | ||
22 | |||
23 | /* find or insert datum into search tree */ | ||
24 | void * | ||
25 | tsearch(const void *vkey, void **vrootp, | ||
26 | int (*compar)(const void *, const void *)) | ||
27 | { | ||
28 | node *q; | ||
29 | char *key = (char *)vkey; | ||
30 | node **rootp = (node **)vrootp; | ||
31 | |||
32 | if (rootp == (struct node_t **)0) | ||
33 | return ((void *)0); | ||
34 | while (*rootp != (struct node_t *)0) { /* Knuth's T1: */ | ||
35 | int r; | ||
36 | |||
37 | if ((r = (*compar)(key, (*rootp)->key)) == 0) /* T2: */ | ||
38 | return ((void *)*rootp); /* we found it! */ | ||
39 | rootp = (r < 0) ? | ||
40 | &(*rootp)->left : /* T3: follow left branch */ | ||
41 | &(*rootp)->right; /* T4: follow right branch */ | ||
42 | } | ||
43 | q = (node *) malloc(sizeof(node)); /* T5: key not found */ | ||
44 | if (q != (struct node_t *)0) { /* make new node */ | ||
45 | *rootp = q; /* link new node to old */ | ||
46 | q->key = key; /* initialize new node */ | ||
47 | q->left = q->right = (struct node_t *)0; | ||
48 | } | ||
49 | return ((void *)q); | ||
50 | } | ||
51 | |||
52 | /* delete node with given key */ | ||
53 | void * | ||
54 | tdelete(const void *vkey, void **vrootp, | ||
55 | int (*compar)(const void *, const void *)) | ||
56 | { | ||
57 | node **rootp = (node **)vrootp; | ||
58 | char *key = (char *)vkey; | ||
59 | node *p; | ||
60 | node *q; | ||
61 | node *r; | ||
62 | int cmp; | ||
63 | |||
64 | if (rootp == (struct node_t **)0 || (p = *rootp) == (struct node_t *)0) | ||
65 | return ((struct node_t *)0); | ||
66 | while ((cmp = (*compar)(key, (*rootp)->key)) != 0) { | ||
67 | p = *rootp; | ||
68 | rootp = (cmp < 0) ? | ||
69 | &(*rootp)->left : /* follow left branch */ | ||
70 | &(*rootp)->right; /* follow right branch */ | ||
71 | if (*rootp == (struct node_t *)0) | ||
72 | return ((void *)0); /* key not found */ | ||
73 | } | ||
74 | r = (*rootp)->right; /* D1: */ | ||
75 | if ((q = (*rootp)->left) == (struct node_t *)0) /* Left (struct node_t *)0? */ | ||
76 | q = r; | ||
77 | else if (r != (struct node_t *)0) { /* Right link is null? */ | ||
78 | if (r->left == (struct node_t *)0) { /* D2: Find successor */ | ||
79 | r->left = q; | ||
80 | q = r; | ||
81 | } else { /* D3: Find (struct node_t *)0 link */ | ||
82 | for (q = r->left; q->left != (struct node_t *)0; q = r->left) | ||
83 | r = q; | ||
84 | r->left = q->right; | ||
85 | q->left = (*rootp)->left; | ||
86 | q->right = (*rootp)->right; | ||
87 | } | ||
88 | } | ||
89 | free((struct node_t *) *rootp); /* D4: Free node */ | ||
90 | *rootp = q; /* link parent to new node */ | ||
91 | return(p); | ||
92 | } | ||
93 | |||
94 | /* Walk the nodes of a tree */ | ||
95 | static void | ||
96 | trecurse(node *root, void (*action)(const void *, VISIT, int), int level) | ||
97 | { | ||
98 | if (root->left == (struct node_t *)0 && root->right == (struct node_t *)0) | ||
99 | (*action)(root, leaf, level); | ||
100 | else { | ||
101 | (*action)(root, preorder, level); | ||
102 | if (root->left != (struct node_t *)0) | ||
103 | trecurse(root->left, action, level + 1); | ||
104 | (*action)(root, postorder, level); | ||
105 | if (root->right != (struct node_t *)0) | ||
106 | trecurse(root->right, action, level + 1); | ||
107 | (*action)(root, endorder, level); | ||
108 | } | ||
109 | } | ||
110 | |||
111 | /* Walk the nodes of a tree */ | ||
112 | void | ||
113 | twalk(const void *vroot, void (*action)(const void *, VISIT, int)) | ||
114 | { | ||
115 | node *root = (node *)vroot; | ||
116 | |||
117 | if (root != (node *)0 && action != (void (*)(const void *, VISIT, int))0) | ||
118 | trecurse(root, action, 0); | ||
119 | } | ||