Allow caller to set port number for tidc_open_connection(). Install
[trust_router.git] / common / tr_constraint.c
1 /*
2  * Copyright (c) 2012, 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 #include <jansson.h>
35
36 #include <tr_filter.h>
37 #include <trust_router/tr_constraint.h>
38
39 TR_CONSTRAINT_SET *tr_constraint_set_from_fline (TR_FLINE *fline)
40 {
41   json_t *cset = NULL;
42
43   if (!fline)
44     return NULL;
45
46   if (fline->realm_cons)
47     tr_constraint_add_to_set(&cset, fline->realm_cons);
48   if (fline->domain_cons)
49     tr_constraint_add_to_set(&cset, fline->domain_cons);
50   
51    return cset;
52 }
53
54 /* A constraint set is represented in json as an array of constraint
55  * objects.  So, a constraint set (cset) that consists of one realm
56  * constraint and one domain constraint might look like:
57  *
58  *      {cset: [{domain: [a.com, b.co.uk]},
59  *              {realm: [c.net, d.org]}]}
60  */
61
62 void tr_constraint_add_to_set (TR_CONSTRAINT_SET **cset, TR_CONSTRAINT *cons)
63 {
64   json_t *jcons = NULL;
65   json_t *jmatches = NULL;
66   int i = 0;
67
68   if ((!cset) || (!cons))
69     return;
70
71   /* If we don't already have a json object, create one */
72   if (!(*cset))
73     *cset = json_array();
74
75   /* Create a json object representing cons */
76   jmatches = json_array();
77   jcons = json_object();
78
79   for (i = 0; ((i < TR_MAX_CONST_MATCHES) && (NULL != cons->matches[i])); i++) {
80     json_array_append_new(jmatches, json_string(cons->matches[i]->buf));
81   }
82
83   json_object_set_new(jcons, cons->type->buf, jmatches);
84   
85   /* Add the created object to the cset object */
86   json_array_append_new(*cset, jcons);
87
88