2013-03-31 15:44:48 -04:00
|
|
|
/* HexChat
|
|
|
|
* Copyright (C) 1998-2010 Peter Zelezny.
|
|
|
|
* Copyright (C) 2009-2013 Berke Viktor.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2012-10-30 06:35:39 -04:00
|
|
|
/* simple identd server for HexChat under Win32 */
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-02-01 12:09:27 -05:00
|
|
|
#include "inet.h"
|
2012-10-24 15:33:02 -04:00
|
|
|
#include "hexchat.h"
|
|
|
|
#include "hexchatc.h"
|
2012-07-21 08:26:19 -04:00
|
|
|
#include "text.h"
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
static int identd_is_running = FALSE;
|
2012-02-01 12:09:27 -05:00
|
|
|
#ifdef USE_IPV6
|
|
|
|
static int identd_ipv6_is_running = FALSE;
|
|
|
|
#endif
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
static int
|
|
|
|
identd (char *username)
|
|
|
|
{
|
|
|
|
int sok, read_sok, len;
|
|
|
|
char *p;
|
|
|
|
char buf[256];
|
|
|
|
char outbuf[256];
|
2013-06-09 09:42:42 -04:00
|
|
|
char ipbuf[INET_ADDRSTRLEN];
|
2011-02-23 22:14:30 -05:00
|
|
|
struct sockaddr_in addr;
|
|
|
|
|
|
|
|
sok = socket (AF_INET, SOCK_STREAM, 0);
|
|
|
|
if (sok == INVALID_SOCKET)
|
|
|
|
{
|
|
|
|
free (username);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = 1;
|
|
|
|
setsockopt (sok, SOL_SOCKET, SO_REUSEADDR, (char *) &len, sizeof (len));
|
|
|
|
|
|
|
|
memset (&addr, 0, sizeof (addr));
|
|
|
|
addr.sin_family = AF_INET;
|
|
|
|
addr.sin_port = htons (113);
|
|
|
|
|
|
|
|
if (bind (sok, (struct sockaddr *) &addr, sizeof (addr)) == SOCKET_ERROR)
|
|
|
|
{
|
|
|
|
closesocket (sok);
|
|
|
|
free (username);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (listen (sok, 1) == SOCKET_ERROR)
|
|
|
|
{
|
|
|
|
closesocket (sok);
|
|
|
|
free (username);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = sizeof (addr);
|
|
|
|
read_sok = accept (sok, (struct sockaddr *) &addr, &len);
|
|
|
|
closesocket (sok);
|
|
|
|
if (read_sok == INVALID_SOCKET)
|
|
|
|
{
|
|
|
|
free (username);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
identd_is_running = FALSE;
|
|
|
|
|
2012-11-03 16:04:07 -04:00
|
|
|
#if 0 /* causes random crashes, probably due to CreateThread */
|
2012-11-03 14:04:47 -04:00
|
|
|
EMIT_SIGNAL (XP_TE_IDENTD, current_sess, inet_ntoa (addr.sin_addr), username, NULL, NULL, 0);
|
2012-11-03 16:04:07 -04:00
|
|
|
#endif
|
2013-06-09 09:42:42 -04:00
|
|
|
inet_ntop (AF_INET, &addr.sin_addr, ipbuf, sizeof (ipbuf));
|
|
|
|
snprintf (outbuf, sizeof (outbuf), "*\tServicing ident request from %s as %s\n", ipbuf, username);
|
2012-11-03 16:04:07 -04:00
|
|
|
PrintText (current_sess, outbuf);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
recv (read_sok, buf, sizeof (buf) - 1, 0);
|
|
|
|
buf[sizeof (buf) - 1] = 0; /* ensure null termination */
|
|
|
|
|
|
|
|
p = strchr (buf, ',');
|
|
|
|
if (p)
|
|
|
|
{
|
|
|
|
snprintf (outbuf, sizeof (outbuf) - 1, "%d, %d : USERID : UNIX : %s\r\n",
|
|
|
|
atoi (buf), atoi (p + 1), username);
|
|
|
|
outbuf[sizeof (outbuf) - 1] = 0; /* ensure null termination */
|
|
|
|
send (read_sok, outbuf, strlen (outbuf), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
sleep (1);
|
|
|
|
closesocket (read_sok);
|
|
|
|
free (username);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-02-01 12:09:27 -05:00
|
|
|
#ifdef USE_IPV6
|
|
|
|
static int
|
|
|
|
identd_ipv6 (char *username)
|
|
|
|
{
|
|
|
|
int sok, read_sok, len;
|
|
|
|
char *p;
|
|
|
|
char buf[256];
|
2013-06-09 09:42:42 -04:00
|
|
|
char outbuf[256];
|
|
|
|
char ipbuf[INET6_ADDRSTRLEN];
|
2012-02-01 12:09:27 -05:00
|
|
|
struct sockaddr_in6 addr;
|
|
|
|
|
|
|
|
sok = socket (AF_INET6, SOCK_STREAM, 0);
|
|
|
|
if (sok == INVALID_SOCKET)
|
|
|
|
{
|
|
|
|
free (username);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = 1;
|
|
|
|
setsockopt (sok, SOL_SOCKET, SO_REUSEADDR, (char *) &len, sizeof (len));
|
|
|
|
|
|
|
|
memset (&addr, 0, sizeof (addr));
|
|
|
|
addr.sin6_family = AF_INET6;
|
|
|
|
addr.sin6_port = htons (113);
|
|
|
|
|
|
|
|
if (bind (sok, (struct sockaddr *) &addr, sizeof (addr)) == SOCKET_ERROR)
|
|
|
|
{
|
|
|
|
closesocket (sok);
|
|
|
|
free (username);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (listen (sok, 1) == SOCKET_ERROR)
|
|
|
|
{
|
|
|
|
closesocket (sok);
|
|
|
|
free (username);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = sizeof (addr);
|
|
|
|
read_sok = accept (sok, (struct sockaddr *) &addr, &len);
|
|
|
|
closesocket (sok);
|
|
|
|
if (read_sok == INVALID_SOCKET)
|
|
|
|
{
|
|
|
|
free (username);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
identd_ipv6_is_running = FALSE;
|
|
|
|
|
2013-06-09 09:42:42 -04:00
|
|
|
inet_ntop (AF_INET6, &addr.sin6_addr, ipbuf, sizeof (ipbuf));
|
|
|
|
snprintf (outbuf, sizeof (outbuf), "*\tServicing ident request from %s as %s\n", ipbuf, username);
|
2012-11-03 16:04:07 -04:00
|
|
|
PrintText (current_sess, outbuf);
|
2012-02-01 12:09:27 -05:00
|
|
|
|
|
|
|
recv (read_sok, buf, sizeof (buf) - 1, 0);
|
|
|
|
buf[sizeof (buf) - 1] = 0; /* ensure null termination */
|
|
|
|
|
|
|
|
p = strchr (buf, ',');
|
|
|
|
if (p)
|
|
|
|
{
|
|
|
|
snprintf (outbuf, sizeof (outbuf) - 1, "%d, %d : USERID : UNIX : %s\r\n", atoi (buf), atoi (p + 1), username);
|
|
|
|
outbuf[sizeof (outbuf) - 1] = 0; /* ensure null termination */
|
|
|
|
send (read_sok, outbuf, strlen (outbuf), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
sleep (1);
|
|
|
|
closesocket (read_sok);
|
|
|
|
free (username);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
2011-02-23 22:14:30 -05:00
|
|
|
identd_start (char *username)
|
|
|
|
{
|
|
|
|
DWORD tid;
|
|
|
|
|
2012-02-01 12:09:27 -05:00
|
|
|
#ifdef USE_IPV6
|
|
|
|
DWORD tidv6;
|
|
|
|
if (identd_ipv6_is_running == FALSE)
|
|
|
|
{
|
|
|
|
identd_ipv6_is_running = TRUE;
|
|
|
|
CloseHandle (CreateThread (NULL, 0, (LPTHREAD_START_ROUTINE) identd_ipv6,
|
|
|
|
strdup (username), 0, &tidv6));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-23 22:14:30 -05:00
|
|
|
if (identd_is_running == FALSE)
|
|
|
|
{
|
|
|
|
identd_is_running = TRUE;
|
|
|
|
CloseHandle (CreateThread (NULL, 0, (LPTHREAD_START_ROUTINE) identd,
|
|
|
|
strdup (username), 0, &tid));
|
|
|
|
}
|
|
|
|
}
|