Fix dependency install on Debian 11 (#16683)
[zfs.git] / module / os / freebsd / spl / spl_string.c
blobeb74720c984a6da0f405e8a6bf3df3041a3bb2ed
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or https://opensource.org/licenses/CDDL-1.0.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
21 * $FreeBSD$
24 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
25 * Use is subject to license terms.
28 #include <sys/types.h>
29 #include <sys/param.h>
30 #include <sys/string.h>
31 #include <sys/kmem.h>
32 #include <machine/stdarg.h>
34 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9')
36 #define IS_ALPHA(c) \
37 (((c) >= 'a' && (c) <= 'z') || ((c) >= 'A' && (c) <= 'Z'))
39 char *
40 strpbrk(const char *s, const char *b)
42 const char *p;
44 do {
45 for (p = b; *p != '\0' && *p != *s; ++p)
47 if (*p != '\0')
48 return ((char *)s);
49 } while (*s++);
51 return (NULL);
55 * Convert a string into a valid C identifier by replacing invalid
56 * characters with '_'. Also makes sure the string is nul-terminated
57 * and takes up at most n bytes.
59 void
60 strident_canon(char *s, size_t n)
62 char c;
63 char *end = s + n - 1;
65 if ((c = *s) == 0)
66 return;
68 if (!IS_ALPHA(c) && c != '_')
69 *s = '_';
71 while (s < end && ((c = *(++s)) != 0)) {
72 if (!IS_ALPHA(c) && !IS_DIGIT(c) && c != '_')
73 *s = '_';
75 *s = 0;
79 * Do not change the length of the returned string; it must be freed
80 * with strfree().
82 char *
83 kmem_asprintf(const char *fmt, ...)
85 int size;
86 va_list adx;
87 char *buf;
89 va_start(adx, fmt);
90 size = vsnprintf(NULL, 0, fmt, adx) + 1;
91 va_end(adx);
93 buf = kmem_alloc(size, KM_SLEEP);
95 va_start(adx, fmt);
96 (void) vsnprintf(buf, size, fmt, adx);
97 va_end(adx);
99 return (buf);
102 void
103 kmem_strfree(char *str)
105 ASSERT3P(str, !=, NULL);
106 kmem_free(str, strlen(str) + 1);
110 * kmem_scnprintf() will return the number of characters that it would have
111 * printed whenever it is limited by value of the size variable, rather than
112 * the number of characters that it did print. This can cause misbehavior on
113 * subsequent uses of the return value, so we define a safe version that will
114 * return the number of characters actually printed, minus the NULL format
115 * character. Subsequent use of this by the safe string functions is safe
116 * whether it is snprintf(), strlcat() or strlcpy().
120 kmem_scnprintf(char *restrict str, size_t size, const char *restrict fmt, ...)
122 int n;
123 va_list ap;
125 /* Make the 0 case a no-op so that we do not return -1 */
126 if (size == 0)
127 return (0);
129 va_start(ap, fmt);
130 n = vsnprintf(str, size, fmt, ap);
131 va_end(ap);
133 if (n >= size)
134 n = size - 1;
136 return (n);