i386: Fail if configured with --enable-cet
[glibc.git] / string / argz-replace.c
blobfdd9a8e1c94bb928eaefddb1f6d26299c66090e8
1 /* String replacement in an argz vector
2 Copyright (C) 1997-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <stdlib.h>
20 #include <string.h>
21 #include <argz.h>
23 /* Append BUF, of length BUF_LEN to *TO, of length *TO_LEN, reallocating and
24 updating *TO & *TO_LEN appropriately. If an allocation error occurs,
25 *TO's old value is freed, and *TO is set to 0. */
26 static void
27 str_append (char **to, size_t *to_len, const char *buf, const size_t buf_len)
29 size_t new_len = *to_len + buf_len;
30 char *new_to = realloc (*to, new_len + 1);
32 if (new_to)
34 *((char *) __mempcpy (new_to + *to_len, buf, buf_len)) = '\0';
35 *to = new_to;
36 *to_len = new_len;
38 else
40 free (*to);
41 *to = 0;
45 /* Replace any occurrences of the string STR in ARGZ with WITH, reallocating
46 ARGZ as necessary. If REPLACE_COUNT is non-zero, *REPLACE_COUNT will be
47 incremented by number of replacements performed. */
48 error_t
49 __argz_replace (char **argz, size_t *argz_len, const char *str, const char *with,
50 unsigned *replace_count)
52 error_t err = 0;
54 if (str && *str)
56 char *arg = 0;
57 char *src = *argz;
58 size_t src_len = *argz_len;
59 char *dst = 0;
60 size_t dst_len = 0;
61 int delayed_copy = 1; /* True while we've avoided copying anything. */
62 size_t str_len = strlen (str), with_len = strlen (with);
64 while (!err && (arg = argz_next (src, src_len, arg)))
66 char *match = strstr (arg, str);
67 if (match)
69 char *from = match + str_len;
70 size_t to_len = match - arg;
71 char *to = __strndup (arg, to_len);
73 while (to && from)
75 str_append (&to, &to_len, with, with_len);
76 if (to)
78 match = strstr (from, str);
79 if (match)
81 str_append (&to, &to_len, from, match - from);
82 from = match + str_len;
84 else
86 str_append (&to, &to_len, from, strlen (from));
87 from = 0;
92 if (to)
94 if (delayed_copy)
95 /* We avoided copying SRC to DST until we found a match;
96 now that we've done so, copy everything from the start
97 of SRC. */
99 if (arg > src)
100 err = __argz_append (&dst, &dst_len, src, (arg - src));
101 delayed_copy = 0;
103 if (! err)
104 err = __argz_add (&dst, &dst_len, to);
105 free (to);
107 else
108 err = ENOMEM;
110 if (replace_count)
111 (*replace_count)++;
113 else if (! delayed_copy)
114 err = __argz_add (&dst, &dst_len, arg);
117 if (! err)
119 if (! delayed_copy)
120 /* We never found any instances of str. */
122 free (src);
123 *argz = dst;
124 *argz_len = dst_len;
127 else if (dst_len > 0)
128 free (dst);
131 return err;
133 weak_alias (__argz_replace, argz_replace)