123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- /*
- * Copyright (c) 1990, 1991, 1992, 1994, 1995, 1996
- * 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: (1) source code distributions
- * retain the above copyright notice and this paragraph in its entirety, (2)
- * distributions including binary code include the above copyright notice and
- * this paragraph in its entirety in the documentation or other materials
- * provided with the distribution, and (3) all advertising materials mentioning
- * features or use of this software display the following acknowledgement:
- * ``This product includes software developed by the University of California,
- * Lawrence Berkeley Laboratory and its contributors.'' 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 ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
- * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
- */
- #ifdef HAVE_CONFIG_H
- #include <config.h>
- #endif
- #include <pcap-types.h>
- #include <stdio.h>
- #include <string.h>
- #include "pcap-int.h"
- #ifdef HAVE_OS_PROTO_H
- #include "os-proto.h"
- #endif
- char *
- bpf_image(const struct bpf_insn *p, int n)
- {
- const char *op;
- static char image[256];
- char operand_buf[64];
- const char *operand;
- switch (p->code) {
- default:
- op = "unimp";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "0x%x", p->code);
- operand = operand_buf;
- break;
- case BPF_RET|BPF_K:
- op = "ret";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#%d", p->k);
- operand = operand_buf;
- break;
- case BPF_RET|BPF_A:
- op = "ret";
- operand = "";
- break;
- case BPF_LD|BPF_W|BPF_ABS:
- op = "ld";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "[%d]", p->k);
- operand = operand_buf;
- break;
- case BPF_LD|BPF_H|BPF_ABS:
- op = "ldh";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "[%d]", p->k);
- operand = operand_buf;
- break;
- case BPF_LD|BPF_B|BPF_ABS:
- op = "ldb";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "[%d]", p->k);
- operand = operand_buf;
- break;
- case BPF_LD|BPF_W|BPF_LEN:
- op = "ld";
- operand = "#pktlen";
- break;
- case BPF_LD|BPF_W|BPF_IND:
- op = "ld";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "[x + %d]", p->k);
- operand = operand_buf;
- break;
- case BPF_LD|BPF_H|BPF_IND:
- op = "ldh";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "[x + %d]", p->k);
- operand = operand_buf;
- break;
- case BPF_LD|BPF_B|BPF_IND:
- op = "ldb";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "[x + %d]", p->k);
- operand = operand_buf;
- break;
- case BPF_LD|BPF_IMM:
- op = "ld";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#0x%x", p->k);
- operand = operand_buf;
- break;
- case BPF_LDX|BPF_IMM:
- op = "ldx";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#0x%x", p->k);
- operand = operand_buf;
- break;
- case BPF_LDX|BPF_MSH|BPF_B:
- op = "ldxb";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "4*([%d]&0xf)", p->k);
- operand = operand_buf;
- break;
- case BPF_LD|BPF_MEM:
- op = "ld";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "M[%d]", p->k);
- operand = operand_buf;
- break;
- case BPF_LDX|BPF_MEM:
- op = "ldx";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "M[%d]", p->k);
- operand = operand_buf;
- break;
- case BPF_ST:
- op = "st";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "M[%d]", p->k);
- operand = operand_buf;
- break;
- case BPF_STX:
- op = "stx";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "M[%d]", p->k);
- operand = operand_buf;
- break;
- case BPF_JMP|BPF_JA:
- op = "ja";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "%d", n + 1 + p->k);
- operand = operand_buf;
- break;
- case BPF_JMP|BPF_JGT|BPF_K:
- op = "jgt";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#0x%x", p->k);
- operand = operand_buf;
- break;
- case BPF_JMP|BPF_JGE|BPF_K:
- op = "jge";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#0x%x", p->k);
- operand = operand_buf;
- break;
- case BPF_JMP|BPF_JEQ|BPF_K:
- op = "jeq";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#0x%x", p->k);
- operand = operand_buf;
- break;
- case BPF_JMP|BPF_JSET|BPF_K:
- op = "jset";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#0x%x", p->k);
- operand = operand_buf;
- break;
- case BPF_JMP|BPF_JGT|BPF_X:
- op = "jgt";
- operand = "x";
- break;
- case BPF_JMP|BPF_JGE|BPF_X:
- op = "jge";
- operand = "x";
- break;
- case BPF_JMP|BPF_JEQ|BPF_X:
- op = "jeq";
- operand = "x";
- break;
- case BPF_JMP|BPF_JSET|BPF_X:
- op = "jset";
- operand = "x";
- break;
- case BPF_ALU|BPF_ADD|BPF_X:
- op = "add";
- operand = "x";
- break;
- case BPF_ALU|BPF_SUB|BPF_X:
- op = "sub";
- operand = "x";
- break;
- case BPF_ALU|BPF_MUL|BPF_X:
- op = "mul";
- operand = "x";
- break;
- case BPF_ALU|BPF_DIV|BPF_X:
- op = "div";
- operand = "x";
- break;
- case BPF_ALU|BPF_MOD|BPF_X:
- op = "mod";
- operand = "x";
- break;
- case BPF_ALU|BPF_AND|BPF_X:
- op = "and";
- operand = "x";
- break;
- case BPF_ALU|BPF_OR|BPF_X:
- op = "or";
- operand = "x";
- break;
- case BPF_ALU|BPF_XOR|BPF_X:
- op = "xor";
- operand = "x";
- break;
- case BPF_ALU|BPF_LSH|BPF_X:
- op = "lsh";
- operand = "x";
- break;
- case BPF_ALU|BPF_RSH|BPF_X:
- op = "rsh";
- operand = "x";
- break;
- case BPF_ALU|BPF_ADD|BPF_K:
- op = "add";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#%d", p->k);
- operand = operand_buf;
- break;
- case BPF_ALU|BPF_SUB|BPF_K:
- op = "sub";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#%d", p->k);
- operand = operand_buf;
- break;
- case BPF_ALU|BPF_MUL|BPF_K:
- op = "mul";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#%d", p->k);
- operand = operand_buf;
- break;
- case BPF_ALU|BPF_DIV|BPF_K:
- op = "div";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#%d", p->k);
- operand = operand_buf;
- break;
- case BPF_ALU|BPF_MOD|BPF_K:
- op = "mod";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#%d", p->k);
- operand = operand_buf;
- break;
- case BPF_ALU|BPF_AND|BPF_K:
- op = "and";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#0x%x", p->k);
- operand = operand_buf;
- break;
- case BPF_ALU|BPF_OR|BPF_K:
- op = "or";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#0x%x", p->k);
- operand = operand_buf;
- break;
- case BPF_ALU|BPF_XOR|BPF_K:
- op = "xor";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#0x%x", p->k);
- operand = operand_buf;
- break;
- case BPF_ALU|BPF_LSH|BPF_K:
- op = "lsh";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#%d", p->k);
- operand = operand_buf;
- break;
- case BPF_ALU|BPF_RSH|BPF_K:
- op = "rsh";
- (void)pcap_snprintf(operand_buf, sizeof operand_buf, "#%d", p->k);
- operand = operand_buf;
- break;
- case BPF_ALU|BPF_NEG:
- op = "neg";
- operand = "";
- break;
- case BPF_MISC|BPF_TAX:
- op = "tax";
- operand = "";
- break;
- case BPF_MISC|BPF_TXA:
- op = "txa";
- operand = "";
- break;
- }
- if (BPF_CLASS(p->code) == BPF_JMP && BPF_OP(p->code) != BPF_JA) {
- (void)pcap_snprintf(image, sizeof image,
- "(%03d) %-8s %-16s jt %d\tjf %d",
- n, op, operand, n + 1 + p->jt, n + 1 + p->jf);
- } else {
- (void)pcap_snprintf(image, sizeof image,
- "(%03d) %-8s %s",
- n, op, operand);
- }
- return image;
- }
|