hammer2 - Messaging layer separation work part 2
[dragonfly.git] / lib / libdmsg / service.c
1 /*
2  * Copyright (c) 2011-2012 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@dragonflybsd.org>
6  * by Venkatesh Srinivas <vsrinivas@dragonflybsd.org>
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  * 3. Neither the name of The DragonFly Project nor the names of its
19  *    contributors may be used to endorse or promote products derived
20  *    from this software without specific, prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
26  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
31  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35
36 #include "dmsg_local.h"
37
38 static void master_auth_signal(dmsg_router_t *router);
39 static void master_auth_rxmsg(dmsg_msg_t *msg);
40 static void master_link_signal(dmsg_router_t *router);
41 static void master_link_rxmsg(dmsg_msg_t *msg);
42
43 /*
44  * Service an accepted connection (runs as a pthread)
45  *
46  * (also called from a couple of other places)
47  */
48 void *
49 dmsg_master_service(void *data)
50 {
51         dmsg_master_service_info_t *info = data;
52         dmsg_iocom_t iocom;
53
54         if (info->detachme)
55                 pthread_detach(pthread_self());
56
57         dmsg_iocom_init(&iocom, info->fd, -1,
58                            master_auth_signal,
59                            master_auth_rxmsg,
60                            NULL);
61         dmsg_iocom_core(&iocom);
62
63         fprintf(stderr,
64                 "iocom on fd %d terminated error rx=%d, tx=%d\n",
65                 info->fd, iocom.ioq_rx.error, iocom.ioq_tx.error);
66         close(info->fd);
67         info->fd = -1;  /* safety */
68         free(info);
69
70         return (NULL);
71 }
72
73 /************************************************************************
74  *                          AUTHENTICATION                              *
75  ************************************************************************
76  *
77  * Callback via dmsg_iocom_core().
78  *
79  * Additional messaging-based authentication must occur before normal
80  * message operation.  The connection has already been encrypted at
81  * this point.
82  */
83 static void master_auth_conn_rx(dmsg_msg_t *msg);
84
85 static
86 void
87 master_auth_signal(dmsg_router_t *router)
88 {
89         dmsg_msg_t *msg;
90
91         /*
92          * Transmit LNK_CONN, enabling the SPAN protocol if both sides
93          * agree.
94          *
95          * XXX put additional authentication states here?
96          */
97         msg = dmsg_msg_alloc(router, 0, DMSG_LNK_CONN | DMSGF_CREATE,
98                              master_auth_conn_rx, NULL);
99         msg->any.lnk_conn.peer_mask = (uint64_t)-1;
100         msg->any.lnk_conn.peer_type = DMSG_PEER_CLUSTER;
101
102         dmsg_msg_write(msg);
103
104         dmsg_router_restate(router,
105                             master_link_signal,
106                             master_link_rxmsg,
107                             NULL);
108 }
109
110 static
111 void
112 master_auth_conn_rx(dmsg_msg_t *msg)
113 {
114         if (msg->any.head.cmd & DMSGF_DELETE)
115                 dmsg_msg_reply(msg, 0);
116 }
117
118 static
119 void
120 master_auth_rxmsg(dmsg_msg_t *msg __unused)
121 {
122 }
123
124 /************************************************************************
125  *                      POST-AUTHENTICATION SERVICE MSGS                *
126  ************************************************************************
127  *
128  * Callback via dmsg_iocom_core().
129  */
130 static
131 void
132 master_link_signal(dmsg_router_t *router)
133 {
134         dmsg_msg_lnk_signal(router);
135 }
136
137 static
138 void
139 master_link_rxmsg(dmsg_msg_t *msg)
140 {
141         dmsg_state_t *state;
142         uint32_t cmd;
143
144         /*
145          * If the message state has a function established we just
146          * call the function, otherwise we call the appropriate
147          * link-level protocol related to the original command and
148          * let it sort it out.
149          *
150          * Non-transactional one-off messages, on the otherhand,
151          * might have REPLY set.
152          */
153         state = msg->state;
154         cmd = state ? state->msg->any.head.cmd : msg->any.head.cmd;
155
156         fprintf(stderr, "service-receive: %s\n", dmsg_msg_str(msg));
157
158         if (state && state->func) {
159                 assert(state->func != NULL);
160                 state->func(msg);
161         } else {
162                 switch(cmd & DMSGF_PROTOS) {
163                 case DMSG_PROTO_LNK:
164                         dmsg_msg_lnk(msg);
165                         break;
166                 case DMSG_PROTO_DBG:
167                         dmsg_msg_dbg(msg);
168                         break;
169                 default:
170                         dmsg_msg_reply(msg, DMSG_ERR_NOSUPP);
171                         break;
172                 }
173         }
174 }
175
176 /*
177  * This is called from the master node to process a received debug
178  * shell command.  We process the command, outputting the results,
179  * then finish up by outputting another prompt.
180  */
181 void
182 dmsg_msg_dbg(dmsg_msg_t *msg)
183 {
184         switch(msg->any.head.cmd & DMSGF_CMDSWMASK) {
185         case DMSG_DBG_SHELL:
186                 /*
187                  * This is a command which we must process.
188                  * When we are finished we generate a final reply.
189                  */
190                 if (msg->aux_data)
191                         msg->aux_data[msg->aux_size - 1] = 0;
192                 msg->router->dbgmsg_callback(msg);
193                 dmsg_msg_reply(msg, 0);
194                 break;
195         case DMSG_DBG_SHELL | DMSGF_REPLY:
196                 /*
197                  * A reply just prints out the string.  No newline is added
198                  * (it is expected to be embedded if desired).
199                  */
200                 if (msg->aux_data)
201                         msg->aux_data[msg->aux_size - 1] = 0;
202                 if (msg->aux_data)
203                         write(2, msg->aux_data, strlen(msg->aux_data));
204                 break;
205         default:
206                 dmsg_msg_reply(msg, DMSG_ERR_NOSUPP);
207                 break;
208         }
209 }
210
211 /*
212  * Returns text debug output to the original defined by (msg).  (msg) is
213  * not modified and stays intact.  We use a one-way message with REPLY set
214  * to distinguish between a debug command and debug terminal output.
215  *
216  * To prevent loops router_printf() can filter the message (cmd) related
217  * to the router_printf().  We filter out DBG messages.
218  */
219 void
220 dmsg_router_printf(dmsg_router_t *router, const char *ctl, ...)
221 {
222         dmsg_msg_t *rmsg;
223         va_list va;
224         char buf[1024];
225         size_t len;
226
227         va_start(va, ctl);
228         vsnprintf(buf, sizeof(buf), ctl, va);
229         va_end(va);
230         len = strlen(buf) + 1;
231
232         rmsg = dmsg_msg_alloc(router, len, DMSG_DBG_SHELL | DMSGF_REPLY,
233                                  NULL, NULL);
234         bcopy(buf, rmsg->aux_data, len);
235
236         dmsg_msg_write(rmsg);
237 }