Fix segfaults related to copying DH parameters.
[trust_router.git] / tid / tid_resp.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 <stdio.h>
36 #include <stdlib.h>
37 #include <assert.h>
38 #include <talloc.h>
39
40 #include <trust_router/tr_dh.h>
41 #include <tid_internal.h>
42
43 static int tid_resp_destructor(void *obj)
44 {
45   TID_RESP *resp=talloc_get_type_abort(obj, TID_RESP);
46   if (resp->err_msg!=NULL)
47     tr_free_name(resp->err_msg);
48   if (resp->rp_realm!=NULL)
49     tr_free_name(resp->rp_realm);
50   if (resp->realm!=NULL)
51     tr_free_name(resp->realm);
52   if (resp->comm!=NULL)
53     tr_free_name(resp->comm);
54   if (resp->orig_coi!=NULL)
55     tr_free_name(resp->orig_coi);
56   return 0;
57 }
58
59 TID_RESP *tid_resp_new(TALLOC_CTX *mem_ctx)
60 {
61   TID_RESP *resp=talloc(mem_ctx, TID_RESP);
62   if (resp!=NULL) {
63     resp->result=TID_ERROR;
64     resp->err_msg=NULL;
65     resp->rp_realm=NULL;
66     resp->realm=NULL;
67     resp->comm=NULL;
68     resp->cons=NULL;
69     resp->orig_coi=NULL;
70     resp->servers=NULL;
71     resp->error_path=NULL;
72     talloc_set_destructor((void *)resp, tid_resp_destructor);
73   }
74   return resp;
75 }
76
77 void tid_resp_free(TID_RESP *resp)
78 {
79   if (resp)
80     talloc_free(resp);
81 }
82
83 TID_RESP *tid_resp_dup(TALLOC_CTX *mem_ctx, TID_RESP *resp)
84 {
85   TALLOC_CTX *tmp_ctx=NULL;
86   TID_RESP *newresp=NULL;
87
88   if (resp==NULL)
89     return NULL;
90
91   tmp_ctx=talloc_new(NULL);
92   newresp=talloc(tmp_ctx, TID_RESP);
93
94   if (NULL!=newresp) {
95     newresp->result=resp->result;
96     newresp->err_msg=tr_dup_name(resp->err_msg);
97     newresp->rp_realm=tr_dup_name(resp->err_msg);
98     newresp->realm=tr_dup_name(resp->realm);
99     newresp->comm=tr_dup_name(resp->comm);
100     newresp->orig_coi=tr_dup_name(resp->orig_coi);
101     newresp->servers=tid_srvr_blk_dup(newresp, resp->servers);
102     tid_resp_set_cons(newresp, resp->cons);
103     tid_resp_set_error_path(newresp, resp->error_path);
104   }
105   talloc_free(tmp_ctx);
106   return newresp;
107 }
108
109 TR_EXPORT int tid_resp_get_result(TID_RESP *resp)
110 {
111   return(resp->result);
112 }
113
114 void tid_resp_set_result(TID_RESP *resp, int result)
115 {
116   resp->result = result;
117 }
118
119 TR_EXPORT TR_NAME *tid_resp_get_err_msg(TID_RESP *resp)
120 {
121   return(resp->err_msg);
122 }
123
124 void tid_resp_set_err_msg(TID_RESP *resp, TR_NAME *err_msg)
125 {
126   if (resp->err_msg!=NULL)
127     tr_free_name(resp->err_msg);
128
129   resp->err_msg = err_msg;
130 }
131
132 TR_EXPORT TR_NAME *tid_resp_get_rp_realm(TID_RESP *resp)
133 {
134   return(resp->rp_realm);
135 }
136
137 void tid_resp_set_rp_realm(TID_RESP *resp, TR_NAME *rp_realm)
138 {
139   resp->rp_realm = rp_realm;
140 }
141
142 TR_EXPORT TR_NAME *tid_resp_get_realm(TID_RESP *resp)
143 {
144   return(resp->realm);
145 }
146
147 void tid_resp_set_realm(TID_RESP *resp, TR_NAME *realm)
148 {
149   resp->realm = realm;
150 }
151
152 TR_EXPORT TR_NAME *tid_resp_get_comm(TID_RESP *resp)
153 {
154   return(resp->comm);
155 }
156
157 void tid_resp_set_comm(TID_RESP *resp, TR_NAME *comm)
158 {
159   resp->comm = comm;
160 }
161
162 TR_EXPORT TR_NAME *tid_resp_get_orig_coi(TID_RESP *resp)
163 {
164   return(resp->orig_coi);
165 }
166
167 void tid_resp_set_orig_coi(TID_RESP *resp, TR_NAME *orig_coi)
168 {
169   resp->orig_coi = orig_coi;
170 }
171
172 TR_EXPORT TID_SRVR_BLK *tid_resp_get_server(TID_RESP *resp,
173                                             size_t index)
174 {
175   TID_SRVR_BLK *this=NULL;
176   assert(resp);
177
178   for (this=resp->servers; index>0; index--, this=this->next) {}
179
180   return this;
181 }
182
183 size_t tid_resp_get_num_servers(const TID_RESP *resp)
184 {
185   size_t count=0;
186   TID_SRVR_BLK *this=NULL;
187
188   assert(resp!=NULL);
189   for (count=0, this=resp->servers; this!=NULL; count++, this=this->next) {}
190   return count;
191 }
192
193 static int tid_srvr_blk_destructor(void *obj)
194 {
195   TID_SRVR_BLK *srvr=talloc_get_type_abort(obj, TID_SRVR_BLK);
196
197   if (srvr->key_name!=NULL)
198     tr_free_name(srvr->key_name);
199   if (srvr->aaa_server_dh!=NULL)
200     tr_destroy_dh_params(srvr->aaa_server_dh);
201   if (srvr->path!=NULL)
202     json_decref(srvr->path);
203   return 0;
204 }
205
206 TR_EXPORT TID_SRVR_BLK *tid_srvr_blk_new(TALLOC_CTX *mem_ctx)
207 {
208   TID_SRVR_BLK *srvr=talloc(mem_ctx, TID_SRVR_BLK);
209
210   if (srvr!=NULL) {
211     srvr->next=NULL;
212     srvr->aaa_server_addr=NULL;
213     srvr->key_name=NULL;
214     srvr->aaa_server_dh=NULL;
215     srvr->key_expiration=(GTimeVal){0};
216     srvr->path=NULL;
217     talloc_set_destructor((void *)srvr, tid_srvr_blk_destructor);
218   }
219   return srvr;
220 }
221
222 TR_EXPORT void tid_srvr_blk_free(TID_SRVR_BLK *srvr)
223 {
224   talloc_free(srvr);
225 }
226
227 TR_EXPORT TID_SRVR_BLK *tid_srvr_blk_dup(TALLOC_CTX *mem_ctx, TID_SRVR_BLK *srvr)
228 {
229   TID_SRVR_BLK *new=NULL;
230
231   if (srvr==NULL)
232     return NULL;
233
234   new=tid_srvr_blk_new(mem_ctx);
235   if (new!=NULL) {
236     if (srvr->aaa_server_addr!=NULL)
237       new->aaa_server_addr=talloc_strdup(new, srvr->aaa_server_addr);
238     new->key_name=tr_dup_name(srvr->key_name);
239     new->aaa_server_dh=tr_dh_dup(srvr->aaa_server_dh);
240     new->key_expiration=srvr->key_expiration;
241     tid_srvr_blk_set_path(new, srvr->path);
242
243     tid_srvr_blk_add(new->next, tid_srvr_blk_dup(mem_ctx, srvr->next));
244   }
245   return new;
246 }
247
248 /* use the macro */
249 TR_EXPORT TID_SRVR_BLK *tid_srvr_blk_add_func(TID_SRVR_BLK *head, TID_SRVR_BLK *new)
250 {
251   TID_SRVR_BLK *this=head;
252
253   if (head==NULL)
254     return new;
255
256   while (this->next!=NULL)
257     this=this->next;
258   this->next=new;
259   return head;
260 }
261
262 TR_EXPORT void tid_srvr_blk_set_path(TID_SRVR_BLK *block, json_t *path)
263 {
264   if (block->path!=NULL)
265     json_decref(block->path);
266   block->path=path;
267   if (block->path!=NULL)
268     json_incref(block->path);
269 }
270
271 TR_EXPORT const json_t *tid_srvr_get_path( const TID_SRVR_BLK *block)
272 {
273   if (!block)
274     return NULL;
275   return block->path;
276 }
277
278 TR_EXPORT void tid_resp_set_cons(TID_RESP *resp, TR_CONSTRAINT_SET *cons)
279 {
280   json_t *jc=(json_t *)cons;
281
282   if (resp->cons!=NULL)
283     json_decref((json_t *) (resp->cons));
284
285   resp->cons=(TR_CONSTRAINT_SET *)jc;
286   if (jc!=NULL)
287     json_incref(jc);
288 }
289
290 TR_EXPORT void tid_resp_set_error_path(TID_RESP *resp, json_t *ep)
291 {
292   if (resp->error_path!=NULL)
293     json_decref(resp->error_path);
294   resp->error_path=ep;
295   if (resp->error_path!=NULL)
296     json_incref(resp->error_path);
297 }
298
299 TR_EXPORT json_t *tid_resp_get_error_path(const TID_RESP *resp)
300 {
301   if (!resp)
302     return NULL;
303   return resp->error_path;
304 }
305
306 TR_EXPORT json_t *tid_resp_get_a_path(const TID_RESP *const_resp)
307 {
308   size_t index;
309   TID_SRVR_BLK *server;
310   TID_RESP *resp = (TID_RESP *) const_resp;
311   if (!resp)
312     return NULL;
313
314
315   if (resp->error_path)
316     return resp->error_path;
317   tid_resp_servers_foreach( resp, server, index) {
318     if (server->path)
319       return server->path;
320   }
321   return NULL;
322   
323 }