Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/pvctxctl import from ALTQ 1.2 distribution



details:   https://anonhg.NetBSD.org/src/rev/5b0166921ae2
branches:  trunk
changeset: 474558:5b0166921ae2
user:      itojun <itojun%NetBSD.org@localhost>
date:      Sun Jul 11 17:28:02 1999 +0000

description:
import from ALTQ 1.2 distribution

diffstat:

 usr.sbin/pvctxctl/pvctxctl.8 |  135 ++++++++++++++++++++++++++++
 usr.sbin/pvctxctl/pvctxctl.c |  201 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 336 insertions(+), 0 deletions(-)

diffs (truncated from 344 to 300 lines):

diff -r 10d32a205455 -r 5b0166921ae2 usr.sbin/pvctxctl/pvctxctl.8
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/usr.sbin/pvctxctl/pvctxctl.8      Sun Jul 11 17:28:02 1999 +0000
@@ -0,0 +1,135 @@
+.Dd December 29, 1997
+.Dt PVCTXCTL 8
+.Os BSD
+.Sh NAME
+.Nm pvctxctl
+.Nd display or control ATM PVC transmitter parameters
+.Sh SYNOPSIS
+.Nm pvctxctl
+.Ar interface
+.Oo
+.Op vpi:
+.Ar vci
+.Oc
+.Nm pvctxctl
+.Ar interface
+.Op vpi: 
+.Ar vci
+.Op Fl p Ar pcr
+.Op Fl b Ar max-bandwidth
+.Oo
+.Fl j
+.Op vpi:
+.Ar vci
+.Oc
+.Op Fl n
+.Sh DESCRIPTION
+.Nm 
+displays or controls the shaper parameters of an ATM VC.
+When a shaper value is specified, 
+.Nm
+sets a shaper to an ATM VC.
+.Nm 
+works for a PVC sub interface 
+.Xr pvc 4
+as well as a real ATM interface
+.Xr en 4 .
+.Pp
+For a real ATM interface, the specified VC should be assigned 
+beforehand by 
+.Xr route 8 .
+.Pp
+For a sub interface, 
+.Nm
+assigns the specified VC to the sub interface.  If another VC is 
+already assigned to the sub interface, the old VC is invalidated.  
+.Pp
+Availability of shapers, the number of hardware shaper channels,
+and accuracy of shaping are all device dependent.
+For example, ENI Midway chip has 8 shaper channels but the driver
+reserves one for non-shaping VCs.
+.Pp
+The options are as follows:
+.Bl -tag -width Fl
+.It Ar Interface
+The
+.Ar inerface
+parameter is a string of the form
+.Dq name unit ,
+for example,
+.Dq en0 
+.It Op vpi: Ar vci
+The VC number to which the shaper is assigned.
+When the VPI number is omitted, VPI number 0 is 
+assumed.
+For example, to assign a shaper to VPI=0 and
+VCI=201, the following forms can be used: 
+"201", "0xc9", "0:201", "0:0xc9".
+.It Fl p Ar pcr
+The PCR (Peak Cell Rate) parameter specifies the peak cell rate in
+"cells per second".
+If PCR value "0" is specified,
+no shaper is assigned, which means cells are sent at 
+full-speed of the link.
+If PCR value 
+.Dq -1
+is specified, the corresponding VC
+is invalidated.
+.It Fl b Ar max-bandwidth
+The PCR parameter can be specified also in 
+.Dq bits per second .
+The rate is the rate of AAL5 frame and 
+the PCR is calculated by the following form:
+.Pp
+.Dl PCR = max-bandwidth / 8 / 48
+.Pp
+.Dq K
+and 
+.Dq M
+can be used as a short hand of
+.Dq 000
+and 
+.Dq 000000
+respectively.  For example,
+.Dq 45M
+means 
+.Dq 45Mbps 
+or PCR value 
+.Dq 117187 .
+.It [-j [vpi:]vci]
+The join parameter is intended for VP shaping.
+The VC shaper channel is shared with the existing VC,
+which means the sum of the cell rates never exceeds
+the maximum PCR among the shared VCs.
+On the other hand, when the shaper channel is not shared,
+the sum of the cell rates could be the sum of the PCRs.
+.Pp
+For example, if two VCs (say 201 and 202) share a
+45Mbps VP, use:
+.Pp
+.Dl # pvctxctl en0 201 -b 45M
+.Dl # pvctxctl en0 202 -b 45M -j 201
+.It Fl n
+This parameter is only for a sub interface.
+Use NULL encapsulation instead of LLC/SNAP.
+.El
+.Sh CAVEATS
+A real ATM interface and a sub interface require different
+sequences to set a shaper.
+For example, to assign a 45Mbps shaper to VC 201 (0xc9) of en0:
+.Pp
+.Dl # ifconfig en0 10.0.0.1
+.Dl # route add -iface 10.0.0.2 -link en0:3.0.0.c9
+.Dl # pvctxctl en0 0xc9 -b 45M
+.Pp
+For a shadow interface,
+.Pp
+.Dl # pvcsif en0                       # creates pvc0
+.Dl # ifconfig pvc0 10.0.0.1 10.0.0.2
+.Dl # pvctxctl pvc0 201 -b 45M
+
+.Sh SEE ALSO
+.Xr ifconfig 8 , 
+.Xr route 8 , 
+.Xr en 4 , 
+.Xr pvcsif 8
diff -r 10d32a205455 -r 5b0166921ae2 usr.sbin/pvctxctl/pvctxctl.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/usr.sbin/pvctxctl/pvctxctl.c      Sun Jul 11 17:28:02 1999 +0000
@@ -0,0 +1,201 @@
+/*
+ * Copyright (C) 1998
+ *     Sony Computer Science Laboratory Inc.  All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY SONY CSL AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL SONY CSL OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * $Id: pvctxctl.c,v 1.1.1.1 1999/07/11 17:28:02 itojun Exp $
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <string.h>
+#include <ctype.h>
+#include <err.h>
+
+#include <sys/socket.h>
+#include <sys/ioctl.h>
+#include <sys/ioctl.h>
+#include <net/if.h>
+
+#include <net/if_atm.h>
+
+static int str2vc(char *str, int *vpi, int *vci);
+static void usage(void);
+
+static void 
+usage(void)
+{
+       fprintf(stderr, "usage: pvctxctl interface [vpi:]vci\n");
+       fprintf(stderr, "          [-p pcr] [-b pcr_in_bps] [-j [vpi:]vci\n");
+       fprintf(stderr, "          [-n] \n");
+       exit(1);
+}
+
+int vpi = 0;
+int vci = 0;
+int joint_vpi = 0;
+int joint_vci = 0;
+int pcr = 0;
+int llcsnap = ATM_PH_LLCSNAP;
+int getinfo = 1;
+int subinterface = 0;
+int verbose = 1;
+
+int 
+main(int argc, char **argv)
+{
+       struct pvctxreq pvcreq;
+       int s, ch;
+       long bandwidth;
+       char *if_name, *cp;
+
+       if (argc < 2)
+               usage();
+
+       if_name = argv[1];
+       if (argc > 2 && isdigit(argv[2][0]))
+               str2vc(argv[2], &vpi, &vci);
+    
+       optind = 3;
+       while ((ch = getopt(argc, argv, "p:b:j:snv")) != EOF) {
+               switch (ch) {
+               case 'p':
+                       pcr = strtol(optarg, NULL, 0);
+                       getinfo = 0;
+                       break;
+               case 'b':
+                       cp = NULL;
+                       bandwidth = strtol(optarg, &cp, 0);
+                       if (cp != NULL) {
+                               if (*cp == 'K' || *cp == 'k')
+                                       bandwidth *= 1000;
+                               if (*cp == 'M' || *cp == 'm')
+                                       bandwidth *= 1000000;
+                       }
+                       pcr = bandwidth / 8 / 48;
+                       getinfo = 0;
+                       break;
+               case 'j':
+                       str2vc(optarg, &joint_vpi, &joint_vci);
+                       break;
+               case 'n':
+                       llcsnap = 0;
+                       break;
+               case 'v':
+                       verbose = 1;
+                       break;
+               default:
+                       usage();
+               }
+       }
+
+       if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
+               err(1, "can't open socket");
+
+       pvcreq.pvc_ifname[IFNAMSIZ-1] = '\0';
+       strncpy(pvcreq.pvc_ifname, if_name, IFNAMSIZ-1);
+
+       if (strncmp(if_name, "pvc", 3) == 0)
+               /* pvc subinterface */
+               subinterface = 1;
+       
+       ATM_PH_FLAGS(&pvcreq.pvc_aph) = ATM_PH_AAL5 | llcsnap;
+       ATM_PH_VPI(&pvcreq.pvc_aph) = vpi;
+       ATM_PH_SETVCI(&pvcreq.pvc_aph, vci);
+
+       ATM_PH_FLAGS(&pvcreq.pvc_joint) = 0;
+       ATM_PH_VPI(&pvcreq.pvc_joint) = joint_vpi;
+       ATM_PH_SETVCI(&pvcreq.pvc_joint, joint_vci);
+       
+       pvcreq.pvc_pcr = pcr;
+
+       if (getinfo) {
+               if (ioctl(s, SIOCGPVCTX, &pvcreq) < 0)
+                       err(1, "SIOCSPVCTX");
+       }
+       else {
+               if (verbose) {
+                   printf("setting pvc tx: interface:%s vc:%d:%d ph=0x%x\n",
+                          if_name, vpi, vci, ATM_PH_FLAGS(&pvcreq.pvc_aph));
+                   printf("  joint:%d:%d, setting pcr:%d\n",
+                          joint_vpi, joint_vci, pcr);
+               }
+
+               if (ioctl(s, SIOCSPVCTX, &pvcreq) < 0)
+                               err(1, "SIOCSPVCTX");
+       }
+
+       pcr = pvcreq.pvc_pcr;
+
+       /*
+        * print info
+        */
+       printf("  %s", if_name);
+       if (subinterface)
+               printf(" (bound to %s)", pvcreq.pvc_ifname);
+       printf(": vci:[%d:%d] (",



Home | Main Index | Thread Index | Old Index