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

Annotation of src/usr.bin/netstat/inet6.c, Revision 1.27

1.27    ! sturm       1: /*     $OpenBSD: inet6.c,v 1.26 2003/03/13 09:09:33 deraadt Exp $      */
1.1       itojun      2: /*     BSDI inet.c,v 2.3 1995/10/24 02:19:29 prb Exp   */
                      3: /*
                      4:  * Copyright (c) 1983, 1988, 1993
                      5:  *     The Regents of the University of California.  All rights reserved.
                      6:  *
                      7:  * Redistribution and use in source and binary forms, with or without
                      8:  * modification, are permitted provided that the following conditions
                      9:  * are met:
                     10:  * 1. Redistributions of source code must retain the above copyright
                     11:  *    notice, this list of conditions and the following disclaimer.
                     12:  * 2. Redistributions in binary form must reproduce the above copyright
                     13:  *    notice, this list of conditions and the following disclaimer in the
                     14:  *    documentation and/or other materials provided with the distribution.
                     15:  * 3. All advertising materials mentioning features or use of this software
                     16:  *    must display the following acknowledgement:
                     17:  *     This product includes software developed by the University of
                     18:  *     California, Berkeley and its contributors.
                     19:  * 4. Neither the name of the University nor the names of its contributors
                     20:  *    may be used to endorse or promote products derived from this software
                     21:  *    without specific prior written permission.
                     22:  *
                     23:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     24:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     25:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     26:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     27:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     28:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     29:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     30:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     31:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     32:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     33:  * SUCH DAMAGE.
                     34:  */
                     35:
                     36: #include <sys/cdefs.h>
                     37: #ifndef lint
                     38: #if 0
                     39: static char sccsid[] = "@(#)inet.c     8.4 (Berkeley) 4/20/94";
                     40: #else
1.27    ! sturm      41: /*__RCSID("$OpenBSD: inet6.c,v 1.26 2003/03/13 09:09:33 deraadt Exp $");*/
1.5       itojun     42: /*__RCSID("KAME Id: inet6.c,v 1.10 2000/02/09 10:49:31 itojun Exp");*/
1.1       itojun     43: #endif
                     44: #endif /* not lint */
                     45:
                     46: #include <sys/param.h>
                     47: #include <sys/socket.h>
                     48: #include <sys/socketvar.h>
                     49: #include <sys/ioctl.h>
                     50: #include <sys/mbuf.h>
                     51: #include <sys/protosw.h>
                     52:
                     53: #include <net/route.h>
                     54: #include <net/if.h>
                     55: #include <netinet/in.h>
                     56: #include <netinet/ip6.h>
                     57: #include <netinet/icmp6.h>
                     58: #include <netinet/in_systm.h>
                     59: #ifndef TCP6
                     60: #include <netinet/ip.h>
                     61: #include <netinet/ip_var.h>
                     62: #endif
1.5       itojun     63: #include <netinet6/ip6_var.h>
1.1       itojun     64: #include <netinet6/in6_var.h>
                     65: #include <netinet6/pim6_var.h>
1.21      itojun     66: #include <netinet6/raw_ip6.h>
1.1       itojun     67:
                     68: #include <arpa/inet.h>
                     69: #if 0
                     70: #include "gethostbyname2.h"
                     71: #endif
                     72: #include <netdb.h>
                     73:
                     74: #include <stdio.h>
                     75: #include <string.h>
                     76: #include <unistd.h>
                     77: #include "netstat.h"
                     78:
                     79: #ifdef INET6
                     80:
                     81: struct socket sockb;
                     82:
1.18      millert    83: char   *inet6name(struct in6_addr *);
                     84: void   inet6print(struct in6_addr *, int, char *);
1.1       itojun     85:
                     86: static char *ip6nh[] = {
                     87:        "hop by hop",
                     88:        "ICMP",
                     89:        "IGMP",
                     90:        "#3",
                     91:        "IP",
                     92:        "#5",
                     93:        "TCP",
                     94:        "#7",
                     95:        "#8",
                     96:        "#9",
                     97:        "#10",
                     98:        "#11",
                     99:        "#12",
                    100:        "#13",
                    101:        "#14",
                    102:        "#15",
                    103:        "#16",
                    104:        "UDP",
                    105:        "#18",
1.17      mickey    106:        "#19",
1.1       itojun    107:        "#20",
                    108:        "#21",
                    109:        "IDP",
                    110:        "#23",
                    111:        "#24",
                    112:        "#25",
                    113:        "#26",
                    114:        "#27",
                    115:        "#28",
1.17      mickey    116:        "TP",
1.1       itojun    117:        "#30",
                    118:        "#31",
                    119:        "#32",
                    120:        "#33",
                    121:        "#34",
                    122:        "#35",
                    123:        "#36",
                    124:        "#37",
                    125:        "#38",
1.17      mickey    126:        "#39",
1.1       itojun    127:        "#40",
                    128:        "IP6",
                    129:        "#42",
                    130:        "routing",
                    131:        "fragment",
                    132:        "#45",
                    133:        "#46",
                    134:        "#47",
                    135:        "#48",
1.17      mickey    136:        "#49",
1.1       itojun    137:        "ESP",
                    138:        "AH",
                    139:        "#52",
                    140:        "#53",
                    141:        "#54",
                    142:        "#55",
                    143:        "#56",
                    144:        "#57",
                    145:        "ICMP6",
1.17      mickey    146:        "no next header",
1.1       itojun    147:        "destination option",
                    148:        "#61",
                    149:        "#62",
                    150:        "#63",
                    151:        "#64",
                    152:        "#65",
                    153:        "#66",
                    154:        "#67",
                    155:        "#68",
1.17      mickey    156:        "#69",
1.1       itojun    157:        "#70",
                    158:        "#71",
                    159:        "#72",
                    160:        "#73",
                    161:        "#74",
                    162:        "#75",
                    163:        "#76",
                    164:        "#77",
                    165:        "#78",
1.17      mickey    166:        "#79",
1.1       itojun    167:        "ISOIP",
                    168:        "#81",
                    169:        "#82",
                    170:        "#83",
                    171:        "#84",
                    172:        "#85",
                    173:        "#86",
                    174:        "#87",
                    175:        "#88",
1.17      mickey    176:        "OSPF",
1.1       itojun    177:        "#80",
                    178:        "#91",
                    179:        "#92",
                    180:        "#93",
                    181:        "#94",
                    182:        "#95",
                    183:        "#96",
                    184:        "Ethernet",
                    185:        "#98",
1.17      mickey    186:        "#99",
1.1       itojun    187:        "#100",
                    188:        "#101",
                    189:        "#102",
                    190:        "PIM",
                    191:        "#104",
                    192:        "#105",
                    193:        "#106",
                    194:        "#107",
                    195:        "#108",
1.17      mickey    196:        "#109",
1.1       itojun    197:        "#110",
                    198:        "#111",
                    199:        "#112",
                    200:        "#113",
                    201:        "#114",
                    202:        "#115",
                    203:        "#116",
                    204:        "#117",
                    205:        "#118",
1.17      mickey    206:        "#119",
1.1       itojun    207:        "#120",
                    208:        "#121",
                    209:        "#122",
                    210:        "#123",
                    211:        "#124",
                    212:        "#125",
                    213:        "#126",
                    214:        "#127",
                    215:        "#128",
1.17      mickey    216:        "#129",
1.1       itojun    217:        "#130",
                    218:        "#131",
                    219:        "#132",
                    220:        "#133",
                    221:        "#134",
                    222:        "#135",
                    223:        "#136",
                    224:        "#137",
                    225:        "#138",
1.17      mickey    226:        "#139",
1.1       itojun    227:        "#140",
                    228:        "#141",
                    229:        "#142",
                    230:        "#143",
                    231:        "#144",
                    232:        "#145",
                    233:        "#146",
                    234:        "#147",
                    235:        "#148",
1.17      mickey    236:        "#149",
1.1       itojun    237:        "#150",
                    238:        "#151",
                    239:        "#152",
                    240:        "#153",
                    241:        "#154",
                    242:        "#155",
                    243:        "#156",
                    244:        "#157",
                    245:        "#158",
1.17      mickey    246:        "#159",
1.1       itojun    247:        "#160",
                    248:        "#161",
                    249:        "#162",
                    250:        "#163",
                    251:        "#164",
                    252:        "#165",
                    253:        "#166",
                    254:        "#167",
                    255:        "#168",
1.17      mickey    256:        "#169",
1.1       itojun    257:        "#170",
                    258:        "#171",
                    259:        "#172",
                    260:        "#173",
                    261:        "#174",
                    262:        "#175",
                    263:        "#176",
                    264:        "#177",
                    265:        "#178",
1.17      mickey    266:        "#179",
1.1       itojun    267:        "#180",
                    268:        "#181",
                    269:        "#182",
                    270:        "#183",
                    271:        "#184",
                    272:        "#185",
                    273:        "#186",
                    274:        "#187",
                    275:        "#188",
1.17      mickey    276:        "#189",
1.1       itojun    277:        "#180",
                    278:        "#191",
                    279:        "#192",
                    280:        "#193",
                    281:        "#194",
                    282:        "#195",
                    283:        "#196",
                    284:        "#197",
                    285:        "#198",
1.17      mickey    286:        "#199",
1.1       itojun    287:        "#200",
                    288:        "#201",
                    289:        "#202",
                    290:        "#203",
                    291:        "#204",
                    292:        "#205",
                    293:        "#206",
                    294:        "#207",
                    295:        "#208",
1.17      mickey    296:        "#209",
1.1       itojun    297:        "#210",
                    298:        "#211",
                    299:        "#212",
                    300:        "#213",
                    301:        "#214",
                    302:        "#215",
                    303:        "#216",
                    304:        "#217",
                    305:        "#218",
1.17      mickey    306:        "#219",
1.1       itojun    307:        "#220",
                    308:        "#221",
                    309:        "#222",
                    310:        "#223",
                    311:        "#224",
                    312:        "#225",
                    313:        "#226",
                    314:        "#227",
                    315:        "#228",
1.17      mickey    316:        "#229",
1.1       itojun    317:        "#230",
                    318:        "#231",
                    319:        "#232",
                    320:        "#233",
                    321:        "#234",
                    322:        "#235",
                    323:        "#236",
                    324:        "#237",
                    325:        "#238",
1.17      mickey    326:        "#239",
1.1       itojun    327:        "#240",
                    328:        "#241",
                    329:        "#242",
                    330:        "#243",
                    331:        "#244",
                    332:        "#245",
                    333:        "#246",
                    334:        "#247",
                    335:        "#248",
1.17      mickey    336:        "#249",
1.1       itojun    337:        "#250",
                    338:        "#251",
                    339:        "#252",
                    340:        "#253",
                    341:        "#254",
                    342:        "#255",
                    343: };
                    344:
                    345: /*
                    346:  * Dump IP6 statistics structure.
                    347:  */
                    348: void
1.25      deraadt   349: ip6_stats(u_long off, char *name)
1.1       itojun    350: {
                    351:        struct ip6stat ip6stat;
                    352:        int first, i;
1.14      itojun    353:        struct protoent *ep;
                    354:        const char *n;
1.1       itojun    355:
                    356:        if (off == 0)
                    357:                return;
                    358:
                    359:        kread(off, (char *)&ip6stat, sizeof (ip6stat));
                    360:        printf("%s:\n", name);
                    361:
                    362: #define        p(f, m) if (ip6stat.f || sflag <= 1) \
1.20      deraadt   363:        printf(m, (unsigned long long)ip6stat.f, plural(ip6stat.f))
1.1       itojun    364: #define        p1(f, m) if (ip6stat.f || sflag <= 1) \
1.20      deraadt   365:        printf(m, (unsigned long long)ip6stat.f)
1.1       itojun    366:
1.14      itojun    367:        p(ip6s_total, "\t%llu total packet%s received\n");
                    368:        p1(ip6s_toosmall, "\t%llu with size smaller than minimum\n");
                    369:        p1(ip6s_tooshort, "\t%llu with data size < data length\n");
                    370:        p1(ip6s_badoptions, "\t%llu with bad options\n");
                    371:        p1(ip6s_badvers, "\t%llu with incorrect version number\n");
                    372:        p(ip6s_fragments, "\t%llu fragment%s received\n");
                    373:        p(ip6s_fragdropped,
1.23      jsyn      374:            "\t%llu fragment%s dropped (duplicates or out of space)\n");
1.14      itojun    375:        p(ip6s_fragtimeout, "\t%llu fragment%s dropped after timeout\n");
                    376:        p(ip6s_fragoverflow, "\t%llu fragment%s that exceeded limit\n");
                    377:        p(ip6s_reassembled, "\t%llu packet%s reassembled ok\n");
                    378:        p(ip6s_delivered, "\t%llu packet%s for this host\n");
                    379:        p(ip6s_forward, "\t%llu packet%s forwarded\n");
                    380:        p(ip6s_cantforward, "\t%llu packet%s not forwardable\n");
                    381:        p(ip6s_redirectsent, "\t%llu redirect%s sent\n");
                    382:        p(ip6s_localout, "\t%llu packet%s sent from this host\n");
                    383:        p(ip6s_rawout, "\t%llu packet%s sent with fabricated ip header\n");
                    384:        p(ip6s_odropped,
                    385:            "\t%llu output packet%s dropped due to no bufs, etc.\n");
                    386:        p(ip6s_noroute, "\t%llu output packet%s discarded due to no route\n");
                    387:        p(ip6s_fragmented, "\t%llu output datagram%s fragmented\n");
                    388:        p(ip6s_ofragments, "\t%llu fragment%s created\n");
                    389:        p(ip6s_cantfrag, "\t%llu datagram%s that can't be fragmented\n");
                    390:        p(ip6s_badscope, "\t%llu packet%s that violated scope rules\n");
                    391:        p(ip6s_notmember, "\t%llu multicast packet%s which we don't join\n");
1.1       itojun    392:        for (first = 1, i = 0; i < 256; i++)
                    393:                if (ip6stat.ip6s_nxthist[i] != 0) {
                    394:                        if (first) {
1.3       itojun    395:                                printf("\tInput packet histogram:\n");
1.1       itojun    396:                                first = 0;
                    397:                        }
1.14      itojun    398:                        n = NULL;
                    399:                        if (ip6nh[i])
                    400:                                n = ip6nh[i];
                    401:                        else if ((ep = getprotobynumber(i)) != NULL)
                    402:                                n = ep->p_name;
                    403:                        if (n)
                    404:                                printf("\t\t%s: %llu\n", n,
                    405:                                    (unsigned long long)ip6stat.ip6s_nxthist[i]);
                    406:                        else
                    407:                                printf("\t\t#%d: %llu\n", i,
                    408:                                    (unsigned long long)ip6stat.ip6s_nxthist[i]);
1.1       itojun    409:                }
1.10      itojun    410:        printf("\tMbuf statistics:\n");
1.14      itojun    411:        p(ip6s_m1, "\t\t%llu one mbuf%s\n");
1.1       itojun    412:        for (first = 1, i = 0; i < 32; i++) {
                    413:                char ifbuf[IFNAMSIZ];
1.17      mickey    414:                if (ip6stat.ip6s_m2m[i] != 0) {
1.1       itojun    415:                        if (first) {
                    416:                                printf("\t\ttwo or more mbuf:\n");
                    417:                                first = 0;
                    418:                        }
1.14      itojun    419:                        printf("\t\t\t%s = %llu\n",
1.20      deraadt   420:                            if_indextoname(i, ifbuf),
                    421:                            (unsigned long long)ip6stat.ip6s_m2m[i]);
1.1       itojun    422:                }
                    423:        }
1.14      itojun    424:        p(ip6s_mext1, "\t\t%llu one ext mbuf%s\n");
                    425:        p(ip6s_mext2m, "\t\t%llu two or more ext mbuf%s\n");
                    426:        p(ip6s_exthdrtoolong,
                    427:            "\t%llu packet%s whose headers are not continuous\n");
                    428:        p(ip6s_nogif, "\t%llu tunneling packet%s that can't find gif\n");
                    429:        p(ip6s_toomanyhdr,
                    430:            "\t%llu packet%s discarded due to too many headers\n");
1.5       itojun    431:
                    432:        /* for debugging source address selection */
                    433: #define PRINT_SCOPESTAT(s,i) do {\
                    434:                switch(i) { /* XXX hardcoding in each case */\
                    435:                case 1:\
1.14      itojun    436:                        p(s, "\t\t%llu node-local%s\n");\
1.5       itojun    437:                        break;\
                    438:                case 2:\
1.14      itojun    439:                        p(s, "\t\t%llu link-local%s\n");\
1.5       itojun    440:                        break;\
                    441:                case 5:\
1.14      itojun    442:                        p(s, "\t\t%llu site-local%s\n");\
1.5       itojun    443:                        break;\
                    444:                case 14:\
1.14      itojun    445:                        p(s, "\t\t%llu global%s\n");\
1.5       itojun    446:                        break;\
                    447:                default:\
1.14      itojun    448:                        printf("\t\t%llu addresses scope=%x\n",\
1.20      deraadt   449:                            (unsigned long long)ip6stat.s, i);\
1.5       itojun    450:                }\
                    451:        } while(0);
                    452:
                    453:        p(ip6s_sources_none,
1.20      deraadt   454:            "\t%llu failure%s of source address selection\n");
1.5       itojun    455:        for (first = 1, i = 0; i < 16; i++) {
                    456:                if (ip6stat.ip6s_sources_sameif[i]) {
                    457:                        if (first) {
                    458:                                printf("\tsource addresses on an outgoing I/F\n");
                    459:                                first = 0;
                    460:                        }
                    461:                        PRINT_SCOPESTAT(ip6s_sources_sameif[i], i);
                    462:                }
                    463:        }
                    464:        for (first = 1, i = 0; i < 16; i++) {
                    465:                if (ip6stat.ip6s_sources_otherif[i]) {
                    466:                        if (first) {
                    467:                                printf("\tsource addresses on a non-outgoing I/F\n");
                    468:                                first = 0;
                    469:                        }
                    470:                        PRINT_SCOPESTAT(ip6s_sources_otherif[i], i);
                    471:                }
                    472:        }
                    473:        for (first = 1, i = 0; i < 16; i++) {
                    474:                if (ip6stat.ip6s_sources_samescope[i]) {
                    475:                        if (first) {
                    476:                                printf("\tsource addresses of same scope\n");
                    477:                                first = 0;
                    478:                        }
                    479:                        PRINT_SCOPESTAT(ip6s_sources_samescope[i], i);
                    480:                }
                    481:        }
                    482:        for (first = 1, i = 0; i < 16; i++) {
                    483:                if (ip6stat.ip6s_sources_otherscope[i]) {
                    484:                        if (first) {
                    485:                                printf("\tsource addresses of a different scope\n");
                    486:                                first = 0;
                    487:                        }
                    488:                        PRINT_SCOPESTAT(ip6s_sources_otherscope[i], i);
                    489:                }
                    490:        }
                    491:        for (first = 1, i = 0; i < 16; i++) {
                    492:                if (ip6stat.ip6s_sources_deprecated[i]) {
                    493:                        if (first) {
                    494:                                printf("\tdeprecated source addresses\n");
                    495:                                first = 0;
                    496:                        }
                    497:                        PRINT_SCOPESTAT(ip6s_sources_deprecated[i], i);
                    498:                }
                    499:        }
1.8       itojun    500:
                    501:        p1(ip6s_forward_cachehit, "\t%llu forward cache hit\n");
                    502:        p1(ip6s_forward_cachemiss, "\t%llu forward cache miss\n");
1.1       itojun    503: #undef p
                    504: #undef p1
                    505: }
                    506:
                    507: /*
                    508:  * Dump IPv6 per-interface statistics based on RFC 2465.
                    509:  */
                    510: void
1.25      deraadt   511: ip6_ifstats(char *ifname)
1.1       itojun    512: {
                    513:        struct in6_ifreq ifr;
                    514:        int s;
1.20      deraadt   515:
1.1       itojun    516: #define        p(f, m) if (ifr.ifr_ifru.ifru_stat.f || sflag <= 1) \
1.20      deraadt   517:        printf(m, (unsigned long long)ifr.ifr_ifru.ifru_stat.f, \
                    518:            plural(ifr.ifr_ifru.ifru_stat.f))
1.1       itojun    519: #define        p_5(f, m) if (ifr.ifr_ifru.ifru_stat.f || sflag <= 1) \
1.20      deraadt   520:        printf(m, (unsigned long long)ip6stat.f)
1.1       itojun    521:
                    522:        if ((s = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
                    523:                perror("Warning: socket(AF_INET6)");
                    524:                return;
                    525:        }
                    526:
1.20      deraadt   527:        strlcpy(ifr.ifr_name, ifname, sizeof ifr.ifr_name);
1.1       itojun    528:        printf("ip6 on %s:\n", ifr.ifr_name);
                    529:
                    530:        if (ioctl(s, SIOCGIFSTAT_IN6, (char *)&ifr) < 0) {
                    531:                perror("Warning: ioctl(SIOCGIFSTAT_IN6)");
                    532:                goto end;
                    533:        }
                    534:
1.14      itojun    535:        p(ifs6_in_receive, "\t%llu total input datagram%s\n");
                    536:        p(ifs6_in_hdrerr, "\t%llu datagram%s with invalid header received\n");
                    537:        p(ifs6_in_toobig, "\t%llu datagram%s exceeded MTU received\n");
                    538:        p(ifs6_in_noroute, "\t%llu datagram%s with no route received\n");
                    539:        p(ifs6_in_addrerr, "\t%llu datagram%s with invalid dst received\n");
                    540:        p(ifs6_in_truncated, "\t%llu truncated datagram%s received\n");
                    541:        p(ifs6_in_protounknown, "\t%llu datagram%s with unknown proto received\n");
                    542:        p(ifs6_in_discard, "\t%llu input datagram%s discarded\n");
1.1       itojun    543:        p(ifs6_in_deliver,
1.20      deraadt   544:            "\t%llu datagram%s delivered to an upper layer protocol\n");
1.14      itojun    545:        p(ifs6_out_forward, "\t%llu datagram%s forwarded to this interface\n");
1.1       itojun    546:        p(ifs6_out_request,
1.20      deraadt   547:            "\t%llu datagram%s sent from an upper layer protocol\n");
1.14      itojun    548:        p(ifs6_out_discard, "\t%llu total discarded output datagram%s\n");
                    549:        p(ifs6_out_fragok, "\t%llu output datagram%s fragmented\n");
                    550:        p(ifs6_out_fragfail, "\t%llu output datagram%s failed on fragment\n");
                    551:        p(ifs6_out_fragcreat, "\t%llu output datagram%s succeeded on fragment\n");
                    552:        p(ifs6_reass_reqd, "\t%llu incoming datagram%s fragmented\n");
                    553:        p(ifs6_reass_ok, "\t%llu datagram%s reassembled\n");
                    554:        p(ifs6_reass_fail, "\t%llu datagram%s failed on reassembling\n");
                    555:        p(ifs6_in_mcast, "\t%llu multicast datagram%s received\n");
                    556:        p(ifs6_out_mcast, "\t%llu multicast datagram%s sent\n");
1.1       itojun    557:
                    558:   end:
                    559:        close(s);
                    560:
                    561: #undef p
                    562: #undef p_5
                    563: }
                    564:
                    565: static char *icmp6names[] = {
                    566:        "#0",
                    567:        "unreach",
                    568:        "packet too big",
                    569:        "time exceed",
                    570:        "parameter problem",
                    571:        "#5",
                    572:        "#6",
                    573:        "#7",
                    574:        "#8",
                    575:        "#9",
                    576:        "#10",
                    577:        "#11",
                    578:        "#12",
                    579:        "#13",
                    580:        "#14",
                    581:        "#15",
                    582:        "#16",
                    583:        "#17",
                    584:        "#18",
1.17      mickey    585:        "#19",
1.1       itojun    586:        "#20",
                    587:        "#21",
                    588:        "#22",
                    589:        "#23",
                    590:        "#24",
                    591:        "#25",
                    592:        "#26",
                    593:        "#27",
                    594:        "#28",
1.17      mickey    595:        "#29",
1.1       itojun    596:        "#30",
                    597:        "#31",
                    598:        "#32",
                    599:        "#33",
                    600:        "#34",
                    601:        "#35",
                    602:        "#36",
                    603:        "#37",
                    604:        "#38",
1.17      mickey    605:        "#39",
1.1       itojun    606:        "#40",
                    607:        "#41",
                    608:        "#42",
                    609:        "#43",
                    610:        "#44",
                    611:        "#45",
                    612:        "#46",
                    613:        "#47",
                    614:        "#48",
1.17      mickey    615:        "#49",
1.1       itojun    616:        "#50",
                    617:        "#51",
                    618:        "#52",
                    619:        "#53",
                    620:        "#54",
                    621:        "#55",
                    622:        "#56",
                    623:        "#57",
                    624:        "#58",
1.17      mickey    625:        "#59",
1.1       itojun    626:        "#60",
                    627:        "#61",
                    628:        "#62",
                    629:        "#63",
                    630:        "#64",
                    631:        "#65",
                    632:        "#66",
                    633:        "#67",
                    634:        "#68",
1.17      mickey    635:        "#69",
1.1       itojun    636:        "#70",
                    637:        "#71",
                    638:        "#72",
                    639:        "#73",
                    640:        "#74",
                    641:        "#75",
                    642:        "#76",
                    643:        "#77",
                    644:        "#78",
1.17      mickey    645:        "#79",
1.1       itojun    646:        "#80",
                    647:        "#81",
                    648:        "#82",
                    649:        "#83",
                    650:        "#84",
                    651:        "#85",
                    652:        "#86",
                    653:        "#87",
                    654:        "#88",
1.17      mickey    655:        "#89",
1.1       itojun    656:        "#80",
                    657:        "#91",
                    658:        "#92",
                    659:        "#93",
                    660:        "#94",
                    661:        "#95",
                    662:        "#96",
                    663:        "#97",
                    664:        "#98",
1.17      mickey    665:        "#99",
1.1       itojun    666:        "#100",
                    667:        "#101",
                    668:        "#102",
                    669:        "#103",
                    670:        "#104",
                    671:        "#105",
                    672:        "#106",
                    673:        "#107",
                    674:        "#108",
1.17      mickey    675:        "#109",
1.1       itojun    676:        "#110",
                    677:        "#111",
                    678:        "#112",
                    679:        "#113",
                    680:        "#114",
                    681:        "#115",
                    682:        "#116",
                    683:        "#117",
                    684:        "#118",
1.17      mickey    685:        "#119",
1.1       itojun    686:        "#120",
                    687:        "#121",
                    688:        "#122",
                    689:        "#123",
                    690:        "#124",
                    691:        "#125",
                    692:        "#126",
                    693:        "#127",
                    694:        "echo",
1.17      mickey    695:        "echo reply",
1.1       itojun    696:        "multicast listener query",
                    697:        "multicast listener report",
                    698:        "multicast listener done",
                    699:        "router solicitation",
1.15      itojun    700:        "router advertisement",
1.1       itojun    701:        "neighbor solicitation",
1.15      itojun    702:        "neighbor advertisement",
1.1       itojun    703:        "redirect",
                    704:        "router renumbering",
                    705:        "node information request",
                    706:        "node information reply",
                    707:        "#141",
                    708:        "#142",
                    709:        "#143",
                    710:        "#144",
                    711:        "#145",
                    712:        "#146",
                    713:        "#147",
                    714:        "#148",
1.17      mickey    715:        "#149",
1.1       itojun    716:        "#150",
                    717:        "#151",
                    718:        "#152",
                    719:        "#153",
                    720:        "#154",
                    721:        "#155",
                    722:        "#156",
                    723:        "#157",
                    724:        "#158",
1.17      mickey    725:        "#159",
1.1       itojun    726:        "#160",
                    727:        "#161",
                    728:        "#162",
                    729:        "#163",
                    730:        "#164",
                    731:        "#165",
                    732:        "#166",
                    733:        "#167",
                    734:        "#168",
1.17      mickey    735:        "#169",
1.1       itojun    736:        "#170",
                    737:        "#171",
                    738:        "#172",
                    739:        "#173",
                    740:        "#174",
                    741:        "#175",
                    742:        "#176",
                    743:        "#177",
                    744:        "#178",
1.17      mickey    745:        "#179",
1.1       itojun    746:        "#180",
                    747:        "#181",
                    748:        "#182",
                    749:        "#183",
                    750:        "#184",
                    751:        "#185",
                    752:        "#186",
                    753:        "#187",
                    754:        "#188",
1.17      mickey    755:        "#189",
1.1       itojun    756:        "#180",
                    757:        "#191",
                    758:        "#192",
                    759:        "#193",
                    760:        "#194",
                    761:        "#195",
                    762:        "#196",
                    763:        "#197",
                    764:        "#198",
1.17      mickey    765:        "#199",
1.1       itojun    766:        "#200",
                    767:        "#201",
                    768:        "#202",
                    769:        "#203",
                    770:        "#204",
                    771:        "#205",
                    772:        "#206",
                    773:        "#207",
                    774:        "#208",
1.17      mickey    775:        "#209",
1.1       itojun    776:        "#210",
                    777:        "#211",
                    778:        "#212",
                    779:        "#213",
                    780:        "#214",
                    781:        "#215",
                    782:        "#216",
                    783:        "#217",
                    784:        "#218",
1.17      mickey    785:        "#219",
1.1       itojun    786:        "#220",
                    787:        "#221",
                    788:        "#222",
                    789:        "#223",
                    790:        "#224",
                    791:        "#225",
                    792:        "#226",
                    793:        "#227",
                    794:        "#228",
1.17      mickey    795:        "#229",
1.1       itojun    796:        "#230",
                    797:        "#231",
                    798:        "#232",
                    799:        "#233",
                    800:        "#234",
                    801:        "#235",
                    802:        "#236",
                    803:        "#237",
                    804:        "#238",
1.17      mickey    805:        "#239",
1.1       itojun    806:        "#240",
                    807:        "#241",
                    808:        "#242",
                    809:        "#243",
                    810:        "#244",
                    811:        "#245",
                    812:        "#246",
                    813:        "#247",
                    814:        "#248",
1.17      mickey    815:        "#249",
1.1       itojun    816:        "#250",
                    817:        "#251",
                    818:        "#252",
                    819:        "#253",
                    820:        "#254",
                    821:        "#255",
                    822: };
                    823:
                    824: /*
                    825:  * Dump ICMPv6 statistics.
                    826:  */
                    827: void
1.25      deraadt   828: icmp6_stats(u_long off, char *name)
1.1       itojun    829: {
                    830:        struct icmp6stat icmp6stat;
1.16      mpech     831:        int i, first;
1.1       itojun    832:
                    833:        if (off == 0)
                    834:                return;
                    835:        kread(off, (char *)&icmp6stat, sizeof (icmp6stat));
                    836:        printf("%s:\n", name);
                    837:
                    838: #define        p(f, m) if (icmp6stat.f || sflag <= 1) \
1.20      deraadt   839:        printf(m, (unsigned long long)icmp6stat.f, plural(icmp6stat.f))
1.8       itojun    840: #define p_5(f, m) if (icmp6stat.f || sflag <= 1) \
1.20      deraadt   841:        printf(m, (unsigned long long)icmp6stat.f)
1.1       itojun    842:
1.14      itojun    843:        p(icp6s_error, "\t%llu call%s to icmp6_error\n");
1.1       itojun    844:        p(icp6s_canterror,
1.14      itojun    845:            "\t%llu error%s not generated because old message was icmp6 or so\n");
1.7       itojun    846:        p(icp6s_toofreq,
1.14      itojun    847:            "\t%llu error%s not generated because of rate limitation\n");
1.1       itojun    848:        for (first = 1, i = 0; i < 256; i++)
                    849:                if (icmp6stat.icp6s_outhist[i] != 0) {
                    850:                        if (first) {
1.3       itojun    851:                                printf("\tOutput packet histogram:\n");
1.1       itojun    852:                                first = 0;
                    853:                        }
1.14      itojun    854:                        printf("\t\t%s: %llu\n", icmp6names[i],
1.25      deraadt   855:                            (unsigned long long)icmp6stat.icp6s_outhist[i]);
1.1       itojun    856:                }
1.14      itojun    857:        p(icp6s_badcode, "\t%llu message%s with bad code fields\n");
                    858:        p(icp6s_tooshort, "\t%llu message%s < minimum length\n");
                    859:        p(icp6s_checksum, "\t%llu bad checksum%s\n");
                    860:        p(icp6s_badlen, "\t%llu message%s with bad length\n");
1.1       itojun    861:        for (first = 1, i = 0; i < ICMP6_MAXTYPE; i++)
                    862:                if (icmp6stat.icp6s_inhist[i] != 0) {
                    863:                        if (first) {
1.3       itojun    864:                                printf("\tInput packet histogram:\n");
1.1       itojun    865:                                first = 0;
                    866:                        }
1.14      itojun    867:                        printf("\t\t%s: %llu\n", icmp6names[i],
1.25      deraadt   868:                            (unsigned long long)icmp6stat.icp6s_inhist[i]);
1.1       itojun    869:                }
1.8       itojun    870:        printf("\tHistogram of error messages to be generated:\n");
1.14      itojun    871:        p_5(icp6s_odst_unreach_noroute, "\t\t%llu no route\n");
                    872:        p_5(icp6s_odst_unreach_admin, "\t\t%llu administratively prohibited\n");
                    873:        p_5(icp6s_odst_unreach_beyondscope, "\t\t%llu beyond scope\n");
                    874:        p_5(icp6s_odst_unreach_addr, "\t\t%llu address unreachable\n");
                    875:        p_5(icp6s_odst_unreach_noport, "\t\t%llu port unreachable\n");
                    876:        p_5(icp6s_opacket_too_big, "\t\t%llu packet too big\n");
                    877:        p_5(icp6s_otime_exceed_transit, "\t\t%llu time exceed transit\n");
                    878:        p_5(icp6s_otime_exceed_reassembly, "\t\t%llu time exceed reassembly\n");
                    879:        p_5(icp6s_oparamprob_header, "\t\t%llu erroneous header field\n");
                    880:        p_5(icp6s_oparamprob_nextheader, "\t\t%llu unrecognized next header\n");
                    881:        p_5(icp6s_oparamprob_option, "\t\t%llu unrecognized option\n");
                    882:        p_5(icp6s_oredirect, "\t\t%llu redirect\n");
                    883:        p_5(icp6s_ounknown, "\t\t%llu unknown\n");
                    884:
                    885:        p(icp6s_reflect, "\t%llu message response%s generated\n");
                    886:        p(icp6s_nd_toomanyopt, "\t%llu message%s with too many ND options\n");
                    887:        p(icp6s_nd_badopt, "\t%llu message%s with bad ND options\n");
                    888:        p(icp6s_badns, "\t%llu bad neighbor solicitation message%s\n");
                    889:        p(icp6s_badna, "\t%llu bad neighbor advertisement message%s\n");
                    890:        p(icp6s_badrs, "\t%llu bad router solicitation message%s\n");
                    891:        p(icp6s_badra, "\t%llu bad router advertisement message%s\n");
                    892:        p(icp6s_badredirect, "\t%llu bad redirect message%s\n");
1.12      itojun    893:        p(icp6s_pmtuchg, "\t%llu path MTU change%s\n");
1.14      itojun    894: #undef p
1.8       itojun    895: #undef p_5
1.1       itojun    896: }
                    897:
                    898: /*
                    899:  * Dump ICMPv6 per-interface statistics based on RFC 2466.
                    900:  */
                    901: void
1.25      deraadt   902: icmp6_ifstats(char *ifname)
1.1       itojun    903: {
                    904:        struct in6_ifreq ifr;
                    905:        int s;
1.20      deraadt   906:
1.1       itojun    907: #define        p(f, m) if (ifr.ifr_ifru.ifru_icmp6stat.f || sflag <= 1) \
1.20      deraadt   908:        printf(m, (unsigned long long)ifr.ifr_ifru.ifru_icmp6stat.f, \
                    909:            plural(ifr.ifr_ifru.ifru_icmp6stat.f))
1.1       itojun    910:
                    911:        if ((s = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
                    912:                perror("Warning: socket(AF_INET6)");
                    913:                return;
                    914:        }
                    915:
1.20      deraadt   916:        strlcpy(ifr.ifr_name, ifname, sizeof ifr.ifr_name);
1.1       itojun    917:        printf("icmp6 on %s:\n", ifr.ifr_name);
                    918:
                    919:        if (ioctl(s, SIOCGIFSTAT_ICMP6, (char *)&ifr) < 0) {
                    920:                perror("Warning: ioctl(SIOCGIFSTAT_ICMP6)");
                    921:                goto end;
                    922:        }
                    923:
1.14      itojun    924:        p(ifs6_in_msg, "\t%llu total input message%s\n");
1.17      mickey    925:        p(ifs6_in_error, "\t%llu total input error message%s\n");
1.14      itojun    926:        p(ifs6_in_dstunreach, "\t%llu input destination unreachable error%s\n");
                    927:        p(ifs6_in_adminprohib, "\t%llu input administratively prohibited error%s\n");
                    928:        p(ifs6_in_timeexceed, "\t%llu input time exceeded error%s\n");
                    929:        p(ifs6_in_paramprob, "\t%llu input parameter problem error%s\n");
                    930:        p(ifs6_in_pkttoobig, "\t%llu input packet too big error%s\n");
                    931:        p(ifs6_in_echo, "\t%llu input echo request%s\n");
                    932:        p(ifs6_in_echoreply, "\t%llu input echo reply%s\n");
                    933:        p(ifs6_in_routersolicit, "\t%llu input router solicitation%s\n");
                    934:        p(ifs6_in_routeradvert, "\t%llu input router advertisement%s\n");
                    935:        p(ifs6_in_neighborsolicit, "\t%llu input neighbor solicitation%s\n");
                    936:        p(ifs6_in_neighboradvert, "\t%llu input neighbor advertisement%s\n");
                    937:        p(ifs6_in_redirect, "\t%llu input redirect%s\n");
                    938:        p(ifs6_in_mldquery, "\t%llu input MLD query%s\n");
                    939:        p(ifs6_in_mldreport, "\t%llu input MLD report%s\n");
                    940:        p(ifs6_in_mlddone, "\t%llu input MLD done%s\n");
                    941:
                    942:        p(ifs6_out_msg, "\t%llu total output message%s\n");
                    943:        p(ifs6_out_error, "\t%llu total output error message%s\n");
                    944:        p(ifs6_out_dstunreach, "\t%llu output destination unreachable error%s\n");
                    945:        p(ifs6_out_adminprohib, "\t%llu output administratively prohibited error%s\n");
                    946:        p(ifs6_out_timeexceed, "\t%llu output time exceeded error%s\n");
                    947:        p(ifs6_out_paramprob, "\t%llu output parameter problem error%s\n");
                    948:        p(ifs6_out_pkttoobig, "\t%llu output packet too big error%s\n");
                    949:        p(ifs6_out_echo, "\t%llu output echo request%s\n");
                    950:        p(ifs6_out_echoreply, "\t%llu output echo reply%s\n");
                    951:        p(ifs6_out_routersolicit, "\t%llu output router solicitation%s\n");
                    952:        p(ifs6_out_routeradvert, "\t%llu output router advertisement%s\n");
                    953:        p(ifs6_out_neighborsolicit, "\t%llu output neighbor solicitation%s\n");
                    954:        p(ifs6_out_neighboradvert, "\t%llu output neighbor advertisement%s\n");
                    955:        p(ifs6_out_redirect, "\t%llu output redirect%s\n");
                    956:        p(ifs6_out_mldquery, "\t%llu output MLD query%s\n");
                    957:        p(ifs6_out_mldreport, "\t%llu output MLD report%s\n");
                    958:        p(ifs6_out_mlddone, "\t%llu output MLD done%s\n");
1.1       itojun    959:
                    960:   end:
                    961:        close(s);
                    962: #undef p
                    963: }
                    964:
                    965: /*
                    966:  * Dump PIM statistics structure.
                    967:  */
                    968: void
1.25      deraadt   969: pim6_stats(u_long off, char *name)
1.1       itojun    970: {
                    971:        struct pim6stat pim6stat;
                    972:
                    973:        if (off == 0)
                    974:                return;
                    975:        kread(off, (char *)&pim6stat, sizeof(pim6stat));
                    976:        printf("%s:\n", name);
                    977:
                    978: #define        p(f, m) if (pim6stat.f || sflag <= 1) \
1.20      deraadt   979:        printf(m, (unsigned long long)pim6stat.f, plural(pim6stat.f))
                    980:
1.14      itojun    981:        p(pim6s_rcv_total, "\t%llu message%s received\n");
                    982:        p(pim6s_rcv_tooshort, "\t%llu message%s received with too few bytes\n");
                    983:        p(pim6s_rcv_badsum, "\t%llu message%s received with bad checksum\n");
                    984:        p(pim6s_rcv_badversion, "\t%llu message%s received with bad version\n");
                    985:        p(pim6s_rcv_registers, "\t%llu register%s received\n");
                    986:        p(pim6s_rcv_badregisters, "\t%llu bad register%s received\n");
                    987:        p(pim6s_snd_registers, "\t%llu register%s sent\n");
1.21      itojun    988: #undef p
                    989: }
                    990:
                    991: /*
                    992:  * Dump raw ip6 statistics structure.
                    993:  */
                    994: void
1.25      deraadt   995: rip6_stats(u_long off, char *name)
1.21      itojun    996: {
                    997:        struct rip6stat rip6stat;
                    998:        u_quad_t delivered;
                    999:
                   1000:        if (off == 0)
                   1001:                return;
                   1002:        kread(off, (char *)&rip6stat, sizeof(rip6stat));
                   1003:        printf("%s:\n", name);
                   1004:
                   1005: #define        p(f, m) if (rip6stat.f || sflag <= 1) \
                   1006:     printf(m, (unsigned long long)rip6stat.f, plural(rip6stat.f))
                   1007:        p(rip6s_ipackets, "\t%llu message%s received\n");
1.24      itojun   1008:        p(rip6s_isum, "\t%llu checksum calculation%s on inbound\n");
1.21      itojun   1009:        p(rip6s_badsum, "\t%llu message%s with bad checksum\n");
                   1010:        p(rip6s_nosock, "\t%llu message%s dropped due to no socket\n");
                   1011:        p(rip6s_nosockmcast,
                   1012:            "\t%llu multicast message%s dropped due to no socket\n");
                   1013:        p(rip6s_fullsock,
                   1014:            "\t%llu message%s dropped due to full socket buffers\n");
                   1015:        delivered = rip6stat.rip6s_ipackets -
                   1016:                    rip6stat.rip6s_badsum -
                   1017:                    rip6stat.rip6s_nosock -
                   1018:                    rip6stat.rip6s_nosockmcast -
                   1019:                    rip6stat.rip6s_fullsock;
                   1020:        if (delivered || sflag <= 1)
                   1021:                printf("\t%llu delivered\n", (unsigned long long)delivered);
                   1022:        p(rip6s_opackets, "\t%llu datagram%s output\n");
1.1       itojun   1023: #undef p
                   1024: }
                   1025:
                   1026: /*
                   1027:  * Pretty print an Internet address (net address + port).
                   1028:  * If the nflag was specified, use numbers instead of names.
                   1029:  */
                   1030:
                   1031: void
1.25      deraadt  1032: inet6print(struct in6_addr *in6, int port, char *proto)
1.1       itojun   1033: {
1.25      deraadt  1034:
                   1035: #define GETSERVBYPORT6(port, proto, ret) do { \
                   1036:        if (strcmp((proto), "tcp6") == 0) \
                   1037:                (ret) = getservbyport((int)(port), "tcp"); \
                   1038:        else if (strcmp((proto), "udp6") == 0) \
                   1039:                (ret) = getservbyport((int)(port), "udp"); \
                   1040:        else \
                   1041:                (ret) = getservbyport((int)(port), (proto)); \
                   1042:        } while (0)
                   1043:
1.1       itojun   1044:        struct servent *sp = 0;
                   1045:        char line[80], *cp;
                   1046:        int width;
1.26      deraadt  1047:        int len = sizeof line;
1.1       itojun   1048:
1.14      itojun   1049:        width = Aflag ? 12 : 16;
                   1050:        if (vflag && width < strlen(inet6name(in6)))
                   1051:                width = strlen(inet6name(in6));
1.26      deraadt  1052:        snprintf(line, len, "%.*s.", width, inet6name(in6));
                   1053:        len -= strlen(line);
                   1054:        if (len <= 0)
                   1055:                goto bail;
                   1056:
1.27    ! sturm    1057:        cp = strchr(line, '\0');
1.1       itojun   1058:        if (!nflag && port)
                   1059:                GETSERVBYPORT6(port, proto, sp);
                   1060:        if (sp || port == 0)
1.26      deraadt  1061:                snprintf(cp, len, "%.8s", sp ? sp->s_name : "*");
1.1       itojun   1062:        else
1.26      deraadt  1063:                snprintf(cp, len, "%d", ntohs((u_short)port));
1.1       itojun   1064:        width = Aflag ? 18 : 22;
1.14      itojun   1065:        if (vflag && width < strlen(line))
                   1066:                width = strlen(line);
1.26      deraadt  1067: bail:
1.1       itojun   1068:        printf(" %-*.*s", width, width, line);
                   1069: }
                   1070:
                   1071: /*
                   1072:  * Construct an Internet address representation.
                   1073:  * If the nflag has been supplied, give
                   1074:  * numeric value, otherwise try for symbolic name.
                   1075:  */
                   1076:
                   1077: char *
1.25      deraadt  1078: inet6name(struct in6_addr *in6p)
1.1       itojun   1079: {
1.16      mpech    1080:        char *cp;
1.14      itojun   1081:        static char line[NI_MAXHOST];
1.1       itojun   1082:        struct hostent *hp;
1.19      mpech    1083:        static char domain[MAXHOSTNAMELEN];
1.1       itojun   1084:        static int first = 1;
1.14      itojun   1085:        char hbuf[NI_MAXHOST];
1.1       itojun   1086:        struct sockaddr_in6 sin6;
                   1087: #ifdef NI_WITHSCOPEID
                   1088:        const int niflag = NI_NUMERICHOST | NI_WITHSCOPEID;
                   1089: #else
                   1090:        const int niflag = NI_NUMERICHOST;
                   1091: #endif
                   1092:
                   1093:        if (first && !nflag) {
                   1094:                first = 0;
1.19      mpech    1095:                if (gethostname(domain, sizeof(domain)) == 0 &&
1.22      deraadt  1096:                    (cp = strchr(domain, '.')))
1.20      deraadt  1097:                        (void) strlcpy(domain, cp + 1, sizeof domain);
1.1       itojun   1098:                else
1.20      deraadt  1099:                        domain[0] = '\0';
1.1       itojun   1100:        }
                   1101:        cp = 0;
                   1102:        if (!nflag && !IN6_IS_ADDR_UNSPECIFIED(in6p)) {
                   1103:                hp = gethostbyaddr((char *)in6p, sizeof(*in6p), AF_INET6);
                   1104:                if (hp) {
1.22      deraadt  1105:                        if ((cp = strchr(hp->h_name, '.')) &&
1.1       itojun   1106:                            !strcmp(cp + 1, domain))
                   1107:                                *cp = 0;
                   1108:                        cp = hp->h_name;
                   1109:                }
                   1110:        }
                   1111:        if (IN6_IS_ADDR_UNSPECIFIED(in6p))
1.14      itojun   1112:                strlcpy(line, "*", sizeof(line));
1.1       itojun   1113:        else if (cp)
1.14      itojun   1114:                strlcpy(line, cp, sizeof(line));
1.1       itojun   1115:        else {
                   1116:                memset(&sin6, 0, sizeof(sin6));
                   1117:                sin6.sin6_len = sizeof(sin6);
                   1118:                sin6.sin6_family = AF_INET6;
                   1119:                sin6.sin6_addr = *in6p;
                   1120: #ifdef KAME_SCOPEID
                   1121:                if (IN6_IS_ADDR_LINKLOCAL(in6p)) {
                   1122:                        sin6.sin6_scope_id =
1.20      deraadt  1123:                            ntohs(*(u_int16_t *)&in6p->s6_addr[2]);
1.1       itojun   1124:                        sin6.sin6_addr.s6_addr[2] = 0;
                   1125:                        sin6.sin6_addr.s6_addr[3] = 0;
                   1126:                }
                   1127: #endif
                   1128:                if (getnameinfo((struct sockaddr *)&sin6, sin6.sin6_len,
1.20      deraadt  1129:                    hbuf, sizeof(hbuf), NULL, 0, niflag) != 0)
                   1130:                        strlcpy(hbuf, "?", sizeof hbuf);
1.14      itojun   1131:                strlcpy(line, hbuf, sizeof(line));
1.1       itojun   1132:        }
                   1133:        return (line);
                   1134: }
                   1135:
                   1136: #ifdef TCP6
                   1137: /*
                   1138:  * Dump the contents of a TCP6 PCB.
                   1139:  */
                   1140: void
1.25      deraadt  1141: tcp6_dump(u_long pcbaddr)
1.1       itojun   1142: {
                   1143:        struct tcp6cb tcp6cb;
                   1144:        int i;
                   1145:
                   1146:        kread(pcbaddr, (char *)&tcp6cb, sizeof(tcp6cb));
                   1147:
                   1148:        printf("TCP Protocol Control Block at 0x%08lx:\n\n", pcbaddr);
                   1149:
                   1150:        printf("Timers:\n");
                   1151:        for (i = 0; i < TCP6T_NTIMERS; i++)
                   1152:                printf("\t%s: %u", tcp6timers[i], tcp6cb.t_timer[i]);
                   1153:        printf("\n\n");
                   1154:
                   1155:        if (tcp6cb.t_state < 0 || tcp6cb.t_state >= TCP6_NSTATES)
                   1156:                printf("State: %d", tcp6cb.t_state);
                   1157:        else
                   1158:                printf("State: %s", tcp6states[tcp6cb.t_state]);
                   1159:        printf(", flags 0x%x, in6pcb 0x%lx\n\n", tcp6cb.t_flags,
                   1160:            (u_long)tcp6cb.t_in6pcb);
                   1161:
                   1162:        printf("rxtshift %d, rxtcur %d, dupacks %d\n", tcp6cb.t_rxtshift,
                   1163:            tcp6cb.t_rxtcur, tcp6cb.t_dupacks);
                   1164:        printf("peermaxseg %u, maxseg %u, force %d\n\n", tcp6cb.t_peermaxseg,
                   1165:            tcp6cb.t_maxseg, tcp6cb.t_force);
                   1166:
                   1167:        printf("snd_una %u, snd_nxt %u, snd_up %u\n",
                   1168:            tcp6cb.snd_una, tcp6cb.snd_nxt, tcp6cb.snd_up);
                   1169:        printf("snd_wl1 %u, snd_wl2 %u, iss %u, snd_wnd %lu\n\n",
                   1170:            tcp6cb.snd_wl1, tcp6cb.snd_wl2, tcp6cb.iss, tcp6cb.snd_wnd);
                   1171:
                   1172:        printf("rcv_wnd %lu, rcv_nxt %u, rcv_up %u, irs %u\n\n",
                   1173:            tcp6cb.rcv_wnd, tcp6cb.rcv_nxt, tcp6cb.rcv_up, tcp6cb.irs);
                   1174:
                   1175:        printf("rcv_adv %u, snd_max %u, snd_cwnd %lu, snd_ssthresh %lu\n",
                   1176:            tcp6cb.rcv_adv, tcp6cb.snd_max, tcp6cb.snd_cwnd, tcp6cb.snd_ssthresh);
                   1177:
                   1178:        printf("idle %d, rtt %d, rtseq %u, srtt %d, rttvar %d, rttmin %d, "
                   1179:            "max_sndwnd %lu\n\n", tcp6cb.t_idle, tcp6cb.t_rtt, tcp6cb.t_rtseq,
                   1180:            tcp6cb.t_srtt, tcp6cb.t_rttvar, tcp6cb.t_rttmin, tcp6cb.max_sndwnd);
                   1181:
                   1182:        printf("oobflags %d, iobc %d, softerror %d\n\n", tcp6cb.t_oobflags,
                   1183:            tcp6cb.t_iobc, tcp6cb.t_softerror);
                   1184:
                   1185:        printf("snd_scale %d, rcv_scale %d, req_r_scale %d, req_s_scale %d\n",
                   1186:            tcp6cb.snd_scale, tcp6cb.rcv_scale, tcp6cb.request_r_scale,
                   1187:            tcp6cb.requested_s_scale);
                   1188:        printf("ts_recent %u, ts_regent_age %d, last_ack_sent %u\n",
                   1189:            tcp6cb.ts_recent, tcp6cb.ts_recent_age, tcp6cb.last_ack_sent);
                   1190: }
                   1191: #endif
                   1192:
                   1193: #endif /*INET6*/