1 /* Copyright (c) 1997-2023 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
20 #include <rpcsvc/nis.h>
21 #include <shlib-compat.h>
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
)
33 nis_leaf_of_r (const_nis_name name
, char *buffer
, size_t buflen
)
39 while (name
[i
] != '.' && name
[i
] != '\0')
42 if (__glibc_unlikely (i
>= buflen
))
48 *((char *) __mempcpy (buffer
, name
, i
)) = '\0';
52 libnsl_hidden_nolink_def (nis_leaf_of_r
, GLIBC_2_1
)
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
)
64 nis_name_of_r (const_nis_name name
, char *buffer
, size_t buflen
)
69 local_domain
= nis_local_directory ();
71 diff
= strlen (name
) - strlen (local_domain
);
75 if (strcmp (&name
[diff
], local_domain
) != 0)
78 if ((size_t) diff
>= buflen
)
84 *((char *) __mempcpy (buffer
, name
, diff
- 1)) = '\0';
91 libnsl_hidden_nolink_def (nis_name_of_r
, GLIBC_2_1
)
93 static __always_inline
int
94 count_dots (const_nis_name str
)
98 for (size_t i
= 0; str
[i
] != '\0'; ++i
)
106 nis_getnames (const_nis_name name
)
108 const char *local_domain
= nis_local_directory ();
109 size_t local_domain_len
= strlen (local_domain
);
110 size_t name_len
= strlen (name
);
113 char *saveptr
= NULL
;
119 nis_name
*getnames
= malloc ((count
+ 1) * sizeof (char *));
120 if (__glibc_unlikely (getnames
== NULL
))
123 /* Do we have a fully qualified NIS+ name ? If yes, give it back */
124 if (name
[name_len
- 1] == '.')
126 if ((getnames
[0] = strdup (name
)) == NULL
)
130 free (getnames
[pos
]);
140 /* If the passed NAME is shared a suffix (the latter of course with
141 a final dot) with each other we pass back NAME with a final
143 if (local_domain_len
> 2)
146 cp
= &local_domain
[local_domain_len
- 2];
147 cp2
= &name
[name_len
- 1];
155 if (cp
< local_domain
)
157 have_point
= cp2
< name
|| *cp2
== '.';
162 have_point
= *cp
== '.';
169 getnames
[0] = malloc (name_len
+ 2);
170 if (getnames
[0] == NULL
)
173 strcpy (stpcpy (getnames
[0], name
), ".");
178 /* Get the search path, where we have to search "name" */
179 path
= getenv ("NIS_PATH");
181 path
= strdupa ("$");
183 path
= strdupa (path
);
185 have_point
= strchr (name
, '.') != NULL
;
187 cp
= __strtok_r (path
, ":", &saveptr
);
190 if (strcmp (cp
, "$") == 0)
192 const char *cptr
= local_domain
;
195 while (*cptr
!= '\0' && count_dots (cptr
) >= 2)
200 nis_name
*newp
= realloc (getnames
,
201 (count
+ 1) * sizeof (char *));
202 if (__glibc_unlikely (newp
== NULL
))
206 tmp
= malloc (strlen (cptr
) + local_domain_len
+ name_len
+ 2);
207 if (__glibc_unlikely (tmp
== NULL
))
211 tmp
= stpcpy (tmp
, name
);
220 while (*cptr
!= '.' && *cptr
!= '\0')
222 if (cptr
[0] != '\0' && cptr
[1] != '\0')
223 /* If we have only ".", don't remove the "." */
230 size_t cplen
= strlen (cp
);
232 if (cp
[cplen
- 1] == '$')
236 tmp
= malloc (cplen
+ local_domain_len
+ name_len
+ 2);
237 if (__glibc_unlikely (tmp
== NULL
))
240 p
= __stpcpy (tmp
, name
);
242 p
= __mempcpy (p
, cp
, cplen
);
246 __stpcpy (p
, local_domain
);
252 tmp
= malloc (cplen
+ name_len
+ 3);
253 if (__glibc_unlikely (tmp
== NULL
))
256 p
= __mempcpy (tmp
, name
, name_len
);
258 p
= __mempcpy (p
, cp
, cplen
);
267 nis_name
*newp
= realloc (getnames
,
268 (count
+ 1) * sizeof (char *));
269 if (__glibc_unlikely (newp
== NULL
))
279 cp
= __strtok_r (NULL
, ":", &saveptr
);
283 && __asprintf (&getnames
[pos
++], "%s%s%s%s",
284 name
, name
[name_len
- 1] == '.' ? "" : ".",
286 local_domain
[local_domain_len
- 1] == '.' ? "" : ".") < 0)
289 getnames
[pos
] = NULL
;
293 libnsl_hidden_nolink_def (nis_getnames
, GLIBC_2_1
)
296 nis_freenames (nis_name
*names
)
300 while (names
[i
] != NULL
)
308 libnsl_hidden_nolink_def (nis_freenames
, GLIBC_2_1
)
311 nis_dir_cmp (const_nis_name n1
, const_nis_name n2
)
320 if (strcmp (n1
, n2
) == 0)
323 return NOT_SEQUENTIAL
;
328 if (n2
[len2
- len1
- 1] != '.')
329 return NOT_SEQUENTIAL
;
330 else if (strcmp (&n2
[len2
- len1
], n1
) == 0)
333 return NOT_SEQUENTIAL
;
337 if (n1
[len1
- len2
- 1] != '.')
338 return NOT_SEQUENTIAL
;
339 else if (strcmp (&n1
[len1
- len2
], n2
) == 0)
342 return NOT_SEQUENTIAL
;
346 libnsl_hidden_nolink_def (nis_dir_cmp
, GLIBC_2_1
)
349 nis_destroy_object (nis_object
*obj
)
351 nis_free_object (obj
);
353 libnsl_hidden_nolink_def (nis_destroy_object
, GLIBC_2_1
)