2010-11-20 10:37:14 +00:00
|
|
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
2020-09-26 19:41:58 +00:00
|
|
|
#include <ctype.h>
|
2021-01-08 10:21:37 +00:00
|
|
|
#include <math.h>
|
2007-08-22 07:52:33 +00:00
|
|
|
#include <stdarg.h>
|
2020-09-26 19:41:58 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2007-08-22 07:52:33 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2008-08-14 17:19:13 +00:00
|
|
|
#include "system.h"
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2015-08-22 19:07:13 +00:00
|
|
|
#include <sys/stat.h>
|
2020-09-26 19:41:58 +00:00
|
|
|
#include <sys/types.h>
|
2015-08-22 19:07:13 +00:00
|
|
|
|
2017-03-07 12:03:37 +00:00
|
|
|
#if defined(CONF_WEBSOCKETS)
|
2020-09-26 19:41:58 +00:00
|
|
|
#include "engine/shared/websockets.h"
|
2015-02-07 22:15:58 +00:00
|
|
|
#endif
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
2020-09-10 18:14:47 +00:00
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <unistd.h>
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2020-09-10 18:14:47 +00:00
|
|
|
/* unix net includes */
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/socket.h>
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2020-09-10 18:14:47 +00:00
|
|
|
#include <dirent.h>
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2021-02-12 12:40:29 +00:00
|
|
|
#if defined(CONF_PLATFORM_MACOS)
|
2020-09-10 18:14:47 +00:00
|
|
|
// some lock and pthread functions are already defined in headers
|
|
|
|
// included from Carbon.h
|
|
|
|
// this prevents having duplicate definitions of those
|
|
|
|
#define _lock_set_user_
|
|
|
|
#define _task_user_
|
2015-01-11 02:38:59 +00:00
|
|
|
|
2020-09-10 18:14:47 +00:00
|
|
|
#include <Carbon/Carbon.h>
|
|
|
|
#include <mach/mach_time.h>
|
|
|
|
#endif
|
2015-07-09 00:08:14 +00:00
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
2020-09-26 19:41:58 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#undef _WIN32_WINNT
|
|
|
|
#define _WIN32_WINNT 0x0501 /* required for mingw to get getaddrinfo to work */
|
|
|
|
#include <windows.h>
|
|
|
|
#include <winsock2.h>
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
|
|
|
|
#include <direct.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <process.h>
|
|
|
|
#include <shellapi.h>
|
|
|
|
#include <wincrypt.h>
|
2007-08-22 07:52:33 +00:00
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
#error NOT IMPLEMENTED
|
2007-08-22 07:52:33 +00:00
|
|
|
#endif
|
|
|
|
|
2011-09-08 23:41:53 +00:00
|
|
|
#if defined(CONF_PLATFORM_SOLARIS)
|
2020-09-26 19:41:58 +00:00
|
|
|
#include <sys/filio.h>
|
2011-09-08 23:41:53 +00:00
|
|
|
#endif
|
|
|
|
|
2007-10-04 09:49:38 +00:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
IOHANDLE io_stdin()
|
|
|
|
{
|
|
|
|
return (IOHANDLE)stdin;
|
|
|
|
}
|
2008-02-24 16:03:58 +00:00
|
|
|
IOHANDLE io_stdout() { return (IOHANDLE)stdout; }
|
|
|
|
IOHANDLE io_stderr() { return (IOHANDLE)stderr; }
|
|
|
|
|
2017-10-10 01:33:54 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
DBG_LOGGER logger;
|
2017-10-13 00:25:50 +00:00
|
|
|
DBG_LOGGER_FINISH finish;
|
2017-10-10 01:33:54 +00:00
|
|
|
void *user;
|
|
|
|
} DBG_LOGGER_DATA;
|
|
|
|
|
|
|
|
static DBG_LOGGER_DATA loggers[16];
|
2008-03-10 00:48:45 +00:00
|
|
|
static int num_loggers = 0;
|
|
|
|
|
2008-04-05 14:50:43 +00:00
|
|
|
static NETSTATS network_stats = {0};
|
|
|
|
|
2011-03-28 18:11:28 +00:00
|
|
|
static NETSOCKET invalid_socket = {NETTYPE_INVALID, -1, -1};
|
|
|
|
|
2015-02-07 22:15:58 +00:00
|
|
|
#define AF_WEBSOCKET_INET (0xee)
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
void dbg_assert_imp(const char *filename, int line, int test, const char *msg)
|
|
|
|
{
|
|
|
|
if(!test)
|
|
|
|
{
|
|
|
|
dbg_msg("assert", "%s(%d): %s", filename, line, msg);
|
2017-06-02 18:12:20 +00:00
|
|
|
dbg_break_imp();
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
void dbg_break_imp(void)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2017-10-10 01:33:54 +00:00
|
|
|
#ifdef __GNUC__
|
|
|
|
__builtin_trap();
|
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
*((volatile unsigned *)0) = 0x0;
|
2017-10-10 01:33:54 +00:00
|
|
|
#endif
|
2014-09-11 19:38:23 +00:00
|
|
|
}
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
void dbg_msg(const char *sys, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
2008-03-10 00:48:45 +00:00
|
|
|
char *msg;
|
2014-09-09 21:02:05 +00:00
|
|
|
int len;
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
char str[1024 * 4];
|
2017-10-10 01:33:54 +00:00
|
|
|
int i;
|
|
|
|
|
2017-07-26 01:58:00 +00:00
|
|
|
char timestr[80];
|
2017-08-04 20:38:22 +00:00
|
|
|
str_timestamp_format(timestr, sizeof(timestr), FORMAT_SPACE);
|
2011-08-13 00:11:06 +00:00
|
|
|
|
2017-10-10 01:33:54 +00:00
|
|
|
str_format(str, sizeof(str), "[%s][%s]: ", timestr, sys);
|
2014-09-09 21:02:05 +00:00
|
|
|
|
2017-10-10 01:33:54 +00:00
|
|
|
len = strlen(str);
|
|
|
|
msg = (char *)str + len;
|
2014-09-09 21:02:05 +00:00
|
|
|
|
2017-10-10 01:33:54 +00:00
|
|
|
va_start(args, fmt);
|
2014-09-09 21:02:05 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2020-09-26 19:41:58 +00:00
|
|
|
_vsnprintf(msg, sizeof(str) - len, fmt, args);
|
2014-09-09 21:02:05 +00:00
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
vsnprintf(msg, sizeof(str) - len, fmt, args);
|
2014-09-09 21:02:05 +00:00
|
|
|
#endif
|
2017-10-10 01:33:54 +00:00
|
|
|
va_end(args);
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2017-10-10 01:33:54 +00:00
|
|
|
for(i = 0; i < num_loggers; i++)
|
|
|
|
loggers[i].logger(str, loggers[i].user);
|
2014-09-09 21:02:05 +00:00
|
|
|
}
|
|
|
|
|
2019-04-10 17:40:50 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2017-10-10 01:33:54 +00:00
|
|
|
static void logger_debugger(const char *line, void *user)
|
2014-05-11 22:15:35 +00:00
|
|
|
{
|
2017-10-10 01:33:54 +00:00
|
|
|
(void)user;
|
|
|
|
OutputDebugString(line);
|
|
|
|
OutputDebugString("\n");
|
2008-03-10 00:48:45 +00:00
|
|
|
}
|
2017-10-10 01:33:54 +00:00
|
|
|
#endif
|
2008-01-16 22:14:06 +00:00
|
|
|
|
2017-10-10 01:33:54 +00:00
|
|
|
static void logger_file(const char *line, void *user)
|
2008-03-10 00:48:45 +00:00
|
|
|
{
|
2017-10-10 01:33:54 +00:00
|
|
|
ASYNCIO *logfile = (ASYNCIO *)user;
|
2017-11-26 16:01:11 +00:00
|
|
|
aio_lock(logfile);
|
|
|
|
aio_write_unlocked(logfile, line, strlen(line));
|
|
|
|
aio_write_newline_unlocked(logfile);
|
|
|
|
aio_unlock(logfile);
|
2008-03-10 00:48:45 +00:00
|
|
|
}
|
2008-01-16 22:14:06 +00:00
|
|
|
|
2018-04-13 18:04:40 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
static void logger_stdout_sync(const char *line, void *user)
|
|
|
|
{
|
2018-12-07 22:52:33 +00:00
|
|
|
size_t length = strlen(line);
|
2020-09-26 19:41:58 +00:00
|
|
|
wchar_t *wide = malloc(length * sizeof(*wide));
|
2018-12-07 22:52:33 +00:00
|
|
|
const char *p = line;
|
2018-12-07 23:24:57 +00:00
|
|
|
int wlen = 0;
|
2019-04-09 19:58:04 +00:00
|
|
|
HANDLE console;
|
|
|
|
|
|
|
|
(void)user;
|
|
|
|
mem_zero(wide, length * sizeof *wide);
|
|
|
|
|
2018-12-07 23:24:57 +00:00
|
|
|
for(int codepoint = 0; (codepoint = str_utf8_decode(&p)); wlen++)
|
2018-12-07 22:52:33 +00:00
|
|
|
{
|
2019-04-09 19:58:04 +00:00
|
|
|
char u16[4] = {0};
|
|
|
|
|
2018-12-07 23:24:57 +00:00
|
|
|
if(codepoint < 0)
|
2021-02-28 22:14:22 +00:00
|
|
|
{
|
|
|
|
free(wide);
|
2018-12-07 23:24:57 +00:00
|
|
|
return;
|
2021-02-28 22:14:22 +00:00
|
|
|
}
|
2018-12-07 23:24:57 +00:00
|
|
|
|
2018-12-07 22:52:33 +00:00
|
|
|
if(str_utf16le_encode(u16, codepoint) != 2)
|
2021-02-28 22:14:22 +00:00
|
|
|
{
|
|
|
|
free(wide);
|
2018-12-07 22:52:33 +00:00
|
|
|
return;
|
2021-02-28 22:14:22 +00:00
|
|
|
}
|
2018-12-07 22:52:33 +00:00
|
|
|
|
2018-12-07 23:24:57 +00:00
|
|
|
mem_copy(&wide[wlen], u16, 2);
|
2018-12-07 22:52:33 +00:00
|
|
|
}
|
|
|
|
|
2019-04-09 19:58:04 +00:00
|
|
|
console = GetStdHandle(STD_OUTPUT_HANDLE);
|
2018-12-07 23:24:57 +00:00
|
|
|
WriteConsoleW(console, wide, wlen, NULL, NULL);
|
2018-12-07 22:52:33 +00:00
|
|
|
WriteConsoleA(console, "\n", 1, NULL, NULL);
|
2021-02-28 22:07:34 +00:00
|
|
|
free(wide);
|
2018-04-13 18:04:40 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-10-10 01:33:54 +00:00
|
|
|
static void logger_stdout_finish(void *user)
|
|
|
|
{
|
|
|
|
ASYNCIO *logfile = (ASYNCIO *)user;
|
2017-10-13 00:48:42 +00:00
|
|
|
aio_wait(logfile);
|
|
|
|
aio_free(logfile);
|
2017-10-10 01:33:54 +00:00
|
|
|
}
|
2008-03-10 00:48:45 +00:00
|
|
|
|
2017-10-10 01:33:54 +00:00
|
|
|
static void logger_file_finish(void *user)
|
2008-03-10 00:48:45 +00:00
|
|
|
{
|
2017-10-10 01:33:54 +00:00
|
|
|
ASYNCIO *logfile = (ASYNCIO *)user;
|
2017-10-13 00:48:42 +00:00
|
|
|
aio_close(logfile);
|
2017-10-10 01:33:54 +00:00
|
|
|
logger_stdout_finish(user);
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2017-10-10 01:33:54 +00:00
|
|
|
static void dbg_logger_finish(void)
|
2017-06-02 16:47:26 +00:00
|
|
|
{
|
2017-10-10 01:33:54 +00:00
|
|
|
int i;
|
|
|
|
for(i = 0; i < num_loggers; i++)
|
|
|
|
{
|
|
|
|
if(loggers[i].finish)
|
|
|
|
{
|
|
|
|
loggers[i].finish(loggers[i].user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-31 09:01:12 +00:00
|
|
|
|
2017-10-13 00:25:50 +00:00
|
|
|
void dbg_logger(DBG_LOGGER logger, DBG_LOGGER_FINISH finish, void *user)
|
2017-10-10 01:33:54 +00:00
|
|
|
{
|
|
|
|
DBG_LOGGER_DATA data;
|
|
|
|
if(num_loggers == 0)
|
|
|
|
{
|
|
|
|
atexit(dbg_logger_finish);
|
|
|
|
}
|
|
|
|
data.logger = logger;
|
|
|
|
data.finish = finish;
|
|
|
|
data.user = user;
|
|
|
|
loggers[num_loggers] = data;
|
2017-06-02 16:47:26 +00:00
|
|
|
num_loggers++;
|
2017-10-10 01:33:54 +00:00
|
|
|
}
|
2017-08-31 09:01:12 +00:00
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
void dbg_logger_stdout(void)
|
2017-10-10 01:33:54 +00:00
|
|
|
{
|
2018-04-13 18:04:40 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
dbg_logger(logger_stdout_sync, 0, 0);
|
|
|
|
#else
|
2017-10-13 00:48:42 +00:00
|
|
|
dbg_logger(logger_file, logger_stdout_finish, aio_new(io_stdout()));
|
2018-04-13 18:04:40 +00:00
|
|
|
#endif
|
2017-06-02 16:47:26 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
void dbg_logger_debugger(void)
|
2017-10-10 01:33:54 +00:00
|
|
|
{
|
2019-04-10 17:40:50 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2017-10-10 01:33:54 +00:00
|
|
|
dbg_logger(logger_debugger, 0, 0);
|
|
|
|
#endif
|
|
|
|
}
|
2014-05-11 22:15:35 +00:00
|
|
|
|
2008-03-10 00:48:45 +00:00
|
|
|
void dbg_logger_file(const char *filename)
|
|
|
|
{
|
2017-10-10 01:33:54 +00:00
|
|
|
IOHANDLE logfile = io_open(filename, IOFLAG_WRITE);
|
2008-03-10 00:48:45 +00:00
|
|
|
if(logfile)
|
2017-10-13 00:48:42 +00:00
|
|
|
dbg_logger(logger_file, logger_file_finish, aio_new(logfile));
|
2008-03-10 00:48:45 +00:00
|
|
|
else
|
|
|
|
dbg_msg("dbg/logger", "failed to open '%s' for logging", filename);
|
|
|
|
}
|
|
|
|
/* */
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
void mem_copy(void *dest, const void *source, unsigned size)
|
|
|
|
{
|
|
|
|
memcpy(dest, source, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void mem_move(void *dest, const void *source, unsigned size)
|
|
|
|
{
|
|
|
|
memmove(dest, source, size);
|
|
|
|
}
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
void mem_zero(void *block, unsigned size)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
|
|
|
memset(block, 0, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
IOHANDLE io_open(const char *filename, int flags)
|
|
|
|
{
|
|
|
|
if(flags == IOFLAG_READ)
|
|
|
|
return (IOHANDLE)fopen(filename, "rb");
|
|
|
|
if(flags == IOFLAG_WRITE)
|
|
|
|
return (IOHANDLE)fopen(filename, "wb");
|
2015-12-19 17:12:45 +00:00
|
|
|
if(flags == IOFLAG_APPEND)
|
|
|
|
return (IOHANDLE)fopen(filename, "ab");
|
2007-08-22 07:52:33 +00:00
|
|
|
return 0x0;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned io_read(IOHANDLE io, void *buffer, unsigned size)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
return fread(buffer, 1, size, (FILE *)io);
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2010-09-03 19:17:32 +00:00
|
|
|
unsigned io_skip(IOHANDLE io, int size)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
fseek((FILE *)io, size, SEEK_CUR);
|
2007-08-22 07:52:33 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
int io_seek(IOHANDLE io, int offset, int origin)
|
|
|
|
{
|
|
|
|
int real_origin;
|
|
|
|
|
|
|
|
switch(origin)
|
|
|
|
{
|
2007-08-25 08:48:24 +00:00
|
|
|
case IOSEEK_START:
|
2007-08-22 07:52:33 +00:00
|
|
|
real_origin = SEEK_SET;
|
|
|
|
break;
|
2007-08-25 08:48:24 +00:00
|
|
|
case IOSEEK_CUR:
|
2007-08-22 07:52:33 +00:00
|
|
|
real_origin = SEEK_CUR;
|
|
|
|
break;
|
2007-08-25 08:48:24 +00:00
|
|
|
case IOSEEK_END:
|
2007-08-22 07:52:33 +00:00
|
|
|
real_origin = SEEK_END;
|
2011-05-04 23:43:27 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -1;
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
return fseek((FILE *)io, offset, real_origin);
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
long int io_tell(IOHANDLE io)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
return ftell((FILE *)io);
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
long int io_length(IOHANDLE io)
|
|
|
|
{
|
|
|
|
long int length;
|
|
|
|
io_seek(io, 0, IOSEEK_END);
|
|
|
|
length = io_tell(io);
|
2007-08-25 08:48:24 +00:00
|
|
|
io_seek(io, 0, IOSEEK_START);
|
2007-08-22 07:52:33 +00:00
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2017-10-10 01:33:54 +00:00
|
|
|
int io_error(IOHANDLE io)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
return ferror((FILE *)io);
|
2017-10-10 01:33:54 +00:00
|
|
|
}
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
unsigned io_write(IOHANDLE io, const void *buffer, unsigned size)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
return fwrite(buffer, 1, size, (FILE *)io);
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2011-12-29 22:36:53 +00:00
|
|
|
unsigned io_write_newline(IOHANDLE io)
|
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2020-09-26 19:41:58 +00:00
|
|
|
return fwrite("\r\n", 1, 2, (FILE *)io);
|
2011-12-29 22:36:53 +00:00
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
return fwrite("\n", 1, 1, (FILE *)io);
|
2011-12-29 22:36:53 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
int io_close(IOHANDLE io)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
return fclose((FILE *)io) != 0;
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2008-03-10 00:48:45 +00:00
|
|
|
int io_flush(IOHANDLE io)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
return fflush((FILE *)io);
|
2008-03-10 00:48:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-10 01:33:54 +00:00
|
|
|
#define ASYNC_BUFSIZE 8 * 1024
|
2018-01-13 18:17:33 +00:00
|
|
|
#define ASYNC_LOCAL_BUFSIZE 64 * 1024
|
2017-10-10 01:33:54 +00:00
|
|
|
|
2020-12-02 18:11:19 +00:00
|
|
|
// TODO: Use Thread Safety Analysis when this file is converted to C++
|
2017-10-20 09:24:45 +00:00
|
|
|
struct ASYNCIO
|
2017-10-10 01:33:54 +00:00
|
|
|
{
|
|
|
|
LOCK lock;
|
|
|
|
IOHANDLE io;
|
|
|
|
SEMAPHORE sphore;
|
|
|
|
void *thread;
|
|
|
|
|
|
|
|
unsigned char *buffer;
|
|
|
|
unsigned int buffer_size;
|
|
|
|
unsigned int read_pos;
|
|
|
|
unsigned int write_pos;
|
|
|
|
|
|
|
|
int error;
|
|
|
|
unsigned char finish;
|
|
|
|
unsigned char refcount;
|
2017-10-20 09:24:45 +00:00
|
|
|
};
|
2017-10-10 01:33:54 +00:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
ASYNCIO_RUNNING,
|
|
|
|
ASYNCIO_CLOSE,
|
|
|
|
ASYNCIO_EXIT,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BUFFERS
|
|
|
|
{
|
|
|
|
unsigned char *buf1;
|
|
|
|
unsigned int len1;
|
|
|
|
unsigned char *buf2;
|
|
|
|
unsigned int len2;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void buffer_ptrs(ASYNCIO *aio, struct BUFFERS *buffers)
|
|
|
|
{
|
|
|
|
mem_zero(buffers, sizeof(*buffers));
|
|
|
|
if(aio->read_pos < aio->write_pos)
|
|
|
|
{
|
|
|
|
buffers->buf1 = aio->buffer + aio->read_pos;
|
|
|
|
buffers->len1 = aio->write_pos - aio->read_pos;
|
|
|
|
}
|
|
|
|
else if(aio->read_pos > aio->write_pos)
|
|
|
|
{
|
|
|
|
buffers->buf1 = aio->buffer + aio->read_pos;
|
|
|
|
buffers->len1 = aio->buffer_size - aio->read_pos;
|
|
|
|
buffers->buf2 = aio->buffer;
|
|
|
|
buffers->len2 = aio->write_pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-02 18:11:19 +00:00
|
|
|
static void aio_handle_free_and_unlock(ASYNCIO *aio) RELEASE(aio->lock)
|
2017-10-10 01:33:54 +00:00
|
|
|
{
|
|
|
|
int do_free;
|
|
|
|
aio->refcount--;
|
|
|
|
|
|
|
|
do_free = aio->refcount == 0;
|
|
|
|
lock_unlock(aio->lock);
|
|
|
|
if(do_free)
|
|
|
|
{
|
2018-04-09 09:56:39 +00:00
|
|
|
free(aio->buffer);
|
2017-10-10 01:33:54 +00:00
|
|
|
sphore_destroy(&aio->sphore);
|
|
|
|
lock_destroy(aio->lock);
|
2018-04-09 09:56:39 +00:00
|
|
|
free(aio);
|
2017-10-10 01:33:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-13 00:48:42 +00:00
|
|
|
static void aio_thread(void *user)
|
2017-10-10 01:33:54 +00:00
|
|
|
{
|
|
|
|
ASYNCIO *aio = user;
|
|
|
|
|
|
|
|
lock_wait(aio->lock);
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
struct BUFFERS buffers;
|
|
|
|
int result_io_error;
|
2018-01-13 18:17:33 +00:00
|
|
|
unsigned char local_buffer[ASYNC_LOCAL_BUFSIZE];
|
|
|
|
unsigned int local_buffer_len = 0;
|
2017-10-10 01:33:54 +00:00
|
|
|
|
|
|
|
if(aio->read_pos == aio->write_pos)
|
|
|
|
{
|
|
|
|
if(aio->finish != ASYNCIO_RUNNING)
|
|
|
|
{
|
|
|
|
if(aio->finish == ASYNCIO_CLOSE)
|
|
|
|
{
|
|
|
|
io_close(aio->io);
|
|
|
|
}
|
2017-10-13 00:48:42 +00:00
|
|
|
aio_handle_free_and_unlock(aio);
|
2017-10-10 01:33:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
lock_unlock(aio->lock);
|
|
|
|
sphore_wait(&aio->sphore);
|
|
|
|
lock_wait(aio->lock);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer_ptrs(aio, &buffers);
|
2018-01-13 18:17:33 +00:00
|
|
|
if(buffers.buf1)
|
2017-10-10 01:33:54 +00:00
|
|
|
{
|
2018-01-13 18:17:33 +00:00
|
|
|
if(buffers.len1 > sizeof(local_buffer) - local_buffer_len)
|
|
|
|
{
|
|
|
|
buffers.len1 = sizeof(local_buffer) - local_buffer_len;
|
|
|
|
}
|
|
|
|
mem_copy(local_buffer + local_buffer_len, buffers.buf1, buffers.len1);
|
|
|
|
local_buffer_len += buffers.len1;
|
|
|
|
if(buffers.buf2)
|
|
|
|
{
|
|
|
|
if(buffers.len2 > sizeof(local_buffer) - local_buffer_len)
|
|
|
|
{
|
|
|
|
buffers.len2 = sizeof(local_buffer) - local_buffer_len;
|
|
|
|
}
|
|
|
|
mem_copy(local_buffer + local_buffer_len, buffers.buf2, buffers.len2);
|
|
|
|
local_buffer_len += buffers.len2;
|
|
|
|
}
|
2017-10-10 01:33:54 +00:00
|
|
|
}
|
2018-01-13 18:17:33 +00:00
|
|
|
aio->read_pos = (aio->read_pos + buffers.len1 + buffers.len2) % aio->buffer_size;
|
|
|
|
lock_unlock(aio->lock);
|
|
|
|
|
|
|
|
io_write(aio->io, local_buffer, local_buffer_len);
|
2017-10-10 01:33:54 +00:00
|
|
|
io_flush(aio->io);
|
|
|
|
result_io_error = io_error(aio->io);
|
|
|
|
|
|
|
|
lock_wait(aio->lock);
|
|
|
|
aio->error = result_io_error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-13 00:48:42 +00:00
|
|
|
ASYNCIO *aio_new(IOHANDLE io)
|
2017-10-10 01:33:54 +00:00
|
|
|
{
|
2018-04-09 09:56:39 +00:00
|
|
|
ASYNCIO *aio = malloc(sizeof(*aio));
|
2017-10-10 01:33:54 +00:00
|
|
|
if(!aio)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
aio->io = io;
|
|
|
|
aio->lock = lock_create();
|
|
|
|
sphore_init(&aio->sphore);
|
|
|
|
aio->thread = 0;
|
|
|
|
|
2018-04-09 09:56:39 +00:00
|
|
|
aio->buffer = malloc(ASYNC_BUFSIZE);
|
2017-10-10 01:33:54 +00:00
|
|
|
if(!aio->buffer)
|
|
|
|
{
|
|
|
|
sphore_destroy(&aio->sphore);
|
|
|
|
lock_destroy(aio->lock);
|
2018-04-09 09:56:39 +00:00
|
|
|
free(aio);
|
2017-10-10 01:33:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
aio->buffer_size = ASYNC_BUFSIZE;
|
|
|
|
aio->read_pos = 0;
|
|
|
|
aio->write_pos = 0;
|
|
|
|
aio->error = 0;
|
|
|
|
aio->finish = ASYNCIO_RUNNING;
|
|
|
|
aio->refcount = 2;
|
|
|
|
|
2019-03-19 10:44:16 +00:00
|
|
|
aio->thread = thread_init(aio_thread, aio, "aio");
|
2017-10-10 01:33:54 +00:00
|
|
|
if(!aio->thread)
|
|
|
|
{
|
2018-04-09 09:56:39 +00:00
|
|
|
free(aio->buffer);
|
2017-10-10 01:33:54 +00:00
|
|
|
sphore_destroy(&aio->sphore);
|
|
|
|
lock_destroy(aio->lock);
|
2018-04-09 09:56:39 +00:00
|
|
|
free(aio);
|
2017-10-10 01:33:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return aio;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int buffer_len(ASYNCIO *aio)
|
|
|
|
{
|
|
|
|
if(aio->write_pos >= aio->read_pos)
|
|
|
|
{
|
|
|
|
return aio->write_pos - aio->read_pos;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return aio->buffer_size + aio->write_pos - aio->read_pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int next_buffer_size(unsigned int cur_size, unsigned int need_size)
|
|
|
|
{
|
|
|
|
while(cur_size < need_size)
|
|
|
|
{
|
|
|
|
cur_size *= 2;
|
|
|
|
}
|
|
|
|
return cur_size;
|
|
|
|
}
|
|
|
|
|
2020-12-02 18:11:19 +00:00
|
|
|
void aio_lock(ASYNCIO *aio) ACQUIRE(aio->lock)
|
2017-10-10 01:33:54 +00:00
|
|
|
{
|
|
|
|
lock_wait(aio->lock);
|
2017-11-26 16:01:11 +00:00
|
|
|
}
|
|
|
|
|
2020-12-02 18:11:19 +00:00
|
|
|
void aio_unlock(ASYNCIO *aio) RELEASE(aio->lock)
|
2017-11-26 16:01:11 +00:00
|
|
|
{
|
|
|
|
lock_unlock(aio->lock);
|
|
|
|
sphore_signal(&aio->sphore);
|
|
|
|
}
|
|
|
|
|
|
|
|
void aio_write_unlocked(ASYNCIO *aio, const void *buffer, unsigned size)
|
|
|
|
{
|
|
|
|
unsigned int remaining;
|
2017-10-10 01:33:54 +00:00
|
|
|
remaining = aio->buffer_size - buffer_len(aio);
|
|
|
|
|
|
|
|
// Don't allow full queue to distinguish between empty and full queue.
|
|
|
|
if(size < remaining)
|
|
|
|
{
|
|
|
|
unsigned int remaining_contiguous = aio->buffer_size - aio->write_pos;
|
|
|
|
if(size > remaining_contiguous)
|
|
|
|
{
|
|
|
|
mem_copy(aio->buffer + aio->write_pos, buffer, remaining_contiguous);
|
|
|
|
size -= remaining_contiguous;
|
|
|
|
buffer = ((unsigned char *)buffer) + remaining_contiguous;
|
|
|
|
aio->write_pos = 0;
|
|
|
|
}
|
|
|
|
mem_copy(aio->buffer + aio->write_pos, buffer, size);
|
|
|
|
aio->write_pos = (aio->write_pos + size) % aio->buffer_size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Add 1 so the new buffer isn't completely filled.
|
|
|
|
unsigned int new_written = buffer_len(aio) + size + 1;
|
|
|
|
unsigned int next_size = next_buffer_size(aio->buffer_size, new_written);
|
|
|
|
unsigned int next_len = 0;
|
2018-04-09 09:56:39 +00:00
|
|
|
unsigned char *next_buffer = malloc(next_size);
|
2017-10-10 01:33:54 +00:00
|
|
|
|
|
|
|
struct BUFFERS buffers;
|
|
|
|
buffer_ptrs(aio, &buffers);
|
|
|
|
if(buffers.buf1)
|
|
|
|
{
|
|
|
|
mem_copy(next_buffer + next_len, buffers.buf1, buffers.len1);
|
|
|
|
next_len += buffers.len1;
|
|
|
|
if(buffers.buf2)
|
|
|
|
{
|
|
|
|
mem_copy(next_buffer + next_len, buffers.buf2, buffers.len2);
|
|
|
|
next_len += buffers.len2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mem_copy(next_buffer + next_len, buffer, size);
|
|
|
|
next_len += size;
|
|
|
|
|
2018-04-09 09:56:39 +00:00
|
|
|
free(aio->buffer);
|
2017-10-10 01:33:54 +00:00
|
|
|
aio->buffer = next_buffer;
|
|
|
|
aio->buffer_size = next_size;
|
|
|
|
aio->read_pos = 0;
|
|
|
|
aio->write_pos = next_len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-26 16:01:11 +00:00
|
|
|
void aio_write(ASYNCIO *aio, const void *buffer, unsigned size)
|
|
|
|
{
|
|
|
|
aio_lock(aio);
|
|
|
|
aio_write_unlocked(aio, buffer, size);
|
|
|
|
aio_unlock(aio);
|
|
|
|
}
|
|
|
|
|
|
|
|
void aio_write_newline_unlocked(ASYNCIO *aio)
|
2017-10-10 01:33:54 +00:00
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2017-11-26 16:01:11 +00:00
|
|
|
aio_write_unlocked(aio, "\r\n", 2);
|
2017-10-10 01:33:54 +00:00
|
|
|
#else
|
2017-11-26 16:01:11 +00:00
|
|
|
aio_write_unlocked(aio, "\n", 1);
|
2017-10-10 01:33:54 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-11-26 16:01:11 +00:00
|
|
|
void aio_write_newline(ASYNCIO *aio)
|
|
|
|
{
|
|
|
|
aio_lock(aio);
|
|
|
|
aio_write_newline_unlocked(aio);
|
|
|
|
aio_unlock(aio);
|
|
|
|
}
|
|
|
|
|
2017-10-13 00:48:42 +00:00
|
|
|
int aio_error(ASYNCIO *aio)
|
2017-10-10 01:33:54 +00:00
|
|
|
{
|
|
|
|
int result;
|
|
|
|
lock_wait(aio->lock);
|
|
|
|
result = aio->error;
|
|
|
|
lock_unlock(aio->lock);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-10-13 00:48:42 +00:00
|
|
|
void aio_free(ASYNCIO *aio)
|
2017-10-10 01:33:54 +00:00
|
|
|
{
|
|
|
|
lock_wait(aio->lock);
|
|
|
|
if(aio->thread)
|
|
|
|
{
|
|
|
|
thread_detach(aio->thread);
|
|
|
|
aio->thread = 0;
|
|
|
|
}
|
2017-10-13 00:48:42 +00:00
|
|
|
aio_handle_free_and_unlock(aio);
|
2017-10-10 01:33:54 +00:00
|
|
|
}
|
|
|
|
|
2017-10-13 00:48:42 +00:00
|
|
|
void aio_close(ASYNCIO *aio)
|
2017-10-10 01:33:54 +00:00
|
|
|
{
|
|
|
|
lock_wait(aio->lock);
|
|
|
|
aio->finish = ASYNCIO_CLOSE;
|
|
|
|
lock_unlock(aio->lock);
|
|
|
|
sphore_signal(&aio->sphore);
|
|
|
|
}
|
|
|
|
|
2017-10-13 00:48:42 +00:00
|
|
|
void aio_wait(ASYNCIO *aio)
|
2017-10-10 01:33:54 +00:00
|
|
|
{
|
|
|
|
void *thread;
|
|
|
|
lock_wait(aio->lock);
|
|
|
|
thread = aio->thread;
|
|
|
|
aio->thread = 0;
|
2017-10-11 22:53:12 +00:00
|
|
|
if(aio->finish == ASYNCIO_RUNNING)
|
|
|
|
{
|
|
|
|
aio->finish = ASYNCIO_EXIT;
|
|
|
|
}
|
2017-10-10 01:33:54 +00:00
|
|
|
lock_unlock(aio->lock);
|
|
|
|
sphore_signal(&aio->sphore);
|
|
|
|
thread_wait(thread);
|
|
|
|
}
|
|
|
|
|
2018-06-20 20:26:43 +00:00
|
|
|
struct THREAD_RUN
|
|
|
|
{
|
|
|
|
void (*threadfunc)(void *);
|
|
|
|
void *u;
|
|
|
|
};
|
|
|
|
|
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
|
|
|
static void *thread_run(void *user)
|
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
2018-10-01 17:23:33 +00:00
|
|
|
static unsigned long __stdcall thread_run(void *user)
|
2018-06-20 20:26:43 +00:00
|
|
|
#else
|
|
|
|
#error not implemented
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
struct THREAD_RUN *data = user;
|
|
|
|
void (*threadfunc)(void *) = data->threadfunc;
|
|
|
|
void *u = data->u;
|
|
|
|
free(data);
|
|
|
|
threadfunc(u);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-03-19 10:44:16 +00:00
|
|
|
void *thread_init(void (*threadfunc)(void *), void *u, const char *name)
|
2008-02-10 21:54:52 +00:00
|
|
|
{
|
2018-06-20 20:26:43 +00:00
|
|
|
struct THREAD_RUN *data = malloc(sizeof(*data));
|
|
|
|
data->threadfunc = threadfunc;
|
|
|
|
data->u = u;
|
2008-02-10 21:54:52 +00:00
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
2017-10-09 22:08:24 +00:00
|
|
|
{
|
2018-06-20 20:26:43 +00:00
|
|
|
pthread_t id;
|
2019-03-19 10:44:16 +00:00
|
|
|
int result = pthread_create(&id, NULL, thread_run, data);
|
|
|
|
if(result != 0)
|
2018-06-20 20:26:43 +00:00
|
|
|
{
|
2019-03-19 10:44:16 +00:00
|
|
|
dbg_msg("thread", "creating %s thread failed: %d", name, result);
|
2018-06-20 20:26:43 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
return (void *)id;
|
2017-10-09 22:08:24 +00:00
|
|
|
}
|
2008-02-10 21:54:52 +00:00
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
2018-06-20 20:26:43 +00:00
|
|
|
return CreateThread(NULL, 0, thread_run, data, 0, NULL);
|
2008-02-10 21:54:52 +00:00
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
#error not implemented
|
2008-02-10 21:54:52 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void thread_wait(void *thread)
|
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
2017-08-31 17:13:55 +00:00
|
|
|
int result = pthread_join((pthread_t)thread, NULL);
|
|
|
|
if(result != 0)
|
|
|
|
dbg_msg("thread", "!! %d", result);
|
2008-02-10 21:54:52 +00:00
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
|
|
|
WaitForSingleObject((HANDLE)thread, INFINITE);
|
2017-10-09 22:08:24 +00:00
|
|
|
CloseHandle(thread);
|
2008-02-10 21:54:52 +00:00
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
#error not implemented
|
2008-02-10 21:54:52 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
void thread_yield(void)
|
2008-02-10 21:54:52 +00:00
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
2019-03-19 10:44:16 +00:00
|
|
|
int result = sched_yield();
|
|
|
|
if(result != 0)
|
|
|
|
dbg_msg("thread", "yield failed: %d", errno);
|
2008-02-10 21:54:52 +00:00
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
|
|
|
Sleep(0);
|
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
#error not implemented
|
2008-02-10 21:54:52 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-12-17 19:05:50 +00:00
|
|
|
void thread_sleep(int microseconds)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
2019-03-19 10:44:16 +00:00
|
|
|
int result = usleep(microseconds);
|
2019-03-24 22:14:37 +00:00
|
|
|
/* ignore signal interruption */
|
|
|
|
if(result == -1 && errno != EINTR)
|
2019-03-19 10:44:16 +00:00
|
|
|
dbg_msg("thread", "sleep failed: %d", errno);
|
2007-08-22 07:52:33 +00:00
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
2020-09-26 19:41:58 +00:00
|
|
|
Sleep(microseconds / 1000);
|
2007-08-22 07:52:33 +00:00
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
#error not implemented
|
2007-08-22 07:52:33 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-05-01 13:48:09 +00:00
|
|
|
void thread_detach(void *thread)
|
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
2019-03-19 10:44:16 +00:00
|
|
|
int result = pthread_detach((pthread_t)(thread));
|
|
|
|
if(result != 0)
|
|
|
|
dbg_msg("thread", "detach failed: %d", result);
|
2011-05-01 13:48:09 +00:00
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
|
|
|
CloseHandle(thread);
|
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
#error not implemented
|
2011-05-01 13:48:09 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-03-19 10:44:16 +00:00
|
|
|
void *thread_init_and_detach(void (*threadfunc)(void *), void *u, const char *name)
|
|
|
|
{
|
|
|
|
void *thread = thread_init(threadfunc, u, name);
|
|
|
|
if(thread)
|
|
|
|
thread_detach(thread);
|
|
|
|
return thread;
|
|
|
|
}
|
2008-02-10 21:54:52 +00:00
|
|
|
|
2007-10-02 16:19:25 +00:00
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
|
|
|
typedef pthread_mutex_t LOCKINTERNAL;
|
2007-10-04 09:49:38 +00:00
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
|
|
|
typedef CRITICAL_SECTION LOCKINTERNAL;
|
2007-10-02 16:19:25 +00:00
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
#error not implemented on this platform
|
2007-10-02 16:19:25 +00:00
|
|
|
#endif
|
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
LOCK lock_create(void)
|
2007-10-02 16:19:25 +00:00
|
|
|
{
|
2018-04-09 09:56:39 +00:00
|
|
|
LOCKINTERNAL *lock = (LOCKINTERNAL *)malloc(sizeof(*lock));
|
2019-03-19 10:44:16 +00:00
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
|
|
|
int result;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(!lock)
|
|
|
|
return 0;
|
2007-10-02 16:19:25 +00:00
|
|
|
|
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
2019-03-19 10:44:16 +00:00
|
|
|
result = pthread_mutex_init(lock, 0x0);
|
|
|
|
if(result != 0)
|
|
|
|
{
|
|
|
|
dbg_msg("lock", "init failed: %d", result);
|
2020-10-12 13:19:51 +00:00
|
|
|
free(lock);
|
2019-03-19 10:44:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2007-10-04 09:49:38 +00:00
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
|
|
|
InitializeCriticalSection((LPCRITICAL_SECTION)lock);
|
2007-10-02 16:19:25 +00:00
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
#error not implemented on this platform
|
2007-10-02 16:19:25 +00:00
|
|
|
#endif
|
2007-10-06 17:01:06 +00:00
|
|
|
return (LOCK)lock;
|
2007-10-02 16:19:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void lock_destroy(LOCK lock)
|
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
2019-03-19 10:44:16 +00:00
|
|
|
int result = pthread_mutex_destroy((LOCKINTERNAL *)lock);
|
|
|
|
if(result != 0)
|
|
|
|
dbg_msg("lock", "destroy failed: %d", result);
|
2007-10-04 09:49:38 +00:00
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
|
|
|
DeleteCriticalSection((LPCRITICAL_SECTION)lock);
|
2007-10-02 16:19:25 +00:00
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
#error not implemented on this platform
|
2007-10-02 16:19:25 +00:00
|
|
|
#endif
|
2018-04-09 09:56:39 +00:00
|
|
|
free(lock);
|
2007-10-02 16:19:25 +00:00
|
|
|
}
|
|
|
|
|
2015-04-07 17:07:38 +00:00
|
|
|
int lock_trylock(LOCK lock)
|
2007-10-02 16:19:25 +00:00
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
2007-10-06 17:01:06 +00:00
|
|
|
return pthread_mutex_trylock((LOCKINTERNAL *)lock);
|
2007-10-04 09:49:38 +00:00
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
2012-07-19 08:01:57 +00:00
|
|
|
return !TryEnterCriticalSection((LPCRITICAL_SECTION)lock);
|
2007-10-02 16:19:25 +00:00
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
#error not implemented on this platform
|
2007-10-02 16:19:25 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-12-02 18:11:19 +00:00
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Wthread-safety-analysis"
|
|
|
|
#endif
|
2007-10-02 16:19:25 +00:00
|
|
|
void lock_wait(LOCK lock)
|
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
2019-03-19 10:44:16 +00:00
|
|
|
int result = pthread_mutex_lock((LOCKINTERNAL *)lock);
|
|
|
|
if(result != 0)
|
|
|
|
dbg_msg("lock", "lock failed: %d", result);
|
2007-10-04 09:49:38 +00:00
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
|
|
|
EnterCriticalSection((LPCRITICAL_SECTION)lock);
|
2007-10-02 16:19:25 +00:00
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
#error not implemented on this platform
|
2007-10-02 16:19:25 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-04-07 17:07:38 +00:00
|
|
|
void lock_unlock(LOCK lock)
|
2007-10-02 16:19:25 +00:00
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
2019-03-19 10:44:16 +00:00
|
|
|
int result = pthread_mutex_unlock((LOCKINTERNAL *)lock);
|
|
|
|
if(result != 0)
|
|
|
|
dbg_msg("lock", "unlock failed: %d", result);
|
2007-10-04 09:49:38 +00:00
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
|
|
|
LeaveCriticalSection((LPCRITICAL_SECTION)lock);
|
2007-10-02 16:19:25 +00:00
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
#error not implemented on this platform
|
2007-10-02 16:19:25 +00:00
|
|
|
#endif
|
|
|
|
}
|
2020-12-02 18:11:19 +00:00
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic pop
|
|
|
|
#endif
|
2007-10-02 16:19:25 +00:00
|
|
|
|
2017-08-31 17:13:55 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2020-09-26 19:41:58 +00:00
|
|
|
void sphore_init(SEMAPHORE *sem)
|
|
|
|
{
|
|
|
|
*sem = CreateSemaphore(0, 0, 10000, 0);
|
|
|
|
}
|
2017-08-31 10:30:42 +00:00
|
|
|
void sphore_wait(SEMAPHORE *sem) { WaitForSingleObject((HANDLE)*sem, INFINITE); }
|
|
|
|
void sphore_signal(SEMAPHORE *sem) { ReleaseSemaphore((HANDLE)*sem, 1, NULL); }
|
|
|
|
void sphore_destroy(SEMAPHORE *sem) { CloseHandle((HANDLE)*sem); }
|
2021-02-12 12:40:29 +00:00
|
|
|
#elif defined(CONF_PLATFORM_MACOS)
|
2017-08-31 10:30:42 +00:00
|
|
|
void sphore_init(SEMAPHORE *sem)
|
2017-08-31 08:59:12 +00:00
|
|
|
{
|
2017-08-31 09:29:49 +00:00
|
|
|
char aBuf[64];
|
2017-10-09 22:08:24 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "/%d-ddnet.tw-%p", pid(), (void *)sem);
|
2017-08-31 09:29:49 +00:00
|
|
|
*sem = sem_open(aBuf, O_CREAT | O_EXCL, S_IRWXU | S_IRWXG, 0);
|
2017-08-31 08:59:12 +00:00
|
|
|
}
|
2017-08-31 10:30:42 +00:00
|
|
|
void sphore_wait(SEMAPHORE *sem) { sem_wait(*sem); }
|
|
|
|
void sphore_signal(SEMAPHORE *sem) { sem_post(*sem); }
|
2017-08-31 17:13:55 +00:00
|
|
|
void sphore_destroy(SEMAPHORE *sem)
|
|
|
|
{
|
|
|
|
char aBuf[64];
|
|
|
|
sem_close(*sem);
|
2017-10-09 22:08:24 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "/%d-ddnet.tw-%p", pid(), (void *)sem);
|
2017-08-31 17:13:55 +00:00
|
|
|
sem_unlink(aBuf);
|
|
|
|
}
|
|
|
|
#elif defined(CONF_FAMILY_UNIX)
|
2019-03-19 10:44:16 +00:00
|
|
|
void sphore_init(SEMAPHORE *sem)
|
|
|
|
{
|
|
|
|
if(sem_init(sem, 0, 0) != 0)
|
|
|
|
dbg_msg("sphore", "init failed: %d", errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
void sphore_wait(SEMAPHORE *sem)
|
|
|
|
{
|
|
|
|
if(sem_wait(sem) != 0)
|
|
|
|
dbg_msg("sphore", "wait failed: %d", errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
void sphore_signal(SEMAPHORE *sem)
|
|
|
|
{
|
|
|
|
if(sem_post(sem) != 0)
|
|
|
|
dbg_msg("sphore", "post failed: %d", errno);
|
|
|
|
}
|
|
|
|
void sphore_destroy(SEMAPHORE *sem)
|
|
|
|
{
|
|
|
|
if(sem_destroy(sem) != 0)
|
|
|
|
dbg_msg("sphore", "destroy failed: %d", errno);
|
|
|
|
}
|
2012-01-01 14:56:28 +00:00
|
|
|
#endif
|
|
|
|
|
2014-11-18 17:21:30 +00:00
|
|
|
static int new_tick = -1;
|
2014-11-09 23:08:50 +00:00
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
void set_new_tick(void)
|
2014-11-09 23:08:50 +00:00
|
|
|
{
|
|
|
|
new_tick = 1;
|
|
|
|
}
|
2012-01-01 14:56:28 +00:00
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
/* ----- time ----- */
|
2020-04-12 17:56:11 +00:00
|
|
|
int64 time_get_impl(void)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2014-11-09 23:08:50 +00:00
|
|
|
static int64 last = 0;
|
2016-07-03 10:56:29 +00:00
|
|
|
{
|
2021-02-12 12:40:29 +00:00
|
|
|
#if defined(CONF_PLATFORM_MACOS)
|
2017-03-07 12:02:37 +00:00
|
|
|
static int got_timebase = 0;
|
|
|
|
mach_timebase_info_data_t timebase;
|
2020-07-08 14:59:32 +00:00
|
|
|
uint64 time;
|
|
|
|
uint64 q;
|
|
|
|
uint64 r;
|
2017-03-07 12:02:37 +00:00
|
|
|
if(!got_timebase)
|
|
|
|
{
|
|
|
|
mach_timebase_info(&timebase);
|
|
|
|
}
|
|
|
|
time = mach_absolute_time();
|
|
|
|
q = time / timebase.denom;
|
|
|
|
r = time % timebase.denom;
|
|
|
|
last = q * timebase.numer + r * timebase.numer / timebase.denom;
|
|
|
|
return last;
|
2016-07-03 10:56:29 +00:00
|
|
|
#elif defined(CONF_FAMILY_UNIX)
|
2017-03-07 12:02:37 +00:00
|
|
|
struct timespec spec;
|
2019-03-19 10:44:16 +00:00
|
|
|
if(clock_gettime(CLOCK_MONOTONIC, &spec) != 0)
|
|
|
|
{
|
|
|
|
dbg_msg("clock", "gettime failed: %d", errno);
|
|
|
|
return 0;
|
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
last = (int64)spec.tv_sec * (int64)1000000 + (int64)spec.tv_nsec / 1000;
|
2017-03-07 12:02:37 +00:00
|
|
|
return last;
|
2007-08-22 07:52:33 +00:00
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
2014-11-10 13:09:42 +00:00
|
|
|
int64 t;
|
|
|
|
QueryPerformanceCounter((PLARGE_INTEGER)&t);
|
2020-09-26 19:41:58 +00:00
|
|
|
if(t < last) /* for some reason, QPC can return values in the past */
|
2014-11-10 13:09:42 +00:00
|
|
|
return last;
|
|
|
|
last = t;
|
|
|
|
return t;
|
2007-08-22 07:52:33 +00:00
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
#error not implemented
|
2007-08-22 07:52:33 +00:00
|
|
|
#endif
|
2017-03-07 12:02:37 +00:00
|
|
|
}
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
int64 time_get(void)
|
2018-03-12 15:12:06 +00:00
|
|
|
{
|
|
|
|
static int64 last = 0;
|
|
|
|
if(new_tick == 0)
|
|
|
|
return last;
|
|
|
|
if(new_tick != -1)
|
|
|
|
new_tick = 0;
|
|
|
|
|
|
|
|
last = time_get_impl();
|
2018-03-12 15:21:21 +00:00
|
|
|
return last;
|
2018-03-12 15:12:06 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
int64 time_freq(void)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2021-02-12 12:40:29 +00:00
|
|
|
#if defined(CONF_PLATFORM_MACOS)
|
2016-07-10 14:07:21 +00:00
|
|
|
return 1000000000;
|
2016-07-03 10:56:29 +00:00
|
|
|
#elif defined(CONF_FAMILY_UNIX)
|
2007-08-22 07:52:33 +00:00
|
|
|
return 1000000;
|
|
|
|
#elif defined(CONF_FAMILY_WINDOWS)
|
|
|
|
int64 t;
|
|
|
|
QueryPerformanceFrequency((PLARGE_INTEGER)&t);
|
|
|
|
return t;
|
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
#error not implemented
|
2007-08-22 07:52:33 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
int64 time_get_microseconds(void)
|
2018-03-12 14:10:49 +00:00
|
|
|
{
|
2018-03-12 16:10:11 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2018-03-12 15:21:21 +00:00
|
|
|
return (time_get_impl() * (int64)1000000) / time_freq();
|
2018-03-12 14:10:49 +00:00
|
|
|
#else
|
2018-03-12 16:10:11 +00:00
|
|
|
return time_get_impl() / (time_freq() / 1000 / 1000);
|
2018-03-12 14:10:49 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
/* ----- network ----- */
|
2011-03-28 18:11:28 +00:00
|
|
|
static void netaddr_to_sockaddr_in(const NETADDR *src, struct sockaddr_in *dest)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2011-03-28 18:11:28 +00:00
|
|
|
mem_zero(dest, sizeof(struct sockaddr_in));
|
2015-02-07 22:15:58 +00:00
|
|
|
if(src->type != NETTYPE_IPV4 && src->type != NETTYPE_WEBSOCKET_IPV4)
|
2011-03-28 18:11:28 +00:00
|
|
|
{
|
|
|
|
dbg_msg("system", "couldn't convert NETADDR of type %d to ipv4", src->type);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dest->sin_family = AF_INET;
|
|
|
|
dest->sin_port = htons(src->port);
|
|
|
|
mem_copy(&dest->sin_addr.s_addr, src->ip, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void netaddr_to_sockaddr_in6(const NETADDR *src, struct sockaddr_in6 *dest)
|
|
|
|
{
|
|
|
|
mem_zero(dest, sizeof(struct sockaddr_in6));
|
|
|
|
if(src->type != NETTYPE_IPV6)
|
|
|
|
{
|
|
|
|
dbg_msg("system", "couldn't not convert NETADDR of type %d to ipv6", src->type);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dest->sin6_family = AF_INET6;
|
|
|
|
dest->sin6_port = htons(src->port);
|
|
|
|
mem_copy(&dest->sin6_addr.s6_addr, src->ip, 16);
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
static void sockaddr_to_netaddr(const struct sockaddr *src, NETADDR *dst)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2020-10-12 16:59:58 +00:00
|
|
|
// Filled by accept, clang-analyzer probably can't tell because of the
|
|
|
|
// (struct sockaddr *) cast.
|
|
|
|
if(src->sa_family == AF_INET) // NOLINT(clang-analyzer-core.UndefinedBinaryOperatorResult)
|
2011-03-28 18:11:28 +00:00
|
|
|
{
|
|
|
|
mem_zero(dst, sizeof(NETADDR));
|
|
|
|
dst->type = NETTYPE_IPV4;
|
2020-09-26 19:41:58 +00:00
|
|
|
dst->port = htons(((struct sockaddr_in *)src)->sin_port);
|
|
|
|
mem_copy(dst->ip, &((struct sockaddr_in *)src)->sin_addr.s_addr, 4);
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
2015-02-07 22:15:58 +00:00
|
|
|
else if(src->sa_family == AF_WEBSOCKET_INET)
|
|
|
|
{
|
|
|
|
mem_zero(dst, sizeof(NETADDR));
|
|
|
|
dst->type = NETTYPE_WEBSOCKET_IPV4;
|
2020-09-26 19:41:58 +00:00
|
|
|
dst->port = htons(((struct sockaddr_in *)src)->sin_port);
|
|
|
|
mem_copy(dst->ip, &((struct sockaddr_in *)src)->sin_addr.s_addr, 4);
|
2015-02-07 22:15:58 +00:00
|
|
|
}
|
2011-03-28 18:11:28 +00:00
|
|
|
else if(src->sa_family == AF_INET6)
|
|
|
|
{
|
|
|
|
mem_zero(dst, sizeof(NETADDR));
|
|
|
|
dst->type = NETTYPE_IPV6;
|
2020-09-26 19:41:58 +00:00
|
|
|
dst->port = htons(((struct sockaddr_in6 *)src)->sin6_port);
|
|
|
|
mem_copy(dst->ip, &((struct sockaddr_in6 *)src)->sin6_addr.s6_addr, 16);
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mem_zero(dst, sizeof(struct sockaddr));
|
|
|
|
dbg_msg("system", "couldn't convert sockaddr of family %d", src->sa_family);
|
|
|
|
}
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
int net_addr_comp(const NETADDR *a, const NETADDR *b)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2008-07-06 11:21:21 +00:00
|
|
|
return mem_comp(a, b, sizeof(NETADDR));
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2018-10-08 16:56:51 +00:00
|
|
|
int net_addr_comp_noport(const NETADDR *a, const NETADDR *b)
|
2018-10-07 22:59:07 +00:00
|
|
|
{
|
2018-10-08 16:56:51 +00:00
|
|
|
NETADDR ta = *a, tb = *b;
|
|
|
|
ta.port = tb.port = 0;
|
|
|
|
|
|
|
|
return net_addr_comp(&ta, &tb);
|
2018-10-07 22:59:07 +00:00
|
|
|
}
|
|
|
|
|
2011-12-29 22:36:53 +00:00
|
|
|
void net_addr_str(const NETADDR *addr, char *string, int max_length, int add_port)
|
2008-08-17 07:05:16 +00:00
|
|
|
{
|
2015-02-07 22:15:58 +00:00
|
|
|
if(addr->type == NETTYPE_IPV4 || addr->type == NETTYPE_WEBSOCKET_IPV4)
|
2011-04-22 17:52:27 +00:00
|
|
|
{
|
2011-12-29 22:36:53 +00:00
|
|
|
if(add_port != 0)
|
2011-04-22 17:52:27 +00:00
|
|
|
str_format(string, max_length, "%d.%d.%d.%d:%d", addr->ip[0], addr->ip[1], addr->ip[2], addr->ip[3], addr->port);
|
|
|
|
else
|
|
|
|
str_format(string, max_length, "%d.%d.%d.%d", addr->ip[0], addr->ip[1], addr->ip[2], addr->ip[3]);
|
|
|
|
}
|
2008-08-17 07:05:16 +00:00
|
|
|
else if(addr->type == NETTYPE_IPV6)
|
|
|
|
{
|
2011-12-29 22:36:53 +00:00
|
|
|
if(add_port != 0)
|
2011-04-22 17:52:27 +00:00
|
|
|
str_format(string, max_length, "[%x:%x:%x:%x:%x:%x:%x:%x]:%d",
|
2020-09-26 19:41:58 +00:00
|
|
|
(addr->ip[0] << 8) | addr->ip[1], (addr->ip[2] << 8) | addr->ip[3], (addr->ip[4] << 8) | addr->ip[5], (addr->ip[6] << 8) | addr->ip[7],
|
|
|
|
(addr->ip[8] << 8) | addr->ip[9], (addr->ip[10] << 8) | addr->ip[11], (addr->ip[12] << 8) | addr->ip[13], (addr->ip[14] << 8) | addr->ip[15],
|
2011-04-22 17:52:27 +00:00
|
|
|
addr->port);
|
|
|
|
else
|
|
|
|
str_format(string, max_length, "[%x:%x:%x:%x:%x:%x:%x:%x]",
|
2020-09-26 19:41:58 +00:00
|
|
|
(addr->ip[0] << 8) | addr->ip[1], (addr->ip[2] << 8) | addr->ip[3], (addr->ip[4] << 8) | addr->ip[5], (addr->ip[6] << 8) | addr->ip[7],
|
|
|
|
(addr->ip[8] << 8) | addr->ip[9], (addr->ip[10] << 8) | addr->ip[11], (addr->ip[12] << 8) | addr->ip[13], (addr->ip[14] << 8) | addr->ip[15]);
|
2008-08-17 07:05:16 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
str_format(string, max_length, "unknown type %d", addr->type);
|
|
|
|
}
|
|
|
|
|
2011-03-28 18:11:28 +00:00
|
|
|
static int priv_net_extract(const char *hostname, char *host, int max_host, int *port)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
*port = 0;
|
|
|
|
host[0] = 0;
|
|
|
|
|
|
|
|
if(hostname[0] == '[')
|
|
|
|
{
|
|
|
|
// ipv6 mode
|
2011-03-30 10:08:33 +00:00
|
|
|
for(i = 1; i < max_host && hostname[i] && hostname[i] != ']'; i++)
|
2020-09-26 19:41:58 +00:00
|
|
|
host[i - 1] = hostname[i];
|
|
|
|
host[i - 1] = 0;
|
2011-03-28 18:11:28 +00:00
|
|
|
if(hostname[i] != ']') // malformatted
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
i++;
|
|
|
|
if(hostname[i] == ':')
|
2020-09-26 19:41:58 +00:00
|
|
|
*port = atol(hostname + i + 1);
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// generic mode (ipv4, hostname etc)
|
2020-09-26 19:41:58 +00:00
|
|
|
for(i = 0; i < max_host - 1 && hostname[i] && hostname[i] != ':'; i++)
|
2011-03-28 18:11:28 +00:00
|
|
|
host[i] = hostname[i];
|
|
|
|
host[i] = 0;
|
|
|
|
|
|
|
|
if(hostname[i] == ':')
|
2020-09-26 19:41:58 +00:00
|
|
|
*port = atol(hostname + i + 1);
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
int net_host_lookup(const char *hostname, NETADDR *addr, int types)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2008-02-24 16:03:58 +00:00
|
|
|
struct addrinfo hints;
|
2014-12-28 00:40:15 +00:00
|
|
|
struct addrinfo *result = NULL;
|
2008-02-24 16:03:58 +00:00
|
|
|
int e;
|
2011-03-28 18:11:28 +00:00
|
|
|
char host[256];
|
|
|
|
int port = 0;
|
|
|
|
|
|
|
|
if(priv_net_extract(hostname, host, sizeof(host), &port))
|
|
|
|
return -1;
|
2014-12-10 02:39:15 +00:00
|
|
|
|
2020-10-26 08:57:41 +00:00
|
|
|
dbg_msg("host_lookup", "host='%s' port=%d %d", host, port, types);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-02-24 16:03:58 +00:00
|
|
|
mem_zero(&hints, sizeof(hints));
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-03-28 18:11:28 +00:00
|
|
|
hints.ai_family = AF_UNSPEC;
|
|
|
|
|
|
|
|
if(types == NETTYPE_IPV4)
|
|
|
|
hints.ai_family = AF_INET;
|
|
|
|
else if(types == NETTYPE_IPV6)
|
|
|
|
hints.ai_family = AF_INET6;
|
2020-09-18 14:25:00 +00:00
|
|
|
#if defined(CONF_WEBSOCKETS)
|
|
|
|
if(types & NETTYPE_WEBSOCKET_IPV4)
|
|
|
|
hints.ai_family = AF_INET;
|
|
|
|
#endif
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2011-03-28 18:11:28 +00:00
|
|
|
e = getaddrinfo(host, NULL, &hints, &result);
|
2013-08-07 23:47:49 +00:00
|
|
|
|
2014-12-28 00:40:15 +00:00
|
|
|
if(!result)
|
2008-02-24 16:03:58 +00:00
|
|
|
return -1;
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2014-12-28 00:40:15 +00:00
|
|
|
if(e != 0)
|
|
|
|
{
|
|
|
|
freeaddrinfo(result);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
sockaddr_to_netaddr(result->ai_addr, addr);
|
2011-03-28 18:11:28 +00:00
|
|
|
addr->port = port;
|
2013-08-07 23:47:49 +00:00
|
|
|
freeaddrinfo(result);
|
2008-02-24 16:03:58 +00:00
|
|
|
return 0;
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2008-09-03 21:02:30 +00:00
|
|
|
static int parse_int(int *out, const char **str)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
*out = 0;
|
|
|
|
if(**str < '0' || **str > '9')
|
2011-04-13 18:37:12 +00:00
|
|
|
return -1;
|
|
|
|
|
2008-09-03 21:02:30 +00:00
|
|
|
i = **str - '0';
|
|
|
|
(*str)++;
|
|
|
|
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
if(**str < '0' || **str > '9')
|
|
|
|
{
|
|
|
|
*out = i;
|
2011-04-13 18:37:12 +00:00
|
|
|
return 0;
|
2008-09-03 21:02:30 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
i = (i * 10) + (**str - '0');
|
2008-09-03 21:02:30 +00:00
|
|
|
(*str)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int parse_char(char c, const char **str)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(**str != c)
|
|
|
|
return -1;
|
2008-09-03 21:02:30 +00:00
|
|
|
(*str)++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int parse_uint8(unsigned char *out, const char **str)
|
|
|
|
{
|
|
|
|
int i;
|
2020-09-26 19:41:58 +00:00
|
|
|
if(parse_int(&i, str) != 0)
|
|
|
|
return -1;
|
|
|
|
if(i < 0 || i > 0xff)
|
|
|
|
return -1;
|
2008-09-03 21:02:30 +00:00
|
|
|
*out = i;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int parse_uint16(unsigned short *out, const char **str)
|
|
|
|
{
|
|
|
|
int i;
|
2020-09-26 19:41:58 +00:00
|
|
|
if(parse_int(&i, str) != 0)
|
|
|
|
return -1;
|
|
|
|
if(i < 0 || i > 0xffff)
|
|
|
|
return -1;
|
2008-09-03 21:02:30 +00:00
|
|
|
*out = i;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int net_addr_from_str(NETADDR *addr, const char *string)
|
|
|
|
{
|
|
|
|
const char *str = string;
|
|
|
|
mem_zero(addr, sizeof(NETADDR));
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-09-03 21:02:30 +00:00
|
|
|
if(str[0] == '[')
|
|
|
|
{
|
2011-03-28 18:11:28 +00:00
|
|
|
/* ipv6 */
|
|
|
|
struct sockaddr_in6 sa6;
|
|
|
|
char buf[128];
|
2011-03-28 20:08:52 +00:00
|
|
|
int i;
|
2011-03-30 10:08:33 +00:00
|
|
|
str++;
|
2011-03-28 18:11:28 +00:00
|
|
|
for(i = 0; i < 127 && str[i] && str[i] != ']'; i++)
|
|
|
|
buf[i] = str[i];
|
|
|
|
buf[i] = 0;
|
|
|
|
str += i;
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2011-03-28 20:08:52 +00:00
|
|
|
{
|
|
|
|
int size;
|
|
|
|
sa6.sin6_family = AF_INET6;
|
|
|
|
size = (int)sizeof(sa6);
|
|
|
|
if(WSAStringToAddress(buf, AF_INET6, NULL, (struct sockaddr *)&sa6, &size) != 0)
|
|
|
|
return -1;
|
|
|
|
}
|
2011-03-28 18:11:28 +00:00
|
|
|
#else
|
2015-07-12 01:08:58 +00:00
|
|
|
sa6.sin6_family = AF_INET6;
|
|
|
|
|
|
|
|
if(inet_pton(AF_INET6, buf, &sa6.sin6_addr) != 1)
|
2011-03-28 18:11:28 +00:00
|
|
|
return -1;
|
|
|
|
#endif
|
|
|
|
sockaddr_to_netaddr((struct sockaddr *)&sa6, addr);
|
|
|
|
|
|
|
|
if(*str == ']')
|
|
|
|
{
|
|
|
|
str++;
|
|
|
|
if(*str == ':')
|
|
|
|
{
|
|
|
|
str++;
|
|
|
|
if(parse_uint16(&addr->port, &str))
|
|
|
|
return -1;
|
|
|
|
}
|
2021-04-17 14:03:12 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
addr->port = 0;
|
|
|
|
}
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
2008-09-03 21:02:30 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* ipv4 */
|
2020-09-26 19:41:58 +00:00
|
|
|
if(parse_uint8(&addr->ip[0], &str))
|
|
|
|
return -1;
|
|
|
|
if(parse_char('.', &str))
|
|
|
|
return -1;
|
|
|
|
if(parse_uint8(&addr->ip[1], &str))
|
|
|
|
return -1;
|
|
|
|
if(parse_char('.', &str))
|
|
|
|
return -1;
|
|
|
|
if(parse_uint8(&addr->ip[2], &str))
|
|
|
|
return -1;
|
|
|
|
if(parse_char('.', &str))
|
|
|
|
return -1;
|
|
|
|
if(parse_uint8(&addr->ip[3], &str))
|
|
|
|
return -1;
|
2008-09-03 21:02:30 +00:00
|
|
|
if(*str == ':')
|
|
|
|
{
|
|
|
|
str++;
|
2020-09-26 19:41:58 +00:00
|
|
|
if(parse_uint16(&addr->port, &str))
|
|
|
|
return -1;
|
2008-09-03 21:02:30 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-09-03 21:02:30 +00:00
|
|
|
addr->type = NETTYPE_IPV4;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-09-03 21:02:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-03-28 18:11:28 +00:00
|
|
|
static void priv_net_close_socket(int sock)
|
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
closesocket(sock);
|
|
|
|
#else
|
2019-03-19 10:44:16 +00:00
|
|
|
if(close(sock) != 0)
|
|
|
|
dbg_msg("socket", "close failed: %d", errno);
|
2011-03-28 18:11:28 +00:00
|
|
|
#endif
|
|
|
|
}
|
2008-09-03 21:02:30 +00:00
|
|
|
|
2011-03-28 18:11:28 +00:00
|
|
|
static int priv_net_close_all_sockets(NETSOCKET sock)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2011-03-28 18:11:28 +00:00
|
|
|
/* close down ipv4 */
|
|
|
|
if(sock.ipv4sock >= 0)
|
|
|
|
{
|
|
|
|
priv_net_close_socket(sock.ipv4sock);
|
|
|
|
sock.ipv4sock = -1;
|
|
|
|
sock.type &= ~NETTYPE_IPV4;
|
|
|
|
}
|
|
|
|
|
2017-03-07 12:03:37 +00:00
|
|
|
#if defined(CONF_WEBSOCKETS)
|
2015-02-07 22:15:58 +00:00
|
|
|
/* close down websocket_ipv4 */
|
|
|
|
if(sock.web_ipv4sock >= 0)
|
|
|
|
{
|
|
|
|
websocket_destroy(sock.web_ipv4sock);
|
|
|
|
sock.web_ipv4sock = -1;
|
|
|
|
sock.type &= ~NETTYPE_WEBSOCKET_IPV4;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-03-28 18:11:28 +00:00
|
|
|
/* close down ipv6 */
|
|
|
|
if(sock.ipv6sock >= 0)
|
|
|
|
{
|
|
|
|
priv_net_close_socket(sock.ipv6sock);
|
|
|
|
sock.ipv6sock = -1;
|
|
|
|
sock.type &= ~NETTYPE_IPV6;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int priv_net_create_socket(int domain, int type, struct sockaddr *addr, int sockaddrlen)
|
|
|
|
{
|
|
|
|
int sock, e;
|
2007-08-22 07:52:33 +00:00
|
|
|
|
|
|
|
/* create socket */
|
2011-03-28 18:11:28 +00:00
|
|
|
sock = socket(domain, type, 0);
|
2007-08-22 07:52:33 +00:00
|
|
|
if(sock < 0)
|
|
|
|
{
|
2011-12-04 16:09:30 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
char buf[128];
|
|
|
|
int error = WSAGetLastError();
|
2020-09-26 19:41:58 +00:00
|
|
|
if(FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, 0, error, 0, buf, sizeof(buf), 0) == 0)
|
2011-12-04 16:09:30 +00:00
|
|
|
buf[0] = 0;
|
|
|
|
dbg_msg("net", "failed to create socket with domain %d and type %d (%d '%s')", domain, type, error, buf);
|
|
|
|
#else
|
2011-03-28 18:11:28 +00:00
|
|
|
dbg_msg("net", "failed to create socket with domain %d and type %d (%d '%s')", domain, type, errno, strerror(errno));
|
2011-12-04 16:09:30 +00:00
|
|
|
#endif
|
2011-03-28 18:11:28 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-06-13 09:49:35 +00:00
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
|
|
|
/* on tcp sockets set SO_REUSEADDR
|
|
|
|
to fix port rebind on restart */
|
2020-09-26 19:41:58 +00:00
|
|
|
if(domain == AF_INET && type == SOCK_STREAM)
|
2015-06-13 09:49:35 +00:00
|
|
|
{
|
|
|
|
int option = 1;
|
2019-03-19 10:44:16 +00:00
|
|
|
if(setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &option, sizeof(option)) != 0)
|
|
|
|
dbg_msg("socket", "Setting SO_REUSEADDR failed: %d", errno);
|
2015-06-13 09:49:35 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-07-10 09:29:02 +00:00
|
|
|
/* set to IPv6 only if that's what we are creating */
|
2020-09-26 19:41:58 +00:00
|
|
|
#if defined(IPV6_V6ONLY) /* windows sdk 6.1 and higher */
|
2011-03-28 18:11:28 +00:00
|
|
|
if(domain == AF_INET6)
|
|
|
|
{
|
|
|
|
int ipv6only = 1;
|
2020-09-26 19:41:58 +00:00
|
|
|
if(setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, (const char *)&ipv6only, sizeof(ipv6only)) != 0)
|
2019-03-19 10:44:16 +00:00
|
|
|
dbg_msg("socket", "Setting V6ONLY failed: %d", errno);
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
2011-06-18 15:27:14 +00:00
|
|
|
#endif
|
2011-03-28 18:11:28 +00:00
|
|
|
|
|
|
|
/* bind the socket */
|
|
|
|
e = bind(sock, addr, sockaddrlen);
|
|
|
|
if(e != 0)
|
|
|
|
{
|
2011-12-04 16:09:30 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
char buf[128];
|
|
|
|
int error = WSAGetLastError();
|
2020-09-26 19:41:58 +00:00
|
|
|
if(FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, 0, error, 0, buf, sizeof(buf), 0) == 0)
|
2011-12-04 16:09:30 +00:00
|
|
|
buf[0] = 0;
|
2011-12-04 16:12:44 +00:00
|
|
|
dbg_msg("net", "failed to bind socket with domain %d and type %d (%d '%s')", domain, type, error, buf);
|
2011-12-04 16:09:30 +00:00
|
|
|
#else
|
2011-03-28 18:11:28 +00:00
|
|
|
dbg_msg("net", "failed to bind socket with domain %d and type %d (%d '%s')", domain, type, errno, strerror(errno));
|
2011-12-04 16:09:30 +00:00
|
|
|
#endif
|
2011-03-28 18:11:28 +00:00
|
|
|
priv_net_close_socket(sock);
|
|
|
|
return -1;
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-03-28 18:11:28 +00:00
|
|
|
/* return the newly created socket */
|
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
|
|
|
|
NETSOCKET net_udp_create(NETADDR bindaddr)
|
|
|
|
{
|
|
|
|
NETSOCKET sock = invalid_socket;
|
|
|
|
NETADDR tmpbindaddr = bindaddr;
|
2011-07-06 16:20:46 +00:00
|
|
|
int broadcast = 1;
|
2011-03-28 18:11:28 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(bindaddr.type & NETTYPE_IPV4)
|
2011-03-28 18:11:28 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_in addr;
|
|
|
|
int socket = -1;
|
|
|
|
|
|
|
|
/* bind, we should check for error */
|
|
|
|
tmpbindaddr.type = NETTYPE_IPV4;
|
|
|
|
netaddr_to_sockaddr_in(&tmpbindaddr, &addr);
|
|
|
|
socket = priv_net_create_socket(AF_INET, SOCK_DGRAM, (struct sockaddr *)&addr, sizeof(addr));
|
|
|
|
if(socket >= 0)
|
|
|
|
{
|
|
|
|
sock.type |= NETTYPE_IPV4;
|
|
|
|
sock.ipv4sock = socket;
|
2011-07-06 16:20:46 +00:00
|
|
|
|
2017-10-24 11:40:35 +00:00
|
|
|
/* set broadcast */
|
2020-09-26 19:41:58 +00:00
|
|
|
if(setsockopt(socket, SOL_SOCKET, SO_BROADCAST, (const char *)&broadcast, sizeof(broadcast)) != 0)
|
2019-03-19 10:44:16 +00:00
|
|
|
dbg_msg("socket", "Setting BROADCAST on ipv4 failed: %d", errno);
|
2011-07-06 16:20:46 +00:00
|
|
|
|
2014-12-08 17:44:01 +00:00
|
|
|
{
|
|
|
|
/* set DSCP/TOS */
|
|
|
|
int iptos = 0x10 /* IPTOS_LOWDELAY */;
|
|
|
|
//int iptos = 46; /* High Priority */
|
2020-09-26 19:41:58 +00:00
|
|
|
if(setsockopt(socket, IPPROTO_IP, IP_TOS, (char *)&iptos, sizeof(iptos)) != 0)
|
2019-03-19 10:44:16 +00:00
|
|
|
dbg_msg("socket", "Setting TOS on ipv4 failed: %d", errno);
|
2014-12-08 17:44:01 +00:00
|
|
|
}
|
2013-02-24 16:14:55 +00:00
|
|
|
}
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
|
|
|
|
2017-03-07 12:03:37 +00:00
|
|
|
#if defined(CONF_WEBSOCKETS)
|
2020-09-26 19:41:58 +00:00
|
|
|
if(bindaddr.type & NETTYPE_WEBSOCKET_IPV4)
|
2015-02-07 22:15:58 +00:00
|
|
|
{
|
|
|
|
int socket = -1;
|
2017-07-22 19:20:15 +00:00
|
|
|
char addr_str[NETADDR_MAXSTRSIZE];
|
2015-02-07 22:15:58 +00:00
|
|
|
|
|
|
|
/* bind, we should check for error */
|
|
|
|
tmpbindaddr.type = NETTYPE_WEBSOCKET_IPV4;
|
|
|
|
|
|
|
|
net_addr_str(&tmpbindaddr, addr_str, sizeof(addr_str), 0);
|
|
|
|
socket = websocket_create(addr_str, tmpbindaddr.port);
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(socket >= 0)
|
|
|
|
{
|
2015-02-07 22:15:58 +00:00
|
|
|
sock.type |= NETTYPE_WEBSOCKET_IPV4;
|
|
|
|
sock.web_ipv4sock = socket;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(bindaddr.type & NETTYPE_IPV6)
|
2011-03-28 18:11:28 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_in6 addr;
|
|
|
|
int socket = -1;
|
|
|
|
|
|
|
|
/* bind, we should check for error */
|
|
|
|
tmpbindaddr.type = NETTYPE_IPV6;
|
|
|
|
netaddr_to_sockaddr_in6(&tmpbindaddr, &addr);
|
|
|
|
socket = priv_net_create_socket(AF_INET6, SOCK_DGRAM, (struct sockaddr *)&addr, sizeof(addr));
|
|
|
|
if(socket >= 0)
|
|
|
|
{
|
|
|
|
sock.type |= NETTYPE_IPV6;
|
|
|
|
sock.ipv6sock = socket;
|
2011-07-06 16:20:46 +00:00
|
|
|
|
2017-10-24 11:40:35 +00:00
|
|
|
/* set broadcast */
|
2020-09-26 19:41:58 +00:00
|
|
|
if(setsockopt(socket, SOL_SOCKET, SO_BROADCAST, (const char *)&broadcast, sizeof(broadcast)) != 0)
|
|
|
|
dbg_msg("socket", "Setting BROADCAST on ipv6 failed: %d", errno);
|
2011-07-06 16:20:46 +00:00
|
|
|
|
2014-12-08 17:44:01 +00:00
|
|
|
{
|
|
|
|
/* set DSCP/TOS */
|
|
|
|
int iptos = 0x10 /* IPTOS_LOWDELAY */;
|
|
|
|
//int iptos = 46; /* High Priority */
|
2020-09-26 19:41:58 +00:00
|
|
|
if(setsockopt(socket, IPPROTO_IP, IP_TOS, (char *)&iptos, sizeof(iptos)) != 0)
|
2019-03-19 10:44:16 +00:00
|
|
|
dbg_msg("socket", "Setting TOS on ipv6 failed: %d", errno);
|
2014-12-08 17:44:01 +00:00
|
|
|
}
|
2013-02-24 16:14:55 +00:00
|
|
|
}
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
|
|
|
|
2013-02-24 16:14:55 +00:00
|
|
|
/* set non-blocking */
|
|
|
|
net_set_non_blocking(sock);
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
/* return */
|
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
int net_udp_send(NETSOCKET sock, const NETADDR *addr, const void *data, int size)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2011-03-28 18:11:28 +00:00
|
|
|
int d = -1;
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(addr->type & NETTYPE_IPV4)
|
2011-03-28 18:11:28 +00:00
|
|
|
{
|
|
|
|
if(sock.ipv4sock >= 0)
|
|
|
|
{
|
|
|
|
struct sockaddr_in sa;
|
2020-09-26 19:41:58 +00:00
|
|
|
if(addr->type & NETTYPE_LINK_BROADCAST)
|
2011-03-28 18:11:28 +00:00
|
|
|
{
|
|
|
|
mem_zero(&sa, sizeof(sa));
|
|
|
|
sa.sin_port = htons(addr->port);
|
|
|
|
sa.sin_family = AF_INET;
|
|
|
|
sa.sin_addr.s_addr = INADDR_BROADCAST;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
netaddr_to_sockaddr_in(addr, &sa);
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
d = sendto((int)sock.ipv4sock, (const char *)data, size, 0, (struct sockaddr *)&sa, sizeof(sa));
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
|
|
|
else
|
2015-06-16 19:39:22 +00:00
|
|
|
dbg_msg("net", "can't send ipv4 traffic to this socket");
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
|
|
|
|
2017-03-07 12:03:37 +00:00
|
|
|
#if defined(CONF_WEBSOCKETS)
|
2020-09-12 15:12:00 +00:00
|
|
|
if(addr->type & NETTYPE_WEBSOCKET_IPV4)
|
2015-02-07 22:15:58 +00:00
|
|
|
{
|
|
|
|
if(sock.web_ipv4sock >= 0)
|
2020-09-12 15:12:00 +00:00
|
|
|
{
|
|
|
|
char addr_str[NETADDR_MAXSTRSIZE];
|
|
|
|
str_format(addr_str, sizeof(addr_str), "%d.%d.%d.%d", addr->ip[0], addr->ip[1], addr->ip[2], addr->ip[3]);
|
|
|
|
d = websocket_send(sock.web_ipv4sock, (const unsigned char *)data, size, addr_str, addr->port);
|
|
|
|
}
|
|
|
|
|
2015-02-07 22:15:58 +00:00
|
|
|
else
|
2015-06-16 19:39:22 +00:00
|
|
|
dbg_msg("net", "can't send websocket_ipv4 traffic to this socket");
|
2015-02-07 22:15:58 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(addr->type & NETTYPE_IPV6)
|
2011-03-28 18:11:28 +00:00
|
|
|
{
|
|
|
|
if(sock.ipv6sock >= 0)
|
|
|
|
{
|
|
|
|
struct sockaddr_in6 sa;
|
2020-09-26 19:41:58 +00:00
|
|
|
if(addr->type & NETTYPE_LINK_BROADCAST)
|
2011-03-28 18:11:28 +00:00
|
|
|
{
|
|
|
|
mem_zero(&sa, sizeof(sa));
|
|
|
|
sa.sin6_port = htons(addr->port);
|
|
|
|
sa.sin6_family = AF_INET6;
|
|
|
|
sa.sin6_addr.s6_addr[0] = 0xff; /* multicast */
|
|
|
|
sa.sin6_addr.s6_addr[1] = 0x02; /* link local scope */
|
|
|
|
sa.sin6_addr.s6_addr[15] = 1; /* all nodes */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
netaddr_to_sockaddr_in6(addr, &sa);
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
d = sendto((int)sock.ipv6sock, (const char *)data, size, 0, (struct sockaddr *)&sa, sizeof(sa));
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
|
|
|
else
|
2015-06-16 19:39:22 +00:00
|
|
|
dbg_msg("net", "can't send ipv6 traffic to this socket");
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
else
|
2015-06-16 19:39:22 +00:00
|
|
|
dbg_msg("net", "can't send to network of type %d", addr->type);
|
2011-03-28 18:11:28 +00:00
|
|
|
*/
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
/*if(d < 0)
|
2008-08-17 07:05:16 +00:00
|
|
|
{
|
|
|
|
char addrstr[256];
|
|
|
|
net_addr_str(addr, addrstr, sizeof(addrstr));
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-03-28 18:11:28 +00:00
|
|
|
dbg_msg("net", "sendto error (%d '%s')", errno, strerror(errno));
|
2008-08-17 07:05:16 +00:00
|
|
|
dbg_msg("net", "\tsock = %d %x", sock, sock);
|
|
|
|
dbg_msg("net", "\tsize = %d %x", size, size);
|
|
|
|
dbg_msg("net", "\taddr = %s", addrstr);
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
}*/
|
2008-04-05 14:50:43 +00:00
|
|
|
network_stats.sent_bytes += size;
|
|
|
|
network_stats.sent_packets++;
|
2007-08-22 07:52:33 +00:00
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
void net_init_mmsgs(MMSGS *m)
|
2018-07-25 14:06:00 +00:00
|
|
|
{
|
|
|
|
#if defined(CONF_PLATFORM_LINUX)
|
2018-12-17 13:44:19 +00:00
|
|
|
int i;
|
2018-07-25 14:06:00 +00:00
|
|
|
m->pos = 0;
|
|
|
|
m->size = 0;
|
|
|
|
mem_zero(m->msgs, sizeof(m->msgs));
|
|
|
|
mem_zero(m->iovecs, sizeof(m->iovecs));
|
|
|
|
mem_zero(m->sockaddrs, sizeof(m->sockaddrs));
|
2018-12-17 13:44:19 +00:00
|
|
|
for(i = 0; i < VLEN; ++i)
|
2018-07-25 14:06:00 +00:00
|
|
|
{
|
|
|
|
m->iovecs[i].iov_base = m->bufs[i];
|
|
|
|
m->iovecs[i].iov_len = PACKETSIZE;
|
2018-12-17 19:19:57 +00:00
|
|
|
m->msgs[i].msg_hdr.msg_iov = &(m->iovecs[i]);
|
2018-07-25 14:06:00 +00:00
|
|
|
m->msgs[i].msg_hdr.msg_iovlen = 1;
|
2018-12-17 19:19:57 +00:00
|
|
|
m->msgs[i].msg_hdr.msg_name = &(m->sockaddrs[i]);
|
2018-12-17 19:49:25 +00:00
|
|
|
m->msgs[i].msg_hdr.msg_namelen = sizeof(m->sockaddrs[i]);
|
2018-07-25 14:06:00 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
int net_udp_recv(NETSOCKET sock, NETADDR *addr, void *buffer, int maxsize, MMSGS *m, unsigned char **data)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2011-03-28 18:11:28 +00:00
|
|
|
char sockaddrbuf[128];
|
|
|
|
int bytes = 0;
|
|
|
|
|
2018-07-25 14:06:00 +00:00
|
|
|
#if defined(CONF_PLATFORM_LINUX)
|
|
|
|
if(sock.ipv4sock >= 0)
|
|
|
|
{
|
|
|
|
if(m->pos >= m->size)
|
|
|
|
{
|
|
|
|
m->size = recvmmsg(sock.ipv4sock, m->msgs, VLEN, 0, NULL);
|
|
|
|
m->pos = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(sock.ipv6sock >= 0)
|
|
|
|
{
|
|
|
|
if(m->pos >= m->size)
|
|
|
|
{
|
|
|
|
m->size = recvmmsg(sock.ipv6sock, m->msgs, VLEN, 0, NULL);
|
|
|
|
m->pos = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(m->pos < m->size)
|
|
|
|
{
|
2018-12-17 19:49:25 +00:00
|
|
|
sockaddr_to_netaddr((struct sockaddr *)&(m->sockaddrs[m->pos]), addr);
|
2018-07-25 14:06:00 +00:00
|
|
|
bytes = m->msgs[m->pos].msg_len;
|
2020-09-26 19:41:58 +00:00
|
|
|
*data = (unsigned char *)m->bufs[m->pos];
|
2018-07-25 14:06:00 +00:00
|
|
|
m->pos++;
|
2021-01-09 10:48:05 +00:00
|
|
|
network_stats.recv_bytes += bytes;
|
|
|
|
network_stats.recv_packets++;
|
2018-07-25 14:06:00 +00:00
|
|
|
return bytes;
|
|
|
|
}
|
|
|
|
#else
|
2011-03-28 18:11:28 +00:00
|
|
|
if(bytes == 0 && sock.ipv4sock >= 0)
|
|
|
|
{
|
2018-12-17 16:27:36 +00:00
|
|
|
socklen_t fromlen = sizeof(struct sockaddr_in);
|
2020-09-26 19:41:58 +00:00
|
|
|
bytes = recvfrom(sock.ipv4sock, (char *)buffer, maxsize, 0, (struct sockaddr *)&sockaddrbuf, &fromlen);
|
2018-12-17 21:15:41 +00:00
|
|
|
*data = buffer;
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(bytes <= 0 && sock.ipv6sock >= 0)
|
|
|
|
{
|
2018-12-17 16:27:36 +00:00
|
|
|
socklen_t fromlen = sizeof(struct sockaddr_in6);
|
2020-09-26 19:41:58 +00:00
|
|
|
bytes = recvfrom(sock.ipv6sock, (char *)buffer, maxsize, 0, (struct sockaddr *)&sockaddrbuf, &fromlen);
|
2018-12-17 21:15:41 +00:00
|
|
|
*data = buffer;
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
2018-07-25 14:06:00 +00:00
|
|
|
#endif
|
2011-03-28 18:11:28 +00:00
|
|
|
|
2017-03-07 12:03:37 +00:00
|
|
|
#if defined(CONF_WEBSOCKETS)
|
2015-02-07 22:15:58 +00:00
|
|
|
if(bytes <= 0 && sock.web_ipv4sock >= 0)
|
|
|
|
{
|
2018-12-17 16:27:36 +00:00
|
|
|
socklen_t fromlen = sizeof(struct sockaddr);
|
2019-12-30 09:12:16 +00:00
|
|
|
struct sockaddr_in *sockaddrbuf_in = (struct sockaddr_in *)&sockaddrbuf;
|
|
|
|
bytes = websocket_recv(sock.web_ipv4sock, buffer, maxsize, sockaddrbuf_in, fromlen);
|
2018-12-17 21:15:41 +00:00
|
|
|
*data = buffer;
|
2019-12-30 09:12:16 +00:00
|
|
|
sockaddrbuf_in->sin_family = AF_WEBSOCKET_INET;
|
2015-02-07 22:15:58 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
if(bytes > 0)
|
|
|
|
{
|
2011-03-28 18:11:28 +00:00
|
|
|
sockaddr_to_netaddr((struct sockaddr *)&sockaddrbuf, addr);
|
2008-04-05 14:50:43 +00:00
|
|
|
network_stats.recv_bytes += bytes;
|
|
|
|
network_stats.recv_packets++;
|
2007-08-22 07:52:33 +00:00
|
|
|
return bytes;
|
|
|
|
}
|
|
|
|
else if(bytes == 0)
|
|
|
|
return 0;
|
|
|
|
return -1; /* error */
|
|
|
|
}
|
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
int net_udp_close(NETSOCKET sock)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2011-03-28 18:11:28 +00:00
|
|
|
return priv_net_close_all_sockets(sock);
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2011-07-06 16:20:46 +00:00
|
|
|
NETSOCKET net_tcp_create(NETADDR bindaddr)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2011-03-28 18:11:28 +00:00
|
|
|
NETSOCKET sock = invalid_socket;
|
2011-07-06 16:20:46 +00:00
|
|
|
NETADDR tmpbindaddr = bindaddr;
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(bindaddr.type & NETTYPE_IPV4)
|
2011-03-28 18:11:28 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_in addr;
|
2011-07-06 16:20:46 +00:00
|
|
|
int socket = -1;
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2011-07-06 16:20:46 +00:00
|
|
|
/* bind, we should check for error */
|
|
|
|
tmpbindaddr.type = NETTYPE_IPV4;
|
|
|
|
netaddr_to_sockaddr_in(&tmpbindaddr, &addr);
|
|
|
|
socket = priv_net_create_socket(AF_INET, SOCK_STREAM, (struct sockaddr *)&addr, sizeof(addr));
|
|
|
|
if(socket >= 0)
|
|
|
|
{
|
|
|
|
sock.type |= NETTYPE_IPV4;
|
|
|
|
sock.ipv4sock = socket;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(bindaddr.type & NETTYPE_IPV6)
|
2011-07-06 16:20:46 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_in6 addr;
|
|
|
|
int socket = -1;
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2011-03-28 18:11:28 +00:00
|
|
|
/* bind, we should check for error */
|
2011-07-06 16:20:46 +00:00
|
|
|
tmpbindaddr.type = NETTYPE_IPV6;
|
|
|
|
netaddr_to_sockaddr_in6(&tmpbindaddr, &addr);
|
|
|
|
socket = priv_net_create_socket(AF_INET6, SOCK_STREAM, (struct sockaddr *)&addr, sizeof(addr));
|
|
|
|
if(socket >= 0)
|
|
|
|
{
|
|
|
|
sock.type |= NETTYPE_IPV6;
|
|
|
|
sock.ipv6sock = socket;
|
|
|
|
}
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2011-04-13 18:37:12 +00:00
|
|
|
/* return */
|
|
|
|
return sock;
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2011-07-06 16:20:46 +00:00
|
|
|
int net_set_non_blocking(NETSOCKET sock)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2010-08-16 00:21:18 +00:00
|
|
|
unsigned long mode = 1;
|
2011-03-28 18:11:28 +00:00
|
|
|
if(sock.ipv4sock >= 0)
|
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
ioctlsocket(sock.ipv4sock, FIONBIO, (unsigned long *)&mode);
|
|
|
|
#else
|
2019-03-19 10:44:16 +00:00
|
|
|
if(ioctl(sock.ipv4sock, FIONBIO, (unsigned long *)&mode) == -1)
|
|
|
|
dbg_msg("socket", "setting ipv4 non-blocking failed: %d", errno);
|
2011-03-28 18:11:28 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if(sock.ipv6sock >= 0)
|
|
|
|
{
|
2007-08-22 07:52:33 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2011-03-28 18:11:28 +00:00
|
|
|
ioctlsocket(sock.ipv6sock, FIONBIO, (unsigned long *)&mode);
|
2007-08-22 07:52:33 +00:00
|
|
|
#else
|
2019-03-19 10:44:16 +00:00
|
|
|
if(ioctl(sock.ipv6sock, FIONBIO, (unsigned long *)&mode) == -1)
|
|
|
|
dbg_msg("socket", "setting ipv6 non-blocking failed: %d", errno);
|
2007-08-22 07:52:33 +00:00
|
|
|
#endif
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2011-07-06 16:20:46 +00:00
|
|
|
int net_set_blocking(NETSOCKET sock)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2010-08-16 00:21:18 +00:00
|
|
|
unsigned long mode = 0;
|
2011-03-28 18:11:28 +00:00
|
|
|
if(sock.ipv4sock >= 0)
|
|
|
|
{
|
2007-08-22 07:52:33 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2011-03-28 18:11:28 +00:00
|
|
|
ioctlsocket(sock.ipv4sock, FIONBIO, (unsigned long *)&mode);
|
2007-08-22 07:52:33 +00:00
|
|
|
#else
|
2019-03-19 10:44:16 +00:00
|
|
|
if(ioctl(sock.ipv4sock, FIONBIO, (unsigned long *)&mode) == -1)
|
|
|
|
dbg_msg("socket", "setting ipv4 blocking failed: %d", errno);
|
2007-08-22 07:52:33 +00:00
|
|
|
#endif
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(sock.ipv6sock >= 0)
|
|
|
|
{
|
2007-08-22 07:52:33 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2011-03-28 18:11:28 +00:00
|
|
|
ioctlsocket(sock.ipv6sock, FIONBIO, (unsigned long *)&mode);
|
2007-08-22 07:52:33 +00:00
|
|
|
#else
|
2019-03-19 10:44:16 +00:00
|
|
|
if(ioctl(sock.ipv6sock, FIONBIO, (unsigned long *)&mode) == -1)
|
|
|
|
dbg_msg("socket", "setting ipv6 blocking failed: %d", errno);
|
2007-08-22 07:52:33 +00:00
|
|
|
#endif
|
2011-03-28 18:11:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
int net_tcp_listen(NETSOCKET sock, int backlog)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2011-07-30 11:40:01 +00:00
|
|
|
int err = -1;
|
2011-03-28 18:11:28 +00:00
|
|
|
if(sock.ipv4sock >= 0)
|
2011-07-30 11:40:01 +00:00
|
|
|
err = listen(sock.ipv4sock, backlog);
|
2011-03-28 18:11:28 +00:00
|
|
|
if(sock.ipv6sock >= 0)
|
2011-07-30 11:40:01 +00:00
|
|
|
err = listen(sock.ipv6sock, backlog);
|
|
|
|
return err;
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
int net_tcp_accept(NETSOCKET sock, NETSOCKET *new_sock, NETADDR *a)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
|
|
|
int s;
|
|
|
|
socklen_t sockaddr_len;
|
|
|
|
|
2011-03-28 18:11:28 +00:00
|
|
|
*new_sock = invalid_socket;
|
|
|
|
|
|
|
|
if(sock.ipv4sock >= 0)
|
|
|
|
{
|
2011-07-30 11:40:01 +00:00
|
|
|
struct sockaddr_in addr;
|
|
|
|
sockaddr_len = sizeof(addr);
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2011-07-30 11:40:01 +00:00
|
|
|
s = accept(sock.ipv4sock, (struct sockaddr *)&addr, &sockaddr_len);
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(s != -1)
|
2011-03-28 18:11:28 +00:00
|
|
|
{
|
2011-07-30 11:40:01 +00:00
|
|
|
sockaddr_to_netaddr((const struct sockaddr *)&addr, a);
|
2011-03-28 18:11:28 +00:00
|
|
|
new_sock->type = NETTYPE_IPV4;
|
|
|
|
new_sock->ipv4sock = s;
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
}
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2011-03-28 18:11:28 +00:00
|
|
|
if(sock.ipv6sock >= 0)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2011-07-30 11:40:01 +00:00
|
|
|
struct sockaddr_in6 addr;
|
|
|
|
sockaddr_len = sizeof(addr);
|
2011-03-28 18:11:28 +00:00
|
|
|
|
2011-07-30 11:40:01 +00:00
|
|
|
s = accept(sock.ipv6sock, (struct sockaddr *)&addr, &sockaddr_len);
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(s != -1)
|
2011-03-28 18:11:28 +00:00
|
|
|
{
|
2011-07-30 11:40:01 +00:00
|
|
|
sockaddr_to_netaddr((const struct sockaddr *)&addr, a);
|
2011-03-28 18:11:28 +00:00
|
|
|
new_sock->type = NETTYPE_IPV6;
|
|
|
|
new_sock->ipv6sock = s;
|
|
|
|
return s;
|
|
|
|
}
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
2011-03-28 18:11:28 +00:00
|
|
|
|
2011-07-30 11:40:01 +00:00
|
|
|
return -1;
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
int net_tcp_connect(NETSOCKET sock, const NETADDR *a)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(a->type & NETTYPE_IPV4)
|
2011-07-06 16:20:46 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_in addr;
|
|
|
|
netaddr_to_sockaddr_in(a, &addr);
|
|
|
|
return connect(sock.ipv4sock, (struct sockaddr *)&addr, sizeof(addr));
|
|
|
|
}
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(a->type & NETTYPE_IPV6)
|
2011-07-06 16:20:46 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_in6 addr;
|
|
|
|
netaddr_to_sockaddr_in6(a, &addr);
|
|
|
|
return connect(sock.ipv6sock, (struct sockaddr *)&addr, sizeof(addr));
|
|
|
|
}
|
|
|
|
|
2011-07-30 11:40:01 +00:00
|
|
|
return -1;
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2011-07-06 16:20:46 +00:00
|
|
|
int net_tcp_connect_non_blocking(NETSOCKET sock, NETADDR bindaddr)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2011-03-28 18:11:28 +00:00
|
|
|
int res = 0;
|
2007-08-22 07:52:33 +00:00
|
|
|
|
2011-07-06 16:20:46 +00:00
|
|
|
net_set_non_blocking(sock);
|
|
|
|
res = net_tcp_connect(sock, &bindaddr);
|
|
|
|
net_set_blocking(sock);
|
2007-08-22 07:52:33 +00:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
int net_tcp_send(NETSOCKET sock, const void *data, int size)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2011-07-30 11:40:01 +00:00
|
|
|
int bytes = -1;
|
2011-07-06 16:20:46 +00:00
|
|
|
|
|
|
|
if(sock.ipv4sock >= 0)
|
2020-09-26 19:41:58 +00:00
|
|
|
bytes = send((int)sock.ipv4sock, (const char *)data, size, 0);
|
2011-07-06 16:20:46 +00:00
|
|
|
if(sock.ipv6sock >= 0)
|
2020-09-26 19:41:58 +00:00
|
|
|
bytes = send((int)sock.ipv6sock, (const char *)data, size, 0);
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2011-03-28 18:11:28 +00:00
|
|
|
return bytes;
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
int net_tcp_recv(NETSOCKET sock, void *data, int maxsize)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2011-07-30 11:40:01 +00:00
|
|
|
int bytes = -1;
|
2011-07-06 16:20:46 +00:00
|
|
|
|
|
|
|
if(sock.ipv4sock >= 0)
|
2020-09-26 19:41:58 +00:00
|
|
|
bytes = recv((int)sock.ipv4sock, (char *)data, maxsize, 0);
|
2011-07-06 16:20:46 +00:00
|
|
|
if(sock.ipv6sock >= 0)
|
2020-09-26 19:41:58 +00:00
|
|
|
bytes = recv((int)sock.ipv6sock, (char *)data, maxsize, 0);
|
2011-08-11 08:59:14 +00:00
|
|
|
|
2011-03-28 18:11:28 +00:00
|
|
|
return bytes;
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
int net_tcp_close(NETSOCKET sock)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2011-03-28 18:11:28 +00:00
|
|
|
return priv_net_close_all_sockets(sock);
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
int net_errno(void)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2011-07-30 11:40:01 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
return WSAGetLastError();
|
|
|
|
#else
|
2007-08-22 07:52:33 +00:00
|
|
|
return errno;
|
2011-07-30 11:40:01 +00:00
|
|
|
#endif
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
int net_would_block(void)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
2011-07-30 11:40:01 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
return net_errno() == WSAEWOULDBLOCK;
|
|
|
|
#else
|
2007-08-22 07:52:33 +00:00
|
|
|
return net_errno() == EWOULDBLOCK;
|
2011-07-30 11:40:01 +00:00
|
|
|
#endif
|
2007-08-22 07:52:33 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
int net_init(void)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
WSADATA wsaData;
|
|
|
|
int err = WSAStartup(MAKEWORD(1, 1), &wsaData);
|
|
|
|
dbg_assert(err == 0, "network initialization failed.");
|
2020-09-26 19:41:58 +00:00
|
|
|
return err == 0 ? 0 : 1;
|
2007-08-22 07:52:33 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-12-20 15:56:34 +00:00
|
|
|
#if defined(CONF_FAMILY_UNIX)
|
2020-04-12 17:56:11 +00:00
|
|
|
UNIXSOCKET net_unix_create_unnamed(void)
|
2017-12-20 15:56:34 +00:00
|
|
|
{
|
|
|
|
return socket(AF_UNIX, SOCK_DGRAM, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int net_unix_send(UNIXSOCKET sock, UNIXSOCKETADDR *addr, void *data, int size)
|
|
|
|
{
|
|
|
|
return sendto(sock, data, size, 0, (struct sockaddr *)addr, sizeof(struct sockaddr_un));
|
|
|
|
}
|
|
|
|
|
|
|
|
void net_unix_set_addr(UNIXSOCKETADDR *addr, const char *path)
|
|
|
|
{
|
2020-11-07 18:57:25 +00:00
|
|
|
mem_zero(addr, sizeof(*addr));
|
2017-12-20 15:56:34 +00:00
|
|
|
addr->sun_family = AF_UNIX;
|
|
|
|
str_copy(addr->sun_path, path, sizeof(addr->sun_path));
|
|
|
|
}
|
2017-12-20 15:56:44 +00:00
|
|
|
|
|
|
|
void net_unix_close(UNIXSOCKET sock)
|
|
|
|
{
|
|
|
|
close(sock);
|
|
|
|
}
|
2017-12-20 15:56:34 +00:00
|
|
|
#endif
|
|
|
|
|
2015-08-27 12:57:56 +00:00
|
|
|
int fs_listdir_info(const char *dir, FS_LISTDIR_INFO_CALLBACK cb, int type, void *user)
|
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
WIN32_FIND_DATA finddata;
|
|
|
|
HANDLE handle;
|
2020-09-26 19:41:58 +00:00
|
|
|
char buffer[1024 * 2];
|
2015-08-27 12:57:56 +00:00
|
|
|
int length;
|
|
|
|
str_format(buffer, sizeof(buffer), "%s/*", dir);
|
|
|
|
|
|
|
|
handle = FindFirstFileA(buffer, &finddata);
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(handle == INVALID_HANDLE_VALUE)
|
2015-08-27 12:57:56 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
str_format(buffer, sizeof(buffer), "%s/", dir);
|
|
|
|
length = str_length(buffer);
|
|
|
|
|
|
|
|
/* add all the entries */
|
|
|
|
do
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
str_copy(buffer + length, finddata.cFileName, (int)sizeof(buffer) - length);
|
2015-08-27 12:57:56 +00:00
|
|
|
if(cb(finddata.cFileName, fs_getmtime(buffer), fs_is_dir(buffer), type, user))
|
|
|
|
break;
|
2020-09-26 19:41:58 +00:00
|
|
|
} while(FindNextFileA(handle, &finddata));
|
2015-08-27 12:57:56 +00:00
|
|
|
|
|
|
|
FindClose(handle);
|
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
struct dirent *entry;
|
2020-09-26 19:41:58 +00:00
|
|
|
char buffer[1024 * 2];
|
2015-08-27 12:57:56 +00:00
|
|
|
int length;
|
|
|
|
DIR *d = opendir(dir);
|
|
|
|
|
|
|
|
if(!d)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
str_format(buffer, sizeof(buffer), "%s/", dir);
|
|
|
|
length = str_length(buffer);
|
|
|
|
|
|
|
|
while((entry = readdir(d)) != NULL)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
str_copy(buffer + length, entry->d_name, (int)sizeof(buffer) - length);
|
2015-08-27 12:57:56 +00:00
|
|
|
if(cb(entry->d_name, fs_getmtime(buffer), fs_is_dir(buffer), type, user))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* close the directory and return */
|
|
|
|
closedir(d);
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-09-24 11:38:03 +00:00
|
|
|
int fs_listdir(const char *dir, FS_LISTDIR_CALLBACK cb, int type, void *user)
|
2007-08-22 07:52:33 +00:00
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
WIN32_FIND_DATA finddata;
|
|
|
|
HANDLE handle;
|
2020-09-26 19:41:58 +00:00
|
|
|
char buffer[1024 * 2];
|
2010-09-28 22:53:53 +00:00
|
|
|
int length;
|
2008-02-11 21:49:26 +00:00
|
|
|
str_format(buffer, sizeof(buffer), "%s/*", dir);
|
2007-08-22 07:52:33 +00:00
|
|
|
|
|
|
|
handle = FindFirstFileA(buffer, &finddata);
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(handle == INVALID_HANDLE_VALUE)
|
2007-08-22 07:52:33 +00:00
|
|
|
return 0;
|
|
|
|
|
2010-09-28 22:53:53 +00:00
|
|
|
str_format(buffer, sizeof(buffer), "%s/", dir);
|
|
|
|
length = str_length(buffer);
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
/* add all the entries */
|
|
|
|
do
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
str_copy(buffer + length, finddata.cFileName, (int)sizeof(buffer) - length);
|
2011-02-21 10:23:30 +00:00
|
|
|
if(cb(finddata.cFileName, fs_is_dir(buffer), type, user))
|
|
|
|
break;
|
2020-09-26 19:41:58 +00:00
|
|
|
} while(FindNextFileA(handle, &finddata));
|
2007-08-22 07:52:33 +00:00
|
|
|
|
|
|
|
FindClose(handle);
|
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
struct dirent *entry;
|
2020-09-26 19:41:58 +00:00
|
|
|
char buffer[1024 * 2];
|
2010-09-28 22:53:53 +00:00
|
|
|
int length;
|
2007-08-22 07:52:33 +00:00
|
|
|
DIR *d = opendir(dir);
|
|
|
|
|
|
|
|
if(!d)
|
|
|
|
return 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-09-28 22:53:53 +00:00
|
|
|
str_format(buffer, sizeof(buffer), "%s/", dir);
|
|
|
|
length = str_length(buffer);
|
|
|
|
|
2007-08-22 07:52:33 +00:00
|
|
|
while((entry = readdir(d)) != NULL)
|
2010-09-28 22:53:53 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
str_copy(buffer + length, entry->d_name, (int)sizeof(buffer) - length);
|
2011-02-21 10:23:30 +00:00
|
|
|
if(cb(entry->d_name, fs_is_dir(buffer), type, user))
|
|
|
|
break;
|
2010-09-28 22:53:53 +00:00
|
|
|
}
|
2007-08-22 07:52:33 +00:00
|
|
|
|
|
|
|
/* close the directory and return */
|
|
|
|
closedir(d);
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
2007-09-25 19:48:52 +00:00
|
|
|
|
2007-11-08 09:11:32 +00:00
|
|
|
int fs_storage_path(const char *appname, char *path, int max)
|
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2008-05-10 17:18:56 +00:00
|
|
|
char *home = getenv("APPDATA");
|
|
|
|
if(!home)
|
2008-08-05 21:37:33 +00:00
|
|
|
return -1;
|
2007-11-18 22:06:41 +00:00
|
|
|
_snprintf(path, max, "%s/%s", home, appname);
|
|
|
|
return 0;
|
2007-11-08 09:11:32 +00:00
|
|
|
#else
|
|
|
|
char *home = getenv("HOME");
|
2021-02-12 12:40:29 +00:00
|
|
|
#if !defined(CONF_PLATFORM_MACOS)
|
2007-11-08 09:11:32 +00:00
|
|
|
int i;
|
2008-10-06 16:44:34 +00:00
|
|
|
#endif
|
2007-11-08 09:11:32 +00:00
|
|
|
if(!home)
|
2008-08-05 21:37:33 +00:00
|
|
|
return -1;
|
2007-11-18 22:06:41 +00:00
|
|
|
|
2021-04-17 15:49:41 +00:00
|
|
|
#if defined(CONF_PLATFORM_HAIKU)
|
|
|
|
str_format(path, max, "%s/config/settings/%s", home, appname);
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
|
2021-02-12 12:40:29 +00:00
|
|
|
#if defined(CONF_PLATFORM_MACOS)
|
2008-03-22 15:09:49 +00:00
|
|
|
snprintf(path, max, "%s/Library/Application Support/%s", home, appname);
|
|
|
|
#else
|
2007-11-08 09:11:32 +00:00
|
|
|
snprintf(path, max, "%s/.%s", home, appname);
|
2020-09-26 19:41:58 +00:00
|
|
|
for(i = strlen(home) + 2; path[i]; i++)
|
2020-11-04 18:07:20 +00:00
|
|
|
path[i] = tolower((unsigned char)path[i]);
|
2008-03-22 15:09:49 +00:00
|
|
|
#endif
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-08-05 21:37:33 +00:00
|
|
|
return 0;
|
2007-11-08 09:11:32 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-05-01 12:20:55 +00:00
|
|
|
int fs_makedir_rec_for(const char *path)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
char buffer[1024 * 2];
|
2016-05-01 12:20:55 +00:00
|
|
|
char *p;
|
2016-05-01 17:35:21 +00:00
|
|
|
str_copy(buffer, path, sizeof(buffer));
|
2020-09-26 19:41:58 +00:00
|
|
|
for(p = buffer + 1; *p != '\0'; p++)
|
2016-05-01 12:20:55 +00:00
|
|
|
{
|
|
|
|
if(*p == '/' && *(p + 1) != '\0')
|
|
|
|
{
|
|
|
|
*p = '\0';
|
|
|
|
if(fs_makedir(buffer) < 0)
|
|
|
|
return -1;
|
|
|
|
*p = '/';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-11-08 09:11:32 +00:00
|
|
|
int fs_makedir(const char *path)
|
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2007-11-18 22:06:41 +00:00
|
|
|
if(_mkdir(path) == 0)
|
2020-09-26 19:41:58 +00:00
|
|
|
return 0;
|
2007-11-18 22:06:41 +00:00
|
|
|
if(errno == EEXIST)
|
|
|
|
return 0;
|
2008-08-05 21:37:33 +00:00
|
|
|
return -1;
|
2007-11-08 09:11:32 +00:00
|
|
|
#else
|
2021-04-17 15:49:41 +00:00
|
|
|
#ifdef CONF_PLATFORM_HAIKU
|
|
|
|
struct stat st;
|
|
|
|
if(stat(path, &st) == 0)
|
|
|
|
return 0;
|
|
|
|
#endif
|
2007-11-08 09:11:32 +00:00
|
|
|
if(mkdir(path, 0755) == 0)
|
|
|
|
return 0;
|
|
|
|
if(errno == EEXIST)
|
|
|
|
return 0;
|
2008-08-05 21:37:33 +00:00
|
|
|
return -1;
|
2007-11-08 09:11:32 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-01 17:16:22 +00:00
|
|
|
int fs_is_dir(const char *path)
|
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
/* TODO: do this smarter */
|
|
|
|
WIN32_FIND_DATA finddata;
|
|
|
|
HANDLE handle;
|
2020-09-26 19:41:58 +00:00
|
|
|
char buffer[1024 * 2];
|
2008-10-01 17:16:22 +00:00
|
|
|
str_format(buffer, sizeof(buffer), "%s/*", path);
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if((handle = FindFirstFileA(buffer, &finddata)) == INVALID_HANDLE_VALUE)
|
2008-10-01 17:16:22 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
FindClose(handle);
|
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
struct stat sb;
|
2020-09-26 19:41:58 +00:00
|
|
|
if(stat(path, &sb) == -1)
|
2008-10-01 17:16:22 +00:00
|
|
|
return 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(S_ISDIR(sb.st_mode))
|
2008-10-01 17:16:22 +00:00
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-08-22 15:57:58 +00:00
|
|
|
time_t fs_getmtime(const char *path)
|
|
|
|
{
|
2015-08-26 13:44:25 +00:00
|
|
|
struct stat sb;
|
2020-09-26 19:41:58 +00:00
|
|
|
if(stat(path, &sb) == -1)
|
2015-08-22 15:57:58 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return sb.st_mtime;
|
|
|
|
}
|
|
|
|
|
2008-10-01 17:16:22 +00:00
|
|
|
int fs_chdir(const char *path)
|
|
|
|
{
|
2010-11-17 17:36:19 +00:00
|
|
|
if(fs_is_dir(path))
|
2008-10-01 17:16:22 +00:00
|
|
|
{
|
2010-11-17 17:36:19 +00:00
|
|
|
if(chdir(path))
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
2008-10-01 17:16:22 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-12-11 22:10:13 +00:00
|
|
|
char *fs_getcwd(char *buffer, int buffer_size)
|
|
|
|
{
|
|
|
|
if(buffer == 0)
|
|
|
|
return 0;
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
return _getcwd(buffer, buffer_size);
|
|
|
|
#else
|
|
|
|
return getcwd(buffer, buffer_size);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-10-07 21:51:07 +00:00
|
|
|
int fs_parent_dir(char *path)
|
2010-09-12 11:15:59 +00:00
|
|
|
{
|
2010-09-16 10:48:32 +00:00
|
|
|
char *parent = 0;
|
|
|
|
for(; *path; ++path)
|
2010-09-12 11:15:59 +00:00
|
|
|
{
|
2010-09-16 10:48:32 +00:00
|
|
|
if(*path == '/' || *path == '\\')
|
|
|
|
parent = path;
|
2010-09-12 11:15:59 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-09-16 10:48:32 +00:00
|
|
|
if(parent)
|
2010-10-07 21:51:07 +00:00
|
|
|
{
|
2010-09-16 10:48:32 +00:00
|
|
|
*parent = 0;
|
2010-10-07 21:51:07 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
2010-09-12 11:15:59 +00:00
|
|
|
}
|
|
|
|
|
2010-12-07 23:13:59 +00:00
|
|
|
int fs_remove(const char *filename)
|
|
|
|
{
|
|
|
|
if(remove(filename) != 0)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-12-07 23:09:18 +00:00
|
|
|
int fs_rename(const char *oldname, const char *newname)
|
2015-07-09 00:08:14 +00:00
|
|
|
{
|
2015-03-14 16:49:18 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2017-09-09 00:40:02 +00:00
|
|
|
if(MoveFileEx(oldname, newname, MOVEFILE_REPLACE_EXISTING | MOVEFILE_COPY_ALLOWED) == 0)
|
2015-03-14 16:49:18 +00:00
|
|
|
return 1;
|
|
|
|
#else
|
2010-12-07 23:09:18 +00:00
|
|
|
if(rename(oldname, newname) != 0)
|
|
|
|
return 1;
|
2015-03-14 16:49:18 +00:00
|
|
|
#endif
|
2010-12-07 23:09:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-09-25 19:48:52 +00:00
|
|
|
void swap_endian(void *data, unsigned elem_size, unsigned num)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
char *src = (char *)data;
|
2007-09-25 19:48:52 +00:00
|
|
|
char *dst = src + (elem_size - 1);
|
|
|
|
|
|
|
|
while(num)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
unsigned n = elem_size >> 1;
|
2007-09-25 19:48:52 +00:00
|
|
|
char tmp;
|
|
|
|
while(n)
|
|
|
|
{
|
|
|
|
tmp = *src;
|
|
|
|
*src = *dst;
|
|
|
|
*dst = tmp;
|
|
|
|
|
|
|
|
src++;
|
|
|
|
dst--;
|
|
|
|
n--;
|
|
|
|
}
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
src = src + (elem_size >> 1);
|
2007-09-25 19:48:52 +00:00
|
|
|
dst = src + (elem_size - 1);
|
|
|
|
num--;
|
|
|
|
}
|
|
|
|
}
|
2007-10-04 09:49:38 +00:00
|
|
|
|
2008-02-10 15:32:30 +00:00
|
|
|
int net_socket_read_wait(NETSOCKET sock, int time)
|
|
|
|
{
|
2011-04-13 18:37:12 +00:00
|
|
|
struct timeval tv;
|
|
|
|
fd_set readfds;
|
2011-03-28 18:11:28 +00:00
|
|
|
int sockid;
|
2008-02-10 15:32:30 +00:00
|
|
|
|
2014-11-11 12:00:02 +00:00
|
|
|
tv.tv_sec = time / 1000000;
|
|
|
|
tv.tv_usec = time % 1000000;
|
2011-03-28 18:11:28 +00:00
|
|
|
sockid = 0;
|
2008-02-10 15:32:30 +00:00
|
|
|
|
2011-04-13 18:37:12 +00:00
|
|
|
FD_ZERO(&readfds);
|
|
|
|
if(sock.ipv4sock >= 0)
|
2011-03-28 18:11:28 +00:00
|
|
|
{
|
|
|
|
FD_SET(sock.ipv4sock, &readfds);
|
|
|
|
sockid = sock.ipv4sock;
|
|
|
|
}
|
|
|
|
if(sock.ipv6sock >= 0)
|
|
|
|
{
|
|
|
|
FD_SET(sock.ipv6sock, &readfds);
|
|
|
|
if(sock.ipv6sock > sockid)
|
|
|
|
sockid = sock.ipv6sock;
|
|
|
|
}
|
2017-03-07 12:03:37 +00:00
|
|
|
#if defined(CONF_WEBSOCKETS)
|
2015-02-07 22:15:58 +00:00
|
|
|
if(sock.web_ipv4sock >= 0)
|
|
|
|
{
|
|
|
|
int maxfd = websocket_fd_set(sock.web_ipv4sock, &readfds);
|
2020-09-18 13:18:31 +00:00
|
|
|
if(maxfd > sockid)
|
|
|
|
{
|
2015-02-07 22:15:58 +00:00
|
|
|
sockid = maxfd;
|
2020-09-18 13:18:31 +00:00
|
|
|
FD_SET(sockid, &readfds);
|
|
|
|
}
|
2015-02-07 22:15:58 +00:00
|
|
|
}
|
|
|
|
#endif
|
2008-02-10 15:32:30 +00:00
|
|
|
|
2011-04-13 18:37:12 +00:00
|
|
|
/* don't care about writefds and exceptfds */
|
2014-01-15 15:52:22 +00:00
|
|
|
if(time < 0)
|
2020-09-26 19:41:58 +00:00
|
|
|
select(sockid + 1, &readfds, NULL, NULL, NULL);
|
2014-01-15 15:52:22 +00:00
|
|
|
else
|
2020-09-26 19:41:58 +00:00
|
|
|
select(sockid + 1, &readfds, NULL, NULL, &tv);
|
2011-03-28 18:11:28 +00:00
|
|
|
|
|
|
|
if(sock.ipv4sock >= 0 && FD_ISSET(sock.ipv4sock, &readfds))
|
|
|
|
return 1;
|
2020-09-18 13:18:31 +00:00
|
|
|
#if defined(CONF_WEBSOCKETS)
|
|
|
|
if(sock.web_ipv4sock >= 0 && FD_ISSET(sockid, &readfds))
|
|
|
|
return 1;
|
|
|
|
#endif
|
2011-03-28 18:11:28 +00:00
|
|
|
if(sock.ipv6sock >= 0 && FD_ISSET(sock.ipv6sock, &readfds))
|
|
|
|
return 1;
|
|
|
|
|
2011-04-13 18:37:12 +00:00
|
|
|
return 0;
|
2008-02-10 15:32:30 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
int time_timestamp(void)
|
2008-02-10 21:54:52 +00:00
|
|
|
{
|
|
|
|
return time(0);
|
|
|
|
}
|
|
|
|
|
2020-09-18 16:45:42 +00:00
|
|
|
int time_houroftheday(void)
|
|
|
|
{
|
|
|
|
time_t time_data;
|
|
|
|
struct tm *time_info;
|
|
|
|
|
|
|
|
time(&time_data);
|
|
|
|
time_info = localtime(&time_data);
|
|
|
|
return time_info->tm_hour;
|
|
|
|
}
|
|
|
|
|
|
|
|
int time_season(void)
|
|
|
|
{
|
|
|
|
time_t time_data;
|
|
|
|
struct tm *time_info;
|
|
|
|
|
|
|
|
time(&time_data);
|
|
|
|
time_info = localtime(&time_data);
|
|
|
|
|
2020-12-28 16:20:29 +00:00
|
|
|
if((time_info->tm_mon == 11 && time_info->tm_mday == 31) || (time_info->tm_mon == 0 && time_info->tm_mday == 1))
|
|
|
|
{
|
|
|
|
return SEASON_NEWYEAR;
|
|
|
|
}
|
|
|
|
|
2020-09-18 16:45:42 +00:00
|
|
|
switch(time_info->tm_mon)
|
|
|
|
{
|
|
|
|
case 11:
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
return SEASON_WINTER;
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
case 4:
|
|
|
|
return SEASON_SPRING;
|
|
|
|
case 5:
|
|
|
|
case 6:
|
|
|
|
case 7:
|
|
|
|
return SEASON_SUMMER;
|
|
|
|
case 8:
|
|
|
|
case 9:
|
|
|
|
case 10:
|
|
|
|
return SEASON_AUTUMN;
|
|
|
|
}
|
|
|
|
return SEASON_SPRING; // should never happen
|
|
|
|
}
|
|
|
|
|
2008-02-11 21:49:26 +00:00
|
|
|
void str_append(char *dst, const char *src, int dst_size)
|
|
|
|
{
|
|
|
|
int s = strlen(dst);
|
|
|
|
int i = 0;
|
|
|
|
while(s < dst_size)
|
|
|
|
{
|
|
|
|
dst[s] = src[i];
|
|
|
|
if(!src[i]) /* check for null termination */
|
|
|
|
break;
|
|
|
|
s++;
|
|
|
|
i++;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
dst[dst_size - 1] = 0; /* assure null termination */
|
2008-02-11 21:49:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void str_copy(char *dst, const char *src, int dst_size)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
strncpy(dst, src, dst_size - 1);
|
|
|
|
dst[dst_size - 1] = 0; /* assure null termination */
|
2008-02-11 21:49:26 +00:00
|
|
|
}
|
|
|
|
|
2020-08-02 11:45:20 +00:00
|
|
|
void str_utf8_truncate(char *dst, int dst_size, const char *src, int truncation_len)
|
2019-04-16 00:24:24 +00:00
|
|
|
{
|
2020-08-02 11:45:20 +00:00
|
|
|
int size = -1;
|
2020-08-10 16:11:51 +00:00
|
|
|
int cursor = 0;
|
|
|
|
int pos = 0;
|
|
|
|
while(pos <= truncation_len && cursor < dst_size && size != cursor)
|
|
|
|
{
|
2020-08-02 11:45:20 +00:00
|
|
|
size = cursor;
|
2020-08-10 16:11:51 +00:00
|
|
|
cursor = str_utf8_forward(src, cursor);
|
|
|
|
pos++;
|
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
str_copy(dst, src, size + 1);
|
2019-04-16 00:24:24 +00:00
|
|
|
}
|
|
|
|
|
2020-09-03 12:08:26 +00:00
|
|
|
void str_truncate(char *dst, int dst_size, const char *src, int truncation_len)
|
|
|
|
{
|
|
|
|
int size = dst_size;
|
|
|
|
if(truncation_len < size)
|
|
|
|
{
|
|
|
|
size = truncation_len + 1;
|
|
|
|
}
|
|
|
|
str_copy(dst, src, size);
|
|
|
|
}
|
|
|
|
|
2008-11-08 08:27:11 +00:00
|
|
|
int str_length(const char *str)
|
|
|
|
{
|
|
|
|
return (int)strlen(str);
|
|
|
|
}
|
|
|
|
|
2013-07-21 02:52:23 +00:00
|
|
|
int str_format(char *buffer, int buffer_size, const char *format, ...)
|
2008-02-11 21:49:26 +00:00
|
|
|
{
|
2013-07-21 02:52:23 +00:00
|
|
|
int ret;
|
2020-06-29 11:48:51 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2008-02-11 21:49:26 +00:00
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
2013-07-21 02:52:23 +00:00
|
|
|
ret = _vsnprintf(buffer, buffer_size, format, ap);
|
2020-06-29 11:48:51 +00:00
|
|
|
va_end(ap);
|
2019-03-20 18:09:23 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
buffer[buffer_size - 1] = 0; /* assure null termination */
|
2019-03-20 18:09:23 +00:00
|
|
|
|
|
|
|
/* _vsnprintf is documented to return negative values on truncation, but
|
|
|
|
* in practice we didn't see that. let's handle it anyway just in case. */
|
|
|
|
if(ret < 0)
|
|
|
|
ret = buffer_size - 1;
|
2008-02-11 21:49:26 +00:00
|
|
|
#else
|
2020-06-29 11:48:51 +00:00
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
2013-07-21 02:52:23 +00:00
|
|
|
ret = vsnprintf(buffer, buffer_size, format, ap);
|
2011-04-13 18:37:12 +00:00
|
|
|
va_end(ap);
|
2019-03-20 18:09:23 +00:00
|
|
|
|
|
|
|
/* null termination is assured by definition of vsnprintf */
|
2020-06-29 11:48:51 +00:00
|
|
|
#endif
|
2008-02-11 21:49:26 +00:00
|
|
|
|
2019-03-20 18:09:23 +00:00
|
|
|
/* a return value of buffer_size or more indicates truncated output */
|
|
|
|
if(ret >= buffer_size)
|
|
|
|
ret = buffer_size - 1;
|
|
|
|
|
2013-07-21 02:52:23 +00:00
|
|
|
return ret;
|
2008-02-11 21:49:26 +00:00
|
|
|
}
|
|
|
|
|
2015-02-19 21:54:47 +00:00
|
|
|
char *str_trim_words(char *str, int words)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
while(words && *str)
|
2015-07-09 00:00:40 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(isspace(*str) && !isspace(*(str + 1)))
|
2015-07-09 00:00:40 +00:00
|
|
|
words--;
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
return str;
|
2015-02-19 21:54:47 +00:00
|
|
|
}
|
|
|
|
|
2010-08-12 13:22:07 +00:00
|
|
|
/* makes sure that the string only contains the characters between 32 and 255 */
|
|
|
|
void str_sanitize_cc(char *str_in)
|
|
|
|
{
|
|
|
|
unsigned char *str = (unsigned char *)str_in;
|
|
|
|
while(*str)
|
|
|
|
{
|
|
|
|
if(*str < 32)
|
|
|
|
*str = ' ';
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-24 16:03:58 +00:00
|
|
|
/* makes sure that the string only contains the characters between 32 and 255 + \r\n\t */
|
2008-03-17 01:22:25 +00:00
|
|
|
void str_sanitize(char *str_in)
|
2008-02-24 16:03:58 +00:00
|
|
|
{
|
2008-03-17 01:22:25 +00:00
|
|
|
unsigned char *str = (unsigned char *)str_in;
|
2008-02-24 16:03:58 +00:00
|
|
|
while(*str)
|
|
|
|
{
|
|
|
|
if(*str < 32 && !(*str == '\r') && !(*str == '\n') && !(*str == '\t'))
|
|
|
|
*str = ' ';
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-28 13:59:30 +00:00
|
|
|
void str_sanitize_filename(char *str_in)
|
|
|
|
{
|
|
|
|
unsigned char *str = (unsigned char *)str_in;
|
|
|
|
while(*str)
|
|
|
|
{
|
|
|
|
if(*str < 32 || *str == '\\' || *str == '/' || *str == '|' || *str == ':' || *str == '*' || *str == '?' || *str == '<' || *str == '>' || *str == '"')
|
|
|
|
*str = ' ';
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-04 14:44:04 +00:00
|
|
|
/* removes leading and trailing spaces and limits the use of multiple spaces */
|
|
|
|
void str_clean_whitespaces(char *str_in)
|
|
|
|
{
|
2014-02-28 22:14:18 +00:00
|
|
|
char *read = str_in;
|
|
|
|
char *write = str_in;
|
|
|
|
|
|
|
|
/* skip initial whitespace */
|
|
|
|
while(*read == ' ')
|
|
|
|
read++;
|
|
|
|
|
|
|
|
/* end of read string is detected in the loop */
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
/* skip whitespace */
|
|
|
|
int found_whitespace = 0;
|
|
|
|
for(; *read == ' '; read++)
|
|
|
|
found_whitespace = 1;
|
|
|
|
/* if not at the end of the string, put a found whitespace here */
|
|
|
|
if(*read)
|
2013-09-04 14:44:04 +00:00
|
|
|
{
|
2014-02-28 22:14:18 +00:00
|
|
|
if(found_whitespace)
|
|
|
|
*write++ = ' ';
|
|
|
|
*write++ = *read++;
|
|
|
|
}
|
2013-09-08 11:09:41 +00:00
|
|
|
else
|
2014-02-28 22:14:18 +00:00
|
|
|
{
|
|
|
|
*write = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-09-04 14:44:04 +00:00
|
|
|
}
|
|
|
|
|
2010-10-25 16:41:15 +00:00
|
|
|
char *str_skip_to_whitespace(char *str)
|
|
|
|
{
|
|
|
|
while(*str && (*str != ' ' && *str != '\t' && *str != '\n'))
|
|
|
|
str++;
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2020-02-04 16:30:36 +00:00
|
|
|
const char *str_skip_to_whitespace_const(const char *str)
|
|
|
|
{
|
|
|
|
while(*str && (*str != ' ' && *str != '\t' && *str != '\n'))
|
|
|
|
str++;
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2010-08-12 13:22:07 +00:00
|
|
|
char *str_skip_whitespaces(char *str)
|
|
|
|
{
|
|
|
|
while(*str && (*str == ' ' || *str == '\t' || *str == '\n' || *str == '\r'))
|
|
|
|
str++;
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2020-02-04 16:30:36 +00:00
|
|
|
const char *str_skip_whitespaces_const(const char *str)
|
|
|
|
{
|
|
|
|
while(*str && (*str == ' ' || *str == '\t' || *str == '\n' || *str == '\r'))
|
|
|
|
str++;
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2008-03-29 17:20:21 +00:00
|
|
|
/* case */
|
|
|
|
int str_comp_nocase(const char *a, const char *b)
|
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2020-09-26 19:41:58 +00:00
|
|
|
return _stricmp(a, b);
|
2008-03-29 17:20:21 +00:00
|
|
|
#else
|
2020-09-26 19:41:58 +00:00
|
|
|
return strcasecmp(a, b);
|
2008-03-29 17:20:21 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-01-07 22:49:20 +00:00
|
|
|
int str_comp_nocase_num(const char *a, const char *b, int num)
|
2011-06-09 21:28:20 +00:00
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
return _strnicmp(a, b, num);
|
|
|
|
#else
|
|
|
|
return strncasecmp(a, b, num);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-06-13 16:54:04 +00:00
|
|
|
int str_comp(const char *a, const char *b)
|
|
|
|
{
|
|
|
|
return strcmp(a, b);
|
|
|
|
}
|
|
|
|
|
2019-01-07 22:49:20 +00:00
|
|
|
int str_comp_num(const char *a, const char *b, int num)
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
|
|
|
return strncmp(a, b, num);
|
|
|
|
}
|
2009-06-13 16:54:04 +00:00
|
|
|
|
2010-09-28 22:53:53 +00:00
|
|
|
int str_comp_filenames(const char *a, const char *b)
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
|
|
|
|
for(; *a && *b; ++a, ++b)
|
|
|
|
{
|
|
|
|
if(*a >= '0' && *a <= '9' && *b >= '0' && *b <= '9')
|
|
|
|
{
|
|
|
|
result = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if(!result)
|
|
|
|
result = *a - *b;
|
2020-09-26 19:41:58 +00:00
|
|
|
++a;
|
|
|
|
++b;
|
|
|
|
} while(*a >= '0' && *a <= '9' && *b >= '0' && *b <= '9');
|
2010-09-28 22:53:53 +00:00
|
|
|
|
|
|
|
if(*a >= '0' && *a <= '9')
|
|
|
|
return 1;
|
|
|
|
else if(*b >= '0' && *b <= '9')
|
|
|
|
return -1;
|
|
|
|
else if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(*a != *b)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return *a - *b;
|
|
|
|
}
|
|
|
|
|
2018-07-25 08:23:07 +00:00
|
|
|
const char *str_startswith(const char *str, const char *prefix)
|
|
|
|
{
|
|
|
|
int prefixl = str_length(prefix);
|
|
|
|
if(str_comp_num(str, prefix, prefixl) == 0)
|
|
|
|
{
|
|
|
|
return str + prefixl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-26 12:04:44 +00:00
|
|
|
const char *str_endswith(const char *str, const char *suffix)
|
2018-07-25 08:23:07 +00:00
|
|
|
{
|
|
|
|
int strl = str_length(str);
|
|
|
|
int suffixl = str_length(suffix);
|
2018-07-26 12:04:44 +00:00
|
|
|
const char *strsuffix;
|
2018-07-25 08:23:07 +00:00
|
|
|
if(strl < suffixl)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2018-07-26 12:04:44 +00:00
|
|
|
strsuffix = str + strl - suffixl;
|
|
|
|
if(str_comp(strsuffix, suffix) == 0)
|
|
|
|
{
|
|
|
|
return strsuffix;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2018-07-25 08:23:07 +00:00
|
|
|
}
|
|
|
|
|
2018-03-06 17:41:18 +00:00
|
|
|
static int min3(int a, int b, int c)
|
|
|
|
{
|
|
|
|
int min = a;
|
|
|
|
if(b < min)
|
|
|
|
min = b;
|
|
|
|
if(c < min)
|
|
|
|
min = c;
|
|
|
|
return min;
|
|
|
|
}
|
|
|
|
|
|
|
|
int str_utf8_dist(const char *a, const char *b)
|
|
|
|
{
|
|
|
|
int buf_len = 2 * (str_length(a) + 1 + str_length(b) + 1);
|
2018-04-09 09:56:39 +00:00
|
|
|
int *buf = (int *)calloc(buf_len, sizeof(*buf));
|
2018-03-06 17:41:18 +00:00
|
|
|
int result = str_utf8_dist_buffer(a, b, buf, buf_len);
|
2018-04-09 09:56:39 +00:00
|
|
|
free(buf);
|
2018-03-06 17:41:18 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int str_to_utf32_unchecked(const char *str, int **out)
|
|
|
|
{
|
|
|
|
int out_len = 0;
|
|
|
|
while((**out = str_utf8_decode(&str)))
|
|
|
|
{
|
|
|
|
(*out)++;
|
|
|
|
out_len++;
|
|
|
|
}
|
|
|
|
return out_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
int str_utf32_dist_buffer(const int *a, int a_len, const int *b, int b_len, int *buf, int buf_len)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
dbg_assert(buf_len >= (a_len + 1) + (b_len + 1), "buffer too small");
|
|
|
|
if(a_len > b_len)
|
|
|
|
{
|
|
|
|
int tmp1 = a_len;
|
|
|
|
const int *tmp2 = a;
|
|
|
|
|
|
|
|
a_len = b_len;
|
|
|
|
a = b;
|
|
|
|
|
|
|
|
b_len = tmp1;
|
|
|
|
b = tmp2;
|
|
|
|
}
|
|
|
|
#define B(i, j) buf[((j)&1) * (a_len + 1) + (i)]
|
|
|
|
for(i = 0; i <= a_len; i++)
|
|
|
|
{
|
|
|
|
B(i, 0) = i;
|
|
|
|
}
|
|
|
|
for(j = 1; j <= b_len; j++)
|
|
|
|
{
|
|
|
|
B(0, j) = j;
|
|
|
|
for(i = 1; i <= a_len; i++)
|
|
|
|
{
|
|
|
|
int subst = (a[i - 1] != b[j - 1]);
|
|
|
|
B(i, j) = min3(
|
|
|
|
B(i - 1, j) + 1,
|
|
|
|
B(i, j - 1) + 1,
|
2020-09-26 19:41:58 +00:00
|
|
|
B(i - 1, j - 1) + subst);
|
2018-03-06 17:41:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return B(a_len, b_len);
|
|
|
|
#undef B
|
|
|
|
}
|
|
|
|
|
|
|
|
int str_utf8_dist_buffer(const char *a_utf8, const char *b_utf8, int *buf, int buf_len)
|
|
|
|
{
|
|
|
|
int a_utf8_len = str_length(a_utf8);
|
|
|
|
int b_utf8_len = str_length(b_utf8);
|
|
|
|
int *a, *b; // UTF-32
|
|
|
|
int a_len, b_len; // UTF-32 length
|
|
|
|
dbg_assert(buf_len >= 2 * (a_utf8_len + 1 + b_utf8_len + 1), "buffer too small");
|
|
|
|
if(a_utf8_len > b_utf8_len)
|
|
|
|
{
|
|
|
|
const char *tmp2 = a_utf8;
|
|
|
|
a_utf8 = b_utf8;
|
|
|
|
b_utf8 = tmp2;
|
|
|
|
}
|
|
|
|
a = buf;
|
|
|
|
a_len = str_to_utf32_unchecked(a_utf8, &buf);
|
|
|
|
b = buf;
|
|
|
|
b_len = str_to_utf32_unchecked(b_utf8, &buf);
|
|
|
|
return str_utf32_dist_buffer(a, a_len, b, b_len, buf, buf_len - b_len - a_len);
|
|
|
|
}
|
|
|
|
|
2008-03-29 17:20:21 +00:00
|
|
|
const char *str_find_nocase(const char *haystack, const char *needle)
|
|
|
|
{
|
|
|
|
while(*haystack) /* native implementation */
|
|
|
|
{
|
|
|
|
const char *a = haystack;
|
|
|
|
const char *b = needle;
|
2020-11-04 18:07:20 +00:00
|
|
|
while(*a && *b && tolower((unsigned char)*a) == tolower((unsigned char)*b))
|
2008-03-29 17:20:21 +00:00
|
|
|
{
|
|
|
|
a++;
|
|
|
|
b++;
|
|
|
|
}
|
|
|
|
if(!(*b))
|
|
|
|
return haystack;
|
2009-06-13 16:54:04 +00:00
|
|
|
haystack++;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2009-06-13 16:54:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *str_find(const char *haystack, const char *needle)
|
|
|
|
{
|
|
|
|
while(*haystack) /* native implementation */
|
|
|
|
{
|
|
|
|
const char *a = haystack;
|
|
|
|
const char *b = needle;
|
|
|
|
while(*a && *b && *a == *b)
|
|
|
|
{
|
|
|
|
a++;
|
|
|
|
b++;
|
|
|
|
}
|
|
|
|
if(!(*b))
|
|
|
|
return haystack;
|
2008-03-29 17:20:21 +00:00
|
|
|
haystack++;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-03-29 17:20:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-04-16 00:24:24 +00:00
|
|
|
const char *str_rchr(const char *haystack, char needle)
|
|
|
|
{
|
|
|
|
return strrchr(haystack, needle);
|
|
|
|
}
|
|
|
|
|
2008-04-05 14:50:43 +00:00
|
|
|
void str_hex(char *dst, int dst_size, const void *data, int data_size)
|
|
|
|
{
|
|
|
|
static const char hex[] = "0123456789ABCDEF";
|
|
|
|
int b;
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
for(b = 0; b < data_size && b < dst_size / 4 - 4; b++)
|
2008-04-05 14:50:43 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
dst[b * 3] = hex[((const unsigned char *)data)[b] >> 4];
|
|
|
|
dst[b * 3 + 1] = hex[((const unsigned char *)data)[b] & 0xf];
|
|
|
|
dst[b * 3 + 2] = ' ';
|
|
|
|
dst[b * 3 + 3] = 0;
|
2008-04-05 14:50:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-02 15:16:29 +00:00
|
|
|
static int hexval(char x)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
switch(x)
|
|
|
|
{
|
|
|
|
case '0': return 0;
|
|
|
|
case '1': return 1;
|
|
|
|
case '2': return 2;
|
|
|
|
case '3': return 3;
|
|
|
|
case '4': return 4;
|
|
|
|
case '5': return 5;
|
|
|
|
case '6': return 6;
|
|
|
|
case '7': return 7;
|
|
|
|
case '8': return 8;
|
|
|
|
case '9': return 9;
|
|
|
|
case 'a':
|
|
|
|
case 'A': return 10;
|
|
|
|
case 'b':
|
|
|
|
case 'B': return 11;
|
|
|
|
case 'c':
|
|
|
|
case 'C': return 12;
|
|
|
|
case 'd':
|
|
|
|
case 'D': return 13;
|
|
|
|
case 'e':
|
|
|
|
case 'E': return 14;
|
|
|
|
case 'f':
|
|
|
|
case 'F': return 15;
|
|
|
|
default: return -1;
|
|
|
|
}
|
2017-03-02 15:16:29 +00:00
|
|
|
}
|
|
|
|
|
2017-03-06 11:33:29 +00:00
|
|
|
static int byteval(const char *byte, unsigned char *dst)
|
2017-03-02 15:16:29 +00:00
|
|
|
{
|
2017-03-06 11:33:29 +00:00
|
|
|
int v1 = -1, v2 = -1;
|
|
|
|
v1 = hexval(byte[0]);
|
|
|
|
v2 = hexval(byte[1]);
|
|
|
|
|
|
|
|
if(v1 < 0 || v2 < 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
*dst = v1 * 16 + v2;
|
|
|
|
return 0;
|
2017-03-02 15:16:29 +00:00
|
|
|
}
|
|
|
|
|
2018-08-19 10:12:11 +00:00
|
|
|
int str_hex_decode(void *dst, int dst_size, const char *src)
|
2017-03-02 15:16:29 +00:00
|
|
|
{
|
2018-08-19 10:12:11 +00:00
|
|
|
unsigned char *cdst = dst;
|
|
|
|
int slen = str_length(src);
|
|
|
|
int len = slen / 2;
|
2017-03-06 19:11:23 +00:00
|
|
|
int i;
|
2018-08-19 10:12:11 +00:00
|
|
|
if(slen != dst_size * 2)
|
2017-03-06 14:18:52 +00:00
|
|
|
return 2;
|
2017-03-06 11:58:49 +00:00
|
|
|
|
2017-03-06 19:11:23 +00:00
|
|
|
for(i = 0; i < len && dst_size; i++, dst_size--)
|
2017-03-04 20:06:07 +00:00
|
|
|
{
|
2018-08-19 10:12:11 +00:00
|
|
|
if(byteval(src + i * 2, cdst++))
|
2017-03-06 11:58:49 +00:00
|
|
|
return 1;
|
2017-03-04 20:06:07 +00:00
|
|
|
}
|
|
|
|
return 0;
|
2017-03-02 15:16:29 +00:00
|
|
|
}
|
|
|
|
|
2017-07-30 10:35:54 +00:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wformat-nonliteral"
|
|
|
|
#endif
|
2015-08-27 12:57:56 +00:00
|
|
|
void str_timestamp_ex(time_t time_data, char *buffer, int buffer_size, const char *format)
|
2010-12-07 23:26:55 +00:00
|
|
|
{
|
|
|
|
struct tm *time_info;
|
|
|
|
time_info = localtime(&time_data);
|
2015-08-27 12:57:56 +00:00
|
|
|
strftime(buffer, buffer_size, format, time_info);
|
2020-09-26 19:41:58 +00:00
|
|
|
buffer[buffer_size - 1] = 0; /* assure null termination */
|
2010-12-07 23:26:55 +00:00
|
|
|
}
|
|
|
|
|
2017-08-04 20:38:22 +00:00
|
|
|
void str_timestamp_format(char *buffer, int buffer_size, const char *format)
|
2015-08-27 12:57:56 +00:00
|
|
|
{
|
|
|
|
time_t time_data;
|
|
|
|
time(&time_data);
|
2017-08-04 20:38:22 +00:00
|
|
|
str_timestamp_ex(time_data, buffer, buffer_size, format);
|
2015-08-27 12:57:56 +00:00
|
|
|
}
|
|
|
|
|
2017-08-04 20:38:22 +00:00
|
|
|
void str_timestamp(char *buffer, int buffer_size)
|
|
|
|
{
|
|
|
|
str_timestamp_format(buffer, buffer_size, FORMAT_NOSPACE);
|
|
|
|
}
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
#endif
|
|
|
|
|
2020-10-18 20:44:02 +00:00
|
|
|
int str_time(int64 centisecs, int format, char *buffer, int buffer_size)
|
|
|
|
{
|
|
|
|
const int sec = 100;
|
|
|
|
const int min = 60 * sec;
|
|
|
|
const int hour = 60 * min;
|
|
|
|
const int day = 24 * hour;
|
|
|
|
|
|
|
|
if(buffer_size <= 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if(centisecs < 0)
|
|
|
|
centisecs = 0;
|
|
|
|
|
|
|
|
buffer[0] = 0;
|
|
|
|
|
|
|
|
switch(format)
|
|
|
|
{
|
|
|
|
case TIME_DAYS:
|
|
|
|
if(centisecs >= day)
|
|
|
|
return str_format(buffer, buffer_size, "%lldd %02lld:%02lld:%02lld", centisecs / day,
|
|
|
|
(centisecs % day) / hour, (centisecs % hour) / min, (centisecs % min) / sec);
|
|
|
|
// fall through
|
|
|
|
case TIME_HOURS:
|
|
|
|
if(centisecs >= hour)
|
|
|
|
return str_format(buffer, buffer_size, "%02lld:%02lld:%02lld", centisecs / hour,
|
|
|
|
(centisecs % hour) / min, (centisecs % min) / sec);
|
|
|
|
// fall through
|
|
|
|
case TIME_MINS:
|
|
|
|
return str_format(buffer, buffer_size, "%02lld:%02lld", centisecs / min,
|
|
|
|
(centisecs % min) / sec);
|
|
|
|
case TIME_HOURS_CENTISECS:
|
|
|
|
if(centisecs >= hour)
|
|
|
|
return str_format(buffer, buffer_size, "%02lld:%02lld:%02lld.%02lld", centisecs / hour,
|
|
|
|
(centisecs % hour) / min, (centisecs % min) / sec, centisecs % sec);
|
|
|
|
// fall through
|
|
|
|
case TIME_MINS_CENTISECS:
|
|
|
|
return str_format(buffer, buffer_size, "%02lld:%02lld.%02lld", centisecs / min,
|
|
|
|
(centisecs % min) / sec, centisecs % sec);
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int str_time_float(float secs, int format, char *buffer, int buffer_size)
|
|
|
|
{
|
2021-01-08 10:21:37 +00:00
|
|
|
return str_time(llroundf(secs * 100.0), format, buffer, buffer_size);
|
2020-10-18 20:44:02 +00:00
|
|
|
}
|
|
|
|
|
2017-07-08 09:03:51 +00:00
|
|
|
void str_escape(char **dst, const char *src, const char *end)
|
|
|
|
{
|
2017-07-08 11:06:03 +00:00
|
|
|
while(*src && *dst + 1 < end)
|
2017-07-08 09:03:51 +00:00
|
|
|
{
|
|
|
|
if(*src == '"' || *src == '\\') // escape \ and "
|
2017-07-08 11:06:03 +00:00
|
|
|
{
|
|
|
|
if(*dst + 2 < end)
|
|
|
|
*(*dst)++ = '\\';
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2017-07-08 09:03:51 +00:00
|
|
|
*(*dst)++ = *src++;
|
|
|
|
}
|
2017-07-08 11:06:03 +00:00
|
|
|
**dst = 0;
|
2017-07-08 09:03:51 +00:00
|
|
|
}
|
|
|
|
|
2008-07-06 11:21:21 +00:00
|
|
|
int mem_comp(const void *a, const void *b, int size)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
return memcmp(a, b, size);
|
2008-07-06 11:21:21 +00:00
|
|
|
}
|
|
|
|
|
2008-04-05 14:50:43 +00:00
|
|
|
void net_stats(NETSTATS *stats_inout)
|
|
|
|
{
|
|
|
|
*stats_inout = network_stats;
|
|
|
|
}
|
|
|
|
|
2008-11-08 08:27:11 +00:00
|
|
|
int str_isspace(char c) { return c == ' ' || c == '\n' || c == '\t'; }
|
2008-09-30 15:52:15 +00:00
|
|
|
|
2009-06-15 08:15:53 +00:00
|
|
|
char str_uppercase(char c)
|
|
|
|
{
|
|
|
|
if(c >= 'a' && c <= 'z')
|
2020-09-26 19:41:58 +00:00
|
|
|
return 'A' + (c - 'a');
|
2009-06-15 08:15:53 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2019-02-27 19:24:31 +00:00
|
|
|
int str_isallnum(const char *str)
|
|
|
|
{
|
|
|
|
while(*str)
|
|
|
|
{
|
|
|
|
if(!(*str >= '0' && *str <= '9'))
|
|
|
|
return 0;
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
int str_toint(const char *str) { return atoi(str); }
|
2015-08-20 10:51:30 +00:00
|
|
|
int str_toint_base(const char *str, int base) { return strtol(str, NULL, base); }
|
2019-05-15 16:11:22 +00:00
|
|
|
unsigned long str_toulong_base(const char *str, int base) { return strtoul(str, NULL, base); }
|
2010-05-29 07:25:38 +00:00
|
|
|
float str_tofloat(const char *str) { return atof(str); }
|
|
|
|
|
2019-01-07 22:49:20 +00:00
|
|
|
int str_utf8_comp_nocase(const char *a, const char *b)
|
|
|
|
{
|
|
|
|
int code_a;
|
|
|
|
int code_b;
|
|
|
|
|
|
|
|
while(*a && *b)
|
|
|
|
{
|
|
|
|
code_a = str_utf8_tolower(str_utf8_decode(&a));
|
|
|
|
code_b = str_utf8_tolower(str_utf8_decode(&b));
|
|
|
|
|
|
|
|
if(code_a != code_b)
|
|
|
|
return code_a - code_b;
|
|
|
|
}
|
|
|
|
return (unsigned char)*a - (unsigned char)*b;
|
|
|
|
}
|
|
|
|
|
|
|
|
int str_utf8_comp_nocase_num(const char *a, const char *b, int num)
|
|
|
|
{
|
|
|
|
int code_a;
|
|
|
|
int code_b;
|
|
|
|
const char *old_a = a;
|
|
|
|
|
2019-02-10 18:20:08 +00:00
|
|
|
if(num <= 0)
|
|
|
|
return 0;
|
|
|
|
|
2019-01-07 22:49:20 +00:00
|
|
|
while(*a && *b)
|
|
|
|
{
|
|
|
|
code_a = str_utf8_tolower(str_utf8_decode(&a));
|
|
|
|
code_b = str_utf8_tolower(str_utf8_decode(&b));
|
|
|
|
|
|
|
|
if(code_a != code_b)
|
|
|
|
return code_a - code_b;
|
2019-02-10 16:43:00 +00:00
|
|
|
|
|
|
|
if(a - old_a >= num)
|
|
|
|
return 0;
|
2019-01-07 22:49:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (unsigned char)*a - (unsigned char)*b;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *str_utf8_find_nocase(const char *haystack, const char *needle)
|
|
|
|
{
|
|
|
|
while(*haystack) /* native implementation */
|
|
|
|
{
|
|
|
|
const char *a = haystack;
|
|
|
|
const char *b = needle;
|
|
|
|
const char *a_next = a;
|
|
|
|
const char *b_next = b;
|
|
|
|
while(*a && *b && str_utf8_tolower(str_utf8_decode(&a_next)) == str_utf8_tolower(str_utf8_decode(&b_next)))
|
|
|
|
{
|
|
|
|
a = a_next;
|
|
|
|
b = b_next;
|
|
|
|
}
|
|
|
|
if(!(*b))
|
|
|
|
return haystack;
|
|
|
|
str_utf8_decode(&haystack);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2008-09-30 15:52:15 +00:00
|
|
|
|
2014-11-08 19:14:12 +00:00
|
|
|
int str_utf8_isspace(int code)
|
|
|
|
{
|
2021-04-01 16:31:55 +00:00
|
|
|
return code <= 0x0020 || code == 0x0085 || code == 0x00A0 || code == 0x034F ||
|
|
|
|
code == 0x115F || code == 0x1160 || code == 0x1680 || code == 0x180E ||
|
2020-09-26 19:41:58 +00:00
|
|
|
(code >= 0x2000 && code <= 0x200F) || (code >= 0x2028 && code <= 0x202F) ||
|
|
|
|
(code >= 0x205F && code <= 0x2064) || (code >= 0x206A && code <= 0x206F) ||
|
2020-10-25 09:17:55 +00:00
|
|
|
code == 0x2800 || code == 0x3000 || code == 0x3164 ||
|
|
|
|
(code >= 0xFE00 && code <= 0xFE0F) || code == 0xFEFF || code == 0xFFA0 ||
|
2020-09-26 19:41:58 +00:00
|
|
|
(code >= 0xFFF9 && code <= 0xFFFC);
|
2014-11-08 19:14:12 +00:00
|
|
|
}
|
|
|
|
|
2013-04-26 15:10:05 +00:00
|
|
|
const char *str_utf8_skip_whitespaces(const char *str)
|
2013-04-01 18:30:58 +00:00
|
|
|
{
|
2013-04-26 15:10:05 +00:00
|
|
|
const char *str_old;
|
2013-04-01 18:30:58 +00:00
|
|
|
int code;
|
|
|
|
|
|
|
|
while(*str)
|
|
|
|
{
|
|
|
|
str_old = str;
|
|
|
|
code = str_utf8_decode(&str);
|
|
|
|
|
|
|
|
// check if unicode is not empty
|
2018-03-14 01:27:15 +00:00
|
|
|
if(!str_utf8_isspace(code))
|
2013-04-01 18:30:58 +00:00
|
|
|
{
|
|
|
|
return str_old;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
2009-06-13 08:22:37 +00:00
|
|
|
|
2018-03-14 01:27:15 +00:00
|
|
|
void str_utf8_trim_right(char *param)
|
|
|
|
{
|
|
|
|
const char *str = param;
|
|
|
|
char *end = 0;
|
|
|
|
while(*str)
|
|
|
|
{
|
|
|
|
char *str_old = (char *)str;
|
|
|
|
int code = str_utf8_decode(&str);
|
|
|
|
|
|
|
|
// check if unicode is not empty
|
|
|
|
if(!str_utf8_isspace(code))
|
|
|
|
{
|
|
|
|
end = 0;
|
|
|
|
}
|
|
|
|
else if(!end)
|
|
|
|
{
|
|
|
|
end = str_old;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(end)
|
|
|
|
{
|
|
|
|
*end = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-11 17:26:57 +00:00
|
|
|
int str_utf8_isstart(char c)
|
2009-06-13 08:22:37 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if((c & 0xC0) == 0x80) /* 10xxxxxx */
|
2009-06-13 08:22:37 +00:00
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int str_utf8_rewind(const char *str, int cursor)
|
|
|
|
{
|
|
|
|
while(cursor)
|
|
|
|
{
|
|
|
|
cursor--;
|
|
|
|
if(str_utf8_isstart(*(str + cursor)))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return cursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
int str_utf8_forward(const char *str, int cursor)
|
|
|
|
{
|
|
|
|
const char *buf = str + cursor;
|
|
|
|
if(!buf[0])
|
|
|
|
return cursor;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if((*buf & 0x80) == 0x0) /* 0xxxxxxx */
|
|
|
|
return cursor + 1;
|
|
|
|
else if((*buf & 0xE0) == 0xC0) /* 110xxxxx */
|
2009-06-13 08:22:37 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(!buf[1])
|
|
|
|
return cursor + 1;
|
|
|
|
return cursor + 2;
|
2009-06-13 08:22:37 +00:00
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
else if((*buf & 0xF0) == 0xE0) /* 1110xxxx */
|
2009-06-13 08:22:37 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(!buf[1])
|
|
|
|
return cursor + 1;
|
|
|
|
if(!buf[2])
|
|
|
|
return cursor + 2;
|
|
|
|
return cursor + 3;
|
2009-06-13 08:22:37 +00:00
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
else if((*buf & 0xF8) == 0xF0) /* 11110xxx */
|
2009-06-13 08:22:37 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(!buf[1])
|
|
|
|
return cursor + 1;
|
|
|
|
if(!buf[2])
|
|
|
|
return cursor + 2;
|
|
|
|
if(!buf[3])
|
|
|
|
return cursor + 3;
|
|
|
|
return cursor + 4;
|
2009-06-13 08:22:37 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2009-06-13 08:22:37 +00:00
|
|
|
/* invalid */
|
2020-09-26 19:41:58 +00:00
|
|
|
return cursor + 1;
|
2009-06-13 08:22:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int str_utf8_encode(char *ptr, int chr)
|
|
|
|
{
|
|
|
|
/* encode */
|
|
|
|
if(chr <= 0x7F)
|
|
|
|
{
|
|
|
|
ptr[0] = (char)chr;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if(chr <= 0x7FF)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
ptr[0] = 0xC0 | ((chr >> 6) & 0x1F);
|
|
|
|
ptr[1] = 0x80 | (chr & 0x3F);
|
2009-06-13 08:22:37 +00:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
else if(chr <= 0xFFFF)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
ptr[0] = 0xE0 | ((chr >> 12) & 0x0F);
|
|
|
|
ptr[1] = 0x80 | ((chr >> 6) & 0x3F);
|
|
|
|
ptr[2] = 0x80 | (chr & 0x3F);
|
2009-06-13 08:22:37 +00:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
else if(chr <= 0x10FFFF)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
ptr[0] = 0xF0 | ((chr >> 18) & 0x07);
|
|
|
|
ptr[1] = 0x80 | ((chr >> 12) & 0x3F);
|
|
|
|
ptr[2] = 0x80 | ((chr >> 6) & 0x3F);
|
|
|
|
ptr[3] = 0x80 | (chr & 0x3F);
|
2009-06-13 08:22:37 +00:00
|
|
|
return 4;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2009-06-13 08:22:37 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-07 22:52:33 +00:00
|
|
|
int str_utf16le_encode(char *ptr, int chr)
|
|
|
|
{
|
2018-12-07 23:06:54 +00:00
|
|
|
if(chr < 0x10000)
|
2018-12-07 22:52:33 +00:00
|
|
|
{
|
|
|
|
ptr[0] = chr;
|
|
|
|
ptr[1] = chr >> 0x8;
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
else if(chr <= 0x10FFFF)
|
|
|
|
{
|
|
|
|
int U = chr - 0x10000;
|
|
|
|
int W1 = 0xD800, W2 = 0xDC00;
|
|
|
|
|
|
|
|
W1 |= ((U >> 10) & 0x3FF);
|
|
|
|
W2 |= (U & 0x3FF);
|
|
|
|
|
|
|
|
ptr[0] = W1;
|
|
|
|
ptr[1] = W1 >> 0x8;
|
|
|
|
ptr[2] = W2;
|
|
|
|
ptr[3] = W2 >> 0x8;
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-06-30 19:09:43 +00:00
|
|
|
static unsigned char str_byte_next(const char **ptr)
|
2009-06-13 08:22:37 +00:00
|
|
|
{
|
2015-06-30 19:09:43 +00:00
|
|
|
unsigned char byte = **ptr;
|
|
|
|
(*ptr)++;
|
|
|
|
return byte;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2015-06-30 19:09:43 +00:00
|
|
|
static void str_byte_rewind(const char **ptr)
|
|
|
|
{
|
|
|
|
(*ptr)--;
|
|
|
|
}
|
|
|
|
|
|
|
|
int str_utf8_decode(const char **ptr)
|
|
|
|
{
|
|
|
|
// As per https://encoding.spec.whatwg.org/#utf-8-decoder.
|
|
|
|
unsigned char utf8_lower_boundary = 0x80;
|
|
|
|
unsigned char utf8_upper_boundary = 0xBF;
|
|
|
|
int utf8_code_point = 0;
|
|
|
|
int utf8_bytes_seen = 0;
|
|
|
|
int utf8_bytes_needed = 0;
|
|
|
|
while(1)
|
2009-06-13 08:22:37 +00:00
|
|
|
{
|
2015-06-30 19:09:43 +00:00
|
|
|
unsigned char byte = str_byte_next(ptr);
|
|
|
|
if(utf8_bytes_needed == 0)
|
2009-06-13 08:22:37 +00:00
|
|
|
{
|
2015-08-26 02:02:52 +00:00
|
|
|
if(byte <= 0x7F)
|
2015-06-30 19:09:43 +00:00
|
|
|
{
|
|
|
|
return byte;
|
|
|
|
}
|
2015-09-08 10:44:14 +00:00
|
|
|
else if(0xC2 <= byte && byte <= 0xDF)
|
2015-06-30 19:09:43 +00:00
|
|
|
{
|
|
|
|
utf8_bytes_needed = 1;
|
|
|
|
utf8_code_point = byte - 0xC0;
|
|
|
|
}
|
|
|
|
else if(0xE0 <= byte && byte <= 0xEF)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(byte == 0xE0)
|
|
|
|
utf8_lower_boundary = 0xA0;
|
|
|
|
if(byte == 0xED)
|
|
|
|
utf8_upper_boundary = 0x9F;
|
2015-06-30 19:09:43 +00:00
|
|
|
utf8_bytes_needed = 2;
|
|
|
|
utf8_code_point = byte - 0xE0;
|
|
|
|
}
|
|
|
|
else if(0xF0 <= byte && byte <= 0xF4)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(byte == 0xF0)
|
|
|
|
utf8_lower_boundary = 0x90;
|
|
|
|
if(byte == 0xF4)
|
|
|
|
utf8_upper_boundary = 0x8F;
|
2015-06-30 19:09:43 +00:00
|
|
|
utf8_bytes_needed = 3;
|
|
|
|
utf8_code_point = byte - 0xF0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return -1; // Error.
|
|
|
|
}
|
|
|
|
utf8_code_point = utf8_code_point << (6 * utf8_bytes_needed);
|
|
|
|
continue;
|
2009-06-13 08:22:37 +00:00
|
|
|
}
|
2015-06-30 19:09:43 +00:00
|
|
|
if(!(utf8_lower_boundary <= byte && byte <= utf8_upper_boundary))
|
2009-06-13 08:22:37 +00:00
|
|
|
{
|
2015-06-30 19:09:43 +00:00
|
|
|
// Resetting variables not necessary, will be done when
|
|
|
|
// the function is called again.
|
|
|
|
str_byte_rewind(ptr);
|
|
|
|
return -1;
|
2009-06-13 08:22:37 +00:00
|
|
|
}
|
2015-06-30 19:09:43 +00:00
|
|
|
utf8_lower_boundary = 0x80;
|
|
|
|
utf8_upper_boundary = 0xBF;
|
|
|
|
utf8_bytes_seen += 1;
|
|
|
|
utf8_code_point = utf8_code_point + ((byte - 0x80) << (6 * (utf8_bytes_needed - utf8_bytes_seen)));
|
|
|
|
if(utf8_bytes_seen != utf8_bytes_needed)
|
2009-06-13 08:22:37 +00:00
|
|
|
{
|
2015-06-30 19:09:43 +00:00
|
|
|
continue;
|
2009-06-13 08:22:37 +00:00
|
|
|
}
|
2015-06-30 19:09:43 +00:00
|
|
|
// Resetting variables not necessary, see above.
|
|
|
|
return utf8_code_point;
|
|
|
|
}
|
2009-06-13 08:22:37 +00:00
|
|
|
}
|
|
|
|
|
2010-09-30 22:55:16 +00:00
|
|
|
int str_utf8_check(const char *str)
|
|
|
|
{
|
2016-01-27 00:48:19 +00:00
|
|
|
int codepoint;
|
|
|
|
while((codepoint = str_utf8_decode(&str)))
|
2010-09-30 22:55:16 +00:00
|
|
|
{
|
2016-01-27 00:48:19 +00:00
|
|
|
if(codepoint == -1)
|
|
|
|
{
|
2010-09-30 22:55:16 +00:00
|
|
|
return 0;
|
2016-01-27 00:48:19 +00:00
|
|
|
}
|
2010-09-30 22:55:16 +00:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-09-06 19:54:57 +00:00
|
|
|
void str_utf8_copy(char *dst, const char *src, int dst_size)
|
|
|
|
{
|
2020-09-06 19:58:26 +00:00
|
|
|
str_utf8_truncate(dst, dst_size, src, dst_size);
|
2020-09-06 19:54:57 +00:00
|
|
|
}
|
2009-06-15 13:01:04 +00:00
|
|
|
|
|
|
|
unsigned str_quickhash(const char *str)
|
|
|
|
{
|
|
|
|
unsigned hash = 5381;
|
|
|
|
for(; *str; str++)
|
|
|
|
hash = ((hash << 5) + hash) + (*str); /* hash * 33 + c */
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
2019-03-11 11:39:54 +00:00
|
|
|
static const char *str_token_get(const char *str, const char *delim, int *length)
|
2019-02-06 12:30:47 +00:00
|
|
|
{
|
2019-04-29 20:55:12 +00:00
|
|
|
size_t len = strspn(str, delim);
|
|
|
|
if(len > 1)
|
|
|
|
str++;
|
|
|
|
else
|
|
|
|
str += len;
|
2019-02-06 12:30:47 +00:00
|
|
|
if(!*str)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
*length = strcspn(str, delim);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
int str_in_list(const char *list, const char *delim, const char *needle)
|
|
|
|
{
|
|
|
|
const char *tok = list;
|
2019-02-13 14:11:09 +00:00
|
|
|
int len = 0, notfound = 1, needlelen = str_length(needle);
|
2019-02-06 12:30:47 +00:00
|
|
|
|
2019-03-11 11:39:54 +00:00
|
|
|
while(notfound && (tok = str_token_get(tok, delim, &len)))
|
2019-02-13 13:59:46 +00:00
|
|
|
{
|
2019-02-13 14:11:09 +00:00
|
|
|
notfound = needlelen != len || str_comp_num(tok, needle, len);
|
2019-02-06 12:30:47 +00:00
|
|
|
tok = tok + len;
|
|
|
|
}
|
|
|
|
|
|
|
|
return !notfound;
|
|
|
|
}
|
|
|
|
|
2019-03-11 11:39:54 +00:00
|
|
|
const char *str_next_token(const char *str, const char *delim, char *buffer, int buffer_size)
|
2019-03-05 09:46:29 +00:00
|
|
|
{
|
|
|
|
int len = 0;
|
2019-03-11 11:39:54 +00:00
|
|
|
const char *tok = str_token_get(str, delim, &len);
|
2020-09-06 14:29:20 +00:00
|
|
|
if(len < 0 || tok == NULL)
|
|
|
|
{
|
|
|
|
buffer[0] = '\0';
|
2019-03-11 11:39:54 +00:00
|
|
|
return NULL;
|
2020-09-06 14:29:20 +00:00
|
|
|
}
|
2019-03-05 09:46:29 +00:00
|
|
|
|
2019-03-11 11:39:54 +00:00
|
|
|
len = buffer_size > len ? len : buffer_size - 1;
|
|
|
|
mem_copy(buffer, tok, len);
|
|
|
|
buffer[len] = '\0';
|
2019-03-05 09:46:29 +00:00
|
|
|
|
2019-03-11 11:39:54 +00:00
|
|
|
return tok + len;
|
2019-03-05 09:46:29 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
int pid(void)
|
2014-08-22 12:18:16 +00:00
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
return _getpid();
|
|
|
|
#else
|
|
|
|
return getpid();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-09-05 22:38:35 +00:00
|
|
|
PROCESS shell_execute(const char *file)
|
2014-12-31 14:07:44 +00:00
|
|
|
{
|
2015-04-18 12:53:11 +00:00
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2020-09-05 22:38:35 +00:00
|
|
|
SHELLEXECUTEINFOA info;
|
|
|
|
mem_zero(&info, sizeof(SHELLEXECUTEINFOA));
|
2020-09-07 10:24:21 +00:00
|
|
|
info.cbSize = sizeof(SHELLEXECUTEINFOA);
|
2020-09-05 22:38:35 +00:00
|
|
|
info.lpVerb = "open";
|
|
|
|
info.lpFile = file;
|
2021-01-21 08:44:16 +00:00
|
|
|
info.nShow = SW_SHOWMINNOACTIVE;
|
2020-09-05 22:38:35 +00:00
|
|
|
info.fMask = SEE_MASK_NOCLOSEPROCESS;
|
|
|
|
ShellExecuteEx(&info);
|
|
|
|
return info.hProcess;
|
2015-04-18 12:53:11 +00:00
|
|
|
#elif defined(CONF_FAMILY_UNIX)
|
2017-03-07 12:02:37 +00:00
|
|
|
char *argv[2];
|
|
|
|
pid_t pid;
|
2020-09-26 19:41:58 +00:00
|
|
|
argv[0] = (char *)file;
|
2015-04-18 12:53:11 +00:00
|
|
|
argv[1] = NULL;
|
2017-03-07 12:02:37 +00:00
|
|
|
pid = fork();
|
2020-09-11 07:47:19 +00:00
|
|
|
if(pid == -1)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(pid == 0)
|
|
|
|
{
|
2015-04-18 12:53:11 +00:00
|
|
|
execv(file, argv);
|
2020-09-17 20:19:13 +00:00
|
|
|
_exit(1);
|
2020-09-11 07:47:19 +00:00
|
|
|
}
|
2020-09-03 12:08:26 +00:00
|
|
|
return pid;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-09-05 22:38:35 +00:00
|
|
|
int kill_process(PROCESS process)
|
2020-09-03 12:08:26 +00:00
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2020-09-05 22:38:35 +00:00
|
|
|
return TerminateProcess(process, 0);
|
2020-09-03 12:08:26 +00:00
|
|
|
#elif defined(CONF_FAMILY_UNIX)
|
|
|
|
int status;
|
2020-09-05 22:38:35 +00:00
|
|
|
kill(process, SIGTERM);
|
|
|
|
return !waitpid(process, &status, 0);
|
2015-04-18 12:53:11 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-06-19 15:04:35 +00:00
|
|
|
int open_link(const char *link)
|
|
|
|
{
|
|
|
|
char aBuf[512];
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
str_format(aBuf, sizeof(aBuf), "start %s", link);
|
|
|
|
return (uintptr_t)ShellExecuteA(NULL, "open", link, NULL, NULL, SW_SHOWDEFAULT) > 32;
|
|
|
|
#elif defined(CONF_PLATFORM_LINUX)
|
2020-06-29 21:07:57 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "xdg-open %s >/dev/null 2>&1 &", link);
|
2020-06-19 15:04:35 +00:00
|
|
|
return system(aBuf) == 0;
|
|
|
|
#elif defined(CONF_FAMILY_UNIX)
|
2020-06-20 12:59:35 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "open %s &", link);
|
2020-06-19 15:04:35 +00:00
|
|
|
return system(aBuf) == 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
int os_is_winxp_or_lower(void)
|
2015-04-18 12:53:11 +00:00
|
|
|
{
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2017-11-23 02:10:15 +00:00
|
|
|
static const DWORD WINXP_MAJOR = 5;
|
|
|
|
static const DWORD WINXP_MINOR = 1;
|
2015-04-18 12:53:11 +00:00
|
|
|
OSVERSIONINFO ver;
|
|
|
|
mem_zero(&ver, sizeof(OSVERSIONINFO));
|
|
|
|
ver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
|
|
|
|
GetVersionEx(&ver);
|
2020-09-25 16:11:59 +00:00
|
|
|
return ver.dwMajorVersion < WINXP_MAJOR ||
|
2020-09-26 19:41:58 +00:00
|
|
|
(ver.dwMajorVersion == WINXP_MAJOR && ver.dwMinorVersion <= WINXP_MINOR);
|
2015-04-18 19:33:51 +00:00
|
|
|
#else
|
2017-11-23 02:10:15 +00:00
|
|
|
return 0;
|
2015-04-18 12:53:11 +00:00
|
|
|
#endif
|
2014-12-31 14:07:44 +00:00
|
|
|
}
|
2009-06-15 13:01:04 +00:00
|
|
|
|
2015-03-05 23:53:59 +00:00
|
|
|
struct SECURE_RANDOM_DATA
|
|
|
|
{
|
|
|
|
int initialized;
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
HCRYPTPROV provider;
|
|
|
|
#else
|
|
|
|
IOHANDLE urandom;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
static struct SECURE_RANDOM_DATA secure_random_data = {0};
|
2015-03-05 23:53:59 +00:00
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
int secure_random_init(void)
|
2015-03-05 23:53:59 +00:00
|
|
|
{
|
|
|
|
if(secure_random_data.initialized)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
2015-03-15 10:59:17 +00:00
|
|
|
if(CryptAcquireContext(&secure_random_data.provider, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
|
2015-03-05 23:53:59 +00:00
|
|
|
{
|
|
|
|
secure_random_data.initialized = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
secure_random_data.urandom = io_open("/dev/urandom", IOFLAG_READ);
|
|
|
|
if(secure_random_data.urandom)
|
|
|
|
{
|
|
|
|
secure_random_data.initialized = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-10-01 21:04:16 +00:00
|
|
|
void generate_password(char *buffer, unsigned length, unsigned short *random, unsigned random_length)
|
|
|
|
{
|
|
|
|
static const char VALUES[] = "ABCDEFGHKLMNPRSTUVWXYZabcdefghjkmnopqt23456789";
|
|
|
|
static const size_t NUM_VALUES = sizeof(VALUES) - 1; // Disregard the '\0'.
|
2016-10-03 10:31:11 +00:00
|
|
|
unsigned i;
|
2016-10-01 21:04:16 +00:00
|
|
|
dbg_assert(length >= random_length * 2 + 1, "too small buffer");
|
|
|
|
dbg_assert(NUM_VALUES * NUM_VALUES >= 2048, "need at least 2048 possibilities for 2-character sequences");
|
|
|
|
|
|
|
|
buffer[random_length * 2] = 0;
|
|
|
|
|
2016-10-03 10:31:11 +00:00
|
|
|
for(i = 0; i < random_length; i++)
|
2016-10-01 21:04:16 +00:00
|
|
|
{
|
|
|
|
unsigned short random_number = random[i] % 2048;
|
|
|
|
buffer[2 * i + 0] = VALUES[random_number / NUM_VALUES];
|
|
|
|
buffer[2 * i + 1] = VALUES[random_number % NUM_VALUES];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-06 11:03:48 +00:00
|
|
|
#define MAX_PASSWORD_LENGTH 128
|
|
|
|
|
2016-10-01 21:04:16 +00:00
|
|
|
void secure_random_password(char *buffer, unsigned length, unsigned pw_length)
|
|
|
|
{
|
2016-10-03 10:31:11 +00:00
|
|
|
unsigned short random[MAX_PASSWORD_LENGTH / 2];
|
2016-10-01 21:04:16 +00:00
|
|
|
// With 6 characters, we get a password entropy of log(2048) * 6/2 = 33bit.
|
|
|
|
dbg_assert(length >= pw_length + 1, "too small buffer");
|
|
|
|
dbg_assert(pw_length >= 6, "too small password length");
|
|
|
|
dbg_assert(pw_length % 2 == 0, "need an even password length");
|
|
|
|
dbg_assert(pw_length <= MAX_PASSWORD_LENGTH, "too large password length");
|
|
|
|
|
|
|
|
secure_random_fill(random, pw_length);
|
|
|
|
|
|
|
|
generate_password(buffer, length, random, pw_length / 2);
|
|
|
|
}
|
|
|
|
|
2016-10-06 11:03:48 +00:00
|
|
|
#undef MAX_PASSWORD_LENGTH
|
|
|
|
|
2016-10-01 21:04:16 +00:00
|
|
|
void secure_random_fill(void *bytes, unsigned length)
|
2015-03-05 23:53:59 +00:00
|
|
|
{
|
|
|
|
if(!secure_random_data.initialized)
|
|
|
|
{
|
|
|
|
dbg_msg("secure", "called secure_random_fill before secure_random_init");
|
|
|
|
dbg_break();
|
|
|
|
}
|
|
|
|
#if defined(CONF_FAMILY_WINDOWS)
|
|
|
|
if(!CryptGenRandom(secure_random_data.provider, length, bytes))
|
|
|
|
{
|
2017-07-30 10:43:54 +00:00
|
|
|
dbg_msg("secure", "CryptGenRandom failed, last_error=%ld", GetLastError());
|
2015-03-05 23:53:59 +00:00
|
|
|
dbg_break();
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if(length != io_read(secure_random_data.urandom, bytes, length))
|
|
|
|
{
|
|
|
|
dbg_msg("secure", "io_read returned with a short read");
|
|
|
|
dbg_break();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-04-12 17:56:11 +00:00
|
|
|
int secure_rand(void)
|
2016-01-02 14:37:44 +00:00
|
|
|
{
|
2016-01-02 14:51:21 +00:00
|
|
|
unsigned int i;
|
2016-01-02 14:37:44 +00:00
|
|
|
secure_random_fill(&i, sizeof(i));
|
2020-09-26 19:41:58 +00:00
|
|
|
return (int)(i % RAND_MAX);
|
2016-01-02 14:37:44 +00:00
|
|
|
}
|
|
|
|
|
2007-10-04 09:49:38 +00:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|