tr_constraint_set_get_match_strings
[trust_router.git] / tid / tid_req.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/tid.h>
41 #include <jansson.h>
42
43 static int destroy_tid_req(TID_REQ *req)
44 {
45   if (req->json_references)
46     json_decref(req->json_references);
47   return 0;
48 }
49
50 TID_REQ *tid_req_new()
51 {
52   TID_REQ *req = talloc_zero(NULL, TID_REQ);
53   if(!req)
54     return NULL;
55   talloc_set_destructor(req, destroy_tid_req);
56   req->json_references = json_array();
57   assert(req->json_references);
58   req->conn = -1;
59   return req;
60 }
61
62 TID_REQ *tid_req_get_next_req(TID_REQ *req)
63 {
64   return(req->next_req);
65 }
66
67 void tid_req_set_next_req(TID_REQ *req, TID_REQ *next_req)
68 {
69   req->next_req = next_req;
70 }
71
72 int tid_req_get_resp_sent(TID_REQ *req)
73 {
74   return(req->resp_sent);
75 }
76
77 void tid_req_set_resp_sent(TID_REQ *req, int resp_sent)
78 {
79   req->resp_sent = resp_sent;
80 }
81
82 int tid_req_get_conn(TID_REQ *req)
83 {
84   return(req->conn);
85 }
86
87 void tid_req_set_conn(TID_REQ *req, int conn)
88 {
89   req->conn = conn;
90 }
91
92 gss_ctx_id_t tid_req_get_gssctx(TID_REQ *req)
93 {
94   return(req->gssctx);
95 }
96
97 void tid_req_set_gssctx(TID_REQ *req, gss_ctx_id_t gssctx)
98 {
99   req->gssctx = gssctx;
100 }
101
102 int tid_req_get_resp_rcvd(TID_REQ *req)
103 {
104   return(req->resp_rcvd);
105 }
106
107 void tid_req_set_resp_rcvd(TID_REQ *req, int resp_rcvd)
108 {
109   req->resp_rcvd = resp_rcvd;
110 }
111
112 TR_NAME *tid_req_get_rp_realm(TID_REQ *req)
113 {
114   return(req->rp_realm);
115 }
116
117 void tid_req_set_rp_realm(TID_REQ *req, TR_NAME *rp_realm)
118 {
119   req->rp_realm = rp_realm;
120 }
121
122 TR_NAME *tid_req_get_realm(TID_REQ *req)
123 {
124   return(req->realm);
125 }
126
127 void tid_req_set_realm(TID_REQ *req, TR_NAME *realm)
128 {
129   req->realm = realm;
130 }
131
132 TR_NAME *tid_req_get_comm(TID_REQ *req)
133 {
134   return(req->comm);
135 }
136
137 void tid_req_set_comm(TID_REQ *req, TR_NAME *comm)
138 {
139   req->comm = comm;
140 }
141
142 TR_NAME *tid_req_get_orig_coi(TID_REQ *req)
143 {
144   return(req->orig_coi);
145 }
146
147 void tid_req_set_rp_orig_coi(TID_REQ *req, TR_NAME *orig_coi)
148 {
149   req->orig_coi = orig_coi;
150 }
151
152 TIDC_RESP_FUNC *tid_req_get_resp_func(TID_REQ *req)
153 {
154   return(req->resp_func);
155 }
156
157 void tid_req_set_resp_func(TID_REQ *req, TIDC_RESP_FUNC *resp_func)
158 {
159   req->resp_func = resp_func;
160 }
161
162 void *tid_req_get_cookie(TID_REQ *req)
163 {
164   return(req->cookie);
165 }
166
167 void tid_req_set_cookie(TID_REQ *req, void *cookie)
168 {
169   req->cookie = cookie;
170 }
171
172 TID_REQ *tid_dup_req (TID_REQ *orig_req) 
173 {
174   TID_REQ *new_req = NULL;
175
176   if (NULL == (new_req = malloc(sizeof(TID_REQ)))) {
177     fprintf(stderr, "tid_dup_req: Can't allocated duplicate request.\n");
178     return NULL;
179   }
180
181   /* Memcpy for flat fields, not valid until names are duped. */
182   memcpy(new_req, orig_req, sizeof(TID_REQ));
183   json_incref(new_req->json_references);
184   
185   if ((NULL == (new_req->rp_realm = tr_dup_name(orig_req->rp_realm))) ||
186       (NULL == (new_req->realm = tr_dup_name(orig_req->realm))) ||
187       (NULL == (new_req->comm = tr_dup_name(orig_req->comm)))) {
188         fprintf(stderr, "tid_dup_req: Can't duplicate request (names).\n");
189   }
190
191   if (orig_req->orig_coi) {
192     if (NULL == (new_req->orig_coi = tr_dup_name(orig_req->orig_coi))) {
193       fprintf(stderr, "tid_dup_req: Can't duplicate request (orig_coi).\n");
194     }
195   }
196   
197   return new_req;
198 }
199
200
201 void tid_req_cleanup_json( TID_REQ *req, json_t *ref)
202 {
203   (void) json_array_append_new(req->json_references, ref);
204 }
205
206 void tid_req_free(TID_REQ *req)
207 {
208   talloc_free(req);
209 }