2014-08-04 10:44:42 +00:00
|
|
|
// vim: set ts=4 sw=4 tw=99 noet:
|
|
|
|
//
|
|
|
|
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
|
|
|
|
// Copyright (C) The AMX Mod X Development Team.
|
|
|
|
//
|
|
|
|
// Codebase from Ivan, -g-s-ivan@web.de (AMX 0.9.3)
|
|
|
|
// Modification by Olaf Reusch, kenterfie@hlsw.de (AMXX 0.16, AMX 0.96)
|
|
|
|
// Modification by David Anderson, dvander@tcwonline.org (AMXx 0.20)
|
|
|
|
//
|
|
|
|
// This software is licensed under the GNU General Public License, version 3 or higher.
|
|
|
|
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
|
|
|
|
// https://alliedmods.net/amxmodx-license
|
|
|
|
|
|
|
|
//
|
|
|
|
// Sockets Module
|
|
|
|
//
|
2004-06-26 17:31:20 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
2013-02-13 07:14:37 +00:00
|
|
|
#include <string.h>
|
2004-06-26 17:31:20 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
/* Windows */
|
|
|
|
#include <winsock.h>
|
|
|
|
#include <io.h>
|
|
|
|
#define socklen_t int
|
|
|
|
#else
|
|
|
|
/* Unix/Linux */
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#define closesocket(s) close(s)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// AMX Headers
|
|
|
|
#include "amxxmodule.h"
|
|
|
|
|
|
|
|
#define SOCKET_TCP 1
|
|
|
|
#define SOCKET_UDP 2
|
|
|
|
|
|
|
|
// And global Variables:
|
|
|
|
|
|
|
|
// native socket_open(_hostname[], _port, _protocol = SOCKET_TCP, &_error);
|
|
|
|
static cell AMX_NATIVE_CALL socket_open(AMX *amx, cell *params) /* 2 param */
|
|
|
|
{
|
|
|
|
unsigned int port = params[2];
|
|
|
|
int len;
|
|
|
|
char* hostname = MF_GetAmxString(amx,params[1],0,&len); // Get the hostname from AMX
|
2007-03-19 09:45:45 +00:00
|
|
|
cell *err = MF_GetAmxAddr(amx, params[4]);
|
2004-06-26 17:31:20 +00:00
|
|
|
if(len == 0) { // just to prevent to work with a nonset hostname
|
2007-03-19 09:45:45 +00:00
|
|
|
*err = 2; // server unknown
|
2004-06-26 17:31:20 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2007-03-19 09:45:45 +00:00
|
|
|
*err = 0; // params[4] is error backchannel
|
2004-06-26 17:31:20 +00:00
|
|
|
struct sockaddr_in server;
|
|
|
|
struct hostent *host_info;
|
|
|
|
unsigned long addr;
|
|
|
|
int sock=-1;
|
|
|
|
int contr;
|
|
|
|
// Create a Socket
|
|
|
|
sock = socket(AF_INET, params[3]==SOCKET_TCP?SOCK_STREAM:SOCK_DGRAM, 0);
|
|
|
|
if (sock < 0) {
|
|
|
|
// Error, couldn't create a socket, so set an error and return.
|
2007-03-19 09:45:45 +00:00
|
|
|
*err = 1;
|
2004-06-26 17:31:20 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the server structure (set everything to 0)
|
|
|
|
memset( &server, 0, sizeof (server));
|
|
|
|
// Test the hostname, and resolve if needed
|
|
|
|
if ((addr = inet_addr(hostname)) != INADDR_NONE) {
|
|
|
|
// seems like hostname is a numeric ip, so put it into the structure
|
|
|
|
memcpy( (char *)&server.sin_addr, &addr, sizeof(addr));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// hostname is a domain, so resolve it to an ip
|
|
|
|
host_info = gethostbyname(hostname);
|
|
|
|
if (host_info == NULL) {
|
|
|
|
// an error occured, the hostname is unknown
|
2007-03-19 09:45:45 +00:00
|
|
|
*err = 2; // server unknown
|
2004-06-26 17:31:20 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
// If not, put it in the Server structure
|
|
|
|
memcpy( (char *)&server.sin_addr, host_info->h_addr, host_info->h_length);
|
|
|
|
}
|
|
|
|
// Set the type of the Socket
|
|
|
|
server.sin_family = AF_INET;
|
|
|
|
// Change the port to network byte order, and put it into the structure
|
|
|
|
server.sin_port = htons(port);
|
|
|
|
|
|
|
|
// Not, let's try to open a connection to the server
|
|
|
|
contr = connect(sock, (struct sockaddr*)&server, sizeof( server));
|
|
|
|
if (contr < 0) {
|
|
|
|
// If an error occured cancel
|
2007-03-19 09:45:45 +00:00
|
|
|
*err = 3; //error while connecting
|
2004-06-26 17:31:20 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
// Everything went well, so return the socket
|
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
|
|
|
|
// native socket_close(_socket);
|
|
|
|
static cell AMX_NATIVE_CALL socket_close(AMX *amx, cell *params) /* 2 param */
|
|
|
|
{
|
|
|
|
int socket = params[1];
|
|
|
|
//PRINT_CONSOLE("Function: Close | Socket: %i\n", socket);
|
|
|
|
#ifdef _WIN32 // On windows, check whether the sockets are initialized correctly
|
|
|
|
closesocket(socket);
|
|
|
|
#else
|
|
|
|
// Close the socket (linux/unix styled systems)
|
|
|
|
close(socket);
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// native socket_change(_socket, _timeout=100000);
|
|
|
|
// 1 sec =1000000 usec
|
|
|
|
static cell AMX_NATIVE_CALL socket_change(AMX *amx, cell *params) /* 2 param */
|
|
|
|
{
|
|
|
|
int socket = params[1];
|
|
|
|
unsigned int timeout = params[2];
|
|
|
|
//PRINT_CONSOLE("Function: Change | Socket: %i | Timeout: %i\n", socket, timeout);
|
|
|
|
// We need both a timeout structure and a fdset for our filedescriptor
|
|
|
|
fd_set rfds;
|
|
|
|
struct timeval tv;
|
|
|
|
// Fill in ...
|
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_SET(socket, &rfds);
|
|
|
|
tv.tv_sec = 0;
|
|
|
|
tv.tv_usec = timeout;
|
|
|
|
// Now we "select", which will show us if new data is waiting in the socket's buffer
|
2007-04-24 19:17:30 +00:00
|
|
|
if (select(socket+1, &rfds, NULL, NULL, &tv) > 0)
|
2004-06-26 17:31:20 +00:00
|
|
|
return 1; // Ok, new data, return it
|
|
|
|
else
|
|
|
|
return 0; // No new data, return it
|
|
|
|
}
|
|
|
|
|
|
|
|
// native socket_recv(_socket, _data[], _length);
|
|
|
|
static cell AMX_NATIVE_CALL socket_recv(AMX *amx, cell *params) /* 2 param */
|
|
|
|
{
|
|
|
|
int socket = params[1];
|
|
|
|
int length = params[3];
|
|
|
|
int tmp = -1;
|
|
|
|
// First we dynamicly allocate a block of heap memory for recieving our data
|
|
|
|
char *tmpchar = new char[length];
|
|
|
|
if(tmpchar == NULL) return -1; // If we didn't got a block, we have to quit here to avoid sigsegv
|
|
|
|
// And set it all to 0, because the memory could contain old trash
|
|
|
|
memset(tmpchar, 0, length);
|
|
|
|
// Now we recieve
|
|
|
|
tmp = recv(socket, tmpchar, length-1, 0);
|
2005-08-02 10:18:09 +00:00
|
|
|
if (tmp == -1)
|
2005-08-02 08:39:17 +00:00
|
|
|
{
|
|
|
|
delete [] tmpchar;
|
2005-08-02 10:18:09 +00:00
|
|
|
return -1;
|
2005-08-02 08:39:17 +00:00
|
|
|
}
|
2004-06-26 17:31:20 +00:00
|
|
|
// And put a copy of our recieved data into amx's string
|
|
|
|
tmpchar[tmp]='\0';
|
|
|
|
int nlen = 0;
|
|
|
|
//int max = params[3];
|
|
|
|
int max = length-1;
|
|
|
|
const char* src = tmpchar;
|
|
|
|
cell* dest = MF_GetAmxAddr(amx,params[2]);
|
|
|
|
while(max--&&nlen<tmp){
|
|
|
|
*dest++ = (cell)*src++;
|
|
|
|
nlen++;
|
|
|
|
}
|
|
|
|
*dest = 0;
|
|
|
|
// And we need to free up the space to avoid wasting memory
|
|
|
|
delete [] tmpchar;
|
|
|
|
// And finnally, return the what recv returnd
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
// native socket_send(_socket, _data[], _length);
|
|
|
|
static cell AMX_NATIVE_CALL socket_send(AMX *amx, cell *params) /* 3 param */
|
|
|
|
{
|
2005-12-05 02:07:22 +00:00
|
|
|
// We get the string from amx
|
|
|
|
int len;
|
|
|
|
int socket = params[1];
|
|
|
|
char* data = MF_GetAmxString(amx,params[2],0,&len);
|
|
|
|
// And send it to the socket
|
|
|
|
return send(socket, data, len, 0);
|
|
|
|
}
|
|
|
|
|
2006-02-05 02:20:45 +00:00
|
|
|
static char *g_buffer = NULL;
|
|
|
|
static size_t g_buflen = 0;
|
|
|
|
|
2005-12-05 02:07:22 +00:00
|
|
|
// native socket_send2(_socket, _data[], _length);
|
|
|
|
static cell AMX_NATIVE_CALL socket_send2(AMX *amx, cell *params) /* 3 param */
|
|
|
|
{
|
|
|
|
// We get the string from amx
|
|
|
|
int len = params[3];
|
|
|
|
int socket = params[1];
|
2006-04-07 11:04:28 +00:00
|
|
|
if ((size_t)len > g_buflen)
|
2006-02-05 02:20:45 +00:00
|
|
|
{
|
|
|
|
delete [] g_buffer;
|
|
|
|
g_buffer = new char[len+1];
|
|
|
|
g_buflen = len;
|
|
|
|
}
|
2005-12-05 02:07:22 +00:00
|
|
|
|
|
|
|
cell *pData = MF_GetAmxAddr(amx, params[2]);
|
2006-02-05 02:20:45 +00:00
|
|
|
char *pBuffer = g_buffer;
|
2005-12-05 02:07:22 +00:00
|
|
|
|
|
|
|
while (len--)
|
2006-04-07 11:04:28 +00:00
|
|
|
*pBuffer++ = (char)*pData++;
|
2005-12-05 02:07:22 +00:00
|
|
|
|
|
|
|
// And send it to the socket
|
2006-02-05 02:20:45 +00:00
|
|
|
return send(socket, g_buffer, params[3], 0);
|
2004-06-26 17:31:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AMX_NATIVE_INFO sockets_natives[] = {
|
2005-12-05 02:07:22 +00:00
|
|
|
{"socket_open", socket_open},
|
|
|
|
{"socket_close", socket_close},
|
|
|
|
{"socket_change", socket_change},
|
|
|
|
{"socket_recv", socket_recv},
|
|
|
|
{"socket_send", socket_send},
|
|
|
|
{"socket_send2", socket_send2},
|
|
|
|
{NULL, NULL}
|
2004-06-26 17:31:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void OnAmxxAttach()
|
|
|
|
{
|
|
|
|
MF_AddNatives(sockets_natives);
|
|
|
|
// And, if win32, we have to specially start up the winsock environment
|
|
|
|
#ifdef _WIN32
|
|
|
|
short wVersionRequested;
|
|
|
|
WSADATA wsaData;
|
|
|
|
wVersionRequested = MAKEWORD (1, 1);
|
|
|
|
if (WSAStartup (wVersionRequested, &wsaData) != 0) {
|
|
|
|
MF_Log("Sockets Module: Error while starting up winsock environment.!");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OnAmxxDetach()
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
WSACleanup();
|
|
|
|
#endif
|
2006-02-05 02:20:45 +00:00
|
|
|
delete [] g_buffer;
|
2004-06-26 17:31:20 +00:00
|
|
|
return;
|
2004-09-12 00:44:15 +00:00
|
|
|
}
|