aboutsummaryrefslogtreecommitdiffstats
path: root/packet-telnet.c
blob: 36b7917f93f80a12bd29803e3c595be1793c32ae (plain)
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
/* packet-telnet.c
 * Routines for telnet packet dissection
 * Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
 *
 * $Id: packet-telnet.c,v 1.7 1999/11/16 11:42:59 guy Exp $
 *
 * Ethereal - Network traffic analyzer
 * By Gerald Combs <gerald@unicom.net>
 * Copyright 1998 Gerald Combs
 *
 * Copied from packet-pop.c
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#include <stdio.h>

#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif

#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif

#include <string.h>
#include <glib.h>
#include "packet.h"

static int proto_telnet = -1;

static gint ett_telnet = -1;
static gint ett_telnet_subopt = -1;

/* Some defines for Telnet */

#define TN_IAC   255
#define TN_DONT  254
#define TN_DO    253
#define TN_WONT  252
#define TN_WILL  251
#define TN_SB    250
#define TN_GA    249
#define TN_EL    248
#define TN_EC    247
#define TN_AYT   246
#define TN_AO    245
#define TN_IP    244
#define TN_BRK   243
#define TN_DM    242
#define TN_NOP   241
#define TN_SE    240
#define TN_EOR   239
#define TN_ABORT 238
#define TN_SUSP  237
#define TN_EOF   236

char *options[] = {
  "Binary Transmission",
  "Echo",
  "Reconnection",
  "Suppress Go Ahead",
  "Approx Message Size Negotiation",
  "Status",
  "Timing Mark",
  "Remote Controlled Trans and Echo",
  "Output Line Width",
  "Output Page Size",
  "Output Carriage-Return Disposition",
  "Output Horizontal Tab Stops",
  "Output Horizontal Tab Disposition",
  "Output Formfeed Disposition",
  "Output Vertical Tabstops",
  "Output Vertical Tab Disposition",
  "Output Linefeed Disposition",
  "Extended ASCII",
  "Logout",
  "Byte Macro",
  "Data Entry Terminal",
  "SUPDUP",
  "SUPDUP Output",
  "Send Location",
  "Terminal Type",
  "End of Record",
  "TACACS User Identification",
  "Output Marking",
  "Terminal Location Number",
  "Telnet 3270 Regime",
  "X.3 PAD",
  "Negotiate About Window Size",
  "Terminal Speed",
  "Remote Flow Control",
  "Linemode",
  "X Display Location",
  "Environment Option",
  "Authentication Option",
  "Encryption Option",
  "New Environment Option",
  "TN3270E"
};

void telnet_sub_option(proto_tree *telnet_tree, char *rr, int *i, int offset, int max_data)
{
  proto_tree *ti, *option_tree;
  int subneg_len, req, si1, not_found = 1;
  volatile int i1;
  char *opt, sub_opt_data[1500];

  memset(sub_opt_data, '\0', sizeof(sub_opt_data));

  /* Figure out the option and type */

  opt = options[(unsigned int)rr[*i]];
  req = (unsigned int)rr[*i + 1];

  i1 = *i + 2; si1 = i1;
  while ((i1 < max_data) && (not_found)) {  

    if ((unsigned char)rr[i1] == (unsigned char)TN_IAC)
      not_found = 0;
    else
      i1++;

  }

  subneg_len = i1 - *i + 2;

  ti = proto_tree_add_text(telnet_tree, offset, subneg_len, "Suboption Begin: %s", opt);

  option_tree = proto_item_add_subtree(ti, ett_telnet_subopt);

  proto_tree_add_text(option_tree, offset + 2, subneg_len - 2, "%s %s", (req ? "Send your" : "Here's my"), opt);

  if (req == 0) {  /* Add the value */

    memcpy(sub_opt_data, rr + *i + 2, subneg_len - 2);
    proto_tree_add_text(option_tree, offset + 4, subneg_len - 4, "Value: %s", format_text(sub_opt_data, subneg_len - 4));
    *i += subneg_len - 2;

  }
  else {

    *i += subneg_len - 2;

  }
}

void telnet_command(proto_tree *telnet_tree, char *rr, int *i, int offset, int max_data) 
{
  char *opt;
  
  switch((unsigned char)rr[*i]) {

  case TN_EOF:

    proto_tree_add_text(telnet_tree, offset, 2, "Command: End of File");
    (*i)++;
    break;

  case TN_SUSP:

    proto_tree_add_text(telnet_tree, offset, 2, "Command: Suspend Current Process");
    (*i)++;
    break;

  case TN_ABORT:

    proto_tree_add_text(telnet_tree, offset, 2, "Command: Abort Process");
    (*i)++;
    break;

  case TN_EOR:

    proto_tree_add_text(telnet_tree, offset, 2, "Command: End of Record");
    (*i)++;
    break;

  case TN_SE:

    proto_tree_add_text(telnet_tree, offset, 2, "Command: Suboption End");
    (*i)++;
    break;

  case TN_NOP:

    proto_tree_add_text(telnet_tree, offset, 2, "Command: No Operation");
    (*i)++;
    break;

  case TN_DM:

    proto_tree_add_text(telnet_tree, offset, 2, "Command: Data Mark");
    (*i)++;
    break;

  case TN_BRK:

    proto_tree_add_text(telnet_tree, offset, 2, "Command: Break");
    (*i)++;
    break;

  case TN_IP:

    proto_tree_add_text(telnet_tree, offset, 2, "Command: Interrupt Process");
    (*i)++;
    break;

  case TN_AO:

    proto_tree_add_text(telnet_tree, offset, 2, "Command: Abort Output");
    (*i)++;
    break;

  case TN_AYT:

    proto_tree_add_text(telnet_tree, offset, 2, "Command: Are You There?");
    (*i)++;
    break;

  case TN_EC:

    proto_tree_add_text(telnet_tree, offset, 2, "Command: Escape Character");
    (*i)++;
    break;

  case TN_EL:

    proto_tree_add_text(telnet_tree, offset, 2, "Command: Erase Line");
    (*i)++;
    break;

  case TN_GA:

    proto_tree_add_text(telnet_tree, offset, 2, "Command: Go Ahead");
    (*i)++;
    break;

  case TN_SB:

    (*i)++;
    telnet_sub_option(telnet_tree, rr, i, offset, max_data);
    break;

  case TN_WILL:

    if (rr[*i + 1] > (sizeof(options)/sizeof(char *)))
      opt = "<unknown option>";
    else
      opt = options[(unsigned int)rr[*i + 1]];
		      
    proto_tree_add_text(telnet_tree, offset, 3, "Command: Will %s", opt);
    *i += 2; /* skip two chars */
    break;

  case TN_WONT:

    if (rr[*i + 1] > (sizeof(options)/sizeof(char *)))
      opt = "<unknown option>";
    else
      opt = options[(unsigned int)rr[*i + 1]];
		      
    proto_tree_add_text(telnet_tree, offset, 3, "Command: Won't %s", opt);
    *i += 2; /* skip two chars */
    break;

  case TN_DO:

    if (rr[*i + 1] > (sizeof(options)/sizeof(char *)))
      opt = "<unknown option>";
    else
      opt = options[(unsigned int)rr[*i + 1]];
		      
    proto_tree_add_text(telnet_tree, offset, 3, "Command: Do %s", opt);
    *i += 2; /* skip two chars */
    break;

  case TN_DONT:

    if (rr[*i + 1] > (sizeof(options)/sizeof(char *)))
      opt = "<unknown option>";
    else
      opt = options[(unsigned int)rr[*i + 1]];
		      
    proto_tree_add_text(telnet_tree, offset, 3, "Command: Don't %s", opt);
    *i += 2; /* skip two chars */
    break;

  }

}

void
dissect_telnet(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
{
        proto_tree      *telnet_tree, *ti;
	gchar           rr[1500];
	int i1;
	int i2;
	int max_data = pi.captured_len - offset;

	memset(rr, '\0', sizeof(rr));

	if (check_col(fd, COL_PROTOCOL))
		col_add_str(fd, COL_PROTOCOL, "TELNET");

	if (check_col(fd, COL_INFO)) {

	  col_add_fstr(fd, COL_INFO, "Telnet Data ...");

	}

	if (tree) {

	  char data[1500];
	  int i3;

	  memset(data, '\0', sizeof(data));

	  memcpy(rr, pd + offset, max_data);

	  ti = proto_tree_add_item(tree, proto_telnet, offset, END_OF_FRAME, NULL);
	  telnet_tree = proto_item_add_subtree(ti, ett_telnet);

	  i1 = i2 = i3 = 0;

	  while (i1 < max_data) {

	    if ((unsigned char)rr[i1] == (unsigned char)TN_IAC) {

	      if (strlen(data) > 0) {

		proto_tree_add_text(telnet_tree, offset + i2, strlen(data), "Data: %s", format_text(data, strlen(data)));
		memset(data, '\0', sizeof(data));
		i3 = 0;

	      }
	      
	      i1++;
	      telnet_command(telnet_tree, rr, &i1, offset + i1 - 1, max_data);
	      i2 = i1;

	    }
	    else {

	      data[i3] = rr[i1];
	      i3++;
	      i1++;


	    }
	  }

	  if (strlen(data) > 0) { /* Still some data to add */

	    proto_tree_add_text(telnet_tree, offset + i2, strlen(data), "Data: %s", format_text(data, strlen(data)));

	  }

	}

}

void
proto_register_telnet(void)
{
/*        static hf_register_info hf[] = {
                { &variable,
                { "Name",           "telnet.abbreviation", TYPE, VALS_POINTER }},
        };*/
	static gint *ett[] = {
		&ett_telnet,
		&ett_telnet_subopt,
	};

        proto_telnet = proto_register_protocol("Telnet", "telnet");
 /*       proto_register_field_array(proto_telnet, hf, array_length(hf));*/
	proto_register_subtree_array(ett, array_length(ett));
}