Log incoming IP address when accepting a connection
[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   OBJECT_SET_OR_FAIL(client_json, "filters", tr_filter_set_to_json(rp_client->filters));
69   
70   /* succeeded - set the return value and increment the reference count */
71   retval = client_json;
72   json_incref(retval);
73
74 cleanup:
75   if (client_json)
76     json_decref(client_json);
77   return retval;
78 }
79
80 json_t *tr_rp_clients_to_json(TR_RP_CLIENT *rp_clients)
81 {
82   json_t *jarray = json_array();
83   json_t *retval = NULL;
84   TR_RP_CLIENT_ITER *iter = tr_rp_client_iter_new(NULL);
85   TR_RP_CLIENT *rp_client = NULL;
86
87   if ((jarray == NULL) || (iter == NULL))
88     goto cleanup;
89
90   rp_client = tr_rp_client_iter_first(iter, rp_clients);
91   while (rp_client) {
92     ARRAY_APPEND_OR_FAIL(jarray, tr_rp_client_to_json(rp_client));
93     rp_client = tr_rp_client_iter_next(iter);
94   }
95
96   /* succeeded - set the return value and increment the reference count */
97   retval = jarray;
98   json_incref(retval);
99
100 cleanup:
101   if (jarray)
102     json_decref(jarray);
103
104   if (iter)
105     tr_rp_client_iter_free(iter);
106
107   return retval;
108 }