Move TRP messaging to tr_msg.c. Fix old bug.
[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 TID_RESP *tid_resp_new(TALLOC_CTX *mem_ctx)
43 {
44   return talloc(mem_ctx, TID_RESP);
45 }
46
47 void tid_resp_free(TID_RESP *resp)
48 {
49   if (resp)
50     talloc_free(resp);
51 }
52
53 TR_EXPORT int tid_resp_get_result(TID_RESP *resp)
54 {
55   return(resp->result);
56 }
57
58 void tid_resp_set_result(TID_RESP *resp, int result)
59 {
60   resp->result = result;
61 }
62
63 TR_EXPORT TR_NAME *tid_resp_get_err_msg(TID_RESP *resp)
64 {
65   return(resp->err_msg);
66 }
67
68 void tid_resp_set_err_msg(TID_RESP *resp, TR_NAME *err_msg)
69 {
70   resp->err_msg = err_msg;
71 }
72
73 TR_EXPORT TR_NAME *tid_resp_get_rp_realm(TID_RESP *resp)
74 {
75   return(resp->rp_realm);
76 }
77
78 void tid_resp_set_rp_realm(TID_RESP *resp, TR_NAME *rp_realm)
79 {
80   resp->rp_realm = rp_realm;
81 }
82
83 TR_EXPORT TR_NAME *tid_resp_get_realm(TID_RESP *resp)
84 {
85   return(resp->realm);
86 }
87
88 void tid_resp_set_realm(TID_RESP *resp, TR_NAME *realm)
89 {
90   resp->realm = realm;
91 }
92
93 TR_EXPORT TR_NAME *tid_resp_get_comm(TID_RESP *resp)
94 {
95   return(resp->comm);
96 }
97
98 void tid_resp_set_comm(TID_RESP *resp, TR_NAME *comm)
99 {
100   resp->comm = comm;
101 }
102
103 TR_EXPORT TR_NAME *tid_resp_get_orig_coi(TID_RESP *resp)
104 {
105   return(resp->orig_coi);
106 }
107
108 void tid_resp_set_orig_coi(TID_RESP *resp, TR_NAME *orig_coi)
109 {
110   resp->orig_coi = orig_coi;
111 }
112
113 TR_EXPORT TID_SRVR_BLK *tid_resp_get_server(TID_RESP *resp,
114                                             size_t index)
115 {
116   assert(resp);
117   assert(index < resp->num_servers);
118   return(&(resp->servers[index]));
119 }
120
121 size_t tid_resp_get_num_servers(const TID_RESP *resp)
122 {
123   assert(resp);
124   return resp->num_servers;
125 }
126
127
128 const TID_PATH *tid_srvr_get_path( const TID_SRVR_BLK *block)
129 {
130   if (!block)
131     return NULL;
132   return (const TID_PATH *) block->path;
133 }
134
135 const TID_PATH *tid_resp_get_error_path( const TID_RESP *resp)
136 {
137   if (!resp)
138     return NULL;
139   return (const TID_PATH *) resp->error_path;
140 }
141
142 const TID_PATH *tid_resp_get_a_path( const TID_RESP *const_resp)
143 {
144   size_t index;
145   TID_SRVR_BLK *server;
146   TID_RESP *resp = (TID_RESP *) const_resp;
147   if (!resp)
148     return NULL;
149
150
151   if (resp->error_path)
152     return (const TID_PATH *) resp->error_path;
153   tid_resp_servers_foreach( resp, server, index) {
154     if (server->path)
155       return (const TID_PATH *) server->path;
156   }
157   return NULL;
158   
159 }