2 * Copyright (c) 1983, 1991, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/usr.sbin/inetd/builtins.c,v 1.19.2.7 2002/07/22 14:05:56 fanf Exp $
27 * $DragonFly: src/usr.sbin/inetd/builtins.c,v 1.5 2004/12/18 22:48:03 swildner Exp $
31 #include <sys/filio.h>
32 #include <sys/ioccom.h>
33 #include <sys/param.h>
35 #include <sys/socket.h>
36 #include <sys/sysctl.h>
37 #include <sys/ucred.h>
39 #include <sys/utsname.h>
56 void chargen_dg(int, struct servtab
*);
57 void chargen_stream(int, struct servtab
*);
58 void daytime_dg(int, struct servtab
*);
59 void daytime_stream(int, struct servtab
*);
60 void discard_dg(int, struct servtab
*);
61 void discard_stream(int, struct servtab
*);
62 void echo_dg(int, struct servtab
*);
63 void echo_stream(int, struct servtab
*);
64 static int getline(int, char *, int);
65 void iderror(int, int, int, const char *);
66 void ident_stream(int, struct servtab
*);
68 unsigned long machtime(void);
69 void machtime_dg(int, struct servtab
*);
70 void machtime_stream(int, struct servtab
*);
76 struct biltin biltins
[] = {
77 /* Echo received data */
78 { "echo", SOCK_STREAM
, 1, -1, echo_stream
},
79 { "echo", SOCK_DGRAM
, 0, 1, echo_dg
},
81 /* Internet /dev/null */
82 { "discard", SOCK_STREAM
, 1, -1, discard_stream
},
83 { "discard", SOCK_DGRAM
, 0, 1, discard_dg
},
85 /* Return 32 bit time since 1900 */
86 { "time", SOCK_STREAM
, 0, -1, machtime_stream
},
87 { "time", SOCK_DGRAM
, 0, 1, machtime_dg
},
89 /* Return human-readable time */
90 { "daytime", SOCK_STREAM
, 0, -1, daytime_stream
},
91 { "daytime", SOCK_DGRAM
, 0, 1, daytime_dg
},
93 /* Familiar character generator */
94 { "chargen", SOCK_STREAM
, 1, -1, chargen_stream
},
95 { "chargen", SOCK_DGRAM
, 0, 1, chargen_dg
},
97 { "tcpmux", SOCK_STREAM
, 1, -1, (bi_fn_t
*)tcpmux
},
99 { "auth", SOCK_STREAM
, 1, -1, ident_stream
},
101 { NULL
, 0, 0, 0, NULL
}
105 * RFC864 Character Generator Protocol. Generates character data without
106 * any regard for input.
116 for (i
= 0; i
<= 128; ++i
)
123 chargen_dg(int s
, struct servtab
*sep
) /* Character generator */
125 struct sockaddr_storage ss
;
129 char text
[LINESIZ
+2];
137 if (recvfrom(s
, text
, sizeof(text
), 0,
138 (struct sockaddr
*)&ss
, &size
) < 0)
141 if (check_loop((struct sockaddr
*)&ss
, sep
))
144 if ((len
= endring
- rs
) >= LINESIZ
)
145 memmove(text
, rs
, LINESIZ
);
147 memmove(text
, rs
, len
);
148 memmove(text
+ len
, ring
, LINESIZ
- len
);
152 text
[LINESIZ
] = '\r';
153 text
[LINESIZ
+ 1] = '\n';
154 sendto(s
, text
, sizeof(text
), 0, (struct sockaddr
*)&ss
, size
);
159 chargen_stream(int s
, struct servtab
*sep
) /* Character generator */
162 char *rs
, text
[LINESIZ
+2];
164 inetd_setproctitle(sep
->se_service
, s
);
171 text
[LINESIZ
] = '\r';
172 text
[LINESIZ
+ 1] = '\n';
174 if ((len
= endring
- rs
) >= LINESIZ
)
175 memmove(text
, rs
, LINESIZ
);
177 memmove(text
, rs
, len
);
178 memmove(text
+ len
, ring
, LINESIZ
- len
);
182 if (write(s
, text
, sizeof(text
)) != sizeof(text
))
189 * RFC867 Daytime Protocol. Sends the current date and time as an ascii
190 * character string without any regard for input.
195 daytime_dg(int s
, struct servtab
*sep
) /* Return human-readable time of day */
199 struct sockaddr_storage ss
;
202 now
= time((time_t *) 0);
205 if (recvfrom(s
, buffer
, sizeof(buffer
), 0,
206 (struct sockaddr
*)&ss
, &size
) < 0)
209 if (check_loop((struct sockaddr
*)&ss
, sep
))
212 sprintf(buffer
, "%.24s\r\n", ctime(&now
));
213 sendto(s
, buffer
, strlen(buffer
), 0, (struct sockaddr
*)&ss
, size
);
218 daytime_stream(int s
, struct servtab
*sep __unused
) /* Return human-readable time of day */
223 now
= time((time_t *) 0);
225 sprintf(buffer
, "%.24s\r\n", ctime(&now
));
226 send(s
, buffer
, strlen(buffer
), MSG_EOF
);
230 * RFC863 Discard Protocol. Any data received is thrown away and no response
236 discard_dg(int s
, struct servtab
*sep __unused
) /* Discard service -- ignore data */
238 char buffer
[BUFSIZE
];
240 read(s
, buffer
, sizeof(buffer
));
245 discard_stream(int s
, struct servtab
*sep
) /* Discard service -- ignore data */
248 char buffer
[BUFSIZE
];
250 inetd_setproctitle(sep
->se_service
, s
);
252 while ((ret
= read(s
, buffer
, sizeof(buffer
))) > 0)
254 if (ret
== 0 || errno
!= EINTR
)
261 * RFC862 Echo Protocol. Any data received is sent back to the sender as
267 echo_dg(int s
, struct servtab
*sep
) /* Echo service -- echo data back */
269 char buffer
[65536]; /* Should be sizeof(max datagram). */
272 struct sockaddr_storage ss
;
275 if ((i
= recvfrom(s
, buffer
, sizeof(buffer
), 0,
276 (struct sockaddr
*)&ss
, &size
)) < 0)
279 if (check_loop((struct sockaddr
*)&ss
, sep
))
282 sendto(s
, buffer
, i
, 0, (struct sockaddr
*)&ss
, size
);
287 echo_stream(int s
, struct servtab
*sep
) /* Echo service -- echo data back */
289 char buffer
[BUFSIZE
];
292 inetd_setproctitle(sep
->se_service
, s
);
293 while ((i
= read(s
, buffer
, sizeof(buffer
))) > 0 &&
294 write(s
, buffer
, i
) > 0)
300 * RFC1413 Identification Protocol. Given a TCP port number pair, return a
301 * character string which identifies the owner of that connection on the
302 * server's system. Extended to allow for ~/.fakeid support and ~/.noident
306 /* RFC 1413 says the following are the only errors you can return. */
307 #define ID_INVALID "INVALID-PORT" /* Port number improperly specified. */
308 #define ID_NOUSER "NO-USER" /* Port not in use/not identifable. */
309 #define ID_HIDDEN "HIDDEN-USER" /* Hiden at user's request. */
310 #define ID_UNKNOWN "UNKNOWN-ERROR" /* Everything else. */
314 iderror(int lport
, int fport
, int s
, const char *er
) /* Generic ident_stream error-sending func */
318 asprintf(&p
, "%d , %d : ERROR : %s\r\n", lport
, fport
, er
);
320 syslog(LOG_ERR
, "asprintf: %m");
323 send(s
, p
, strlen(p
), MSG_EOF
);
331 ident_stream(int s
, struct servtab
*sep
) /* Ident service (AKA "auth") */
335 struct sockaddr_in sin4
[2];
337 struct sockaddr_in6 sin6
[2];
339 struct sockaddr_storage ss
[2];
341 struct timeval tv
= {
345 struct passwd
*pw
= NULL
;
347 char buf
[BUFSIZE
], *p
, **av
, *osname
= NULL
, e
;
348 char idbuf
[MAXLOGNAME
] = ""; /* Big enough to hold uid in decimal. */
352 int c
, fflag
= 0, nflag
= 0, rflag
= 0, argc
= 0;
353 int gflag
= 0, iflag
= 0, Fflag
= 0, getcredfail
= 0, onreadlen
;
354 u_short lport
, fport
;
356 inetd_setproctitle(sep
->se_service
, s
);
358 * Reset getopt() since we are a fork() but not an exec() from
359 * a parent which used getopt() already.
364 * Take the internal argument vector and count it out to make an
365 * argument count for getopt. This can be used for any internal
366 * service to read arguments and use getopt() easily.
368 for (av
= sep
->se_argv
; *av
; av
++)
375 while ((c
= getopt(argc
, sep
->se_argv
, "d:fFgino:rt:")) != -1)
379 strlcpy(idbuf
, optarg
, sizeof(idbuf
));
390 rnd32
= 0; /* Shush, compiler. */
392 * The number of bits in "rnd32" divided
393 * by the number of bits needed per iteration
394 * gives a more optimal way to reload the
395 * random number only when necessary.
397 * 32 bits from arc4random corresponds to
398 * about 6 base-36 digits, so we reseed evey 6.
400 for (i
= 0; i
< sizeof(idbuf
) - 1; i
++) {
401 static const char *const base36
=
403 "abcdefghijklmnopqrstuvwxyz";
405 rnd32
= arc4random();
406 idbuf
[i
] = base36
[rnd32
% 36];
424 switch (sscanf(optarg
, "%d.%d", &sec
, &usec
)) {
433 warnx("bad -t argument");
441 if (osname
== NULL
) {
442 if (uname(&un
) == -1)
443 iderror(0, 0, s
, ID_UNKNOWN
);
448 * We're going to prepare for and execute reception of a
449 * packet of data from the user. The data is in the format
450 * "local_port , foreign_port\r\n" (with local being the
451 * server's port and foreign being the client's.)
453 gettimeofday(&to
, NULL
);
454 to
.tv_sec
+= tv
.tv_sec
;
455 to
.tv_usec
+= tv
.tv_usec
;
456 if (to
.tv_usec
>= 1000000) {
457 to
.tv_usec
-= 1000000;
462 bufsiz
= sizeof(buf
) - 1;
465 gettimeofday(&tv
, NULL
);
466 tv
.tv_sec
= to
.tv_sec
- tv
.tv_sec
;
467 tv
.tv_usec
= to
.tv_usec
- tv
.tv_usec
;
468 if (tv
.tv_usec
< 0) {
469 tv
.tv_usec
+= 1000000;
475 if (select(s
+ 1, &fdset
, NULL
, NULL
, &tv
) == -1)
476 iderror(0, 0, s
, ID_UNKNOWN
);
477 if (ioctl(s
, FIONREAD
, &onreadlen
) == -1)
478 iderror(0, 0, s
, ID_UNKNOWN
);
479 if ((size_t)onreadlen
> bufsiz
)
481 ssize
= read(s
, &buf
[size
], (size_t)onreadlen
);
483 iderror(0, 0, s
, ID_UNKNOWN
);
488 if (memchr(&buf
[size
- ssize
], '\n', ssize
) != NULL
)
492 /* Read two characters, and check for a delimiting character */
493 if (sscanf(buf
, "%hu , %hu%c", &lport
, &fport
, &e
) != 3 || isdigit(e
))
494 iderror(0, 0, s
, ID_INVALID
);
501 * If not "real" (-r), send a HIDDEN-USER error for everything.
502 * If -d is used to set a fallback username, this is used to
503 * override it, and the fallback is returned instead.
507 iderror(lport
, fport
, s
, ID_HIDDEN
);
512 * We take the input and construct an array of two sockaddr_ins
513 * which contain the local address information and foreign
514 * address information, respectively, used to look up the
515 * credentials for the socket (which are returned by the
516 * sysctl "net.inet.tcp.getcred" when we call it.)
518 socklen
= sizeof(ss
[0]);
519 if (getsockname(s
, (struct sockaddr
*)&ss
[0], &socklen
) == -1)
520 iderror(lport
, fport
, s
, ID_UNKNOWN
);
521 socklen
= sizeof(ss
[1]);
522 if (getpeername(s
, (struct sockaddr
*)&ss
[1], &socklen
) == -1)
523 iderror(lport
, fport
, s
, ID_UNKNOWN
);
524 if (ss
[0].ss_family
!= ss
[1].ss_family
)
525 iderror(lport
, fport
, s
, ID_UNKNOWN
);
527 switch (ss
[0].ss_family
) {
529 sin4
[0] = *(struct sockaddr_in
*)&ss
[0];
530 sin4
[0].sin_port
= htons(lport
);
531 sin4
[1] = *(struct sockaddr_in
*)&ss
[1];
532 sin4
[1].sin_port
= htons(fport
);
533 if (sysctlbyname("net.inet.tcp.getcred", &uc
, &size
, sin4
,
539 sin6
[0] = *(struct sockaddr_in6
*)&ss
[0];
540 sin6
[0].sin6_port
= htons(lport
);
541 sin6
[1] = *(struct sockaddr_in6
*)&ss
[1];
542 sin6
[1].sin6_port
= htons(fport
);
543 if (sysctlbyname("net.inet6.tcp6.getcred", &uc
, &size
, sin6
,
548 default: /* should not reach here */
549 getcredfail
= EAFNOSUPPORT
;
552 if (getcredfail
!= 0) {
554 iderror(lport
, fport
, s
,
555 getcredfail
== ENOENT
? ID_NOUSER
: ID_UNKNOWN
);
559 /* Look up the pw to get the username and home directory*/
561 pw
= getpwuid(uc
.cr_uid
);
563 iderror(lport
, fport
, s
, errno
== 0 ? ID_NOUSER
: ID_UNKNOWN
);
566 snprintf(idbuf
, sizeof(idbuf
), "%u", (unsigned)pw
->pw_uid
);
568 strlcpy(idbuf
, pw
->pw_name
, sizeof(idbuf
));
571 * If enabled, we check for a file named ".noident" in the user's
572 * home directory. If found, we return HIDDEN-USER.
575 if (asprintf(&p
, "%s/.noident", pw
->pw_dir
) == -1)
576 iderror(lport
, fport
, s
, ID_UNKNOWN
);
577 if (lstat(p
, &sb
) == 0) {
579 iderror(lport
, fport
, s
, ID_HIDDEN
);
585 * Here, if enabled, we read a user's ".fakeid" file in their
586 * home directory. It consists of a line containing the name
593 * Here we set ourself to effectively be the user, so we don't
594 * open any files we have no permission to open, especially
595 * symbolic links to sensitive root-owned files or devices.
597 if (initgroups(pw
->pw_name
, pw
->pw_gid
) == -1)
598 iderror(lport
, fport
, s
, ID_UNKNOWN
);
599 if (seteuid(pw
->pw_uid
) == -1)
600 iderror(lport
, fport
, s
, ID_UNKNOWN
);
602 * We can't stat() here since that would be a race
604 * Therefore, we open the file we have permissions to open
605 * and if it's not a regular file, we close it and end up
606 * returning the user's real username.
608 if (asprintf(&p
, "%s/.fakeid", pw
->pw_dir
) == -1)
609 iderror(lport
, fport
, s
, ID_UNKNOWN
);
610 fakeid_fd
= open(p
, O_RDONLY
| O_NONBLOCK
);
612 if (fakeid_fd
== -1 || fstat(fakeid_fd
, &sb
) == -1 ||
613 !S_ISREG(sb
.st_mode
))
616 if ((ssize
= read(fakeid_fd
, buf
, sizeof(buf
) - 1)) < 0)
621 * Usually, the file will have the desired identity
622 * in the form "identity\n". Allow for leading white
623 * space and trailing white space/end of line.
626 p
+= strspn(p
, " \t");
627 p
[strcspn(p
, " \t\r\n")] = '\0';
628 if (strlen(p
) > MAXLOGNAME
- 1) /* Too long (including nul)? */
629 p
[MAXLOGNAME
- 1] = '\0';
632 * If the name is a zero-length string or matches it
633 * the id or name of another user (unless permitted by -F)
634 * then it is invalid.
640 if (p
[strspn(p
, "0123456789")] == '\0' &&
641 getpwuid(atoi(p
)) != NULL
)
644 if (getpwnam(p
) != NULL
)
649 strlcpy(idbuf
, p
, sizeof(idbuf
));
657 /* Finally, we make and send the reply. */
658 if (asprintf(&p
, "%d , %d : USERID : %s : %s\r\n", lport
, fport
, osname
,
660 syslog(LOG_ERR
, "asprintf: %m");
663 send(s
, p
, strlen(p
), MSG_EOF
);
670 * RFC738 Time Server.
671 * Return a machine readable date and time, in the form of the
672 * number of seconds since midnight, Jan 1, 1900. Since gettimeofday
673 * returns the number of seconds since midnight, Jan 1, 1970,
674 * we must add 2208988800 seconds to this figure to make up for
675 * some seventy years Bell Labs was asleep.
683 if (gettimeofday(&tv
, (struct timezone
*)NULL
) < 0) {
685 warnx("unable to get time of day");
688 #define OFFSET ((u_long)25567 * 24*60*60)
689 return (htonl((long)(tv
.tv_sec
+ OFFSET
)));
695 machtime_dg(int s
, struct servtab
*sep
)
697 unsigned long result
;
698 struct sockaddr_storage ss
;
702 if (recvfrom(s
, (char *)&result
, sizeof(result
), 0,
703 (struct sockaddr
*)&ss
, &size
) < 0)
706 if (check_loop((struct sockaddr
*)&ss
, sep
))
710 sendto(s
, (char *) &result
, sizeof(result
), 0,
711 (struct sockaddr
*)&ss
, size
);
716 machtime_stream(int s
, struct servtab
*sep __unused
)
718 unsigned long result
;
721 send(s
, (char *) &result
, sizeof(result
), MSG_EOF
);
725 * RFC1078 TCP Port Service Multiplexer (TCPMUX). Service connections to
726 * services based on the service name sent.
728 * Based on TCPMUX.C by Mark K. Lottor November 1988
729 * sri-nic::ps:<mkl>tcpmux.c
732 #define MAX_SERV_LEN (256+2) /* 2 bytes for \r\n */
733 #define strwrite(fd, buf) write(fd, buf, sizeof(buf)-1)
735 static int /* # of characters upto \r,\n or \0 */
736 getline(int fd
, char *buf
, int len
)
742 sigemptyset(&sa
.sa_mask
);
743 sa
.sa_handler
= SIG_DFL
;
744 sigaction(SIGALRM
, &sa
, (struct sigaction
*)0);
747 n
= read(fd
, buf
, len
-count
);
754 if (*buf
== '\r' || *buf
== '\n' || *buf
== '\0')
759 } while (count
< len
);
767 char service
[MAX_SERV_LEN
+1];
770 /* Get requested service name */
771 if ((len
= getline(s
, service
, MAX_SERV_LEN
)) < 0) {
772 strwrite(s
, "-Error reading service name\r\n");
778 warnx("tcpmux: someone wants %s", service
);
781 * Help is a required command, and lists available services,
784 if (!strcasecmp(service
, "help")) {
785 for (sep
= servtab
; sep
; sep
= sep
->se_next
) {
788 write(s
,sep
->se_service
,strlen(sep
->se_service
));
794 /* Try matching a service in inetd.conf with the request */
795 for (sep
= servtab
; sep
; sep
= sep
->se_next
) {
798 if (!strcasecmp(service
, sep
->se_service
)) {
799 if (ISMUXPLUS(sep
)) {
800 strwrite(s
, "+Go\r\n");
805 strwrite(s
, "-Service not available\r\n");