1 /* $NetBSD: strings.c,v 1.16 2007/10/29 23:20:39 christos Exp $ */
4 * Copyright (c) 1980, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. 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.
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
32 #include <sys/cdefs.h>
35 static char sccsid
[] = "@(#)strings.c 8.1 (Berkeley) 6/6/93";
37 __RCSID("$NetBSD: strings.c,v 1.16 2007/10/29 23:20:39 christos Exp $");
42 * Mail -- a mail program
44 * String allocation routines.
45 * Strings handed out here are reclaimed at the top of the command
46 * loop each time, so they need not be freed.
52 #define STRINGSIZE ((unsigned) 128)/* Dynamic allocation units */
55 * The pointers for the string allocation routines,
56 * there are NSPACE independent areas.
57 * The first holds STRINGSIZE bytes, the next
58 * twice as much, and so on.
60 #define NSPACE 25 /* Total number of string spaces */
61 static struct strings
{
62 char *s_topFree
; /* Beginning of this area */
63 char *s_nextFree
; /* Next alloctable place here */
64 size_t s_nleft
; /* Number of bytes left here */
68 * Allocate size more bytes of space and return the address of the
69 * first byte to the caller. An even number of bytes are always
70 * allocated so that the space will always be on a word boundary.
71 * The string spaces are of exponentially increasing size, to satisfy
72 * the occasional user with enormous string size requests.
83 s
+= (sizeof(char *) - 1);
84 s
&= ~(sizeof(char *) - 1);
86 for (sp
= &stringdope
[0]; sp
< &stringdope
[NSPACE
]; sp
++) {
87 if (sp
->s_topFree
== NULL
&& (STRINGSIZE
<< idx
) >= s
)
93 if (sp
>= &stringdope
[NSPACE
])
94 errx(1, "String too large");
95 if (sp
->s_topFree
== NULL
) {
96 idx
= (int)(sp
- &stringdope
[0]);
97 sp
->s_topFree
= malloc(STRINGSIZE
<< idx
);
98 if (sp
->s_topFree
== NULL
)
99 errx(1, "No room for space %d", idx
);
100 sp
->s_nextFree
= sp
->s_topFree
;
101 sp
->s_nleft
= STRINGSIZE
<< idx
;
110 * Allocate zeroed space for 'number' elments of size 'size'.
113 csalloc(size_t number
, size_t size
)
116 p
= salloc(number
* size
);
117 (void)memset(p
, 0, number
* size
);
122 * Reset the string area to be empty.
123 * Called to free all strings allocated
135 for (sp
= &stringdope
[0]; sp
< &stringdope
[NSPACE
]; sp
++) {
136 if (sp
->s_topFree
== NULL
)
138 sp
->s_nextFree
= sp
->s_topFree
;
139 sp
->s_nleft
= STRINGSIZE
<< idx
;
145 * Make the string area permanent.
146 * Meant to be called in main, after initialization.
153 for (sp
= &stringdope
[0]; sp
< &stringdope
[NSPACE
]; sp
++)
154 sp
->s_topFree
= NULL
;