view src/libident/id_query.c @ 179:ec3fe72a3e99

Fixed an important bug with folded headers! g_strconcat() returns a *copy* of the string, but hdr->value still pointed to the old header (which probably was a memory leak, too). If the folded part had been quite small it was likely that the new string was at the same position as the old one, thus making everything go well. But if pretty long headers were folded several times it was likely that the new string was allocated somewhere else in memory, thus breaking things. In result mails to lots of recipients (folded header) were frequently only sent to the ones in the first line. Sorry for the inconvenience.
author meillo@marmaro.de
date Fri, 03 Jun 2011 09:52:17 +0200
parents 26e34ae9a3e3
children
line wrap: on
line source

/*
** id_query.c                             Transmit a query to an IDENT server
**
** Author: Peter Eriksson <pen@lysator.liu.se>
*/

#ifdef NeXT3
#  include <libc.h>
#endif

#include <stdio.h>
#include <errno.h>
#include <signal.h>

#ifdef HAVE_ANSIHEADERS
#  include <stdlib.h>
#  include <string.h>
#  include <unistd.h>
#endif

#include <sys/types.h>
#include <sys/wait.h>
#include <sys/time.h>

#ifdef _AIX
#  include <sys/select.h>
#endif

#ifdef _AIX
#  include <sys/select.h>
#endif
#ifdef VMS
#  include <sys/socket.h>  /* for fd_set */
#endif
#define IN_LIBIDENT_SRC
#include "ident.h"


/*
int
id_query __P4(ident_t *, id, int, lport, int, fport, struct timeval *, timeout)
*/

int
id_query __P((ident_t * id, int lport, int fport, __STRUCT_TIMEVAL_P timeout))
{
#ifdef SIGRETURNTYPE
	SIGRETURNTYPE(*old_sig) ();
#else
	void (*old_sig) __P((int));
#endif
	int res;
	char buf[80];
	fd_set ws;

	sprintf(buf, "%d , %d\r\n", lport, fport);

	if (timeout) {
		FD_ZERO(&ws);
		FD_SET(id->fd, &ws);

#ifdef __hpux
		if ((res = select(FD_SETSIZE, (int *) 0, (int *) &ws, (int *) 0, timeout)) < 0)
#else
		if ((res = select(FD_SETSIZE, (fd_set *) 0, &ws, (fd_set *) 0, timeout)) < 0)
#endif
			return -1;

		if (res == 0) {
			errno = ETIMEDOUT;
			return -1;
		}
	}

	old_sig = signal(SIGPIPE, SIG_IGN);

	res = write(id->fd, buf, strlen(buf));

	signal(SIGPIPE, old_sig);

	return res;
}