Merge branch 'master' into jennifer/trp-devel
[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 <tid_internal.h>
41
42 static int tid_resp_destructor(void *obj)
43 {
44   TID_RESP *resp=talloc_get_type_abort(obj, TID_RESP);
45   if (resp->err_msg!=NULL)
46     tr_free_name(resp->err_msg);
47   if (resp->rp_realm!=NULL)
48     tr_free_name(resp->rp_realm);
49   if (resp->realm!=NULL)
50     tr_free_name(resp->realm);
51   if (resp->comm!=NULL)
52     tr_free_name(resp->comm);
53   if (resp->orig_coi!=NULL)
54     tr_free_name(resp->orig_coi);
55   return 0;
56 }
57
58 TID_RESP *tid_resp_new(TALLOC_CTX *mem_ctx)
59 {
60   TID_RESP *resp=talloc(mem_ctx, TID_RESP);
61   if (resp!=NULL) {
62     talloc_set_destructor((void *)resp, tid_resp_destructor);
63   }
64   return resp;
65 }
66
67 void tid_resp_free(TID_RESP *resp)
68 {
69   if (resp)
70     talloc_free(resp);
71 }
72
73 TR_EXPORT int tid_resp_get_result(TID_RESP *resp)
74 {
75   return(resp->result);
76 }
77
78 void tid_resp_set_result(TID_RESP *resp, int result)
79 {
80   resp->result = result;
81 }
82
83 TR_EXPORT TR_NAME *tid_resp_get_err_msg(TID_RESP *resp)
84 {
85   return(resp->err_msg);
86 }
87
88 void tid_resp_set_err_msg(TID_RESP *resp, TR_NAME *err_msg)
89 {
90   resp->err_msg = err_msg;
91 }
92
93 TR_EXPORT TR_NAME *tid_resp_get_rp_realm(TID_RESP *resp)
94 {
95   return(resp->rp_realm);
96 }
97
98 void tid_resp_set_rp_realm(TID_RESP *resp, TR_NAME *rp_realm)
99 {
100   resp->rp_realm = rp_realm;
101 }
102
103 TR_EXPORT TR_NAME *tid_resp_get_realm(TID_RESP *resp)
104 {
105   return(resp->realm);
106 }
107
108 void tid_resp_set_realm(TID_RESP *resp, TR_NAME *realm)
109 {
110   resp->realm = realm;
111 }
112
113 TR_EXPORT TR_NAME *tid_resp_get_comm(TID_RESP *resp)
114 {
115   return(resp->comm);
116 }
117
118 void tid_resp_set_comm(TID_RESP *resp, TR_NAME *comm)
119 {
120   resp->comm = comm;
121 }
122
123 TR_EXPORT TR_NAME *tid_resp_get_orig_coi(TID_RESP *resp)
124 {
125   return(resp->orig_coi);
126 }
127
128 void tid_resp_set_orig_coi(TID_RESP *resp, TR_NAME *orig_coi)
129 {
130   resp->orig_coi = orig_coi;
131 }
132
133 TR_EXPORT TID_SRVR_BLK *tid_resp_get_server(TID_RESP *resp,
134                                             size_t index)
135 {
136   assert(resp);
137   assert(index < resp->num_servers);
138   return(&(resp->servers[index]));
139 }
140
141 size_t tid_resp_get_num_servers(const TID_RESP *resp)
142 {
143   assert(resp);
144   return resp->num_servers;
145 }
146
147
148 const TID_PATH *tid_srvr_get_path( const TID_SRVR_BLK *block)
149 {
150   if (!block)
151     return NULL;
152   return (const TID_PATH *) block->path;
153 }
154
155 const TID_PATH *tid_resp_get_error_path( const TID_RESP *resp)
156 {
157   if (!resp)
158     return NULL;
159   return (const TID_PATH *) resp->error_path;
160 }
161
162 const TID_PATH *tid_resp_get_a_path( const TID_RESP *const_resp)
163 {
164   size_t index;
165   TID_SRVR_BLK *server;
166   TID_RESP *resp = (TID_RESP *) const_resp;
167   if (!resp)
168     return NULL;
169
170
171   if (resp->error_path)
172     return (const TID_PATH *) resp->error_path;
173   tid_resp_servers_foreach( resp, server, index) {
174     if (server->path)
175       return (const TID_PATH *) server->path;
176   }
177   return NULL;
178   
179 }