MFC r354229

add valectl to the system commands

The valectl(4) program is used to manage vale(4) switches.
Add it to the system commands so that it can be used right away.
This program was previously called vale-ctl, and stored in
tools/tools/netmap

Reviewed by:    hrs, bcr, lwhsu, kevans
Differential Revision:  https://reviews.freebsd.org/D22146
This commit is contained in:
vmaffione 2019-11-07 20:09:41 +00:00 committed by Franco Fichtner
parent 9d927dc777
commit 0f3d207f39
10 changed files with 29 additions and 27 deletions

View File

@ -27,7 +27,7 @@
.\"
.\" $FreeBSD$
.\"
.Dd November 20, 2018
.Dd October 26, 2019
.Dt NETMAP 4
.Os
.Sh NAME
@ -1087,14 +1087,14 @@ changing port names, e.g.,
.Pp
The following command attaches an interface and the host stack
to a switch:
.Dl vale-ctl -h vale2:em0
.Dl valectl -h vale2:em0
Other
.Nm
clients attached to the same switch can now communicate
with the network card or the host.
.Sh SEE ALSO
.Xr vale 4 ,
.Xr vale-ctl 4 ,
.Xr valectl 8 ,
.Xr bridge 8 ,
.Xr lb 8 ,
.Xr nmreplay 8 ,

View File

@ -1442,7 +1442,7 @@ put_out:
/* nm_bdg_ctl callback for the bwrap.
* Called on bridge-attach and detach, as an effect of vale-ctl -[ahd].
* Called on bridge-attach and detach, as an effect of valectl -[ahd].
* On attach, it needs to provide a fake netmap_priv_d structure and
* perform a netmap_do_regif() on the bwrap. This will put both the
* bwrap and the hwna in netmap mode, with the netmap rings shared

View File

@ -116,13 +116,13 @@
* nr_cmd (in) if non-zero indicates a special command:
* NETMAP_BDG_ATTACH and nr_name = vale*:ifname
* attaches the NIC to the switch; nr_ringid specifies
* which rings to use. Used by vale-ctl -a ...
* which rings to use. Used by valectl -a ...
* nr_arg1 = NETMAP_BDG_HOST also attaches the host port
* as in vale-ctl -h ...
* as in valectl -h ...
*
* NETMAP_BDG_DETACH and nr_name = vale*:ifname
* disconnects a previously attached NIC.
* Used by vale-ctl -d ...
* Used by valectl -d ...
*
* NETMAP_BDG_LIST
* list the configuration of VALE switches.
@ -133,10 +133,10 @@
*
* NETMAP_BDG_NEWIF
* create a persistent VALE port with name nr_name.
* Used by vale-ctl -n ...
* Used by valectl -n ...
*
* NETMAP_BDG_DELIF
* delete a persistent VALE port. Used by vale-ctl -d ...
* delete a persistent VALE port. Used by valectl -d ...
*
* nr_arg1, nr_arg2, nr_arg3 (in/out) command specific
*

View File

@ -3,7 +3,7 @@
#
# For multiple programs using a single source file each,
# we can just define 'progs' and create custom targets.
PROGS = pkt-gen nmreplay bridge vale-ctl lb
PROGS = pkt-gen nmreplay bridge lb
CLEANFILES = $(PROGS) *.o
MAN=
@ -32,8 +32,5 @@ bridge: bridge.o
nmreplay: nmreplay.o
$(CC) $(CFLAGS) -o nmreplay nmreplay.o $(LDFLAGS)
vale-ctl: vale-ctl.o
$(CC) $(CFLAGS) -o vale-ctl vale-ctl.o
lb: lb.o pkt_hash.o
$(CC) $(CFLAGS) -o lb lb.o pkt_hash.o $(LDFLAGS)

View File

@ -6,8 +6,6 @@ This directory contains applications that use the netmap API
bridge a two-port jumper wire, also using the netmap API
vale-ctl the program to control and inspect VALE switches
lb an L3/L4 load balancer
nmreplay a tool to playback a pcap file to a netmap port

View File

@ -24,7 +24,7 @@
.\"
.\" $FreeBSD$
.\"
.Dd October 28, 2018
.Dd October 26, 2019
.Dt LB 8
.Os
.Sh NAME
@ -111,7 +111,7 @@ If
.Nm
does not exit cleanly the ports will not be removed.
Please use
.Xr vale-ctl 4
.Xr valectl 8
to remove any stale persistent VALE port.
.Sh SEE ALSO
.Xr netmap 4 ,

View File

@ -96,6 +96,7 @@ SUBDIR= adduser \
trpt \
tzsetup \
ugidfw \
valectl \
vigr \
vipw \
wake \

View File

@ -0,0 +1,8 @@
# $FreeBSD$
PROG= valectl
MAN= valectl.8
WARNS?= 3
.include <bsd.prog.mk>

View File

@ -24,15 +24,15 @@
.\"
.\" $FreeBSD$
.\"
.Dd October 24, 2018
.Dt VALE-CTL 4
.Dd October 26, 2019
.Dt VALECTL 8
.Os
.Sh NAME
.Nm vale-ctl
.Nm valectl
.Nd manage VALE switches provided by netmap
.Sh SYNOPSIS
.Bk -words
.Bl -tag -width "vale-ctl"
.Bl -tag -width "valectl"
.It Nm
.Op Fl g Ar valeSSS:PPP
.Op Fl a Ar valeSSS:interface
@ -158,6 +158,6 @@ harware netmap ports.
.Sh AUTHORS
.An -nosplit
.Nm
has been written by
was written by
.An Michio Honda
at NetApp.

View File

@ -42,10 +42,8 @@
#include <libgen.h> /* basename */
#include <stdlib.h> /* atoi, free */
/* XXX cut and paste from pkt-gen.c because I'm not sure whether this
* program may include nm_util.h
*/
void parse_nmr_config(const char* conf, struct nmreq *nmr)
static void
parse_nmr_config(const char* conf, struct nmreq *nmr)
{
char *w, *tok;
int i, v;
@ -201,7 +199,7 @@ usage(int errcode)
{
fprintf(stderr,
"Usage:\n"
"vale-ctl arguments\n"
"valectl arguments\n"
"\t-g interface interface name to get info\n"
"\t-d interface interface name to be detached\n"
"\t-a interface interface name to be attached\n"