From 05fcf8013def5274e0a66d16b44f34d39b31d594 Mon Sep 17 00:00:00 2001 From: Fernando Fernandez Mancera Date: Sun, 11 Sep 2022 00:11:14 +0200 Subject: json: add stateful object comment support When listing a stateful object with JSON support, the comment was ignored. Output example: { "counter": { "family": "inet", "name": "mycounter", "table": "t", "handle": 1, "comment": "my comment in counter", "packets": 0, "bytes": 0 } } Link: https://bugzilla.netfilter.org/show_bug.cgi?id=1611 Signed-off-by: Fernando Fernandez Mancera Signed-off-by: Pablo Neira Ayuso --- src/json.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/json.c') diff --git a/src/json.c b/src/json.c index 6598863e..6662f808 100644 --- a/src/json.c +++ b/src/json.c @@ -329,6 +329,12 @@ static json_t *obj_print_json(const struct obj *obj) "table", obj->handle.table.name, "handle", obj->handle.handle.id); + if (obj->comment) { + tmp = json_pack("{s:s}", "comment", obj->comment); + json_object_update(root, tmp); + json_decref(tmp); + } + switch (obj->type) { case NFT_OBJECT_COUNTER: tmp = json_pack("{s:I, s:I}", -- cgit v1.2.3