Use TR_LIST for TR_FLINE's 'fspec' member
[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_FLINE *fline = NULL;
117   TR_FSPEC *fspec = NULL;
118   TR_FILTER_SET *filt_set=NULL;
119   TR_CONSTRAINT *cons=NULL;
120   TR_NAME *name=NULL;
121   TR_NAME *n_prefix=tr_new_name("*.");
122   TR_NAME *n_rp_realm_1=tr_new_name("rp_realm");
123   TR_NAME *n_rp_realm_2=tr_new_name("rp_realm");
124   TR_NAME *n_domain=tr_new_name("domain");
125   TR_NAME *n_realm=tr_new_name("realm");
126
127
128   if ((realm==NULL) || (rc==NULL)) {
129     tr_debug("tr_cfg_default_filters: invalid arguments.");
130     if (rc!=NULL)
131       *rc=TR_CFG_BAD_PARAMS;
132     goto cleanup;
133   }
134
135   if ((n_prefix==NULL) ||
136       (n_rp_realm_1==NULL) ||
137       (n_rp_realm_2==NULL) ||
138       (n_domain==NULL) ||
139       (n_realm==NULL)) {
140     tr_debug("tr_cfg_default_filters: unable to allocate names.");
141     *rc=TR_CFG_NOMEM;
142     goto cleanup;
143   }
144
145   filt=tr_filter_new(tmp_ctx);
146   if (filt==NULL) {
147     tr_debug("tr_cfg_default_filters: could not allocate filter.");
148     *rc=TR_CFG_NOMEM;
149     goto cleanup;
150   }
151   tr_filter_set_type(filt, TR_FILTER_TYPE_TID_INBOUND);
152
153   fline = tr_fline_new(tmp_ctx);
154   if (fline==NULL) {
155     tr_debug("tr_cfg_default_filters: could not allocate filter line.");
156     *rc=TR_CFG_NOMEM;
157     goto cleanup;
158   }
159
160   fline->action=TR_FILTER_ACTION_ACCEPT;
161   
162   fspec=tr_fspec_new(tmp_ctx);
163   fspec->field=n_rp_realm_1;
164   n_rp_realm_1=NULL; /* we don't own this name any more */
165
166   name=tr_dup_name(realm);
167   if (name==NULL) {
168     tr_debug("tr_cfg_default_filters: could not allocate realm name.");
169     *rc=TR_CFG_NOMEM;
170     goto cleanup;
171   }
172   tr_fspec_add_match(fspec, name);
173   name=NULL; /* we no longer own the name */
174
175   if (tr_fline_add_spec(fline, fspec) == NULL) {
176     tr_debug("tr_cfg_default_filters: could not add first spec to filter line");
177     *rc = TR_CFG_NOMEM;
178     goto cleanup;
179   }
180
181   /* now do the wildcard name */
182   fspec=tr_fspec_new(tmp_ctx);
183   fspec->field=n_rp_realm_2;
184   n_rp_realm_2=NULL; /* we don't own this name any more */
185
186   if (NULL==(name=tr_name_cat(n_prefix, realm))) {
187     tr_debug("tr_cfg_default_filters: could not allocate wildcard realm name.");
188     *rc=TR_CFG_NOMEM;
189     goto cleanup;
190   }
191
192   tr_fspec_add_match(fspec, name);
193   name=NULL; /* we no longer own the name */
194
195   if (tr_fline_add_spec(fline, fspec) == NULL) {
196     tr_debug("tr_cfg_default_filters: could not add second spec to filter line");
197     *rc = TR_CFG_NOMEM;
198     goto cleanup;
199   }
200
201   /* domain constraint */
202   if (NULL==(cons=tr_constraint_new(fline))) {
203     tr_debug("tr_cfg_default_filters: could not allocate domain constraint.");
204     *rc=TR_CFG_NOMEM;
205     goto cleanup;
206   }
207
208   cons->type=n_domain;
209   n_domain=NULL; /* belongs to the constraint now */
210   name=tr_dup_name(realm);
211   if (name==NULL) {
212     tr_debug("tr_cfg_default_filters: could not allocate realm name for domain constraint.");
213     *rc=TR_CFG_NOMEM;
214     goto cleanup;
215   }
216   cons->matches[0]=name;
217   name=tr_name_cat(n_prefix, realm);
218   if (name==NULL) {
219     tr_debug("tr_cfg_default_filters: could not allocate wildcard realm name for domain constraint.");
220     *rc=TR_CFG_NOMEM;
221     goto cleanup;
222   }
223   cons->matches[1]=name;
224   name=NULL;
225   fline->domain_cons=cons;
226
227
228   /* realm constraint */
229   if (NULL==(cons=tr_constraint_new(fline))) {
230     tr_debug("tr_cfg_default_filters: could not allocate realm constraint.");
231     *rc=TR_CFG_NOMEM;
232     goto cleanup;
233   }
234
235   cons->type=n_realm;
236   n_realm=NULL; /* belongs to the constraint now */
237   name=tr_dup_name(realm);
238   if (name==NULL) {
239     tr_debug("tr_cfg_default_filters: could not allocate realm name for realm constraint.");
240     *rc=TR_CFG_NOMEM;
241     goto cleanup;
242   }
243   cons->matches[0]=name;
244   name=tr_name_cat(n_prefix, realm);
245   if (name==NULL) {
246     tr_debug("tr_cfg_default_filters: could not allocate wildcard realm name for realm constraint.");
247     *rc=TR_CFG_NOMEM;
248     goto cleanup;
249   }
250   cons->matches[1]=name;
251   name=NULL;
252   fline->realm_cons=cons;
253
254   /* put the fline in the filter */
255   if (NULL == tr_filter_add_line(filt, fline)) {
256     tr_debug("tr_cfg_default_filters: could not add line to filter.");
257     *rc = TR_CFG_NOMEM;
258     goto cleanup;
259   }
260
261   /* put the filter in a set */
262   filt_set=tr_filter_set_new(tmp_ctx);
263   if ((filt_set==NULL)||(0!=tr_filter_set_add(filt_set, filt))) {
264     tr_debug("tr_cfg_default_filters: could not allocate filter set.");
265     *rc=TR_CFG_NOMEM;
266     goto cleanup;
267   }
268   talloc_steal(mem_ctx, filt_set);
269
270 cleanup:
271   talloc_free(tmp_ctx);
272
273   if (*rc!=TR_CFG_SUCCESS)
274     filt=NULL;
275
276   if (n_prefix!=NULL)
277     tr_free_name(n_prefix);
278   if (n_rp_realm_1!=NULL)
279     tr_free_name(n_rp_realm_1);
280   if (n_rp_realm_2!=NULL)
281     tr_free_name(n_rp_realm_2);
282   if (n_realm!=NULL)
283     tr_free_name(n_realm);
284   if (n_domain!=NULL)
285     tr_free_name(n_domain);
286   if (name!=NULL)
287     tr_free_name(name);
288
289   return filt_set;
290 }
291
292 /* parses rp client */
293 static TR_RP_CLIENT *tr_cfg_parse_one_rp_client(TALLOC_CTX *mem_ctx, json_t *jrealm, TR_CFG_RC *rc)
294 {
295   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
296   TR_RP_CLIENT *client=NULL;
297   TR_CFG_RC call_rc=TR_CFG_ERROR;
298   TR_FILTER_SET *new_filts=NULL;
299   TR_NAME *realm=NULL;
300   json_t *jfilt=NULL;
301   json_t *jrealm_id=NULL;
302
303   *rc=TR_CFG_ERROR; /* default to error if not set */
304
305   if ((!jrealm) || (!rc)) {
306     tr_err("tr_cfg_parse_one_rp_client: Bad parameters.");
307     if (rc)
308       *rc=TR_CFG_BAD_PARAMS;
309     goto cleanup;
310   }
311
312   if ((NULL==(jrealm_id=json_object_get(jrealm, "realm"))) || (!json_is_string(jrealm_id))) {
313     tr_debug("tr_cfg_parse_one_rp_client: no realm ID found.");
314     *rc=TR_CFG_BAD_PARAMS;
315     goto cleanup;
316   }
317
318   tr_debug("tr_cfg_parse_one_rp_client: realm_id=\"%s\"", json_string_value(jrealm_id));
319   realm=tr_new_name(json_string_value(jrealm_id));
320   if (realm==NULL) {
321     tr_err("tr_cfg_parse_one_rp_client: could not allocate realm ID.");
322     *rc=TR_CFG_NOMEM;
323     goto cleanup;
324   }
325
326   if (NULL==(client=tr_rp_client_new(tmp_ctx))) {
327     tr_err("tr_cfg_parse_one_rp_client: could not allocate rp client.");
328     *rc=TR_CFG_NOMEM;
329     goto cleanup;
330   }
331
332   call_rc = tr_cfg_parse_gss_names(client, json_object_get(jrealm, "gss_names"), &(client->gss_names));
333
334   if (call_rc!=TR_CFG_SUCCESS) {
335     tr_err("tr_cfg_parse_one_rp_client: could not parse gss_names.");
336     *rc=TR_CFG_NOPARSE;
337     goto cleanup;
338   }
339
340   /* parse filters */
341   jfilt=json_object_get(jrealm, "filters");
342   if (jfilt!=NULL) {
343     new_filts=tr_cfg_parse_filters(tmp_ctx, jfilt, &call_rc);
344     if (call_rc!=TR_CFG_SUCCESS) {
345       tr_err("tr_cfg_parse_one_rp_client: could not parse filters.");
346       *rc=TR_CFG_NOPARSE;
347       goto cleanup;
348     }
349   } else {
350     tr_debug("tr_cfg_parse_one_rp_client: no filters specified, using default filters.");
351     new_filts= tr_cfg_default_filters(tmp_ctx, realm, &call_rc);
352     if (call_rc!=TR_CFG_SUCCESS) {
353       tr_err("tr_cfg_parse_one_rp_client: could not set default filters.");
354       *rc=TR_CFG_NOPARSE;
355       goto cleanup;
356     }
357   }
358
359   tr_rp_client_set_filters(client, new_filts);
360   *rc=TR_CFG_SUCCESS;
361
362 cleanup:
363   if (realm!=NULL)
364     tr_free_name(realm);
365
366   if (*rc==TR_CFG_SUCCESS)
367     talloc_steal(mem_ctx, client);
368   else {
369     talloc_free(client);
370     client=NULL;
371   }
372
373   talloc_free(tmp_ctx);
374   return client;
375 }
376
377 /* Determine whether the realm is an RP realm */
378 static int tr_cfg_is_rp_realm(json_t *jrealm)
379 {
380   /* Check that we have a gss name. */
381   if (NULL != json_object_get(jrealm, "gss_names"))
382     return 1;
383   else
384     return 0;
385 }
386
387 /* Parse any rp clients in the j_realms object. Ignores other realms. */
388 TR_RP_CLIENT *tr_cfg_parse_rp_clients(TALLOC_CTX *mem_ctx, json_t *jrealms, TR_CFG_RC *rc)
389 {
390   TALLOC_CTX *tmp_ctx=talloc_new(NULL);
391   TR_RP_CLIENT *clients=NULL;
392   TR_RP_CLIENT *new_client=NULL;
393   json_t *this_jrealm=NULL;
394   int ii=0;
395
396   *rc=TR_CFG_ERROR;
397   if ((jrealms==NULL) || (!json_is_array(jrealms))) {
398     tr_err("tr_cfg_parse_rp_clients: realms not an array");
399     *rc=TR_CFG_BAD_PARAMS;
400     goto cleanup;
401   }
402
403   for (ii=0; ii<json_array_size(jrealms); ii++) {
404     this_jrealm=json_array_get(jrealms, ii);
405     if (tr_cfg_is_rp_realm(this_jrealm)) {
406       new_client=tr_cfg_parse_one_rp_client(tmp_ctx, this_jrealm, rc);
407       if ((*rc)!=TR_CFG_SUCCESS) {
408         tr_err("tr_cfg_parse_rp_clients: error decoding realm entry %d", ii+1);
409         *rc=TR_CFG_NOPARSE;
410         goto cleanup;
411       }
412       tr_rp_client_add(clients, new_client);
413     }
414   }
415
416   *rc=TR_CFG_SUCCESS;
417   talloc_steal(mem_ctx, clients);
418
419 cleanup:
420   talloc_free(tmp_ctx);
421   return clients;
422 }