File: null_analyze.c

package info (click to toggle)
ssldump 1.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 920 kB
  • sloc: ansic: 7,818; sh: 11; makefile: 3
file content (152 lines) | stat: -rw-r--r-- 4,746 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/**
   null_analyze.c


   Copyright (C) 1999-2000 RTFM, Inc.
   All Rights Reserved

   This package is a SSLv3/TLS protocol analyzer written by Eric Rescorla
   <ekr@rtfm.com> and licensed by RTFM, Inc.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions
   are met:
   1. Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
   2. Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.
   3. All advertising materials mentioning features or use of this software
      must display the following acknowledgement:

      This product includes software developed by Eric Rescorla for
      RTFM, Inc.

   4. Neither the name of RTFM, Inc. nor the name of Eric Rescorla may be
      used to endorse or promote products derived from this
      software without specific prior written permission.

   THIS SOFTWARE IS PROVIDED BY ERIC RESCORLA AND RTFM, INC. ``AS IS'' AND
   ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
   FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY SUCH
   DAMAGE.

   $Id: null_analyze.c,v 1.6 2001/11/26 22:28:16 ekr Exp $


   ekr@rtfm.com  Thu Jan  7 22:58:27 1999
 */

#include <ctype.h>
#include "network.h"
#include "proto_mod.h"
#include "debug.h"

typedef struct null_analyzer_ {
  int num;
} null_analyzer;

static int create_null_analyzer PROTO_LIST((void *handle,
                                            proto_ctx *ctx,
                                            tcp_conn *conn,
                                            proto_obj **objp,
                                            struct sockaddr_storage *i_addr,
                                            u_short i_port,
                                            struct sockaddr_storage *r_addr,
                                            u_short r_port,
                                            struct timeval *base_time));

static int create_null_analyzer(void *handle,
                                proto_ctx *ctx,
                                tcp_conn *conn,
                                proto_obj **objp,
                                struct sockaddr_storage *i_addr,
                                u_short i_port,
                                struct sockaddr_storage *r_addr,
                                u_short r_port,
                                struct timeval *base_time) {
  null_analyzer *obj = 0;
  static int ctr;

  if(!(obj = (null_analyzer *)calloc(1, sizeof(null_analyzer))))
    ERETURN(R_NO_MEMORY);

  obj->num = ctr++;

  DBG((0, "Creating analyzer for connection %d\n", obj->num));

  *objp = (proto_obj *)obj;
  return 0;
}

int destroy_null_analyzer(proto_obj **objp) {
#ifdef DEBUG
  null_analyzer *obj;
#endif

  if(!objp || !*objp)
    return 0;

#ifdef DEBUG
  obj = (null_analyzer *)*objp;
#endif
  DBG((0, "Destroying analyzer for connection %d\n", obj->num));

  free(*objp);
  *objp = 0;

  return 0;
}

int data_null_analyzer(proto_obj *_obj, segment *seg, int direction) {
#ifdef DEBUG
  null_analyzer *obj = (null_analyzer *)_obj;
#endif
  DBG((0, "Processing data for connection %d dir %d\n", obj->num, direction));

  for(; seg; seg = seg->next) {
    int i;

    for(i = 0; i < MIN(seg->len, 20); i++) {
      if(!isascii(seg->data[i]))
        break;
    }
    if(i < 20)
      xdump("NSEGMENT", seg->data, seg->len);
    else {
      printf("NSEGMENT: ");
      fwrite(seg->data, 1, seg->len, stdout);
    }
    printf("====\n");
  }

  return 0;
}

int fin_null_analyzer(proto_obj *_obj, packet *p, int direction) {
#ifdef DEBUG
  null_analyzer *obj = (null_analyzer *)_obj;
#endif
  DBG((0, "Received FIN on connection %d\n", obj->num));
  return 0;
}

static struct proto_mod_vtbl_ null_vtbl = {
    0,
    0,
    0,
    create_null_analyzer,
    0,
    destroy_null_analyzer,
    data_null_analyzer,
    fin_null_analyzer,
};

struct proto_mod_ null_mod = {0, &null_vtbl};