Move DH record from TR_GSSC_INSTANCE to TIDC_INSTANCE, where it belongs
[trust_router.git] / common / tr_gss_client.c
1 /*
2  * Copyright (c) 2012, 2014-2018, 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 #include <talloc.h>
36
37 #include <trust_router/tr_dh.h>
38 #include <tr_msg.h>
39 #include <gsscon.h>
40 #include <tr_debug.h>
41 #include <tr_gss_client.h>
42
43 TR_GSSC_INSTANCE *tr_gssc_instance_new(TALLOC_CTX *mem_ctx)
44 {
45   TR_GSSC_INSTANCE *gssc=talloc(NULL, TR_GSSC_INSTANCE);
46   if (gssc != NULL) {
47     gssc->service_name = NULL;
48     gssc->conn = -1;
49     gssc->gss_ctx = talloc(gssc, gss_ctx_id_t);
50     if (gssc->gss_ctx == NULL) {
51       talloc_free(gssc);
52       return NULL;
53     }
54   }
55   return gssc;
56 }
57
58 void tr_gssc_instance_free(TR_GSSC_INSTANCE *tr_gssc)
59 {
60   talloc_free(tr_gssc);
61 }
62
63 /**
64  * Open a connection to the requested server:port
65  *
66  * @param gssc client instance
67  * @param server server name/address
68  * @param port TCP port to connect
69  * @return 0 on success, -1 on failure
70  */
71 int tr_gssc_open_connection(TR_GSSC_INSTANCE *gssc, const char *server, unsigned int port)
72 {
73   tr_debug("tr_gssc_open_connection: opening connection to %s:%d", server, port);
74   if (0 != gsscon_connect(server, port, gssc->service_name, &(gssc->conn), gssc->gss_ctx))
75     return -1;
76
77   return 0; /* success */
78 }
79
80 /**
81  * Send a request message and retrieve a response message
82  *
83  * @param mem_ctx
84  * @param gssc
85  * @param req_msg
86  * @return decoded message, or null on error
87  */
88 TR_MSG *tr_gssc_exchange_msgs(TALLOC_CTX *mem_ctx, TR_GSSC_INSTANCE *gssc, TR_MSG *req_msg)
89 {
90   TALLOC_CTX *tmp_ctx = talloc_new(NULL);
91   char *req_buf = NULL;
92   char *resp_buf = NULL;
93   size_t resp_buflen = 0;
94   TR_MSG *resp_msg = NULL; /* this is the return value */
95   int err;
96
97   /* Validate inputs */
98   if ((gssc == NULL) || (req_msg == NULL))
99     goto cleanup;
100
101   /* Encode the request into a json string */
102   if (!(req_buf = tr_msg_encode(tmp_ctx, req_msg))) {
103     tr_err("tr_gssc_exchange_msgs: Error encoding request message.\n");
104     goto cleanup;
105   }
106
107   tr_debug( "tr_gssc_exchange_msgs: Sending request message:\n%s\n", req_buf);
108
109   /* Send the request over the connection */
110   err = gsscon_write_encrypted_token(gssc->conn, *(gssc->gss_ctx), req_buf, strlen(req_buf));
111   if (err) {
112     tr_err( "tr_gssc_exchange_msgs: Error sending request.\n");
113     goto cleanup;
114   }
115
116   /* Read the response from the connection */
117   /* TBD -- timeout? */
118   if (gsscon_read_encrypted_token(gssc->conn, *(gssc->gss_ctx), &resp_buf, &resp_buflen))
119     goto cleanup;
120
121   tr_debug( "tr_gssc_exchange_msgs: Response Received (%u bytes).\n%s\n", (unsigned) resp_buflen, resp_buf);
122   resp_msg = tr_msg_decode(mem_ctx, resp_buf, resp_buflen);
123   free(resp_buf);
124
125   if (resp_msg == NULL) {
126     tr_err( "tr_gssc_exchange_msgs: Error decoding response.\n");
127     goto cleanup;
128   }
129
130   /* If we get here, then we decoded the message and resp_msg is not null. Nothing more to do. */
131
132 cleanup:
133   talloc_free(tmp_ctx);
134   return resp_msg;
135 }