Log incoming IP address when accepting a connection
[trust_router.git] / common / tests / cfg_test.c
1 /*
2  * Copyright (c) 2016, 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 <stdio.h>
36 #include <talloc.h>
37 #include <assert.h>
38
39 #include <tr_name_internal.h>
40 #include <tr_comm.h>
41 #include <tr_idp.h>
42 #include <tr_config.h>
43 #include <tr_debug.h>
44
45 static void tr_talloc_log(const char *msg)
46 {
47   tr_debug("talloc: %s", msg);
48 }
49
50 static int verify_idp_cfg(TR_CFG *cfg)
51 {
52   TR_COMM *comm=NULL;
53   TR_NAME *name=NULL;
54   TR_IDP_REALM *idp_realm=NULL;
55   TR_AAA_SERVER *aaa=NULL;
56
57   assert(cfg!=NULL);
58
59   /* test the comms attribute */
60   assert(cfg->ctable!=NULL);
61   name=tr_new_name("apc.example.com");
62   comm=tr_comm_table_find_comm(cfg->ctable, name);
63   tr_free_name(name);
64   assert(comm!=NULL);
65
66   assert(comm->type==TR_COMM_APC);
67   assert(comm->expiration_interval==TR_DEFAULT_APC_EXPIRATION_INTERVAL);
68   assert(comm->apcs==NULL);
69
70   name=tr_new_name("A.idp.cfg");
71   assert(name!=NULL);
72   idp_realm=tr_comm_find_idp(cfg->ctable, comm, name);
73   assert(idp_realm!=NULL);
74   assert(idp_realm->shared_config==0);
75   assert(idp_realm->origin==TR_REALM_LOCAL);
76   tr_free_name(name);
77   name=tr_new_name("apc.example.com");
78   assert(tr_name_cmp(idp_realm->apcs->id, name)==0);
79   tr_free_name(name);
80   
81   assert(idp_realm->aaa_servers!=NULL);
82   name=tr_new_name("rad1.A.idp.cfg");
83   for (aaa=idp_realm->aaa_servers;
84        (aaa!=NULL) && (tr_name_cmp(name, aaa->hostname)!=0);
85        aaa=aaa->next) { }
86   assert(aaa!=NULL);
87   tr_free_name(name);
88
89   name=tr_new_name("rad2.A.idp.cfg");
90   for (aaa=idp_realm->aaa_servers;
91        (aaa!=NULL) && (tr_name_cmp(name, aaa->hostname)!=0);
92        aaa=aaa->next) { }
93   assert(aaa!=NULL);
94   tr_free_name(name);
95
96   return 0;
97 }
98
99 static int verify_rp_cfg(TR_CFG *cfg)
100 {
101   int ii=0;
102   TR_NAME *name=NULL;
103
104   assert(cfg!=NULL);
105   assert(cfg->rp_clients!=NULL);
106   assert(cfg->rp_clients->next==NULL);
107   assert(cfg->rp_clients->comm_next==NULL);
108
109   assert(cfg->rp_clients->gss_names!=NULL);
110   for (ii=1; ii<TR_MAX_GSS_NAMES; ii++)
111     assert(cfg->rp_clients->gss_names->names[ii]==NULL);
112   assert(cfg->rp_clients->gss_names->names[0]!=NULL);
113   name=tr_new_name("gss@example.com");
114   assert(tr_name_cmp(name, cfg->rp_clients->gss_names->names[0])==0);
115   return 0;
116 }
117
118 int main(void)
119 {
120   TALLOC_CTX *mem_ctx=talloc_new(NULL);
121   TR_CFG_MGR *cfg_mgr=NULL;
122   TR_CFG_RC rc=TR_CFG_ERROR;
123   char *fname=NULL;
124
125   tr_log_open();
126
127   talloc_set_log_fn(tr_talloc_log);
128   cfg_mgr=tr_cfg_mgr_new(mem_ctx);
129
130   printf("Parsing idp.cfg.\n");
131   fname="idp.cfg";
132   rc=tr_parse_config(cfg_mgr, 1, &fname);
133   switch(rc) {
134   case TR_CFG_SUCCESS:
135     tr_debug("main: TR_CFG_SUCCESS");
136     break;
137   case TR_CFG_ERROR:
138     tr_debug("main: TR_CFG_ERROR");
139     break;
140   case TR_CFG_BAD_PARAMS:
141     tr_debug("main: TR_CFG_BAD_PARAMS");
142     break;
143   case TR_CFG_NOPARSE:
144     tr_debug("main: TR_CFG_NOPARSE");
145     break;
146   case TR_CFG_NOMEM:
147     tr_debug("main: TR_CFG_NOMEM");
148     break;
149   }
150
151   printf("Verifying IDP parse results... ");
152   if (verify_idp_cfg(cfg_mgr->new)!=0) {
153     printf("Error!\n");
154     exit(-1);
155   }
156   printf("success!\n");
157
158   printf("Verifying RP parse results... ");
159   if (verify_rp_cfg(cfg_mgr->new)!=0) {
160     printf("Error!\n");
161     exit(-1);
162   }
163   printf("success!\n");
164
165   talloc_report_full(mem_ctx, stderr);
166   tr_cfg_mgr_free(cfg_mgr);
167   talloc_free(mem_ctx);
168   return 0;
169 }