Access funcitons for TID_REQ structure, incl TID code reorg.
[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
38 #include <trust_router/tid.h>
39 TID_REQ *tid_req_get_next_req(TID_REQ *req)
40 {
41   return(req->next_req);
42 }
43
44 void tid_req_set_next_req(TID_REQ *req, TID_REQ *next_req)
45 {
46   req->next_req = next_req;
47 }
48
49 int tid_req_get_resp_sent(TID_REQ *req)
50 {
51   return(req->resp_sent);
52 }
53
54 void tid_req_set_resp_sent(TID_REQ *req, int resp_sent)
55 {
56   req->resp_sent = resp_sent;
57 }
58
59 int tid_req_get_conn(TID_REQ *req)
60 {
61   return(req->conn);
62 }
63
64 void tid_req_set_conn(TID_REQ *req, int conn)
65 {
66   req->conn = conn;
67 }
68
69 gss_ctx_id_t tid_req_get_gssctx(TID_REQ *req)
70 {
71   return(req->gssctx);
72 }
73
74 void tid_req_set_gssctx(TID_REQ *req, gss_ctx_id_t gssctx)
75 {
76   req->gssctx = gssctx;
77 }
78
79 int tid_req_get_resp_rcvd(TID_REQ *req)
80 {
81   return(req->resp_rcvd);
82 }
83
84 void tid_req_set_resp_rcvd(TID_REQ *req, int resp_rcvd)
85 {
86   req->resp_rcvd = resp_rcvd;
87 }
88
89 TR_NAME *tid_req_get_rp_realm(TID_REQ *req)
90 {
91   return(req->rp_realm);
92 }
93
94 void tid_req_set_rp_realm(TID_REQ *req, TR_NAME *rp_realm)
95 {
96   req->rp_realm = rp_realm;
97 }
98
99 TR_NAME *tid_req_get_realm(TID_REQ *req)
100 {
101   return(req->realm);
102 }
103
104 void tid_req_set_realm(TID_REQ *req, TR_NAME *realm)
105 {
106   req->realm = realm;
107 }
108
109 TR_NAME *tid_req_get_comm(TID_REQ *req)
110 {
111   return(req->comm);
112 }
113
114 void tid_req_set_comm(TID_REQ *req, TR_NAME *comm)
115 {
116   req->comm = comm;
117 }
118
119 TR_NAME *tid_req_get_orig_coi(TID_REQ *req)
120 {
121   return(req->orig_coi);
122 }
123
124 void tid_req_set_rp_orig_coi(TID_REQ *req, TR_NAME *orig_coi)
125 {
126   req->orig_coi = orig_coi;
127 }
128
129 TIDC_RESP_FUNC *tid_req_get_resp_func(TID_REQ *req)
130 {
131   return(req->resp_func);
132 }
133
134 void tid_req_set_resp_func(TID_REQ *req, TIDC_RESP_FUNC *resp_func)
135 {
136   req->resp_func = resp_func;
137 }
138
139 void *tid_req_get_cookie(TID_REQ *req)
140 {
141   return(req->cookie);
142 }
143
144 void tid_req_set_cookie(TID_REQ *req, void *cookie)
145 {
146   req->cookie = cookie;
147 }
148
149 TID_REQ *tid_dup_req (TID_REQ *orig_req) 
150 {
151   TID_REQ *new_req = NULL;
152
153   if (NULL == (new_req = malloc(sizeof(TID_REQ)))) {
154     fprintf(stderr, "tid_dup_req: Can't allocated duplicate request.\n");
155     return NULL;
156   }
157
158   /* Memcpy for flat fields, not valid until names are duped. */
159   memcpy(new_req, orig_req, sizeof(TID_REQ));
160   
161   if ((NULL == (new_req->rp_realm = tr_dup_name(orig_req->rp_realm))) ||
162       (NULL == (new_req->realm = tr_dup_name(orig_req->realm))) ||
163       (NULL == (new_req->comm = tr_dup_name(orig_req->comm)))) {
164         fprintf(stderr, "tid_dup_req: Can't duplicate request (names).\n");
165   }
166
167   if (orig_req->orig_coi) {
168     if (NULL == (new_req->orig_coi = tr_dup_name(orig_req->orig_coi))) {
169       fprintf(stderr, "tid_dup_req: Can't duplicate request (orig_coi).\n");
170     }
171   }
172   
173   return new_req;
174 }
175