1 /* Copyright (C) 1997, 1998 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 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. */
28 #define MAXIPRINT (11) /* max length of printed integer */
29 static const char *OPSYS
= "unix";
32 user2netname (char netname
[MAXNETNAMELEN
+ 1], const uid_t uid
,
35 char dfltdom
[MAXNETNAMELEN
+ 1];
40 if (getdomainname (dfltdom
, sizeof (dfltdom
)) < 0)
45 strncpy (dfltdom
, domain
, MAXNETNAMELEN
);
46 dfltdom
[MAXNETNAMELEN
] = '\0';
49 if ((strlen (dfltdom
) + OPSYS_LEN
+ 3 + MAXIPRINT
) > (size_t) MAXNETNAMELEN
)
52 sprintf (netname
, "%s.%d@%s", OPSYS
, uid
, dfltdom
);
54 if (netname
[i
- 1] == '.')
55 netname
[i
- 1] = '\0';
60 host2netname (char netname
[MAXNETNAMELEN
+ 1], const char *host
,
64 char hostname
[MAXHOSTNAMELEN
+ 1];
65 char domainname
[MAXHOSTNAMELEN
+ 1];
69 netname
[0] = '\0'; /* make null first (no need for memset) */
72 __gethostname (hostname
, MAXHOSTNAMELEN
);
75 strncpy (hostname
, host
, MAXHOSTNAMELEN
);
76 hostname
[MAXHOSTNAMELEN
] = '\0';
79 dot_in_host
= strchr (hostname
, '.');
86 strncpy (domainname
, p
, MAXHOSTNAMELEN
);
87 domainname
[MAXHOSTNAMELEN
] = '\0';
92 getdomainname (domainname
, MAXHOSTNAMELEN
);
97 strncpy (domainname
, domain
, MAXHOSTNAMELEN
);
98 domainname
[MAXHOSTNAMELEN
] = '\0';
101 i
= strlen (domainname
);
105 if (domainname
[i
- 1] == '.')
106 domainname
[i
- 1] = 0;
108 if (dot_in_host
) /* strip off rest of name */
111 if ((strlen (domainname
) + strlen (hostname
) + OPSYS_LEN
+ 3)
115 sprintf (netname
, "%s.%s@%s", OPSYS
, hostname
, domainname
);
120 getnetname (char name
[MAXNETNAMELEN
+ 1])
127 dummy
= host2netname (name
, NULL
, NULL
);
129 dummy
= user2netname (name
, uid
, NULL
);
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
,
141 netname2user (const char netname
[MAXNETNAMELEN
+ 1], uid_t
* uidp
, gid_t
* gidp
,
142 int *gidlenp
, gid_t
* gidlist
)
144 static service_user
*startp
= NULL
;
145 static netname2user_function start_fct
;
147 netname2user_function fct
;
148 enum nss_status status
= NSS_STATUS_UNAVAIL
;
153 no_more
= __nss_publickey_lookup (&nip
, "netname2user", (void **) &fct
);
155 startp
= (service_user
*) - 1;
165 no_more
= (nip
= startp
) == (service_user
*) - 1;
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
,
183 char buffer
[MAXNETNAMELEN
+ 1];
185 p1
= strchr (buffer
, '.');
190 p2
= strchr (p1
, '@');
195 if (hostlen
> MAXNETNAMELEN
)
198 strncpy (hostname
, p1
, hostlen
);
199 hostname
[hostlen
] = '\0';