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
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
|
/*
SSSD
Authors:
Samuel Cabrero <scabrero@suse.com>
Copyright (C) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <nss.h>
#include <netdb.h>
#include <resolv.h>
#include <arpa/inet.h>
#include <errno.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include "sss_cli.h"
static
#ifdef HAVE_PTHREAD_EXT
__thread
#endif
struct sss_nss_gethostent_data {
size_t len;
size_t ptr;
uint8_t *data;
} sss_nss_gethostent_data;
static void
sss_nss_gethostent_data_clean(void)
{
if (sss_nss_gethostent_data.data != NULL) {
free(sss_nss_gethostent_data.data);
sss_nss_gethostent_data.data = NULL;
}
sss_nss_gethostent_data.len = 0;
sss_nss_gethostent_data.ptr = 0;
}
/* GETHOSTBYNAME2 Request
*
* 0-X: One zero-terminated string (name)
*
* GETHOSTBYADDR Request:
* 0-3: 32-bit unsigned address family
* 4-7: 32-bit unsigned address length
* 8-X: binary address
*
* Replies:
* 0-3: 32-bit unsigned number of results
* 4-7: 32-bit unsigned (reserved/padding)
* 7-X: Result data (blocks equal to number of results)
*
* Result data:
* 0-3: 32-bit unsigned number of aliases
* 4-7: 32-bit unsigned number of addresses
* 8-X: sequence of zero-terminated strings
* (name, zero or more aliases, zero or more addresses)
*/
struct sss_nss_host_rep {
struct hostent *result;
char *buffer;
size_t buflen;
};
#define HOST_METADATA_COUNT 8
static errno_t
sss_nss_gethost_readrep(struct sss_nss_host_rep *sr,
uint8_t *buf, size_t *len, int af)
{
errno_t ret;
uint32_t num_aliases;
uint32_t num_addresses;
const char *sbuf;
size_t i, a, l, slen, dlen, pad, ptmem, alen;
if (af != AF_INET && af != AF_INET6) {
return EBADMSG;
}
/* Buffer must contain two 32-bit integers,
* at least one character and null-terminator
* for the name, at least a null-terminator for
* the aliases and a null-terminator for the
* addresses.
*/
if (*len < 12) {
/* not enough data, bad packet */
return EBADMSG;
}
/* Get the number of aliases */
SAFEALIGN_COPY_UINT32(&num_aliases, buf, NULL);
/* Get the number of addresses */
SAFEALIGN_COPY_UINT32(&num_addresses, buf + sizeof(uint32_t), NULL);
sbuf = (char *)&buf[2 * sizeof(uint32_t)];
slen = *len - (2 * sizeof(uint32_t));
dlen = sr->buflen;
i = 0;
sr->result->h_name = &(sr->buffer[i]);
ret = sss_readrep_copy_string(sbuf, &i,
&slen, &dlen,
&sr->result->h_name,
NULL);
if (ret != EOK) {
return ret;
}
/* Copy the aliases */
pad = PADDING_SIZE(i, char *);
sr->result->h_aliases = DISCARD_ALIGN(&(sr->buffer[i+pad]), char **);
ptmem = (sizeof(char *) * (num_aliases + 1)) + pad;
if (ptmem > dlen) {
/* Not ENOMEM, ERANGE is what glibc looks for */
return ERANGE;
}
dlen -= ptmem;
ptmem += i;
/* Terminate array */
sr->result->h_aliases[num_aliases] = NULL;
for (l = 0; l < num_aliases; l++) {
sr->result->h_aliases[l] = &(sr->buffer[ptmem]);
ret = sss_readrep_copy_string(sbuf, &i,
&slen, &dlen,
&sr->result->h_aliases[l],
&alen);
if (ret != EOK) {
return ret;
}
ptmem += alen + 1;
}
/* Copy the addresses */
pad = PADDING_SIZE(ptmem, char *);
sr->result->h_addr_list =
DISCARD_ALIGN(&(sr->buffer[ptmem + pad]), char **);
ptmem += (sizeof(char *) * (num_addresses + 1)) + pad;
if (ptmem > dlen) {
/* Not ENOMEM, ERANGE is what glibc looks for */
return ERANGE;
}
dlen -= (sizeof(char *) * (num_addresses + 1)) + pad;
/* Initialize array, can return less address than num_addresses depending
* on requested address family */
for (a = 0; a < num_addresses + 1; a++) {
sr->result->h_addr_list[a] = NULL;
}
for (a = 0, l = 0; l < num_addresses; l++) {
/* Can be optimized, but ensure we can fit an IPv6 for now */
if (dlen < IN6ADDRSZ) {
return ERANGE;
}
sr->result->h_addr_list[a] = &(sr->buffer[ptmem]);
if (af == AF_INET &&
inet_pton(AF_INET, &sbuf[i], &(sr->buffer[ptmem]))) {
sr->result->h_addrtype = AF_INET;
sr->result->h_length = INADDRSZ;
dlen -= INADDRSZ;
ptmem += INADDRSZ;
a++;
} else if (af == AF_INET6 &&
inet_pton(AF_INET6, &sbuf[i], &(sr->buffer[ptmem]))) {
sr->result->h_addrtype = AF_INET6;
sr->result->h_length = IN6ADDRSZ;
dlen -= IN6ADDRSZ;
ptmem += IN6ADDRSZ;
a++;
} else {
/* Skip illegal address */
sr->result->h_addr_list[a] = NULL;
}
i += strlen(&sbuf[i]) + 1;
}
*len = slen - i;
return EOK;
}
static enum nss_status
internal_gethostbyname2_r(const char *name, int af,
struct hostent *result,
char *buffer, size_t buflen,
int *errnop, int *h_errnop)
{
struct sss_cli_req_data rd;
struct sss_nss_host_rep hostrep;
size_t name_len;
uint8_t *repbuf;
size_t replen, len;
uint32_t num_results;
enum nss_status nret;
int ret;
if (af != AF_INET && af != AF_INET6) {
*errnop = EAFNOSUPPORT;
*h_errnop = NETDB_INTERNAL;
return NSS_STATUS_UNAVAIL;
}
/* Caught once glibc passing in buffer == 0x0 */
if (buffer == NULL || buflen == 0) {
*errnop = ERANGE;
*h_errnop = NETDB_INTERNAL;
return NSS_STATUS_TRYAGAIN;
}
ret = sss_strnlen(name, SSS_NAME_MAX, &name_len);
if (ret != 0) {
*errnop = EINVAL;
*h_errnop = NETDB_INTERNAL;
return NSS_STATUS_UNAVAIL;
}
rd.len = name_len + 1;
rd.data = name;
sss_nss_lock();
nret = sss_nss_make_request(SSS_NSS_GETHOSTBYNAME2, &rd,
&repbuf, &replen, errnop);
if (nret != NSS_STATUS_SUCCESS) {
*h_errnop = NO_RECOVERY;
goto out;
}
hostrep.result = result;
hostrep.buffer = buffer;
hostrep.buflen = buflen;
/* Get number of results from repbuf. */
SAFEALIGN_COPY_UINT32(&num_results, repbuf, NULL);
/* No results if not found */
if (num_results == 0) {
free(repbuf);
nret = NSS_STATUS_NOTFOUND;
*h_errnop = HOST_NOT_FOUND;
goto out;
}
/* Only 1 result is accepted for this function */
if (num_results != 1) {
free(repbuf);
*errnop = EBADMSG;
*h_errnop = NETDB_INTERNAL;
nret = NSS_STATUS_TRYAGAIN;
goto out;
}
len = replen - HOST_METADATA_COUNT;
ret = sss_nss_gethost_readrep(&hostrep, repbuf + HOST_METADATA_COUNT,
&len, af);
free(repbuf);
if (ret) {
*errnop = ret;
nret = NSS_STATUS_TRYAGAIN;
*h_errnop = NETDB_INTERNAL;
goto out;
}
/* If host name is valid but does not have an IP address of the requested
* address family return the correct error. */
if (result->h_addr_list[0] == NULL) {
*h_errnop = NO_DATA;
nret = NSS_STATUS_TRYAGAIN;
goto out;
}
nret = NSS_STATUS_SUCCESS;
out:
sss_nss_unlock();
return nret;
}
enum nss_status
_nss_sss_gethostbyname2_r(const char *name, int af,
struct hostent *result,
char *buffer, size_t buflen,
int *errnop, int *h_errnop)
{
return internal_gethostbyname2_r(name, af, result, buffer, buflen,
errnop, h_errnop);
}
enum nss_status
_nss_sss_gethostbyname_r(const char *name,
struct hostent *result,
char *buffer, size_t buflen,
int *errnop, int *h_errnop)
{
return internal_gethostbyname2_r(name, AF_INET, result, buffer, buflen,
errnop, h_errnop);
}
enum nss_status
_nss_sss_gethostbyaddr_r(const void *addr, socklen_t addrlen,
int af, struct hostent *result,
char *buffer, size_t buflen,
int *errnop, int *h_errnop)
{
struct sss_cli_req_data rd;
struct sss_nss_host_rep hostrep;
uint8_t *repbuf;
uint8_t *data;
size_t replen, len;
uint32_t num_results;
enum nss_status nret;
int ret;
size_t data_len = 0;
size_t ctr = 0;
if (af != AF_INET && af != AF_INET6) {
*errnop = EAFNOSUPPORT;
*h_errnop = NETDB_INTERNAL;
return NSS_STATUS_UNAVAIL;
}
/* Caught once glibc passing in buffer == 0x0 */
if (buffer == NULL || buflen == 0) {
*errnop = ERANGE;
*h_errnop = NETDB_INTERNAL;
return NSS_STATUS_TRYAGAIN;
}
data_len = sizeof(uint32_t) + sizeof(socklen_t) + addrlen;
data = malloc(data_len);
if (data == NULL) {
*h_errnop = NETDB_INTERNAL;
return NSS_STATUS_TRYAGAIN;
}
/* Push AF */
SAFEALIGN_SETMEM_VALUE(data, af, uint32_t, &ctr);
/* Push LEN */
SAFEALIGN_SETMEM_VALUE(data + ctr, addrlen, socklen_t, &ctr);
/* Push ADDR */
SAFEALIGN_SETMEM_STRING(data + ctr, addr, addrlen, &ctr);
rd.data = data;
rd.len = data_len;
sss_nss_lock();
nret = sss_nss_make_request(SSS_NSS_GETHOSTBYADDR, &rd,
&repbuf, &replen, errnop);
free(data);
if (nret != NSS_STATUS_SUCCESS) {
*h_errnop = NO_RECOVERY;
goto out;
}
hostrep.result = result;
hostrep.buffer = buffer;
hostrep.buflen = buflen;
/* Get number of results from repbuf. */
SAFEALIGN_COPY_UINT32(&num_results, repbuf, NULL);
/* No results if not found */
if (num_results == 0) {
free(repbuf);
nret = NSS_STATUS_NOTFOUND;
*h_errnop = HOST_NOT_FOUND;
goto out;
}
/* Only 1 result is accepted for this function */
if (num_results != 1) {
free(repbuf);
*errnop = EBADMSG;
*h_errnop = NETDB_INTERNAL;
nret = NSS_STATUS_TRYAGAIN;
goto out;
}
len = replen - HOST_METADATA_COUNT;
ret = sss_nss_gethost_readrep(&hostrep, repbuf + HOST_METADATA_COUNT,
&len, af);
free(repbuf);
if (ret) {
*errnop = ret;
nret = NSS_STATUS_TRYAGAIN;
*h_errnop = NETDB_INTERNAL;
goto out;
}
/* If host name is valid but does not have an IP address of the requested
* address family return the correct error. */
if (result->h_addr_list[0] == NULL) {
*h_errnop = NO_DATA;
nret = NSS_STATUS_TRYAGAIN;
goto out;
}
nret = NSS_STATUS_SUCCESS;
out:
sss_nss_unlock();
return nret;
}
static enum nss_status
internal_gethostent_r(struct hostent *result,
char *buffer, size_t buflen,
int *errnop, int *h_errnop)
{
struct sss_cli_req_data rd;
struct sss_nss_host_rep pwrep;
uint8_t *repbuf;
size_t replen;
uint32_t num_results;
enum nss_status nret;
uint32_t num_entries;
int retval;
/* Caught once glibc passing in buffer == 0x0 */
if (buffer == NULL || buflen == 0) {
*errnop = ERANGE;
*h_errnop = NETDB_INTERNAL;
return NSS_STATUS_TRYAGAIN;
}
/* if there are leftovers return the next one */
if (sss_nss_gethostent_data.data != NULL &&
sss_nss_gethostent_data.ptr < sss_nss_gethostent_data.len) {
repbuf = sss_nss_gethostent_data.data + sss_nss_gethostent_data.ptr;
replen = sss_nss_gethostent_data.len - sss_nss_gethostent_data.ptr;
pwrep.result = result;
pwrep.buffer = buffer;
pwrep.buflen = buflen;
retval = sss_nss_gethost_readrep(&pwrep, repbuf, &replen, AF_INET);
if (retval) {
*errnop = retval;
*h_errnop = NETDB_INTERNAL;
return NSS_STATUS_TRYAGAIN;
}
/* advance buffer pointer */
sss_nss_gethostent_data.ptr = sss_nss_gethostent_data.len - replen;
/* If host name is valid but does not have an IP address of the
* requested address family return the correct error. */
if (result->h_addr_list[0] == NULL) {
*h_errnop = NO_DATA;
return NSS_STATUS_TRYAGAIN;
}
*h_errnop = 0;
return NSS_STATUS_SUCCESS;
}
/* release memory if any */
sss_nss_gethostent_data_clean();
/* retrieve no more than SSS_NSS_MAX_ENTRIES at a time */
num_entries = SSS_NSS_MAX_ENTRIES;
rd.len = sizeof(uint32_t);
rd.data = &num_entries;
nret = sss_nss_make_request(SSS_NSS_GETHOSTENT, &rd,
&repbuf, &replen, errnop);
if (nret != NSS_STATUS_SUCCESS) {
*h_errnop = NO_RECOVERY;
return nret;
}
/* Get number of results from repbuf */
SAFEALIGN_COPY_UINT32(&num_results, repbuf, NULL);
/* no results if not found */
if ((num_results == 0) || (replen - HOST_METADATA_COUNT == 0)) {
free(repbuf);
*h_errnop = HOST_NOT_FOUND;
return NSS_STATUS_NOTFOUND;
}
sss_nss_gethostent_data.data = repbuf;
sss_nss_gethostent_data.len = replen;
/* skip metadata fields */
sss_nss_gethostent_data.ptr = HOST_METADATA_COUNT;
/* call again ourselves, this will return the first result */
return internal_gethostent_r(result, buffer, buflen, errnop, h_errnop);
}
enum nss_status
_nss_sss_sethostent(void)
{
enum nss_status nret;
int errnop;
sss_nss_lock();
/* make sure we do not have leftovers, and release memory */
sss_nss_gethostent_data_clean();
nret = sss_nss_make_request(SSS_NSS_SETHOSTENT,
NULL, NULL, NULL, &errnop);
if (nret != NSS_STATUS_SUCCESS) {
errno = errnop;
}
sss_nss_unlock();
return nret;
}
enum nss_status
_nss_sss_gethostent_r(struct hostent *result,
char *buffer, size_t buflen,
int *errnop, int *h_errnop)
{
enum nss_status nret;
sss_nss_lock();
nret = internal_gethostent_r(result, buffer, buflen, errnop, h_errnop);
sss_nss_unlock();
return nret;
}
enum nss_status
_nss_sss_endhostent(void)
{
enum nss_status nret;
int errnop;
int saved_errno = errno;
sss_nss_lock();
/* make sure we do not have leftovers, and release memory */
sss_nss_gethostent_data_clean();
nret = sss_nss_make_request(SSS_NSS_ENDHOSTENT,
NULL, NULL, NULL, &errnop);
if (nret != NSS_STATUS_SUCCESS) {
errno = errnop;
} else {
errno = saved_errno;
}
sss_nss_unlock();
return nret;
}
|