TID_RESP: array of servers rather than linked list
[trust_router.git] / include / tid_internal.h
1 /*
2  * Copyright (c) 2012-2014, 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  * Copyright (c) 2012, JANET(UK)
36  * All rights reserved.
37  *
38  * Redistribution and use in source and binary forms, with or without
39  * modification, are permitted provided that the following conditions
40  * are met:
41  *
42  * 1. Redistributions of source code must retain the above copyright
43  *    notice, this list of conditions and the following disclaimer.
44  *
45  * 2. Redistributions in binary form must reproduce the above copyright
46  *    notice, this list of conditions and the following disclaimer in the
47  *    documentation and/or other materials provided with the distribution.
48  *
49  * 3. Neither the name of JANET(UK) nor the names of its contributors
50  *    may be used to endorse or promote products derived from this software
51  *    without specific prior written permission.
52  *
53  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
54  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
55  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
56  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
57  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
58  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
59  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
60  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
62  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
63  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
64  * OF THE POSSIBILITY OF SUCH DAMAGE.
65  *
66  */
67
68 #ifndef TID_INTERNAL_H
69 #define TID_INTERNAL_H
70 #include <trust_router/tid.h>
71
72 #include <jansson.h>
73 typedef struct tid_srvr_blk {
74   struct in_addr aaa_server_addr;
75   TR_NAME *key_name;
76   DH *aaa_server_dh;            /* AAA server's public dh information */
77 } TID_SRVR_BLK;
78
79 typedef struct tid_resp {
80   TID_RC result;
81   TR_NAME *err_msg;
82   TR_NAME *rp_realm;
83   TR_NAME *realm;
84   TR_NAME *comm;
85   TR_CONSTRAINT_SET *cons;
86   TR_NAME *orig_coi;
87   TID_SRVR_BLK *servers;        /* array of servers */
88   size_t num_servers;
89   /* TBD -- Trust Path Used */
90 } TID_RESP;
91 struct tid_req {
92   struct tid_req *next_req;
93   int resp_sent;
94   int conn;
95   gss_ctx_id_t gssctx;
96   int resp_rcvd;
97   TR_NAME *rp_realm;
98   TR_NAME *realm;
99   TR_NAME *comm;
100   TR_CONSTRAINT_SET *cons;
101   TR_NAME *orig_coi;
102   DH *tidc_dh;                  /* Client's public dh information */
103   TIDC_RESP_FUNC *resp_func;
104   void *cookie;
105   json_t *json_references; /** References to objects dereferenced on request destruction*/
106 };
107 struct tidc_instance {
108   TID_REQ *req_list;
109   // TBD -- Do we still need a separate private key */
110   // char *priv_key;
111   // int priv_len;
112   DH *client_dh;                        /* Client's DH struct with priv and pub keys */
113 };
114 struct tids_instance {
115   int req_count;
116   char *priv_key;
117   char *ipaddr;
118   const char *hostname;
119   TIDS_REQ_FUNC *req_handler;
120   tids_auth_func *auth_handler;
121   void *cookie;
122 };
123
124
125 /** Decrement a reference to #json when this tid_req is cleaned up. A
126     new reference is not created; in effect the caller is handing a
127     reference they already hold to the TID_REQ.*/
128 void tid_req_cleanup_json(TID_REQ *, json_t *json);
129
130 #endif