S390: Move utf8-utf32-z9.c to multiarch folder and use s390_libc_ifunc_expr macro.
[glibc.git] / nis / nis_subr.c
blob5c31af8840084de99a68f9d962c8e18334b0e44a
1 /* Copyright (c) 1997-2017 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1997.
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 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <string.h>
21 #include <rpcsvc/nis.h>
23 nis_name
24 nis_leaf_of (const_nis_name name)
26 static char result[NIS_MAXNAMELEN + 1];
28 return nis_leaf_of_r (name, result, NIS_MAXNAMELEN);
30 libnsl_hidden_nolink_def (nis_leaf_of, GLIBC_2_1)
32 nis_name
33 nis_leaf_of_r (const_nis_name name, char *buffer, size_t buflen)
35 size_t i = 0;
37 buffer[0] = '\0';
39 while (name[i] != '.' && name[i] != '\0')
40 i++;
42 if (__glibc_unlikely (i >= buflen))
44 __set_errno (ERANGE);
45 return NULL;
48 *((char *) __mempcpy (buffer, name, i)) = '\0';
50 return buffer;
52 libnsl_hidden_nolink_def (nis_leaf_of_r, GLIBC_2_1)
54 nis_name
55 nis_name_of (const_nis_name name)
57 static char result[NIS_MAXNAMELEN + 1];
59 return nis_name_of_r (name, result, NIS_MAXNAMELEN);
61 libnsl_hidden_nolink_def (nis_name_of, GLIBC_2_1)
63 nis_name
64 nis_name_of_r (const_nis_name name, char *buffer, size_t buflen)
66 char *local_domain;
67 int diff;
69 local_domain = nis_local_directory ();
71 diff = strlen (name) - strlen (local_domain);
72 if (diff <= 0)
73 return NULL;
75 if (strcmp (&name[diff], local_domain) != 0)
76 return NULL;
78 if ((size_t) diff >= buflen)
80 __set_errno (ERANGE);
81 return NULL;
84 *((char *) __mempcpy (buffer, name, diff - 1)) = '\0';
86 if (diff - 1 == 0)
87 return NULL;
89 return buffer;
91 libnsl_hidden_nolink_def (nis_name_of_r, GLIBC_2_1)
93 static int __always_inline
94 count_dots (const_nis_name str)
96 int count = 0;
98 for (size_t i = 0; str[i] != '\0'; ++i)
99 if (str[i] == '.')
100 ++count;
102 return count;
105 /* If we run out of memory, we don't give already allocated memory
106 free. The overhead for bringing getnames back in a safe state to
107 free it is to big. */
108 nis_name *
109 nis_getnames (const_nis_name name)
111 const char *local_domain = nis_local_directory ();
112 size_t local_domain_len = strlen (local_domain);
113 size_t name_len = strlen (name);
114 char *path;
115 int pos = 0;
116 char *saveptr = NULL;
117 int have_point;
118 const char *cp;
119 const char *cp2;
121 int count = 2;
122 nis_name *getnames = malloc ((count + 1) * sizeof (char *));
123 if (__glibc_unlikely (getnames == NULL))
124 return NULL;
126 /* Do we have a fully qualified NIS+ name ? If yes, give it back */
127 if (name[name_len - 1] == '.')
129 if ((getnames[0] = strdup (name)) == NULL)
131 free_null:
132 while (pos-- > 0)
133 free (getnames[pos]);
134 free (getnames);
135 return NULL;
138 getnames[1] = NULL;
140 return getnames;
143 /* If the passed NAME is shared a suffix (the latter of course with
144 a final dot) with each other we pass back NAME with a final
145 dot. */
146 if (local_domain_len > 2)
148 have_point = 0;
149 cp = &local_domain[local_domain_len - 2];
150 cp2 = &name[name_len - 1];
152 while (*cp == *cp2)
154 if (*cp == '.')
155 have_point = 1;
156 --cp;
157 --cp2;
158 if (cp < local_domain)
160 have_point = cp2 < name || *cp2 == '.';
161 break;
163 if (cp2 < name)
165 have_point = *cp == '.';
166 break;
170 if (have_point)
172 getnames[0] = malloc (name_len + 2);
173 if (getnames[0] == NULL)
174 goto free_null;
176 strcpy (stpcpy (getnames[0], name), ".");
177 ++pos;
181 /* Get the search path, where we have to search "name" */
182 path = getenv ("NIS_PATH");
183 if (path == NULL)
184 path = strdupa ("$");
185 else
186 path = strdupa (path);
188 have_point = strchr (name, '.') != NULL;
190 cp = __strtok_r (path, ":", &saveptr);
191 while (cp)
193 if (strcmp (cp, "$") == 0)
195 const char *cptr = local_domain;
196 char *tmp;
198 while (*cptr != '\0' && count_dots (cptr) >= 2)
200 if (pos >= count)
202 count += 5;
203 nis_name *newp = realloc (getnames,
204 (count + 1) * sizeof (char *));
205 if (__glibc_unlikely (newp == NULL))
206 goto free_null;
207 getnames = newp;
209 tmp = malloc (strlen (cptr) + local_domain_len + name_len + 2);
210 if (__glibc_unlikely (tmp == NULL))
211 goto free_null;
213 getnames[pos] = tmp;
214 tmp = stpcpy (tmp, name);
215 *tmp++ = '.';
216 if (cptr[1] != '\0')
217 stpcpy (tmp, cptr);
218 else
219 ++cptr;
221 ++pos;
223 while (*cptr != '.' && *cptr != '\0')
224 ++cptr;
225 if (cptr[0] != '\0' && cptr[1] != '\0')
226 /* If we have only ".", don't remove the "." */
227 ++cptr;
230 else
232 char *tmp;
233 size_t cplen = strlen (cp);
235 if (cp[cplen - 1] == '$')
237 char *p;
239 tmp = malloc (cplen + local_domain_len + name_len + 2);
240 if (__glibc_unlikely (tmp == NULL))
241 goto free_null;
243 p = __stpcpy (tmp, name);
244 *p++ = '.';
245 p = __mempcpy (p, cp, cplen);
246 --p;
247 if (p[-1] != '.')
248 *p++ = '.';
249 __stpcpy (p, local_domain);
251 else
253 char *p;
255 tmp = malloc (cplen + name_len + 3);
256 if (__glibc_unlikely (tmp == NULL))
257 goto free_null;
259 p = __mempcpy (tmp, name, name_len);
260 *p++ = '.';
261 p = __mempcpy (p, cp, cplen);
262 if (p[-1] != '.')
263 *p++ = '.';
264 *p = '\0';
267 if (pos >= count)
269 count += 5;
270 nis_name *newp = realloc (getnames,
271 (count + 1) * sizeof (char *));
272 if (__glibc_unlikely (newp == NULL))
273 goto free_null;
274 getnames = newp;
276 getnames[pos] = tmp;
277 ++pos;
279 cp = __strtok_r (NULL, ":", &saveptr);
282 if (pos == 0
283 && __asprintf (&getnames[pos++], "%s%s%s%s",
284 name, name[name_len - 1] == '.' ? "" : ".",
285 local_domain,
286 local_domain[local_domain_len - 1] == '.' ? "" : ".") < 0)
287 goto free_null;
289 getnames[pos] = NULL;
291 return getnames;
293 libnsl_hidden_nolink_def (nis_getnames, GLIBC_2_1)
295 void
296 nis_freenames (nis_name *names)
298 int i = 0;
300 while (names[i] != NULL)
302 free (names[i]);
303 ++i;
306 free (names);
308 libnsl_hidden_nolink_def (nis_freenames, GLIBC_2_1)
310 name_pos
311 nis_dir_cmp (const_nis_name n1, const_nis_name n2)
313 int len1, len2;
315 len1 = strlen (n1);
316 len2 = strlen (n2);
318 if (len1 == len2)
320 if (strcmp (n1, n2) == 0)
321 return SAME_NAME;
322 else
323 return NOT_SEQUENTIAL;
326 if (len1 < len2)
328 if (n2[len2 - len1 - 1] != '.')
329 return NOT_SEQUENTIAL;
330 else if (strcmp (&n2[len2 - len1], n1) == 0)
331 return HIGHER_NAME;
332 else
333 return NOT_SEQUENTIAL;
335 else
337 if (n1[len1 - len2 - 1] != '.')
338 return NOT_SEQUENTIAL;
339 else if (strcmp (&n1[len1 - len2], n2) == 0)
340 return LOWER_NAME;
341 else
342 return NOT_SEQUENTIAL;
346 libnsl_hidden_nolink_def (nis_dir_cmp, GLIBC_2_1)
348 void
349 nis_destroy_object (nis_object *obj)
351 nis_free_object (obj);
353 libnsl_hidden_nolink_def (nis_destroy_object, GLIBC_2_1)