6 * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
8 * Enhancements by Mark C. Brown <mbrown@hp.com>
9 * Copyright (C) 2003, 2005 Hewlett-Packard Development Company, L.P.
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
32 #include "file_wrappers.h"
36 /* HP nettl file header */
38 /* Magic number size */
42 static const guint8 nettl_magic_hpux9
[MAGIC_SIZE
] = {
43 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xD0, 0x00
45 /* HP-UX 10.x and 11.x */
46 static const guint8 nettl_magic_hpux10
[MAGIC_SIZE
] = {
47 0x54, 0x52, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80
50 #define FILE_HDR_SIZE 128
51 #define NETTL_FILENAME_SIZE 56
53 struct nettl_file_hdr
{
54 guint8 magic
[MAGIC_SIZE
];
55 gchar file_name
[NETTL_FILENAME_SIZE
];
62 guint16 unknown
; /* just padding to 128 bytes? */
65 /* HP nettl record header */
66 /* see /usr/include/sys/netdiag1.h for hints */
84 * This is what we treat as the minimum size of a record header.
85 * It is *not* necessarily the same as sizeof(struct nettlrec_hdr),
86 * because it doesn't include any padding added to the structure.
88 #define NETTL_REC_HDR_LEN 64
90 /* HP nettl record header for the SX25L2 subsystem - The FCS is not included
92 struct nettlrec_sx25l2_hdr
{
105 The following shows what the header and subheader looks like for NS_LS_DRIVER
106 The capture was taken on HPUX11 and for a 100baseT interface.
108 000080 00 44 00 0b 00 00 00 02 00 00 00 00 20 00 00 00
109 000090 00 00 00 00 00 00 04 06 00 00 00 00 00 00 00 00
110 0000a0 00 00 00 74 00 00 00 74 3c e3 76 19 00 06 34 63
111 0000b0 ff ff ff ff 00 00 00 00 00 00 00 00 ff ff ff ff
112 0000c0 00 00 00 00 00 00 01 02 00 5c 00 5c ff ff ff ff
113 0000d0 3c e3 76 19 00 06 34 5a 00 0b 00 14 <here starts the MAC header>
115 Each entry starts with 0x0044000b
117 The values 0x005c at position 0x0000c8 and 0x0000ca matches the number of
118 bytes in the packet up to the next entry, which starts with 0x00440b again.
119 These are the captured and real and captured length of the packet.
121 The values 0x00000074 at positions 0x0000a0 and 0x0000a4 seems to indicate
122 the same number as positions 0x0000c8 and 0x0000ca but added with 24.
123 Perhaps we have here two layers of headers.
124 The first layer is fixed and consists of all the bytes from 0x000084 up to and
125 including 0x0000c3 which is a generic header for all packets captured from any
126 device. This header might be of fixed size 64 bytes (although the first two
127 bytes appear to be the length of that header, in big-endian format) and there
128 might be something in it which indicates the type of the next header which is
129 link type specific. Following this header there is another header for the
130 100baseT interface which in this case is 24 bytes long spanning positions
131 0x0000c4 to 0x0000db.
133 In another capture, claimed to be taken on an HP-UX 8 box, but with a
134 file header suggesting it was taken on HP-UX 10.20, the header for
135 NS_LS_DRIVER looks like:
137 000080 00 40 00 0b ff ff ff ff 00 00 00 00 00 00 00 00
138 000090 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
139 0000a0 00 00 00 51 00 00 00 51 42 02 5e bf 00 0e ab 7c
140 0000b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
141 0000c0 00 02 01 00 00 3b 00 3b ff ff ff ff 42 02 5e bf
142 0000d0 00 0e 8e 44 00 0b <here starts the MAC header>
144 When someone reports that the loading of the captures breaks, we can
145 compare this header above with what he/she got to learn how to
146 distinguish between different types of link specific headers.
149 For now, the subheader for 100baseT seems to be
157 struct nettlrec_ns_ls_drv_eth_hdr
{
168 * This is the size of an NS_LS_DRV_ETH header; it is *not* necessarily
169 * the same as sizeof(struct nettlrec_ns_ls_drv_eth_hdr), because it
170 * doesn't include any padding added to the structure.
172 #define NS_LS_DRV_ETH_HDR_LEN 22
174 /* header is followed by data and once again the total length (2 bytes) ! */
180 static gboolean
nettl_read(wtap
*wth
, int *err
, gchar
**err_info
,
181 gint64
*data_offset
);
182 static gboolean
nettl_seek_read(wtap
*wth
, gint64 seek_off
,
183 struct wtap_pkthdr
*phdr
, Buffer
*buf
,
184 int length
, int *err
, gchar
**err_info
);
185 static gboolean
nettl_read_rec(wtap
*wth
, FILE_T fh
, struct wtap_pkthdr
*phdr
,
186 Buffer
*buf
, int *err
, gchar
**err_info
);
187 static gboolean
nettl_dump(wtap_dumper
*wdh
, const struct wtap_pkthdr
*phdr
,
188 const guint8
*pd
, int *err
);
190 int nettl_open(wtap
*wth
, int *err
, gchar
**err_info
)
192 struct nettl_file_hdr file_hdr
;
198 memset(&file_hdr
, 0, sizeof(file_hdr
));
200 /* Read in the string that should be at the start of a HP file */
201 errno
= WTAP_ERR_CANT_READ
;
202 bytes_read
= file_read(file_hdr
.magic
, MAGIC_SIZE
, wth
->fh
);
203 if (bytes_read
!= MAGIC_SIZE
) {
204 *err
= file_error(wth
->fh
, err_info
);
205 if (*err
!= 0 && *err
!= WTAP_ERR_SHORT_READ
)
210 if (memcmp(file_hdr
.magic
, nettl_magic_hpux9
, MAGIC_SIZE
) &&
211 memcmp(file_hdr
.magic
, nettl_magic_hpux10
, MAGIC_SIZE
)) {
215 /* Read the rest of the file header */
216 bytes_read
= file_read(file_hdr
.file_name
, FILE_HDR_SIZE
- MAGIC_SIZE
,
218 if (bytes_read
!= FILE_HDR_SIZE
- MAGIC_SIZE
) {
219 *err
= file_error(wth
->fh
, err_info
);
221 *err
= WTAP_ERR_SHORT_READ
;
225 /* This is an nettl file */
226 wth
->file_type_subtype
= WTAP_FILE_TYPE_SUBTYPE_NETTL
;
227 nettl
= g_new(nettl_t
,1);
228 wth
->priv
= (void *)nettl
;
229 if (file_hdr
.os_vers
[2] == '1' && file_hdr
.os_vers
[3] == '1')
230 nettl
->is_hpux_11
= TRUE
;
232 nettl
->is_hpux_11
= FALSE
;
233 wth
->subtype_read
= nettl_read
;
234 wth
->subtype_seek_read
= nettl_seek_read
;
235 wth
->snapshot_length
= 0; /* not available */
237 /* read the first header to take a guess at the file encap */
238 bytes_read
= file_read(dummy
, 4, wth
->fh
);
239 if (bytes_read
!= 4) {
243 if (bytes_read
!= 0) {
244 *err
= WTAP_ERR_SHORT_READ
;
250 subsys
= g_ntohs(dummy
[1]);
252 case NETTL_SUBSYS_HPPB_FDDI
:
253 case NETTL_SUBSYS_EISA_FDDI
:
254 case NETTL_SUBSYS_PCI_FDDI
:
255 case NETTL_SUBSYS_HSC_FDDI
:
256 wth
->file_encap
= WTAP_ENCAP_NETTL_FDDI
;
258 case NETTL_SUBSYS_TOKEN
:
259 case NETTL_SUBSYS_PCI_TR
:
260 wth
->file_encap
= WTAP_ENCAP_NETTL_TOKEN_RING
;
262 case NETTL_SUBSYS_NS_LS_IP
:
263 case NETTL_SUBSYS_NS_LS_LOOPBACK
:
264 case NETTL_SUBSYS_NS_LS_TCP
:
265 case NETTL_SUBSYS_NS_LS_UDP
:
266 case NETTL_SUBSYS_NS_LS_IPV6
:
267 wth
->file_encap
= WTAP_ENCAP_NETTL_RAW_IP
;
269 case NETTL_SUBSYS_NS_LS_ICMP
:
270 wth
->file_encap
= WTAP_ENCAP_NETTL_RAW_ICMP
;
272 case NETTL_SUBSYS_NS_LS_ICMPV6
:
273 wth
->file_encap
= WTAP_ENCAP_NETTL_RAW_ICMPV6
;
275 case NETTL_SUBSYS_NS_LS_TELNET
:
276 wth
->file_encap
= WTAP_ENCAP_NETTL_RAW_TELNET
;
279 /* If this assumption is bad, the read will catch it */
280 wth
->file_encap
= WTAP_ENCAP_NETTL_ETHERNET
;
283 if (file_seek(wth
->fh
, FILE_HDR_SIZE
, SEEK_SET
, err
) == -1) {
286 wth
->tsprecision
= WTAP_FILE_TSPREC_USEC
;
291 /* Read the next packet */
292 static gboolean
nettl_read(wtap
*wth
, int *err
, gchar
**err_info
,
295 /* Read record header. */
296 *data_offset
= file_tell(wth
->fh
);
297 if (!nettl_read_rec(wth
, wth
->fh
, &wth
->phdr
, wth
->frame_buffer
,
299 /* Read error or EOF */
304 * If the per-file encapsulation isn't known, set it to this
305 * packet's encapsulation.
307 * If it *is* known, and it isn't this packet's encapsulation,
308 * set it to WTAP_ENCAP_PER_PACKET, as this file doesn't
309 * have a single encapsulation for all packets in the file.
311 if (wth
->file_encap
== WTAP_ENCAP_UNKNOWN
)
312 wth
->file_encap
= wth
->phdr
.pkt_encap
;
314 if (wth
->file_encap
!= wth
->phdr
.pkt_encap
)
315 wth
->file_encap
= WTAP_ENCAP_PER_PACKET
;
322 nettl_seek_read(wtap
*wth
, gint64 seek_off
, struct wtap_pkthdr
*phdr
,
323 Buffer
*buf
, int length _U_
, int *err
, gchar
**err_info
)
325 if (file_seek(wth
->random_fh
, seek_off
, SEEK_SET
, err
) == -1)
328 /* Read record header. */
329 if (!nettl_read_rec(wth
, wth
->random_fh
, phdr
, buf
, err
, err_info
)) {
330 /* Read error or EOF */
332 /* EOF means "short read" in random-access mode */
333 *err
= WTAP_ERR_SHORT_READ
;
341 nettl_read_rec(wtap
*wth
, FILE_T fh
, struct wtap_pkthdr
*phdr
, Buffer
*buf
,
342 int *err
, gchar
**err_info
)
344 union wtap_pseudo_header
*pseudo_header
= &phdr
->pseudo_header
;
345 nettl_t
*nettl
= (nettl_t
*)wth
->priv
;
346 gboolean fddihack
= FALSE
;
348 struct nettlrec_hdr rec_hdr
;
350 struct nettlrec_ns_ls_drv_eth_hdr drv_eth_hdr
;
351 guint32 length
, caplen
;
360 errno
= WTAP_ERR_CANT_READ
;
361 bytes_read
= file_read(&rec_hdr
.hdr_len
, sizeof rec_hdr
.hdr_len
, fh
);
362 if (bytes_read
!= sizeof rec_hdr
.hdr_len
) {
363 *err
= file_error(fh
, err_info
);
364 if (*err
== 0 && bytes_read
!= 0)
365 *err
= WTAP_ERR_SHORT_READ
;
368 hdr_len
= g_ntohs(rec_hdr
.hdr_len
);
369 if (hdr_len
< NETTL_REC_HDR_LEN
) {
370 *err
= WTAP_ERR_BAD_FILE
;
371 *err_info
= g_strdup_printf("nettl: record header length %u too short",
375 bytes_read
= file_read(&rec_hdr
.subsys
, NETTL_REC_HDR_LEN
- 2, fh
);
376 if (bytes_read
!= NETTL_REC_HDR_LEN
- 2) {
377 *err
= file_error(fh
, err_info
);
379 *err
= WTAP_ERR_SHORT_READ
;
382 subsys
= g_ntohs(rec_hdr
.subsys
);
383 hdr_len
-= NETTL_REC_HDR_LEN
;
384 if (file_seek(fh
, hdr_len
, SEEK_CUR
, err
) == -1)
387 if ( (pntohl(&rec_hdr
.kind
) & NETTL_HDR_PDU_MASK
) == 0 ) {
388 /* not actually a data packet (PDU) trace record */
389 phdr
->pkt_encap
= WTAP_ENCAP_NETTL_RAW_IP
;
390 length
= pntohl(&rec_hdr
.length
);
391 caplen
= pntohl(&rec_hdr
.caplen
);
393 } else switch (subsys
) {
394 case NETTL_SUBSYS_LAN100
:
395 case NETTL_SUBSYS_EISA100BT
:
396 case NETTL_SUBSYS_BASE100
:
397 case NETTL_SUBSYS_GSC100BT
:
398 case NETTL_SUBSYS_PCI100BT
:
399 case NETTL_SUBSYS_SPP100BT
:
400 case NETTL_SUBSYS_100VG
:
401 case NETTL_SUBSYS_GELAN
:
402 case NETTL_SUBSYS_BTLAN
:
403 case NETTL_SUBSYS_INTL100
:
404 case NETTL_SUBSYS_IGELAN
:
405 case NETTL_SUBSYS_IETHER
:
406 case NETTL_SUBSYS_IXGBE
:
407 case NETTL_SUBSYS_HSSN
:
408 case NETTL_SUBSYS_IGSSN
:
409 case NETTL_SUBSYS_ICXGBE
:
410 case NETTL_SUBSYS_IEXGBE
:
411 case NETTL_SUBSYS_IOCXGBE
:
412 case NETTL_SUBSYS_IQXGBE
:
413 case NETTL_SUBSYS_HPPB_FDDI
:
414 case NETTL_SUBSYS_EISA_FDDI
:
415 case NETTL_SUBSYS_PCI_FDDI
:
416 case NETTL_SUBSYS_HSC_FDDI
:
417 case NETTL_SUBSYS_TOKEN
:
418 case NETTL_SUBSYS_PCI_TR
:
419 case NETTL_SUBSYS_NS_LS_IP
:
420 case NETTL_SUBSYS_NS_LS_LOOPBACK
:
421 case NETTL_SUBSYS_NS_LS_TCP
:
422 case NETTL_SUBSYS_NS_LS_UDP
:
423 case NETTL_SUBSYS_HP_APAPORT
:
424 case NETTL_SUBSYS_HP_APALACP
:
425 case NETTL_SUBSYS_NS_LS_IPV6
:
426 case NETTL_SUBSYS_NS_LS_ICMPV6
:
427 case NETTL_SUBSYS_NS_LS_ICMP
:
428 case NETTL_SUBSYS_NS_LS_TELNET
:
429 case NETTL_SUBSYS_NS_LS_SCTP
:
430 if( (subsys
== NETTL_SUBSYS_NS_LS_IP
)
431 || (subsys
== NETTL_SUBSYS_NS_LS_LOOPBACK
)
432 || (subsys
== NETTL_SUBSYS_NS_LS_UDP
)
433 || (subsys
== NETTL_SUBSYS_NS_LS_TCP
)
434 || (subsys
== NETTL_SUBSYS_NS_LS_SCTP
)
435 || (subsys
== NETTL_SUBSYS_NS_LS_IPV6
)) {
436 phdr
->pkt_encap
= WTAP_ENCAP_NETTL_RAW_IP
;
437 } else if (subsys
== NETTL_SUBSYS_NS_LS_ICMP
) {
438 phdr
->pkt_encap
= WTAP_ENCAP_NETTL_RAW_ICMP
;
439 } else if (subsys
== NETTL_SUBSYS_NS_LS_ICMPV6
) {
440 phdr
->pkt_encap
= WTAP_ENCAP_NETTL_RAW_ICMPV6
;
441 } else if (subsys
== NETTL_SUBSYS_NS_LS_TELNET
) {
442 phdr
->pkt_encap
= WTAP_ENCAP_NETTL_RAW_TELNET
;
443 } else if( (subsys
== NETTL_SUBSYS_HPPB_FDDI
)
444 || (subsys
== NETTL_SUBSYS_EISA_FDDI
)
445 || (subsys
== NETTL_SUBSYS_PCI_FDDI
)
446 || (subsys
== NETTL_SUBSYS_HSC_FDDI
) ) {
447 phdr
->pkt_encap
= WTAP_ENCAP_NETTL_FDDI
;
448 } else if( (subsys
== NETTL_SUBSYS_PCI_TR
)
449 || (subsys
== NETTL_SUBSYS_TOKEN
) ) {
450 phdr
->pkt_encap
= WTAP_ENCAP_NETTL_TOKEN_RING
;
452 phdr
->pkt_encap
= WTAP_ENCAP_NETTL_ETHERNET
;
455 length
= pntohl(&rec_hdr
.length
);
456 caplen
= pntohl(&rec_hdr
.caplen
);
458 /* HPPB FDDI has different inbound vs outbound trace records */
459 if (subsys
== NETTL_SUBSYS_HPPB_FDDI
) {
460 if (pntohl(&rec_hdr
.kind
) == NETTL_HDR_PDUIN
) {
461 /* inbound is very strange...
462 there are an extra 3 bytes after the DSAP and SSAP
468 /* outbound appears to have variable padding */
469 bytes_read
= file_read(dummyc
, 9, fh
);
470 if (bytes_read
!= 9) {
471 *err
= file_error(fh
, err_info
);
473 *err
= WTAP_ERR_SHORT_READ
;
476 /* padding is usually either a total 11 or 16 bytes??? */
477 padlen
= (int)dummyc
[8];
478 if (file_seek(fh
, padlen
, SEEK_CUR
, err
) == -1)
482 } else if ( (subsys
== NETTL_SUBSYS_PCI_FDDI
)
483 || (subsys
== NETTL_SUBSYS_EISA_FDDI
)
484 || (subsys
== NETTL_SUBSYS_HSC_FDDI
) ) {
485 /* other flavor FDDI cards have an extra 3 bytes of padding */
486 if (file_seek(fh
, 3, SEEK_CUR
, err
) == -1)
489 } else if (subsys
== NETTL_SUBSYS_NS_LS_LOOPBACK
) {
490 /* LOOPBACK has an extra 26 bytes of padding */
491 if (file_seek(fh
, 26, SEEK_CUR
, err
) == -1)
494 } else if (subsys
== NETTL_SUBSYS_NS_LS_SCTP
) {
496 * SCTP 8 byte header that we will ignore...
497 * 32 bit integer defines format
500 * 3 = Binary (PDUs should be Binary format)
501 * 32 bit integer defines type
505 if (file_seek(fh
, 8, SEEK_CUR
, err
) == -1)
513 case NETTL_SUBSYS_NS_LS_DRIVER
:
514 /* XXX we dont know how to identify this as ethernet frames, so
515 we assumes everything is. We will crash and burn for anything else */
516 /* for encapsulated 100baseT we do this */
517 phdr
->pkt_encap
= WTAP_ENCAP_NETTL_ETHERNET
;
518 bytes_read
= file_read(&drv_eth_hdr
, NS_LS_DRV_ETH_HDR_LEN
, fh
);
519 if (bytes_read
!= NS_LS_DRV_ETH_HDR_LEN
) {
520 *err
= file_error(fh
, err_info
);
522 *err
= WTAP_ERR_SHORT_READ
;
526 length
= pntohs(&drv_eth_hdr
.length
);
527 caplen
= pntohs(&drv_eth_hdr
.caplen
);
529 * XXX - is there a length field that would give the length
530 * of this header, so that we don't have to check for
531 * nettl files from HP-UX 11?
533 * And what are the extra two bytes?
535 if (nettl
->is_hpux_11
) {
536 if (file_seek(fh
, 2, SEEK_CUR
, err
) == -1) return FALSE
;
541 case NETTL_SUBSYS_SX25L2
:
542 case NETTL_SUBSYS_SX25L3
:
544 * XXX - is the 24-byte padding actually a header with
545 * packet lengths, time stamps, etc., just as is the case
546 * for NETTL_SUBSYS_NS_LS_DRIVER? It might be
555 * or something such as that - if it has 4 bytes before that
556 * (making it 24 bytes), it'd be like struct
557 * nettlrec_ns_ls_drv_eth_hdr but with 2 more bytes at the end.
559 * And is "from_dce" at xxa[0] in the nettlrec_hdr structure?
561 phdr
->pkt_encap
= WTAP_ENCAP_NETTL_X25
;
562 length
= pntohl(&rec_hdr
.length
);
563 caplen
= pntohl(&rec_hdr
.caplen
);
564 padlen
= 24; /* sizeof (struct nettlrec_sx25l2_hdr) - NETTL_REC_HDR_LEN + 4 */
565 if (file_seek(fh
, padlen
, SEEK_CUR
, err
) == -1)
570 /* We're going to assume it's ethernet if we don't recognize the
571 subsystem -- We'll probably spew junks and core if it isn't... */
572 wth
->file_encap
= WTAP_ENCAP_PER_PACKET
;
573 phdr
->pkt_encap
= WTAP_ENCAP_NETTL_ETHERNET
;
574 length
= pntohl(&rec_hdr
.length
);
575 caplen
= pntohl(&rec_hdr
.caplen
);
580 if (length
< padlen
) {
581 *err
= WTAP_ERR_BAD_FILE
;
582 *err_info
= g_strdup_printf("nettl: packet length %u in record header too short, less than %u",
586 phdr
->presence_flags
= WTAP_HAS_TS
|WTAP_HAS_CAP_LEN
;
587 phdr
->len
= length
- padlen
;
588 if (caplen
< padlen
) {
589 *err
= WTAP_ERR_BAD_FILE
;
590 *err_info
= g_strdup_printf("nettl: captured length %u in record header too short, less than %u",
594 datalen
= caplen
- padlen
;
595 phdr
->caplen
= datalen
;
596 phdr
->ts
.secs
= pntohl(&rec_hdr
.sec
);
597 phdr
->ts
.nsecs
= pntohl(&rec_hdr
.usec
) * 1000;
599 pseudo_header
->nettl
.subsys
= subsys
;
600 pseudo_header
->nettl
.devid
= pntohl(&rec_hdr
.devid
);
601 pseudo_header
->nettl
.kind
= pntohl(&rec_hdr
.kind
);
602 pseudo_header
->nettl
.pid
= pntohl(&rec_hdr
.pid
);
603 pseudo_header
->nettl
.uid
= pntohs(&rec_hdr
.uid
);
605 if (phdr
->caplen
> WTAP_MAX_PACKET_SIZE
) {
607 * Probably a corrupt capture file; don't blow up trying
608 * to allocate space for an immensely-large packet.
610 *err
= WTAP_ERR_BAD_FILE
;
611 *err_info
= g_strdup_printf("nettl: File has %u-byte packet, bigger than maximum of %u",
612 phdr
->caplen
, WTAP_MAX_PACKET_SIZE
);
617 * Read the packet data.
619 buffer_assure_space(buf
, datalen
);
620 pd
= buffer_start_ptr(buf
);
621 errno
= WTAP_ERR_CANT_READ
;
623 /* read in FC, dest, src, DSAP and SSAP */
625 if (bytes_to_read
> datalen
)
626 bytes_to_read
= datalen
;
627 bytes_read
= file_read(pd
, bytes_to_read
, fh
);
628 if (bytes_read
!= bytes_to_read
) {
630 *err
= WTAP_ERR_SHORT_READ
;
633 datalen
-= bytes_read
;
635 /* There's nothing past the FC, dest, src, DSAP and SSAP */
638 if (pd
[13] == 0xAA) {
639 /* it's SNAP, have to eat 3 bytes??? */
641 if (bytes_to_read
> datalen
)
642 bytes_to_read
= datalen
;
643 bytes_read
= file_read(dummy
, bytes_to_read
, fh
);
644 if (bytes_read
!= bytes_to_read
) {
646 *err
= WTAP_ERR_SHORT_READ
;
649 datalen
-= bytes_read
;
651 /* There's nothing past the FC, dest, src, DSAP, SSAP, and 3 bytes to eat */
655 bytes_read
= file_read(pd
+ 15, datalen
, fh
);
657 bytes_read
= file_read(pd
, datalen
, fh
);
659 if (bytes_read
!= datalen
) {
660 *err
= file_error(fh
, err_info
);
662 *err
= WTAP_ERR_SHORT_READ
;
668 /* Returns 0 if we could write the specified encapsulation type,
669 an error indication otherwise. nettl files are WTAP_ENCAP_UNKNOWN
670 when they are first opened, so we allow that for tshark read/write.
673 int nettl_dump_can_write_encap(int encap
)
677 case WTAP_ENCAP_ETHERNET
:
678 case WTAP_ENCAP_FDDI_BITSWAPPED
:
679 case WTAP_ENCAP_TOKEN_RING
:
680 case WTAP_ENCAP_NETTL_ETHERNET
:
681 case WTAP_ENCAP_NETTL_FDDI
:
682 case WTAP_ENCAP_NETTL_TOKEN_RING
:
683 case WTAP_ENCAP_NETTL_RAW_IP
:
684 case WTAP_ENCAP_NETTL_RAW_ICMP
:
685 case WTAP_ENCAP_NETTL_RAW_ICMPV6
:
686 case WTAP_ENCAP_NETTL_RAW_TELNET
:
688 case WTAP_ENCAP_NETTL_X25:
690 case WTAP_ENCAP_PER_PACKET
:
691 case WTAP_ENCAP_UNKNOWN
:
692 case WTAP_ENCAP_NETTL_UNKNOWN
:
695 return WTAP_ERR_UNSUPPORTED_ENCAP
;
700 /* Returns TRUE on success, FALSE on failure;
701 sets "*err" to an error code on failure */
702 gboolean
nettl_dump_open(wtap_dumper
*wdh
, int *err
)
704 struct nettl_file_hdr file_hdr
;
706 /* This is a nettl file */
707 wdh
->subtype_write
= nettl_dump
;
708 wdh
->subtype_close
= NULL
;
710 /* Write the file header. */
711 memset(&file_hdr
,0,sizeof(file_hdr
));
712 memcpy(file_hdr
.magic
,nettl_magic_hpux10
,sizeof(file_hdr
.magic
));
713 g_strlcpy(file_hdr
.file_name
,"/tmp/wireshark.TRC000",NETTL_FILENAME_SIZE
);
714 g_strlcpy(file_hdr
.tz
,"UTC",20);
715 g_strlcpy(file_hdr
.host_name
,"",9);
716 g_strlcpy(file_hdr
.os_vers
,"B.11.11",9);
718 g_strlcpy(file_hdr
.model
,"9000/800",11);
719 file_hdr
.unknown
=g_htons(0x406);
720 if (!wtap_dump_file_write(wdh
, &file_hdr
, sizeof file_hdr
, err
))
722 wdh
->bytes_dumped
+= sizeof(file_hdr
);
727 /* Write a record for a packet to a dump file.
728 Returns TRUE on success, FALSE on failure. */
729 static gboolean
nettl_dump(wtap_dumper
*wdh
,
730 const struct wtap_pkthdr
*phdr
,
731 const guint8
*pd
, int *err
)
733 const union wtap_pseudo_header
*pseudo_header
= &phdr
->pseudo_header
;
734 struct nettlrec_hdr rec_hdr
;
737 memset(&rec_hdr
,0,sizeof(rec_hdr
));
738 /* HP-UX 11.X header should be 68 bytes */
739 rec_hdr
.hdr_len
= g_htons(sizeof(rec_hdr
) + 4);
740 rec_hdr
.kind
= g_htonl(NETTL_HDR_PDUIN
);
741 rec_hdr
.sec
= g_htonl(phdr
->ts
.secs
);
742 rec_hdr
.usec
= g_htonl(phdr
->ts
.nsecs
/1000);
743 rec_hdr
.caplen
= g_htonl(phdr
->caplen
);
744 rec_hdr
.length
= g_htonl(phdr
->len
);
749 switch (phdr
->pkt_encap
) {
751 case WTAP_ENCAP_NETTL_FDDI
:
752 /* account for pad bytes */
753 rec_hdr
.caplen
= g_htonl(phdr
->caplen
+ 3);
754 rec_hdr
.length
= g_htonl(phdr
->len
+ 3);
755 /* fall through and fill the rest of the fields */
756 case WTAP_ENCAP_NETTL_ETHERNET
:
757 case WTAP_ENCAP_NETTL_TOKEN_RING
:
758 case WTAP_ENCAP_NETTL_RAW_IP
:
759 case WTAP_ENCAP_NETTL_RAW_ICMP
:
760 case WTAP_ENCAP_NETTL_RAW_ICMPV6
:
761 case WTAP_ENCAP_NETTL_RAW_TELNET
:
762 case WTAP_ENCAP_NETTL_UNKNOWN
:
763 rec_hdr
.subsys
= g_htons(pseudo_header
->nettl
.subsys
);
764 rec_hdr
.devid
= g_htonl(pseudo_header
->nettl
.devid
);
765 rec_hdr
.kind
= g_htonl(pseudo_header
->nettl
.kind
);
766 rec_hdr
.pid
= g_htonl(pseudo_header
->nettl
.pid
);
767 rec_hdr
.uid
= g_htons(pseudo_header
->nettl
.uid
);
770 case WTAP_ENCAP_RAW_IP
:
771 rec_hdr
.subsys
= g_htons(NETTL_SUBSYS_NS_LS_IP
);
774 case WTAP_ENCAP_ETHERNET
:
775 rec_hdr
.subsys
= g_htons(NETTL_SUBSYS_BTLAN
);
778 case WTAP_ENCAP_FDDI_BITSWAPPED
:
779 rec_hdr
.subsys
= g_htons(NETTL_SUBSYS_PCI_FDDI
);
780 /* account for pad bytes */
781 rec_hdr
.caplen
= g_htonl(phdr
->caplen
+ 3);
782 rec_hdr
.length
= g_htonl(phdr
->len
+ 3);
785 case WTAP_ENCAP_TOKEN_RING
:
786 rec_hdr
.subsys
= g_htons(NETTL_SUBSYS_PCI_TR
);
789 case WTAP_ENCAP_NETTL_X25
:
790 rec_hdr
.caplen
= g_htonl(phdr
->caplen
+ 24);
791 rec_hdr
.length
= g_htonl(phdr
->len
+ 24);
792 rec_hdr
.subsys
= g_htons(pseudo_header
->nettl
.subsys
);
793 rec_hdr
.devid
= g_htonl(pseudo_header
->nettl
.devid
);
794 rec_hdr
.kind
= g_htonl(pseudo_header
->nettl
.kind
);
795 rec_hdr
.pid
= g_htonl(pseudo_header
->nettl
.pid
);
796 rec_hdr
.uid
= g_htons(pseudo_header
->nettl
.uid
);
800 /* found one we don't support */
801 *err
= WTAP_ERR_UNSUPPORTED_ENCAP
;
805 if (!wtap_dump_file_write(wdh
, &rec_hdr
, sizeof(rec_hdr
), err
))
807 wdh
->bytes_dumped
+= sizeof(rec_hdr
);
809 /* Write out 4 extra bytes of unknown stuff for HP-UX11
812 memset(dummyc
, 0, sizeof dummyc
);
813 if (!wtap_dump_file_write(wdh
, dummyc
, 4, err
))
815 wdh
->bytes_dumped
+= 4;
817 if ((phdr
->pkt_encap
== WTAP_ENCAP_FDDI_BITSWAPPED
) ||
818 (phdr
->pkt_encap
== WTAP_ENCAP_NETTL_FDDI
)) {
819 /* add those weird 3 bytes of padding */
820 if (!wtap_dump_file_write(wdh
, dummyc
, 3, err
))
822 wdh
->bytes_dumped
+= 3;
825 } else if (phdr->pkt_encap == WTAP_ENCAP_NETTL_X25) {
826 if (!wtap_dump_file_write(wdh, dummyc, 24, err))
828 wdh->bytes_dumped += 24;
832 /* write actual PDU data */
834 if (!wtap_dump_file_write(wdh
, pd
, phdr
->caplen
, err
))
836 wdh
->bytes_dumped
+= phdr
->caplen
;