1 /* Copyright (C) 1997-2022 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/>. */
22 #include <shlib-compat.h>
23 #include <libc-diag.h>
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 /* GCC with -Os warns that sprint might overflow while handling dfltdom,
53 however the above test does check if an overflow would happen. */
54 DIAG_PUSH_NEEDS_COMMENT
;
55 DIAG_IGNORE_Os_NEEDS_COMMENT (8, "-Wformat-overflow");
56 sprintf (netname
, "%s.%d@%s", OPSYS
, uid
, dfltdom
);
57 DIAG_POP_NEEDS_COMMENT
;
59 if (netname
[i
- 1] == '.')
60 netname
[i
- 1] = '\0';
63 libc_hidden_nolink_sunrpc (user2netname
, GLIBC_2_1
)
66 host2netname (char netname
[MAXNETNAMELEN
+ 1], const char *host
,
70 char hostname
[MAXHOSTNAMELEN
+ 1];
71 char domainname
[MAXHOSTNAMELEN
+ 1];
75 netname
[0] = '\0'; /* make null first (no need for memset) */
78 __gethostname (hostname
, MAXHOSTNAMELEN
);
81 strncpy (hostname
, host
, MAXHOSTNAMELEN
);
82 hostname
[MAXHOSTNAMELEN
] = '\0';
85 dot_in_host
= strchr (hostname
, '.');
92 strncpy (domainname
, p
, MAXHOSTNAMELEN
);
93 domainname
[MAXHOSTNAMELEN
] = '\0';
98 getdomainname (domainname
, MAXHOSTNAMELEN
);
103 strncpy (domainname
, domain
, MAXHOSTNAMELEN
);
104 domainname
[MAXHOSTNAMELEN
] = '\0';
107 i
= strlen (domainname
);
111 if (domainname
[i
- 1] == '.')
112 domainname
[i
- 1] = 0;
114 if (dot_in_host
) /* strip off rest of name */
117 if ((strlen (domainname
) + strlen (hostname
) + OPSYS_LEN
+ 3)
121 sprintf (netname
, "%s.%s@%s", OPSYS
, hostname
, domainname
);
124 #ifdef EXPORT_RPC_SYMBOLS
125 libc_hidden_def (host2netname
)
127 libc_hidden_nolink_sunrpc (host2netname
, GLIBC_2_1
)
131 getnetname (char name
[MAXNETNAMELEN
+ 1])
138 dummy
= host2netname (name
, NULL
, NULL
);
140 dummy
= user2netname (name
, uid
, NULL
);
143 libc_hidden_nolink_sunrpc (getnetname
, GLIBC_2_1
)
145 /* Type of the lookup function for netname2user. */
146 typedef int (*netname2user_function
) (const char netname
[MAXNETNAMELEN
+ 1],
147 uid_t
*, gid_t
*, int *, gid_t
*);
150 netname2user (const char *netname
, uid_t
* uidp
, gid_t
* gidp
,
151 int *gidlenp
, gid_t
* gidlist
)
156 netname2user_function f
;
159 enum nss_status status
= NSS_STATUS_UNAVAIL
;
162 no_more
= __nss_publickey_lookup2 (&nip
, "netname2user", NULL
, &fct
.ptr
);
166 status
= (*fct
.f
) (netname
, uidp
, gidp
, gidlenp
, gidlist
);
168 no_more
= __nss_next2 (&nip
, "netname2user", NULL
, &fct
.ptr
, status
, 0);
171 return status
== NSS_STATUS_SUCCESS
;
173 #ifdef EXPORT_RPC_SYMBOLS
174 libc_hidden_def (netname2user
)
176 libc_hidden_nolink_sunrpc (netname2user
, GLIBC_2_1
)
180 netname2host (const char *netname
, char *hostname
, const int hostlen
)
184 p1
= strchr (netname
, '.');
189 p2
= strchr (p1
, '@');
194 if (hostlen
> MAXNETNAMELEN
)
197 strncpy (hostname
, p1
, hostlen
);
198 hostname
[hostlen
] = '\0';
202 libc_hidden_nolink_sunrpc (netname2host
, GLIBC_2_1
)