flowtop: Remove unused parameters from draw_help() and draw_footer()
[netsniff-ng.git] / proto_ethernet.c
blob9bb00423fc780f52a7afecb178216d6c44458e82
1 /*
2 * netsniff-ng - the packet sniffing beast
3 * Copyright 2009, 2010 Daniel Borkmann.
4 * Copyright 2014 Tobias Klauser
5 * Subject to the GPL, version 2.
6 */
8 #include <stdio.h>
9 #include <stdint.h>
10 #include <netinet/in.h>
11 #include <linux/if_ether.h>
13 #include "proto.h"
14 #include "dissector_eth.h"
15 #include "lookup.h"
16 #include "pkt_buff.h"
18 static inline bool is_multicast_ether_addr(const uint8_t *mac)
20 return mac[0] & 0x01;
23 static inline bool is_broadcast_ether_addr(const uint8_t *mac)
25 return (mac[0] & mac[1] & mac[2] & mac[3] & mac[4] & mac[5]) == 0xff;
28 static const char *ether_lookup_addr(const uint8_t *mac)
30 if (is_multicast_ether_addr(mac)) {
31 if (is_broadcast_ether_addr(mac))
32 return "Broadcast";
33 else
34 return "Multicast";
37 /* found no matching address, so look up the vendor from OUI */
38 return lookup_vendor_str((mac[0] << 16) | (mac[1] << 8) | mac[2]);
41 static void ethernet(struct pkt_buff *pkt)
43 const char *type;
44 uint8_t *src_mac, *dst_mac;
45 struct ethhdr *eth = (struct ethhdr *) pkt_pull(pkt, sizeof(*eth));
47 if (eth == NULL)
48 return;
50 src_mac = eth->h_source;
51 dst_mac = eth->h_dest;
53 tprintf(" [ Eth ");
54 tprintf("MAC (%.2x:%.2x:%.2x:%.2x:%.2x:%.2x => ",
55 src_mac[0], src_mac[1], src_mac[2],
56 src_mac[3], src_mac[4], src_mac[5]);
57 tprintf("%.2x:%.2x:%.2x:%.2x:%.2x:%.2x), ",
58 dst_mac[0], dst_mac[1], dst_mac[2],
59 dst_mac[3], dst_mac[4], dst_mac[5]);
60 tprintf("Proto (0x%.4x", ntohs(eth->h_proto));
62 type = lookup_ether_type(ntohs(eth->h_proto));
63 if (type)
64 tprintf(", %s%s%s", colorize_start(bold), type, colorize_end());
66 tprintf(") ]\n");
67 tprintf(" [ Vendor ");
68 tprintf("(%s => %s)", ether_lookup_addr(src_mac), ether_lookup_addr(dst_mac));
69 tprintf(" ]\n");
71 pkt_set_dissector(pkt, &eth_lay2, ntohs(eth->h_proto));
74 static void ethernet_less(struct pkt_buff *pkt)
76 uint8_t *src_mac, *dst_mac;
77 struct ethhdr *eth = (struct ethhdr *) pkt_pull(pkt, sizeof(*eth));
79 if (eth == NULL)
80 return;
82 src_mac = eth->h_source;
83 dst_mac = eth->h_dest;
84 tprintf(" %s => %s ", ether_lookup_addr(src_mac),
85 ether_lookup_addr(dst_mac));
86 tprintf("%s%s%s", colorize_start(bold),
87 lookup_ether_type(ntohs(eth->h_proto)), colorize_end());
89 pkt_set_dissector(pkt, &eth_lay2, ntohs(eth->h_proto));
92 struct protocol ethernet_ops = {
93 .key = 0,
94 .print_full = ethernet,
95 .print_less = ethernet_less,