Clean up monitoring format/naming
[trust_router.git] / trp / trp_route_encoders.c
1 /*
2  * Copyright (c) 2016-2018, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #include <stdlib.h>
36 #include <string.h>
37
38 #include <talloc.h>
39 #include <jansson.h>
40
41 #include <tr_name_internal.h>
42 #include <trp_route.h>
43 #include <trp_internal.h>
44 #include <trp_rtable.h>
45 #include <trust_router/trp.h>
46 #include <tr_util.h>
47
48 /* Pretty print a route table entry to a newly allocated string. If sep is NULL,
49  * returns comma+space separated string. */
50 char *trp_route_to_str(TALLOC_CTX *mem_ctx, TRP_ROUTE *entry, const char *sep)
51 {
52   char *comm=tr_name_strdup(entry->comm);
53   char *realm=tr_name_strdup(entry->realm);
54   char *peer=tr_name_strdup(entry->peer);
55   char *trust_router=tr_name_strdup(entry->trust_router);
56   char *next_hop=tr_name_strdup(entry->next_hop);
57   char *expiry=timespec_to_str(entry->expiry);
58   char *result=NULL;
59
60   if (sep==NULL)
61     sep=", ";
62
63   result=talloc_asprintf(mem_ctx,
64                          "%s%s%s%s%s%s%u%s%s%s%s%s%u%s%u%s%s%s%u",
65                          comm, sep,
66                          realm, sep,
67                          peer, sep,
68                          entry->metric, sep,
69                          trust_router, sep,
70                          next_hop, sep,
71                          entry->selected, sep,
72                          entry->local, sep,
73                          expiry, sep,
74                          entry->triggered);
75   free(comm);
76   free(realm);
77   free(peer);
78   free(trust_router);
79   free(next_hop);
80   free(expiry);
81   return result;
82 }
83
84 /* helper */
85 static json_t *expiry_to_json_string(TRP_ROUTE *route)
86 {
87   struct timespec ts_zero = {0, 0};
88   char *s = NULL;
89   json_t *jstr = NULL;
90
91   if (tr_cmp_timespec(trp_route_get_expiry(route), &ts_zero) > 0) {
92     s = timespec_to_str(trp_route_get_expiry(route));
93
94     if (s) {
95       jstr = json_string(s);
96       free(s);
97     }
98   }
99
100   return jstr;
101 }
102
103 /* helper for below */
104 #define OBJECT_SET_OR_FAIL(jobj, key, val)     \
105 do {                                           \
106   if (val)                                     \
107     json_object_set_new((jobj),(key),(val));   \
108   else                                         \
109     goto cleanup;                              \
110 } while (0)
111
112 #define OBJECT_SET_OR_SKIP(jobj, key, val)     \
113 do {                                           \
114   if (val)                                     \
115     json_object_set_new((jobj),(key),(val));   \
116 } while (0)
117
118 json_t *trp_route_to_json(TRP_ROUTE *route)
119 {
120   json_t *route_json = NULL;
121   json_t *retval = NULL;
122
123   route_json = json_object();
124   if (route_json == NULL)
125     goto cleanup;
126
127   OBJECT_SET_OR_FAIL(route_json, "community", tr_name_to_json_string(trp_route_get_comm(route)));
128   OBJECT_SET_OR_FAIL(route_json, "realm", tr_name_to_json_string(trp_route_get_realm(route)));
129   if (trp_route_get_peer(route)->len > 0)
130     OBJECT_SET_OR_FAIL(route_json, "peer", tr_name_to_json_string(trp_route_get_peer(route)));
131   OBJECT_SET_OR_FAIL(route_json, "metric", json_integer(trp_route_get_metric(route)));
132   OBJECT_SET_OR_FAIL(route_json, "trust_router", tr_name_to_json_string(trp_route_get_trust_router(route)));
133   if (trp_route_get_next_hop(route)->len > 0)
134     OBJECT_SET_OR_FAIL(route_json, "next_hop", tr_name_to_json_string(trp_route_get_next_hop(route)));
135   OBJECT_SET_OR_FAIL(route_json, "selected", json_boolean(trp_route_is_selected(route)));
136   OBJECT_SET_OR_FAIL(route_json, "local", json_boolean(trp_route_is_local(route)));
137   OBJECT_SET_OR_SKIP(route_json, "expires", expiry_to_json_string(route));
138
139   /* succeeded - set the return value and increment the reference count */
140   retval = route_json;
141   json_incref(retval);
142
143
144 cleanup:
145   if (route_json)
146     json_decref(route_json);
147   return retval;
148 }