Use TR_MSG instead of encoded strings in GSS request handler interface
[trust_router.git] / mon / mons.c
1 /*
2  * Copyright (c) 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 #include <fcntl.h>
37 #include <unistd.h>
38 #include <netdb.h>
39
40 #include <tr.h>
41 #include <tr_debug.h>
42 #include <mon_internal.h>
43 #include <tr_socket.h>
44 #include <sys/wait.h>
45 #include <tr_gss.h>
46
47 #include "mons_handlers.h"
48
49 /**
50  * Allocate a new MONS_INSTANCE
51  *
52  * @param mem_ctx talloc context for allocation
53  * @return new MONS_INSTANCE or null on failure
54  */
55 MONS_INSTANCE *mons_new(TALLOC_CTX *mem_ctx)
56 {
57   MONS_INSTANCE *mons = talloc(mem_ctx, MONS_INSTANCE);
58
59   if (mons) {
60     mons->hostname = NULL;
61     mons->port = 0;
62     mons->tids = NULL;
63     mons->trps = NULL;
64     mons->req_handler = NULL;
65     mons->auth_handler = NULL;
66     mons->cookie = NULL;
67     mons->authorized_gss_names = tr_gss_names_new(mons);
68     if (mons->authorized_gss_names == NULL) {
69       talloc_free(mons);
70       mons = NULL;
71     }
72   }
73   return mons;
74 }
75
76 /**
77  * Callback to process a request and produce a response
78  *
79  * @param req_str JSON-encoded request
80  * @param data pointer to a MONS_INSTANCE
81  * @return pointer to the response string or null to send no response
82  */
83 static TR_MSG *mons_req_cb(TALLOC_CTX *mem_ctx, TR_MSG *req_msg, void *data)
84 {
85   TALLOC_CTX *tmp_ctx = talloc_new(NULL);
86   //MONS_INSTANCE *mons = talloc_get_type_abort(data, MONS_INSTANCE);
87   MON_REQ *req = NULL;
88   TR_MSG *resp_msg = NULL; /* This is the response value */
89
90   /* Validate inputs */
91   if (req_msg == NULL)
92     goto cleanup;
93
94   req = tr_msg_get_mon_req(req_msg);
95   if (req == NULL) {
96     /* this is an internal error */
97     tr_err("mons_req_cb: Received incorrect message type (was %d, expected %d)",
98            tr_msg_get_msg_type(req_msg),
99            MON_REQUEST);
100     /* TODO send an error response */
101     goto cleanup;
102   }
103
104 cleanup:
105   talloc_free(tmp_ctx);
106   return resp_msg;
107 }
108
109 /**
110  * Create a listener for monitoring requests
111  *
112  * Accept connections with mons_accept()
113  *
114  * @param mons monitoring server instance
115  * @param req_handler
116  * @param auth_handler
117  * @param hostname
118  * @param port
119  * @param cookie
120  * @param fd_out
121  * @param max_fd
122  * @return
123  */
124 int mons_get_listener(MONS_INSTANCE *mons, MONS_REQ_FUNC *req_handler, MONS_AUTH_FUNC *auth_handler, const char *hostname,
125                       unsigned int port, void *cookie, int *fd_out, size_t max_fd)
126 {
127   size_t n_fd=0;
128   size_t ii=0;
129
130   mons->port = port;
131   n_fd = tr_sock_listen_all(port, fd_out, max_fd);
132   if (n_fd<=0)
133     tr_err("mons_get_listener: Error opening port %d");
134   else {
135     /* opening port succeeded */
136     tr_info("mons_get_listener: Opened port %d.", port);
137
138     /* make this socket non-blocking */
139     for (ii=0; ii<n_fd; ii++) {
140       if (0 != fcntl(fd_out[ii], F_SETFL, O_NONBLOCK)) {
141         tr_err("mons_get_listener: Error setting O_NONBLOCK.");
142         for (ii=0; ii<n_fd; ii++) {
143           close(fd_out[ii]);
144           fd_out[ii]=-1;
145         }
146         n_fd=0;
147         break;
148       }
149     }
150   }
151
152   if (n_fd>0) {
153     /* store the caller's request handler & cookie */
154     mons->req_handler = req_handler;
155     mons->auth_handler = auth_handler;
156     mons->hostname = hostname;
157     mons->cookie = cookie;
158   }
159
160   return (int) n_fd;
161 }
162
163 /**
164  * Accept and process a connection on a port opened with mons_get_listener()
165  *
166  * @param mons monitoring interface instance
167  * @param listen FD of the connection socket
168  * @return 0 on success
169  */
170 int mons_accept(MONS_INSTANCE *mons, int listen)
171 {
172   int conn=-1;
173   int pid=-1;
174
175   if (0 > (conn = accept(listen, NULL, NULL))) {
176     perror("Error from monitoring interface accept()");
177     return 1;
178   }
179
180   if (0 > (pid = fork())) {
181     perror("Error on fork()");
182     return 1;
183   }
184
185   if (pid == 0) {
186     close(listen);
187     tr_gss_handle_connection(conn,
188                              "trustmonitor", mons->hostname, /* acceptor name */
189                              mons->auth_handler, mons->cookie, /* auth callback and cookie */
190                              mons_req_cb, mons /* req callback and cookie */
191     );
192     close(conn);
193     exit(0); /* exit to kill forked child process */
194   } else {
195     close(conn);
196   }
197
198   /* clean up any processes that have completed */
199   while (waitpid(-1, 0, WNOHANG) > 0);
200
201   return 0;
202 }