Flexible I/O Tester development
 help / color / mirror / Atom feed
* io_bytes overflow in JSON output on Windows
@ 2014-04-03 18:19 Bruce Cran
  2014-04-03 18:22 ` Jens Axboe
  0 siblings, 1 reply; 2+ messages in thread
From: Bruce Cran @ 2014-04-03 18:19 UTC (permalink / raw)
  To: fio

[-- Attachment #1: Type: text/plain, Size: 252 bytes --]

On Windows, the io_bytes parameter can overflow in the JSON output 
because the JSON_INTEGER type is a 'long' - which is only 32-bit on 
Windows.  The attached patch should fix it by changing the JSON integer 
type to be 'long long'.

-- 
Bruce Cran



[-- Attachment #2: 0001-Fix-JSON_INTEGER-overflow-on-Windows-by-changing-dat.patch --]
[-- Type: text/plain, Size: 2291 bytes --]

From 819255df8c084d9d05e5fcb67ba2620e581cd3e0 Mon Sep 17 00:00:00 2001
From: Bruce Cran <bcran@fusionio.com>
Date: Thu, 3 Apr 2014 12:17:00 -0600
Subject: [PATCH] Fix JSON_INTEGER overflow on Windows by changing datatype to
 'long long'

---
 json.c | 8 ++++----
 json.h | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/json.c b/json.c
index cba370a..7480a61 100644
--- a/json.c
+++ b/json.c
@@ -35,7 +35,7 @@ static struct json_pair *json_create_pair(const char *name, struct json_value *v
 	return pair;
 }
 
-static struct json_value *json_create_value_int(long number)
+static struct json_value *json_create_value_int(long long number)
 {
 	struct json_value *value = malloc(sizeof(struct json_value));
 
@@ -212,7 +212,7 @@ int json_object_add_value_type(struct json_object *obj, const char *name, int ty
 	if (type == JSON_TYPE_STRING)
 		value = json_create_value_string(va_arg(args, char *));
 	else if (type == JSON_TYPE_INTEGER)
-		value = json_create_value_int(va_arg(args, long));
+		value = json_create_value_int(va_arg(args, long long));
 	else if (type == JSON_TYPE_FLOAT)
 		value = json_create_value_float(va_arg(args, double));
 	else if (type == JSON_TYPE_OBJECT)
@@ -248,7 +248,7 @@ int json_array_add_value_type(struct json_array *array, int type, ...)
 	if (type == JSON_TYPE_STRING)
 		value = json_create_value_string(va_arg(args, char *));
 	else if (type == JSON_TYPE_INTEGER)
-		value = json_create_value_int(va_arg(args, long));
+		value = json_create_value_int(va_arg(args, long long));
 	else if (type == JSON_TYPE_FLOAT)
 		value = json_create_value_float(va_arg(args, double));
 	else if (type == JSON_TYPE_OBJECT)
@@ -350,7 +350,7 @@ static void json_print_value(struct json_value *value)
 		log_info("\"%s\"", value->string);
 		break;
 	case JSON_TYPE_INTEGER:
-		log_info("%ld", value->integer_number);
+		log_info("%lld", value->integer_number);
 		break;
 	case JSON_TYPE_FLOAT:
 		log_info("%.2f", value->float_number);
diff --git a/json.h b/json.h
index 2a798ce..081afd6 100644
--- a/json.h
+++ b/json.h
@@ -14,7 +14,7 @@ struct json_pair;
 struct json_value {
 	int type;
 	union {
-		long integer_number;
+		long long integer_number;
 		double float_number;
 		char *string;
 		struct json_object *object;
-- 
1.9.0.msysgit.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-04-03 18:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-03 18:19 io_bytes overflow in JSON output on Windows Bruce Cran
2014-04-03 18:22 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox