Merge branch 'master' into jennifer/trp-devel
[trust_router.git] / common / tr_idp.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
35 #include <talloc.h>
36
37 #include <trust_router/tr_name.h>
38 #include <tr_idp.h>
39 #include <tr_config.h>
40
41 static int tr_aaa_server_destructor(void *obj)
42 {
43   TR_AAA_SERVER *aaa=talloc_get_type_abort(obj, TR_AAA_SERVER);
44   if (aaa->hostname!=NULL)
45     tr_free_name(aaa->hostname);
46   return 0;
47 }
48
49 TR_AAA_SERVER *tr_aaa_server_new(TALLOC_CTX *mem_ctx, TR_NAME *hostname)
50 {
51   TR_AAA_SERVER *aaa=talloc(mem_ctx, TR_AAA_SERVER);
52   if (aaa!=NULL) {
53     aaa->hostname=hostname;
54     talloc_set_destructor((void *)aaa, tr_aaa_server_destructor);
55   }
56   return aaa;
57 }
58
59 void tr_aaa_server_free(TR_AAA_SERVER *aaa)
60 {
61   talloc_free(aaa);
62 }
63
64 TR_AAA_SERVER *tr_idp_aaa_server_lookup(TR_IDP_REALM *idp_realms, TR_NAME *idp_realm_name, TR_NAME *comm)
65 {
66   TR_IDP_REALM *idp = NULL;
67
68   for (idp = idp_realms; idp != NULL; idp = idp->next) {
69     if (!tr_name_cmp(idp_realm_name, idp->realm_id)) {
70       /* TBD -- check that the community is one of the APCs for the IDP */
71       break;
72     }
73   }
74   if (idp)
75     return idp->aaa_servers;
76   else 
77     return NULL;
78 }
79
80 TR_AAA_SERVER *tr_default_server_lookup(TR_AAA_SERVER *default_servers, TR_NAME *comm)
81 {
82   if (!default_servers)
83     return NULL;
84
85   return(default_servers);
86 }
87
88 static int tr_idp_realm_destructor(void *obj)
89 {
90   TR_IDP_REALM *idp=talloc_get_type_abort(obj, TR_IDP_REALM);
91   if (idp->realm_id!=NULL)
92     tr_free_name(idp->realm_id);
93   return 0;
94 }
95
96 TR_IDP_REALM *tr_idp_realm_new(TALLOC_CTX *mem_ctx)
97 {
98   TR_IDP_REALM *idp=talloc(mem_ctx, TR_IDP_REALM);
99   if (idp!=NULL) {
100     idp->next=NULL;
101     idp->comm_next=NULL;
102     idp->realm_id=NULL;
103     idp->shared_config=0;
104     idp->aaa_servers=NULL;
105     idp->apcs=NULL;
106     idp->origin=TR_REALM_LOCAL;
107     talloc_set_destructor((void *)idp, tr_idp_realm_destructor);
108   }
109   return idp;
110 }