Add a 'request_id' to TID requests and responses
[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   if (resp->request_id!=NULL)
57     tr_free_name(resp->request_id);
58   return 0;
59 }
60
61 TID_RESP *tid_resp_new(TALLOC_CTX *mem_ctx)
62 {
63   TID_RESP *resp=talloc(mem_ctx, TID_RESP);
64   if (resp!=NULL) {
65     resp->result=TID_ERROR;
66     resp->err_msg=NULL;
67     resp->rp_realm=NULL;
68     resp->realm=NULL;
69     resp->comm=NULL;
70     resp->cons=NULL;
71     resp->orig_coi=NULL;
72     resp->servers=NULL;
73     resp->request_id=NULL;
74     resp->error_path=NULL;
75     talloc_set_destructor((void *)resp, tid_resp_destructor);
76   }
77   return resp;
78 }
79
80 void tid_resp_free(TID_RESP *resp)
81 {
82   if (resp)
83     talloc_free(resp);
84 }
85
86 TID_RESP *tid_resp_dup(TALLOC_CTX *mem_ctx, TID_RESP *resp)
87 {
88   TID_RESP *newresp=NULL;
89
90   if (resp==NULL)
91     return NULL;
92
93   newresp=tid_resp_new(mem_ctx);
94
95   if (NULL!=newresp) {
96     newresp->result=resp->result;
97     newresp->err_msg=tr_dup_name(resp->err_msg);
98     newresp->rp_realm=tr_dup_name(resp->rp_realm);
99     newresp->realm=tr_dup_name(resp->realm);
100     newresp->comm=tr_dup_name(resp->comm);
101     newresp->orig_coi=tr_dup_name(resp->orig_coi);
102     newresp->servers=tid_srvr_blk_dup(newresp, resp->servers);
103     tid_resp_set_cons(newresp, resp->cons);
104     tid_resp_set_error_path(newresp, resp->error_path);
105   }
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 TR_NAME *tid_resp_get_request_id(TID_RESP *resp)
173 {
174   return(resp->request_id);
175 }
176
177 void tid_resp_set_request_id(TID_RESP *resp, TR_NAME *request_id)
178 {
179   resp->request_id = request_id;
180 }
181
182 TR_EXPORT TID_SRVR_BLK *tid_resp_get_server(TID_RESP *resp,
183                                             size_t index)
184 {
185   TID_SRVR_BLK *this=NULL;
186   assert(resp);
187
188   for (this=resp->servers; index>0; index--, this=this->next) {}
189
190   return this;
191 }
192
193 size_t tid_resp_get_num_servers(const TID_RESP *resp)
194 {
195   size_t count=0;
196   TID_SRVR_BLK *this=NULL;
197
198   assert(resp!=NULL);
199   for (count=0, this=resp->servers; this!=NULL; count++, this=this->next) {}
200   return count;
201 }
202
203 static int tid_srvr_blk_destructor(void *obj)
204 {
205   TID_SRVR_BLK *srvr=talloc_get_type_abort(obj, TID_SRVR_BLK);
206
207   if (srvr->key_name!=NULL)
208     tr_free_name(srvr->key_name);
209   if (srvr->aaa_server_dh!=NULL)
210     tr_destroy_dh_params(srvr->aaa_server_dh);
211   if (srvr->path!=NULL)
212     json_decref((json_t *)(srvr->path));
213   return 0;
214 }
215
216 TR_EXPORT TID_SRVR_BLK *tid_srvr_blk_new(TALLOC_CTX *mem_ctx)
217 {
218   TID_SRVR_BLK *srvr=talloc(mem_ctx, TID_SRVR_BLK);
219
220   if (srvr!=NULL) {
221     srvr->next=NULL;
222     srvr->aaa_server_addr=NULL;
223     srvr->key_name=NULL;
224     srvr->aaa_server_dh=NULL;
225     srvr->key_expiration=(GTimeVal){0};
226     srvr->path=NULL;
227     talloc_set_destructor((void *)srvr, tid_srvr_blk_destructor);
228   }
229   return srvr;
230 }
231
232 TR_EXPORT void tid_srvr_blk_free(TID_SRVR_BLK *srvr)
233 {
234   talloc_free(srvr);
235 }
236
237 TR_EXPORT TID_SRVR_BLK *tid_srvr_blk_dup(TALLOC_CTX *mem_ctx, TID_SRVR_BLK *srvr)
238 {
239   TID_SRVR_BLK *new=NULL;
240
241   if (srvr==NULL)
242     return NULL;
243
244   new=tid_srvr_blk_new(mem_ctx);
245   if (new!=NULL) {
246     if (srvr->aaa_server_addr!=NULL)
247       new->aaa_server_addr=talloc_strdup(new, srvr->aaa_server_addr);
248     new->key_name=tr_dup_name(srvr->key_name);
249     new->aaa_server_dh=tr_dh_dup(srvr->aaa_server_dh);
250     new->key_expiration=srvr->key_expiration;
251     
252     tid_srvr_blk_set_path(new, srvr->path);
253
254     tid_srvr_blk_add(new->next, tid_srvr_blk_dup(mem_ctx, srvr->next));
255   }
256   return new;
257 }
258
259 /* use the macro */
260 TR_EXPORT TID_SRVR_BLK *tid_srvr_blk_add_func(TID_SRVR_BLK *head, TID_SRVR_BLK *new)
261 {
262   TID_SRVR_BLK *this=head;
263
264   if (head==NULL)
265     return new;
266
267   while (this->next!=NULL)
268     this=this->next;
269   
270   this->next=new;
271   while (this!=NULL) {
272     talloc_steal(head, this);
273     this=this->next;
274   }
275   return head;
276 }
277
278 TR_EXPORT void tid_srvr_blk_set_path(TID_SRVR_BLK *block, TID_PATH *path)
279 {
280   if (block->path!=NULL)
281     json_decref((json_t *)(block->path));
282   block->path=path;
283   if (block->path!=NULL)
284     json_incref((json_t *)(block->path));
285 }
286
287 TR_EXPORT const TID_PATH *tid_srvr_get_path( const TID_SRVR_BLK *block)
288 {
289   if (!block)
290     return NULL;
291   return block->path;
292 }
293
294 TR_EXPORT int tid_srvr_get_key_expiration(const TID_SRVR_BLK *block, struct timeval *tv_out)
295 {
296   if ((block==NULL) || (tv_out==NULL))
297     return -1; /* error */
298
299   tv_out->tv_sec=block->key_expiration.tv_sec;
300   tv_out->tv_usec=block->key_expiration.tv_usec;
301   return 0;
302 }
303
304
305 TR_EXPORT void tid_resp_set_cons(TID_RESP *resp, TR_CONSTRAINT_SET *cons)
306 {
307   json_t *jc=(json_t *)cons;
308
309   if (resp->cons!=NULL)
310     json_decref((json_t *) (resp->cons));
311
312   resp->cons=(TR_CONSTRAINT_SET *)jc;
313   if (jc!=NULL)
314     json_incref(jc);
315 }
316
317 TR_EXPORT void tid_resp_set_error_path(TID_RESP *resp, json_t *ep)
318 {
319   if (resp->error_path!=NULL)
320     json_decref(resp->error_path);
321   resp->error_path=ep;
322   if (resp->error_path!=NULL)
323     json_incref(resp->error_path);
324 }
325
326 TR_EXPORT const TID_PATH *tid_resp_get_error_path(const TID_RESP *resp)
327 {
328   if (!resp)
329     return NULL;
330   return (const TID_PATH *)(resp->error_path);
331 }
332
333 TR_EXPORT const TID_PATH *tid_resp_get_a_path(const TID_RESP *const_resp)
334 {
335   size_t index;
336   TID_SRVR_BLK *server;
337   TID_RESP *resp = (TID_RESP *) const_resp;
338   if (!resp)
339     return NULL;
340
341   if (resp->error_path)
342     return (const TID_PATH *)(resp->error_path);
343   tid_resp_servers_foreach( resp, server, index) {
344     if (server->path)
345       return server->path;
346   }
347   return NULL;
348   
349 }