forked from brthanmathwoag/sqlite-inet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinet.c
119 lines (98 loc) · 2.19 KB
/
inet.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
** 2017-05-12
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
******************************************************************************
**
** This SQLite extension implements inet_aton() and inet_ntoa() functions.
*/
#include <sqlite3ext.h>
SQLITE_EXTENSION_INIT1
#ifdef _WIN32
#include <winsock2.h>
#else
#include <arpa/inet.h>
#endif
#include <assert.h>
#include <string.h>
static void inet_aton_impl(
sqlite3_context *context,
int argc,
sqlite3_value **argv)
{
const char *zIn;
in_addr_t addr;
assert(argc == 1);
if (sqlite3_value_type(argv[0]) == SQLITE_NULL)
{
return;
}
zIn = (const char*)sqlite3_value_text(argv[0]);
addr = inet_addr(zIn);
if (addr == INADDR_NONE)
{
sqlite3_result_error(context, "Passed a malformed IP address", -1);
return;
}
sqlite3_result_int64(context, ntohl(addr));
}
static void inet_ntoa_impl(
sqlite3_context *context,
int argc,
sqlite3_value **argv)
{
struct in_addr sInAddr;
int nIn;
char* zOut;
int nOut = 0;
assert(argc == 1);
if (sqlite3_value_type(argv[0]) == SQLITE_NULL)
{
return;
}
nIn = sqlite3_value_int(argv[0]);
sInAddr.s_addr = htonl(nIn);
zOut = inet_ntoa(sInAddr);
nOut = strlen(zOut);
sqlite3_result_text(context, (char*)zOut, nOut, SQLITE_TRANSIENT);
}
#ifdef _WIN32
__declspec(dllexport)
#endif
int sqlite3_inet_init(
sqlite3 *db,
char **pzErrMsg,
const sqlite3_api_routines *pApi)
{
int rc = SQLITE_OK;
SQLITE_EXTENSION_INIT2(pApi);
(void)pzErrMsg; /* Unused parameter */
rc = sqlite3_create_function(
db,
"inet_aton",
1,
SQLITE_UTF8,
0,
inet_aton_impl,
0,
0);
if (rc != SQLITE_OK) {
return rc;
}
rc = sqlite3_create_function(
db,
"inet_ntoa",
1,
SQLITE_UTF8,
0,
inet_ntoa_impl,
0,
0);
return rc;
}