Add support for "show rp_clients" monitoring request
[trust_router.git] / common / tr_rp_client_encoders.c
1 /*
2  * Copyright (c) 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 <talloc.h>
36 #include <jansson.h>
37
38 #include <tr_gss_names.h>
39 #include <tr_rp_client.h>
40
41 /* helper for below */
42 #define OBJECT_SET_OR_FAIL(jobj, key, val)     \
43 do {                                           \
44   if (val)                                     \
45     json_object_set_new((jobj),(key),(val));   \
46   else                                         \
47     goto cleanup;                              \
48 } while (0)
49
50 #define ARRAY_APPEND_OR_FAIL(jary, val)        \
51 do {                                           \
52   if (val)                                     \
53     json_array_append_new((jary),(val));       \
54   else                                         \
55     goto cleanup;                              \
56 } while (0)
57
58 static json_t *tr_rp_client_to_json(TR_RP_CLIENT *rp_client)
59 {
60   json_t *client_json = NULL;
61   json_t *retval = NULL;
62
63   client_json = json_object();
64   if (client_json == NULL)
65     goto cleanup;
66
67   OBJECT_SET_OR_FAIL(client_json, "gss_names", tr_gss_names_to_json_array(rp_client->gss_names));
68
69   /* succeeded - set the return value and increment the reference count */
70   retval = client_json;
71   json_incref(retval);
72
73 cleanup:
74   if (client_json)
75     json_decref(client_json);
76   return retval;
77 }
78
79 json_t *tr_rp_clients_to_json(TR_RP_CLIENT *rp_clients)
80 {
81   json_t *jarray = json_array();
82   json_t *retval = NULL;
83   TR_RP_CLIENT_ITER *iter = tr_rp_client_iter_new(NULL);
84   TR_RP_CLIENT *rp_client = NULL;
85
86   if ((jarray == NULL) || (iter == NULL))
87     goto cleanup;
88
89   rp_client = tr_rp_client_iter_first(iter, rp_clients);
90   while (rp_client) {
91     ARRAY_APPEND_OR_FAIL(jarray, tr_rp_client_to_json(rp_client));
92     rp_client = tr_rp_client_iter_next(iter);
93   }
94
95   /* succeeded - set the return value and increment the reference count */
96   retval = jarray;
97   json_incref(retval);
98
99 cleanup:
100   if (jarray)
101     json_decref(jarray);
102
103   if (iter)
104     tr_rp_client_iter_free(iter);
105   
106   return retval;
107 }