623727b251a8dce4797883fbac529a3244727dd2
[trust_router.git] / include / tidr.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 TIDR_H
36 #define TIDR_H
37
38 #include <gsscon.h>
39 #include <tr_name.h>
40
41 #define TIDR_PORT       12310
42
43 typedef struct tidr_req {
44   struct tidr_req *next_req;
45   int conn;
46   TR_NAME *realm;
47   TR_NAME *coi;
48   void *resp_func;
49   void *cookie;
50 } TIDR_REQ;
51
52 typedef struct tidr_resp {
53   TR_NAME *realm;
54   TR_NAME *coi;
55   /* Address of AAA Server */
56   /* Credentials */
57   /* Trust Path Used */
58 } TIDR_RESP;
59
60 typedef struct tidrc_instance {
61   TIDR_REQ *req_list;
62 } TIDRC_INSTANCE;
63
64 typedef struct tidrs_instance {
65   int req_count;
66   void *req_handler;
67   void *cookie;
68 } TIDRS_INSTANCE;
69
70 typedef void (TIDRC_RESP_FUNC)(TIDRC_INSTANCE *, TIDR_RESP *, void *);
71 typedef int (TIDRS_REQ_FUNC)(TIDRS_INSTANCE *, TIDR_REQ *, TIDR_RESP *, void *);
72
73 TIDRC_INSTANCE *tidrc_create (void);
74 int tidrc_open_connection (TIDRC_INSTANCE *tidrc, char *server, gss_ctx_id_t *gssctx);
75 int tidrc_send_request (TIDRC_INSTANCE *tidrc, int conn, gss_ctx_id_t gssctx, char *realm, char *coi, TIDRC_RESP_FUNC *resp_handler, void *cookie);
76 void tidrc_destroy (TIDRC_INSTANCE *tpqc);
77
78 TIDRS_INSTANCE *tidrs_create ();
79 int tidrs_start (TIDRS_INSTANCE *tidrs, TIDRS_REQ_FUNC *req_handler, void *cookie);
80 void tidrs_destroy (TIDRS_INSTANCE *tidrs);
81
82 #endif