2007-01-14 06:59:06 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Fake identd server.
|
|
|
|
*
|
2008-03-02 18:23:15 +05:30
|
|
|
* Copyright (C) 2007 Denys Vlasenko
|
2007-01-14 06:59:06 +05:30
|
|
|
*
|
|
|
|
* Licensed under GPL version 2, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2008-01-27 18:20:12 +05:30
|
|
|
#include <syslog.h>
|
2007-01-14 06:59:06 +05:30
|
|
|
#include "isrv.h"
|
|
|
|
|
|
|
|
enum { TIMEOUT = 20 };
|
|
|
|
|
|
|
|
typedef struct identd_buf_t {
|
|
|
|
int pos;
|
|
|
|
int fd_flag;
|
|
|
|
char buf[64 - 2*sizeof(int)];
|
|
|
|
} identd_buf_t;
|
|
|
|
|
2007-04-07 06:14:31 +05:30
|
|
|
#define bogouser bb_common_bufsiz1
|
2007-01-14 06:59:06 +05:30
|
|
|
|
|
|
|
static int new_peer(isrv_state_t *state, int fd)
|
|
|
|
{
|
|
|
|
int peer;
|
|
|
|
identd_buf_t *buf = xzalloc(sizeof(*buf));
|
|
|
|
|
|
|
|
peer = isrv_register_peer(state, buf);
|
|
|
|
if (peer < 0)
|
|
|
|
return 0; /* failure */
|
|
|
|
if (isrv_register_fd(state, peer, fd) < 0)
|
|
|
|
return peer; /* failure, unregister peer */
|
|
|
|
|
2007-08-19 19:12:08 +05:30
|
|
|
buf->fd_flag = fcntl(fd, F_GETFL) | O_NONBLOCK;
|
2007-01-14 06:59:06 +05:30
|
|
|
isrv_want_rd(state, fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int do_rd(int fd, void **paramp)
|
|
|
|
{
|
|
|
|
identd_buf_t *buf = *paramp;
|
|
|
|
char *cur, *p;
|
2007-01-14 18:01:26 +05:30
|
|
|
int retval = 0; /* session is ok (so far) */
|
2007-01-14 06:59:06 +05:30
|
|
|
int sz;
|
|
|
|
|
|
|
|
cur = buf->buf + buf->pos;
|
|
|
|
|
2007-01-14 18:01:26 +05:30
|
|
|
if (buf->fd_flag & O_NONBLOCK)
|
|
|
|
fcntl(fd, F_SETFL, buf->fd_flag);
|
2007-01-14 06:59:06 +05:30
|
|
|
sz = safe_read(fd, cur, sizeof(buf->buf) - buf->pos);
|
|
|
|
|
|
|
|
if (sz < 0) {
|
|
|
|
if (errno != EAGAIN)
|
|
|
|
goto term; /* terminate this session if !EAGAIN */
|
|
|
|
goto ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf->pos += sz;
|
|
|
|
buf->buf[buf->pos] = '\0';
|
|
|
|
p = strpbrk(cur, "\r\n");
|
|
|
|
if (p)
|
|
|
|
*p = '\0';
|
2008-05-16 03:00:45 +05:30
|
|
|
if (!p && sz && buf->pos <= (int)sizeof(buf->buf))
|
2007-01-14 18:01:26 +05:30
|
|
|
goto ok;
|
|
|
|
/* Terminate session. If we are in server mode, then
|
|
|
|
* fd is still in nonblocking mode - we never block here */
|
2007-01-14 18:42:06 +05:30
|
|
|
if (fd == 0) fd++; /* inetd mode? then write to fd 1 */
|
2007-01-14 18:01:26 +05:30
|
|
|
fdprintf(fd, "%s : USERID : UNIX : %s\r\n", buf->buf, bogouser);
|
2007-01-14 06:59:06 +05:30
|
|
|
term:
|
|
|
|
free(buf);
|
2007-01-14 18:01:26 +05:30
|
|
|
retval = 1; /* terminate */
|
|
|
|
ok:
|
|
|
|
if (buf->fd_flag & O_NONBLOCK)
|
|
|
|
fcntl(fd, F_SETFL, buf->fd_flag & ~O_NONBLOCK);
|
|
|
|
return retval;
|
2007-01-14 06:59:06 +05:30
|
|
|
}
|
|
|
|
|
2008-07-05 14:48:54 +05:30
|
|
|
static int do_timeout(void **paramp UNUSED_PARAM)
|
2007-01-14 06:59:06 +05:30
|
|
|
{
|
|
|
|
return 1; /* terminate session */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void inetd_mode(void)
|
|
|
|
{
|
|
|
|
identd_buf_t *buf = xzalloc(sizeof(*buf));
|
2007-01-14 18:17:27 +05:30
|
|
|
/* buf->pos = 0; - xzalloc did it */
|
2007-01-14 06:59:06 +05:30
|
|
|
/* We do NOT want nonblocking I/O here! */
|
2007-01-14 18:17:27 +05:30
|
|
|
/* buf->fd_flag = 0; - xzalloc did it */
|
2007-01-14 17:37:25 +05:30
|
|
|
do
|
|
|
|
alarm(TIMEOUT);
|
2007-01-14 18:17:27 +05:30
|
|
|
while (do_rd(0, (void*)&buf) == 0);
|
2007-01-14 06:59:06 +05:30
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int fakeidentd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int fakeidentd_main(int argc UNUSED_PARAM, char **argv)
|
2007-01-14 06:59:06 +05:30
|
|
|
{
|
|
|
|
enum {
|
|
|
|
OPT_foreground = 0x1,
|
|
|
|
OPT_inetd = 0x2,
|
|
|
|
OPT_inetdwait = 0x4,
|
2007-01-14 18:42:06 +05:30
|
|
|
OPT_fiw = 0x7,
|
2007-01-14 06:59:06 +05:30
|
|
|
OPT_bindaddr = 0x8,
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *bind_address = NULL;
|
|
|
|
unsigned opt;
|
|
|
|
int fd;
|
|
|
|
|
2007-08-18 21:02:12 +05:30
|
|
|
opt = getopt32(argv, "fiwb:", &bind_address);
|
2007-04-07 06:14:31 +05:30
|
|
|
strcpy(bogouser, "nobody");
|
|
|
|
if (argv[optind])
|
|
|
|
strncpy(bogouser, argv[optind], sizeof(bogouser));
|
2007-01-14 06:59:06 +05:30
|
|
|
|
2007-01-14 18:42:06 +05:30
|
|
|
/* Daemonize if no -f and no -i and no -w */
|
2008-05-16 01:14:46 +05:30
|
|
|
if (!(opt & OPT_fiw))
|
2007-03-26 18:50:54 +05:30
|
|
|
bb_daemonize_or_rexec(0, argv);
|
|
|
|
|
2007-01-14 18:42:06 +05:30
|
|
|
/* Where to log in inetd modes? "Classic" inetd
|
|
|
|
* probably has its stderr /dev/null'ed (we need log to syslog?),
|
|
|
|
* but daemontools-like utilities usually expect that children
|
|
|
|
* log to stderr. I like daemontools more. Go their way.
|
|
|
|
* (Or maybe we need yet another option "log to syslog") */
|
|
|
|
if (!(opt & OPT_fiw) /* || (opt & OPT_syslog) */) {
|
2009-03-09 05:16:48 +05:30
|
|
|
openlog(applet_name, LOG_PID, LOG_DAEMON);
|
2007-01-14 06:59:06 +05:30
|
|
|
logmode = LOGMODE_SYSLOG;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opt & OPT_inetd) {
|
|
|
|
inetd_mode();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ignore closed connections when writing */
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
|
2007-01-14 18:42:06 +05:30
|
|
|
fd = 0;
|
|
|
|
if (!(opt & OPT_inetdwait)) {
|
2007-01-14 06:59:06 +05:30
|
|
|
fd = create_and_bind_stream_or_die(bind_address,
|
|
|
|
bb_lookup_port("identd", "tcp", 113));
|
|
|
|
xlisten(fd, 5);
|
|
|
|
}
|
|
|
|
|
2007-01-14 17:37:25 +05:30
|
|
|
isrv_run(fd, new_peer, do_rd, /*do_wr:*/ NULL, do_timeout,
|
|
|
|
TIMEOUT, (opt & OPT_inetdwait) ? TIMEOUT : 0);
|
2007-01-14 06:59:06 +05:30
|
|
|
return 0;
|
|
|
|
}
|