cosmopolitan/tool/net/ljson.c

379 lines
14 KiB
C
Raw Normal View History

2022-07-09 18:44:19 +00:00
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi
Copyright 2022 Justine Alexandra Roberts Tunney
Permission to use, copy, modify, and/or distribute this software for
any purpose with or without fee is hereby granted, provided that the
above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
*/
#include "libc/bits/bits.h"
#include "libc/bits/likely.h"
#include "libc/intrin/kprintf.h"
#include "libc/log/log.h"
2022-07-09 18:44:19 +00:00
#include "libc/str/tpenc.h"
#include "libc/str/utf16.h"
#include "third_party/double-conversion/wrapper.h"
2022-07-12 06:06:49 +00:00
#include "third_party/lua/cosmo.h"
2022-07-09 18:44:19 +00:00
#include "third_party/lua/lauxlib.h"
#include "third_party/lua/ltests.h"
2022-07-09 18:44:19 +00:00
#include "third_party/lua/lua.h"
2022-07-12 06:06:49 +00:00
#include "tool/net/ljson.h"
2022-07-09 18:44:19 +00:00
2022-07-12 06:06:49 +00:00
#define TOP_LEVEL 0
#define ARRAY_VAL 1
#define OBJECT_KEY 2
#define OBJECT_VAL 3
2022-07-11 15:17:58 +00:00
2022-07-12 06:06:49 +00:00
#define MAX_JSON_DEPTH 128
2022-07-09 18:44:19 +00:00
2022-07-12 06:06:49 +00:00
static struct DecodeJson Parse(struct lua_State *L, const char *p,
const char *e, int context, int depth) {
long x;
char w[4];
const char *a;
2022-07-09 18:44:19 +00:00
luaL_Buffer b;
2022-07-12 06:06:49 +00:00
struct DecodeJson r;
int A, B, C, D, c, d, i, u;
2022-07-12 06:06:49 +00:00
if (UNLIKELY(!--depth)) {
return (struct DecodeJson){-1, "maximum depth exceeded"};
2022-07-11 15:17:58 +00:00
}
for (a = p, d = +1; p < e;) {
2022-07-09 18:44:19 +00:00
switch ((c = *p++ & 255)) {
case ' ': // spaces
case '\n':
case '\r':
case '\t':
a = p;
break;
case ',': // present in list and object
2022-07-12 06:06:49 +00:00
if (context == ARRAY_VAL || context == OBJECT_KEY) {
a = p;
break;
} else {
return (struct DecodeJson){-1, "unexpected ','"};
}
case ':': // present only in object after key
2022-07-12 06:06:49 +00:00
if (context == OBJECT_VAL) {
a = p;
break;
} else {
return (struct DecodeJson){-1, "unexpected ':'"};
}
case 'n': // null
2022-07-12 06:06:49 +00:00
if (UNLIKELY(context == OBJECT_KEY)) goto BadObjectKey;
if (UNLIKELY(context == TOP_LEVEL)) {
return (struct DecodeJson){-1, "toplevel json can't be null"};
}
if (p + 3 <= e && READ32LE(p - 1) == READ32LE("null")) {
lua_pushnil(L);
2022-07-12 06:06:49 +00:00
return (struct DecodeJson){1, p + 3};
} else {
goto IllegalCharacter;
}
case 'f': // false
2022-07-12 06:06:49 +00:00
if (UNLIKELY(context == OBJECT_KEY)) goto BadObjectKey;
if (UNLIKELY(context == TOP_LEVEL)) {
return (struct DecodeJson){-1, "toplevel json can't be false"};
}
if (p + 4 <= e && READ32LE(p) == READ32LE("alse")) {
lua_pushboolean(L, false);
2022-07-12 06:06:49 +00:00
return (struct DecodeJson){1, p + 4};
} else {
goto IllegalCharacter;
}
case 't': // true
if (UNLIKELY(context == OBJECT_KEY)) goto BadObjectKey;
if (p + 3 <= e && READ32LE(p - 1) == READ32LE("true")) {
lua_pushboolean(L, true);
return (struct DecodeJson){1, p + 3};
} else {
goto IllegalCharacter;
}
case '-': // negative
2022-07-12 06:06:49 +00:00
if (UNLIKELY(context == OBJECT_KEY)) goto BadObjectKey;
2022-07-09 18:44:19 +00:00
d = -1;
break;
case '0': // zero or number
2022-07-12 06:06:49 +00:00
if (UNLIKELY(context == OBJECT_KEY)) goto BadObjectKey;
if (p < e && (*p == '.' || *p == 'e' || *p == 'E')) {
goto UseDubble;
}
lua_pushinteger(L, 0);
2022-07-12 06:06:49 +00:00
return (struct DecodeJson){1, p};
2022-07-09 18:44:19 +00:00
case '1' ... '9': // integer
2022-07-12 06:06:49 +00:00
if (UNLIKELY(context == OBJECT_KEY)) goto BadObjectKey;
for (x = (c - '0') * d; p < e; ++p) {
c = *p & 255;
if (isdigit(c)) {
if (__builtin_mul_overflow(x, 10, &x) ||
__builtin_add_overflow(x, (c - '0') * d, &x)) {
goto UseDubble;
}
} else if (c == '.' || c == 'e' || c == 'E') {
goto UseDubble;
} else {
break;
}
}
lua_pushinteger(L, x);
2022-07-12 06:06:49 +00:00
return (struct DecodeJson){1, p};
UseDubble: // number
lua_pushnumber(L, StringToDouble(a, e - a, &c));
2022-07-12 06:06:49 +00:00
return (struct DecodeJson){1, a + c};
case '[': // Array
2022-07-12 06:06:49 +00:00
if (UNLIKELY(context == OBJECT_KEY)) goto BadObjectKey;
2022-07-09 18:44:19 +00:00
lua_newtable(L);
i = 0;
2022-07-12 06:06:49 +00:00
for (;;) {
r = Parse(L, p, e, ARRAY_VAL, depth);
if (UNLIKELY(r.rc == -1)) {
lua_pop(L, 1);
return r;
}
2022-07-09 18:44:19 +00:00
p = r.p;
2022-07-12 06:06:49 +00:00
if (!r.rc) {
break;
2022-07-09 18:44:19 +00:00
}
2022-07-12 06:06:49 +00:00
lua_rawseti(L, -2, i++ + 1);
}
if (!i) {
// we need this kludge so `[]` won't round-trip as `{}`
lua_pushboolean(L, false);
lua_rawseti(L, -2, 0);
}
2022-07-12 06:06:49 +00:00
return (struct DecodeJson){1, p};
2022-07-09 18:44:19 +00:00
case ']':
2022-07-12 06:06:49 +00:00
if (context == ARRAY_VAL) {
return (struct DecodeJson){0, p};
} else {
return (struct DecodeJson){-1, "unexpected ']'"};
}
case '}':
2022-07-12 06:06:49 +00:00
if (context == OBJECT_KEY) {
return (struct DecodeJson){0, p};
} else {
return (struct DecodeJson){-1, "unexpected '}'"};
}
case '{': // Object
2022-07-12 06:06:49 +00:00
if (UNLIKELY(context == OBJECT_KEY)) goto BadObjectKey;
2022-07-09 18:44:19 +00:00
lua_newtable(L);
2022-07-12 06:06:49 +00:00
for (;;) {
r = Parse(L, p, e, OBJECT_KEY, depth);
if (r.rc == -1) {
lua_pop(L, 1);
return r;
}
2022-07-09 18:44:19 +00:00
p = r.p;
2022-07-12 06:06:49 +00:00
if (!r.rc) {
break;
2022-07-09 18:44:19 +00:00
}
2022-07-12 06:06:49 +00:00
r = Parse(L, p, e, OBJECT_VAL, depth);
if (r.rc == -1) {
lua_pop(L, 2);
return r;
}
if (!r.rc) {
lua_pop(L, 2);
return (struct DecodeJson){-1, "unexpected eof in object"};
}
p = r.p;
lua_settable(L, -3);
}
2022-07-12 06:06:49 +00:00
return (struct DecodeJson){1, p};
2022-07-09 18:44:19 +00:00
case '"': // string
2022-07-09 18:44:19 +00:00
luaL_buffinit(L, &b);
while (p < e) {
switch ((c = *p++ & 255)) {
default:
AddByte:
2022-07-09 18:44:19 +00:00
luaL_addchar(&b, c);
break;
case '\\':
if (p < e) {
switch ((c = *p++ & 255)) {
2022-07-12 06:06:49 +00:00
default:
goto InvalidEscapeCharacter;
2022-07-09 18:44:19 +00:00
case '"':
case '/':
case '\\':
goto AddByte;
2022-07-09 18:44:19 +00:00
case 'b':
c = '\b';
goto AddByte;
2022-07-09 18:44:19 +00:00
case 'f':
c = '\f';
goto AddByte;
2022-07-09 18:44:19 +00:00
case 'n':
c = '\n';
goto AddByte;
2022-07-09 18:44:19 +00:00
case 'r':
c = '\r';
goto AddByte;
2022-07-09 18:44:19 +00:00
case 't':
c = '\t';
goto AddByte;
2022-07-12 06:06:49 +00:00
case 'x':
if (p + 2 <= e && //
(A = kHexToInt[p[0] & 255]) != -1 && // HEX
(B = kHexToInt[p[1] & 255]) != -1) { //
c = A << 4 | B;
p += 2;
goto AddByte;
} else {
goto InvalidEscapeCharacter;
}
2022-07-09 18:44:19 +00:00
case 'u':
if (p + 4 <= e && //
(A = kHexToInt[p[0] & 255]) != -1 && //
(B = kHexToInt[p[1] & 255]) != -1 && // UCS-2
2022-07-09 18:44:19 +00:00
(C = kHexToInt[p[2] & 255]) != -1 && //
(D = kHexToInt[p[3] & 255]) != -1) { //
2022-07-09 18:44:19 +00:00
c = A << 12 | B << 8 | C << 4 | D;
if (!IsSurrogate(c)) {
p += 4;
} else if (IsHighSurrogate(c)) {
if (p + 4 + 6 <= e && //
p[4] == '\\' && //
p[5] == 'u' && //
(A = kHexToInt[p[6] & 255]) != -1 && // UTF-16
(B = kHexToInt[p[7] & 255]) != -1 && //
(C = kHexToInt[p[8] & 255]) != -1 && //
(D = kHexToInt[p[9] & 255]) != -1) { //
u = A << 12 | B << 8 | C << 4 | D;
if (IsLowSurrogate(u)) {
p += 4 + 6;
c = MergeUtf16(c, u);
} else {
goto BadUnicode;
}
} else {
goto BadUnicode;
}
} else {
goto BadUnicode;
}
// UTF-8
if (c < 0x7f) {
w[0] = c;
i = 1;
} else if (c <= 0x7ff) {
w[0] = 0300 | (c >> 6);
w[1] = 0200 | (c & 077);
i = 2;
} else if (c <= 0xffff) {
if (UNLIKELY(IsSurrogate(c))) {
ReplacementCharacter:
c = 0xfffd;
}
w[0] = 0340 | (c >> 12);
w[1] = 0200 | ((c >> 6) & 077);
w[2] = 0200 | (c & 077);
i = 3;
} else if (~(c >> 18) & 007) {
w[0] = 0360 | (c >> 18);
w[1] = 0200 | ((c >> 12) & 077);
w[2] = 0200 | ((c >> 6) & 077);
w[3] = 0200 | (c & 077);
i = 4;
} else {
goto ReplacementCharacter;
}
luaL_addlstring(&b, w, i);
2022-07-09 18:44:19 +00:00
} else {
2022-07-12 06:06:49 +00:00
goto InvalidEscapeCharacter;
BadUnicode:
// Echo invalid \uXXXX sequences
// Rather than corrupting UTF-8!
luaL_addstring(&b, "\\u");
2022-07-09 18:44:19 +00:00
}
break;
2022-07-09 18:44:19 +00:00
}
2022-07-12 06:06:49 +00:00
} else {
goto InvalidEscapeCharacter;
2022-07-09 18:44:19 +00:00
}
break;
case '"':
2022-07-12 06:06:49 +00:00
luaL_pushresult(&b);
return (struct DecodeJson){1, p};
2022-07-09 18:44:19 +00:00
}
}
2022-07-12 06:06:49 +00:00
luaL_pushresultsize(&b, 0);
lua_pop(L, 1);
return (struct DecodeJson){-1, "unexpected eof in string"};
default:
IllegalCharacter:
return (struct DecodeJson){-1, "illegal character"};
BadObjectKey:
return (struct DecodeJson){-1, "object key must be string"};
InvalidEscapeCharacter:
luaL_pushresultsize(&b, 0);
lua_pop(L, 1);
return (struct DecodeJson){-1, "invalid escape character"};
2022-07-09 18:44:19 +00:00
}
}
2022-07-12 06:06:49 +00:00
if (UNLIKELY(context == TOP_LEVEL)) {
return (struct DecodeJson){0, 0};
} else {
return (struct DecodeJson){-1, "unexpected eof"};
}
2022-07-09 18:44:19 +00:00
}
/**
* Parses JSON data structure string into Lua data structure.
*
* This function returns the number of items pushed to the Lua stack,
* which should be 1, unless no parseable JSON content was found, in
* which case this will return 0. On error -1 is returned. There's
* currently no error return condition. This function doesn't do JSON
* validity enforcement.
*
* JSON UTF-16 strings are re-encoded as valid UTF-8. 64-bit integers
* are supported. If an integer overflows during parsing, it'll be
* converted to a floating-point number instead. Invalid surrogate
* escape sequences in strings won't be decoded.
*
* A weird case exists when parsing empty objects. In order to let Lua
* tell them apart from empty arrays, we insert a special key that's
* ignored by our JSON serializer, called `[__json_object__]=true`.
*
* @param L is Lua interpreter state
* @param p is input string
* @param n is byte length of `p` or -1 for automatic strlen()
2022-07-12 06:06:49 +00:00
* @return res.rc is 1 if value pushed, 0 on eof, otherwise -1
* @return res.p is is advanced `p` pointer if `rc` isn't -1
* @return res.p is string describing error if `rc` is -1
2022-07-09 18:44:19 +00:00
*/
2022-07-12 06:06:49 +00:00
struct DecodeJson DecodeJson(struct lua_State *L, const char *p, size_t n) {
2022-07-09 18:44:19 +00:00
if (n == -1) n = p ? strlen(p) : 0;
2022-07-12 06:06:49 +00:00
if (lua_checkstack(L, MAX_JSON_DEPTH + MAX_JSON_DEPTH / 2)) {
return Parse(L, p, p + n, TOP_LEVEL, MAX_JSON_DEPTH);
} else {
return (struct DecodeJson){-1, "can't set stack depth"};
2022-07-11 15:17:58 +00:00
}
2022-07-09 18:44:19 +00:00
}