c954a81353048867fa95d3cf09873abe9e5bad5b
[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 = {0}; /* initialization to zero is important */
88   char *s = NULL;
89   json_t *jstr = NULL;
90
91   if (tr_cmp_timespec(trp_route_get_expiry(route), &ts) > 0) {
92     if (trp_route_get_expiry_realtime(route, &ts) == NULL)
93       s = strdup("error");
94     else
95       s = timespec_to_str(&ts);
96
97     if (s) {
98       jstr = json_string(s);
99       free(s);
100     }
101   }
102
103   return jstr;
104 }
105
106 /* helper for below */
107 #define OBJECT_SET_OR_FAIL(jobj, key, val)     \
108 do {                                           \
109   if (val)                                     \
110     json_object_set_new((jobj),(key),(val));   \
111   else                                         \
112     goto cleanup;                              \
113 } while (0)
114
115 #define OBJECT_SET_OR_SKIP(jobj, key, val)     \
116 do {                                           \
117   if (val)                                     \
118     json_object_set_new((jobj),(key),(val));   \
119 } while (0)
120
121 json_t *trp_route_to_json(TRP_ROUTE *route)
122 {
123   json_t *route_json = NULL;
124   json_t *retval = NULL;
125
126   route_json = json_object();
127   if (route_json == NULL)
128     goto cleanup;
129
130   OBJECT_SET_OR_FAIL(route_json, "community", tr_name_to_json_string(trp_route_get_comm(route)));
131   OBJECT_SET_OR_FAIL(route_json, "realm", tr_name_to_json_string(trp_route_get_realm(route)));
132   if (trp_route_get_peer(route)->len > 0)
133     OBJECT_SET_OR_FAIL(route_json, "peer", tr_name_to_json_string(trp_route_get_peer(route)));
134   OBJECT_SET_OR_FAIL(route_json, "metric", json_integer(trp_route_get_metric(route)));
135   OBJECT_SET_OR_FAIL(route_json, "trust_router", tr_name_to_json_string(trp_route_get_trust_router(route)));
136   if (trp_route_get_next_hop(route)->len > 0)
137     OBJECT_SET_OR_FAIL(route_json, "next_hop", tr_name_to_json_string(trp_route_get_next_hop(route)));
138   OBJECT_SET_OR_FAIL(route_json, "selected", json_boolean(trp_route_is_selected(route)));
139   OBJECT_SET_OR_FAIL(route_json, "local", json_boolean(trp_route_is_local(route)));
140   OBJECT_SET_OR_SKIP(route_json, "expires", expiry_to_json_string(route));
141
142   /* succeeded - set the return value and increment the reference count */
143   retval = route_json;
144   json_incref(retval);
145
146
147 cleanup:
148   if (route_json)
149     json_decref(route_json);
150   return retval;
151 }