xref: /freebsd/usr.sbin/ngctl/msg.c (revision 1d386b48a555f61cb7325543adbbb5c3f3407a66)
1f8307e12SArchie Cobbs 
2f8307e12SArchie Cobbs /*
3f8307e12SArchie Cobbs  * msg.c
4f8307e12SArchie Cobbs  *
5f8307e12SArchie Cobbs  * Copyright (c) 1999 Whistle Communications, Inc.
6f8307e12SArchie Cobbs  * All rights reserved.
7f8307e12SArchie Cobbs  *
8f8307e12SArchie Cobbs  * Subject to the following obligations and disclaimer of warranty, use and
9f8307e12SArchie Cobbs  * redistribution of this software, in source or object code forms, with or
10f8307e12SArchie Cobbs  * without modifications are expressly permitted by Whistle Communications;
11f8307e12SArchie Cobbs  * provided, however, that:
12f8307e12SArchie Cobbs  * 1. Any and all reproductions of the source or object code must include the
13f8307e12SArchie Cobbs  *    copyright notice above and the following disclaimer of warranties; and
14f8307e12SArchie Cobbs  * 2. No rights are granted, in any manner or form, to use Whistle
15f8307e12SArchie Cobbs  *    Communications, Inc. trademarks, including the mark "WHISTLE
16f8307e12SArchie Cobbs  *    COMMUNICATIONS" on advertising, endorsements, or otherwise except as
17f8307e12SArchie Cobbs  *    such appears in the above copyright notice or in the software.
18f8307e12SArchie Cobbs  *
19f8307e12SArchie Cobbs  * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
20f8307e12SArchie Cobbs  * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
21f8307e12SArchie Cobbs  * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
22f8307e12SArchie Cobbs  * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
23f8307e12SArchie Cobbs  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
24f8307e12SArchie Cobbs  * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
25f8307e12SArchie Cobbs  * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
26f8307e12SArchie Cobbs  * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
27f8307e12SArchie Cobbs  * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
28f8307e12SArchie Cobbs  * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
29f8307e12SArchie Cobbs  * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
30f8307e12SArchie Cobbs  * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
31f8307e12SArchie Cobbs  * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
32f8307e12SArchie Cobbs  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33f8307e12SArchie Cobbs  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34f8307e12SArchie Cobbs  * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
35f8307e12SArchie Cobbs  * OF SUCH DAMAGE.
36f8307e12SArchie Cobbs  *
37f8307e12SArchie Cobbs  * $Whistle: msg.c,v 1.2 1999/11/29 23:38:35 archie Exp $
38f8307e12SArchie Cobbs  */
39f8307e12SArchie Cobbs 
40*d31ff7a8SPhilippe Charnier #include <sys/cdefs.h>
4178cdd8edSGleb Smirnoff #include <err.h>
4278cdd8edSGleb Smirnoff #include <netgraph.h>
4378cdd8edSGleb Smirnoff #include <stdio.h>
4478cdd8edSGleb Smirnoff #include <stdlib.h>
4578cdd8edSGleb Smirnoff #include <string.h>
4678cdd8edSGleb Smirnoff #include <sysexits.h>
4778cdd8edSGleb Smirnoff #include <unistd.h>
4878cdd8edSGleb Smirnoff 
49f8307e12SArchie Cobbs #include "ngctl.h"
50f8307e12SArchie Cobbs 
51f8307e12SArchie Cobbs static int MsgCmd(int ac, char **av);
52f8307e12SArchie Cobbs 
53f8307e12SArchie Cobbs const struct ngcmd msg_cmd = {
54f8307e12SArchie Cobbs 	MsgCmd,
55f8307e12SArchie Cobbs 	"msg path command [args ... ]",
56f8307e12SArchie Cobbs 	"Send a netgraph control message to the node at \"path\"",
57f8307e12SArchie Cobbs 	"The msg command constructs a netgraph control message from the"
58f8307e12SArchie Cobbs 	" command name and ASCII arguments (if any) and sends that message"
59f8307e12SArchie Cobbs 	" to the node.  It does this by first asking the node to convert"
60b1ea6388SArchie Cobbs 	" the ASCII message into binary format, and resending the result.",
61f8307e12SArchie Cobbs 	{ "cmd" }
62f8307e12SArchie Cobbs };
63f8307e12SArchie Cobbs 
64f8307e12SArchie Cobbs static int
MsgCmd(int ac,char ** av)65f8307e12SArchie Cobbs MsgCmd(int ac, char **av)
66f8307e12SArchie Cobbs {
679fe5fadaSRuslan Ermilov 	char *buf;
68f8307e12SArchie Cobbs 	char *path, *cmdstr;
699fe5fadaSRuslan Ermilov 	int i, len;
70f8307e12SArchie Cobbs 
71f8307e12SArchie Cobbs 	/* Get arguments */
72f8307e12SArchie Cobbs 	if (ac < 3)
73f8307e12SArchie Cobbs 		return (CMDRTN_USAGE);
74f8307e12SArchie Cobbs 	path = av[1];
75f8307e12SArchie Cobbs 	cmdstr = av[2];
76f8307e12SArchie Cobbs 
77f8307e12SArchie Cobbs 	/* Put command and arguments back together as one string */
789fe5fadaSRuslan Ermilov 	for (len = 1, i = 3; i < ac; i++)
799fe5fadaSRuslan Ermilov 		len += strlen(av[i]) + 1;
809fe5fadaSRuslan Ermilov 	if ((buf = malloc(len)) == NULL) {
819fe5fadaSRuslan Ermilov 		warn("malloc");
829fe5fadaSRuslan Ermilov 		return (CMDRTN_ERROR);
839fe5fadaSRuslan Ermilov 	}
84f8307e12SArchie Cobbs 	for (*buf = '\0', i = 3; i < ac; i++) {
85f8307e12SArchie Cobbs 		snprintf(buf + strlen(buf),
869fe5fadaSRuslan Ermilov 		    len - strlen(buf), " %s", av[i]);
87f8307e12SArchie Cobbs 	}
88f8307e12SArchie Cobbs 
89f8307e12SArchie Cobbs 	/* Send it */
90f8307e12SArchie Cobbs 	if (NgSendAsciiMsg(csock, path, "%s%s", cmdstr, buf) < 0) {
919fe5fadaSRuslan Ermilov 		free(buf);
92f8307e12SArchie Cobbs 		warn("send msg");
93f8307e12SArchie Cobbs 		return (CMDRTN_ERROR);
94f8307e12SArchie Cobbs 	}
959fe5fadaSRuslan Ermilov 	free(buf);
96f8307e12SArchie Cobbs 
976ebb8ebbSArchie Cobbs 	/* See if a synchronous reply awaits */
986ebb8ebbSArchie Cobbs 	{
996ebb8ebbSArchie Cobbs 		struct timeval tv;
1006ebb8ebbSArchie Cobbs 		fd_set rfds;
1016ebb8ebbSArchie Cobbs 
1026ebb8ebbSArchie Cobbs 		FD_ZERO(&rfds);
1036ebb8ebbSArchie Cobbs 		FD_SET(csock, &rfds);
1046ebb8ebbSArchie Cobbs 		memset(&tv, 0, sizeof(tv));
1056ebb8ebbSArchie Cobbs 		switch (select(csock + 1, &rfds, NULL, NULL, &tv)) {
1066ebb8ebbSArchie Cobbs 		case -1:
1076ebb8ebbSArchie Cobbs 			err(EX_OSERR, "select");
1086ebb8ebbSArchie Cobbs 		case 0:
1096ebb8ebbSArchie Cobbs 			break;
1106ebb8ebbSArchie Cobbs 		default:
1116ebb8ebbSArchie Cobbs 			MsgRead();
1126ebb8ebbSArchie Cobbs 			break;
1136ebb8ebbSArchie Cobbs 		}
1146ebb8ebbSArchie Cobbs 	}
1156ebb8ebbSArchie Cobbs 
116f8307e12SArchie Cobbs 	/* Done */
117f8307e12SArchie Cobbs 	return (CMDRTN_OK);
118f8307e12SArchie Cobbs }
119f8307e12SArchie Cobbs 
1206ebb8ebbSArchie Cobbs /*
1216ebb8ebbSArchie Cobbs  * Read and display the next incoming control message
1226ebb8ebbSArchie Cobbs  */
1236ebb8ebbSArchie Cobbs void
MsgRead(void)124*d31ff7a8SPhilippe Charnier MsgRead(void)
1256ebb8ebbSArchie Cobbs {
1269fe5fadaSRuslan Ermilov 	struct ng_mesg *m, *m2;
1279fe5fadaSRuslan Ermilov 	struct ng_mesg *ascii;
1289d901d3bSHartmut Brandt 	char path[NG_PATHSIZ];
1296ebb8ebbSArchie Cobbs 
1306ebb8ebbSArchie Cobbs 	/* Get incoming message (in binary form) */
1319fe5fadaSRuslan Ermilov 	if (NgAllocRecvMsg(csock, &m, path) < 0) {
1326ebb8ebbSArchie Cobbs 		warn("recv incoming message");
1336ebb8ebbSArchie Cobbs 		return;
1346ebb8ebbSArchie Cobbs 	}
1356ebb8ebbSArchie Cobbs 
1366ebb8ebbSArchie Cobbs 	/* Ask originating node to convert message to ASCII */
1376ebb8ebbSArchie Cobbs 	if (NgSendMsg(csock, path, NGM_GENERIC_COOKIE,
1386ebb8ebbSArchie Cobbs 	      NGM_BINARY2ASCII, m, sizeof(*m) + m->header.arglen) < 0
1399fe5fadaSRuslan Ermilov 	    || NgAllocRecvMsg(csock, &m2, NULL) < 0) {
1406ebb8ebbSArchie Cobbs 		printf("Rec'd %s %d from \"%s\":\n",
1416ebb8ebbSArchie Cobbs 		    (m->header.flags & NGF_RESP) != 0 ? "response" : "command",
1426ebb8ebbSArchie Cobbs 		    m->header.cmd, path);
1436ebb8ebbSArchie Cobbs 		if (m->header.arglen == 0)
1446ebb8ebbSArchie Cobbs 			printf("No arguments\n");
1456ebb8ebbSArchie Cobbs 		else
1469a419481SAlexander Kabaev 			DumpAscii((const u_char *)m->data, m->header.arglen);
1479fe5fadaSRuslan Ermilov 		free(m);
1486ebb8ebbSArchie Cobbs 		return;
1496ebb8ebbSArchie Cobbs 	}
1506ebb8ebbSArchie Cobbs 
1516ebb8ebbSArchie Cobbs 	/* Display message in ASCII form */
1529fe5fadaSRuslan Ermilov 	free(m);
1539fe5fadaSRuslan Ermilov 	ascii = (struct ng_mesg *)m2->data;
1546ebb8ebbSArchie Cobbs 	printf("Rec'd %s \"%s\" (%d) from \"%s\":\n",
1556ebb8ebbSArchie Cobbs 	    (ascii->header.flags & NGF_RESP) != 0 ? "response" : "command",
1566ebb8ebbSArchie Cobbs 	    ascii->header.cmdstr, ascii->header.cmd, path);
1576ebb8ebbSArchie Cobbs 	if (*ascii->data != '\0')
1586ebb8ebbSArchie Cobbs 		printf("Args:\t%s\n", ascii->data);
1596ebb8ebbSArchie Cobbs 	else
1606ebb8ebbSArchie Cobbs 		printf("No arguments\n");
1619fe5fadaSRuslan Ermilov 	free(m2);
1626ebb8ebbSArchie Cobbs }
1636ebb8ebbSArchie Cobbs 
164