38833f158371108cd20d0c9b31a79427a90dbfe2
[trust_router.git] / include / trust_router / tid.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 #ifndef TID_H
36 #define TID_H
37
38 #include <talloc.h>
39
40 #include <arpa/inet.h>
41 #include <openssl/dh.h>
42
43 #include <trust_router/tr_name.h>
44 #include <trust_router/tr_versioning.h>
45
46 #include <gssapi.h>
47 #include <poll.h>
48
49
50 #define TID_PORT        12309
51
52 typedef enum tid_rc {
53   TID_SUCCESS = 0,
54   TID_ERROR
55 } TID_RC;
56
57 typedef struct tid_srvr_blk  TID_SRVR_BLK;
58
59
60 typedef struct _tr_constraint_set  TR_CONSTRAINT_SET;
61 typedef struct _tid_path TID_PATH;
62
63 typedef struct tid_resp TID_RESP;
64
65 typedef struct tidc_instance TIDC_INSTANCE;
66 typedef struct tids_instance TIDS_INSTANCE;
67 typedef struct tid_req TID_REQ;
68
69
70 typedef void (TIDC_RESP_FUNC)(TIDC_INSTANCE *, TID_REQ *, TID_RESP *, void *);
71
72
73
74 typedef int (TIDS_REQ_FUNC)(TIDS_INSTANCE *, TID_REQ *, TID_RESP *, void *);
75 typedef int (tids_auth_func)(gss_name_t client_name, TR_NAME *display_name, void *cookie);
76
77
78
79 /* Utility functions for TID_REQ structures, in tid/tid_req.c */
80 TR_EXPORT TID_REQ *tid_req_new(void);
81 TR_EXPORT TID_REQ *tid_req_get_next_req(TID_REQ *req);
82 void tid_req_set_next_req(TID_REQ *req, TID_REQ *next_req);
83 TR_EXPORT int tid_req_get_resp_sent(TID_REQ *req);
84 void tid_req_set_resp_sent(TID_REQ *req, int resp_sent);
85 TR_EXPORT int tid_req_get_conn(TID_REQ *req);
86 void tid_req_set_conn(TID_REQ *req, int conn);
87 TR_EXPORT gss_ctx_id_t tid_req_get_gssctx(TID_REQ *req);
88 void tid_req_set_gssctx(TID_REQ *req, gss_ctx_id_t gssctx);
89 TR_EXPORT int tid_req_get_resp_rcvd(TID_REQ *req);
90 void tid_req_set_resp_rcvd(TID_REQ *req, int resp_rcvd);
91 TR_EXPORT TR_NAME *tid_req_get_rp_realm(TID_REQ *req);
92 void tid_req_set_rp_realm(TID_REQ *req, TR_NAME *rp_realm);
93 TR_EXPORT TR_NAME *tid_req_get_realm(TID_REQ *req);
94 void tid_req_set_realm(TID_REQ *req, TR_NAME *realm);
95 TR_EXPORT TR_NAME *tid_req_get_comm(TID_REQ *req);
96 void tid_req_set_comm(TID_REQ *req, TR_NAME *comm);
97 TR_EXPORT TR_NAME *tid_req_get_orig_coi(TID_REQ *req);
98 void tid_req_set_orig_coi(TID_REQ *req, TR_NAME *orig_coi);
99 TR_EXPORT TR_NAME *tid_req_get_request_id(TID_REQ *req);
100 void tid_req_set_request_id(TID_REQ *req, TR_NAME *request_id);
101 TR_EXPORT TIDC_RESP_FUNC *tid_req_get_resp_func(TID_REQ *req);
102 void tid_req_set_resp_func(TID_REQ *req, TIDC_RESP_FUNC *resp_func);
103 TR_EXPORT void *tid_req_get_cookie(TID_REQ *req);
104 void tid_req_set_cookie(TID_REQ *req, void *cookie);
105 TR_EXPORT TID_REQ *tid_dup_req (TID_REQ *orig_req);
106 TR_EXPORT void tid_req_free( TID_REQ *req);
107
108 /* Utility functions for TID_RESP structure, in tid/tid_resp.c */
109
110 TID_RESP *tid_resp_new(TALLOC_CTX *mem_ctx);
111 void tid_resp_free(TID_RESP *resp);
112 TID_RESP *tid_resp_dup(TALLOC_CTX *mem_ctx, TID_RESP *resp);
113 TR_EXPORT int tid_resp_get_result(TID_RESP *resp);
114 void tid_resp_set_result(TID_RESP *resp, int result);
115 TR_EXPORT TR_NAME *tid_resp_get_err_msg(TID_RESP *resp);
116 void tid_resp_set_err_msg(TID_RESP *resp, TR_NAME *err_msg);
117 TR_EXPORT TR_NAME *tid_resp_get_rp_realm(TID_RESP *resp);
118 void tid_resp_set_rp_realm(TID_RESP *resp, TR_NAME *rp_realm);
119 TR_EXPORT TR_NAME *tid_resp_get_realm(TID_RESP *resp);
120 void tid_resp_set_realm(TID_RESP *resp, TR_NAME *realm);
121 TR_EXPORT TR_NAME *tid_resp_get_comm(TID_RESP *resp);
122 void tid_resp_set_comm(TID_RESP *resp, TR_NAME *comm);
123 TR_EXPORT TR_NAME *tid_resp_get_orig_coi(TID_RESP *resp);
124 void tid_resp_set_orig_coi(TID_RESP *resp, TR_NAME *orig_coi);
125 TR_EXPORT TR_NAME *tid_resp_get_request_id(TID_RESP *resp);
126 void tid_resp_set_request_id(TID_RESP *resp, TR_NAME *request_id);
127 TR_EXPORT TID_SRVR_BLK *tid_resp_get_server(TID_RESP *resp, size_t index);
128 TR_EXPORT size_t tid_resp_get_num_servers(const TID_RESP *resp);
129 TR_EXPORT const TID_PATH *tid_resp_get_error_path(const TID_RESP *);
130
131 /** Get either the error_path or the path of the first server block for
132  * a successful response*/
133 TR_EXPORT const TID_PATH *tid_resp_get_a_path(const TID_RESP *);
134 /* Server blocks*/
135 TR_EXPORT void tid_srvr_get_address(const TID_SRVR_BLK *,
136                                     const struct sockaddr **out_addr, size_t *out_sa_len);
137 TR_EXPORT DH *tid_srvr_get_dh(TID_SRVR_BLK *);
138 TR_EXPORT const TR_NAME *tid_srvr_get_key_name(const TID_SRVR_BLK *);
139 TR_EXPORT const TID_PATH *tid_srvr_get_path(const TID_SRVR_BLK *);
140 /* Key expiration time is expressed as time since 1970-01-01 00:00:00 UTC */
141 TR_EXPORT int tid_srvr_get_key_expiration(const TID_SRVR_BLK *, struct timeval *tv_out);
142
143 #define tid_resp_servers_foreach(RESP, SERVER, INDEX) \
144   for ((INDEX)=0,(SERVER)=NULL;                                         \
145        (((INDEX) < tid_resp_get_num_servers(RESP))&&((SERVER) = tid_resp_get_server(resp, (INDEX)))); \
146        (INDEX)++)
147
148
149 /* TID Client functions, in tid/tidc.c */
150 TR_EXPORT TIDC_INSTANCE *tidc_create (void);
151 TR_EXPORT int tidc_open_connection (TIDC_INSTANCE *tidc, const char *server, unsigned int port, gss_ctx_id_t *gssctx);
152 TR_EXPORT int tidc_send_request (TIDC_INSTANCE *tidc, int conn, gss_ctx_id_t gssctx, const char *rp_realm, const char *realm, const char *coi, TIDC_RESP_FUNC *resp_handler, void *cookie);
153 TR_EXPORT int tidc_fwd_request (TIDC_INSTANCE *tidc, TID_REQ *req, TIDC_RESP_FUNC *resp_handler, void *cookie);
154 TR_EXPORT DH *tidc_get_dh(TIDC_INSTANCE *);
155 TR_EXPORT DH *tidc_set_dh(TIDC_INSTANCE *, DH *);
156 TR_EXPORT void tidc_destroy(TIDC_INSTANCE *tidc);
157
158 /* TID Server functions, in tid/tids.c */
159 TIDS_INSTANCE *tids_new(TALLOC_CTX *mem_ctx);
160 TR_EXPORT TIDS_INSTANCE *tids_create (void);
161 TR_EXPORT int tids_start (TIDS_INSTANCE *tids, TIDS_REQ_FUNC *req_handler,
162                           tids_auth_func *auth_handler, const char *hostname,
163                           unsigned int port, void *cookie);
164 TR_EXPORT nfds_t tids_get_listener(TIDS_INSTANCE *tids, TIDS_REQ_FUNC *req_handler,
165                                    tids_auth_func *auth_handler, const char *hostname,
166                                    unsigned int port, void *cookie, int *fd_out, size_t max_fd);
167 TR_EXPORT int tids_accept(TIDS_INSTANCE *tids, int listen);
168 TR_EXPORT int tids_send_response (TIDS_INSTANCE *tids, TID_REQ *req, TID_RESP *resp);
169 TR_EXPORT int tids_send_err_response (TIDS_INSTANCE *tids, TID_REQ *req, const char *err_msg);
170 TR_EXPORT void tids_destroy (TIDS_INSTANCE *tids);
171
172 #endif