Log incoming IP address when accepting a connection
[trust_router.git] / common / tr_config_rp_clients.c
1 /*
2  * Copyright (c) 2012-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 #include <jansson.h>
38 #include <dirent.h>
39 #include <talloc.h>
40
41 #include <tr_cfgwatch.h>
42 #include <tr_comm.h>
43 #include <tr_config.h>
44 #include <tr_gss_names.h>
45 #include <tr_debug.h>
46 #include <tr_filter.h>
47 #include <trust_router/tr_constraint.h>
48 #include <tr_idp.h>
49 #include <tr.h>
50 #include <trust_router/trp.h>
51
52 #if JANSSON_VERSION_HEX < 0x020500
53 #include "jansson_iterators.h"
54 #endif
55
56
57 TR_CFG_RC tr_cfg_parse_gss_names(TALLOC_CTX *mem_ctx, json_t *jgss_names, TR_GSS_NAMES **gssn_out)
58 {
59   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
60   TR_GSS_NAMES *gn=NULL;
61   json_t *jname=NULL;
62   size_t ii=0;
63   TR_NAME *name=NULL;
64   TR_CFG_RC rc = TR_CFG_ERROR;
65
66   if (jgss_names==NULL) {
67     tr_err("tr_cfg_parse_gss_names: Bad parameters.");
68     rc=TR_CFG_BAD_PARAMS;
69     goto cleanup;
70   }
71
72   if (!json_is_array(jgss_names)) {
73     tr_err("tr_cfg_parse_gss_names: gss_names not an array.");
74     rc=TR_CFG_NOPARSE;
75     goto cleanup;
76   }
77
78   gn=tr_gss_names_new(tmp_ctx);
79   for (ii=0; ii<json_array_size(jgss_names); ii++) {
80     jname=json_array_get(jgss_names, ii);
81     if (!json_is_string(jname)) {
82       tr_err("tr_cfg_parse_gss_names: Encountered non-string gss name.");
83       rc=TR_CFG_NOPARSE;
84       goto cleanup;
85     }
86
87     name=tr_new_name(json_string_value(jname));
88     if (name==NULL) {
89       tr_err("tr_cfg_parse_gss_names: Out of memory allocating gss name.");
90       rc=TR_CFG_NOMEM;
91       goto cleanup;
92     }
93
94     if (tr_gss_names_add(gn, name)!=0) {
95       tr_free_name(name);
96       tr_err("tr_cfg_parse_gss_names: Unable to add gss name to RP client.");
97       rc=TR_CFG_ERROR;
98       goto cleanup;
99     }
100   }
101
102   *gssn_out = gn;
103   talloc_steal(mem_ctx, *gssn_out);
104   rc=TR_CFG_SUCCESS;
105
106 cleanup:
107   talloc_free(tmp_ctx);
108   return rc;
109 }
110
111 /* default filter accepts realm and *.realm */
112 static TR_FILTER_SET *tr_cfg_default_filters(TALLOC_CTX *mem_ctx, TR_NAME *realm, TR_CFG_RC *rc)
113 {
114   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
115   TR_FILTER *filt=NULL;
116   TR_FILTER_SET *filt_set=NULL;
117   TR_CONSTRAINT *cons=NULL;
118   TR_NAME *name=NULL;
119   TR_NAME *n_prefix=tr_new_name("*.");
120   TR_NAME *n_rp_realm_1=tr_new_name("rp_realm");
121   TR_NAME *n_rp_realm_2=tr_new_name("rp_realm");
122   TR_NAME *n_domain=tr_new_name("domain");
123   TR_NAME *n_realm=tr_new_name("realm");
124
125
126   if ((realm==NULL) || (rc==NULL)) {
127     tr_debug("tr_cfg_default_filters: invalid arguments.");
128     if (rc!=NULL)
129       *rc=TR_CFG_BAD_PARAMS;
130     goto cleanup;
131   }
132
133   if ((n_prefix==NULL) ||
134       (n_rp_realm_1==NULL) ||
135       (n_rp_realm_2==NULL) ||
136       (n_domain==NULL) ||
137       (n_realm==NULL)) {
138     tr_debug("tr_cfg_default_filters: unable to allocate names.");
139     *rc=TR_CFG_NOMEM;
140     goto cleanup;
141   }
142
143   filt=tr_filter_new(tmp_ctx);
144   if (filt==NULL) {
145     tr_debug("tr_cfg_default_filters: could not allocate filter.");
146     *rc=TR_CFG_NOMEM;
147     goto cleanup;
148   }
149   tr_filter_set_type(filt, TR_FILTER_TYPE_TID_INBOUND);
150   filt->lines[0]=tr_fline_new(filt);
151   if (filt->lines[0]==NULL) {
152     tr_debug("tr_cfg_default_filters: could not allocate filter line.");
153     *rc=TR_CFG_NOMEM;
154     goto cleanup;
155   }
156
157   filt->lines[0]->action=TR_FILTER_ACTION_ACCEPT;
158   filt->lines[0]->specs[0]=tr_fspec_new(filt->lines[0]);
159   filt->lines[0]->specs[0]->field=n_rp_realm_1;
160   n_rp_realm_1=NULL; /* we don't own this name any more */
161
162   name=tr_dup_name(realm);
163   if (name==NULL) {
164     tr_debug("tr_cfg_default_filters: could not allocate realm name.");
165     *rc=TR_CFG_NOMEM;
166     goto cleanup;
167   }
168   tr_fspec_add_match(filt->lines[0]->specs[0], name);
169   name=NULL; /* we no longer own the name */
170
171   /* now do the wildcard name */
172   filt->lines[0]->specs[1]=tr_fspec_new(filt->lines[0]);
173   filt->lines[0]->specs[1]->field=n_rp_realm_2;
174   n_rp_realm_2=NULL; /* we don't own this name any more */
175
176   if (NULL==(name=tr_name_cat(n_prefix, realm))) {
177     tr_debug("tr_cfg_default_filters: could not allocate wildcard realm name.");
178     *rc=TR_CFG_NOMEM;
179     goto cleanup;
180   }
181
182   tr_fspec_add_match(filt->lines[0]->specs[1], name);
183   name=NULL; /* we no longer own the name */
184
185   /* domain constraint */
186   if (NULL==(cons=tr_constraint_new(filt->lines[0]))) {
187     tr_debug("tr_cfg_default_filters: could not allocate domain constraint.");
188     *rc=TR_CFG_NOMEM;
189     goto cleanup;
190   }
191
192   cons->type=n_domain;
193   n_domain=NULL; /* belongs to the constraint now */
194   name=tr_dup_name(realm);
195   if (name==NULL) {
196     tr_debug("tr_cfg_default_filters: could not allocate realm name for domain constraint.");
197     *rc=TR_CFG_NOMEM;
198     goto cleanup;
199   }
200   cons->matches[0]=name;
201   name=tr_name_cat(n_prefix, realm);
202   if (name==NULL) {
203     tr_debug("tr_cfg_default_filters: could not allocate wildcard realm name for domain constraint.");
204     *rc=TR_CFG_NOMEM;
205     goto cleanup;
206   }
207   cons->matches[1]=name;
208   name=NULL;
209   filt->lines[0]->domain_cons=cons;
210
211
212   /* realm constraint */
213   if (NULL==(cons=tr_constraint_new(filt->lines[0]))) {
214     tr_debug("tr_cfg_default_filters: could not allocate realm constraint.");
215     *rc=TR_CFG_NOMEM;
216     goto cleanup;
217   }
218
219   cons->type=n_realm;
220   n_realm=NULL; /* belongs to the constraint now */
221   name=tr_dup_name(realm);
222   if (name==NULL) {
223     tr_debug("tr_cfg_default_filters: could not allocate realm name for realm constraint.");
224     *rc=TR_CFG_NOMEM;
225     goto cleanup;
226   }
227   cons->matches[0]=name;
228   name=tr_name_cat(n_prefix, realm);
229   if (name==NULL) {
230     tr_debug("tr_cfg_default_filters: could not allocate wildcard realm name for realm constraint.");
231     *rc=TR_CFG_NOMEM;
232     goto cleanup;
233   }
234   cons->matches[1]=name;
235   name=NULL;
236   filt->lines[0]->realm_cons=cons;
237
238   /* put the filter in a set */
239   filt_set=tr_filter_set_new(tmp_ctx);
240   if ((filt_set==NULL)||(0!=tr_filter_set_add(filt_set, filt))) {
241     tr_debug("tr_cfg_default_filters: could not allocate filter set.");
242     *rc=TR_CFG_NOMEM;
243     goto cleanup;
244   }
245   talloc_steal(mem_ctx, filt_set);
246
247 cleanup:
248   talloc_free(tmp_ctx);
249
250   if (*rc!=TR_CFG_SUCCESS)
251     filt=NULL;
252
253   if (n_prefix!=NULL)
254     tr_free_name(n_prefix);
255   if (n_rp_realm_1!=NULL)
256     tr_free_name(n_rp_realm_1);
257   if (n_rp_realm_2!=NULL)
258     tr_free_name(n_rp_realm_2);
259   if (n_realm!=NULL)
260     tr_free_name(n_realm);
261   if (n_domain!=NULL)
262     tr_free_name(n_domain);
263   if (name!=NULL)
264     tr_free_name(name);
265
266   return filt_set;
267 }
268
269 /* parses rp client */
270 static TR_RP_CLIENT *tr_cfg_parse_one_rp_client(TALLOC_CTX *mem_ctx, json_t *jrealm, TR_CFG_RC *rc)
271 {
272   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
273   TR_RP_CLIENT *client=NULL;
274   TR_CFG_RC call_rc=TR_CFG_ERROR;
275   TR_FILTER_SET *new_filts=NULL;
276   TR_NAME *realm=NULL;
277   json_t *jfilt=NULL;
278   json_t *jrealm_id=NULL;
279
280   *rc=TR_CFG_ERROR; /* default to error if not set */
281
282   if ((!jrealm) || (!rc)) {
283     tr_err("tr_cfg_parse_one_rp_client: Bad parameters.");
284     if (rc)
285       *rc=TR_CFG_BAD_PARAMS;
286     goto cleanup;
287   }
288
289   if ((NULL==(jrealm_id=json_object_get(jrealm, "realm"))) || (!json_is_string(jrealm_id))) {
290     tr_debug("tr_cfg_parse_one_rp_client: no realm ID found.");
291     *rc=TR_CFG_BAD_PARAMS;
292     goto cleanup;
293   }
294
295   tr_debug("tr_cfg_parse_one_rp_client: realm_id=\"%s\"", json_string_value(jrealm_id));
296   realm=tr_new_name(json_string_value(jrealm_id));
297   if (realm==NULL) {
298     tr_err("tr_cfg_parse_one_rp_client: could not allocate realm ID.");
299     *rc=TR_CFG_NOMEM;
300     goto cleanup;
301   }
302
303   if (NULL==(client=tr_rp_client_new(tmp_ctx))) {
304     tr_err("tr_cfg_parse_one_rp_client: could not allocate rp client.");
305     *rc=TR_CFG_NOMEM;
306     goto cleanup;
307   }
308
309   call_rc = tr_cfg_parse_gss_names(client, json_object_get(jrealm, "gss_names"), &(client->gss_names));
310
311   if (call_rc!=TR_CFG_SUCCESS) {
312     tr_err("tr_cfg_parse_one_rp_client: could not parse gss_names.");
313     *rc=TR_CFG_NOPARSE;
314     goto cleanup;
315   }
316
317   /* parse filters */
318   jfilt=json_object_get(jrealm, "filters");
319   if (jfilt!=NULL) {
320     new_filts=tr_cfg_parse_filters(tmp_ctx, jfilt, &call_rc);
321     if (call_rc!=TR_CFG_SUCCESS) {
322       tr_err("tr_cfg_parse_one_rp_client: could not parse filters.");
323       *rc=TR_CFG_NOPARSE;
324       goto cleanup;
325     }
326   } else {
327     tr_debug("tr_cfg_parse_one_rp_client: no filters specified, using default filters.");
328     new_filts= tr_cfg_default_filters(tmp_ctx, realm, &call_rc);
329     if (call_rc!=TR_CFG_SUCCESS) {
330       tr_err("tr_cfg_parse_one_rp_client: could not set default filters.");
331       *rc=TR_CFG_NOPARSE;
332       goto cleanup;
333     }
334   }
335
336   tr_rp_client_set_filters(client, new_filts);
337   *rc=TR_CFG_SUCCESS;
338
339 cleanup:
340   if (realm!=NULL)
341     tr_free_name(realm);
342
343   if (*rc==TR_CFG_SUCCESS)
344     talloc_steal(mem_ctx, client);
345   else {
346     talloc_free(client);
347     client=NULL;
348   }
349
350   talloc_free(tmp_ctx);
351   return client;
352 }
353
354 /* Determine whether the realm is an RP realm */
355 static int tr_cfg_is_rp_realm(json_t *jrealm)
356 {
357   /* Check that we have a gss name. */
358   if (NULL != json_object_get(jrealm, "gss_names"))
359     return 1;
360   else
361     return 0;
362 }
363
364 /* Parse any rp clients in the j_realms object. Ignores other realms. */
365 TR_RP_CLIENT *tr_cfg_parse_rp_clients(TALLOC_CTX *mem_ctx, json_t *jrealms, TR_CFG_RC *rc)
366 {
367   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
368   TR_RP_CLIENT *clients=NULL;
369   TR_RP_CLIENT *new_client=NULL;
370   json_t *this_jrealm=NULL;
371   int ii=0;
372
373   *rc=TR_CFG_ERROR;
374   if ((jrealms==NULL) || (!json_is_array(jrealms))) {
375     tr_err("tr_cfg_parse_rp_clients: realms not an array");
376     *rc=TR_CFG_BAD_PARAMS;
377     goto cleanup;
378   }
379
380   for (ii=0; ii<json_array_size(jrealms); ii++) {
381     this_jrealm=json_array_get(jrealms, ii);
382     if (tr_cfg_is_rp_realm(this_jrealm)) {
383       new_client=tr_cfg_parse_one_rp_client(tmp_ctx, this_jrealm, rc);
384       if ((*rc)!=TR_CFG_SUCCESS) {
385         tr_err("tr_cfg_parse_rp_clients: error decoding realm entry %d", ii+1);
386         *rc=TR_CFG_NOPARSE;
387         goto cleanup;
388       }
389       tr_rp_client_add(clients, new_client);
390     }
391   }
392
393   *rc=TR_CFG_SUCCESS;
394   talloc_steal(mem_ctx, clients);
395
396 cleanup:
397   talloc_free(tmp_ctx);
398   return clients;
399 }