1 /* Copyright (C) 1998 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@uni-paderborn.de>, 1998.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 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 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
26 #include <sys/socket.h>
30 #include "nscd_proto.h"
32 int __nss_not_use_nscd_group
;
34 static int __nscd_getgr_r (const char *key
, request_type type
,
35 struct group
*resultbuf
, char *buffer
,
39 __nscd_getgrnam_r (const char *name
, struct group
*resultbuf
, char *buffer
,
45 return __nscd_getgr_r (name
, GETGRBYNAME
, resultbuf
, buffer
, buflen
);
49 __nscd_getgrgid_r (gid_t gid
, struct group
*resultbuf
, char *buffer
,
55 plen
= snprintf (buffer
, buflen
, "%d", gid
);
61 p
= buffer
+ plen
+ 1;
63 return __nscd_getgr_r (buffer
, GETGRBYGID
, resultbuf
, p
, buflen
- plen
-1);
66 /* Create a socket connected to a name. */
68 nscd_open_socket (void)
70 struct sockaddr_un addr
;
72 int saved_errno
= errno
;
74 sock
= socket (PF_UNIX
, SOCK_STREAM
, 0);
77 __set_errno (saved_errno
);
81 addr
.sun_family
= AF_UNIX
;
82 strcpy (addr
.sun_path
, _PATH_NSCDSOCKET
);
83 if (connect (sock
, (struct sockaddr
*) &addr
, sizeof (addr
)) < 0)
86 __set_errno (saved_errno
);
94 __nscd_getgr_r (const char *key
, request_type type
, struct group
*resultbuf
,
95 char *buffer
, size_t buflen
)
97 int sock
= nscd_open_socket ();
99 gr_response_header gr_resp
;
104 __nss_not_use_nscd_group
= 1;
108 req
.version
= NSCD_VERSION
;
110 req
.key_len
= strlen (key
);
111 nbytes
= write (sock
, &req
, sizeof (request_header
));
112 if (nbytes
!= sizeof (request_header
))
118 nbytes
= write (sock
, key
, req
.key_len
);
119 if (nbytes
!= req
.key_len
)
125 nbytes
= read (sock
, &gr_resp
, sizeof (gr_response_header
));
126 if (nbytes
!= sizeof (gr_response_header
))
132 if (gr_resp
.found
== -1)
134 /* The daemon does not cache this database. */
136 __nss_not_use_nscd_group
= 1;
140 if (gr_resp
.found
== 1)
145 if (buflen
< gr_resp
.gr_name_len
+ 1)
147 __set_errno (ERANGE
);
151 resultbuf
->gr_name
= p
;
152 p
+= gr_resp
.gr_name_len
+ 1;
153 buflen
-= (gr_resp
.gr_name_len
+ 1);
154 nbytes
= read (sock
, resultbuf
->gr_name
, gr_resp
.gr_name_len
);
155 if (nbytes
!= gr_resp
.gr_name_len
)
160 resultbuf
->gr_name
[gr_resp
.gr_name_len
] = '\0';
162 if (buflen
< gr_resp
.gr_passwd_len
+ 1)
164 __set_errno (ERANGE
);
168 resultbuf
->gr_passwd
= p
;
169 p
+= gr_resp
.gr_passwd_len
+ 1;
170 buflen
-= (gr_resp
.gr_passwd_len
+ 1);
171 nbytes
= read (sock
, resultbuf
->gr_passwd
, gr_resp
.gr_passwd_len
);
172 if (nbytes
!= gr_resp
.gr_passwd_len
)
177 resultbuf
->gr_passwd
[gr_resp
.gr_passwd_len
] = '\0';
179 resultbuf
->gr_gid
= gr_resp
.gr_gid
;
181 if (buflen
< ((gr_resp
.gr_mem_len
+ 1) * sizeof (char *)))
183 __set_errno (ERANGE
);
187 resultbuf
->gr_mem
= (char **)p
;
188 p
+= ((gr_resp
.gr_mem_len
+ 1) * sizeof (char *));
189 buflen
-= ((gr_resp
.gr_mem_len
+ 1) * sizeof (char *));
191 resultbuf
->gr_mem
[gr_resp
.gr_mem_len
] = NULL
;
193 for (i
= 0; i
< gr_resp
.gr_mem_len
; ++i
)
196 nbytes
= read (sock
, &len
, sizeof (len
));
197 if (nbytes
!= sizeof (len
))
203 if (buflen
< (len
+ 1))
205 __set_errno (ERANGE
);
209 resultbuf
->gr_mem
[i
] = p
;
212 nbytes
= read (sock
, resultbuf
->gr_mem
[i
], len
);
213 resultbuf
->gr_mem
[i
][len
] = '\0';