xref: /illumos-gate/usr/src/cmd/sendmail/libsm/strl.c (revision 2a8bcb4e)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * Copyright (c) 1999-2002 Sendmail, Inc. and its suppliers.
3*7c478bd9Sstevel@tonic-gate  *	All rights reserved.
4*7c478bd9Sstevel@tonic-gate  *
5*7c478bd9Sstevel@tonic-gate  * By using this file, you agree to the terms and conditions set
6*7c478bd9Sstevel@tonic-gate  * forth in the LICENSE file which can be found at the top level of
7*7c478bd9Sstevel@tonic-gate  * the sendmail distribution.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  */
10*7c478bd9Sstevel@tonic-gate 
11*7c478bd9Sstevel@tonic-gate #include <sm/gen.h>
12*7c478bd9Sstevel@tonic-gate SM_RCSID("@(#)$Id: strl.c,v 1.31 2002/01/20 01:41:25 gshapiro Exp $")
13*7c478bd9Sstevel@tonic-gate #include <sm/config.h>
14*7c478bd9Sstevel@tonic-gate #include <sm/string.h>
15*7c478bd9Sstevel@tonic-gate 
16*7c478bd9Sstevel@tonic-gate /*
17*7c478bd9Sstevel@tonic-gate **  Notice: this file is used by libmilter. Please try to avoid
18*7c478bd9Sstevel@tonic-gate **	using libsm specific functions.
19*7c478bd9Sstevel@tonic-gate */
20*7c478bd9Sstevel@tonic-gate 
21*7c478bd9Sstevel@tonic-gate /*
22*7c478bd9Sstevel@tonic-gate **  XXX the type of the length parameter has been changed
23*7c478bd9Sstevel@tonic-gate **  from size_t to ssize_t to avoid theoretical problems with negative
24*7c478bd9Sstevel@tonic-gate **  numbers passed into these functions.
25*7c478bd9Sstevel@tonic-gate **  The real solution to this problem is to make sure that this doesn't
26*7c478bd9Sstevel@tonic-gate **  happen, but for now we'll use this workaround.
27*7c478bd9Sstevel@tonic-gate */
28*7c478bd9Sstevel@tonic-gate 
29*7c478bd9Sstevel@tonic-gate /*
30*7c478bd9Sstevel@tonic-gate **  SM_STRLCPY -- size bounded string copy
31*7c478bd9Sstevel@tonic-gate **
32*7c478bd9Sstevel@tonic-gate **	This is a bounds-checking variant of strcpy.
33*7c478bd9Sstevel@tonic-gate **	If size > 0, copy up to size-1 characters from the nul terminated
34*7c478bd9Sstevel@tonic-gate **	string src to dst, nul terminating the result.  If size == 0,
35*7c478bd9Sstevel@tonic-gate **	the dst buffer is not modified.
36*7c478bd9Sstevel@tonic-gate **	Additional note: this function has been "tuned" to run fast and tested
37*7c478bd9Sstevel@tonic-gate **	as such (versus versions in some OS's libc).
38*7c478bd9Sstevel@tonic-gate **
39*7c478bd9Sstevel@tonic-gate **	The result is strlen(src).  You can detect truncation (not all
40*7c478bd9Sstevel@tonic-gate **	of the characters in the source string were copied) using the
41*7c478bd9Sstevel@tonic-gate **	following idiom:
42*7c478bd9Sstevel@tonic-gate **
43*7c478bd9Sstevel@tonic-gate **		char *s, buf[BUFSIZ];
44*7c478bd9Sstevel@tonic-gate **		...
45*7c478bd9Sstevel@tonic-gate **		if (sm_strlcpy(buf, s, sizeof(buf)) >= sizeof(buf))
46*7c478bd9Sstevel@tonic-gate **			goto overflow;
47*7c478bd9Sstevel@tonic-gate **
48*7c478bd9Sstevel@tonic-gate **	Parameters:
49*7c478bd9Sstevel@tonic-gate **		dst -- destination buffer
50*7c478bd9Sstevel@tonic-gate **		src -- source string
51*7c478bd9Sstevel@tonic-gate **		size -- size of destination buffer
52*7c478bd9Sstevel@tonic-gate **
53*7c478bd9Sstevel@tonic-gate **	Returns:
54*7c478bd9Sstevel@tonic-gate **		strlen(src)
55*7c478bd9Sstevel@tonic-gate */
56*7c478bd9Sstevel@tonic-gate 
57*7c478bd9Sstevel@tonic-gate size_t
58*7c478bd9Sstevel@tonic-gate sm_strlcpy(dst, src, size)
59*7c478bd9Sstevel@tonic-gate 	register char *dst;
60*7c478bd9Sstevel@tonic-gate 	register const char *src;
61*7c478bd9Sstevel@tonic-gate 	ssize_t size;
62*7c478bd9Sstevel@tonic-gate {
63*7c478bd9Sstevel@tonic-gate 	register ssize_t i;
64*7c478bd9Sstevel@tonic-gate 
65*7c478bd9Sstevel@tonic-gate 	if (size-- <= 0)
66*7c478bd9Sstevel@tonic-gate 		return strlen(src);
67*7c478bd9Sstevel@tonic-gate 	for (i = 0; i < size && (dst[i] = src[i]) != 0; i++)
68*7c478bd9Sstevel@tonic-gate 		continue;
69*7c478bd9Sstevel@tonic-gate 	dst[i] = '\0';
70*7c478bd9Sstevel@tonic-gate 	if (src[i] == '\0')
71*7c478bd9Sstevel@tonic-gate 		return i;
72*7c478bd9Sstevel@tonic-gate 	else
73*7c478bd9Sstevel@tonic-gate 		return i + strlen(src + i);
74*7c478bd9Sstevel@tonic-gate }
75*7c478bd9Sstevel@tonic-gate 
76*7c478bd9Sstevel@tonic-gate /*
77*7c478bd9Sstevel@tonic-gate **  SM_STRLCAT -- size bounded string concatenation
78*7c478bd9Sstevel@tonic-gate **
79*7c478bd9Sstevel@tonic-gate **	This is a bounds-checking variant of strcat.
80*7c478bd9Sstevel@tonic-gate **	If strlen(dst) < size, then append at most size - strlen(dst) - 1
81*7c478bd9Sstevel@tonic-gate **	characters from the source string to the destination string,
82*7c478bd9Sstevel@tonic-gate **	nul terminating the result.  Otherwise, dst is not modified.
83*7c478bd9Sstevel@tonic-gate **
84*7c478bd9Sstevel@tonic-gate **	The result is the initial length of dst + the length of src.
85*7c478bd9Sstevel@tonic-gate **	You can detect overflow (not all of the characters in the
86*7c478bd9Sstevel@tonic-gate **	source string were copied) using the following idiom:
87*7c478bd9Sstevel@tonic-gate **
88*7c478bd9Sstevel@tonic-gate **		char *s, buf[BUFSIZ];
89*7c478bd9Sstevel@tonic-gate **		...
90*7c478bd9Sstevel@tonic-gate **		if (sm_strlcat(buf, s, sizeof(buf)) >= sizeof(buf))
91*7c478bd9Sstevel@tonic-gate **			goto overflow;
92*7c478bd9Sstevel@tonic-gate **
93*7c478bd9Sstevel@tonic-gate **	Parameters:
94*7c478bd9Sstevel@tonic-gate **		dst -- nul-terminated destination string buffer
95*7c478bd9Sstevel@tonic-gate **		src -- nul-terminated source string
96*7c478bd9Sstevel@tonic-gate **		size -- size of destination buffer
97*7c478bd9Sstevel@tonic-gate **
98*7c478bd9Sstevel@tonic-gate **	Returns:
99*7c478bd9Sstevel@tonic-gate **		total length of the string tried to create
100*7c478bd9Sstevel@tonic-gate **		(= initial length of dst + length of src)
101*7c478bd9Sstevel@tonic-gate */
102*7c478bd9Sstevel@tonic-gate 
103*7c478bd9Sstevel@tonic-gate size_t
sm_strlcat(dst,src,size)104*7c478bd9Sstevel@tonic-gate sm_strlcat(dst, src, size)
105*7c478bd9Sstevel@tonic-gate 	register char *dst;
106*7c478bd9Sstevel@tonic-gate 	register const char *src;
107*7c478bd9Sstevel@tonic-gate 	ssize_t size;
108*7c478bd9Sstevel@tonic-gate {
109*7c478bd9Sstevel@tonic-gate 	register ssize_t i, j, o;
110*7c478bd9Sstevel@tonic-gate 
111*7c478bd9Sstevel@tonic-gate 	o = strlen(dst);
112*7c478bd9Sstevel@tonic-gate 	if (size < o + 1)
113*7c478bd9Sstevel@tonic-gate 		return o + strlen(src);
114*7c478bd9Sstevel@tonic-gate 	size -= o + 1;
115*7c478bd9Sstevel@tonic-gate 	for (i = 0, j = o; i < size && (dst[j] = src[i]) != 0; i++, j++)
116*7c478bd9Sstevel@tonic-gate 		continue;
117*7c478bd9Sstevel@tonic-gate 	dst[j] = '\0';
118*7c478bd9Sstevel@tonic-gate 	if (src[i] == '\0')
119*7c478bd9Sstevel@tonic-gate 		return j;
120*7c478bd9Sstevel@tonic-gate 	else
121*7c478bd9Sstevel@tonic-gate 		return j + strlen(src + i);
122*7c478bd9Sstevel@tonic-gate }
123*7c478bd9Sstevel@tonic-gate /*
124*7c478bd9Sstevel@tonic-gate **  SM_STRLCAT2 -- append two strings to dst obeying length and
125*7c478bd9Sstevel@tonic-gate **		'\0' terminate it
126*7c478bd9Sstevel@tonic-gate **
127*7c478bd9Sstevel@tonic-gate **		strlcat2 will append at most len - strlen(dst) - 1 chars.
128*7c478bd9Sstevel@tonic-gate **		terminates with '\0' if len > 0
129*7c478bd9Sstevel@tonic-gate **		dst = dst "+" src1 "+" src2
130*7c478bd9Sstevel@tonic-gate **		use this instead of sm_strlcat(dst,src1); sm_strlcat(dst,src2);
131*7c478bd9Sstevel@tonic-gate **		for better speed.
132*7c478bd9Sstevel@tonic-gate **
133*7c478bd9Sstevel@tonic-gate **	Parameters:
134*7c478bd9Sstevel@tonic-gate **		dst -- "destination" string.
135*7c478bd9Sstevel@tonic-gate **		src1 -- "from" string 1.
136*7c478bd9Sstevel@tonic-gate **		src2 -- "from" string 2.
137*7c478bd9Sstevel@tonic-gate **		len -- max. length of "destination" string.
138*7c478bd9Sstevel@tonic-gate **
139*7c478bd9Sstevel@tonic-gate **	Returns:
140*7c478bd9Sstevel@tonic-gate **		total length of the string tried to create
141*7c478bd9Sstevel@tonic-gate **		(= initial length of dst + length of src)
142*7c478bd9Sstevel@tonic-gate **		if this is greater than len then an overflow would have
143*7c478bd9Sstevel@tonic-gate **		occurred.
144*7c478bd9Sstevel@tonic-gate **
145*7c478bd9Sstevel@tonic-gate */
146*7c478bd9Sstevel@tonic-gate 
147*7c478bd9Sstevel@tonic-gate size_t
sm_strlcat2(dst,src1,src2,len)148*7c478bd9Sstevel@tonic-gate sm_strlcat2(dst, src1, src2, len)
149*7c478bd9Sstevel@tonic-gate 	register char *dst;
150*7c478bd9Sstevel@tonic-gate 	register const char *src1;
151*7c478bd9Sstevel@tonic-gate 	register const char *src2;
152*7c478bd9Sstevel@tonic-gate 	ssize_t len;
153*7c478bd9Sstevel@tonic-gate {
154*7c478bd9Sstevel@tonic-gate 	register ssize_t i, j, o;
155*7c478bd9Sstevel@tonic-gate 
156*7c478bd9Sstevel@tonic-gate 	/* current size of dst */
157*7c478bd9Sstevel@tonic-gate 	o = strlen(dst);
158*7c478bd9Sstevel@tonic-gate 
159*7c478bd9Sstevel@tonic-gate 	/* max. size is less than current? */
160*7c478bd9Sstevel@tonic-gate 	if (len < o + 1)
161*7c478bd9Sstevel@tonic-gate 		return o + strlen(src1) + strlen(src2);
162*7c478bd9Sstevel@tonic-gate 
163*7c478bd9Sstevel@tonic-gate 	len -= o + 1;	/* space left in dst */
164*7c478bd9Sstevel@tonic-gate 
165*7c478bd9Sstevel@tonic-gate 	/* copy the first string; i: index in src1; j: index in dst */
166*7c478bd9Sstevel@tonic-gate 	for (i = 0, j = o; i < len && (dst[j] = src1[i]) != 0; i++, j++)
167*7c478bd9Sstevel@tonic-gate 		continue;
168*7c478bd9Sstevel@tonic-gate 
169*7c478bd9Sstevel@tonic-gate 	/* src1: end reached? */
170*7c478bd9Sstevel@tonic-gate 	if (src1[i] != '\0')
171*7c478bd9Sstevel@tonic-gate 	{
172*7c478bd9Sstevel@tonic-gate 		/* no: terminate dst; there is space since i < len */
173*7c478bd9Sstevel@tonic-gate 		dst[j] = '\0';
174*7c478bd9Sstevel@tonic-gate 		return j + strlen(src1 + i) + strlen(src2);
175*7c478bd9Sstevel@tonic-gate 	}
176*7c478bd9Sstevel@tonic-gate 
177*7c478bd9Sstevel@tonic-gate 	len -= i;	/* space left in dst */
178*7c478bd9Sstevel@tonic-gate 
179*7c478bd9Sstevel@tonic-gate 	/* copy the second string; i: index in src2; j: index in dst */
180*7c478bd9Sstevel@tonic-gate 	for (i = 0; i < len && (dst[j] = src2[i]) != 0; i++, j++)
181*7c478bd9Sstevel@tonic-gate 		continue;
182*7c478bd9Sstevel@tonic-gate 	dst[j] = '\0';	/* terminate dst; there is space since i < len */
183*7c478bd9Sstevel@tonic-gate 	if (src2[i] == '\0')
184*7c478bd9Sstevel@tonic-gate 		return j;
185*7c478bd9Sstevel@tonic-gate 	else
186*7c478bd9Sstevel@tonic-gate 		return j + strlen(src2 + i);
187*7c478bd9Sstevel@tonic-gate }
188*7c478bd9Sstevel@tonic-gate 
189*7c478bd9Sstevel@tonic-gate /*
190*7c478bd9Sstevel@tonic-gate **  SM_STRLCPYN -- concatenate n strings and assign the result to dst
191*7c478bd9Sstevel@tonic-gate **		while obeying length and '\0' terminate it
192*7c478bd9Sstevel@tonic-gate **
193*7c478bd9Sstevel@tonic-gate **		dst = src1 "+" src2 "+" ...
194*7c478bd9Sstevel@tonic-gate **		use this instead of sm_snprintf() for string values
195*7c478bd9Sstevel@tonic-gate **		and repeated sm_strlc*() calls for better speed.
196*7c478bd9Sstevel@tonic-gate **
197*7c478bd9Sstevel@tonic-gate **	Parameters:
198*7c478bd9Sstevel@tonic-gate **		dst -- "destination" string.
199*7c478bd9Sstevel@tonic-gate **		len -- max. length of "destination" string.
200*7c478bd9Sstevel@tonic-gate **		n -- number of strings
201*7c478bd9Sstevel@tonic-gate **		strings...
202*7c478bd9Sstevel@tonic-gate **
203*7c478bd9Sstevel@tonic-gate **	Returns:
204*7c478bd9Sstevel@tonic-gate **		total length of the string tried to create
205*7c478bd9Sstevel@tonic-gate **		(= initial length of dst + length of src)
206*7c478bd9Sstevel@tonic-gate **		if this is greater than len then an overflow would have
207*7c478bd9Sstevel@tonic-gate **		occurred.
208*7c478bd9Sstevel@tonic-gate */
209*7c478bd9Sstevel@tonic-gate 
210*7c478bd9Sstevel@tonic-gate size_t
211*7c478bd9Sstevel@tonic-gate #ifdef __STDC__
sm_strlcpyn(char * dst,ssize_t len,int n,...)212*7c478bd9Sstevel@tonic-gate sm_strlcpyn(char *dst, ssize_t len, int n, ...)
213*7c478bd9Sstevel@tonic-gate #else /* __STDC__ */
214*7c478bd9Sstevel@tonic-gate sm_strlcpyn(dst, len, n, va_alist)
215*7c478bd9Sstevel@tonic-gate 	register char *dst;
216*7c478bd9Sstevel@tonic-gate 	ssize_t len;
217*7c478bd9Sstevel@tonic-gate 	int n;
218*7c478bd9Sstevel@tonic-gate 	va_dcl
219*7c478bd9Sstevel@tonic-gate #endif /* __STDC__ */
220*7c478bd9Sstevel@tonic-gate {
221*7c478bd9Sstevel@tonic-gate 	register ssize_t i, j;
222*7c478bd9Sstevel@tonic-gate 	char *str;
223*7c478bd9Sstevel@tonic-gate 	SM_VA_LOCAL_DECL
224*7c478bd9Sstevel@tonic-gate 
225*7c478bd9Sstevel@tonic-gate 	SM_VA_START(ap, n);
226*7c478bd9Sstevel@tonic-gate 
227*7c478bd9Sstevel@tonic-gate 	if (len-- <= 0) /* This allows space for the terminating '\0' */
228*7c478bd9Sstevel@tonic-gate 	{
229*7c478bd9Sstevel@tonic-gate 		i = 0;
230*7c478bd9Sstevel@tonic-gate 		while (n-- > 0)
231*7c478bd9Sstevel@tonic-gate 			i += strlen(SM_VA_ARG(ap, char *));
232*7c478bd9Sstevel@tonic-gate 		SM_VA_END(ap);
233*7c478bd9Sstevel@tonic-gate 		return i;
234*7c478bd9Sstevel@tonic-gate 	}
235*7c478bd9Sstevel@tonic-gate 
236*7c478bd9Sstevel@tonic-gate 	j = 0;	/* index in dst */
237*7c478bd9Sstevel@tonic-gate 
238*7c478bd9Sstevel@tonic-gate 	/* loop through all source strings */
239*7c478bd9Sstevel@tonic-gate 	while (n-- > 0)
240*7c478bd9Sstevel@tonic-gate 	{
241*7c478bd9Sstevel@tonic-gate 		str = SM_VA_ARG(ap, char *);
242*7c478bd9Sstevel@tonic-gate 
243*7c478bd9Sstevel@tonic-gate 		/* copy string; i: index in str; j: index in dst */
244*7c478bd9Sstevel@tonic-gate 		for (i = 0; j < len && (dst[j] = str[i]) != 0; i++, j++)
245*7c478bd9Sstevel@tonic-gate 			continue;
246*7c478bd9Sstevel@tonic-gate 
247*7c478bd9Sstevel@tonic-gate 		/* str: end reached? */
248*7c478bd9Sstevel@tonic-gate 		if (str[i] != '\0')
249*7c478bd9Sstevel@tonic-gate 		{
250*7c478bd9Sstevel@tonic-gate 			/* no: terminate dst; there is space since j < len */
251*7c478bd9Sstevel@tonic-gate 			dst[j] = '\0';
252*7c478bd9Sstevel@tonic-gate 			j += strlen(str + i);
253*7c478bd9Sstevel@tonic-gate 			while (n-- > 0)
254*7c478bd9Sstevel@tonic-gate 				j += strlen(SM_VA_ARG(ap, char *));
255*7c478bd9Sstevel@tonic-gate 			SM_VA_END(ap);
256*7c478bd9Sstevel@tonic-gate 			return j;
257*7c478bd9Sstevel@tonic-gate 		}
258*7c478bd9Sstevel@tonic-gate 	}
259*7c478bd9Sstevel@tonic-gate 	SM_VA_END(ap);
260*7c478bd9Sstevel@tonic-gate 
261*7c478bd9Sstevel@tonic-gate 	dst[j] = '\0';	/* terminate dst; there is space since j < len */
262*7c478bd9Sstevel@tonic-gate 	return j;
263*7c478bd9Sstevel@tonic-gate }
264*7c478bd9Sstevel@tonic-gate 
265*7c478bd9Sstevel@tonic-gate #if 0
266*7c478bd9Sstevel@tonic-gate /*
267*7c478bd9Sstevel@tonic-gate **  SM_STRLAPP -- append string if it fits into buffer.
268*7c478bd9Sstevel@tonic-gate **
269*7c478bd9Sstevel@tonic-gate **	If size > 0, copy up to size-1 characters from the nul terminated
270*7c478bd9Sstevel@tonic-gate **	string src to dst, nul terminating the result.  If size == 0,
271*7c478bd9Sstevel@tonic-gate **	the dst buffer is not modified.
272*7c478bd9Sstevel@tonic-gate **
273*7c478bd9Sstevel@tonic-gate **	This routine is useful for appending strings in a loop, e.g, instead of
274*7c478bd9Sstevel@tonic-gate **	s = buf;
275*7c478bd9Sstevel@tonic-gate **	for (ptr, ptr != NULL, ptr = next->ptr)
276*7c478bd9Sstevel@tonic-gate **	{
277*7c478bd9Sstevel@tonic-gate **		(void) sm_strlcpy(s, ptr->string, sizeof buf - (s - buf));
278*7c478bd9Sstevel@tonic-gate **		s += strlen(s);
279*7c478bd9Sstevel@tonic-gate **	}
280*7c478bd9Sstevel@tonic-gate **	replace the loop body with:
281*7c478bd9Sstevel@tonic-gate **		if (!sm_strlapp(*s, ptr->string, sizeof buf - (s - buf)))
282*7c478bd9Sstevel@tonic-gate **			break;
283*7c478bd9Sstevel@tonic-gate **	it's faster...
284*7c478bd9Sstevel@tonic-gate **
285*7c478bd9Sstevel@tonic-gate **	XXX interface isn't completely clear (yet), hence this code is
286*7c478bd9Sstevel@tonic-gate **	not available.
287*7c478bd9Sstevel@tonic-gate **
288*7c478bd9Sstevel@tonic-gate **
289*7c478bd9Sstevel@tonic-gate **	Parameters:
290*7c478bd9Sstevel@tonic-gate **		dst -- (pointer to) destination buffer
291*7c478bd9Sstevel@tonic-gate **		src -- source string
292*7c478bd9Sstevel@tonic-gate **		size -- size of destination buffer
293*7c478bd9Sstevel@tonic-gate **
294*7c478bd9Sstevel@tonic-gate **	Returns:
295*7c478bd9Sstevel@tonic-gate **		true if strlen(src) < size
296*7c478bd9Sstevel@tonic-gate **
297*7c478bd9Sstevel@tonic-gate **	Side Effects:
298*7c478bd9Sstevel@tonic-gate **		modifies dst if append succeeds (enough space).
299*7c478bd9Sstevel@tonic-gate */
300*7c478bd9Sstevel@tonic-gate 
301*7c478bd9Sstevel@tonic-gate bool
302*7c478bd9Sstevel@tonic-gate sm_strlapp(dst, src, size)
303*7c478bd9Sstevel@tonic-gate 	register char **dst;
304*7c478bd9Sstevel@tonic-gate 	register const char *src;
305*7c478bd9Sstevel@tonic-gate 	ssize_t size;
306*7c478bd9Sstevel@tonic-gate {
307*7c478bd9Sstevel@tonic-gate 	register size_t i;
308*7c478bd9Sstevel@tonic-gate 
309*7c478bd9Sstevel@tonic-gate 	if (size-- <= 0)
310*7c478bd9Sstevel@tonic-gate 		return false;
311*7c478bd9Sstevel@tonic-gate 	for (i = 0; i < size && ((*dst)[i] = src[i]) != '\0'; i++)
312*7c478bd9Sstevel@tonic-gate 		continue;
313*7c478bd9Sstevel@tonic-gate 	(*dst)[i] = '\0';
314*7c478bd9Sstevel@tonic-gate 	if (src[i] == '\0')
315*7c478bd9Sstevel@tonic-gate 	{
316*7c478bd9Sstevel@tonic-gate 		*dst += i;
317*7c478bd9Sstevel@tonic-gate 		return true;
318*7c478bd9Sstevel@tonic-gate 	}
319*7c478bd9Sstevel@tonic-gate 
320*7c478bd9Sstevel@tonic-gate 	/* undo */
321*7c478bd9Sstevel@tonic-gate 	(*dst)[0] = '\0';
322*7c478bd9Sstevel@tonic-gate 	return false;
323*7c478bd9Sstevel@tonic-gate }
324*7c478bd9Sstevel@tonic-gate #endif /* 0 */
325