rename include files into trust_router
[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 <gsscon.h>
42 #include <trust_router/tr_name.h>
43 #include <trust_router/tr_versioning.h>
44
45 #define TID_PORT        12309
46
47 typedef struct tid_req {
48   struct tid_req *next_req;
49   int conn;
50   TR_NAME *rp_realm;
51   TR_NAME *realm;
52   TR_NAME *comm;
53   TR_NAME *orig_coi;
54   DH *tidc_dh;                  /* Client's public dh information */
55   void *resp_func;
56   void *cookie;
57 } TID_REQ;
58
59 typedef struct tid_srvr_blk {
60   struct tid_srvr_blk *next;
61   in_addr_t aaa_server_addr;
62   DH *aaa_server_dh;            /* AAA server's public dh information */
63 } TID_SRVR_BLK;
64   
65
66 typedef struct tid_resp {
67   TR_NAME *result;
68   TR_NAME *rp_realm;
69   TR_NAME *realm;
70   TR_NAME *comm;
71   TR_NAME *orig_coi;
72   TID_SRVR_BLK *servers;        /* Linked list of servers */
73   /* TBD -- Trust Path Used */
74 } TID_RESP;
75
76 typedef struct tidc_instance {
77   TID_REQ *req_list;
78   char *priv_key;
79   int priv_len;
80   DH *priv_dh;                  /* Client's DH struct with priv and pub keys */
81 } TIDC_INSTANCE;
82
83 typedef struct tids_instance {
84   int req_count;
85   char *priv_key;
86   void *req_handler;
87   void *cookie;
88 } TIDS_INSTANCE;
89
90 typedef void (TIDC_RESP_FUNC)(TIDC_INSTANCE *, TID_RESP *, void *);
91 typedef int (TIDS_REQ_FUNC)(TIDS_INSTANCE *, TID_REQ *, TID_RESP *, void *);
92
93 TR_EXPORT TIDC_INSTANCE *tidc_create (void);
94 TR_EXPORT int tidc_open_connection (TIDC_INSTANCE *tidc, char *server, gss_ctx_id_t *gssctx);
95 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);
96 TR_EXPORT void tidc_destroy (TIDC_INSTANCE *tidc);
97
98 TR_EXPORT TIDS_INSTANCE *tids_create ();
99 TR_EXPORT int tids_start (TIDS_INSTANCE *tids, TIDS_REQ_FUNC *req_handler, void *cookie);
100 TR_EXPORT void tids_destroy (TIDS_INSTANCE *tids);
101
102 #endif