c51958d93497bacb6aaeee3d5f84dfc7451e695a
[trust_router.git] / include / tpq.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 TPQ_H
36 #define TPQ_H
37
38 #define TPQ_PORT        12309
39
40 #include <gsscon.h>
41 typedef struct tpq_name {
42   char *buf;
43   int len;
44 } TPQ_NAME;
45
46 typedef struct tpq_req {
47   struct tpq_req *next_req;
48   int conn;
49   TPQ_NAME *realm;
50   TPQ_NAME *coi;
51   void *resp_func;
52   void *cookie;
53 } TPQ_REQ;
54
55 typedef struct tpq_resp {
56   TPQ_NAME *realm;
57   TPQ_NAME *coi;
58   /* Address of AAA Server */
59   /* Credentials */
60   /* Trust Path Used */
61 } TPQ_RESP;
62
63 typedef struct tpqc_instance {
64   TPQ_REQ *req_list;
65 } TPQC_INSTANCE;
66
67 typedef struct tpqs_instance {
68   int req_count;
69   void *req_handler;
70   void *cookie;
71 } TPQS_INSTANCE;
72
73 typedef void (TPQC_RESP_FUNC)(TPQC_INSTANCE *, TPQ_RESP *, void *);
74 typedef int (TPQS_REQ_FUNC)(TPQS_INSTANCE *, TPQ_REQ *, TPQ_RESP *, void *);
75
76 TPQ_NAME *tpq_new_name (char *name);
77 TPQ_NAME *tpq_dup_name (TPQ_NAME *from);
78
79 char *tpq_req_encode(TPQ_REQ *req);
80 TPQ_REQ *tpq_req_decode(char *jreq);
81 char *tpq_resp_encode(TPQ_REQ *resp);
82 TPQ_RESP *tpq_resp_decode(char *jresp);
83
84 TPQC_INSTANCE *tpqc_create (void);
85 int tpqc_open_connection (TPQC_INSTANCE *tpqc, char *server, gss_ctx_id_t *gssctx);
86 int tpqc_send_request (TPQC_INSTANCE *tpqc, int conn, gss_ctx_id_t gssctx, char *realm, char *coi, TPQC_RESP_FUNC *resp_handler, void *cookie);
87 void tpqc_destroy (TPQC_INSTANCE *tpqc);
88
89 TPQS_INSTANCE *tpqs_create ();
90 int tpqs_start (TPQS_INSTANCE *tpqs, TPQS_REQ_FUNC *req_handler, void *cookie);
91 void tpqs_destroy (TPQS_INSTANCE *tpqs);
92
93 #endif