You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

json_object.c 48 kB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797
  1. /*
  2. * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
  3. * Michael Clark <michael@metaparadigm.com>
  4. * Copyright (c) 2009 Hewlett-Packard Development Company, L.P.
  5. *
  6. * This library is free software; you can redistribute it and/or modify
  7. * it under the terms of the MIT license. See COPYING for details.
  8. *
  9. */
  10. #include "config.h"
  11. #include "strerror_override.h"
  12. #include <assert.h>
  13. #include <ctype.h>
  14. #ifdef HAVE_LIMITS_H
  15. #include <limits.h>
  16. #endif
  17. #include <math.h>
  18. #include <stddef.h>
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. #include "arraylist.h"
  23. #include "debug.h"
  24. #include "json_inttypes.h"
  25. #include "json_object.h"
  26. #include "json_object_private.h"
  27. #include "json_util.h"
  28. #include "linkhash.h"
  29. #include "math_compat.h"
  30. #include "printbuf.h"
  31. #include "snprintf_compat.h"
  32. #include "strdup_compat.h"
  33. #if SIZEOF_LONG_LONG != SIZEOF_INT64_T
  34. #error "The long long type isn't 64-bits"
  35. #endif
  36. #ifndef SSIZE_T_MAX
  37. #if SIZEOF_SSIZE_T == SIZEOF_INT
  38. #define SSIZE_T_MAX UINT_MAX
  39. #elif SIZEOF_SSIZE_T == SIZEOF_LONG
  40. #define SSIZE_T_MAX ULONG_MAX
  41. #elif SIZEOF_SSIZE_T == SIZEOF_LONG_LONG
  42. #define SSIZE_T_MAX ULLONG_MAX
  43. #else
  44. #error Unable to determine size of ssize_t
  45. #endif
  46. #endif
  47. // Don't define this. It's not thread-safe.
  48. /* #define REFCOUNT_DEBUG 1 */
  49. const char *json_number_chars = "0123456789.+-eE";
  50. const char *json_hex_chars = "0123456789abcdefABCDEF";
  51. static void json_object_generic_delete(struct json_object *jso);
  52. #if defined(_MSC_VER) && (_MSC_VER <= 1800)
  53. /* VS2013 doesn't know about "inline" */
  54. #define inline __inline
  55. #elif defined(AIX_CC)
  56. #define inline
  57. #endif
  58. /*
  59. * Helper functions to more safely cast to a particular type of json_object
  60. */
  61. static inline struct json_object_object *JC_OBJECT(struct json_object *jso)
  62. {
  63. return (void *)jso;
  64. }
  65. static inline const struct json_object_object *JC_OBJECT_C(const struct json_object *jso)
  66. {
  67. return (const void *)jso;
  68. }
  69. static inline struct json_object_array *JC_ARRAY(struct json_object *jso)
  70. {
  71. return (void *)jso;
  72. }
  73. static inline const struct json_object_array *JC_ARRAY_C(const struct json_object *jso)
  74. {
  75. return (const void *)jso;
  76. }
  77. static inline struct json_object_boolean *JC_BOOL(struct json_object *jso)
  78. {
  79. return (void *)jso;
  80. }
  81. static inline const struct json_object_boolean *JC_BOOL_C(const struct json_object *jso)
  82. {
  83. return (const void *)jso;
  84. }
  85. static inline struct json_object_double *JC_DOUBLE(struct json_object *jso)
  86. {
  87. return (void *)jso;
  88. }
  89. static inline const struct json_object_double *JC_DOUBLE_C(const struct json_object *jso)
  90. {
  91. return (const void *)jso;
  92. }
  93. static inline struct json_object_int *JC_INT(struct json_object *jso)
  94. {
  95. return (void *)jso;
  96. }
  97. static inline const struct json_object_int *JC_INT_C(const struct json_object *jso)
  98. {
  99. return (const void *)jso;
  100. }
  101. static inline struct json_object_string *JC_STRING(struct json_object *jso)
  102. {
  103. return (void *)jso;
  104. }
  105. static inline const struct json_object_string *JC_STRING_C(const struct json_object *jso)
  106. {
  107. return (const void *)jso;
  108. }
  109. #define JC_CONCAT(a, b) a##b
  110. #define JC_CONCAT3(a, b, c) a##b##c
  111. #define JSON_OBJECT_NEW(jtype) \
  112. (struct JC_CONCAT(json_object_, jtype) *)json_object_new( \
  113. JC_CONCAT(json_type_, jtype), sizeof(struct JC_CONCAT(json_object_, jtype)), \
  114. &JC_CONCAT3(json_object_, jtype, _to_json_string))
  115. static inline struct json_object *json_object_new(enum json_type o_type, size_t alloc_size,
  116. json_object_to_json_string_fn *to_json_string);
  117. static void json_object_object_delete(struct json_object *jso_base);
  118. static void json_object_string_delete(struct json_object *jso);
  119. static void json_object_array_delete(struct json_object *jso);
  120. static json_object_to_json_string_fn json_object_object_to_json_string;
  121. static json_object_to_json_string_fn json_object_boolean_to_json_string;
  122. static json_object_to_json_string_fn json_object_double_to_json_string_default;
  123. static json_object_to_json_string_fn json_object_int_to_json_string;
  124. static json_object_to_json_string_fn json_object_string_to_json_string;
  125. static json_object_to_json_string_fn json_object_array_to_json_string;
  126. static json_object_to_json_string_fn _json_object_userdata_to_json_string;
  127. #ifndef JSON_NORETURN
  128. #if defined(_MSC_VER)
  129. #define JSON_NORETURN __declspec(noreturn)
  130. #elif defined(__OS400__)
  131. #define JSON_NORETURN
  132. #else
  133. /* 'cold' attribute is for optimization, telling the computer this code
  134. * path is unlikely.
  135. */
  136. #define JSON_NORETURN __attribute__((noreturn, cold))
  137. #endif
  138. #endif
  139. /**
  140. * Abort and optionally print a message on standard error.
  141. * This should be used rather than assert() for unconditional abortion
  142. * (in particular for code paths which are never supposed to be run).
  143. * */
  144. JSON_NORETURN static void json_abort(const char *message);
  145. /* ref count debugging */
  146. #ifdef REFCOUNT_DEBUG
  147. static struct lh_table *json_object_table;
  148. static void json_object_init(void) __attribute__((constructor));
  149. static void json_object_init(void)
  150. {
  151. MC_DEBUG("json_object_init: creating object table\n");
  152. json_object_table = lh_kptr_table_new(128, NULL);
  153. }
  154. static void json_object_fini(void) __attribute__((destructor));
  155. static void json_object_fini(void)
  156. {
  157. struct lh_entry *ent;
  158. if (MC_GET_DEBUG())
  159. {
  160. if (json_object_table->count)
  161. {
  162. MC_DEBUG("json_object_fini: %d referenced objects at exit\n",
  163. json_object_table->count);
  164. lh_foreach(json_object_table, ent)
  165. {
  166. struct json_object *obj = (struct json_object *)lh_entry_v(ent);
  167. MC_DEBUG("\t%s:%p\n", json_type_to_name(obj->o_type), obj);
  168. }
  169. }
  170. }
  171. MC_DEBUG("json_object_fini: freeing object table\n");
  172. lh_table_free(json_object_table);
  173. }
  174. #endif /* REFCOUNT_DEBUG */
  175. /* helper for accessing the optimized string data component in json_object
  176. */
  177. static inline char *get_string_component_mutable(struct json_object *jso)
  178. {
  179. if (JC_STRING_C(jso)->len < 0)
  180. {
  181. /* Due to json_object_set_string(), we might have a pointer */
  182. return JC_STRING(jso)->c_string.pdata;
  183. }
  184. return JC_STRING(jso)->c_string.idata;
  185. }
  186. static inline const char *get_string_component(const struct json_object *jso)
  187. {
  188. return get_string_component_mutable((void *)(uintptr_t)(const void *)jso);
  189. }
  190. /* string escaping */
  191. static int json_escape_str(struct printbuf *pb, const char *str, size_t len, int flags)
  192. {
  193. int pos = 0, start_offset = 0;
  194. unsigned char c;
  195. while (len--)
  196. {
  197. c = str[pos];
  198. switch (c)
  199. {
  200. case '\b':
  201. case '\n':
  202. case '\r':
  203. case '\t':
  204. case '\f':
  205. case '"':
  206. case '\\':
  207. case '/':
  208. if ((flags & JSON_C_TO_STRING_NOSLASHESCAPE) && c == '/')
  209. {
  210. pos++;
  211. break;
  212. }
  213. if (pos - start_offset > 0)
  214. printbuf_memappend(pb, str + start_offset, pos - start_offset);
  215. if (c == '\b')
  216. printbuf_memappend(pb, "\\b", 2);
  217. else if (c == '\n')
  218. printbuf_memappend(pb, "\\n", 2);
  219. else if (c == '\r')
  220. printbuf_memappend(pb, "\\r", 2);
  221. else if (c == '\t')
  222. printbuf_memappend(pb, "\\t", 2);
  223. else if (c == '\f')
  224. printbuf_memappend(pb, "\\f", 2);
  225. else if (c == '"')
  226. printbuf_memappend(pb, "\\\"", 2);
  227. else if (c == '\\')
  228. printbuf_memappend(pb, "\\\\", 2);
  229. else if (c == '/')
  230. printbuf_memappend(pb, "\\/", 2);
  231. start_offset = ++pos;
  232. break;
  233. default:
  234. if (c < ' ')
  235. {
  236. char sbuf[7];
  237. if (pos - start_offset > 0)
  238. printbuf_memappend(pb, str + start_offset,
  239. pos - start_offset);
  240. snprintf(sbuf, sizeof(sbuf), "\\u00%c%c", json_hex_chars[c >> 4],
  241. json_hex_chars[c & 0xf]);
  242. printbuf_memappend_fast(pb, sbuf, (int)sizeof(sbuf) - 1);
  243. start_offset = ++pos;
  244. }
  245. else
  246. pos++;
  247. }
  248. }
  249. if (pos - start_offset > 0)
  250. printbuf_memappend(pb, str + start_offset, pos - start_offset);
  251. return 0;
  252. }
  253. /* reference counting */
  254. struct json_object *json_object_get(struct json_object *jso)
  255. {
  256. if (!jso)
  257. return jso;
  258. // Don't overflow the refcounter.
  259. assert(jso->_ref_count < UINT32_MAX);
  260. #if defined(HAVE_ATOMIC_BUILTINS) && defined(ENABLE_THREADING)
  261. __sync_add_and_fetch(&jso->_ref_count, 1);
  262. #else
  263. ++jso->_ref_count;
  264. #endif
  265. return jso;
  266. }
  267. int json_object_put(struct json_object *jso)
  268. {
  269. if (!jso)
  270. return 0;
  271. /* Avoid invalid free and crash explicitly instead of (silently)
  272. * segfaulting.
  273. */
  274. assert(jso->_ref_count > 0);
  275. #if defined(HAVE_ATOMIC_BUILTINS) && defined(ENABLE_THREADING)
  276. /* Note: this only allow the refcount to remain correct
  277. * when multiple threads are adjusting it. It is still an error
  278. * for a thread to decrement the refcount if it doesn't "own" it,
  279. * as that can result in the thread that loses the race to 0
  280. * operating on an already-freed object.
  281. */
  282. if (__sync_sub_and_fetch(&jso->_ref_count, 1) > 0)
  283. return 0;
  284. #else
  285. if (--jso->_ref_count > 0)
  286. return 0;
  287. #endif
  288. if (jso->_user_delete)
  289. jso->_user_delete(jso, jso->_userdata);
  290. switch (jso->o_type)
  291. {
  292. case json_type_object: json_object_object_delete(jso); break;
  293. case json_type_array: json_object_array_delete(jso); break;
  294. case json_type_string: json_object_string_delete(jso); break;
  295. default: json_object_generic_delete(jso); break;
  296. }
  297. return 1;
  298. }
  299. /* generic object construction and destruction parts */
  300. static void json_object_generic_delete(struct json_object *jso)
  301. {
  302. #ifdef REFCOUNT_DEBUG
  303. MC_DEBUG("json_object_delete_%s: %p\n", json_type_to_name(jso->o_type), jso);
  304. lh_table_delete(json_object_table, jso);
  305. #endif /* REFCOUNT_DEBUG */
  306. printbuf_free(jso->_pb);
  307. free(jso);
  308. }
  309. static inline struct json_object *json_object_new(enum json_type o_type, size_t alloc_size,
  310. json_object_to_json_string_fn *to_json_string)
  311. {
  312. struct json_object *jso;
  313. jso = (struct json_object *)malloc(alloc_size);
  314. if (!jso)
  315. return NULL;
  316. jso->o_type = o_type;
  317. jso->_ref_count = 1;
  318. jso->_to_json_string = to_json_string;
  319. jso->_pb = NULL;
  320. jso->_user_delete = NULL;
  321. jso->_userdata = NULL;
  322. //jso->... // Type-specific fields must be set by caller
  323. #ifdef REFCOUNT_DEBUG
  324. lh_table_insert(json_object_table, jso, jso);
  325. MC_DEBUG("json_object_new_%s: %p\n", json_type_to_name(jso->o_type), jso);
  326. #endif /* REFCOUNT_DEBUG */
  327. return jso;
  328. }
  329. /* type checking functions */
  330. int json_object_is_type(const struct json_object *jso, enum json_type type)
  331. {
  332. if (!jso)
  333. return (type == json_type_null);
  334. return (jso->o_type == type);
  335. }
  336. enum json_type json_object_get_type(const struct json_object *jso)
  337. {
  338. if (!jso)
  339. return json_type_null;
  340. return jso->o_type;
  341. }
  342. void *json_object_get_userdata(json_object *jso)
  343. {
  344. return jso ? jso->_userdata : NULL;
  345. }
  346. void json_object_set_userdata(json_object *jso, void *userdata, json_object_delete_fn *user_delete)
  347. {
  348. // Can't return failure, so abort if we can't perform the operation.
  349. assert(jso != NULL);
  350. // First, clean up any previously existing user info
  351. if (jso->_user_delete)
  352. jso->_user_delete(jso, jso->_userdata);
  353. jso->_userdata = userdata;
  354. jso->_user_delete = user_delete;
  355. }
  356. /* set a custom conversion to string */
  357. void json_object_set_serializer(json_object *jso, json_object_to_json_string_fn *to_string_func,
  358. void *userdata, json_object_delete_fn *user_delete)
  359. {
  360. json_object_set_userdata(jso, userdata, user_delete);
  361. if (to_string_func == NULL)
  362. {
  363. // Reset to the standard serialization function
  364. switch (jso->o_type)
  365. {
  366. case json_type_null: jso->_to_json_string = NULL; break;
  367. case json_type_boolean:
  368. jso->_to_json_string = &json_object_boolean_to_json_string;
  369. break;
  370. case json_type_double:
  371. jso->_to_json_string = &json_object_double_to_json_string_default;
  372. break;
  373. case json_type_int: jso->_to_json_string = &json_object_int_to_json_string; break;
  374. case json_type_object:
  375. jso->_to_json_string = &json_object_object_to_json_string;
  376. break;
  377. case json_type_array:
  378. jso->_to_json_string = &json_object_array_to_json_string;
  379. break;
  380. case json_type_string:
  381. jso->_to_json_string = &json_object_string_to_json_string;
  382. break;
  383. }
  384. return;
  385. }
  386. jso->_to_json_string = to_string_func;
  387. }
  388. /* extended conversion to string */
  389. const char *json_object_to_json_string_length(struct json_object *jso, int flags, size_t *length)
  390. {
  391. const char *r = NULL;
  392. size_t s = 0;
  393. if (!jso)
  394. {
  395. s = 4;
  396. r = "null";
  397. }
  398. else if ((jso->_pb) || (jso->_pb = printbuf_new()))
  399. {
  400. printbuf_reset(jso->_pb);
  401. if (jso->_to_json_string(jso, jso->_pb, 0, flags) >= 0)
  402. {
  403. s = (size_t)jso->_pb->bpos;
  404. r = jso->_pb->buf;
  405. }
  406. }
  407. if (length)
  408. *length = s;
  409. return r;
  410. }
  411. const char *json_object_to_json_string_ext(struct json_object *jso, int flags)
  412. {
  413. return json_object_to_json_string_length(jso, flags, NULL);
  414. }
  415. /* backwards-compatible conversion to string */
  416. const char *json_object_to_json_string(struct json_object *jso)
  417. {
  418. return json_object_to_json_string_ext(jso, JSON_C_TO_STRING_SPACED);
  419. }
  420. static void indent(struct printbuf *pb, int level, int flags)
  421. {
  422. if (flags & JSON_C_TO_STRING_PRETTY)
  423. {
  424. if (flags & JSON_C_TO_STRING_PRETTY_TAB)
  425. {
  426. printbuf_memset(pb, -1, '\t', level);
  427. }
  428. else
  429. {
  430. printbuf_memset(pb, -1, ' ', level * 2);
  431. }
  432. }
  433. }
  434. /* json_object_object */
  435. static int json_object_object_to_json_string(struct json_object *jso, struct printbuf *pb,
  436. int level, int flags)
  437. {
  438. int had_children = 0;
  439. struct json_object_iter iter;
  440. printbuf_strappend(pb, "{" /*}*/);
  441. if (flags & JSON_C_TO_STRING_PRETTY)
  442. printbuf_strappend(pb, "\n");
  443. json_object_object_foreachC(jso, iter)
  444. {
  445. if (had_children)
  446. {
  447. printbuf_strappend(pb, ",");
  448. if (flags & JSON_C_TO_STRING_PRETTY)
  449. printbuf_strappend(pb, "\n");
  450. }
  451. had_children = 1;
  452. if (flags & JSON_C_TO_STRING_SPACED && !(flags & JSON_C_TO_STRING_PRETTY))
  453. printbuf_strappend(pb, " ");
  454. indent(pb, level + 1, flags);
  455. printbuf_strappend(pb, "\"");
  456. json_escape_str(pb, iter.key, strlen(iter.key), flags);
  457. if (flags & JSON_C_TO_STRING_SPACED)
  458. printbuf_strappend(pb, "\": ");
  459. else
  460. printbuf_strappend(pb, "\":");
  461. if (iter.val == NULL)
  462. printbuf_strappend(pb, "null");
  463. else if (iter.val->_to_json_string(iter.val, pb, level + 1, flags) < 0)
  464. return -1;
  465. }
  466. if (flags & JSON_C_TO_STRING_PRETTY)
  467. {
  468. if (had_children)
  469. printbuf_strappend(pb, "\n");
  470. indent(pb, level, flags);
  471. }
  472. if (flags & JSON_C_TO_STRING_SPACED && !(flags & JSON_C_TO_STRING_PRETTY))
  473. return printbuf_strappend(pb, /*{*/ " }");
  474. else
  475. return printbuf_strappend(pb, /*{*/ "}");
  476. }
  477. static void json_object_lh_entry_free(struct lh_entry *ent)
  478. {
  479. if (!ent->k_is_constant)
  480. free(lh_entry_k(ent));
  481. json_object_put((struct json_object *)lh_entry_v(ent));
  482. }
  483. static void json_object_object_delete(struct json_object *jso_base)
  484. {
  485. lh_table_free(JC_OBJECT(jso_base)->c_object);
  486. json_object_generic_delete(jso_base);
  487. }
  488. struct json_object *json_object_new_object(void)
  489. {
  490. struct json_object_object *jso = JSON_OBJECT_NEW(object);
  491. if (!jso)
  492. return NULL;
  493. jso->c_object =
  494. lh_kchar_table_new(JSON_OBJECT_DEF_HASH_ENTRIES, &json_object_lh_entry_free);
  495. if (!jso->c_object)
  496. {
  497. json_object_generic_delete(&jso->base);
  498. errno = ENOMEM;
  499. return NULL;
  500. }
  501. return &jso->base;
  502. }
  503. struct lh_table *json_object_get_object(const struct json_object *jso)
  504. {
  505. if (!jso)
  506. return NULL;
  507. switch (jso->o_type)
  508. {
  509. case json_type_object: return JC_OBJECT_C(jso)->c_object;
  510. default: return NULL;
  511. }
  512. }
  513. int json_object_object_add_ex(struct json_object *jso, const char *const key,
  514. struct json_object *const val, const unsigned opts)
  515. {
  516. struct json_object *existing_value = NULL;
  517. struct lh_entry *existing_entry;
  518. unsigned long hash;
  519. assert(json_object_get_type(jso) == json_type_object);
  520. // We lookup the entry and replace the value, rather than just deleting
  521. // and re-adding it, so the existing key remains valid.
  522. hash = lh_get_hash(JC_OBJECT(jso)->c_object, (const void *)key);
  523. existing_entry =
  524. (opts & JSON_C_OBJECT_ADD_KEY_IS_NEW)
  525. ? NULL
  526. : lh_table_lookup_entry_w_hash(JC_OBJECT(jso)->c_object, (const void *)key, hash);
  527. // The caller must avoid creating loops in the object tree, but do a
  528. // quick check anyway to make sure we're not creating a trivial loop.
  529. if (jso == val)
  530. return -1;
  531. if (!existing_entry)
  532. {
  533. const void *const k =
  534. (opts & JSON_C_OBJECT_KEY_IS_CONSTANT) ? (const void *)key : strdup(key);
  535. if (k == NULL)
  536. return -1;
  537. return lh_table_insert_w_hash(JC_OBJECT(jso)->c_object, k, val, hash, opts);
  538. }
  539. existing_value = (json_object *)lh_entry_v(existing_entry);
  540. if (existing_value)
  541. json_object_put(existing_value);
  542. existing_entry->v = val;
  543. return 0;
  544. }
  545. int json_object_object_add(struct json_object *jso, const char *key, struct json_object *val)
  546. {
  547. return json_object_object_add_ex(jso, key, val, 0);
  548. }
  549. int json_object_object_length(const struct json_object *jso)
  550. {
  551. assert(json_object_get_type(jso) == json_type_object);
  552. return lh_table_length(JC_OBJECT_C(jso)->c_object);
  553. }
  554. size_t json_c_object_sizeof(void)
  555. {
  556. return sizeof(struct json_object);
  557. }
  558. struct json_object *json_object_object_get(const struct json_object *jso, const char *key)
  559. {
  560. struct json_object *result = NULL;
  561. json_object_object_get_ex(jso, key, &result);
  562. return result;
  563. }
  564. json_bool json_object_object_get_ex(const struct json_object *jso, const char *key,
  565. struct json_object **value)
  566. {
  567. if (value != NULL)
  568. *value = NULL;
  569. if (NULL == jso)
  570. return 0;
  571. switch (jso->o_type)
  572. {
  573. case json_type_object:
  574. return lh_table_lookup_ex(JC_OBJECT_C(jso)->c_object, (const void *)key,
  575. (void **)value);
  576. default:
  577. if (value != NULL)
  578. *value = NULL;
  579. return 0;
  580. }
  581. }
  582. void json_object_object_del(struct json_object *jso, const char *key)
  583. {
  584. assert(json_object_get_type(jso) == json_type_object);
  585. lh_table_delete(JC_OBJECT(jso)->c_object, key);
  586. }
  587. /* json_object_boolean */
  588. static int json_object_boolean_to_json_string(struct json_object *jso, struct printbuf *pb,
  589. int level, int flags)
  590. {
  591. if (JC_BOOL(jso)->c_boolean)
  592. return printbuf_strappend(pb, "true");
  593. return printbuf_strappend(pb, "false");
  594. }
  595. struct json_object *json_object_new_boolean(json_bool b)
  596. {
  597. struct json_object_boolean *jso = JSON_OBJECT_NEW(boolean);
  598. if (!jso)
  599. return NULL;
  600. jso->c_boolean = b;
  601. return &jso->base;
  602. }
  603. json_bool json_object_get_boolean(const struct json_object *jso)
  604. {
  605. if (!jso)
  606. return 0;
  607. switch (jso->o_type)
  608. {
  609. case json_type_boolean: return JC_BOOL_C(jso)->c_boolean;
  610. case json_type_int:
  611. switch (JC_INT_C(jso)->cint_type)
  612. {
  613. case json_object_int_type_int64: return (JC_INT_C(jso)->cint.c_int64 != 0);
  614. case json_object_int_type_uint64: return (JC_INT_C(jso)->cint.c_uint64 != 0);
  615. default: json_abort("invalid cint_type");
  616. }
  617. case json_type_double: return (JC_DOUBLE_C(jso)->c_double != 0);
  618. case json_type_string: return (JC_STRING_C(jso)->len != 0);
  619. default: return 0;
  620. }
  621. }
  622. int json_object_set_boolean(struct json_object *jso, json_bool new_value)
  623. {
  624. if (!jso || jso->o_type != json_type_boolean)
  625. return 0;
  626. JC_BOOL(jso)->c_boolean = new_value;
  627. return 1;
  628. }
  629. /* json_object_int */
  630. static int json_object_int_to_json_string(struct json_object *jso, struct printbuf *pb, int level,
  631. int flags)
  632. {
  633. /* room for 19 digits, the sign char, and a null term */
  634. char sbuf[21];
  635. if (JC_INT(jso)->cint_type == json_object_int_type_int64)
  636. snprintf(sbuf, sizeof(sbuf), "%" PRId64, JC_INT(jso)->cint.c_int64);
  637. else
  638. snprintf(sbuf, sizeof(sbuf), "%" PRIu64, JC_INT(jso)->cint.c_uint64);
  639. return printbuf_memappend(pb, sbuf, strlen(sbuf));
  640. }
  641. struct json_object *json_object_new_int(int32_t i)
  642. {
  643. return json_object_new_int64(i);
  644. }
  645. int32_t json_object_get_int(const struct json_object *jso)
  646. {
  647. int64_t cint64;
  648. double cdouble;
  649. enum json_type o_type;
  650. if (!jso)
  651. return 0;
  652. o_type = jso->o_type;
  653. if (o_type == json_type_int)
  654. {
  655. const struct json_object_int *jsoint = JC_INT_C(jso);
  656. if (jsoint->cint_type == json_object_int_type_int64)
  657. {
  658. cint64 = jsoint->cint.c_int64;
  659. }
  660. else
  661. {
  662. if (jsoint->cint.c_uint64 >= INT64_MAX)
  663. cint64 = INT64_MAX;
  664. else
  665. cint64 = (int64_t)jsoint->cint.c_uint64;
  666. }
  667. }
  668. else if (o_type == json_type_string)
  669. {
  670. /*
  671. * Parse strings into 64-bit numbers, then use the
  672. * 64-to-32-bit number handling below.
  673. */
  674. if (json_parse_int64(get_string_component(jso), &cint64) != 0)
  675. return 0; /* whoops, it didn't work. */
  676. o_type = json_type_int;
  677. }
  678. switch (o_type)
  679. {
  680. case json_type_int:
  681. /* Make sure we return the correct values for out of range numbers. */
  682. if (cint64 <= INT32_MIN)
  683. return INT32_MIN;
  684. if (cint64 >= INT32_MAX)
  685. return INT32_MAX;
  686. return (int32_t)cint64;
  687. case json_type_double:
  688. cdouble = JC_DOUBLE_C(jso)->c_double;
  689. if (cdouble <= INT32_MIN)
  690. return INT32_MIN;
  691. if (cdouble >= INT32_MAX)
  692. return INT32_MAX;
  693. return (int32_t)cdouble;
  694. case json_type_boolean: return JC_BOOL_C(jso)->c_boolean;
  695. default: return 0;
  696. }
  697. }
  698. int json_object_set_int(struct json_object *jso, int new_value)
  699. {
  700. return json_object_set_int64(jso, (int64_t)new_value);
  701. }
  702. struct json_object *json_object_new_int64(int64_t i)
  703. {
  704. struct json_object_int *jso = JSON_OBJECT_NEW(int);
  705. if (!jso)
  706. return NULL;
  707. jso->cint.c_int64 = i;
  708. jso->cint_type = json_object_int_type_int64;
  709. return &jso->base;
  710. }
  711. struct json_object *json_object_new_uint64(uint64_t i)
  712. {
  713. struct json_object_int *jso = JSON_OBJECT_NEW(int);
  714. if (!jso)
  715. return NULL;
  716. jso->cint.c_uint64 = i;
  717. jso->cint_type = json_object_int_type_uint64;
  718. return &jso->base;
  719. }
  720. int64_t json_object_get_int64(const struct json_object *jso)
  721. {
  722. int64_t cint;
  723. if (!jso)
  724. return 0;
  725. switch (jso->o_type)
  726. {
  727. case json_type_int:
  728. {
  729. const struct json_object_int *jsoint = JC_INT_C(jso);
  730. switch (jsoint->cint_type)
  731. {
  732. case json_object_int_type_int64: return jsoint->cint.c_int64;
  733. case json_object_int_type_uint64:
  734. if (jsoint->cint.c_uint64 >= INT64_MAX)
  735. return INT64_MAX;
  736. return (int64_t)jsoint->cint.c_uint64;
  737. default: json_abort("invalid cint_type");
  738. }
  739. }
  740. case json_type_double:
  741. // INT64_MAX can't be exactly represented as a double
  742. // so cast to tell the compiler it's ok to round up.
  743. if (JC_DOUBLE_C(jso)->c_double >= (double)INT64_MAX)
  744. return INT64_MAX;
  745. if (JC_DOUBLE_C(jso)->c_double <= INT64_MIN)
  746. return INT64_MIN;
  747. return (int64_t)JC_DOUBLE_C(jso)->c_double;
  748. case json_type_boolean: return JC_BOOL_C(jso)->c_boolean;
  749. case json_type_string:
  750. if (json_parse_int64(get_string_component(jso), &cint) == 0)
  751. return cint;
  752. /* FALLTHRU */
  753. default: return 0;
  754. }
  755. }
  756. uint64_t json_object_get_uint64(const struct json_object *jso)
  757. {
  758. uint64_t cuint;
  759. if (!jso)
  760. return 0;
  761. switch (jso->o_type)
  762. {
  763. case json_type_int:
  764. {
  765. const struct json_object_int *jsoint = JC_INT_C(jso);
  766. switch (jsoint->cint_type)
  767. {
  768. case json_object_int_type_int64:
  769. if (jsoint->cint.c_int64 < 0)
  770. return 0;
  771. return (uint64_t)jsoint->cint.c_int64;
  772. case json_object_int_type_uint64: return jsoint->cint.c_uint64;
  773. default: json_abort("invalid cint_type");
  774. }
  775. }
  776. case json_type_double:
  777. // UINT64_MAX can't be exactly represented as a double
  778. // so cast to tell the compiler it's ok to round up.
  779. if (JC_DOUBLE_C(jso)->c_double >= (double)UINT64_MAX)
  780. return UINT64_MAX;
  781. if (JC_DOUBLE_C(jso)->c_double < 0)
  782. return 0;
  783. return (uint64_t)JC_DOUBLE_C(jso)->c_double;
  784. case json_type_boolean: return JC_BOOL_C(jso)->c_boolean;
  785. case json_type_string:
  786. if (json_parse_uint64(get_string_component(jso), &cuint) == 0)
  787. return cuint;
  788. /* FALLTHRU */
  789. default: return 0;
  790. }
  791. }
  792. int json_object_set_int64(struct json_object *jso, int64_t new_value)
  793. {
  794. if (!jso || jso->o_type != json_type_int)
  795. return 0;
  796. JC_INT(jso)->cint.c_int64 = new_value;
  797. JC_INT(jso)->cint_type = json_object_int_type_int64;
  798. return 1;
  799. }
  800. int json_object_set_uint64(struct json_object *jso, uint64_t new_value)
  801. {
  802. if (!jso || jso->o_type != json_type_int)
  803. return 0;
  804. JC_INT(jso)->cint.c_uint64 = new_value;
  805. JC_INT(jso)->cint_type = json_object_int_type_uint64;
  806. return 1;
  807. }
  808. int json_object_int_inc(struct json_object *jso, int64_t val)
  809. {
  810. struct json_object_int *jsoint;
  811. if (!jso || jso->o_type != json_type_int)
  812. return 0;
  813. jsoint = JC_INT(jso);
  814. switch (jsoint->cint_type)
  815. {
  816. case json_object_int_type_int64:
  817. if (val > 0 && jsoint->cint.c_int64 > INT64_MAX - val)
  818. {
  819. jsoint->cint.c_uint64 = (uint64_t)jsoint->cint.c_int64 + (uint64_t)val;
  820. jsoint->cint_type = json_object_int_type_uint64;
  821. }
  822. else if (val < 0 && jsoint->cint.c_int64 < INT64_MIN - val)
  823. {
  824. jsoint->cint.c_int64 = INT64_MIN;
  825. }
  826. else
  827. {
  828. jsoint->cint.c_int64 += val;
  829. }
  830. return 1;
  831. case json_object_int_type_uint64:
  832. if (val > 0 && jsoint->cint.c_uint64 > UINT64_MAX - (uint64_t)val)
  833. {
  834. jsoint->cint.c_uint64 = UINT64_MAX;
  835. }
  836. else if (val < 0 && jsoint->cint.c_uint64 < (uint64_t)(-val))
  837. {
  838. jsoint->cint.c_int64 = (int64_t)jsoint->cint.c_uint64 + val;
  839. jsoint->cint_type = json_object_int_type_int64;
  840. }
  841. else if (val < 0 && jsoint->cint.c_uint64 >= (uint64_t)(-val))
  842. {
  843. jsoint->cint.c_uint64 -= (uint64_t)(-val);
  844. }
  845. else
  846. {
  847. jsoint->cint.c_uint64 += val;
  848. }
  849. return 1;
  850. default: json_abort("invalid cint_type");
  851. }
  852. }
  853. /* json_object_double */
  854. #if defined(HAVE___THREAD)
  855. // i.e. __thread or __declspec(thread)
  856. static SPEC___THREAD char *tls_serialization_float_format = NULL;
  857. #endif
  858. static char *global_serialization_float_format = NULL;
  859. int json_c_set_serialization_double_format(const char *double_format, int global_or_thread)
  860. {
  861. if (global_or_thread == JSON_C_OPTION_GLOBAL)
  862. {
  863. #if defined(HAVE___THREAD)
  864. if (tls_serialization_float_format)
  865. {
  866. free(tls_serialization_float_format);
  867. tls_serialization_float_format = NULL;
  868. }
  869. #endif
  870. if (global_serialization_float_format)
  871. free(global_serialization_float_format);
  872. global_serialization_float_format = double_format ? strdup(double_format) : NULL;
  873. }
  874. else if (global_or_thread == JSON_C_OPTION_THREAD)
  875. {
  876. #if defined(HAVE___THREAD)
  877. if (tls_serialization_float_format)
  878. {
  879. free(tls_serialization_float_format);
  880. tls_serialization_float_format = NULL;
  881. }
  882. tls_serialization_float_format = double_format ? strdup(double_format) : NULL;
  883. #else
  884. _json_c_set_last_err("json_c_set_option: not compiled with __thread support\n");
  885. return -1;
  886. #endif
  887. }
  888. else
  889. {
  890. _json_c_set_last_err("json_c_set_option: invalid global_or_thread value: %d\n",
  891. global_or_thread);
  892. return -1;
  893. }
  894. return 0;
  895. }
  896. static int json_object_double_to_json_string_format(struct json_object *jso, struct printbuf *pb,
  897. int level, int flags, const char *format)
  898. {
  899. struct json_object_double *jsodbl = JC_DOUBLE(jso);
  900. char buf[128], *p, *q;
  901. int size;
  902. /* Although JSON RFC does not support
  903. * NaN or Infinity as numeric values
  904. * ECMA 262 section 9.8.1 defines
  905. * how to handle these cases as strings
  906. */
  907. if (isnan(jsodbl->c_double))
  908. {
  909. size = snprintf(buf, sizeof(buf), "NaN");
  910. }
  911. else if (isinf(jsodbl->c_double))
  912. {
  913. if (jsodbl->c_double > 0)
  914. size = snprintf(buf, sizeof(buf), "Infinity");
  915. else
  916. size = snprintf(buf, sizeof(buf), "-Infinity");
  917. }
  918. else
  919. {
  920. const char *std_format = "%.17g";
  921. int format_drops_decimals = 0;
  922. int looks_numeric = 0;
  923. if (!format)
  924. {
  925. #if defined(HAVE___THREAD)
  926. if (tls_serialization_float_format)
  927. format = tls_serialization_float_format;
  928. else
  929. #endif
  930. if (global_serialization_float_format)
  931. format = global_serialization_float_format;
  932. else
  933. format = std_format;
  934. }
  935. size = snprintf(buf, sizeof(buf), format, jsodbl->c_double);
  936. if (size < 0)
  937. return -1;
  938. p = strchr(buf, ',');
  939. if (p)
  940. *p = '.';
  941. else
  942. p = strchr(buf, '.');
  943. if (format == std_format || strstr(format, ".0f") == NULL)
  944. format_drops_decimals = 1;
  945. looks_numeric = /* Looks like *some* kind of number */
  946. isdigit((unsigned char)buf[0]) ||
  947. (size > 1 && buf[0] == '-' && isdigit((unsigned char)buf[1]));
  948. if (size < (int)sizeof(buf) - 2 && looks_numeric && !p && /* Has no decimal point */
  949. strchr(buf, 'e') == NULL && /* Not scientific notation */
  950. format_drops_decimals)
  951. {
  952. // Ensure it looks like a float, even if snprintf didn't,
  953. // unless a custom format is set to omit the decimal.
  954. strcat(buf, ".0");
  955. size += 2;
  956. }
  957. if (p && (flags & JSON_C_TO_STRING_NOZERO))
  958. {
  959. /* last useful digit, always keep 1 zero */
  960. p++;
  961. for (q = p; *q; q++)
  962. {
  963. if (*q != '0')
  964. p = q;
  965. }
  966. /* drop trailing zeroes */
  967. if (*p != 0)
  968. *(++p) = 0;
  969. size = p - buf;
  970. }
  971. }
  972. // although unlikely, snprintf can fail
  973. if (size < 0)
  974. return -1;
  975. if (size >= (int)sizeof(buf))
  976. // The standard formats are guaranteed not to overrun the buffer,
  977. // but if a custom one happens to do so, just silently truncate.
  978. size = sizeof(buf) - 1;
  979. printbuf_memappend(pb, buf, size);
  980. return size;
  981. }
  982. static int json_object_double_to_json_string_default(struct json_object *jso, struct printbuf *pb,
  983. int level, int flags)
  984. {
  985. return json_object_double_to_json_string_format(jso, pb, level, flags, NULL);
  986. }
  987. int json_object_double_to_json_string(struct json_object *jso, struct printbuf *pb, int level,
  988. int flags)
  989. {
  990. return json_object_double_to_json_string_format(jso, pb, level, flags,
  991. (const char *)jso->_userdata);
  992. }
  993. struct json_object *json_object_new_double(double d)
  994. {
  995. struct json_object_double *jso = JSON_OBJECT_NEW(double);
  996. if (!jso)
  997. return NULL;
  998. jso->base._to_json_string = &json_object_double_to_json_string_default;
  999. jso->c_double = d;
  1000. return &jso->base;
  1001. }
  1002. struct json_object *json_object_new_double_s(double d, const char *ds)
  1003. {
  1004. char *new_ds;
  1005. struct json_object *jso = json_object_new_double(d);
  1006. if (!jso)
  1007. return NULL;
  1008. new_ds = strdup(ds);
  1009. if (!new_ds)
  1010. {
  1011. json_object_generic_delete(jso);
  1012. errno = ENOMEM;
  1013. return NULL;
  1014. }
  1015. json_object_set_serializer(jso, _json_object_userdata_to_json_string, new_ds,
  1016. json_object_free_userdata);
  1017. return jso;
  1018. }
  1019. /*
  1020. * A wrapper around json_object_userdata_to_json_string() used only
  1021. * by json_object_new_double_s() just so json_object_set_double() can
  1022. * detect when it needs to reset the serializer to the default.
  1023. */
  1024. static int _json_object_userdata_to_json_string(struct json_object *jso, struct printbuf *pb,
  1025. int level, int flags)
  1026. {
  1027. return json_object_userdata_to_json_string(jso, pb, level, flags);
  1028. }
  1029. int json_object_userdata_to_json_string(struct json_object *jso, struct printbuf *pb, int level,
  1030. int flags)
  1031. {
  1032. int userdata_len = strlen((const char *)jso->_userdata);
  1033. printbuf_memappend(pb, (const char *)jso->_userdata, userdata_len);
  1034. return userdata_len;
  1035. }
  1036. void json_object_free_userdata(struct json_object *jso, void *userdata)
  1037. {
  1038. free(userdata);
  1039. }
  1040. double json_object_get_double(const struct json_object *jso)
  1041. {
  1042. double cdouble;
  1043. char *errPtr = NULL;
  1044. if (!jso)
  1045. return 0.0;
  1046. switch (jso->o_type)
  1047. {
  1048. case json_type_double: return JC_DOUBLE_C(jso)->c_double;
  1049. case json_type_int:
  1050. switch (JC_INT_C(jso)->cint_type)
  1051. {
  1052. case json_object_int_type_int64: return JC_INT_C(jso)->cint.c_int64;
  1053. case json_object_int_type_uint64: return JC_INT_C(jso)->cint.c_uint64;
  1054. default: json_abort("invalid cint_type");
  1055. }
  1056. case json_type_boolean: return JC_BOOL_C(jso)->c_boolean;
  1057. case json_type_string:
  1058. errno = 0;
  1059. cdouble = strtod(get_string_component(jso), &errPtr);
  1060. /* if conversion stopped at the first character, return 0.0 */
  1061. if (errPtr == get_string_component(jso))
  1062. {
  1063. errno = EINVAL;
  1064. return 0.0;
  1065. }
  1066. /*
  1067. * Check that the conversion terminated on something sensible
  1068. *
  1069. * For example, { "pay" : 123AB } would parse as 123.
  1070. */
  1071. if (*errPtr != '\0')
  1072. {
  1073. errno = EINVAL;
  1074. return 0.0;
  1075. }
  1076. /*
  1077. * If strtod encounters a string which would exceed the
  1078. * capacity of a double, it returns +/- HUGE_VAL and sets
  1079. * errno to ERANGE. But +/- HUGE_VAL is also a valid result
  1080. * from a conversion, so we need to check errno.
  1081. *
  1082. * Underflow also sets errno to ERANGE, but it returns 0 in
  1083. * that case, which is what we will return anyway.
  1084. *
  1085. * See CERT guideline ERR30-C
  1086. */
  1087. if ((HUGE_VAL == cdouble || -HUGE_VAL == cdouble) && (ERANGE == errno))
  1088. cdouble = 0.0;
  1089. return cdouble;
  1090. default: errno = EINVAL; return 0.0;
  1091. }
  1092. }
  1093. int json_object_set_double(struct json_object *jso, double new_value)
  1094. {
  1095. if (!jso || jso->o_type != json_type_double)
  1096. return 0;
  1097. JC_DOUBLE(jso)->c_double = new_value;
  1098. if (jso->_to_json_string == &_json_object_userdata_to_json_string)
  1099. json_object_set_serializer(jso, NULL, NULL, NULL);
  1100. return 1;
  1101. }
  1102. /* json_object_string */
  1103. static int json_object_string_to_json_string(struct json_object *jso, struct printbuf *pb,
  1104. int level, int flags)
  1105. {
  1106. ssize_t len = JC_STRING(jso)->len;
  1107. printbuf_strappend(pb, "\"");
  1108. json_escape_str(pb, get_string_component(jso), len < 0 ? -(ssize_t)len : len, flags);
  1109. printbuf_strappend(pb, "\"");
  1110. return 0;
  1111. }
  1112. static void json_object_string_delete(struct json_object *jso)
  1113. {
  1114. if (JC_STRING(jso)->len < 0)
  1115. free(JC_STRING(jso)->c_string.pdata);
  1116. json_object_generic_delete(jso);
  1117. }
  1118. static struct json_object *_json_object_new_string(const char *s, const size_t len)
  1119. {
  1120. size_t objsize;
  1121. struct json_object_string *jso;
  1122. /*
  1123. * Structures Actual memory layout
  1124. * ------------------- --------------------
  1125. * [json_object_string [json_object_string
  1126. * [json_object] [json_object]
  1127. * ...other fields... ...other fields...
  1128. * c_string] len
  1129. * bytes
  1130. * of
  1131. * string
  1132. * data
  1133. * \0]
  1134. */
  1135. if (len > (SSIZE_T_MAX - (sizeof(*jso) - sizeof(jso->c_string)) - 1))
  1136. return NULL;
  1137. objsize = (sizeof(*jso) - sizeof(jso->c_string)) + len + 1;
  1138. if (len < sizeof(void *))
  1139. // We need a minimum size to support json_object_set_string() mutability
  1140. // so we can stuff a pointer into pdata :(
  1141. objsize += sizeof(void *) - len;
  1142. jso = (struct json_object_string *)json_object_new(json_type_string, objsize,
  1143. &json_object_string_to_json_string);
  1144. if (!jso)
  1145. return NULL;
  1146. jso->len = len;
  1147. memcpy(jso->c_string.idata, s, len);
  1148. jso->c_string.idata[len] = '\0';
  1149. return &jso->base;
  1150. }
  1151. struct json_object *json_object_new_string(const char *s)
  1152. {
  1153. return _json_object_new_string(s, strlen(s));
  1154. }
  1155. struct json_object *json_object_new_string_len(const char *s, const int len)
  1156. {
  1157. return _json_object_new_string(s, len);
  1158. }
  1159. const char *json_object_get_string(struct json_object *jso)
  1160. {
  1161. if (!jso)
  1162. return NULL;
  1163. switch (jso->o_type)
  1164. {
  1165. case json_type_string: return get_string_component(jso);
  1166. default: return json_object_to_json_string(jso);
  1167. }
  1168. }
  1169. int json_object_get_string_len(const struct json_object *jso)
  1170. {
  1171. ssize_t len;
  1172. if (!jso)
  1173. return 0;
  1174. switch (jso->o_type)
  1175. {
  1176. case json_type_string:
  1177. {
  1178. len = JC_STRING_C(jso)->len;
  1179. return (len < 0) ? -(ssize_t)len : len;
  1180. }
  1181. default: return 0;
  1182. }
  1183. }
  1184. static int _json_object_set_string_len(json_object *jso, const char *s, size_t len)
  1185. {
  1186. char *dstbuf;
  1187. ssize_t curlen;
  1188. ssize_t newlen;
  1189. if (jso == NULL || jso->o_type != json_type_string)
  1190. return 0;
  1191. if (len >= SSIZE_T_MAX - 1)
  1192. // jso->len is a signed ssize_t, so it can't hold the
  1193. // full size_t range.
  1194. return 0;
  1195. dstbuf = get_string_component_mutable(jso);
  1196. curlen = JC_STRING(jso)->len;
  1197. if (curlen < 0)
  1198. curlen = -curlen;
  1199. newlen = len;
  1200. if ((ssize_t)len > curlen)
  1201. {
  1202. // We have no way to return the new ptr from realloc(jso, newlen)
  1203. // and we have no way of knowing whether there's extra room available
  1204. // so we need to stuff a pointer in to pdata :(
  1205. dstbuf = (char *)malloc(len + 1);
  1206. if (dstbuf == NULL)
  1207. return 0;
  1208. if (JC_STRING(jso)->len < 0)
  1209. free(JC_STRING(jso)->c_string.pdata);
  1210. JC_STRING(jso)->c_string.pdata = dstbuf;
  1211. newlen = -(ssize_t)len;
  1212. }
  1213. else if (JC_STRING(jso)->len < 0)
  1214. {
  1215. // We've got enough room in the separate allocated buffer,
  1216. // so use it as-is and continue to indicate that pdata is used.
  1217. newlen = -(ssize_t)len;
  1218. }
  1219. memcpy(dstbuf, (const void *)s, len);
  1220. dstbuf[len] = '\0';
  1221. JC_STRING(jso)->len = newlen;
  1222. return 1;
  1223. }
  1224. int json_object_set_string(json_object *jso, const char *s)
  1225. {
  1226. return _json_object_set_string_len(jso, s, strlen(s));
  1227. }
  1228. int json_object_set_string_len(json_object *jso, const char *s, int len)
  1229. {
  1230. return _json_object_set_string_len(jso, s, len);
  1231. }
  1232. /* json_object_array */
  1233. static int json_object_array_to_json_string(struct json_object *jso, struct printbuf *pb, int level,
  1234. int flags)
  1235. {
  1236. int had_children = 0;
  1237. size_t ii;
  1238. printbuf_strappend(pb, "[");
  1239. if (flags & JSON_C_TO_STRING_PRETTY)
  1240. printbuf_strappend(pb, "\n");
  1241. for (ii = 0; ii < json_object_array_length(jso); ii++)
  1242. {
  1243. struct json_object *val;
  1244. if (had_children)
  1245. {
  1246. printbuf_strappend(pb, ",");
  1247. if (flags & JSON_C_TO_STRING_PRETTY)
  1248. printbuf_strappend(pb, "\n");
  1249. }
  1250. had_children = 1;
  1251. if (flags & JSON_C_TO_STRING_SPACED && !(flags & JSON_C_TO_STRING_PRETTY))
  1252. printbuf_strappend(pb, " ");
  1253. indent(pb, level + 1, flags);
  1254. val = json_object_array_get_idx(jso, ii);
  1255. if (val == NULL)
  1256. printbuf_strappend(pb, "null");
  1257. else if (val->_to_json_string(val, pb, level + 1, flags) < 0)
  1258. return -1;
  1259. }
  1260. if (flags & JSON_C_TO_STRING_PRETTY)
  1261. {
  1262. if (had_children)
  1263. printbuf_strappend(pb, "\n");
  1264. indent(pb, level, flags);
  1265. }
  1266. if (flags & JSON_C_TO_STRING_SPACED && !(flags & JSON_C_TO_STRING_PRETTY))
  1267. return printbuf_strappend(pb, " ]");
  1268. return printbuf_strappend(pb, "]");
  1269. }
  1270. static void json_object_array_entry_free(void *data)
  1271. {
  1272. json_object_put((struct json_object *)data);
  1273. }
  1274. static void json_object_array_delete(struct json_object *jso)
  1275. {
  1276. array_list_free(JC_ARRAY(jso)->c_array);
  1277. json_object_generic_delete(jso);
  1278. }
  1279. struct json_object *json_object_new_array(void)
  1280. {
  1281. struct json_object_array *jso = JSON_OBJECT_NEW(array);
  1282. if (!jso)
  1283. return NULL;
  1284. jso->c_array = array_list_new(&json_object_array_entry_free);
  1285. if (jso->c_array == NULL)
  1286. {
  1287. free(jso);
  1288. return NULL;
  1289. }
  1290. return &jso->base;
  1291. }
  1292. struct array_list *json_object_get_array(const struct json_object *jso)
  1293. {
  1294. if (!jso)
  1295. return NULL;
  1296. switch (jso->o_type)
  1297. {
  1298. case json_type_array: return JC_ARRAY_C(jso)->c_array;
  1299. default: return NULL;
  1300. }
  1301. }
  1302. void json_object_array_sort(struct json_object *jso, int (*sort_fn)(const void *, const void *))
  1303. {
  1304. assert(json_object_get_type(jso) == json_type_array);
  1305. array_list_sort(JC_ARRAY(jso)->c_array, sort_fn);
  1306. }
  1307. struct json_object *json_object_array_bsearch(const struct json_object *key,
  1308. const struct json_object *jso,
  1309. int (*sort_fn)(const void *, const void *))
  1310. {
  1311. struct json_object **result;
  1312. assert(json_object_get_type(jso) == json_type_array);
  1313. result = (struct json_object **)array_list_bsearch((const void **)(void *)&key,
  1314. JC_ARRAY_C(jso)->c_array, sort_fn);
  1315. if (!result)
  1316. return NULL;
  1317. return *result;
  1318. }
  1319. size_t json_object_array_length(const struct json_object *jso)
  1320. {
  1321. assert(json_object_get_type(jso) == json_type_array);
  1322. return array_list_length(JC_ARRAY_C(jso)->c_array);
  1323. }
  1324. int json_object_array_add(struct json_object *jso, struct json_object *val)
  1325. {
  1326. assert(json_object_get_type(jso) == json_type_array);
  1327. return array_list_add(JC_ARRAY(jso)->c_array, val);
  1328. }
  1329. int json_object_array_put_idx(struct json_object *jso, size_t idx, struct json_object *val)
  1330. {
  1331. assert(json_object_get_type(jso) == json_type_array);
  1332. return array_list_put_idx(JC_ARRAY(jso)->c_array, idx, val);
  1333. }
  1334. int json_object_array_del_idx(struct json_object *jso, size_t idx, size_t count)
  1335. {
  1336. assert(json_object_get_type(jso) == json_type_array);
  1337. return array_list_del_idx(JC_ARRAY(jso)->c_array, idx, count);
  1338. }
  1339. struct json_object *json_object_array_get_idx(const struct json_object *jso, size_t idx)
  1340. {
  1341. assert(json_object_get_type(jso) == json_type_array);
  1342. return (struct json_object *)array_list_get_idx(JC_ARRAY_C(jso)->c_array, idx);
  1343. }
  1344. static int json_array_equal(struct json_object *jso1, struct json_object *jso2)
  1345. {
  1346. size_t len, i;
  1347. len = json_object_array_length(jso1);
  1348. if (len != json_object_array_length(jso2))
  1349. return 0;
  1350. for (i = 0; i < len; i++)
  1351. {
  1352. if (!json_object_equal(json_object_array_get_idx(jso1, i),
  1353. json_object_array_get_idx(jso2, i)))
  1354. return 0;
  1355. }
  1356. return 1;
  1357. }
  1358. struct json_object *json_object_new_null(void)
  1359. {
  1360. return NULL;
  1361. }
  1362. static int json_object_all_values_equal(struct json_object *jso1, struct json_object *jso2)
  1363. {
  1364. struct json_object_iter iter;
  1365. struct json_object *sub;
  1366. assert(json_object_get_type(jso1) == json_type_object);
  1367. assert(json_object_get_type(jso2) == json_type_object);
  1368. /* Iterate over jso1 keys and see if they exist and are equal in jso2 */
  1369. json_object_object_foreachC(jso1, iter)
  1370. {
  1371. if (!lh_table_lookup_ex(JC_OBJECT(jso2)->c_object, (void *)iter.key,
  1372. (void **)(void *)&sub))
  1373. return 0;
  1374. if (!json_object_equal(iter.val, sub))
  1375. return 0;
  1376. }
  1377. /* Iterate over jso2 keys to see if any exist that are not in jso1 */
  1378. json_object_object_foreachC(jso2, iter)
  1379. {
  1380. if (!lh_table_lookup_ex(JC_OBJECT(jso1)->c_object, (void *)iter.key,
  1381. (void **)(void *)&sub))
  1382. return 0;
  1383. }
  1384. return 1;
  1385. }
  1386. int json_object_equal(struct json_object *jso1, struct json_object *jso2)
  1387. {
  1388. if (jso1 == jso2)
  1389. return 1;
  1390. if (!jso1 || !jso2)
  1391. return 0;
  1392. if (jso1->o_type != jso2->o_type)
  1393. return 0;
  1394. switch (jso1->o_type)
  1395. {
  1396. case json_type_boolean: return (JC_BOOL(jso1)->c_boolean == JC_BOOL(jso2)->c_boolean);
  1397. case json_type_double: return (JC_DOUBLE(jso1)->c_double == JC_DOUBLE(jso2)->c_double);
  1398. case json_type_int:
  1399. {
  1400. struct json_object_int *int1 = JC_INT(jso1);
  1401. struct json_object_int *int2 = JC_INT(jso2);
  1402. if (int1->cint_type == json_object_int_type_int64)
  1403. {
  1404. if (int2->cint_type == json_object_int_type_int64)
  1405. return (int1->cint.c_int64 == int2->cint.c_int64);
  1406. if (int1->cint.c_int64 < 0)
  1407. return 0;
  1408. return ((uint64_t)int1->cint.c_int64 == int2->cint.c_uint64);
  1409. }
  1410. // else jso1 is a uint64
  1411. if (int2->cint_type == json_object_int_type_uint64)
  1412. return (int1->cint.c_uint64 == int2->cint.c_uint64);
  1413. if (int2->cint.c_int64 < 0)
  1414. return 0;
  1415. return (int1->cint.c_uint64 == (uint64_t)int2->cint.c_int64);
  1416. }
  1417. case json_type_string:
  1418. {
  1419. return (json_object_get_string_len(jso1) == json_object_get_string_len(jso2) &&
  1420. memcmp(get_string_component(jso1), get_string_component(jso2),
  1421. json_object_get_string_len(jso1)) == 0);
  1422. }
  1423. case json_type_object: return json_object_all_values_equal(jso1, jso2);
  1424. case json_type_array: return json_array_equal(jso1, jso2);
  1425. case json_type_null: return 1;
  1426. };
  1427. return 0;
  1428. }
  1429. static int json_object_copy_serializer_data(struct json_object *src, struct json_object *dst)
  1430. {
  1431. if (!src->_userdata && !src->_user_delete)
  1432. return 0;
  1433. if (dst->_to_json_string == json_object_userdata_to_json_string ||
  1434. dst->_to_json_string == _json_object_userdata_to_json_string)
  1435. {
  1436. dst->_userdata = strdup(src->_userdata);
  1437. }
  1438. // else if ... other supported serializers ...
  1439. else
  1440. {
  1441. _json_c_set_last_err(
  1442. "json_object_deep_copy: unable to copy unknown serializer data: %p\n",
  1443. dst->_to_json_string);
  1444. return -1;
  1445. }
  1446. dst->_user_delete = src->_user_delete;
  1447. return 0;
  1448. }
  1449. /**
  1450. * The default shallow copy implementation. Simply creates a new object of the same
  1451. * type but does *not* copy over _userdata nor retain any custom serializer.
  1452. * If custom serializers are in use, json_object_deep_copy() must be passed a shallow copy
  1453. * implementation that is aware of how to copy them.
  1454. *
  1455. * This always returns -1 or 1. It will never return 2 since it does not copy the serializer.
  1456. */
  1457. int json_c_shallow_copy_default(json_object *src, json_object *parent, const char *key,
  1458. size_t index, json_object **dst)
  1459. {
  1460. switch (src->o_type)
  1461. {
  1462. case json_type_boolean: *dst = json_object_new_boolean(JC_BOOL(src)->c_boolean); break;
  1463. case json_type_double: *dst = json_object_new_double(JC_DOUBLE(src)->c_double); break;
  1464. case json_type_int:
  1465. switch (JC_INT(src)->cint_type)
  1466. {
  1467. case json_object_int_type_int64:
  1468. *dst = json_object_new_int64(JC_INT(src)->cint.c_int64);
  1469. break;
  1470. case json_object_int_type_uint64:
  1471. *dst = json_object_new_uint64(JC_INT(src)->cint.c_uint64);
  1472. break;
  1473. default: json_abort("invalid cint_type");
  1474. }
  1475. break;
  1476. case json_type_string: *dst = json_object_new_string(get_string_component(src)); break;
  1477. case json_type_object: *dst = json_object_new_object(); break;
  1478. case json_type_array: *dst = json_object_new_array(); break;
  1479. default: errno = EINVAL; return -1;
  1480. }
  1481. if (!*dst)
  1482. {
  1483. errno = ENOMEM;
  1484. return -1;
  1485. }
  1486. (*dst)->_to_json_string = src->_to_json_string;
  1487. // _userdata and _user_delete are copied later
  1488. return 1;
  1489. }
  1490. /*
  1491. * The actual guts of json_object_deep_copy(), with a few additional args
  1492. * needed so we can keep track of where we are within the object tree.
  1493. *
  1494. * Note: caller is responsible for freeing *dst if this fails and returns -1.
  1495. */
  1496. static int json_object_deep_copy_recursive(struct json_object *src, struct json_object *parent,
  1497. const char *key_in_parent, size_t index_in_parent,
  1498. struct json_object **dst,
  1499. json_c_shallow_copy_fn *shallow_copy)
  1500. {
  1501. struct json_object_iter iter;
  1502. size_t src_array_len, ii;
  1503. int shallow_copy_rc = 0;
  1504. shallow_copy_rc = shallow_copy(src, parent, key_in_parent, index_in_parent, dst);
  1505. /* -1=error, 1=object created ok, 2=userdata set */
  1506. if (shallow_copy_rc < 1)
  1507. {
  1508. errno = EINVAL;
  1509. return -1;
  1510. }
  1511. assert(*dst != NULL);
  1512. switch (src->o_type)
  1513. {
  1514. case json_type_object:
  1515. json_object_object_foreachC(src, iter)
  1516. {
  1517. struct json_object *jso = NULL;
  1518. /* This handles the `json_type_null` case */
  1519. if (!iter.val)
  1520. jso = NULL;
  1521. else if (json_object_deep_copy_recursive(iter.val, src, iter.key, -1, &jso,
  1522. shallow_copy) < 0)
  1523. {
  1524. json_object_put(jso);
  1525. return -1;
  1526. }
  1527. if (json_object_object_add(*dst, iter.key, jso) < 0)
  1528. {
  1529. json_object_put(jso);
  1530. return -1;
  1531. }
  1532. }
  1533. break;
  1534. case json_type_array:
  1535. src_array_len = json_object_array_length(src);
  1536. for (ii = 0; ii < src_array_len; ii++)
  1537. {
  1538. struct json_object *jso = NULL;
  1539. struct json_object *jso1 = json_object_array_get_idx(src, ii);
  1540. /* This handles the `json_type_null` case */
  1541. if (!jso1)
  1542. jso = NULL;
  1543. else if (json_object_deep_copy_recursive(jso1, src, NULL, ii, &jso,
  1544. shallow_copy) < 0)
  1545. {
  1546. json_object_put(jso);
  1547. return -1;
  1548. }
  1549. if (json_object_array_add(*dst, jso) < 0)
  1550. {
  1551. json_object_put(jso);
  1552. return -1;
  1553. }
  1554. }
  1555. break;
  1556. default:
  1557. break;
  1558. /* else, nothing to do, shallow_copy already did. */
  1559. }
  1560. if (shallow_copy_rc != 2)
  1561. return json_object_copy_serializer_data(src, *dst);
  1562. return 0;
  1563. }
  1564. int json_object_deep_copy(struct json_object *src, struct json_object **dst,
  1565. json_c_shallow_copy_fn *shallow_copy)
  1566. {
  1567. int rc;
  1568. /* Check if arguments are sane ; *dst must not point to a non-NULL object */
  1569. if (!src || !dst || *dst)
  1570. {
  1571. errno = EINVAL;
  1572. return -1;
  1573. }
  1574. if (shallow_copy == NULL)
  1575. shallow_copy = json_c_shallow_copy_default;
  1576. rc = json_object_deep_copy_recursive(src, NULL, NULL, -1, dst, shallow_copy);
  1577. if (rc < 0)
  1578. {
  1579. json_object_put(*dst);
  1580. *dst = NULL;
  1581. }
  1582. return rc;
  1583. }
  1584. static void json_abort(const char *message)
  1585. {
  1586. if (message != NULL)
  1587. fprintf(stderr, "json-c aborts with error: %s\n", message);
  1588. abort();
  1589. }