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
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
|
/* $NetBSD: parse.c,v 1.12 1999/05/18 04:49:41 jwise Exp $ */
/*
** parse.c This file contains the protocol parser
**
** This program is in the public domain and may be used freely by anyone
** who wants to.
**
** Last update: 23 Feb 1994
**
** Please send bug fixes/bug reports to: Peter Eriksson <pen@lysator.liu.se>
*/
#ifdef NeXT31
# include <libc.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <ctype.h>
#include <pwd.h>
#ifdef ALLOW_FORMAT
# include <grp.h>
#endif
#include <sys/types.h>
#include <netinet/in.h>
#ifndef HPUX7
# include <arpa/inet.h>
#endif
#include <kvm.h>
#include <sys/types.h>
#include <sys/stat.h>
#if defined(MIPS) || defined(BSD43)
extern int errno;
#endif
#if defined(SOLARIS) || defined(__linux__)
# include <string.h>
# include <stdlib.h>
#endif
#include "identd.h"
#include "error.h"
static int eat_whitespace __P((void));
static int check_noident __P((const char *));
static int valid_fhost(struct in_addr *, char *);
/*
** This function will eat whitespace characters until
** either a non-whitespace character is read, or EOF
** occurs. This function is only used if the "-m" option
** is enabled.
*/
static int eat_whitespace()
{
int c;
while ((c = getchar()) != EOF &&
!(c == '\r' || c == '\n'))
;
if (c != EOF)
while ((c = getchar()) != EOF &&
(c == ' ' || c == '\t' || c == '\n' || c == '\r'))
;
if (c != EOF)
ungetc(c, stdin);
return (c != EOF);
}
#ifdef INCLUDE_EXTENSIONS
/*
** Validate an indirect request
*/
static int valid_fhost(faddr, password)
struct in_addr *faddr;
char *password;
{
if (indirect_host == NULL)
return 0;
if (strcmp(indirect_host, "*") != 0)
{
if (isdigit(indirect_host[0]))
{
if (strcmp(inet_ntoa(*faddr), indirect_host))
{
syslog(LOG_NOTICE, "valid_fhost: Access Denied for: %s",
gethost(faddr));
return 0;
}
}
else
{
if (strcmp(gethost(faddr), indirect_host))
{
syslog(LOG_NOTICE, "valid_fhost: Access Denied for: %s",
gethost(faddr));
return 0;
}
}
}
if (indirect_password == NULL)
return 1;
if (strcmp(password, indirect_password))
{
syslog(LOG_NOTICE, "valid_fhost: Invalid password from: %s",
gethost(faddr));
return 0;
}
return 1;
}
#endif
/*
** A small routine to check for the existance of the ".noident"
** file in a users home directory.
*/
static int check_noident(homedir)
const char *homedir;
{
char *tmp_path;
struct stat sbuf;
int rcode;
if (!homedir)
return 0;
tmp_path = (char *) malloc(strlen(homedir) + sizeof("/.noident") + 1);
if (!tmp_path)
return 0;
strcpy(tmp_path, homedir);
strcat(tmp_path, "/.noident");
rcode = stat(tmp_path, &sbuf);
free(tmp_path);
return (rcode == 0);
}
#ifdef INCLUDE_CRYPT
/*
** Checks address of incoming call against network/mask pairs of trusted
** networks to determine whether to crypt response or not.
*/
int check_crypt(faddr)
struct in_addr *faddr;
{
int i;
extern int netcnt;
extern u_long localnet[], localmask[];
for (i = 0; i < netcnt; i++) {
if ((faddr->s_addr & localmask[i]) == localnet[i])
return 0;
}
return 1;
}
#endif
int parse(fp, laddr, faddr)
FILE *fp;
struct in_addr *laddr, *faddr;
{
int uid, try, rcode;
struct passwd *pwp;
#ifdef ALLOW_FORMAT
int pid;
char *cmd, *cmd_and_args;
struct group *grp;
char grname[128];
#endif
char lhostaddr[16];
char fhostaddr[16];
char password[33];
#if defined(INCLUDE_EXTENSIONS) || defined(STRONG_LOG)
char arg[33];
#endif
#ifdef INCLUDE_EXTENSIONS
int c;
#endif
struct in_addr laddr2;
struct in_addr faddr2;
int k_opened;
k_opened = 0;
if (debug_flag && syslog_flag)
syslog(LOG_DEBUG, "In function parse()");
/*
** Get the local/foreign port pair from the luser
*/
do
{
if (debug_flag && syslog_flag)
syslog(LOG_DEBUG, " Before fscanf()");
faddr2 = *faddr;
laddr2 = *laddr;
lport = fport = 0;
lhostaddr[0] = fhostaddr[0] = password[0] = '\0';
/* Read query from client */
rcode = fscanf(fp, " %d , %d", &lport, &fport);
if (liar_flag)
{
if (syslog_flag)
syslog(LOG_NOTICE, "User %s requested a user for host %s: %d, %d, and I lied",
pwp->pw_name,
gethost(faddr),
lport, fport);
printf("%d , %d : USER-ID : OTHER :%s\r\n",
lport, fport, lie_string);
continue;
}
#ifdef INCLUDE_EXTENSIONS
/*
** Do additional parsing in case of extended request
*/
if (rcode == 0)
{
rcode = fscanf(fp, "%32[^ \t\n\r:]", arg);
/* Skip leading space up to EOF, EOL or non-space char */
while ((c = getc(fp)) == ' ' || c == '\t')
;
if (rcode <= 0)
{
#ifdef STRONG_LOG
if (syslog_flag)
syslog(LOG_NOTICE, "from: %s (%s) INVALID REQUEST",
inet_ntoa(*faddr), gethost(faddr));
#endif
printf("%d , %d : ERROR : %s\r\n",
lport, fport,
unknown_flag ? "UNKNOWN-ERROR" : "X-INVALID-REQUEST");
continue;
}
/*
** Non-standard extended request, returns with Pidentd
** version information
*/
if (strcmp(arg, "VERSION") == 0)
{
#ifdef STRONG_LOG
if (syslog_flag)
syslog(LOG_NOTICE, "from: %s (%s) VERSION REQUEST",
inet_ntoa(*faddr), gethost(faddr));
#endif
#if defined(__TIME__) && defined(__DATE__)
printf("%d , %d : X-VERSION : %s (Compiled: %s %s)\r\n", lport, fport,
version, __TIME__, __DATE__);
#else
printf("%d , %d : X-VERSION : %s\r\n", lport, fport,
version);
#endif
continue;
}
/*
** Non-standard extended proxy request
*/
else if (strcmp(arg, "PROXY") == 0 && c == ':')
{
/* We have a colon char, check for port numbers */
rcode = fscanf(fp, " %d , %d : %15[0-9.] , %15[0-9.]",
&lport, &fport, fhostaddr, lhostaddr);
if (!(rcode == 3 || rcode == 4))
{
#ifdef STRONG_LOG
if (syslog_flag)
syslog(LOG_NOTICE, "from: %s (%s) INVALID PROXY REQUEST",
inet_ntoa(*faddr), gethost(faddr));
#endif
printf("%d , %d : ERROR : %s\r\n",
lport, fport,
unknown_flag ? "UNKNOWN-ERROR" : "X-INVALID-REQUEST");
continue;
}
if (rcode == 4)
laddr2.s_addr = inet_addr(lhostaddr);
faddr2.s_addr = inet_addr(fhostaddr);
#ifdef STRONG_LOG
if (syslog_flag)
{
char a1[64], a2[64], a3[64];
strcpy(a1, inet_ntoa(*faddr));
strcpy(a2, inet_ntoa(faddr2));
strcpy(a3, inet_ntoa(laddr2));
syslog(LOG_NOTICE,
"from: %s (%s) PROXY REQUEST for %d, %d between %s and %s",
a1, gethost(faddr), lport, fport, a2, a3);
}
#endif
proxy(&laddr2, &faddr2, lport, fport, NULL);
continue;
}
/*
** Non-standard extended remote indirect request
*/
else if (strcmp(arg, "REMOTE") == 0 && c == ':')
{
/* We have a colon char, check for port numbers */
rcode = fscanf(fp, " %d , %d", &lport, &fport);
/* Skip leading space up to EOF, EOL or non-space char */
while ((c = getc(fp)) == ' ' || c == '\t')
;
if (rcode != 2 || c != ':')
{
#ifdef STRONG_LOG
if (syslog_flag)
syslog(LOG_NOTICE, "from: %s (%s) INVALID REMOTE REQUEST",
inet_ntoa(*faddr), gethost(faddr));
#endif
printf("%d , %d : ERROR : %s\r\n",
lport, fport,
unknown_flag ? "UNKNOWN-ERROR" : "X-INVALID-REQUEST");
continue;
}
/* We have a colon char, check for addr and password */
rcode = fscanf(fp, " %15[0-9.] , %32[^ \t\r\n]",
fhostaddr, password);
if (rcode > 0)
rcode += 2;
else
{
#ifdef STRONG_LOG
if (syslog_flag)
syslog(LOG_NOTICE,
"from: %s (%s) INVALID REMOTE REQUEST for %d, %d",
inet_ntoa(*faddr), gethost(faddr), lport, fport);
#endif
printf("%d , %d : ERROR : %s\r\n",
lport, fport,
unknown_flag ? "UNKNOWN-ERROR" : "X-INVALID-REQUEST");
continue;
}
/*
** Verify that the host originating the indirect request
** is allowed to do that
*/
if (!valid_fhost(faddr, password))
{
#ifdef STRONG_LOG
if (syslog_flag)
syslog(LOG_NOTICE,
"from: %s (%s) REJECTED REMOTE REQUEST for %d, %d with password %s",
inet_ntoa(*faddr), gethost(faddr), lport, fport,
password);
#endif
printf("%d , %d : ERROR : %s\r\n",
lport, fport,
unknown_flag ? "UNKNOWN-ERROR" : "X-ACCESS-DENIED");
continue;
}
faddr2.s_addr = inet_addr(fhostaddr);
#ifdef STRONG_LOG
if (syslog_flag)
{
char a1[64];
strcpy(a1, inet_ntoa(*faddr));
syslog(LOG_INFO,
"from: %s (%s) REMOTE REQUEST for %d, %d from %s with password %s",
a1, gethost(faddr), lport, fport,
inet_ntoa(faddr2), password);
}
#endif
}
else
{
#ifdef STRONG_LOG
if (syslog_flag)
syslog(LOG_NOTICE, "from: %s (%s) UNKNOWN REQUEST: %s",
inet_ntoa(*faddr), gethost(faddr), arg);
#endif
printf("%d , %d : ERROR : %s\r\n",
lport, fport,
unknown_flag ? "UNKNOWN-ERROR" : "X-INVALID-REQUEST");
continue;
}
}
#endif /* EXTENSIONS */
if (rcode < 2 || lport < 1 || lport > 65535 || fport < 1 || fport > 65535)
{
#ifdef STRONG_LOG
if (syslog_flag)
{
if (rcode > 0)
/* we have scanned at least one correct port */
syslog(LOG_NOTICE,
"from: %s (%s) for invalid-port(s): %d , %d",
inet_ntoa(*faddr), gethost(faddr), lport, fport);
else
{
/* we have scanned nothing at all so try to get the rest */
if (fscanf(fp, "%32[^\n\r]", arg) <= 0)
syslog(LOG_NOTICE, "from: %s (%s) EMPTY REQUEST",
inet_ntoa(*faddr), gethost(faddr));
else
syslog(LOG_NOTICE, "from: %s (%s) INVALID REQUEST: %s",
inet_ntoa(*faddr), gethost(faddr), arg);
}
}
#else
if (syslog_flag && rcode > 0)
syslog(LOG_NOTICE, "scanf: invalid-port(s): %d , %d from %s",
lport, fport, gethost(faddr));
#endif
printf("%d , %d : ERROR : %s\r\n",
lport, fport,
unknown_flag ? "UNKNOWN-ERROR" : "INVALID-PORT");
continue;
}
#ifdef STRONG_LOG
if (syslog_flag)
{
syslog(LOG_INFO, "from: %s ( %s ) for: %d, %d",
inet_ntoa(*faddr), gethost(faddr), lport, fport);
}
#endif
if (debug_flag && syslog_flag)
syslog(LOG_DEBUG, " After fscanf(), before k_open()");
if (! k_opened)
{
/*
** Open the kernel memory device and read the nlist table
**
** Of course k_open should not call ERROR (which then exits)
** but maybe use syslog(LOG_ERR) and return non-zero. But I am
** too lazy to change them all ...
*/
if (k_open() != 0)
{
if (syslog_flag) syslog(LOG_ERR, "k_open call failed");
printf("%d , %d : ERROR : %s\r\n",
lport, fport,
unknown_flag ? "UNKNOWN-ERROR" : "X-CANNOT-OPEN-KMEM");
continue;
}
k_opened = 1;
}
if (debug_flag && syslog_flag)
syslog(LOG_DEBUG, " After k_open(), before k_getuid()");
/*
** Get the specific TCP connection and return the uid - user number.
*/
#ifdef ALLOW_FORMAT
/* Initialize values, for architectures that do not set it */
pid = 0;
cmd = "";
cmd_and_args = "";
#endif
#define MAX_RETRY 20
/*
** Try to fetch the information MAX_RETRY times in case the
** kernel changed beneath us and we missed or took a fault.
**
** Why would we ever fail? Is not there a reliable way for the
** kernel to identify its sockets? Cannot we use that interface?
**
** Used to be 5 times, but often this is not enough on Alpha OSF.
*/
/* #define SLEEP_BETWEEN_RETRIES 1 */
/*
** If we failed in k_getuid, that is presumably because the OS was
** busy creating or destroying processes. We may want to sleep for
** a random time between retries, hoping for peace and quiet.
*/
/* k_getuid returns 0 on success, any non-zero on failure. */
for (try = 0;
(try < MAX_RETRY &&
k_getuid(&faddr2, htons(fport), laddr, htons(lport), &uid
#ifdef ALLOW_FORMAT
, &pid, &cmd, &cmd_and_args
#endif
) != 0);
try++)
#ifdef SLEEP_BETWEEN_RETRIES
{
/* Seed the generator: lport should be unique (among other concurrent identd's) */
if (try < 1) srandom(lport);
/* This gives a max sleep of 0xffff = 65535 microsecs, about 32millisec average */
usleep(random()&0x00ffff);
}
#else
;
#endif
if (try >= MAX_RETRY)
{
if (syslog_flag)
syslog(LOG_INFO, "Returned: %d , %d : NO-USER", lport, fport);
printf("%d , %d : ERROR : %s\r\n",
lport, fport,
unknown_flag ? "UNKNOWN-ERROR" : "NO-USER");
continue;
}
if (try > 0 && syslog_flag)
syslog(LOG_NOTICE, "k_getuid retries: %d", try);
if (debug_flag && syslog_flag)
syslog(LOG_DEBUG, " After k_getuid(), before getpwuid()");
/*
** Then we should try to get the username. If that fails we
** return it as an OTHER identifier
*/
pwp = getpwuid(uid);
if (!pwp || uid != pwp->pw_uid)
{
if (syslog_flag)
syslog(LOG_WARNING, "getpwuid() could not map uid (%d) to name",
uid);
printf("%d , %d : USERID : OTHER%s%s : %d\r\n",
lport, fport,
charset_name ? " , " : "",
charset_name ? charset_name : "",
uid);
continue;
}
#ifdef ALLOW_FORMAT
grp = getgrgid(pwp->pw_gid);
if (grp && pwp->pw_gid != grp->gr_gid)
{
if (syslog_flag)
syslog(LOG_WARNING,
"getgrgid() could not map gid (%d) to name (for uid %d, name %s)",
pwp->pw_gid, uid, pwp->pw_name);
printf("%d , %d : USERID : OTHER%s%s : %d\r\n",
lport, fport,
charset_name ? " , " : "",
charset_name ? charset_name : "",
uid);
continue;
}
if (grp)
sprintf (grname, "%.99s", grp->gr_name);
else
sprintf (grname, "%d", pwp->pw_gid);
#endif
/*
** Hey! We finally made it!!!
*/
#ifdef ALLOW_FORMAT
if (syslog_flag)
syslog(LOG_DEBUG, "Successful lookup: %d , %d : %s.%s\n",
lport, fport, pwp->pw_name, grname);
#else
if (syslog_flag)
syslog(LOG_DEBUG, "Successful lookup: %d , %d : %s\n",
lport, fport, pwp->pw_name);
#endif
if (noident_flag && check_noident(pwp->pw_dir))
{
if (syslog_flag)
syslog(LOG_NOTICE, "User %s requested HIDDEN-USER for host %s: %d, %d",
pwp->pw_name,
gethost(faddr),
lport, fport);
printf("%d , %d : ERROR : HIDDEN-USER\r\n",
lport, fport);
continue;
}
#ifdef INCLUDE_CRYPT
if (crypto_flag && check_crypt(faddr))
printf("%d , %d : USERID : OTHER%s%s : [%s]\r\n",
lport, fport,
charset_name ? " , " : "",
charset_name ? charset_name : "",
make_packet (pwp->pw_uid, laddr, lport, faddr, fport));
else
#endif
#ifdef ALLOW_FORMAT
if (format_flag)
{
char *cp;
__aconst char *__aconst *gmp;
int bp;
char buff[512];
for (cp = format, bp = 0; *cp != 0; cp++)
{
if (*cp == '%')
{
cp++;
if (*cp == 0) break;
else if (*cp == 'u') sprintf (&buff[bp], "%.*s", 490-bp, pwp->pw_name);
else if (*cp == 'U') sprintf (&buff[bp], "%d", pwp->pw_uid);
else if (*cp == 'g') sprintf (&buff[bp], "%.*s", 490-bp, grname);
else if (*cp == 'G') sprintf (&buff[bp], "%d", pwp->pw_gid);
else if (*cp == 'c') sprintf (&buff[bp], "%.*s", 490-bp, cmd);
else if (*cp == 'C') sprintf (&buff[bp], "%.*s", 490-bp, cmd_and_args);
else if (*cp == 'l') {
sprintf (&buff[bp], "%.*s", 490-bp, grname);
bp += strlen(&buff[bp]); if (bp >= 490) break;
setgrent();
while ((grp = getgrent()) != NULL) {
if (grp->gr_gid == pwp->pw_gid) continue;
for (gmp = grp->gr_mem; *gmp && **gmp; gmp++) {
if (! strcmp(*gmp, pwp->pw_name)) {
sprintf (&buff[bp], ",%.*s", 490-bp, grp->gr_name);
bp += strlen(&buff[bp]);
break;
}
}
if (bp >= 490) break;
}
endgrent();
}
else if (*cp == 'L') {
sprintf (&buff[bp], "%d", pwp->pw_gid);
bp += strlen(&buff[bp]); if (bp >= 490) break;
setgrent();
while ((grp = getgrent()) != NULL) {
if (grp->gr_gid == pwp->pw_gid) continue;
for (gmp = grp->gr_mem; *gmp && **gmp; gmp++) {
if (! strcmp(*gmp, pwp->pw_name)) {
sprintf (&buff[bp], ",%d", grp->gr_gid);
bp += strlen(&buff[bp]);
break;
}
}
if (bp >= 490) break;
}
endgrent();
}
else if (*cp == 'p') sprintf (&buff[bp], "%d", pid);
else { buff[bp] = *cp; buff[bp+1] = 0; }
bp += strlen(&buff[bp]); if (bp >= 490) break;
}
else { buff[bp++] = *cp; if (bp >= 490) break; }
}
if (bp >= 490) { sprintf(&buff[490], "..."); bp = 493; }
buff[bp] = 0;
printf("%d , %d : USERID : %s%s%s :%s\r\n",
lport, fport,
other_flag ? "OTHER" : "UNIX",
charset_name ? " , " : "",
charset_name ? charset_name : "",
buff);
}
else
#endif
printf("%d , %d : USERID : %s%s%s :%s\r\n",
lport, fport,
other_flag ? "OTHER" : "UNIX",
charset_name ? " , " : "",
charset_name ? charset_name : "",
pwp->pw_name);
} while(fflush(stdout), fflush(stderr), multi_flag && eat_whitespace());
return 0;
}
|