blob: 2a5621b00019cf8503e9392049f04d27fae52b54 [file] [log] [blame]
Michael Clark4504df72007-03-13 08:26:20 +00001/*
Michael Clark837240f2007-03-13 08:26:25 +00002 * $Id: json_util.c,v 1.4 2006/01/30 23:07:57 mclark Exp $
Michael Clark4504df72007-03-13 08:26:20 +00003 *
Michael Clarkf6a6e482007-03-13 08:26:23 +00004 * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
Michael Clark4504df72007-03-13 08:26:20 +00005 * Michael Clark <michael@metaparadigm.com>
6 *
Michael Clarkf6a6e482007-03-13 08:26:23 +00007 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the MIT license. See COPYING for details.
Michael Clark4504df72007-03-13 08:26:20 +00009 *
10 */
11
12#include "config.h"
ehaszla252669c2010-12-07 18:15:35 +000013#undef realloc
Michael Clark4504df72007-03-13 08:26:20 +000014
Michael Clarkf0d08882007-03-13 08:26:18 +000015#include <stdio.h>
16#include <stdlib.h>
Michael Clarkc8f4a6e2007-12-07 02:44:24 +000017#include <stddef.h>
Michael Clark4504df72007-03-13 08:26:20 +000018#include <limits.h>
Michael Clarkf0d08882007-03-13 08:26:18 +000019#include <string.h>
20#include <errno.h>
Michael Clarkc4dceae2010-10-06 16:39:20 +000021#include <ctype.h>
Michael Clark4504df72007-03-13 08:26:20 +000022
Mateusz Loskota6f39a32012-05-21 23:22:36 +010023#ifdef HAVE_SYS_TYPES_H
Michael Clarkf0d08882007-03-13 08:26:18 +000024#include <sys/types.h>
Michael Clark4504df72007-03-13 08:26:20 +000025#endif /* HAVE_SYS_TYPES_H */
26
Mateusz Loskota6f39a32012-05-21 23:22:36 +010027#ifdef HAVE_SYS_STAT_H
Michael Clarkf0d08882007-03-13 08:26:18 +000028#include <sys/stat.h>
Michael Clark4504df72007-03-13 08:26:20 +000029#endif /* HAVE_SYS_STAT_H */
30
Mateusz Loskota6f39a32012-05-21 23:22:36 +010031#ifdef HAVE_FCNTL_H
Michael Clarkf0d08882007-03-13 08:26:18 +000032#include <fcntl.h>
Michael Clark4504df72007-03-13 08:26:20 +000033#endif /* HAVE_FCNTL_H */
34
Mateusz Loskota6f39a32012-05-21 23:22:36 +010035#ifdef HAVE_UNISTD_H
Michael Clark4504df72007-03-13 08:26:20 +000036# include <unistd.h>
37#endif /* HAVE_UNISTD_H */
38
39#ifdef WIN32
40# define WIN32_LEAN_AND_MEAN
41# include <windows.h>
42# include <io.h>
43#endif /* defined(WIN32) */
Michael Clarkf0d08882007-03-13 08:26:18 +000044
Mateusz Loskota6f39a32012-05-21 23:22:36 +010045#if !defined(HAVE_OPEN) && defined(WIN32)
Michael Clark837240f2007-03-13 08:26:25 +000046# define open _open
47#endif
48
Mateusz Loskota6f39a32012-05-21 23:22:36 +010049#if !defined(HAVE_SNPRINTF) && defined(_MSC_VER)
50 /* MSC has the version as _snprintf */
51# define snprintf _snprintf
52#elif !defined(HAVE_SNPRINTF)
53# error You do not have snprintf on your system.
54#endif /* HAVE_SNPRINTF */
Michael Clark837240f2007-03-13 08:26:25 +000055
Michael Clarkf0d08882007-03-13 08:26:18 +000056#include "debug.h"
57#include "printbuf.h"
Michael Clarkc4dceae2010-10-06 16:39:20 +000058#include "json_inttypes.h"
Michael Clarkf0d08882007-03-13 08:26:18 +000059#include "json_object.h"
60#include "json_tokener.h"
61#include "json_util.h"
62
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -060063static int sscanf_is_broken = 0;
64static int sscanf_is_broken_testdone = 0;
65static void sscanf_is_broken_test(void);
66
Michael Clark88ded9c2009-08-27 06:40:59 +000067struct json_object* json_object_from_file(const char *filename)
Michael Clarkf0d08882007-03-13 08:26:18 +000068{
69 struct printbuf *pb;
70 struct json_object *obj;
71 char buf[JSON_FILE_BUF_SIZE];
72 int fd, ret;
73
74 if((fd = open(filename, O_RDONLY)) < 0) {
Eric Haszlakiewiczb3bce4d2013-06-29 15:31:18 -050075 MC_ERROR("json_object_from_file: error opening file %s: %s\n",
Michael Clarkf0d08882007-03-13 08:26:18 +000076 filename, strerror(errno));
Eric Haszlakiewiczeead1a72012-07-08 20:32:12 -050077 return NULL;
Michael Clarkf0d08882007-03-13 08:26:18 +000078 }
79 if(!(pb = printbuf_new())) {
Michael Clarkbd0a5672010-10-13 14:09:41 +000080 close(fd);
Michael Clarkdfaf6702007-10-25 02:26:00 +000081 MC_ERROR("json_object_from_file: printbuf_new failed\n");
Eric Haszlakiewicz3fcffe12012-04-28 13:26:09 -050082 return NULL;
Michael Clarkf0d08882007-03-13 08:26:18 +000083 }
84 while((ret = read(fd, buf, JSON_FILE_BUF_SIZE)) > 0) {
85 printbuf_memappend(pb, buf, ret);
86 }
87 close(fd);
88 if(ret < 0) {
Eric Haszlakiewiczb3bce4d2013-06-29 15:31:18 -050089 MC_ERROR("json_object_from_file: error reading file %s: %s\n",
Michael Clarkf0d08882007-03-13 08:26:18 +000090 filename, strerror(errno));
91 printbuf_free(pb);
Eric Haszlakiewicz3fcffe12012-04-28 13:26:09 -050092 return NULL;
Michael Clarkf0d08882007-03-13 08:26:18 +000093 }
94 obj = json_tokener_parse(pb->buf);
95 printbuf_free(pb);
96 return obj;
97}
98
Eric Haszlakiewicz3fcffe12012-04-28 13:26:09 -050099/* extended "format and write to file" function */
100
Pascal Bach20e47082013-08-13 18:24:23 +0200101int json_object_to_file_ext(const char *filename, struct json_object *obj, int flags)
Michael Clarkf0d08882007-03-13 08:26:18 +0000102{
Michael Clark68cafad2009-01-06 22:56:57 +0000103 const char *json_str;
Michael Clark4504df72007-03-13 08:26:20 +0000104 int fd, ret;
105 unsigned int wpos, wsize;
Michael Clarkf0d08882007-03-13 08:26:18 +0000106
107 if(!obj) {
Michael Clarkdfaf6702007-10-25 02:26:00 +0000108 MC_ERROR("json_object_to_file: object is null\n");
Michael Clarkf0d08882007-03-13 08:26:18 +0000109 return -1;
110 }
111
112 if((fd = open(filename, O_WRONLY | O_TRUNC | O_CREAT, 0644)) < 0) {
Michael Clarkdfaf6702007-10-25 02:26:00 +0000113 MC_ERROR("json_object_to_file: error opening file %s: %s\n",
Michael Clarkf0d08882007-03-13 08:26:18 +0000114 filename, strerror(errno));
115 return -1;
116 }
Michael Clark4504df72007-03-13 08:26:20 +0000117
Eric Haszlakiewicz3fcffe12012-04-28 13:26:09 -0500118 if(!(json_str = json_object_to_json_string_ext(obj,flags))) {
Michael Clarkf1ae67d2010-10-13 14:10:51 +0000119 close(fd);
120 return -1;
121 }
Michael Clark4504df72007-03-13 08:26:20 +0000122
123 wsize = (unsigned int)(strlen(json_str) & UINT_MAX); /* CAW: probably unnecessary, but the most 64bit safe */
Michael Clarkf0d08882007-03-13 08:26:18 +0000124 wpos = 0;
125 while(wpos < wsize) {
126 if((ret = write(fd, json_str + wpos, wsize-wpos)) < 0) {
127 close(fd);
Michael Clarkdfaf6702007-10-25 02:26:00 +0000128 MC_ERROR("json_object_to_file: error writing file %s: %s\n",
Michael Clarkf0d08882007-03-13 08:26:18 +0000129 filename, strerror(errno));
130 return -1;
131 }
Michael Clark4504df72007-03-13 08:26:20 +0000132
133 /* because of the above check for ret < 0, we can safely cast and add */
134 wpos += (unsigned int)ret;
Michael Clarkf0d08882007-03-13 08:26:18 +0000135 }
136
137 close(fd);
138 return 0;
139}
Michael Clarkc4dceae2010-10-06 16:39:20 +0000140
Eric Haszlakiewicz3fcffe12012-04-28 13:26:09 -0500141// backwards compatible "format and write to file" function
142
Pascal Bach20e47082013-08-13 18:24:23 +0200143int json_object_to_file(const char *filename, struct json_object *obj)
Eric Haszlakiewicz3fcffe12012-04-28 13:26:09 -0500144{
145 return json_object_to_file_ext(filename, obj, JSON_C_TO_STRING_PLAIN);
146}
147
Remi Collet16a4a322012-11-27 11:06:49 +0100148int json_parse_double(const char *buf, double *retval)
149{
Remi Colleta01b6592012-12-13 09:47:33 +0100150 return (sscanf(buf, "%lf", retval)==1 ? 0 : 1);
Remi Collet16a4a322012-11-27 11:06:49 +0100151}
152
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600153/*
154 * Not all implementations of sscanf actually work properly.
155 * Check whether the one we're currently using does, and if
156 * it's broken, enable the workaround code.
157 */
158static void sscanf_is_broken_test()
159{
160 int64_t num64;
Anatol Belski990fa8e2013-06-04 20:18:28 +0200161 int ret_errno, is_int64_min, ret_errno2, is_int64_max;
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600162
163 (void)sscanf(" -01234567890123456789012345", "%" SCNd64, &num64);
Anatol Belski990fa8e2013-06-04 20:18:28 +0200164 ret_errno = errno;
165 is_int64_min = (num64 == INT64_MIN);
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600166
167 (void)sscanf(" 01234567890123456789012345", "%" SCNd64, &num64);
Anatol Belski990fa8e2013-06-04 20:18:28 +0200168 ret_errno2 = errno;
169 is_int64_max = (num64 == INT64_MAX);
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600170
171 if (ret_errno != ERANGE || !is_int64_min ||
172 ret_errno2 != ERANGE || !is_int64_max)
173 {
174 MC_DEBUG("sscanf_is_broken_test failed, enabling workaround code\n");
175 sscanf_is_broken = 1;
176 }
177}
178
Michael Clarkc4dceae2010-10-06 16:39:20 +0000179int json_parse_int64(const char *buf, int64_t *retval)
180{
181 int64_t num64;
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600182 const char *buf_sig_digits;
John Arbash Meinel6a231e42012-02-01 09:27:49 +0100183 int orig_has_neg;
Greg Hazel77d04932013-01-03 16:54:04 -0800184 int saved_errno;
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600185
186 if (!sscanf_is_broken_testdone)
187 {
188 sscanf_is_broken_test();
189 sscanf_is_broken_testdone = 1;
190 }
191
192 // Skip leading spaces
193 while (isspace((int)*buf) && *buf)
194 buf++;
195
Eric Haszlakiewicz77c62392012-07-29 12:13:54 -0500196 errno = 0; // sscanf won't always set errno, so initialize
Michael Clarkc4dceae2010-10-06 16:39:20 +0000197 if (sscanf(buf, "%" SCNd64, &num64) != 1)
198 {
ehaszla252669c2010-12-07 18:15:35 +0000199 MC_DEBUG("Failed to parse, sscanf != 1\n");
Michael Clarkc4dceae2010-10-06 16:39:20 +0000200 return 1;
201 }
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600202
Greg Hazel77d04932013-01-03 16:54:04 -0800203 saved_errno = errno;
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600204 buf_sig_digits = buf;
John Arbash Meinel6a231e42012-02-01 09:27:49 +0100205 orig_has_neg = 0;
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600206 if (*buf_sig_digits == '-')
Michael Clarkc4dceae2010-10-06 16:39:20 +0000207 {
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600208 buf_sig_digits++;
Michael Clarkc4dceae2010-10-06 16:39:20 +0000209 orig_has_neg = 1;
210 }
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600211
212 // Not all sscanf implementations actually work
213 if (sscanf_is_broken && saved_errno != ERANGE)
Michael Clarkc4dceae2010-10-06 16:39:20 +0000214 {
215 char buf_cmp[100];
216 char *buf_cmp_start = buf_cmp;
217 int recheck_has_neg = 0;
John Arbash Meinel6a231e42012-02-01 09:27:49 +0100218 int buf_cmp_len;
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600219
220 // Skip leading zeros, but keep at least one digit
221 while (buf_sig_digits[0] == '0' && buf_sig_digits[1] != '\0')
222 buf_sig_digits++;
223 if (num64 == 0) // assume all sscanf impl's will parse -0 to 0
224 orig_has_neg = 0; // "-0" is the same as just plain "0"
225
Michael Clarkc4dceae2010-10-06 16:39:20 +0000226 snprintf(buf_cmp_start, sizeof(buf_cmp), "%" PRId64, num64);
227 if (*buf_cmp_start == '-')
228 {
229 recheck_has_neg = 1;
230 buf_cmp_start++;
231 }
232 // No need to skip leading spaces or zeros here.
233
John Arbash Meinel6a231e42012-02-01 09:27:49 +0100234 buf_cmp_len = strlen(buf_cmp_start);
Michael Clarkc4dceae2010-10-06 16:39:20 +0000235 /**
236 * If the sign is different, or
237 * some of the digits are different, or
238 * there is another digit present in the original string
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600239 * then we have NOT successfully parsed the value.
Michael Clarkc4dceae2010-10-06 16:39:20 +0000240 */
241 if (orig_has_neg != recheck_has_neg ||
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600242 strncmp(buf_sig_digits, buf_cmp_start, strlen(buf_cmp_start)) != 0 ||
243 ((int)strlen(buf_sig_digits) != buf_cmp_len &&
244 isdigit((int)buf_sig_digits[buf_cmp_len])
Michael Clarkc4dceae2010-10-06 16:39:20 +0000245 )
246 )
247 {
Greg Hazel77d04932013-01-03 16:54:04 -0800248 saved_errno = ERANGE;
Michael Clarkc4dceae2010-10-06 16:39:20 +0000249 }
250 }
Eric Haszlakiewiczbfb32922013-02-09 17:35:33 -0600251
252 // Not all sscanf impl's set the value properly when out of range.
253 // Always do this, even for properly functioning implementations,
254 // since it shouldn't slow things down much.
Greg Hazel77d04932013-01-03 16:54:04 -0800255 if (saved_errno == ERANGE)
Michael Clarkc4dceae2010-10-06 16:39:20 +0000256 {
257 if (orig_has_neg)
258 num64 = INT64_MIN;
259 else
260 num64 = INT64_MAX;
261 }
262 *retval = num64;
263 return 0;
264}
ehaszla252669c2010-12-07 18:15:35 +0000265
Mateusz Loskota6f39a32012-05-21 23:22:36 +0100266#ifndef HAVE_REALLOC
ehaszla252669c2010-12-07 18:15:35 +0000267void* rpl_realloc(void* p, size_t n)
268{
269 if (n == 0)
270 n = 1;
271 if (p == 0)
272 return malloc(n);
273 return realloc(p, n);
274}
275#endif
Eric Haszlakiewicz886c4fb2011-05-03 20:40:49 +0000276
277#define NELEM(a) (sizeof(a) / sizeof(a[0]))
278static const char* json_type_name[] = {
279 /* If you change this, be sure to update the enum json_type definition too */
280 "null",
281 "boolean",
282 "double",
283 "int",
284 "object",
285 "array",
286 "string",
287};
288
289const char *json_type_to_name(enum json_type o_type)
290{
Eric Haszlakiewiczca8b27d2013-02-09 16:35:24 -0600291 int o_type_int = (int)o_type;
292 if (o_type_int < 0 || o_type_int >= (int)NELEM(json_type_name))
Eric Haszlakiewicz886c4fb2011-05-03 20:40:49 +0000293 {
294 MC_ERROR("json_type_to_name: type %d is out of range [0,%d]\n", o_type, NELEM(json_type_name));
295 return NULL;
296 }
297 return json_type_name[o_type];
298}
299