1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1983, 1988, 1993
|
|
|
|
* The Regents of the University of California. 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 THE REGENTS 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1997-07-29 06:51:41 +00:00
|
|
|
#if 0
|
1994-05-27 12:33:43 +00:00
|
|
|
static char sccsid[] = "@(#)mbuf.c 8.1 (Berkeley) 6/6/93";
|
1997-07-29 06:51:41 +00:00
|
|
|
#endif
|
|
|
|
static const char rcsid[] =
|
1999-08-28 01:08:13 +00:00
|
|
|
"$FreeBSD$";
|
1994-05-27 12:33:43 +00:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
1997-02-24 20:40:40 +00:00
|
|
|
#include <sys/mbuf.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <sys/protosw.h>
|
|
|
|
#include <sys/socket.h>
|
1997-02-24 20:40:40 +00:00
|
|
|
#include <sys/sysctl.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1997-07-29 06:51:41 +00:00
|
|
|
#include <err.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <stdio.h>
|
2000-07-15 06:02:48 +00:00
|
|
|
#include <stdlib.h>
|
2001-06-22 06:35:32 +00:00
|
|
|
#include <string.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include "netstat.h"
|
|
|
|
|
|
|
|
#define YES 1
|
|
|
|
typedef int bool;
|
|
|
|
|
2000-07-15 06:02:48 +00:00
|
|
|
static struct mbtypenames {
|
2001-09-30 01:58:39 +00:00
|
|
|
short mt_type;
|
1994-05-27 12:33:43 +00:00
|
|
|
char *mt_name;
|
2000-07-15 06:02:48 +00:00
|
|
|
} mbtypenames[] = {
|
1994-05-27 12:33:43 +00:00
|
|
|
{ MT_DATA, "data" },
|
|
|
|
{ MT_OOBDATA, "oob data" },
|
|
|
|
{ MT_CONTROL, "ancillary data" },
|
|
|
|
{ MT_HEADER, "packet headers" },
|
1997-08-17 09:12:43 +00:00
|
|
|
#ifdef MT_SOCKET
|
1994-05-27 12:33:43 +00:00
|
|
|
{ MT_SOCKET, "socket structures" }, /* XXX */
|
1997-08-17 09:12:43 +00:00
|
|
|
#endif
|
|
|
|
#ifdef MT_PCB
|
1994-05-27 12:33:43 +00:00
|
|
|
{ MT_PCB, "protocol control blocks" }, /* XXX */
|
1997-08-17 09:12:43 +00:00
|
|
|
#endif
|
1999-01-18 12:40:44 +00:00
|
|
|
#ifdef MT_RTABLE
|
1994-05-27 12:33:43 +00:00
|
|
|
{ MT_RTABLE, "routing table entries" }, /* XXX */
|
1999-01-18 12:40:44 +00:00
|
|
|
#endif
|
1997-08-17 09:12:43 +00:00
|
|
|
#ifdef MT_HTABLE
|
1994-05-27 12:33:43 +00:00
|
|
|
{ MT_HTABLE, "IMP host table entries" }, /* XXX */
|
1997-08-17 09:12:43 +00:00
|
|
|
#endif
|
|
|
|
#ifdef MT_ATABLE
|
1994-05-27 12:33:43 +00:00
|
|
|
{ MT_ATABLE, "address resolution tables" },
|
1997-08-17 09:12:43 +00:00
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
{ MT_FTABLE, "fragment reassembly queue headers" }, /* XXX */
|
|
|
|
{ MT_SONAME, "socket names and addresses" },
|
1998-08-23 15:23:11 +00:00
|
|
|
#ifdef MT_SOOPTS
|
1994-05-27 12:33:43 +00:00
|
|
|
{ MT_SOOPTS, "socket options" },
|
1998-08-23 15:23:11 +00:00
|
|
|
#endif
|
1997-08-17 09:12:43 +00:00
|
|
|
#ifdef MT_RIGHTS
|
1994-05-27 12:33:43 +00:00
|
|
|
{ MT_RIGHTS, "access rights" },
|
1997-08-17 09:12:43 +00:00
|
|
|
#endif
|
|
|
|
#ifdef MT_IFADDR
|
1994-05-27 12:33:43 +00:00
|
|
|
{ MT_IFADDR, "interface addresses" }, /* XXX */
|
1997-08-17 09:12:43 +00:00
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print mbuf statistics.
|
|
|
|
*/
|
|
|
|
void
|
2001-06-22 06:35:32 +00:00
|
|
|
mbpr(u_long mbaddr, u_long mbtaddr, u_long nmbcaddr, u_long nmbufaddr,
|
|
|
|
u_long mblimaddr, u_long cllimaddr, u_long cpusaddr, u_long pgsaddr,
|
|
|
|
u_long mbpaddr)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-09-30 01:58:39 +00:00
|
|
|
int i, j, nmbufs, nmbclusters, page_size, num_objs;
|
2001-06-22 06:35:32 +00:00
|
|
|
u_int mbuf_limit, clust_limit;
|
2001-07-31 08:19:49 +00:00
|
|
|
u_long totspace[2], totused[2], totnum, totfree;
|
2001-09-30 01:58:39 +00:00
|
|
|
short nmbtypes;
|
2001-06-22 06:35:32 +00:00
|
|
|
size_t mlen;
|
2001-09-30 01:58:39 +00:00
|
|
|
long *mbtypes = NULL;
|
2001-06-22 06:35:32 +00:00
|
|
|
struct mbstat *mbstat = NULL;
|
|
|
|
struct mbpstat **mbpstat = NULL;
|
|
|
|
struct mbtypenames *mp;
|
|
|
|
bool *seen = NULL;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2001-06-23 17:04:17 +00:00
|
|
|
mlen = sizeof *mbstat;
|
2001-06-22 06:35:32 +00:00
|
|
|
if ((mbstat = malloc(mlen)) == NULL) {
|
|
|
|
warn("malloc: cannot allocate memory for mbstat");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX: Unfortunately, for the time being, we have to fetch
|
|
|
|
* the total length of the per-CPU stats area via sysctl
|
|
|
|
* (regardless of whether we're looking at a core or not.
|
|
|
|
*/
|
|
|
|
if (sysctlbyname("kern.ipc.mb_statpcpu", NULL, &mlen, NULL, 0) < 0) {
|
|
|
|
warn("sysctl: retrieving mb_statpcpu len");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
num_objs = (int)(mlen / sizeof(struct mbpstat));
|
|
|
|
if ((mbpstat = calloc(num_objs, sizeof(struct mbpstat *))) == NULL) {
|
|
|
|
warn("calloc: cannot allocate memory for mbpstats pointers");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if ((mbpstat[0] = calloc(num_objs, sizeof(struct mbpstat))) == NULL) {
|
|
|
|
warn("calloc: cannot allocate memory for mbpstats");
|
|
|
|
goto err;
|
|
|
|
}
|
2001-06-14 15:45:09 +00:00
|
|
|
|
|
|
|
if (mbaddr) {
|
2001-06-22 06:35:32 +00:00
|
|
|
if (kread(mbpaddr, (char *)mbpstat[0], mlen))
|
|
|
|
goto err;
|
|
|
|
if (kread(mbaddr, (char *)mbstat, sizeof mbstat))
|
2001-06-14 15:45:09 +00:00
|
|
|
goto err;
|
|
|
|
if (kread(nmbcaddr, (char *)&nmbclusters, sizeof(int)))
|
|
|
|
goto err;
|
|
|
|
if (kread(nmbufaddr, (char *)&nmbufs, sizeof(int)))
|
|
|
|
goto err;
|
2001-06-22 06:35:32 +00:00
|
|
|
if (kread(mblimaddr, (char *)&mbuf_limit, sizeof(u_int)))
|
|
|
|
goto err;
|
|
|
|
if (kread(cllimaddr, (char *)&clust_limit, sizeof(u_int)))
|
|
|
|
goto err;
|
|
|
|
if (kread(pgsaddr, (char *)&page_size, sizeof(int)))
|
|
|
|
goto err;
|
2001-06-14 15:45:09 +00:00
|
|
|
} else {
|
2001-06-22 06:35:32 +00:00
|
|
|
if (sysctlbyname("kern.ipc.mb_statpcpu", mbpstat[0], &mlen,
|
|
|
|
NULL, 0) < 0) {
|
|
|
|
warn("sysctl: retrieving mb_statpcpu");
|
|
|
|
goto err;
|
|
|
|
}
|
2001-06-23 17:04:17 +00:00
|
|
|
mlen = sizeof *mbstat;
|
2001-06-22 06:35:32 +00:00
|
|
|
if (sysctlbyname("kern.ipc.mbstat", mbstat, &mlen, NULL, 0)
|
|
|
|
< 0) {
|
2001-06-14 15:45:09 +00:00
|
|
|
warn("sysctl: retrieving mbstat");
|
|
|
|
goto err;
|
|
|
|
}
|
2001-06-22 06:35:32 +00:00
|
|
|
mlen = sizeof(int);
|
|
|
|
if (sysctlbyname("kern.ipc.nmbclusters", &nmbclusters, &mlen,
|
|
|
|
NULL, 0) < 0) {
|
2001-06-14 15:45:09 +00:00
|
|
|
warn("sysctl: retrieving nmbclusters");
|
|
|
|
goto err;
|
|
|
|
}
|
2001-06-22 06:35:32 +00:00
|
|
|
mlen = sizeof(int);
|
|
|
|
if (sysctlbyname("kern.ipc.nmbufs", &nmbufs, &mlen, NULL, 0)
|
|
|
|
< 0) {
|
2001-06-14 15:45:09 +00:00
|
|
|
warn("sysctl: retrieving nmbufs");
|
|
|
|
goto err;
|
|
|
|
}
|
2001-06-22 06:35:32 +00:00
|
|
|
mlen = sizeof(u_int);
|
|
|
|
if (sysctlbyname("kern.ipc.mbuf_limit", &mbuf_limit, &mlen,
|
|
|
|
NULL, 0) < 0) {
|
|
|
|
warn("sysctl: retrieving mbuf_limit");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
mlen = sizeof(u_int);
|
|
|
|
if (sysctlbyname("kern.ipc.clust_limit", &clust_limit, &mlen,
|
|
|
|
NULL, 0) < 0) {
|
|
|
|
warn("sysctl: retrieving clust_limit");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
mlen = sizeof(int);
|
|
|
|
if (sysctlbyname("hw.pagesize", &page_size, &mlen, NULL, 0)
|
|
|
|
< 0) {
|
|
|
|
warn("sysctl: retrieving hw.pagesize");
|
|
|
|
goto err;
|
|
|
|
}
|
1999-12-28 06:38:37 +00:00
|
|
|
}
|
|
|
|
|
2001-09-30 01:58:39 +00:00
|
|
|
nmbtypes = mbstat->m_numtypes;
|
|
|
|
if ((seen = calloc(nmbtypes, sizeof(*seen))) == NULL) {
|
|
|
|
warn("calloc: cannot allocate memory for mbtypes seen flag");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if ((mbtypes = calloc(nmbtypes, sizeof(long *))) == NULL) {
|
|
|
|
warn("calloc: cannot allocate memory for mbtypes");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2001-06-22 06:35:32 +00:00
|
|
|
for (i = 0; i < num_objs; i++)
|
|
|
|
mbpstat[i] = mbpstat[0] + i;
|
2000-10-15 06:29:22 +00:00
|
|
|
|
1997-02-24 20:40:40 +00:00
|
|
|
#undef MSIZE
|
2001-06-22 06:35:32 +00:00
|
|
|
#define MSIZE (mbstat->m_msize)
|
1997-02-24 20:40:40 +00:00
|
|
|
#undef MCLBYTES
|
2001-06-22 06:35:32 +00:00
|
|
|
#define MCLBYTES (mbstat->m_mclbytes)
|
|
|
|
#define MBPERPG (page_size / MSIZE)
|
|
|
|
#define CLPERPG (page_size / MCLBYTES)
|
|
|
|
#define GENLST (num_objs - 1)
|
|
|
|
|
|
|
|
printf("mbuf usage:\n");
|
|
|
|
printf("\tGEN list:\t%lu/%lu (in use/in pool)\n",
|
|
|
|
(mbpstat[GENLST]->mb_mbpgs * MBPERPG - mbpstat[GENLST]->mb_mbfree),
|
|
|
|
(mbpstat[GENLST]->mb_mbpgs * MBPERPG));
|
|
|
|
totnum = mbpstat[GENLST]->mb_mbpgs * MBPERPG;
|
|
|
|
totfree = mbpstat[GENLST]->mb_mbfree;
|
2001-09-30 01:58:39 +00:00
|
|
|
for (j = 1; j < nmbtypes; j++)
|
|
|
|
mbtypes[j] += mbpstat[GENLST]->mb_mbtypes[j];
|
2001-07-31 08:19:49 +00:00
|
|
|
totspace[0] = mbpstat[GENLST]->mb_mbpgs * page_size;
|
2001-07-26 18:47:46 +00:00
|
|
|
for (i = 0; i < (num_objs - 1); i++) {
|
|
|
|
if (mbpstat[i]->mb_active == 0)
|
|
|
|
continue;
|
2001-06-22 06:35:32 +00:00
|
|
|
printf("\tCPU #%d list:\t%lu/%lu (in use/in pool)\n", i,
|
|
|
|
(mbpstat[i]->mb_mbpgs * MBPERPG - mbpstat[i]->mb_mbfree),
|
|
|
|
(mbpstat[i]->mb_mbpgs * MBPERPG));
|
2001-07-31 08:19:49 +00:00
|
|
|
totspace[0] += mbpstat[i]->mb_mbpgs * page_size;
|
2001-06-22 06:35:32 +00:00
|
|
|
totnum += mbpstat[i]->mb_mbpgs * MBPERPG;
|
|
|
|
totfree += mbpstat[i]->mb_mbfree;
|
2001-09-30 01:58:39 +00:00
|
|
|
for (j = 1; j < nmbtypes; j++)
|
|
|
|
mbtypes[j] += mbpstat[i]->mb_mbtypes[j];
|
2001-06-22 06:35:32 +00:00
|
|
|
}
|
2001-07-31 08:19:49 +00:00
|
|
|
totused[0] = totnum - totfree;
|
|
|
|
printf("\tTotal:\t\t%lu/%lu (in use/in pool)\n", totused[0], totnum);
|
2001-06-22 06:35:32 +00:00
|
|
|
printf("\tMaximum number allowed on each CPU list: %d\n", mbuf_limit);
|
|
|
|
printf("\tMaximum possible: %d\n", nmbufs);
|
2001-09-30 01:58:39 +00:00
|
|
|
printf("\tAllocated mbuf types:\n");
|
|
|
|
for (mp = mbtypenames; mp->mt_name; mp++) {
|
|
|
|
if (mbtypes[mp->mt_type]) {
|
|
|
|
seen[mp->mt_type] = YES;
|
|
|
|
printf("\t %lu mbufs allocated to %s\n",
|
|
|
|
mbtypes[mp->mt_type], mp->mt_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i = 1; i < nmbtypes; i++) {
|
|
|
|
if (!seen[i] && mbtypes[i])
|
|
|
|
printf("\t %lu mbufs allocated to <mbuf type: %d>\n",
|
|
|
|
mbtypes[i], i);
|
|
|
|
}
|
2001-07-31 08:19:49 +00:00
|
|
|
printf("\t%lu%% of mbuf map consumed\n", ((totspace[0] * 100) / (nmbufs
|
2001-06-22 06:35:32 +00:00
|
|
|
* MSIZE)));
|
|
|
|
|
|
|
|
printf("mbuf cluster usage:\n");
|
|
|
|
printf("\tGEN list:\t%lu/%lu (in use/in pool)\n",
|
|
|
|
(mbpstat[GENLST]->mb_clpgs * CLPERPG - mbpstat[GENLST]->mb_clfree),
|
|
|
|
(mbpstat[GENLST]->mb_clpgs * CLPERPG));
|
|
|
|
totnum = mbpstat[GENLST]->mb_clpgs * CLPERPG;
|
|
|
|
totfree = mbpstat[GENLST]->mb_clfree;
|
2001-07-31 08:19:49 +00:00
|
|
|
totspace[1] = mbpstat[GENLST]->mb_clpgs * page_size;
|
2001-07-26 18:47:46 +00:00
|
|
|
for (i = 0; i < (num_objs - 1); i++) {
|
|
|
|
if (mbpstat[i]->mb_active == 0)
|
|
|
|
continue;
|
2001-06-22 06:35:32 +00:00
|
|
|
printf("\tCPU #%d list:\t%lu/%lu (in use/in pool)\n", i,
|
|
|
|
(mbpstat[i]->mb_clpgs * CLPERPG - mbpstat[i]->mb_clfree),
|
|
|
|
(mbpstat[i]->mb_clpgs * CLPERPG));
|
2001-07-31 08:19:49 +00:00
|
|
|
totspace[1] += mbpstat[i]->mb_clpgs * page_size;
|
2001-06-22 06:35:32 +00:00
|
|
|
totnum += mbpstat[i]->mb_clpgs * CLPERPG;
|
|
|
|
totfree += mbpstat[i]->mb_clfree;
|
|
|
|
}
|
2001-07-31 08:19:49 +00:00
|
|
|
totused[1] = totnum - totfree;
|
|
|
|
printf("\tTotal:\t\t%lu/%lu (in use/in pool)\n", totused[1], totnum);
|
2001-06-22 06:35:32 +00:00
|
|
|
printf("\tMaximum number allowed on each CPU list: %d\n", clust_limit);
|
|
|
|
printf("\tMaximum possible: %d\n", nmbclusters);
|
2001-07-31 08:19:49 +00:00
|
|
|
printf("\t%lu%% of cluster map consumed\n", ((totspace[1] * 100) /
|
2001-06-22 06:35:32 +00:00
|
|
|
(nmbclusters * MCLBYTES)));
|
|
|
|
|
2001-07-31 08:19:49 +00:00
|
|
|
printf("%lu KBytes of wired memory reserved (%lu%% in use)\n",
|
|
|
|
(totspace[0] + totspace[1]) / 1024, ((totused[0] * MSIZE +
|
|
|
|
totused[1] * MCLBYTES) * 100) / (totspace[0] + totspace[1]));
|
2001-06-22 06:35:32 +00:00
|
|
|
printf("%lu requests for memory denied\n", mbstat->m_drops);
|
|
|
|
printf("%lu requests for memory delayed\n", mbstat->m_wait);
|
|
|
|
printf("%lu calls to protocol drain routines\n", mbstat->m_drain);
|
2000-07-15 06:02:48 +00:00
|
|
|
|
|
|
|
err:
|
|
|
|
if (mbtypes != NULL)
|
|
|
|
free(mbtypes);
|
|
|
|
if (seen != NULL)
|
|
|
|
free(seen);
|
2001-06-22 06:35:32 +00:00
|
|
|
if (mbstat != NULL)
|
|
|
|
free(mbstat);
|
|
|
|
if (mbpstat != NULL) {
|
|
|
|
if (mbpstat[0] != NULL)
|
|
|
|
free(mbpstat[0]);
|
|
|
|
free(mbpstat);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|