First functional monitoring server - can return the trust router version
[trust_router.git] / mon / mons_handlers.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 /* Handlers for monitoring requests */
36
37 #include <tr_debug.h>
38 #include <mon_internal.h>
39 #include "mons_handlers.h"
40
41 typedef MON_RESP *(MONS_HANDLER_FUNC)(TALLOC_CTX *, MONS_INSTANCE *, MON_REQ *);
42
43 /* Prototypes for the dispatch table */
44 static MON_RESP *mons_handle_reconfigure(TALLOC_CTX *mem_ctx, MONS_INSTANCE *mons, MON_REQ *req);
45
46
47 struct dispatch_table_entry {
48   MON_CMD command;
49   MONS_HANDLER_FUNC *handler;
50 };
51
52 static struct dispatch_table_entry dispatch_table[] = {
53     {MON_CMD_SHOW, mons_handle_show},
54     {MON_CMD_RECONFIGURE, mons_handle_reconfigure},
55     {MON_CMD_UNKNOWN} /* Must be the last entry in the table */
56 };
57
58 /**
59  * Call the appropriate handler for a request
60  *
61  * @return a MON_RESP structure or null if there was a processing error
62  */
63 MON_RESP *mons_handle_request(TALLOC_CTX *mem_ctx, MONS_INSTANCE *mons, MON_REQ *req)
64 {
65   struct dispatch_table_entry *entry = dispatch_table;
66
67   tr_debug("mons_handle_request: Handling a request");
68
69   /* Find the handler */
70   while ((entry->command != req->command) && (entry->command != MON_CMD_UNKNOWN)) {
71     entry++;
72   }
73
74   /* See if we found a handler */
75   if (entry->command == MON_CMD_UNKNOWN) {
76     tr_info("mons_handle_request: Unknown or unsupported monitoring request received");
77     return NULL;
78   }
79
80   /* Call the handler */
81   tr_debug("mons_handle_request: Calling handler for %s command", mon_cmd_to_string(entry->command));
82   return entry->handler(mem_ctx, mons, req);
83 }
84
85 static MON_RESP *mons_handle_reconfigure(TALLOC_CTX *mem_ctx, MONS_INSTANCE *mons, MON_REQ *req)
86 {
87   return NULL;
88 }