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 http://www.opensolaris.org/os/licensing.
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]
23 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 /* Copyright (c) 1988 AT&T */
28 /* All Rights Reserved */
30 #pragma ident "%Z%%M% %I% %E% SMI"
32 #pragma weak _getgrnam = getgrnam
33 #pragma weak _getgrgid = getgrgid
36 #include <sys/types.h>
38 #include <nss_dbdefs.h>
42 #ifdef NSS_INCLUDE_UNSAFE
44 extern size_t _nss_get_bufsizes(int arg
);
47 * Ye olde non-reentrant interface (MT-unsafe, caveat utor)
53 nss_XbyY_buf_t
**buffer
= arg
;
55 NSS_XbyY_FREE(buffer
);
58 static nss_XbyY_buf_t
*
59 get_grbuf(int max_buf
)
61 nss_XbyY_buf_t
**buffer
=
62 tsdalloc(_T_GRBUF
, sizeof (nss_XbyY_buf_t
*), free_grbuf
);
69 blen
= _nss_get_bufsizes(0); /* default size */
71 blen
= sysconf(_SC_GETGR_R_SIZE_MAX
); /* max size */
73 if ((*buffer
)->buflen
>= blen
) /* existing size fits */
75 NSS_XbyY_FREE(buffer
); /* existing is too small */
77 b
= NSS_XbyY_ALLOC(buffer
, sizeof (struct group
), blen
);
84 nss_XbyY_buf_t
*b
= get_grbuf(0);
90 ret
= getgrgid_r(gid
, b
->result
, b
->buffer
, b
->buflen
);
91 if (ret
== NULL
&& errno
== ERANGE
) {
95 ret
= getgrgid_r(gid
, b
->result
, b
->buffer
, b
->buflen
);
101 getgrnam(const char *nam
)
103 nss_XbyY_buf_t
*b
= get_grbuf(0);
109 ret
= getgrnam_r(nam
, b
->result
, b
->buffer
, b
->buflen
);
110 if (ret
== NULL
&& errno
== ERANGE
&& nam
!= NULL
) {
114 ret
= getgrnam_r(nam
, b
->result
, b
->buffer
, b
->buflen
);
122 nss_XbyY_buf_t
*b
= get_grbuf(1);
124 return (b
== NULL
? NULL
:
125 getgrent_r(b
->result
, b
->buffer
, b
->buflen
));
131 nss_XbyY_buf_t
*b
= get_grbuf(1);
133 return (b
== NULL
? NULL
:
134 fgetgrent_r(f
, b
->result
, b
->buffer
, b
->buflen
));
137 #endif /* NSS_INCLUDE_UNSAFE */