2003-12-16 12:32:52 +01:00
|
|
|
/* watchgnupg.c - Socket server for GnuPG logs
|
2011-02-03 16:50:01 +01:00
|
|
|
* Copyright (C) 2003, 2004, 2010 Free Software Foundation, Inc.
|
2003-12-16 12:32:52 +01:00
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-04 21:49:40 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-12-16 12:32:52 +01:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG 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
|
2016-11-05 12:02:19 +01:00
|
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2003-12-16 12:32:52 +01:00
|
|
|
*/
|
|
|
|
|
2004-02-12 11:02:22 +01:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
2003-12-16 12:32:52 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/un.h>
|
2010-08-09 17:40:29 +02:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
2004-01-16 23:38:58 +01:00
|
|
|
#include <fcntl.h>
|
2003-12-16 17:31:42 +01:00
|
|
|
#include <time.h>
|
2014-12-01 15:55:28 +01:00
|
|
|
#ifdef HAVE_SYS_SELECT_H
|
|
|
|
# include <sys/select.h>
|
|
|
|
#endif
|
2003-12-16 12:32:52 +01:00
|
|
|
|
|
|
|
#define PGM "watchgnupg"
|
|
|
|
|
2009-05-20 00:39:45 +02:00
|
|
|
/* Allow for a standalone build on most systems. */
|
2004-02-12 11:02:22 +01:00
|
|
|
#ifdef VERSION
|
2013-11-18 14:09:47 +01:00
|
|
|
#define MYVERSION_LINE PGM " ("GNUPG_NAME") " VERSION
|
2004-02-12 11:02:22 +01:00
|
|
|
#define BUGREPORT_LINE "\nReport bugs to <bug-gnupg@gnu.org>.\n"
|
|
|
|
#else
|
2010-08-09 17:40:29 +02:00
|
|
|
#define MYVERSION_LINE PGM " (standalone build) " __DATE__
|
2004-02-12 11:02:22 +01:00
|
|
|
#define BUGREPORT_LINE ""
|
|
|
|
#endif
|
2009-05-20 00:39:45 +02:00
|
|
|
#if !defined(SUN_LEN) || !defined(PF_LOCAL) || !defined(AF_LOCAL)
|
2015-04-24 16:10:15 +02:00
|
|
|
#define GNUPG_COMMON_NEED_AFLOCAL
|
2012-08-24 09:29:56 +02:00
|
|
|
#include "../common/mischelp.h"
|
2005-05-31 22:03:04 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2003-12-16 12:32:52 +01:00
|
|
|
static int verbose;
|
2010-10-06 13:29:10 +02:00
|
|
|
static int time_only;
|
2003-12-16 12:32:52 +01:00
|
|
|
|
|
|
|
static void
|
|
|
|
die (const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list arg_ptr;
|
|
|
|
|
|
|
|
fflush (stdout);
|
|
|
|
fprintf (stderr, "%s: ", PGM);
|
|
|
|
|
|
|
|
va_start (arg_ptr, format);
|
|
|
|
vfprintf (stderr, format, arg_ptr);
|
|
|
|
va_end (arg_ptr);
|
|
|
|
putc ('\n', stderr);
|
|
|
|
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-05 21:05:43 +02:00
|
|
|
static void
|
|
|
|
err (const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list arg_ptr;
|
2003-12-16 12:32:52 +01:00
|
|
|
|
2010-10-05 21:05:43 +02:00
|
|
|
fflush (stdout);
|
|
|
|
fprintf (stderr, "%s: ", PGM);
|
2003-12-16 12:32:52 +01:00
|
|
|
|
2010-10-05 21:05:43 +02:00
|
|
|
va_start (arg_ptr, format);
|
|
|
|
vfprintf (stderr, format, arg_ptr);
|
|
|
|
va_end (arg_ptr);
|
|
|
|
putc ('\n', stderr);
|
|
|
|
}
|
2003-12-16 12:32:52 +01:00
|
|
|
|
|
|
|
static void *
|
|
|
|
xmalloc (size_t n)
|
|
|
|
{
|
|
|
|
void *p = malloc (n);
|
|
|
|
if (!p)
|
|
|
|
die ("out of core");
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
xcalloc (size_t n, size_t m)
|
|
|
|
{
|
|
|
|
void *p = calloc (n, m);
|
|
|
|
if (!p)
|
|
|
|
die ("out of core");
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
xrealloc (void *old, size_t n)
|
|
|
|
{
|
|
|
|
void *p = realloc (old, n);
|
|
|
|
if (!p)
|
|
|
|
die ("out of core");
|
|
|
|
return p;
|
|
|
|
}
|
2011-02-03 16:50:01 +01:00
|
|
|
|
2003-12-16 12:32:52 +01:00
|
|
|
|
|
|
|
struct client_s {
|
|
|
|
struct client_s *next;
|
|
|
|
int fd;
|
|
|
|
size_t size; /* Allocated size of buffer. */
|
|
|
|
size_t len; /* Current length of buffer. */
|
|
|
|
unsigned char *buffer; /* Buffer to with data already read. */
|
2011-02-03 16:50:01 +01:00
|
|
|
|
2003-12-16 12:32:52 +01:00
|
|
|
};
|
|
|
|
typedef struct client_s *client_t;
|
|
|
|
|
2010-10-05 21:05:43 +02:00
|
|
|
/* The list of all connected peers. */
|
|
|
|
static client_t client_list;
|
|
|
|
|
|
|
|
|
2003-12-16 12:32:52 +01:00
|
|
|
|
|
|
|
|
2003-12-16 17:31:42 +01:00
|
|
|
static void
|
|
|
|
print_fd_and_time (int fd)
|
|
|
|
{
|
|
|
|
struct tm *tp;
|
|
|
|
time_t atime = time (NULL);
|
2011-02-03 16:50:01 +01:00
|
|
|
|
2003-12-16 17:31:42 +01:00
|
|
|
tp = localtime (&atime);
|
2011-02-03 16:50:01 +01:00
|
|
|
if (time_only)
|
2010-10-06 13:29:10 +02:00
|
|
|
printf ("%3d - %02d:%02d:%02d ",
|
|
|
|
fd,
|
|
|
|
tp->tm_hour, tp->tm_min, tp->tm_sec );
|
|
|
|
else
|
|
|
|
printf ("%3d - %04d-%02d-%02d %02d:%02d:%02d ",
|
|
|
|
fd,
|
|
|
|
1900+tp->tm_year, tp->tm_mon+1, tp->tm_mday,
|
|
|
|
tp->tm_hour, tp->tm_min, tp->tm_sec );
|
2003-12-16 17:31:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-16 12:32:52 +01:00
|
|
|
/* Print LINE for the client identified by C. Calling this function
|
2015-03-19 11:14:52 +01:00
|
|
|
with LINE set to NULL, will flush the internal buffer. */
|
2003-12-16 12:32:52 +01:00
|
|
|
static void
|
|
|
|
print_line (client_t c, const char *line)
|
|
|
|
{
|
|
|
|
const char *s;
|
|
|
|
size_t n;
|
|
|
|
|
|
|
|
if (!line)
|
|
|
|
{
|
|
|
|
if (c->buffer && c->len)
|
|
|
|
{
|
2003-12-16 17:31:42 +01:00
|
|
|
print_fd_and_time (c->fd);
|
2011-02-03 16:50:01 +01:00
|
|
|
fwrite (c->buffer, c->len, 1, stdout);
|
2003-12-16 12:32:52 +01:00
|
|
|
putc ('\n', stdout);
|
|
|
|
c->len = 0;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((s = strchr (line, '\n')))
|
|
|
|
{
|
2003-12-16 17:31:42 +01:00
|
|
|
print_fd_and_time (c->fd);
|
2003-12-16 12:32:52 +01:00
|
|
|
if (c->buffer && c->len)
|
|
|
|
{
|
2011-02-03 16:50:01 +01:00
|
|
|
fwrite (c->buffer, c->len, 1, stdout);
|
2003-12-16 12:32:52 +01:00
|
|
|
c->len = 0;
|
|
|
|
}
|
2011-02-03 16:50:01 +01:00
|
|
|
fwrite (line, s - line + 1, 1, stdout);
|
2003-12-16 12:32:52 +01:00
|
|
|
line = s + 1;
|
|
|
|
}
|
|
|
|
n = strlen (line);
|
2003-12-16 15:20:45 +01:00
|
|
|
if (n)
|
2003-12-16 12:32:52 +01:00
|
|
|
{
|
2003-12-16 15:20:45 +01:00
|
|
|
if (c->len + n >= c->size)
|
2003-12-16 12:32:52 +01:00
|
|
|
{
|
2003-12-16 15:20:45 +01:00
|
|
|
c->size += ((n + 255) & ~255);
|
|
|
|
c->buffer = (c->buffer
|
|
|
|
? xrealloc (c->buffer, c->size)
|
|
|
|
: xmalloc (c->size));
|
2003-12-16 12:32:52 +01:00
|
|
|
}
|
|
|
|
memcpy (c->buffer + c->len, line, n);
|
|
|
|
c->len += n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-05 21:05:43 +02:00
|
|
|
static void
|
|
|
|
setup_client (int server_fd, int is_un)
|
2011-02-03 16:50:01 +01:00
|
|
|
{
|
2010-10-05 21:05:43 +02:00
|
|
|
struct sockaddr_un addr_un;
|
|
|
|
struct sockaddr_in addr_in;
|
|
|
|
struct sockaddr *addr;
|
|
|
|
socklen_t addrlen;
|
|
|
|
int fd;
|
|
|
|
client_t client;
|
|
|
|
|
|
|
|
if (is_un)
|
|
|
|
{
|
|
|
|
addr = (struct sockaddr *)&addr_un;
|
|
|
|
addrlen = sizeof addr_un;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
addr = (struct sockaddr *)&addr_in;
|
|
|
|
addrlen = sizeof addr_in;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd = accept (server_fd, addr, &addrlen);
|
|
|
|
if (fd == -1)
|
|
|
|
{
|
|
|
|
printf ("[accepting %s connection failed: %s]\n",
|
|
|
|
is_un? "local":"tcp", strerror (errno));
|
|
|
|
}
|
|
|
|
else if (fd >= FD_SETSIZE)
|
|
|
|
{
|
|
|
|
close (fd);
|
|
|
|
printf ("[connection request denied: too many connections]\n");
|
|
|
|
}
|
2011-02-03 16:50:01 +01:00
|
|
|
else
|
2010-10-05 21:05:43 +02:00
|
|
|
{
|
|
|
|
for (client = client_list; client && client->fd != -1;
|
|
|
|
client = client->next)
|
|
|
|
;
|
|
|
|
if (!client)
|
|
|
|
{
|
|
|
|
client = xcalloc (1, sizeof *client);
|
|
|
|
client->next = client_list;
|
|
|
|
client_list = client;
|
|
|
|
}
|
|
|
|
client->fd = fd;
|
|
|
|
printf ("[client at fd %d connected (%s)]\n",
|
|
|
|
client->fd, is_un? "local":"tcp");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-02-12 11:02:22 +01:00
|
|
|
static void
|
|
|
|
print_version (int with_help)
|
|
|
|
{
|
|
|
|
fputs (MYVERSION_LINE "\n"
|
2018-06-12 16:11:19 +02:00
|
|
|
GNUPG_DEF_COPYRIGHT_LINE "\n"
|
2010-08-09 17:40:29 +02:00
|
|
|
"License GPLv3+: "
|
2017-01-23 19:16:55 +01:00
|
|
|
"GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>\n"
|
2010-08-09 17:40:29 +02:00
|
|
|
"This is free software: you are free to change and redistribute it.\n"
|
|
|
|
"There is NO WARRANTY, to the extent permitted by law.\n",
|
2004-02-12 11:02:22 +01:00
|
|
|
stdout);
|
|
|
|
if (with_help)
|
2011-02-03 16:50:01 +01:00
|
|
|
fputs
|
2010-10-05 21:05:43 +02:00
|
|
|
("\n"
|
|
|
|
"Usage: " PGM " [OPTIONS] SOCKETNAME\n"
|
|
|
|
" " PGM " [OPTIONS] PORT [SOCKETNAME]\n"
|
|
|
|
"Open the local socket SOCKETNAME (or the TCP port PORT)\n"
|
|
|
|
"and display log messages\n"
|
|
|
|
"\n"
|
|
|
|
" --tcp listen on a TCP port and optionally on a local socket\n"
|
|
|
|
" --force delete an already existing socket file\n"
|
|
|
|
" --verbose enable extra informational output\n"
|
2010-10-06 13:29:10 +02:00
|
|
|
" --time-only print only the time; not a full timestamp\n"
|
2010-10-05 21:05:43 +02:00
|
|
|
" --version print version of the program and exit\n"
|
|
|
|
" --help display this help and exit\n"
|
|
|
|
BUGREPORT_LINE, stdout );
|
2011-02-03 16:50:01 +01:00
|
|
|
|
2004-02-12 11:02:22 +01:00
|
|
|
exit (0);
|
|
|
|
}
|
2003-12-16 12:32:52 +01:00
|
|
|
|
2011-02-03 16:50:01 +01:00
|
|
|
int
|
2003-12-16 12:32:52 +01:00
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
int last_argc = -1;
|
|
|
|
int force = 0;
|
2010-08-09 17:40:29 +02:00
|
|
|
int tcp = 0;
|
2003-12-16 12:32:52 +01:00
|
|
|
|
2010-08-09 17:40:29 +02:00
|
|
|
struct sockaddr_un srvr_addr_un;
|
|
|
|
struct sockaddr_in srvr_addr_in;
|
2010-10-05 21:05:43 +02:00
|
|
|
struct sockaddr *addr_in = NULL;
|
|
|
|
struct sockaddr *addr_un = NULL;
|
|
|
|
socklen_t addrlen_in, addrlen_un;
|
2010-08-09 17:40:29 +02:00
|
|
|
unsigned short port;
|
2010-10-05 21:05:43 +02:00
|
|
|
int server_un, server_in;
|
2004-01-16 23:38:58 +01:00
|
|
|
int flags;
|
2011-02-03 16:50:01 +01:00
|
|
|
|
2003-12-16 12:32:52 +01:00
|
|
|
if (argc)
|
|
|
|
{
|
|
|
|
argc--; argv++;
|
|
|
|
}
|
|
|
|
while (argc && last_argc != argc )
|
|
|
|
{
|
|
|
|
last_argc = argc;
|
2004-02-12 11:02:22 +01:00
|
|
|
if (!strcmp (*argv, "--"))
|
2003-12-16 12:32:52 +01:00
|
|
|
{
|
|
|
|
argc--; argv++;
|
2004-02-12 11:02:22 +01:00
|
|
|
break;
|
2003-12-16 12:32:52 +01:00
|
|
|
}
|
2004-02-12 11:02:22 +01:00
|
|
|
else if (!strcmp (*argv, "--version"))
|
|
|
|
print_version (0);
|
|
|
|
else if (!strcmp (*argv, "--help"))
|
|
|
|
print_version (1);
|
|
|
|
else if (!strcmp (*argv, "--verbose"))
|
2003-12-16 12:32:52 +01:00
|
|
|
{
|
2004-02-12 11:02:22 +01:00
|
|
|
verbose = 1;
|
2003-12-16 12:32:52 +01:00
|
|
|
argc--; argv++;
|
|
|
|
}
|
2010-10-06 13:29:10 +02:00
|
|
|
else if (!strcmp (*argv, "--time-only"))
|
|
|
|
{
|
|
|
|
time_only = 1;
|
|
|
|
argc--; argv++;
|
|
|
|
}
|
2003-12-16 12:32:52 +01:00
|
|
|
else if (!strcmp (*argv, "--force"))
|
|
|
|
{
|
|
|
|
force = 1;
|
|
|
|
argc--; argv++;
|
|
|
|
}
|
2010-08-09 17:40:29 +02:00
|
|
|
else if (!strcmp (*argv, "--tcp"))
|
|
|
|
{
|
|
|
|
tcp = 1;
|
|
|
|
argc--; argv++;
|
|
|
|
}
|
2011-02-03 16:50:01 +01:00
|
|
|
}
|
|
|
|
|
2010-10-05 21:05:43 +02:00
|
|
|
if (!((!tcp && argc == 1) || (tcp && (argc == 1 || argc == 2))))
|
2003-12-16 12:32:52 +01:00
|
|
|
{
|
2010-10-05 21:05:43 +02:00
|
|
|
fprintf (stderr, "usage: " PGM " socketname\n"
|
|
|
|
" " PGM " --tcp port [socketname]\n");
|
2004-02-12 11:02:22 +01:00
|
|
|
exit (1);
|
2003-12-16 12:32:52 +01:00
|
|
|
}
|
2011-02-03 16:50:01 +01:00
|
|
|
|
2010-10-05 21:05:43 +02:00
|
|
|
if (tcp)
|
|
|
|
{
|
|
|
|
port = atoi (*argv);
|
|
|
|
argc--; argv++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
port = 0;
|
|
|
|
}
|
2003-12-16 12:32:52 +01:00
|
|
|
|
2010-10-05 21:05:43 +02:00
|
|
|
setvbuf (stdout, NULL, _IOLBF, 0);
|
2003-12-16 12:32:52 +01:00
|
|
|
|
2010-10-05 21:05:43 +02:00
|
|
|
if (tcp)
|
2010-08-09 17:40:29 +02:00
|
|
|
{
|
2010-10-05 21:05:43 +02:00
|
|
|
int i = 1;
|
|
|
|
server_in = socket (PF_INET, SOCK_STREAM, 0);
|
|
|
|
if (server_in == -1)
|
|
|
|
die ("socket(PF_INET) failed: %s\n", strerror (errno));
|
2011-02-03 16:50:01 +01:00
|
|
|
if (setsockopt (server_in, SOL_SOCKET, SO_REUSEADDR,
|
2010-10-05 21:05:43 +02:00
|
|
|
(unsigned char *)&i, sizeof (i)))
|
|
|
|
err ("setsockopt(SO_REUSEADDR) failed: %s\n", strerror (errno));
|
|
|
|
if (verbose)
|
2010-08-09 17:40:29 +02:00
|
|
|
fprintf (stderr, "listening on port %hu\n", port);
|
|
|
|
}
|
2010-10-05 21:05:43 +02:00
|
|
|
else
|
|
|
|
server_in = -1;
|
2003-12-16 12:32:52 +01:00
|
|
|
|
2010-10-05 21:05:43 +02:00
|
|
|
if (argc)
|
|
|
|
{
|
|
|
|
server_un = socket (PF_LOCAL, SOCK_STREAM, 0);
|
|
|
|
if (server_un == -1)
|
|
|
|
die ("socket(PF_LOCAL) failed: %s\n", strerror (errno));
|
|
|
|
if (verbose)
|
2012-06-05 19:29:22 +02:00
|
|
|
fprintf (stderr, "listening on socket '%s'\n", *argv);
|
2010-10-05 21:05:43 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
server_un = -1;
|
2003-12-16 12:32:52 +01:00
|
|
|
|
2004-01-16 23:38:58 +01:00
|
|
|
/* We better set the listening socket to non-blocking so that we
|
|
|
|
don't get bitten by race conditions in accept. The should not
|
|
|
|
happen for Unix Domain sockets but well, shit happens. */
|
2010-10-05 21:05:43 +02:00
|
|
|
if (server_in != -1)
|
|
|
|
{
|
|
|
|
flags = fcntl (server_in, F_GETFL, 0);
|
|
|
|
if (flags == -1)
|
|
|
|
die ("fcntl (F_GETFL) failed: %s\n", strerror (errno));
|
|
|
|
if ( fcntl (server_in, F_SETFL, (flags | O_NONBLOCK)) == -1)
|
|
|
|
die ("fcntl (F_SETFL) failed: %s\n", strerror (errno));
|
|
|
|
}
|
|
|
|
if (server_un != -1)
|
|
|
|
{
|
|
|
|
flags = fcntl (server_un, F_GETFL, 0);
|
|
|
|
if (flags == -1)
|
|
|
|
die ("fcntl (F_GETFL) failed: %s\n", strerror (errno));
|
|
|
|
if ( fcntl (server_un, F_SETFL, (flags | O_NONBLOCK)) == -1)
|
|
|
|
die ("fcntl (F_SETFL) failed: %s\n", strerror (errno));
|
|
|
|
}
|
2011-02-03 16:50:01 +01:00
|
|
|
|
2010-08-09 17:40:29 +02:00
|
|
|
if (tcp)
|
|
|
|
{
|
|
|
|
memset (&srvr_addr_in, 0, sizeof srvr_addr_in);
|
|
|
|
srvr_addr_in.sin_family = AF_INET;
|
|
|
|
srvr_addr_in.sin_port = htons (port);
|
|
|
|
srvr_addr_in.sin_addr.s_addr = htonl (INADDR_ANY);
|
2010-10-05 21:05:43 +02:00
|
|
|
addr_in = (struct sockaddr *)&srvr_addr_in;
|
|
|
|
addrlen_in = sizeof srvr_addr_in;
|
2010-08-09 17:40:29 +02:00
|
|
|
}
|
2010-10-05 21:05:43 +02:00
|
|
|
if (argc)
|
2010-08-09 17:40:29 +02:00
|
|
|
{
|
|
|
|
memset (&srvr_addr_un, 0, sizeof srvr_addr_un);
|
|
|
|
srvr_addr_un.sun_family = AF_LOCAL;
|
|
|
|
strncpy (srvr_addr_un.sun_path, *argv, sizeof (srvr_addr_un.sun_path)-1);
|
|
|
|
srvr_addr_un.sun_path[sizeof (srvr_addr_un.sun_path) - 1] = 0;
|
2010-10-05 21:05:43 +02:00
|
|
|
addr_un = (struct sockaddr *)&srvr_addr_un;
|
|
|
|
addrlen_un = SUN_LEN (&srvr_addr_un);
|
2010-08-09 17:40:29 +02:00
|
|
|
}
|
2010-10-05 21:05:43 +02:00
|
|
|
else
|
|
|
|
addrlen_un = 0; /* Silent gcc. */
|
2011-02-03 16:50:01 +01:00
|
|
|
|
2010-10-05 21:05:43 +02:00
|
|
|
if (server_in != -1 && bind (server_in, addr_in, addrlen_in))
|
|
|
|
die ("bind to port %hu failed: %s\n", port, strerror (errno));
|
|
|
|
|
2003-12-16 12:32:52 +01:00
|
|
|
again:
|
2010-10-05 21:05:43 +02:00
|
|
|
if (server_un != -1 && bind (server_un, addr_un, addrlen_un))
|
2011-02-03 16:50:01 +01:00
|
|
|
{
|
2010-10-05 21:05:43 +02:00
|
|
|
if (errno == EADDRINUSE && force)
|
2003-12-16 12:32:52 +01:00
|
|
|
{
|
|
|
|
force = 0;
|
2010-08-09 17:40:29 +02:00
|
|
|
remove (srvr_addr_un.sun_path);
|
2003-12-16 12:32:52 +01:00
|
|
|
goto again;
|
|
|
|
}
|
2010-08-09 17:40:29 +02:00
|
|
|
else
|
2012-06-05 19:29:22 +02:00
|
|
|
die ("bind to '%s' failed: %s\n", *argv, strerror (errno));
|
2003-12-16 12:32:52 +01:00
|
|
|
}
|
|
|
|
|
2010-10-05 21:05:43 +02:00
|
|
|
if (server_in != -1 && listen (server_in, 5))
|
|
|
|
die ("listen on inet failed: %s\n", strerror (errno));
|
|
|
|
if (server_un != -1 && listen (server_un, 5))
|
|
|
|
die ("listen on local failed: %s\n", strerror (errno));
|
2003-12-16 12:32:52 +01:00
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
fd_set rfds;
|
|
|
|
int max_fd;
|
|
|
|
client_t client;
|
|
|
|
|
|
|
|
/* Usually we don't have that many connections, thus it is okay
|
2017-04-28 03:06:33 +02:00
|
|
|
to set them always from scratch and don't maintain an active
|
2004-01-16 23:38:58 +01:00
|
|
|
fd_set. */
|
2003-12-16 12:32:52 +01:00
|
|
|
FD_ZERO (&rfds);
|
2010-10-05 21:05:43 +02:00
|
|
|
max_fd = -1;
|
|
|
|
if (server_in != -1)
|
|
|
|
{
|
|
|
|
FD_SET (server_in, &rfds);
|
|
|
|
max_fd = server_in;
|
|
|
|
}
|
|
|
|
if (server_un != -1)
|
|
|
|
{
|
|
|
|
FD_SET (server_un, &rfds);
|
|
|
|
if (server_un > max_fd)
|
|
|
|
max_fd = server_un;
|
|
|
|
}
|
2003-12-16 12:32:52 +01:00
|
|
|
for (client = client_list; client; client = client->next)
|
|
|
|
if (client->fd != -1)
|
|
|
|
{
|
|
|
|
FD_SET (client->fd, &rfds);
|
|
|
|
if (client->fd > max_fd)
|
|
|
|
max_fd = client->fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (select (max_fd + 1, &rfds, NULL, NULL, NULL) <= 0)
|
|
|
|
continue; /* Ignore any errors. */
|
|
|
|
|
2010-10-05 21:05:43 +02:00
|
|
|
if (server_in != -1 && FD_ISSET (server_in, &rfds))
|
|
|
|
setup_client (server_in, 0);
|
|
|
|
if (server_un != -1 && FD_ISSET (server_un, &rfds))
|
|
|
|
setup_client (server_un, 1);
|
|
|
|
|
2003-12-16 12:32:52 +01:00
|
|
|
for (client = client_list; client; client = client->next)
|
2004-01-16 23:38:58 +01:00
|
|
|
if (client->fd != -1 && FD_ISSET (client->fd, &rfds))
|
2003-12-16 12:32:52 +01:00
|
|
|
{
|
|
|
|
char line[256];
|
|
|
|
int n;
|
2011-02-03 16:50:01 +01:00
|
|
|
|
2003-12-16 12:32:52 +01:00
|
|
|
n = read (client->fd, line, sizeof line - 1);
|
2004-11-23 18:09:51 +01:00
|
|
|
if (n < 0)
|
2003-12-16 12:32:52 +01:00
|
|
|
{
|
|
|
|
int save_errno = errno;
|
|
|
|
print_line (client, NULL); /* flush */
|
|
|
|
printf ("[client at fd %d read error: %s]\n",
|
|
|
|
client->fd, strerror (save_errno));
|
|
|
|
close (client->fd);
|
|
|
|
client->fd = -1;
|
|
|
|
}
|
2011-02-03 16:50:01 +01:00
|
|
|
else if (!n)
|
2003-12-16 12:32:52 +01:00
|
|
|
{
|
|
|
|
print_line (client, NULL); /* flush */
|
|
|
|
close (client->fd);
|
|
|
|
printf ("[client at fd %d disconnected]\n", client->fd);
|
|
|
|
client->fd = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
line[n] = 0;
|
|
|
|
print_line (client, line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
compile-command: "gcc -Wall -g -o watchgnupg watchgnupg.c"
|
|
|
|
End:
|
|
|
|
*/
|