[BACK]Return to mbuf.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / netstat

Annotation of src/usr.bin/netstat/mbuf.c, Revision 1.35

1.35    ! deraadt     1: /*     $OpenBSD: mbuf.c,v 1.34 2015/01/16 06:40:10 deraadt Exp $       */
1.2       deraadt     2: /*     $NetBSD: mbuf.c,v 1.9 1996/05/07 02:55:03 thorpej Exp $ */
1.1       deraadt     3:
                      4: /*
                      5:  * Copyright (c) 1983, 1988, 1993
                      6:  *     The Regents of the University of California.  All rights reserved.
                      7:  *
                      8:  * Redistribution and use in source and binary forms, with or without
                      9:  * modification, are permitted provided that the following conditions
                     10:  * are met:
                     11:  * 1. Redistributions of source code must retain the above copyright
                     12:  *    notice, this list of conditions and the following disclaimer.
                     13:  * 2. Redistributions in binary form must reproduce the above copyright
                     14:  *    notice, this list of conditions and the following disclaimer in the
                     15:  *    documentation and/or other materials provided with the distribution.
1.19      millert    16:  * 3. Neither the name of the University nor the names of its contributors
1.1       deraadt    17:  *    may be used to endorse or promote products derived from this software
                     18:  *    without specific prior written permission.
                     19:  *
                     20:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     21:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     22:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     23:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     24:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     25:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     26:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     27:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     28:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     29:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     30:  * SUCH DAMAGE.
                     31:  */
1.8       provos     32:
1.1       deraadt    33: #include <sys/socket.h>
                     34: #include <sys/mbuf.h>
1.35    ! deraadt    35: #include <sys/protosw.h>
1.8       provos     36: #include <sys/pool.h>
1.13      angelos    37: #include <sys/sysctl.h>
1.27      deraadt    38: #include <net/if.h>
1.1       deraadt    39:
1.24      millert    40: #include <errno.h>
1.5       millert    41: #include <limits.h>
1.1       deraadt    42: #include <stdio.h>
1.14      deraadt    43: #include <string.h>
1.17      deraadt    44: #include <unistd.h>
1.1       deraadt    45: #include "netstat.h"
                     46:
                     47: #define        YES     1
                     48: typedef int bool;
                     49:
                     50: struct mbstat mbstat;
1.32      dlg        51: struct kinfo_pool mbpool, mclpools[MCLPOOLS];
1.27      deraadt    52: int    mclp;
                     53: char   *mclnames[] = {
                     54:        "mcl2k", "mcl4k", "mcl8k", "mcl9k", "mcl12k", "mcl16k", "mcl64k"
                     55: };
                     56: char   **mclnamep = mclnames;
1.1       deraadt    57:
                     58: static struct mbtypes {
                     59:        int     mt_type;
                     60:        char    *mt_name;
                     61: } mbtypes[] = {
                     62:        { MT_DATA,      "data" },
                     63:        { MT_OOBDATA,   "oob data" },
                     64:        { MT_CONTROL,   "ancillary data" },
                     65:        { MT_HEADER,    "packet headers" },
                     66:        { MT_FTABLE,    "fragment reassembly queue headers" },  /* XXX */
                     67:        { MT_SONAME,    "socket names and addresses" },
                     68:        { MT_SOOPTS,    "socket options" },
                     69:        { 0, 0 }
                     70: };
                     71:
                     72: int nmbtypes = sizeof(mbstat.m_mtypes) / sizeof(short);
                     73: bool seen[256];                        /* "have we seen this type yet?" */
                     74:
                     75: /*
                     76:  * Print mbuf statistics.
                     77:  */
                     78: void
1.25      deraadt    79: mbpr(void)
1.1       deraadt    80: {
1.29      claudio    81:        unsigned long totmem, totused, totmbufs;
                     82:        int totpct;
1.27      deraadt    83:        int i, mib[4], npools;
1.32      dlg        84:        struct kinfo_pool pool;
1.9       mpech      85:        struct mbtypes *mp;
1.13      angelos    86:        size_t size;
1.10      art        87:        int page_size = getpagesize();
1.1       deraadt    88:
                     89:        if (nmbtypes != 256) {
                     90:                fprintf(stderr,
1.2       deraadt    91:                    "%s: unexpected change to mbstat; check source\n",
1.11      mickey     92:                    __progname);
1.1       deraadt    93:                return;
                     94:        }
1.13      angelos    95:
1.23      marius     96:        mib[0] = CTL_KERN;
                     97:        mib[1] = KERN_MBSTAT;
                     98:        size = sizeof(mbstat);
                     99:
                    100:        if (sysctl(mib, 2, &mbstat, &size, NULL, 0) < 0) {
                    101:                printf("Can't retrieve mbuf statistics from the kernel: %s\n",
                    102:                    strerror(errno));
                    103:                return;
                    104:        }
                    105:
                    106:        mib[0] = CTL_KERN;
                    107:        mib[1] = KERN_POOL;
                    108:        mib[2] = KERN_POOL_NPOOLS;
                    109:        size = sizeof(npools);
                    110:
                    111:        if (sysctl(mib, 3, &npools, &size, NULL, 0) < 0) {
                    112:                printf("Can't figure out number of pools in kernel: %s\n",
                    113:                    strerror(errno));
                    114:                return;
                    115:        }
1.13      angelos   116:
1.23      marius    117:        for (i = 1; npools; i++) {
                    118:                char name[32];
1.13      angelos   119:
1.16      angelos   120:                mib[0] = CTL_KERN;
1.23      marius    121:                mib[1] = KERN_POOL;
                    122:                mib[2] = KERN_POOL_POOL;
                    123:                mib[3] = i;
1.32      dlg       124:                size = sizeof(pool);
1.23      marius    125:                if (sysctl(mib, 4, &pool, &size, NULL, 0) < 0) {
                    126:                        if (errno == ENOENT)
                    127:                                continue;
                    128:                        printf("error getting pool: %s\n",
1.16      angelos   129:                            strerror(errno));
                    130:                        return;
                    131:                }
1.23      marius    132:                npools--;
                    133:                mib[2] = KERN_POOL_NAME;
                    134:                size = sizeof(name);
                    135:                if (sysctl(mib, 4, &name, &size, NULL, 0) < 0) {
                    136:                        printf("error getting pool name: %s\n",
1.13      angelos   137:                            strerror(errno));
                    138:                        return;
                    139:                }
                    140:
1.33      dlg       141:                if (!strncmp(name, "mbufpl", strlen("mbufpl")))
1.32      dlg       142:                        bcopy(&pool, &mbpool, sizeof(pool));
1.30      deraadt   143:                else if (mclp < sizeof(mclpools) / sizeof(mclpools[0]) &&
1.27      deraadt   144:                    !strncmp(name, *mclnamep, strlen(*mclnamep))) {
                    145:                        bcopy(&pool, &mclpools[mclp++],
1.32      dlg       146:                            sizeof(pool));
1.27      deraadt   147:                        mclnamep++;
1.23      marius    148:                }
1.1       deraadt   149:        }
1.8       provos    150:
1.1       deraadt   151:        totmbufs = 0;
                    152:        for (mp = mbtypes; mp->mt_name; mp++)
1.29      claudio   153:                totmbufs += (unsigned int)mbstat.m_mtypes[mp->mt_type];
                    154:        printf("%lu mbuf%s in use:\n", totmbufs, plural(totmbufs));
1.1       deraadt   155:        for (mp = mbtypes; mp->mt_name; mp++)
                    156:                if (mbstat.m_mtypes[mp->mt_type]) {
                    157:                        seen[mp->mt_type] = YES;
1.6       denny     158:                        printf("\t%u mbuf%s allocated to %s\n",
                    159:                            mbstat.m_mtypes[mp->mt_type],
1.29      claudio   160:                            plural(mbstat.m_mtypes[mp->mt_type]),
1.6       denny     161:                            mp->mt_name);
1.1       deraadt   162:                }
                    163:        seen[MT_FREE] = YES;
                    164:        for (i = 0; i < nmbtypes; i++)
                    165:                if (!seen[i] && mbstat.m_mtypes[i]) {
1.6       denny     166:                        printf("\t%u mbuf%s allocated to <mbuf type %d>\n",
                    167:                            mbstat.m_mtypes[i],
1.29      claudio   168:                            plural(mbstat.m_mtypes[i]), i);
1.1       deraadt   169:                }
1.29      claudio   170:        totmem = (mbpool.pr_npages * (unsigned long)page_size);
1.27      deraadt   171:        totused = mbpool.pr_nout * mbpool.pr_size;
                    172:        for (i = 0; i < mclp; i++) {
1.29      claudio   173:                printf("%u/%lu/%lu mbuf %d byte clusters in use (current/peak/max)\n",
                    174:                    mclpools[i].pr_nout,
                    175:                    (u_long)mclpools[i].pr_hiwat * mclpools[i].pr_itemsperpage,
                    176:                    (u_long)mclpools[i].pr_maxpages * mclpools[i].pr_itemsperpage,
1.27      deraadt   177:                    mclpools[i].pr_size);
1.29      claudio   178:                totmem += (mclpools[i].pr_npages * (unsigned long)page_size);
1.27      deraadt   179:                totused += mclpools[i].pr_nout * mclpools[i].pr_size;
                    180:        }
                    181:
1.29      claudio   182:        totpct = (totmem == 0)? 0 : (totused/(totmem / 100));
                    183:        printf("%lu Kbytes allocated to network (%d%% in use)\n",
1.8       provos    184:            totmem / 1024, totpct);
1.4       millert   185:        printf("%lu requests for memory denied\n", mbstat.m_drops);
                    186:        printf("%lu requests for memory delayed\n", mbstat.m_wait);
                    187:        printf("%lu calls to protocol drain routines\n", mbstat.m_drain);
1.1       deraadt   188: }