"This file format can't be written to a pipe" and "this file format
[metze/wireshark/wip.git] / wiretap / catapult_dct2000.c
1 /* catapult_dct2000.c
2  *
3  * $Id$
4  *
5  * Wiretap Library
6  * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26 #include <errno.h>
27 #include <string.h>
28 #include <stdlib.h>
29 #include <ctype.h>
30
31 #include "wtap-int.h"
32 #include "file_wrappers.h"
33 #include "buffer.h"
34
35 #include "catapult_dct2000.h"
36
37 #define MAX_FIRST_LINE_LENGTH      200
38 #define MAX_TIMESTAMP_LINE_LENGTH  100
39 #define MAX_LINE_LENGTH            65536
40 #define MAX_TIMESTAMP_LEN          32
41 #define MAX_SECONDS_CHARS          16
42 #define MAX_SUBSECOND_DECIMALS     4
43 #define MAX_CONTEXT_NAME           64
44 #define MAX_PROTOCOL_NAME          64
45 #define MAX_PORT_DIGITS            2
46 #define MAX_VARIANT_DIGITS         32
47 #define MAX_OUTHDR_NAME            256
48 #define AAL_HEADER_CHARS           12
49
50 /* TODO:
51    - support for FP over AAL0
52    - support for IuR interface FP
53    - support for x.25?
54 */
55
56 /* 's' or 'r' of a packet as read from .out file */
57 typedef enum packet_direction_t
58 {
59     sent,
60     received
61 } packet_direction_t;
62
63
64 /***********************************************************************/
65 /* For each line, store (in case we need to dump):                     */
66 /* - String before time field                                          */
67 /* - String beween time field and data (if NULL assume " l ")          */
68 typedef struct
69 {
70     gchar *before_time;
71     gchar *after_time;
72 } line_prefix_info_t;
73
74
75 /*******************************************************************/
76 /* Information stored external to a file (wtap) needed for reading and dumping */
77 typedef struct dct2000_file_externals
78 {
79     /* Remember the time at the start of capture */
80     time_t  start_secs;
81     guint32 start_usecs;
82
83     /*
84      * The following information is needed only for dumping.
85      *
86      * XXX - Wiretap is not *supposed* to require that a packet being
87      * dumped come from a file of the same type that you currently have
88      * open; this should be fixed.
89      */
90
91     /* Buffer to hold first line, including magic and format number */
92     gchar firstline[MAX_FIRST_LINE_LENGTH];
93     gint  firstline_length;
94
95     /* Buffer to hold second line with formatted file creation data/time */
96     gchar secondline[MAX_TIMESTAMP_LINE_LENGTH];
97     gint  secondline_length;
98
99     /* Hash table to store text prefix data part of displayed packets.
100        Records (file offset -> line_prefix_info_t)
101     */
102     GHashTable *packet_prefix_table;
103 } dct2000_file_externals_t;
104
105 /* 'Magic number' at start of Catapult DCT2000 .out files. */
106 static const gchar catapult_dct2000_magic[] = "Session Transcript";
107
108 /************************************************************/
109 /* Functions called from wiretap core                       */
110 static gboolean catapult_dct2000_read(wtap *wth, int *err, gchar **err_info,
111                                       gint64 *data_offset);
112 static gboolean catapult_dct2000_seek_read(wtap *wth, gint64 seek_off,
113                                            union wtap_pseudo_header *pseudo_header,
114                                            guchar *pd, int length,
115                                            int *err, gchar **err_info);
116 static void catapult_dct2000_close(wtap *wth);
117
118 static gboolean catapult_dct2000_dump(wtap_dumper *wdh, const struct wtap_pkthdr *phdr,
119                                       const union wtap_pseudo_header *pseudo_header,
120                                       const guchar *pd, int *err);
121
122
123 /************************************************************/
124 /* Private helper functions                                 */
125 static gboolean read_new_line(FILE_T fh, gint64 *offset, gint *length,
126                               gchar *buf, size_t bufsize);
127 static gboolean parse_line(char *linebuff, gint line_length,
128                            gint *seconds, gint *useconds,
129                            long *before_time_offset, long *after_time_offset,
130                            long *data_offset,
131                            gint *data_chars,
132                            packet_direction_t *direction,
133                            int *encap, int *is_comment,
134                            gchar *aal_header_chars,
135                            gchar *context_name, guint8 *context_portp,
136                            gchar *protocol_name, gchar *variant_name,
137                            gchar *outhdr_name);
138 static int write_stub_header(guchar *frame_buffer, char *timestamp_string,
139                              packet_direction_t direction, int encap,
140                              gchar *context_name, guint8 context_port,
141                              gchar *protocol_name, gchar *variant_name,
142                              gchar *outhdr_name);
143 static guchar hex_from_char(gchar c);
144 static gchar char_from_hex(guchar hex);
145
146 static void set_pseudo_header_info(wtap *wth,
147                                    int pkt_encap,
148                                    gint64 file_offset,
149                                    union wtap_pseudo_header *pseudo_header,
150                                    packet_direction_t direction,
151                                    gchar *aal_header_chars);
152 static void set_aal_info(union wtap_pseudo_header *pseudo_header,
153                          packet_direction_t direction,
154                          gchar *aal_header_chars);
155 static void set_isdn_info(union wtap_pseudo_header *pseudo_header,
156                           packet_direction_t direction);
157 static void set_ppp_info(union wtap_pseudo_header *pseudo_header,
158                          packet_direction_t direction);
159
160 static gint packet_offset_equal(gconstpointer v, gconstpointer v2);
161 static guint packet_offset_hash_func(gconstpointer v);
162
163 static gboolean get_file_time_stamp(gchar *linebuff, time_t *secs, guint32 *usecs);
164 static gboolean free_line_prefix_info(gpointer key, gpointer value, gpointer user_data);
165
166
167
168 /********************************************/
169 /* Open file (for reading)                 */
170 /********************************************/
171 int catapult_dct2000_open(wtap *wth, int *err, gchar **err_info _U_)
172 {
173     gint64  offset = 0;
174     time_t  timestamp;
175     guint32 usecs;
176     gint firstline_length = 0;
177     dct2000_file_externals_t *file_externals;
178     static gchar linebuff[MAX_LINE_LENGTH];
179
180     /* Clear errno before reading from the file */
181     errno = 0;
182
183
184     /********************************************************************/
185     /* First line needs to contain at least as many characters as magic */
186
187     read_new_line(wth->fh, &offset, &firstline_length, linebuff,
188                   sizeof linebuff);
189     if (((size_t)firstline_length < strlen(catapult_dct2000_magic)) ||
190         firstline_length >= MAX_FIRST_LINE_LENGTH) {
191
192         return 0;
193     }
194
195     /* This file is not for us if it doesn't match our signature */
196     if (memcmp(catapult_dct2000_magic, linebuff, strlen(catapult_dct2000_magic)) != 0) {
197         return 0;
198     }
199
200
201     /*********************************************************************/
202     /* Need entry in file_externals table                                */
203
204     /* Allocate a new file_externals structure for this file */
205     file_externals = g_malloc(sizeof(dct2000_file_externals_t));
206     memset((void*)file_externals, '\0', sizeof(dct2000_file_externals_t));
207
208     /* Copy this first line into buffer so could write out later */
209     g_strlcpy(file_externals->firstline, linebuff, firstline_length+1);
210     file_externals->firstline_length = firstline_length;
211
212
213     /***********************************************************/
214     /* Second line contains file timestamp                     */
215     /* Store this offset in in file_externals                  */
216
217     read_new_line(wth->fh, &offset, &(file_externals->secondline_length),
218                   linebuff, sizeof linebuff);
219     if ((file_externals->secondline_length >= MAX_TIMESTAMP_LINE_LENGTH) ||
220         (!get_file_time_stamp(linebuff, &timestamp, &usecs))) {
221
222         /* Give up if file time line wasn't valid */
223         g_free(file_externals);
224         return 0;
225     }
226
227     /* Fill in timestamp */
228     file_externals->start_secs = timestamp;
229     file_externals->start_usecs = usecs;
230
231     /* Copy this second line into buffer so could write out later */
232     g_strlcpy(file_externals->secondline, linebuff, file_externals->secondline_length+1);
233
234
235     /************************************************************/
236     /* File is for us. Fill in details so packets can be read   */
237
238     /* Set our file type */
239     wth->file_type = WTAP_FILE_CATAPULT_DCT2000;
240
241     /* Use our own encapsulation to send all packets to our stub dissector */
242     wth->file_encap = WTAP_ENCAP_CATAPULT_DCT2000;
243
244     /* Callbacks for reading operations */
245     wth->subtype_read = catapult_dct2000_read;
246     wth->subtype_seek_read = catapult_dct2000_seek_read;
247     wth->subtype_close = catapult_dct2000_close;
248
249     /* Choose microseconds (have 4 decimal places...) */
250     wth->tsprecision = WTAP_FILE_TSPREC_USEC;
251
252
253     /***************************************************************/
254     /* Initialise packet_prefix_table (index is offset into file)  */
255     file_externals->packet_prefix_table =
256         g_hash_table_new(packet_offset_hash_func, packet_offset_equal);
257
258     /* Set this wtap to point to the file_externals */
259     wth->priv = (void*)file_externals;
260
261     *err = errno;
262     return 1;
263 }
264
265
266 /**************************************************/
267 /* Read packet function.                          */
268 /* Look for and read the next usable packet       */
269 /* - return TRUE and details if found             */
270 /**************************************************/
271 gboolean catapult_dct2000_read(wtap *wth, int *err, gchar **err_info _U_,
272                                gint64 *data_offset)
273 {
274     gint64 offset = wth->data_offset;
275     long dollar_offset, before_time_offset, after_time_offset;
276     packet_direction_t direction;
277     int encap;
278
279     /* Get wtap external structure for this wtap */
280     dct2000_file_externals_t *file_externals =
281         (dct2000_file_externals_t*)wth->priv;
282
283     /* There *has* to be an entry for this wth */
284     if (!file_externals) {
285         return FALSE;
286     }
287
288     /* Search for a line containing a usable packet */
289     while (1) {
290         int line_length, seconds, useconds, data_chars;
291         int is_comment = FALSE;
292         gint64 this_offset = offset;
293         static gchar linebuff[MAX_LINE_LENGTH+1];
294         gchar aal_header_chars[AAL_HEADER_CHARS];
295         gchar context_name[MAX_CONTEXT_NAME];
296         guint8 context_port;
297         gchar protocol_name[MAX_PROTOCOL_NAME+1];
298         gchar variant_name[MAX_VARIANT_DIGITS+1];
299         gchar outhdr_name[MAX_OUTHDR_NAME+1];
300
301         /* Are looking for first packet after 2nd line */
302         if (wth->data_offset == 0) {
303             this_offset += (file_externals->firstline_length+1+
304                             file_externals->secondline_length+1);
305         }
306
307         /* Clear errno before reading from the file */
308         errno = 0;
309
310         /* Read a new line from file into linebuff */
311         if (read_new_line(wth->fh, &offset, &line_length, linebuff,
312                           sizeof linebuff) == FALSE) {
313             /* Get out if no more lines can be read */
314             break;
315         }
316
317         /* Try to parse the line as a frame record */
318         if (parse_line(linebuff, line_length, &seconds, &useconds,
319                        &before_time_offset, &after_time_offset,
320                        &dollar_offset,
321                        &data_chars, &direction, &encap, &is_comment,
322                        aal_header_chars,
323                        context_name, &context_port,
324                        protocol_name, variant_name, outhdr_name)) {
325             guchar *frame_buffer;
326             int n;
327             int stub_offset = 0;
328             line_prefix_info_t *line_prefix_info;
329             char timestamp_string[MAX_TIMESTAMP_LEN+1];
330             gint64 *pkey = NULL;
331
332             g_snprintf(timestamp_string, MAX_TIMESTAMP_LEN, "%d.%04d", seconds, useconds/100);
333
334             /* All packets go to Catapult DCT2000 stub dissector */
335             wth->phdr.pkt_encap = WTAP_ENCAP_CATAPULT_DCT2000;
336
337             /* Set data_offset to the beginning of the line we're returning.
338                This will be the seek_off parameter when this frame is re-read.
339             */
340             *data_offset = this_offset;
341
342             /* This is the position in the file where the next _read() will be called from */
343             wth->data_offset = this_offset + line_length + 1;
344
345             /* Fill in timestamp (capture base + packet offset) */
346             wth->phdr.ts.secs = file_externals->start_secs + seconds;
347             if ((file_externals->start_usecs + useconds) >= 1000000) {
348                 wth->phdr.ts.secs++;
349             }
350             wth->phdr.ts.nsecs =
351                 ((file_externals->start_usecs + useconds) % 1000000) *1000;
352
353             /* Get buffer pointer ready */
354             buffer_assure_space(wth->frame_buffer,
355                                 strlen(context_name)+1 +     /* Context name */
356                                 1 +                          /* port */
357                                 strlen(timestamp_string)+1 + /* timestamp */
358                                 strlen(variant_name)+1 +     /* variant */
359                                 strlen(outhdr_name)+1 +      /* outhdr */
360                                 strlen(protocol_name)+1 +    /* Protocol name */
361                                 1 +                          /* direction */
362                                 1 +                          /* encap */
363                                 (is_comment ? data_chars : (data_chars/2)));
364             frame_buffer = buffer_start_ptr(wth->frame_buffer);
365
366
367             /*********************/
368             /* Write stub header */
369             stub_offset = write_stub_header(frame_buffer, timestamp_string,
370                                             direction, encap, context_name,
371                                             context_port,
372                                             protocol_name, variant_name,
373                                             outhdr_name);
374
375             /* Binary data length is half bytestring length + stub header */
376             wth->phdr.len = stub_offset + (is_comment ? data_chars : (data_chars/2));
377             wth->phdr.caplen = stub_offset + (is_comment ? data_chars : (data_chars/2));
378
379
380             if (!is_comment) {
381                 /****************************************************/
382                 /* Copy data into buffer, converting from ascii hex */
383                 for (n=0; n <= data_chars; n+=2) {
384                     frame_buffer[stub_offset + n/2] =
385                         (hex_from_char(linebuff[dollar_offset+n]) << 4) |
386                          hex_from_char(linebuff[dollar_offset+n+1]);
387                 }
388             }
389             else {
390                 /***********************************************************/
391                 /* Copy packet data into buffer, just copying ascii chars  */
392                 for (n=0; n <= data_chars; n++) {
393                     frame_buffer[stub_offset + n] = linebuff[dollar_offset+n];
394                 }
395             }
396
397             /* Store the packet prefix in the hash table */
398             line_prefix_info = g_malloc(sizeof(line_prefix_info_t));
399
400             /* Create and use buffer for contents before time */
401             line_prefix_info->before_time = g_malloc(before_time_offset+2);
402             g_strlcpy(line_prefix_info->before_time, linebuff, before_time_offset+1);
403             line_prefix_info->before_time[before_time_offset+1] = '\0';
404
405             /* Create and use buffer for contents before time.
406                Do this only if it doesn't correspond to " l ", which is by far the most
407                common case. */
408             if (((size_t)(dollar_offset - after_time_offset -1) == strlen(" l ")) &&
409                 (strncmp(linebuff+after_time_offset, " l ", strlen(" l ")) == 0)) {
410
411                 line_prefix_info->after_time = NULL;
412             }
413             else {
414                 /* Allocate & write buffer for line between timestamp and data */
415                 line_prefix_info->after_time = g_malloc(dollar_offset - after_time_offset);
416                 g_strlcpy(line_prefix_info->after_time, linebuff+after_time_offset,
417                           dollar_offset - after_time_offset);
418                 line_prefix_info->after_time[dollar_offset - after_time_offset-1] = '\0';
419             }
420
421             /* Add packet entry into table */
422             pkey = g_malloc(sizeof(*pkey));
423             *pkey = this_offset;
424             g_hash_table_insert(file_externals->packet_prefix_table, pkey, line_prefix_info);
425
426             /* Set pseudo-header if necessary */
427             set_pseudo_header_info(wth, encap, this_offset, &wth->pseudo_header,
428                                    direction, aal_header_chars);
429
430             /* OK, we have packet details to return */
431             *err = errno;
432             return TRUE;
433         }
434     }
435
436     /* No packet details to return... */
437     *err = errno;
438     return FALSE;
439 }
440
441
442 /**************************************************/
443 /* Read & seek function.                          */
444 /**************************************************/
445 static gboolean
446 catapult_dct2000_seek_read(wtap *wth, gint64 seek_off,
447                            union wtap_pseudo_header *pseudo_header, guchar *pd,
448                            int length, int *err, gchar **err_info)
449 {
450     gint64 offset = wth->data_offset;
451     long dollar_offset, before_time_offset, after_time_offset;
452     static gchar linebuff[MAX_LINE_LENGTH+1];
453     gchar aal_header_chars[AAL_HEADER_CHARS];
454     gchar context_name[MAX_CONTEXT_NAME];
455     guint8 context_port;
456     gchar protocol_name[MAX_PROTOCOL_NAME+1];
457     gchar variant_name[MAX_VARIANT_DIGITS+1];
458     gchar outhdr_name[MAX_OUTHDR_NAME+1];
459     int  is_comment = FALSE;
460     packet_direction_t direction;
461     int encap;
462     int seconds, useconds, data_chars;
463
464     /* Reset errno */
465     *err = errno = 0;
466
467     /* Seek to beginning of packet */
468     if (file_seek(wth->random_fh, seek_off, SEEK_SET, err) == -1) {
469         return FALSE;
470     }
471
472     /* Re-read whole line (this really should succeed) */
473     if (read_new_line(wth->random_fh, &offset, &length, linebuff,
474                       sizeof linebuff) == FALSE) {
475         return FALSE;
476     }
477
478     /* Try to parse this line again (should succeed as re-reading...) */
479     if (parse_line(linebuff, length, &seconds, &useconds,
480                    &before_time_offset, &after_time_offset,
481                    &dollar_offset,
482                    &data_chars, &direction, &encap, &is_comment,
483                    aal_header_chars,
484                    context_name, &context_port,
485                    protocol_name, variant_name, outhdr_name)) {
486         int n;
487         int stub_offset = 0;
488         char timestamp_string[MAX_TIMESTAMP_LEN+1];
489         g_snprintf(timestamp_string, MAX_TIMESTAMP_LEN, "%d.%04d", seconds, useconds/100);
490
491         /* Make sure all packets go to catapult dct2000 dissector */
492         wth->phdr.pkt_encap = WTAP_ENCAP_CATAPULT_DCT2000;
493
494
495         /*********************/
496         /* Write stub header */
497         stub_offset = write_stub_header(pd, timestamp_string,
498                                         direction, encap, context_name,
499                                         context_port,
500                                         protocol_name, variant_name,
501                                         outhdr_name);
502
503
504         if (!is_comment) {
505             /***********************************************************/
506             /* Copy packet data into buffer, converting from ascii hex */
507             for (n=0; n <= data_chars; n+=2) {
508                 pd[stub_offset + n/2] = (hex_from_char(linebuff[dollar_offset+n]) << 4) |
509                                          hex_from_char(linebuff[dollar_offset+n+1]);
510             }
511         }
512         else {
513             /***********************************************************/
514             /* Copy packet data into buffer, just copying ascii chars  */
515             for (n=0; n <= data_chars; n++) {
516                 pd[stub_offset+n] = linebuff[dollar_offset+n];
517             }
518         }
519
520         /* Set packet pseudo-header if necessary */
521         set_pseudo_header_info(wth, encap, seek_off, pseudo_header, direction,
522                                aal_header_chars);
523
524         *err = errno = 0;
525         return TRUE;
526     }
527
528     /* If get here, must have failed */
529     *err = errno;
530     *err_info = g_strdup_printf("catapult dct2000: seek_read failed to read/parse "
531                                 "line at position %" G_GINT64_MODIFIER "d",
532                                 seek_off);
533     return FALSE;
534 }
535
536
537 /***************************************************************************/
538 /* Free dct2000-specific capture info from file that was open for reading  */
539 /***************************************************************************/
540 void catapult_dct2000_close(wtap *wth)
541 {
542     /* Get externals for this file */
543     dct2000_file_externals_t *file_externals =
544         (dct2000_file_externals_t*)wth->priv;
545
546     /* The entry *has* to be found */
547     if (!file_externals) {
548         return;
549     }
550
551     /* Free up its line prefix values */
552     g_hash_table_foreach_remove(file_externals->packet_prefix_table,
553                                 free_line_prefix_info, NULL);
554     /* Free up its line prefix table */
555     g_hash_table_destroy(file_externals->packet_prefix_table);
556 }
557
558
559
560
561 /***************************/
562 /* Dump functions          */
563 /***************************/
564
565 typedef struct {
566     gboolean           first_packet_written;
567     struct wtap_nstime start_time;
568 } dct2000_dump_t;
569
570 /*****************************************************/
571 /* The file that we are writing to has been opened.  */
572 /* Set other dump callbacks.                         */
573 /*****************************************************/
574 gboolean catapult_dct2000_dump_open(wtap_dumper *wdh, int *err _U_)
575 {
576     /* Fill in other dump callbacks */
577     wdh->subtype_write = catapult_dct2000_dump;
578
579     return TRUE;
580 }
581
582 /*********************************************************/
583 /* Respond to queries about which encap types we support */
584 /* writing to.                                           */
585 /*********************************************************/
586 int catapult_dct2000_dump_can_write_encap(int encap)
587 {
588     switch (encap) {
589         case WTAP_ENCAP_CATAPULT_DCT2000:
590             /* We support this */
591             return 0;
592
593         default:
594             /* But don't write to any other formats... */
595             return WTAP_ERR_UNSUPPORTED_ENCAP;
596     }
597 }
598
599
600 /*****************************************/
601 /* Write a single packet out to the file */
602 /*****************************************/
603
604 gboolean catapult_dct2000_dump(wtap_dumper *wdh, const struct wtap_pkthdr *phdr,
605                                const union wtap_pseudo_header *pseudo_header,
606                                const guchar *pd, int *err)
607 {
608     guint32 n;
609     line_prefix_info_t *prefix = NULL;
610     gchar time_string[16];
611     gboolean is_comment;
612     dct2000_dump_t *dct2000;
613
614     /******************************************************/
615     /* Get the file_externals structure for this file */
616     /* Find wtap external structure for this wtap */
617     dct2000_file_externals_t *file_externals =
618         (dct2000_file_externals_t*)pseudo_header->dct2000.wth->priv;
619
620     dct2000 = (dct2000_dump_t *)wdh->priv;
621     if (dct2000 == NULL) {
622
623         /* Write out saved first line */
624         if (!wtap_dump_file_write(wdh, file_externals->firstline,
625                                   file_externals->firstline_length, err)) {
626             return FALSE;
627         }
628         if (!wtap_dump_file_write(wdh, "\n", 1, err)) {
629             return FALSE;
630         }
631
632         /* Also write out saved second line with timestamp corresponding to the
633            opening time of the log.
634         */
635         if (!wtap_dump_file_write(wdh, file_externals->secondline,
636                                   file_externals->secondline_length, err)) {
637             return FALSE;
638         }
639         if (!wtap_dump_file_write(wdh, "\n", 1, err)) {
640             return FALSE;
641         }
642
643         /* Allocate the dct2000-specific dump structure */
644         dct2000 = (dct2000_dump_t *)g_malloc(sizeof(dct2000_dump_t));
645         wdh->priv = (void *)dct2000;
646
647         /* Copy time of beginning of file */
648         dct2000->start_time.secs = file_externals->start_secs;
649         dct2000->start_time.nsecs =
650             (file_externals->start_usecs * 1000);
651
652         /* Set flag do don't write header out again */
653         dct2000->first_packet_written = TRUE;
654     }
655
656
657     /******************************************************************/
658     /* Write out this packet's prefix, including calculated timestamp */
659
660     /* Look up line data prefix using stored offset */
661     prefix = (line_prefix_info_t*)g_hash_table_lookup(file_externals->packet_prefix_table,
662                                                       (const void*)&(pseudo_header->dct2000.seek_off));
663
664     /* Write out text before timestamp */
665     if (!wtap_dump_file_write(wdh, prefix->before_time,
666                               strlen(prefix->before_time), err)) {
667         return FALSE;
668     }
669
670     /* Can infer from prefix if this is a comment (whose payload is displayed differently) */
671     is_comment = (strstr(prefix->before_time, "/////") != NULL);
672
673     /* Calculate time of this packet to write, relative to start of dump */
674     if (phdr->ts.nsecs >= dct2000->start_time.nsecs) {
675         g_snprintf(time_string, 16, "%ld.%04d",
676                   (long)(phdr->ts.secs - dct2000->start_time.secs),
677                   (phdr->ts.nsecs - dct2000->start_time.nsecs) / 100000);
678     }
679     else {
680         g_snprintf(time_string, 16, "%ld.%04u",
681                   (long)(phdr->ts.secs - dct2000->start_time.secs-1),
682                   ((1000000000 + (phdr->ts.nsecs / 100000)) - (dct2000->start_time.nsecs / 100000)) % 10000);
683     }
684
685     /* Write out the calculated timestamp */
686     if (!wtap_dump_file_write(wdh, time_string, strlen(time_string), err)) {
687         return FALSE;
688     }
689
690     /* Write out text between timestamp and start of hex data */
691     if (prefix->after_time == NULL) {
692         if (!wtap_dump_file_write(wdh, " l ", strlen(" l "), err)) {
693             return FALSE;
694         }
695     }
696     else {
697         if (!wtap_dump_file_write(wdh, prefix->after_time,
698                                   strlen(prefix->after_time), err)) {
699             return FALSE;
700         }
701     }
702
703
704     /****************************************************************/
705     /* Need to skip stub header at start of pd before we reach data */
706
707     /* Context name */
708     for (n=0; pd[n] != '\0'; n++);
709     n++;
710
711     /* Context port number */
712     n++;
713
714     /* Timestamp */
715     for (; pd[n] != '\0'; n++);
716     n++;
717
718     /* Protocol name */
719     for (; pd[n] != '\0'; n++);
720     n++;
721
722     /* Variant number (as string) */
723     for (; pd[n] != '\0'; n++);
724     n++;
725
726     /* Outhdr (as string) */
727     for (; pd[n] != '\0'; n++);
728     n++;
729
730     /* Direction & encap */
731     n += 2;
732
733
734     /**************************************/
735     /* Remainder is encapsulated protocol */
736     if (!wtap_dump_file_write(wdh, "$", 1, err)) {
737         return FALSE;
738     }
739
740     if (!is_comment) {
741         /* Each binary byte is written out as 2 hex string chars */ 
742         for (; n < phdr->len; n++) {
743             gchar c[2];
744             c[0] = char_from_hex((guchar)(pd[n] >> 4));
745             c[1] = char_from_hex((guchar)(pd[n] & 0x0f));
746
747             /* Write both hex chars of byte together */
748             if (!wtap_dump_file_write(wdh, c, 2, err)) {
749                 return FALSE;
750             }
751         }
752     }
753     else {
754         for (; n < phdr->len; n++) {
755             char c[1];
756             c[0] = pd[n];
757
758             /* Write both hex chars of byte together */
759             if (!wtap_dump_file_write(wdh, c, 1, err)) {
760                 return FALSE;
761             }
762         }
763     }
764
765     /* End the line */
766     if (!wtap_dump_file_write(wdh, "\n", 1, err)) {
767         return FALSE;
768     }
769
770     return TRUE;
771 }
772
773
774 /****************************/
775 /* Private helper functions */
776 /****************************/
777
778 /**********************************************************************/
779 /* Read a new line from the file, starting at offset.                 */
780 /* - writes data to its argument linebuff                             */
781 /* - on return 'offset' will point to the next position to read from  */
782 /* - return TRUE if this read is successful                           */
783 /**********************************************************************/
784 gboolean read_new_line(FILE_T fh, gint64 *offset, gint *length,
785                        gchar *linebuff, size_t linebuffsize)
786 {
787     /* Read in a line */
788     char *result = file_gets(linebuff, (int)linebuffsize - 1, fh);
789     if (result == NULL) {
790         /* No characters found, or error */
791         return FALSE;
792     }
793
794     /* Set length and offset.. */
795     *length = (gint)strlen(linebuff);
796     *offset = *offset + *length;
797
798     /* ...but don't want to include newline in line length */
799     if (linebuff[*length-1] == '\n') {
800         linebuff[*length-1] = '\0';
801         *length = *length - 1;
802     }
803
804     return TRUE;
805 }
806
807
808 /**********************************************************************/
809 /* Parse a line from buffer, by identifying:                          */
810 /* - context, port and direction of packet                            */
811 /* - timestamp                                                        */
812 /* - data position and length                                         */
813 /* Return TRUE if this packet looks valid and can be displayed        */
814 /**********************************************************************/
815 static gboolean parse_line(gchar *linebuff, gint line_length,
816                            gint *seconds, gint *useconds,
817                            long *before_time_offset, long *after_time_offset,
818                            long *data_offset, gint *data_chars,
819                            packet_direction_t *direction,
820                            int *encap, int *is_comment,
821                            gchar *aal_header_chars,
822                            gchar *context_name, guint8 *context_portp,
823                            gchar *protocol_name, gchar *variant_name,
824                            gchar *outhdr_name)
825 {
826     int  n = 0;
827     int  port_digits;
828     char port_number_string[MAX_PORT_DIGITS+1];
829     int  variant_digits = 0;
830     int  variant = 1;
831     int  protocol_chars = 0;
832     int  outhdr_chars = 0;
833
834     char seconds_buff[MAX_SECONDS_CHARS+1];
835     int  seconds_chars;
836     char subsecond_decimals_buff[MAX_SUBSECOND_DECIMALS+1];
837     int  subsecond_decimals_chars;
838     int  skip_first_byte = FALSE;
839     gboolean atm_header_present = FALSE;
840
841     *is_comment = FALSE;
842
843     /* Read context name until find '.' */
844     for (n=0; (linebuff[n] != '.') && (n < MAX_CONTEXT_NAME) && (n+1 < line_length); n++) {
845         if (linebuff[n] == '/') {
846             context_name[n] = '\0';
847
848             /* If not a comment (/////), not a valid line */
849             if (strncmp(linebuff+n, "/////", 5) != 0) {
850                 return FALSE;
851             }
852
853             /* There is no variant, outhdr, etc.  Set protocol to be a comment */
854             g_snprintf(protocol_name, MAX_PROTOCOL_NAME, "comment");
855             *is_comment = TRUE;
856             break;
857         }
858         if (!isalnum((guchar)linebuff[n]) && (linebuff[n] != '_') && (linebuff[n] != '-')) {
859             return FALSE;
860         }
861         context_name[n] = linebuff[n];
862     }
863     if (n == MAX_CONTEXT_NAME || (n+1 >= line_length)) {
864         return FALSE;
865     }
866
867     /* Reset strings (that won't be set by comments) */
868     variant_name[0] = '\0';
869     outhdr_name[0] = '\0';
870     port_number_string[0] = '\0';
871
872     if (!(*is_comment)) {
873         /* '.' must follow context name */
874         if (linebuff[n] != '.') {
875             return FALSE;
876         }
877         context_name[n] = '\0';
878         /* Skip it */
879         n++;
880
881         /* Now read port number */
882         for (port_digits = 0;
883              (linebuff[n] != '/') && (port_digits <= MAX_PORT_DIGITS) && (n+1 < line_length);
884              n++, port_digits++) {
885
886             if (!isdigit((guchar)linebuff[n])) {
887                 return FALSE;
888             }
889             port_number_string[port_digits] = linebuff[n];
890         }
891         if (port_digits > MAX_PORT_DIGITS || (n+1 >= line_length)) {
892             return FALSE;
893         }
894
895         /* Slash char must follow port number */
896         if (linebuff[n] != '/')
897         {
898             return FALSE;
899         }
900         port_number_string[port_digits] = '\0';
901         *context_portp = atoi(port_number_string);
902         /* Skip it */
903         n++;
904
905         /* Now for the protocol name */
906         for (protocol_chars = 0;
907              (linebuff[n] != '/') && (protocol_chars < MAX_PROTOCOL_NAME) && (n < line_length);
908              n++, protocol_chars++) {
909
910             if (!isalnum((guchar)linebuff[n]) && linebuff[n] != '_') {
911                 return FALSE;
912             }
913             protocol_name[protocol_chars] = linebuff[n];
914         }
915         if (protocol_chars == MAX_PROTOCOL_NAME || n >= line_length) {
916             /* If doesn't fit, fail rather than truncate */
917             return FALSE;
918         }
919         protocol_name[protocol_chars] = '\0';
920
921         /* Slash char must follow protocol name */
922         if (linebuff[n] != '/') {
923             return FALSE;
924         }
925         /* Skip it */
926         n++;
927
928
929         /* Following the / is the variant number.  No digits indicate 1 */
930         for (variant_digits = 0;
931              (isdigit((guchar)linebuff[n])) && (variant_digits <= MAX_VARIANT_DIGITS) && (n+1 < line_length);
932              n++, variant_digits++) {
933
934             if (!isdigit((guchar)linebuff[n])) {
935                 return FALSE;
936             }
937             variant_name[variant_digits] = linebuff[n];
938         }
939         if (variant_digits > MAX_VARIANT_DIGITS || (n+1 >= line_length)) {
940             return FALSE;
941         }
942         if (variant_digits > 0) {
943             variant_name[variant_digits] = '\0';
944             variant = atoi(variant_name);
945         }
946         else {
947             g_strlcpy(variant_name, "1", MAX_VARIANT_DIGITS+1);
948         }
949
950
951         /* Outheader values may follow */
952         outhdr_name[0] = '\0';
953         if (linebuff[n] == ',') {
954             /* Skip , */
955             n++;
956
957             for (outhdr_chars = 0;
958                  (isdigit((guchar)linebuff[n]) || linebuff[n] == ',') &&
959                  (outhdr_chars <= MAX_OUTHDR_NAME) && (n+1 < line_length);
960                  n++, outhdr_chars++) {
961
962                 if (!isdigit((guchar)linebuff[n]) && (linebuff[n] != ',')) {
963                     return FALSE;
964                 }
965                 outhdr_name[outhdr_chars] = linebuff[n];
966             }
967             if (outhdr_chars > MAX_OUTHDR_NAME || (n+1 >= line_length)) {
968                 return FALSE;
969             }
970             /* Terminate (possibly empty) string */
971             outhdr_name[outhdr_chars] = '\0';
972         }
973     }
974
975
976     /******************************************************************/
977     /* Now check whether we know how to use a packet of this protocol */
978
979     if ((strcmp(protocol_name, "ip") == 0) ||
980         (strcmp(protocol_name, "sctp") == 0) ||
981         (strcmp(protocol_name, "gre") == 0) ||
982         (strcmp(protocol_name, "mipv6") == 0) ||
983         (strcmp(protocol_name, "igmp") == 0)) {
984
985         *encap = WTAP_ENCAP_RAW_IP;
986     }
987     else
988
989     /* FP may be carried over ATM, which has separate atm header to parse */
990     if ((strcmp(protocol_name, "fp") == 0) ||
991         (strcmp(protocol_name, "fp_r4") == 0) ||
992         (strcmp(protocol_name, "fp_r5") == 0) ||
993         (strcmp(protocol_name, "fp_r6") == 0) ||
994         (strcmp(protocol_name, "fp_r7") == 0) ||
995         (strcmp(protocol_name, "fp_r8") == 0)) {
996
997         if ((variant > 256) && (variant % 256 == 3)) {
998             /* FP over udp is contained in IPPrim... */
999             *encap = 0;
1000         }
1001         else {
1002             /* FP over AAL0 or AAL2 */
1003             *encap = WTAP_ENCAP_ATM_PDUS_UNTRUNCATED;
1004             atm_header_present = TRUE;
1005         }
1006     }
1007     else if (strcmp(protocol_name, "fpiur_r5") == 0) {
1008         /* FP (IuR) over AAL2 */
1009         *encap = WTAP_ENCAP_ATM_PDUS_UNTRUNCATED;
1010         atm_header_present = TRUE;
1011     }
1012
1013
1014     else
1015     if (strcmp(protocol_name, "ppp") == 0) {
1016         *encap = WTAP_ENCAP_PPP;
1017     }
1018     else
1019     if (strcmp(protocol_name, "isdn_l3") == 0) {
1020        /* TODO: find out what this byte means... */
1021         skip_first_byte = TRUE;
1022         *encap = WTAP_ENCAP_ISDN;
1023     }
1024     else
1025     if (strcmp(protocol_name, "isdn_l2") == 0) {
1026         *encap = WTAP_ENCAP_ISDN;
1027     }
1028     else
1029     if (strcmp(protocol_name, "ethernet") == 0) {
1030         *encap = WTAP_ENCAP_ETHERNET;
1031     }
1032     else
1033     if ((strcmp(protocol_name, "saalnni_sscop") == 0) ||
1034         (strcmp(protocol_name, "saaluni_sscop") == 0)) {
1035
1036         *encap = DCT2000_ENCAP_SSCOP;
1037     }
1038     else
1039     if (strcmp(protocol_name, "frelay_l2") == 0) {
1040         *encap = WTAP_ENCAP_FRELAY;
1041     }
1042     else
1043     if (strcmp(protocol_name, "ss7_mtp2") == 0) {
1044         *encap = DCT2000_ENCAP_MTP2;
1045     }
1046     else
1047     if ((strcmp(protocol_name, "nbap") == 0) ||
1048         (strcmp(protocol_name, "nbap_r4") == 0) ||
1049         (strncmp(protocol_name, "nbap_sscfuni", strlen("nbap_sscfuni")) == 0)) {
1050
1051         /* The entire message in these cases is nbap, so use an encap value. */
1052         *encap = DCT2000_ENCAP_NBAP;
1053     }
1054     else {
1055         /* Not a supported board port protocol/encap, but can show as raw data or
1056            in some cases find protocol embedded inside primitive */
1057         *encap = DCT2000_ENCAP_UNHANDLED;
1058     }
1059
1060
1061     /* Find separate ATM header if necessary */
1062     if (atm_header_present) {
1063         int header_chars_seen = 0;
1064
1065         /* Scan ahead to the next $ */
1066         for (; (linebuff[n] != '$') && (n+1 < line_length); n++);
1067         /* Skip it */
1068         n++;
1069         if (n+1 >= line_length) {
1070             return FALSE;
1071         }
1072
1073         /* Read consecutive hex chars into atm header buffer */
1074         for (;
1075              ((linebuff[n] >= '0') && (linebuff[n] <= '?') &&
1076               (n < line_length) &&
1077               (header_chars_seen < AAL_HEADER_CHARS));
1078              n++, header_chars_seen++) {
1079
1080             aal_header_chars[header_chars_seen] = linebuff[n];
1081             /* Next 6 characters after '9' are mapped to a->f */
1082             if (!isdigit((guchar)linebuff[n])) {
1083                 aal_header_chars[header_chars_seen] = 'a' + (linebuff[n] - '9') -1;
1084             }
1085         }
1086
1087         if (header_chars_seen != AAL_HEADER_CHARS || n >= line_length) {
1088             return FALSE;
1089         }
1090     }
1091
1092     /* Scan ahead to the next space */
1093     for (; (linebuff[n] != ' ') && (n+1 < line_length); n++);
1094     if (n+1 >= line_length) {
1095         return FALSE;
1096     }
1097     /* Skip it */
1098     n++;
1099
1100     /* Next character gives direction of message (must be 's' or 'r') */
1101     if (!(*is_comment)) {
1102         if (linebuff[n] == 's') {
1103             *direction = sent;
1104         }
1105         else
1106         if (linebuff[n] == 'r') {
1107             *direction = received;
1108         }
1109         else {
1110             return FALSE;
1111         }
1112         /* Skip it */
1113         n++;
1114     }
1115     else {
1116         *direction = sent;
1117     }
1118
1119
1120     /*********************************************************************/
1121     /* Find and read the timestamp                                       */
1122
1123     /* Now scan to the next digit, which should be the start of the timestamp */
1124     /* This will involve skipping " tm "                                      */
1125
1126     for (; ((linebuff[n] != 't') || (linebuff[n+1] != 'm')) && (n+1 < line_length); n++);
1127     if (n >= line_length) {
1128         return FALSE;
1129     }
1130
1131     for (; !isdigit((guchar)linebuff[n]) && (n < line_length); n++);
1132     if (n >= line_length) {
1133         return FALSE;
1134     }
1135
1136     *before_time_offset = n;
1137
1138     /* Seconds */
1139     for (seconds_chars = 0;
1140          (linebuff[n] != '.') &&
1141          (seconds_chars <= MAX_SECONDS_CHARS) &&
1142          (n < line_length);
1143          n++, seconds_chars++) {
1144
1145         if (!isdigit((guchar)linebuff[n])) {
1146             /* Found a non-digit before decimal point. Fail */
1147             return FALSE;
1148         }
1149         seconds_buff[seconds_chars] = linebuff[n];
1150     }
1151     if (seconds_chars > MAX_SECONDS_CHARS || n >= line_length) {
1152         /* Didn't fit in buffer.  Fail rather than use truncated */
1153         return FALSE;
1154     }
1155
1156     /* Convert found value into number */
1157     seconds_buff[seconds_chars] = '\0';
1158     *seconds = atoi(seconds_buff);
1159
1160     /* The decimal point must follow the last of the seconds digits */
1161     if (linebuff[n] != '.') {
1162         return FALSE;
1163     }
1164     /* Skip it */
1165     n++;
1166
1167     /* Subsecond decimal digits (expect 4-digit accuracy) */
1168     for (subsecond_decimals_chars = 0;
1169          (linebuff[n] != ' ') &&
1170          (subsecond_decimals_chars <= MAX_SUBSECOND_DECIMALS) &&
1171          (n < line_length);
1172          n++, subsecond_decimals_chars++) {
1173
1174         if (!isdigit((guchar)linebuff[n])) {
1175             return FALSE;
1176         }
1177         subsecond_decimals_buff[subsecond_decimals_chars] = linebuff[n];
1178     }
1179     if (subsecond_decimals_chars > MAX_SUBSECOND_DECIMALS || n >= line_length) {
1180         /* More numbers than expected - give up */
1181         return FALSE;
1182     }
1183     /* Convert found value into microseconds */
1184     subsecond_decimals_buff[subsecond_decimals_chars] = '\0';
1185     *useconds = atoi(subsecond_decimals_buff) * 100;
1186
1187     /* Space character must follow end of timestamp */
1188     if (linebuff[n] != ' ') {
1189         return FALSE;
1190     }
1191
1192     *after_time_offset = n;
1193
1194     /* Now skip ahead to find start of data (marked by '$') */
1195     /* Want to avoid matching with normal sprint command output at the moment... */
1196     for (; (linebuff[n] != '$') && (linebuff[n] != '\'') && (n+1 < line_length); n++);
1197     if ((linebuff[n] == '\'') || (n+1 >= line_length)) {
1198         return FALSE;
1199     }
1200     /* Skip it */
1201     n++;
1202
1203     /* Set offset to data start within line */
1204     *data_offset = n;
1205
1206     /* Set number of chars that comprise the hex string protocol data */
1207     *data_chars = line_length - n;
1208
1209     /* May need to skip first byte (2 hex string chars) */
1210     if (skip_first_byte) {
1211         *data_offset += 2;
1212         *data_chars -= 2;
1213     }
1214
1215     return TRUE;
1216 }
1217
1218 /*****************************************************************/
1219 /* Write the stub info to the data buffer while reading a packet */
1220 /*****************************************************************/
1221 static int write_stub_header(guchar *frame_buffer, char *timestamp_string,
1222                              packet_direction_t direction, int encap,
1223                              gchar *context_name, guint8 context_port,
1224                              gchar *protocol_name, gchar *variant_name,
1225                              gchar *outhdr_name)
1226 {
1227     int stub_offset = 0;
1228
1229     g_strlcpy((char*)frame_buffer, context_name, MAX_CONTEXT_NAME+1);
1230     stub_offset += (int)(strlen(context_name) + 1);
1231
1232     /* Context port number */
1233     frame_buffer[stub_offset] = context_port;
1234     stub_offset++;
1235
1236     /* Timestamp within file */
1237     g_strlcpy((char*)&frame_buffer[stub_offset], timestamp_string, MAX_TIMESTAMP_LEN+1);
1238     stub_offset += (int)(strlen(timestamp_string) + 1);
1239
1240     /* Protocol name */
1241     g_strlcpy((char*)&frame_buffer[stub_offset], protocol_name, MAX_PROTOCOL_NAME+1);
1242     stub_offset += (int)(strlen(protocol_name) + 1);
1243
1244     /* Protocol variant number (as string) */
1245     g_strlcpy((void*)&frame_buffer[stub_offset], variant_name, MAX_VARIANT_DIGITS+1);
1246     stub_offset += (int)(strlen(variant_name) + 1);
1247
1248     /* Outhdr */
1249     g_strlcpy((char*)&frame_buffer[stub_offset], outhdr_name, MAX_OUTHDR_NAME+1);
1250     stub_offset += (int)(strlen(outhdr_name) + 1);
1251
1252     /* Direction */
1253     frame_buffer[stub_offset] = direction;
1254     stub_offset++;
1255
1256     /* Encap */
1257     frame_buffer[stub_offset] = (guint8)encap;
1258     stub_offset++;
1259
1260     return stub_offset;
1261 }
1262
1263
1264 /**************************************************************/
1265 /* Set pseudo-header info depending upon packet encapsulation */
1266 /**************************************************************/
1267 static void set_pseudo_header_info(wtap *wth,
1268                                    int pkt_encap,
1269                                    gint64 file_offset,
1270                                    union wtap_pseudo_header *pseudo_header,
1271                                    packet_direction_t direction,
1272                                    gchar *aal_header_chars)
1273 {
1274     pseudo_header->dct2000.seek_off = file_offset;
1275     pseudo_header->dct2000.wth = wth;
1276
1277     switch (pkt_encap) {
1278         case WTAP_ENCAP_ATM_PDUS_UNTRUNCATED:
1279             set_aal_info(pseudo_header, direction, aal_header_chars);
1280             break;
1281         case WTAP_ENCAP_ISDN:
1282             set_isdn_info(pseudo_header, direction);
1283             break;
1284         case WTAP_ENCAP_PPP:
1285             set_ppp_info(pseudo_header, direction);
1286             break;
1287
1288         default:
1289             /* Other supported types don't need to set anything here... */
1290             break;
1291     }
1292 }
1293
1294
1295 /*********************************************/
1296 /* Fill in atm pseudo-header with known info */
1297 /*********************************************/
1298 static void set_aal_info(union wtap_pseudo_header *pseudo_header,
1299                          packet_direction_t direction,
1300                          gchar *aal_header_chars)
1301 {
1302     /* 'aal_head_chars' has this format (for AAL2 at least):
1303        Global Flow Control (4 bits) | VPI (8 bits) | VCI (16 bits) |
1304        Payload Type (4 bits) | Padding (3 bits?) | Link? (1 bit) |
1305        Channel Identifier (8 bits) | ...
1306     */
1307
1308     /* Indicate that this is a reassembled PDU */
1309     pseudo_header->dct2000.inner_pseudo_header.atm.flags = 0x00;
1310
1311     /* Channel 0 is DTE->DCE, 1 is DCE->DTE. Always set 0 for now.
1312        TODO: Can we infer the correct value here?
1313        Meanwhile, just use the direction to make them distinguishable...
1314     */
1315     pseudo_header->dct2000.inner_pseudo_header.atm.channel = (direction == received);
1316
1317     /* Assume always AAL2 for FP */
1318     pseudo_header->dct2000.inner_pseudo_header.atm.aal = AAL_2;
1319
1320     pseudo_header->dct2000.inner_pseudo_header.atm.type = TRAF_UMTS_FP;
1321     pseudo_header->dct2000.inner_pseudo_header.atm.subtype = TRAF_ST_UNKNOWN;
1322
1323     /* vpi is 8 bits (2nd & 3rd nibble) */
1324     pseudo_header->dct2000.inner_pseudo_header.atm.vpi =
1325         ((hex_from_char(aal_header_chars[1]) << 4) |
1326           hex_from_char(aal_header_chars[2]));
1327
1328     /* vci is next 16 bits */
1329     pseudo_header->dct2000.inner_pseudo_header.atm.vci =
1330         ((hex_from_char(aal_header_chars[3]) << 12) |
1331          (hex_from_char(aal_header_chars[4]) << 8) |
1332          (hex_from_char(aal_header_chars[5]) << 4) |
1333          hex_from_char(aal_header_chars[6]));
1334
1335     /* 0 means we don't know how many cells the frame comprises. */
1336     pseudo_header->dct2000.inner_pseudo_header.atm.cells = 0;
1337
1338     /* cid is usually last byte.  Unless last char is not hex digit, in which
1339        case cid is derived from last char in ascii */
1340     if (isalnum((guchar)aal_header_chars[11])) {
1341         pseudo_header->dct2000.inner_pseudo_header.atm.aal2_cid =
1342             ((hex_from_char(aal_header_chars[10]) << 4) |
1343               hex_from_char(aal_header_chars[11]));
1344     }
1345     else {
1346         pseudo_header->dct2000.inner_pseudo_header.atm.aal2_cid =
1347             (int)aal_header_chars[11] - '0';
1348     }
1349 }
1350
1351
1352 /**********************************************/
1353 /* Fill in isdn pseudo-header with known info */
1354 /**********************************************/
1355 void set_isdn_info(union wtap_pseudo_header *pseudo_header,
1356                    packet_direction_t direction)
1357 {
1358     /* This field is used to set the 'Source' and 'Destination' columns to
1359        'User' or 'Network'. If we assume that we're simulating the network,
1360        treat Received messages as being destined for the network.
1361     */
1362     pseudo_header->dct2000.inner_pseudo_header.isdn.uton = (direction == received);
1363
1364     /* This corresponds to the circuit ID.  0 is treated as LAPD,
1365        everything else would be treated as a B-channel
1366     */
1367     pseudo_header->dct2000.inner_pseudo_header.isdn.channel = 0;
1368 }
1369
1370
1371 /*********************************************/
1372 /* Fill in ppp pseudo-header with known info */
1373 /*********************************************/
1374 static void set_ppp_info(union wtap_pseudo_header *pseudo_header,
1375                          packet_direction_t direction)
1376 {
1377     /* Set direction. */
1378     pseudo_header->dct2000.inner_pseudo_header.p2p.sent = (direction == sent);
1379 }
1380
1381
1382 /********************************************************/
1383 /* Return hex nibble equivalent of hex string character */
1384 /********************************************************/
1385 guchar hex_from_char(gchar c)
1386 {
1387     if ((c >= '0') && (c <= '9')) {
1388         return c - '0';
1389     }
1390
1391     if ((c >= 'a') && (c <= 'f')) {
1392         return 0x0a + (c - 'a');
1393     }
1394
1395     /* Not a valid hex string character */
1396     return 0xff;
1397 }
1398
1399
1400 /********************************************************/
1401 /* Return character corresponding to hex nibble value   */
1402 /********************************************************/
1403 gchar char_from_hex(guchar hex)
1404 {
1405     static char hex_lookup[16] =
1406     { '0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'};
1407
1408     if (hex > 15) {
1409         return '?';
1410     }
1411
1412     return hex_lookup[hex];
1413 }
1414
1415 /***********************************************/
1416 /* Equality test for packet prefix hash tables */
1417 /***********************************************/
1418 gint packet_offset_equal(gconstpointer v, gconstpointer v2)
1419 {
1420     /* Dereferenced pointers must have same gint64 offset value */
1421     return (*(const gint64*)v == *(const gint64*)v2);
1422 }
1423
1424
1425 /********************************************/
1426 /* Hash function for packet-prefix hash table */
1427 /********************************************/
1428 guint packet_offset_hash_func(gconstpointer v)
1429 {
1430     /* Use low-order bits of git64 offset value */
1431     return (guint)(*(const gint64*)v);
1432 }
1433
1434
1435 /************************************************************************/
1436 /* Parse year, month, day, hour, minute, seconds out of formatted line. */
1437 /* Set secs and usecs as output                                         */
1438 /* Return FALSE if no valid time can be read                            */
1439 /************************************************************************/
1440 gboolean get_file_time_stamp(gchar *linebuff, time_t *secs, guint32 *usecs)
1441 {
1442     int n;
1443     struct tm tm;
1444     #define MAX_MONTH_LETTERS 9
1445     char month[MAX_MONTH_LETTERS+1];
1446
1447     int day, year, hour, minute, second;
1448     int scan_found;
1449
1450     /* If line longer than expected, file is probably not correctly formatted */
1451     if (strlen(linebuff) > MAX_TIMESTAMP_LINE_LENGTH) {
1452         return FALSE;
1453     }
1454
1455     /**************************************************************/
1456     /* First is month. Read until get a space following the month */
1457     for (n=0; (linebuff[n] != ' ') && (n < MAX_MONTH_LETTERS); n++) {
1458         month[n] = linebuff[n];
1459     }
1460     month[n] = '\0';
1461
1462     if      (strcmp(month, "January"  ) == 0)  tm.tm_mon = 0;
1463     else if (strcmp(month, "February" ) == 0)  tm.tm_mon = 1;
1464     else if (strcmp(month, "March"    ) == 0)  tm.tm_mon = 2;
1465     else if (strcmp(month, "April"    ) == 0)  tm.tm_mon = 3;
1466     else if (strcmp(month, "May"      ) == 0)  tm.tm_mon = 4;
1467     else if (strcmp(month, "June"     ) == 0)  tm.tm_mon = 5;
1468     else if (strcmp(month, "July"     ) == 0)  tm.tm_mon = 6;
1469     else if (strcmp(month, "August"   ) == 0)  tm.tm_mon = 7;
1470     else if (strcmp(month, "September") == 0)  tm.tm_mon = 8;
1471     else if (strcmp(month, "October"  ) == 0)  tm.tm_mon = 9;
1472     else if (strcmp(month, "November" ) == 0)  tm.tm_mon = 10;
1473     else if (strcmp(month, "December" ) == 0)  tm.tm_mon = 11;
1474     else {
1475         /* Give up if not found a properly-formatted date */
1476         return FALSE;
1477     }
1478     /* Skip space char */
1479     n++;
1480
1481     /********************************************************/
1482     /* Scan for remaining numerical fields                  */
1483     scan_found = sscanf(linebuff+n, "%d, %d     %d:%d:%d.%u",
1484                         &day, &year, &hour, &minute, &second, usecs);
1485     if (scan_found != 6) {
1486         /* Give up if not all found */
1487         return FALSE;
1488     }
1489
1490     /******************************************************/
1491     /* Fill in remaining fields and return it in a time_t */
1492     tm.tm_year = year - 1900;
1493     tm.tm_mday = day;
1494     tm.tm_hour = hour;
1495     tm.tm_min = minute;
1496     tm.tm_sec = second;
1497     tm.tm_isdst = -1;    /* daylight saving time info not known */
1498
1499     /* Get seconds from this time */
1500     *secs = mktime(&tm);
1501
1502     /* Multiply 4 digits given to get micro-seconds */
1503     *usecs = *usecs * 100;
1504
1505     return TRUE;
1506 }
1507
1508 /* Free the data allocated inside a line_prefix_info_t */
1509 gboolean free_line_prefix_info(gpointer key, gpointer value,
1510                                gpointer user_data _U_)
1511 {
1512     line_prefix_info_t *info = (line_prefix_info_t*)value;
1513
1514     /* Free the 64-bit key value */
1515     g_free(key);
1516
1517     /* Free the strings inside */
1518     g_free(info->before_time);
1519     if (info->after_time) {
1520         g_free(info->after_time);
1521     }
1522
1523     /* And the structure itself */
1524     g_free(info);
1525
1526     /* Item will always be removed from table */
1527     return TRUE;
1528 }
1529