Update.
[glibc.git] / sunrpc / netname.c
blob65dee2130fa5d999e85a7c2b5f7bd1173c6aef8a
1 /* Copyright (C) 1997, 1998, 1999 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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <stdio.h>
21 #include <unistd.h>
22 #include <string.h>
23 #include <rpc/rpc.h>
25 #include "nsswitch.h"
27 #define OPSYS_LEN 4
28 #define MAXIPRINT (11) /* max length of printed integer */
29 static const char OPSYS[] = "unix";
31 int
32 user2netname (char netname[MAXNETNAMELEN + 1], const uid_t uid,
33 const char *domain)
35 char dfltdom[MAXNETNAMELEN + 1];
36 size_t i;
38 if (domain == NULL)
40 if (getdomainname (dfltdom, sizeof (dfltdom)) < 0)
41 return 0;
43 else
45 strncpy (dfltdom, domain, MAXNETNAMELEN);
46 dfltdom[MAXNETNAMELEN] = '\0';
49 if ((strlen (dfltdom) + OPSYS_LEN + 3 + MAXIPRINT) > (size_t) MAXNETNAMELEN)
50 return 0;
52 sprintf (netname, "%s.%d@%s", OPSYS, uid, dfltdom);
53 i = strlen (netname);
54 if (netname[i - 1] == '.')
55 netname[i - 1] = '\0';
56 return 1;
59 int
60 host2netname (char netname[MAXNETNAMELEN + 1], const char *host,
61 const char *domain)
63 char *p;
64 char hostname[MAXHOSTNAMELEN + 1];
65 char domainname[MAXHOSTNAMELEN + 1];
66 char *dot_in_host;
67 size_t i;
69 netname[0] = '\0'; /* make null first (no need for memset) */
71 if (host == NULL)
72 __gethostname (hostname, MAXHOSTNAMELEN);
73 else
75 strncpy (hostname, host, MAXHOSTNAMELEN);
76 hostname[MAXHOSTNAMELEN] = '\0';
79 dot_in_host = strchr (hostname, '.');
80 if (domain == NULL)
82 p = dot_in_host;
83 if (p)
85 ++p;
86 strncpy (domainname, p, MAXHOSTNAMELEN);
87 domainname[MAXHOSTNAMELEN] = '\0';
89 else
91 domainname[0] = 0;
92 getdomainname (domainname, MAXHOSTNAMELEN);
95 else
97 strncpy (domainname, domain, MAXHOSTNAMELEN);
98 domainname[MAXHOSTNAMELEN] = '\0';
101 i = strlen (domainname);
102 if (i == 0)
103 /* No domainname */
104 return 0;
105 if (domainname[i - 1] == '.')
106 domainname[i - 1] = 0;
108 if (dot_in_host) /* strip off rest of name */
109 *dot_in_host = '\0';
111 if ((strlen (domainname) + strlen (hostname) + OPSYS_LEN + 3)
112 > MAXNETNAMELEN)
113 return 0;
115 sprintf (netname, "%s.%s@%s", OPSYS, hostname, domainname);
116 return 1;
120 getnetname (char name[MAXNETNAMELEN + 1])
122 uid_t uid;
123 int dummy;
125 uid = __geteuid ();
126 if (uid == 0)
127 dummy = host2netname (name, NULL, NULL);
128 else
129 dummy = user2netname (name, uid, NULL);
130 return (dummy);
133 /* Type of the lookup function for netname2user. */
134 typedef int (*netname2user_function) (const char netname[MAXNETNAMELEN + 1],
135 uid_t *, gid_t *, int *, gid_t *);
136 /* The lookup function for the first entry of this service. */
137 extern int __nss_publickey_lookup (service_user ** nip, const char *name,
138 void **fctp);
141 netname2user (const char netname[MAXNETNAMELEN + 1], uid_t * uidp, gid_t * gidp,
142 int *gidlenp, gid_t * gidlist)
144 static service_user *startp;
145 static netname2user_function start_fct;
146 service_user *nip;
147 netname2user_function fct;
148 enum nss_status status = NSS_STATUS_UNAVAIL;
149 int no_more;
151 if (startp == NULL)
153 no_more = __nss_publickey_lookup (&nip, "netname2user", (void **) &fct);
154 if (no_more)
155 startp = (service_user *) - 1;
156 else
158 startp = nip;
159 start_fct = fct;
162 else
164 fct = start_fct;
165 no_more = (nip = startp) == (service_user *) - 1;
168 while (!no_more)
170 status = (*fct) (netname, uidp, gidp, gidlenp, gidlist);
172 no_more = __nss_next (&nip, "netname2user", (void **) &fct, status, 0);
175 return status == NSS_STATUS_SUCCESS;
179 netname2host (const char netname[MAXNETNAMELEN + 1], char *hostname,
180 const int hostlen)
182 char *p1, *p2;
183 char buffer[MAXNETNAMELEN + 1];
185 p1 = strchr (buffer, '.');
186 if (p1 == NULL)
187 return 0;
188 p1++;
190 p2 = strchr (p1, '@');
191 if (p2 == NULL)
192 return 0;
193 *p2 = '\0';
195 if (hostlen > MAXNETNAMELEN)
196 return 0;
198 strncpy (hostname, p1, hostlen);
199 hostname[hostlen] = '\0';
201 return 1;