1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* Copyright 2014 Nexenta Systems, Inc. All rights reserved.
*/
/* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
/*
* Portions of this source code were derived from Berkeley
* 4.3 BSD under license from the Regents of the University of
* California.
*/
/*
* ==== hack-attack: possibly MT-safe but definitely not MT-hot.
* ==== turn this into a real switch frontend and backends
*
* Well, at least the API doesn't involve pointers-to-static.
*/
/*
* netname utility routines convert from netnames to unix names (uid, gid)
*
* This module is operating system dependent!
* What we define here will work with any unix system that has adopted
* the Sun NIS domain architecture.
*/
#undef NIS
#include "mt.h"
#include "rpc_mt.h"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <alloca.h>
#include <sys/types.h>
#include <ctype.h>
#include <grp.h>
#include <pwd.h>
#include <string.h>
#include <syslog.h>
#include <sys/param.h>
#include <nsswitch.h>
#include <rpc/rpc.h>
#include <rpcsvc/nis.h>
#include <rpcsvc/ypclnt.h>
#include <nss_dbdefs.h>
static const char OPSYS[] = "unix";
static const char NETIDFILE[] = "/etc/netid";
static const char NETID[] = "netid.byname";
#define OPSYS_LEN 4
extern int _getgroupsbymember(const char *, gid_t[], int, int);
/*
* the value for NOBODY_UID is set by the SVID. The following define also
* appears in netname.c
*/
#define NOBODY_UID 60001
/*
* default publickey policy:
* publickey: nis [NOTFOUND = return] files
*/
/* NSW_NOTSUCCESS NSW_NOTFOUND NSW_UNAVAIL NSW_TRYAGAIN */
#define DEF_ACTION {__NSW_RETURN, __NSW_RETURN, __NSW_CONTINUE, __NSW_CONTINUE}
static struct __nsw_lookup lookup_files = {"files", DEF_ACTION, NULL, NULL},
lookup_nis = {"nis", DEF_ACTION, NULL, &lookup_files};
static struct __nsw_switchconfig publickey_default =
{0, "publickey", 2, &lookup_nis};
static mutex_t serialize_netname_r = DEFAULTMUTEX;
struct netid_userdata {
uid_t *uidp;
gid_t *gidp;
int *gidlenp;
gid_t *gidlist;
};
static int
parse_uid(char *s, struct netid_userdata *argp)
{
uid_t u;
if (!s || !isdigit(*s)) {
syslog(LOG_ERR,
"netname2user: expecting uid '%s'", s);
return (__NSW_NOTFOUND); /* xxx need a better error */
}
/* Fetch the uid */
u = (uid_t)(atoi(s));
if (u == 0) {
syslog(LOG_ERR, "netname2user: should not have uid 0");
return (__NSW_NOTFOUND);
}
*(argp->uidp) = u;
return (__NSW_SUCCESS);
}
/* parse a comma separated gid list */
static int
parse_gidlist(char *p, struct netid_userdata *argp)
{
int len;
gid_t g;
if (!p || (!isdigit(*p))) {
syslog(LOG_ERR,
"netname2user: missing group id list in '%s'.",
p);
return (__NSW_NOTFOUND);
}
g = (gid_t)(atoi(p));
*(argp->gidp) = g;
len = 0;
while (p = strchr(p, ','))
argp->gidlist[len++] = (gid_t)atoi(++p);
*(argp->gidlenp) = len;
return (__NSW_SUCCESS);
}
/*
* parse_netid_str()
*
* Parse uid and group information from the passed string.
*
* The format of the string passed is
* uid:gid,grp,grp, ...
*
*/
static int
parse_netid_str(char *s, struct netid_userdata *argp)
{
char *p;
int err;
/* get uid */
err = parse_uid(s, argp);
if (err != __NSW_SUCCESS)
return (err);
/* Now get the group list */
p = strchr(s, ':');
if (!p) {
syslog(LOG_ERR,
"netname2user: missing group id list in '%s'", s);
return (__NSW_NOTFOUND);
}
++p; /* skip ':' */
err = parse_gidlist(p, argp);
return (err);
}
/*
* netname2user_files()
*
* This routine fetches the netid information from the "files" nameservice.
* ie /etc/netid.
*/
static int
netname2user_files(int *err, char *netname, struct netid_userdata *argp)
{
char buf[512]; /* one line from the file */
char *name;
char *value;
char *res;
FILE *fd;
fd = fopen(NETIDFILE, "rF");
if (fd == NULL) {
*err = __NSW_UNAVAIL;
return (0);
}
/*
* for each line in the file parse it appropriately
* file format is :
* netid uid:grp,grp,grp # for users
* netid 0:hostname # for hosts
*/
while (!feof(fd)) {
res = fgets(buf, 512, fd);
if (res == NULL)
break;
/* Skip comments and blank lines */
if ((*res == '#') || (*res == '\n'))
continue;
name = &(buf[0]);
while (isspace(*name))
name++;
if (*name == '\0') /* blank line continue */
continue;
value = name; /* will contain the value eventually */
while (!isspace(*value))
value++;
if (*value == '\0') {
syslog(LOG_WARNING,
"netname2user: badly formatted line in %s.",
NETIDFILE);
continue;
}
*value++ = '\0'; /* nul terminate the name */
if (strcasecmp(name, netname) == 0) {
(void) fclose(fd);
while (isspace(*value))
value++;
*err = parse_netid_str(value, argp);
return (*err == __NSW_SUCCESS);
}
}
(void) fclose(fd);
*err = __NSW_NOTFOUND;
return (0);
}
/*
* netname2user_nis()
*
* This function reads the netid from the NIS (YP) nameservice.
*/
static int
netname2user_nis(int *err, char *netname, struct netid_userdata *argp)
{
char *domain;
int yperr;
char *lookup;
int len;
domain = strchr(netname, '@');
if (!domain) {
*err = __NSW_UNAVAIL;
return (0);
}
/* Point past the '@' character */
domain++;
lookup = NULL;
yperr = yp_match(domain, (char *)NETID, netname, strlen(netname),
&lookup, &len);
switch (yperr) {
case 0:
break; /* the successful case */
default :
/*
* XXX not sure about yp_match semantics.
* should err be set to NOTFOUND here?
*/
*err = __NSW_UNAVAIL;
return (0);
}
if (lookup) {
lookup[len] = '\0';
*err = parse_netid_str(lookup, argp);
free(lookup);
return (*err == __NSW_SUCCESS);
}
*err = __NSW_NOTFOUND;
return (0);
}
/*
* Build the uid and gid from the netname for users in LDAP.
* There is no netid container in LDAP. For this we build
* the netname to user data dynamically from the passwd and
* group data. This works only for users in a single domain.
* This function is an interim solution until we support a
* netid container in LDAP which enables us to do netname2user
* resolution for multiple domains.
*/
static int
netname2user_ldap(int *err, char *netname, struct netid_userdata *argp)
{
char buf[NSS_LINELEN_PASSWD];
char *p2, *lasts;
struct passwd pw;
uid_t uidnu;
int ngroups = 0;
int count;
char pwbuf[NSS_LINELEN_PASSWD];
int maxgrp = sysconf(_SC_NGROUPS_MAX);
gid_t *groups = alloca(maxgrp * sizeof (gid_t));
if (strlcpy(buf, netname, NSS_LINELEN_PASSWD) >= NSS_LINELEN_PASSWD) {
*err = __NSW_UNAVAIL;
return (0);
}
/* get the uid from the netname */
if (strtok_r(buf, ".", &lasts) == NULL) {
*err = __NSW_UNAVAIL;
return (0);
}
if ((p2 = strtok_r(NULL, "@", &lasts)) == NULL) {
*err = __NSW_UNAVAIL;
return (0);
}
uidnu = atoi(p2);
/*
* check out the primary group and crosscheck the uid
* with the passwd data
*/
if ((getpwuid_r(uidnu, &pw, pwbuf, sizeof (pwbuf))) == NULL) {
*err = __NSW_UNAVAIL;
return (0);
}
*(argp->uidp) = pw.pw_uid;
*(argp->gidp) = pw.pw_gid;
/* search through all groups for membership */
groups[0] = pw.pw_gid;
ngroups = _getgroupsbymember(pw.pw_name, groups, maxgrp,
(pw.pw_gid <= MAXUID) ? 1 : 0);
if (ngroups < 0) {
*err = __NSW_UNAVAIL;
return (0);
}
*(argp->gidlenp) = ngroups;
for (count = 0; count < ngroups; count++) {
(argp->gidlist[count]) = groups[count];
}
*err = __NSW_SUCCESS;
return (1);
}
/*
* Convert network-name into unix credential
*/
int
netname2user(const char *netname, uid_t *uidp, gid_t *gidp, int *gidlenp,
gid_t *gidlist)
{
struct __nsw_switchconfig *conf;
struct __nsw_lookup *look;
enum __nsw_parse_err perr;
int needfree = 1, res;
struct netid_userdata argp;
int err;
/*
* Take care of the special case of nobody. Compare the netname
* to the string "nobody". If they are equal, return the SVID
* standard value for nobody.
*/
if (strcmp(netname, "nobody") == 0) {
*uidp = NOBODY_UID;
*gidp = NOBODY_UID;
*gidlenp = 0;
return (1);
}
/*
* First we do some generic sanity checks on the name we were
* passed. This lets us assume they are correct in the backends.
*
* NOTE: this code only recognizes names of the form :
* unix.UID@domainname
*/
if (strncmp(netname, OPSYS, OPSYS_LEN) != 0)
return (0);
if (!isdigit(netname[OPSYS_LEN+1])) /* check for uid string */
return (0);
argp.uidp = uidp;
argp.gidp = gidp;
argp.gidlenp = gidlenp;
argp.gidlist = gidlist;
(void) mutex_lock(&serialize_netname_r);
conf = __nsw_getconfig("publickey", &perr);
if (!conf) {
conf = &publickey_default;
needfree = 0;
} else
needfree = 1; /* free the config structure */
for (look = conf->lookups; look; look = look->next) {
if (strcmp(look->service_name, "nis") == 0)
res = netname2user_nis(&err, (char *)netname, &argp);
else if (strcmp(look->service_name, "files") == 0)
res = netname2user_files(&err, (char *)netname, &argp);
else if (strcmp(look->service_name, "ldap") == 0)
res = netname2user_ldap(&err, (char *)netname, &argp);
else {
syslog(LOG_INFO,
"netname2user: unknown nameservice for publickey"
"info '%s'\n", look->service_name);
err = __NSW_UNAVAIL;
res = 0;
}
switch (look->actions[err]) {
case __NSW_CONTINUE :
break;
case __NSW_RETURN :
if (needfree)
(void) __nsw_freeconfig(conf);
(void) mutex_unlock(&serialize_netname_r);
return (res);
default :
syslog(LOG_ERR,
"netname2user: Unknown action for "
"nameservice '%s'", look->service_name);
}
}
if (needfree)
(void) __nsw_freeconfig(conf);
(void) mutex_unlock(&serialize_netname_r);
return (0);
}
/*
* Convert network-name to hostname (fully qualified)
* NOTE: this code only recognizes names of the form :
* unix.HOST@domainname
*
* This is very simple. Since the netname is of the form:
* unix.host@domainname
* We just construct the hostname using information from the domainname.
*/
int
netname2host(const char *netname, char *hostname, const int hostlen)
{
char *p, *domainname;
int len, dlen;
if (!netname) {
syslog(LOG_ERR, "netname2host: null netname");
goto bad_exit;
}
if (strncmp(netname, OPSYS, OPSYS_LEN) != 0)
goto bad_netname;
p = (char *)netname + OPSYS_LEN; /* skip OPSYS part */
if (*p != '.')
goto bad_netname;
++p; /* skip '.' */
domainname = strchr(p, '@'); /* get domain name */
if (domainname == 0)
goto bad_netname;
len = domainname - p; /* host sits between '.' and '@' */
domainname++; /* skip '@' sign */
if (len <= 0)
goto bad_netname;
if (hostlen < len) {
syslog(LOG_ERR,
"netname2host: insufficient space for hostname");
goto bad_exit;
}
if (isdigit(*p)) /* don't want uid here */
goto bad_netname;
if (*p == '\0') /* check for null hostname */
goto bad_netname;
(void) strncpy(hostname, p, len);
/* make into fully qualified hostname by concatenating domain part */
dlen = strlen(domainname);
if (hostlen < (len + dlen + 2)) {
syslog(LOG_ERR,
"netname2host: insufficient space for hostname");
goto bad_exit;
}
hostname[len] = '.';
(void) strncpy(hostname+len+1, domainname, dlen);
hostname[len+dlen+1] = '\0';
return (1);
bad_netname:
syslog(LOG_ERR, "netname2host: invalid host netname %s", netname);
bad_exit:
hostname[0] = '\0';
return (0);
}
|