1 2 /* 3 * msg.c 4 * 5 * Copyright (c) 1996-1999 Whistle Communications, Inc. 6 * All rights reserved. 7 * 8 * Subject to the following obligations and disclaimer of warranty, use and 9 * redistribution of this software, in source or object code forms, with or 10 * without modifications are expressly permitted by Whistle Communications; 11 * provided, however, that: 12 * 1. Any and all reproductions of the source or object code must include the 13 * copyright notice above and the following disclaimer of warranties; and 14 * 2. No rights are granted, in any manner or form, to use Whistle 15 * Communications, Inc. trademarks, including the mark "WHISTLE 16 * COMMUNICATIONS" on advertising, endorsements, or otherwise except as 17 * such appears in the above copyright notice or in the software. 18 * 19 * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND 20 * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO 21 * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE, 22 * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF 23 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. 24 * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY 25 * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS 26 * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE. 27 * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES 28 * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING 29 * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, 30 * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR 31 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY 32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 34 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY 35 * OF SUCH DAMAGE. 36 * 37 * Author: Archie Cobbs <archie@whistle.com> 38 * 39 * $FreeBSD$ 40 * $Whistle: msg.c,v 1.9 1999/01/20 00:57:23 archie Exp $ 41 */ 42 43 #include <sys/types.h> 44 #include <stdarg.h> 45 #include <netgraph/ng_message.h> 46 #include <netgraph/ng_socket.h> 47 48 #include "netgraph.h" 49 #include "internal.h" 50 51 /* Next message token value */ 52 static int gMsgId; 53 54 /* For delivering both messages and replies */ 55 static int NgDeliverMsg(int cs, const char *path, 56 const struct ng_mesg *hdr, const void *args, size_t arglen); 57 58 /* 59 * Send a message to a node using control socket node "cs". 60 * Returns -1 if error and sets errno appropriately. 61 * If successful, returns the message ID (token) used. 62 */ 63 int 64 NgSendMsg(int cs, const char *path, 65 int cookie, int cmd, const void *args, size_t arglen) 66 { 67 struct ng_mesg msg; 68 69 /* Prepare message header */ 70 memset(&msg, 0, sizeof(msg)); 71 msg.header.version = NG_VERSION; 72 msg.header.typecookie = cookie; 73 msg.header.token = ++gMsgId; 74 msg.header.flags = NGF_ORIG; 75 msg.header.cmd = cmd; 76 snprintf(msg.header.cmdstr, NG_CMDSTRLEN + 1, "cmd%d", cmd); 77 78 /* Deliver message */ 79 if (NgDeliverMsg(cs, path, &msg, args, arglen) < 0) 80 return (-1); 81 return(gMsgId); 82 } 83 84 /* 85 * Send a message given in ASCII format. We first ask the node to translate 86 * the command into binary, and then we send the binary. 87 */ 88 int 89 NgSendAsciiMsg(int cs, const char *path, const char *fmt, ...) 90 { 91 const int bufSize = 1024; 92 char replybuf[2 * sizeof(struct ng_mesg) + bufSize]; 93 struct ng_mesg *const reply = (struct ng_mesg *)replybuf; 94 struct ng_mesg *const binary = (struct ng_mesg *)reply->data; 95 struct ng_mesg *ascii; 96 char *buf, *cmd, *args; 97 va_list fmtargs; 98 99 /* Parse out command and arguments */ 100 va_start(fmtargs, fmt); 101 vasprintf(&buf, fmt, fmtargs); 102 va_end(fmtargs); 103 if (buf == NULL) 104 return (-1); 105 106 /* Parse out command, arguments */ 107 for (cmd = buf; isspace(*cmd); cmd++) 108 ; 109 for (args = cmd; *args != '\0' && !isspace(*args); args++) 110 ; 111 if (*args != '\0') { 112 while (isspace(*args)) 113 *args++ = '\0'; 114 } 115 116 /* Get a bigger buffer to hold inner message header plus arg string */ 117 if ((ascii = malloc(sizeof(struct ng_mesg) 118 + strlen(buf) + 1)) == NULL) { 119 free(buf); 120 return (-1); 121 } 122 memset(ascii, 0, sizeof(*ascii)); 123 124 /* Build inner header (only need cmdstr, arglen, and data fields) */ 125 strncpy(ascii->header.cmdstr, cmd, sizeof(ascii->header.cmdstr) - 1); 126 strcpy(ascii->data, args); 127 ascii->header.arglen = strlen(ascii->data) + 1; 128 free(buf); 129 130 /* Send node a request to convert ASCII to binary */ 131 if (NgSendMsg(cs, path, NGM_GENERIC_COOKIE, NGM_ASCII2BINARY, 132 (u_char *)ascii, sizeof(*ascii) + ascii->header.arglen) < 0) 133 return (-1); 134 135 /* Get reply */ 136 if (NgRecvMsg(cs, reply, sizeof(replybuf), NULL) < 0) 137 return (-1); 138 139 /* Now send binary version */ 140 return NgDeliverMsg(cs, 141 path, binary, binary->data, binary->header.arglen); 142 } 143 144 /* 145 * Send a message that is a reply to a previously received message. 146 * Returns -1 and sets errno on error, otherwise returns zero. 147 */ 148 int 149 NgSendReplyMsg(int cs, const char *path, 150 const struct ng_mesg *msg, const void *args, size_t arglen) 151 { 152 struct ng_mesg rep; 153 154 /* Prepare message header */ 155 rep = *msg; 156 rep.header.flags = NGF_RESP; 157 158 /* Deliver message */ 159 return (NgDeliverMsg(cs, path, &rep, args, arglen)); 160 } 161 162 /* 163 * Send a message to a node using control socket node "cs". 164 * Returns -1 if error and sets errno appropriately, otherwise zero. 165 */ 166 static int 167 NgDeliverMsg(int cs, const char *path, 168 const struct ng_mesg *hdr, const void *args, size_t arglen) 169 { 170 u_char sgbuf[NG_PATHLEN + 3]; 171 struct sockaddr_ng *const sg = (struct sockaddr_ng *) sgbuf; 172 u_char *buf = NULL; 173 struct ng_mesg *msg; 174 int errnosv = 0; 175 int rtn = 0; 176 177 /* Sanity check */ 178 if (args == NULL) 179 arglen = 0; 180 181 /* Get buffer */ 182 if ((buf = malloc(sizeof(*msg) + arglen)) == NULL) { 183 errnosv = errno; 184 if (_gNgDebugLevel >= 1) 185 NGLOG("malloc"); 186 rtn = -1; 187 goto done; 188 } 189 msg = (struct ng_mesg *) buf; 190 191 /* Finalize message */ 192 *msg = *hdr; 193 msg->header.arglen = arglen; 194 memcpy(msg->data, args, arglen); 195 196 /* Prepare socket address */ 197 sg->sg_family = AF_NETGRAPH; 198 snprintf(sg->sg_data, NG_PATHLEN + 1, "%s", path); 199 sg->sg_len = strlen(sg->sg_data) + 3; 200 201 /* Debugging */ 202 if (_gNgDebugLevel >= 2) { 203 NGLOGX("SENDING %s:", 204 (msg->header.flags & NGF_RESP) ? "RESPONSE" : "MESSAGE"); 205 _NgDebugSockaddr(sg); 206 _NgDebugMsg(msg, sg->sg_data); 207 } 208 209 /* Send it */ 210 if (sendto(cs, msg, sizeof(*msg) + arglen, 211 0, (struct sockaddr *) sg, sg->sg_len) < 0) { 212 errnosv = errno; 213 if (_gNgDebugLevel >= 1) 214 NGLOG("sendto(%s)", sg->sg_data); 215 rtn = -1; 216 goto done; 217 } 218 219 done: 220 /* Done */ 221 free(buf); /* OK if buf is NULL */ 222 errno = errnosv; 223 return (rtn); 224 } 225 226 /* 227 * Receive a control message. 228 * 229 * On error, this returns -1 and sets errno. 230 * Otherwise, it returns the length of the received reply. 231 */ 232 int 233 NgRecvMsg(int cs, struct ng_mesg *rep, size_t replen, char *path) 234 { 235 u_char sgbuf[NG_PATHLEN + sizeof(struct sockaddr_ng)]; 236 struct sockaddr_ng *const sg = (struct sockaddr_ng *) sgbuf; 237 int len, sglen = sizeof(sgbuf); 238 int errnosv; 239 240 /* Read reply */ 241 len = recvfrom(cs, rep, replen, 0, (struct sockaddr *) sg, &sglen); 242 if (len < 0) { 243 errnosv = errno; 244 if (_gNgDebugLevel >= 1) 245 NGLOG("recvfrom"); 246 goto errout; 247 } 248 if (path != NULL) 249 snprintf(path, NG_PATHLEN + 1, "%s", sg->sg_data); 250 251 /* Debugging */ 252 if (_gNgDebugLevel >= 2) { 253 NGLOGX("RECEIVED %s:", 254 (rep->header.flags & NGF_RESP) ? "RESPONSE" : "MESSAGE"); 255 _NgDebugSockaddr(sg); 256 _NgDebugMsg(rep, sg->sg_data); 257 } 258 259 /* Done */ 260 return (len); 261 262 errout: 263 errno = errnosv; 264 return (-1); 265 } 266 267 /* 268 * Receive a control message and convert the arguments to ASCII 269 */ 270 int 271 NgRecvAsciiMsg(int cs, struct ng_mesg *reply, size_t replen, char *path) 272 { 273 struct ng_mesg *msg, *ascii; 274 int bufSize, errnosv; 275 u_char *buf; 276 277 /* Allocate buffer */ 278 bufSize = 2 * sizeof(*reply) + replen; 279 if ((buf = malloc(bufSize)) == NULL) 280 return (-1); 281 msg = (struct ng_mesg *)buf; 282 ascii = (struct ng_mesg *)msg->data; 283 284 /* Get binary message */ 285 if (NgRecvMsg(cs, msg, bufSize, path) < 0) 286 goto fail; 287 memcpy(reply, msg, sizeof(*msg)); 288 289 /* Ask originating node to convert the arguments to ASCII */ 290 if (NgSendMsg(cs, path, NGM_GENERIC_COOKIE, 291 NGM_BINARY2ASCII, msg, sizeof(*msg) + msg->header.arglen) < 0) 292 goto fail; 293 if (NgRecvMsg(cs, msg, bufSize, NULL) < 0) 294 goto fail; 295 296 /* Copy result to client buffer */ 297 if (sizeof(*ascii) + ascii->header.arglen > replen) { 298 errno = ERANGE; 299 fail: 300 errnosv = errno; 301 free(buf); 302 errno = errnosv; 303 return (-1); 304 } 305 strncpy(reply->data, ascii->data, ascii->header.arglen); 306 307 /* Done */ 308 free(buf); 309 return (0); 310 } 311 312