Code for TR to change a COI to an APC in forwarded reqs, also some reorg of request...
[trust_router.git] / include / trust_router / tid.h
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 #ifndef TID_H
36 #define TID_H
37
38 #include <arpa/inet.h>
39 #include <openssl/dh.h>
40
41 #include <trust_router/tr_name.h>
42 #include <trust_router/tr_versioning.h>
43
44 #define TID_PORT        12309
45
46 typedef struct gss_ctx_id_struct *gss_ctx_id_t;
47
48 typedef enum tid_rc {
49   TID_SUCCESS = 0,
50   TID_ERROR
51 } TID_RC;
52
53 typedef struct tid_srvr_blk {
54   struct tid_srvr_blk *next;
55   struct in_addr aaa_server_addr;
56   TR_NAME *key_name;
57   DH *aaa_server_dh;            /* AAA server's public dh information */
58 } TID_SRVR_BLK;
59   
60 typedef struct tid_resp {
61   TID_RC result;
62   TR_NAME *err_msg;
63   TR_NAME *rp_realm;
64   TR_NAME *realm;
65   TR_NAME *comm;
66   TR_NAME *orig_coi;
67   TID_SRVR_BLK *servers;        /* Linked list of servers */
68   /* TBD -- Trust Path Used */
69 } TID_RESP;
70
71 typedef struct tidc_instance TIDC_INSTANCE;
72 typedef struct tids_instance TIDS_INSTANCE;
73 typedef struct tid_req TID_REQ;
74
75 typedef void (TIDC_RESP_FUNC)(TIDC_INSTANCE *, TID_REQ *, TID_RESP *, void *);
76
77 struct tid_req {
78   struct tid_req *next_req;
79   int conn;
80   gss_ctx_id_t gssctx;
81   int resp_rcvd;
82   TR_NAME *rp_realm;
83   TR_NAME *realm;
84   TR_NAME *comm;
85   TR_NAME *orig_coi;
86   DH *tidc_dh;                  /* Client's public dh information */
87   TIDC_RESP_FUNC *resp_func;
88   void *cookie;
89 };
90
91 struct tidc_instance {
92   TID_REQ *req_list;
93   // TBD -- Do we still need a separate private key */
94   // char *priv_key;
95   // int priv_len;
96   DH *client_dh;                        /* Client's DH struct with priv and pub keys */
97 };
98
99 typedef int (TIDS_REQ_FUNC)(TIDS_INSTANCE *, TID_REQ *, TID_RESP **, void *);
100
101 struct tids_instance {
102   int req_count;
103   char *priv_key;
104   char *ipaddr;
105   TIDS_REQ_FUNC *req_handler;
106   void *cookie;
107 };
108
109 TR_EXPORT TID_REQ *tid_dup_req (TID_REQ *orig_req);
110
111 TR_EXPORT TIDC_INSTANCE *tidc_create (void);
112 TR_EXPORT int tidc_open_connection (TIDC_INSTANCE *tidc, char *server, gss_ctx_id_t *gssctx);
113 TR_EXPORT int tidc_send_request (TIDC_INSTANCE *tidc, int conn, gss_ctx_id_t gssctx, char *rp_realm, char *realm, char *coi, TIDC_RESP_FUNC *resp_handler, void *cookie);
114 TR_EXPORT int tidc_fwd_request (TIDC_INSTANCE *tidc, TID_REQ *req, TIDC_RESP_FUNC *resp_handler, void *cookie);
115 TR_EXPORT int tids_send_response (TIDS_INSTANCE *tids, int conn, gss_ctx_id_t *gssctx, TID_RESP *resp);
116 TR_EXPORT void tidc_destroy (TIDC_INSTANCE *tidc);
117
118 TR_EXPORT TIDS_INSTANCE *tids_create (void);
119 TR_EXPORT int tids_start (TIDS_INSTANCE *tids, TIDS_REQ_FUNC *req_handler, void *cookie);
120 TR_EXPORT void tids_destroy (TIDS_INSTANCE *tids);
121
122 #endif