|
| 1 | +#include <netdb.h> |
| 2 | +#include <string.h> |
| 3 | + |
| 4 | +#include <lua.h> |
| 5 | +#include <lauxlib.h> |
| 6 | +#include <maxminddb.h> |
| 7 | + |
| 8 | +#if LUA_VERSION_NUM >= 502 |
| 9 | + |
| 10 | +#define luaL_register(L,n,f) luaL_newlib(L,f) |
| 11 | + |
| 12 | +#else |
| 13 | + |
| 14 | +static void luaL_setmetatable(lua_State *L, const char *tname) |
| 15 | +{ |
| 16 | + luaL_getmetatable(L, tname); |
| 17 | + lua_setmetatable(L, -2); |
| 18 | +} |
| 19 | + |
| 20 | +static int lua_absindex(lua_State *L, int idx) |
| 21 | +{ |
| 22 | + return (idx > 0 || idx <= LUA_REGISTRYINDEX)? idx : lua_gettop(L) + idx + 1; |
| 23 | +} |
| 24 | + |
| 25 | +static void luaL_setfuncs(lua_State *L, const luaL_Reg *l, int nup) |
| 26 | +{ |
| 27 | + int i, t = lua_absindex(L, -1 - nup); |
| 28 | + |
| 29 | + for (; l->name; l++) { |
| 30 | + for (i = 0; i < nup; i++) |
| 31 | + lua_pushvalue(L, -nup); |
| 32 | + lua_pushcclosure(L, l->func, nup); |
| 33 | + lua_setfield(L, t, l->name); |
| 34 | + } |
| 35 | + lua_pop(L, nup); |
| 36 | +} |
| 37 | + |
| 38 | +#endif |
| 39 | + |
| 40 | +static void addclass(lua_State *L, const char *name, const luaL_Reg *methods, const luaL_Reg *metamethods) |
| 41 | +{ |
| 42 | + if (!luaL_newmetatable(L, name)) return; |
| 43 | + if (metamethods) |
| 44 | + luaL_setfuncs(L, metamethods, 0); |
| 45 | + if (methods) { |
| 46 | + lua_newtable(L); |
| 47 | + luaL_setfuncs(L, methods, 0); |
| 48 | + lua_setfield(L, -2, "__index"); |
| 49 | + } |
| 50 | + lua_pop(L, 1); |
| 51 | +} |
| 52 | + |
| 53 | +static void *allocudata(lua_State *L, size_t size, const char *tname) |
| 54 | +{ |
| 55 | + void *p = memset(lua_newuserdata(L, size), 0, size); |
| 56 | + luaL_setmetatable(L, tname); |
| 57 | + return p; |
| 58 | +} |
| 59 | + |
| 60 | +static int mm_error(lua_State *L, int err) |
| 61 | +{ |
| 62 | + lua_pushstring(L, MMDB_strerror(err)); |
| 63 | + return lua_error(L); |
| 64 | +} |
| 65 | + |
| 66 | +#define MMDB_RESULT_CLASS "MMDB_lookup_result_s" |
| 67 | + |
| 68 | +static int mmdbres_get(lua_State *L) |
| 69 | +{ |
| 70 | + MMDB_entry_data_s data; |
| 71 | + MMDB_lookup_result_s *res = luaL_checkudata(L, 1, MMDB_RESULT_CLASS); |
| 72 | + const char *keys[16]; |
| 73 | + int r, i; |
| 74 | + |
| 75 | + for (i = 2; i <= lua_gettop(L) && i < 15; i++) |
| 76 | + keys[i-2] = luaL_checkstring(L, i); |
| 77 | + keys[i-2] = 0; |
| 78 | + |
| 79 | + r = MMDB_aget_value(&res->entry, &data, keys); |
| 80 | + if (!data.has_data) return mm_error(L, r); |
| 81 | + |
| 82 | + switch (data.type) { |
| 83 | + case MMDB_DATA_TYPE_BYTES: |
| 84 | + lua_pushlstring(L, data.bytes, data.data_size); |
| 85 | + return 1; |
| 86 | + return 1; |
| 87 | + case MMDB_DATA_TYPE_UTF8_STRING: |
| 88 | + lua_pushlstring(L, data.utf8_string, data.data_size); |
| 89 | + return 1; |
| 90 | + case MMDB_DATA_TYPE_DOUBLE: |
| 91 | + lua_pushnumber(L, data.double_value); |
| 92 | + return 1; |
| 93 | + case MMDB_DATA_TYPE_FLOAT: |
| 94 | + lua_pushnumber(L, data.float_value); |
| 95 | + return 1; |
| 96 | + case MMDB_DATA_TYPE_UINT16: |
| 97 | + lua_pushinteger(L, data.uint16); |
| 98 | + return 1; |
| 99 | + case MMDB_DATA_TYPE_UINT32: |
| 100 | + lua_pushinteger(L, data.uint32); |
| 101 | + return 1; |
| 102 | + case MMDB_DATA_TYPE_INT32: |
| 103 | + lua_pushinteger(L, data.int32); |
| 104 | + return 1; |
| 105 | + } |
| 106 | + |
| 107 | + lua_pushstring(L, "Unsupported maxmind data type"); |
| 108 | + return lua_error(L); |
| 109 | +} |
| 110 | + |
| 111 | +static const luaL_Reg mmdbres_methods[] = { |
| 112 | + { "get", mmdbres_get }, |
| 113 | + { 0, 0 }, |
| 114 | +}; |
| 115 | + |
| 116 | + |
| 117 | +#define MMDB_CLASS "MMDB_s" |
| 118 | + |
| 119 | +static int mmdb_gc(lua_State *L) |
| 120 | +{ |
| 121 | + MMDB_s *mmdb = luaL_checkudata(L, 1, MMDB_CLASS); |
| 122 | + MMDB_close(mmdb); |
| 123 | + return 0; |
| 124 | +} |
| 125 | + |
| 126 | +static const luaL_Reg mmdb_metatable[] = { |
| 127 | + { "__gc", mmdb_gc }, |
| 128 | + { 0, 0 }, |
| 129 | +}; |
| 130 | + |
| 131 | +static int mmdb_lookup(lua_State *L) |
| 132 | +{ |
| 133 | + int gaierr, mmerr; |
| 134 | + MMDB_s *mmdb = luaL_checkudata(L, 1, MMDB_CLASS); |
| 135 | + const char *addr = luaL_checkstring(L, 2); |
| 136 | + MMDB_lookup_result_s *res = allocudata(L, sizeof(MMDB_lookup_result_s), MMDB_RESULT_CLASS); |
| 137 | + |
| 138 | + *res = MMDB_lookup_string(mmdb, addr, &gaierr, &mmerr); |
| 139 | + if (gaierr != 0) { |
| 140 | + lua_pushstring(L, gai_strerror(gaierr)); |
| 141 | + return lua_error(L); |
| 142 | + } |
| 143 | + if (!res->found_entry) return mm_error(L, mmerr); |
| 144 | + |
| 145 | + return 1; |
| 146 | +} |
| 147 | + |
| 148 | +static const luaL_Reg mmdb_methods[] = { |
| 149 | + { "lookup", mmdb_lookup }, |
| 150 | + { 0, 0 }, |
| 151 | +}; |
| 152 | + |
| 153 | +static int mm_open(lua_State *L) |
| 154 | +{ |
| 155 | + const char *filename = luaL_checkstring(L, 1); |
| 156 | + MMDB_s *mmdb = allocudata(L, sizeof(MMDB_s), MMDB_CLASS); |
| 157 | + int r; |
| 158 | + |
| 159 | + r = MMDB_open(filename, 0, mmdb); |
| 160 | + if (r != MMDB_SUCCESS) return mm_error(L, r); |
| 161 | + |
| 162 | + return 1; |
| 163 | +} |
| 164 | + |
| 165 | +LUALIB_API int luaopen_maxminddb(lua_State * L) |
| 166 | +{ |
| 167 | + static const luaL_Reg api[] = { |
| 168 | + { "open", mm_open }, |
| 169 | + { 0, 0 }, |
| 170 | + }; |
| 171 | + |
| 172 | + luaL_register(L, "maxminddb", api); |
| 173 | + addclass(L, MMDB_CLASS, mmdb_methods, mmdb_metatable); |
| 174 | + addclass(L, MMDB_RESULT_CLASS, mmdbres_methods, NULL); |
| 175 | + return 1; |
| 176 | +} |
0 commit comments