2004-03-18 03:40:41 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2016-08-14 21:42:19 +08:00
|
|
|
/* \summary: Apple IP-over-IEEE 1394 printer */
|
|
|
|
|
2018-01-22 04:27:08 +08:00
|
|
|
#include <config.h>
|
2004-03-18 03:40:41 +08:00
|
|
|
|
2018-01-20 22:59:49 +08:00
|
|
|
#include "netdissect-stdinc.h"
|
2004-03-18 03:40:41 +08:00
|
|
|
|
2020-10-17 16:49:35 +08:00
|
|
|
#define ND_LONGJMP_FROM_TCHECK
|
2015-09-06 05:35:58 +08:00
|
|
|
#include "netdissect.h"
|
2010-02-21 16:27:00 +08:00
|
|
|
#include "extract.h"
|
2004-03-18 03:40:41 +08:00
|
|
|
#include "addrtoname.h"
|
|
|
|
#include "ethertype.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Structure of a header for Apple's IP-over-IEEE 1384 BPF header.
|
|
|
|
*/
|
|
|
|
struct firewire_header {
|
2023-07-14 15:02:06 +08:00
|
|
|
nd_eui64 firewire_dhost;
|
|
|
|
nd_eui64 firewire_shost;
|
2017-12-30 10:29:37 +08:00
|
|
|
nd_uint16_t firewire_type;
|
2004-03-18 03:40:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Length of that header; note that some compilers may pad
|
|
|
|
* "struct firewire_header" to a multiple of 4 bytes, for example, so
|
|
|
|
* "sizeof (struct firewire_header)" may not give the right answer.
|
2023-07-14 15:02:06 +08:00
|
|
|
* (That could be true even though we're using nd_ types, none of
|
|
|
|
* which should require anything more than byte alignment.)
|
2004-03-18 03:40:41 +08:00
|
|
|
*/
|
|
|
|
#define FIREWIRE_HDRLEN 18
|
|
|
|
|
2018-01-26 22:15:58 +08:00
|
|
|
static void
|
2017-12-14 02:17:47 +08:00
|
|
|
ap1394_hdr_print(netdissect_options *ndo, const u_char *bp, u_int length)
|
2004-03-18 06:11:34 +08:00
|
|
|
{
|
2017-12-14 02:17:47 +08:00
|
|
|
const struct firewire_header *fp;
|
2014-04-23 15:20:40 +08:00
|
|
|
uint16_t firewire_type;
|
2010-02-21 16:27:00 +08:00
|
|
|
|
2004-03-18 06:11:34 +08:00
|
|
|
fp = (const struct firewire_header *)bp;
|
|
|
|
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("%s > %s",
|
2023-07-14 15:02:06 +08:00
|
|
|
eui64_string(ndo, fp->firewire_shost),
|
|
|
|
eui64_string(ndo, fp->firewire_dhost));
|
2004-03-18 06:11:34 +08:00
|
|
|
|
2018-06-16 23:23:21 +08:00
|
|
|
firewire_type = GET_BE_U_2(fp->firewire_type);
|
2014-03-07 21:52:45 +08:00
|
|
|
if (!ndo->ndo_qflag) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(", ethertype %s (0x%04x)",
|
2010-02-21 16:27:00 +08:00
|
|
|
tok2str(ethertype_values,"Unknown", firewire_type),
|
2018-01-07 18:47:30 +08:00
|
|
|
firewire_type);
|
2004-03-18 06:11:34 +08:00
|
|
|
} else {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(", %s", tok2str(ethertype_values,"Unknown Ethertype (0x%04x)", firewire_type));
|
2004-03-18 06:11:34 +08:00
|
|
|
}
|
|
|
|
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(", length %u: ", length);
|
2004-03-18 06:11:34 +08:00
|
|
|
}
|
|
|
|
|
2004-03-18 03:40:41 +08:00
|
|
|
/*
|
|
|
|
* This is the top level routine of the printer. 'p' points
|
|
|
|
* to the ether header of the packet, 'h->ts' is the timestamp,
|
2004-03-18 07:24:35 +08:00
|
|
|
* 'h->len' is the length of the packet off the wire, and 'h->caplen'
|
2004-03-18 03:40:41 +08:00
|
|
|
* is the number of bytes actually captured.
|
|
|
|
*/
|
2020-02-03 03:42:52 +08:00
|
|
|
void
|
2014-03-07 21:52:45 +08:00
|
|
|
ap1394_if_print(netdissect_options *ndo, const struct pcap_pkthdr *h, const u_char *p)
|
2004-03-18 03:40:41 +08:00
|
|
|
{
|
|
|
|
u_int length = h->len;
|
|
|
|
u_int caplen = h->caplen;
|
2015-04-27 08:24:42 +08:00
|
|
|
const struct firewire_header *fp;
|
2004-03-18 03:40:41 +08:00
|
|
|
u_short ether_type;
|
2015-07-04 06:54:14 +08:00
|
|
|
struct lladdr_info src, dst;
|
2004-03-18 03:40:41 +08:00
|
|
|
|
2020-02-05 17:54:42 +08:00
|
|
|
ndo->ndo_protocol = "ap1394";
|
2020-10-17 16:49:35 +08:00
|
|
|
ND_TCHECK_LEN(p, FIREWIRE_HDRLEN);
|
2020-07-14 23:32:55 +08:00
|
|
|
ndo->ndo_ll_hdr_len += FIREWIRE_HDRLEN;
|
2004-03-18 03:40:41 +08:00
|
|
|
|
2014-03-07 21:52:45 +08:00
|
|
|
if (ndo->ndo_eflag)
|
|
|
|
ap1394_hdr_print(ndo, p, length);
|
2004-03-18 06:11:34 +08:00
|
|
|
|
2004-03-18 03:40:41 +08:00
|
|
|
length -= FIREWIRE_HDRLEN;
|
|
|
|
caplen -= FIREWIRE_HDRLEN;
|
2015-04-27 08:24:42 +08:00
|
|
|
fp = (const struct firewire_header *)p;
|
2004-03-18 03:40:41 +08:00
|
|
|
p += FIREWIRE_HDRLEN;
|
|
|
|
|
2018-06-16 23:23:21 +08:00
|
|
|
ether_type = GET_BE_U_2(fp->firewire_type);
|
2015-07-04 06:54:14 +08:00
|
|
|
src.addr = fp->firewire_shost;
|
2023-07-14 15:02:06 +08:00
|
|
|
src.addr_string = eui64_string;
|
2015-07-04 06:54:14 +08:00
|
|
|
dst.addr = fp->firewire_dhost;
|
2023-07-14 15:02:06 +08:00
|
|
|
dst.addr_string = eui64_string;
|
2015-07-04 06:54:14 +08:00
|
|
|
if (ethertype_print(ndo, ether_type, p, length, caplen, &src, &dst) == 0) {
|
2004-03-18 03:40:41 +08:00
|
|
|
/* ether_type not known, print raw packet */
|
2014-03-07 21:52:45 +08:00
|
|
|
if (!ndo->ndo_eflag)
|
2015-04-27 08:24:42 +08:00
|
|
|
ap1394_hdr_print(ndo, (const u_char *)fp, length + FIREWIRE_HDRLEN);
|
2004-03-18 06:11:34 +08:00
|
|
|
|
2014-03-07 21:52:45 +08:00
|
|
|
if (!ndo->ndo_suppress_default_print)
|
2014-03-26 22:52:40 +08:00
|
|
|
ND_DEFAULTPRINT(p, caplen);
|
2014-01-02 10:27:54 +08:00
|
|
|
}
|
2004-03-18 03:40:41 +08:00
|
|
|
}
|