1999-10-08 07:47:09 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996, 1997
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that: (1) source code distributions
|
|
|
|
* retain the above copyright notice and this paragraph in its entirety, (2)
|
|
|
|
* distributions including binary code include the above copyright notice and
|
|
|
|
* this paragraph in its entirety in the documentation or other materials
|
|
|
|
* provided with the distribution, and (3) all advertising materials mentioning
|
|
|
|
* features or use of this software display the following acknowledgement:
|
|
|
|
* ``This product includes software developed by the University of California,
|
|
|
|
* Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
|
|
|
|
* the University nor the names of its contributors may be used to endorse
|
|
|
|
* or promote products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*/
|
|
|
|
|
2016-08-14 21:42:19 +08:00
|
|
|
/* \summary: Trivial File Transfer Protocol (TFTP) printer */
|
|
|
|
|
1999-11-21 17:36:43 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2018-01-22 04:27:08 +08:00
|
|
|
#include <config.h>
|
1999-10-08 07:47:09 +08:00
|
|
|
#endif
|
|
|
|
|
2018-01-20 22:59:49 +08:00
|
|
|
#include "netdissect-stdinc.h"
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2015-09-06 05:35:58 +08:00
|
|
|
#include "netdissect.h"
|
2002-12-11 15:13:49 +08:00
|
|
|
#include "extract.h"
|
2013-12-31 07:52:13 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Trivial File Transfer Protocol (IEN-133)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Packet types.
|
|
|
|
*/
|
|
|
|
#define RRQ 01 /* read request */
|
|
|
|
#define WRQ 02 /* write request */
|
|
|
|
#define DATA 03 /* data packet */
|
|
|
|
#define ACK 04 /* acknowledgement */
|
|
|
|
#define TFTP_ERROR 05 /* error code */
|
|
|
|
#define OACK 06 /* option acknowledgement */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Error codes.
|
|
|
|
*/
|
|
|
|
#define EUNDEF 0 /* not defined */
|
|
|
|
#define ENOTFOUND 1 /* file not found */
|
|
|
|
#define EACCESS 2 /* access violation */
|
|
|
|
#define ENOSPACE 3 /* disk full or allocation exceeded */
|
|
|
|
#define EBADOP 4 /* illegal TFTP operation */
|
|
|
|
#define EBADID 5 /* unknown transfer ID */
|
|
|
|
#define EEXISTS 6 /* file already exists */
|
|
|
|
#define ENOUSER 7 /* no such user */
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2013-12-26 22:08:06 +08:00
|
|
|
|
1999-10-08 07:47:09 +08:00
|
|
|
/* op code to string mapping */
|
2013-09-25 00:46:24 +08:00
|
|
|
static const struct tok op2str[] = {
|
1999-10-08 07:47:09 +08:00
|
|
|
{ RRQ, "RRQ" }, /* read request */
|
|
|
|
{ WRQ, "WRQ" }, /* write request */
|
|
|
|
{ DATA, "DATA" }, /* data packet */
|
|
|
|
{ ACK, "ACK" }, /* acknowledgement */
|
2008-04-12 00:47:38 +08:00
|
|
|
{ TFTP_ERROR, "ERROR" }, /* error code */
|
2007-09-14 09:02:07 +08:00
|
|
|
{ OACK, "OACK" }, /* option acknowledgement */
|
1999-10-08 07:47:09 +08:00
|
|
|
{ 0, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
/* error code to string mapping */
|
2013-09-25 00:46:24 +08:00
|
|
|
static const struct tok err2str[] = {
|
1999-10-08 07:47:09 +08:00
|
|
|
{ EUNDEF, "EUNDEF" }, /* not defined */
|
|
|
|
{ ENOTFOUND, "ENOTFOUND" }, /* file not found */
|
|
|
|
{ EACCESS, "EACCESS" }, /* access violation */
|
|
|
|
{ ENOSPACE, "ENOSPACE" }, /* disk full or allocation exceeded */
|
|
|
|
{ EBADOP, "EBADOP" }, /* illegal TFTP operation */
|
|
|
|
{ EBADID, "EBADID" }, /* unknown transfer ID */
|
|
|
|
{ EEXISTS, "EEXISTS" }, /* file already exists */
|
|
|
|
{ ENOUSER, "ENOUSER" }, /* no such user */
|
|
|
|
{ 0, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print trivial file transfer program requests
|
|
|
|
*/
|
|
|
|
void
|
2014-03-21 20:48:24 +08:00
|
|
|
tftp_print(netdissect_options *ndo,
|
2017-12-14 02:17:47 +08:00
|
|
|
const u_char *bp, u_int length)
|
1999-10-08 07:47:09 +08:00
|
|
|
{
|
2017-12-14 02:17:47 +08:00
|
|
|
const char *cp;
|
2018-01-12 03:52:30 +08:00
|
|
|
u_int opcode;
|
2015-07-21 08:23:41 +08:00
|
|
|
u_int ui;
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2018-03-14 23:54:17 +08:00
|
|
|
ndo->ndo_protocol = "tftp";
|
1999-10-08 07:47:09 +08:00
|
|
|
/* Print length */
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT(" %u", length);
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
/* Print tftp request type */
|
2015-07-21 08:23:41 +08:00
|
|
|
if (length < 2)
|
|
|
|
goto trunc;
|
2017-11-23 04:58:44 +08:00
|
|
|
ND_TCHECK_2(bp);
|
2017-11-23 06:54:09 +08:00
|
|
|
opcode = EXTRACT_BE_U_2(bp);
|
2018-01-12 03:52:30 +08:00
|
|
|
cp = tok2str(op2str, "tftp-#%u", opcode);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" %s", cp);
|
1999-10-08 07:47:09 +08:00
|
|
|
/* Bail if bogus opcode */
|
|
|
|
if (*cp == 't')
|
|
|
|
return;
|
2017-02-16 07:24:56 +08:00
|
|
|
bp += 2;
|
|
|
|
length -= 2;
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
switch (opcode) {
|
|
|
|
|
|
|
|
case RRQ:
|
|
|
|
case WRQ:
|
2015-07-21 08:23:41 +08:00
|
|
|
if (length == 0)
|
|
|
|
goto trunc;
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" ");
|
2015-07-21 08:23:41 +08:00
|
|
|
/* Print filename */
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("\"");
|
2018-04-30 18:52:10 +08:00
|
|
|
ui = nd_printztn(ndo, bp, length, ndo->ndo_snapend);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("\"");
|
2015-07-21 08:23:41 +08:00
|
|
|
if (ui == 0)
|
|
|
|
goto trunc;
|
2017-02-16 07:24:56 +08:00
|
|
|
bp += ui;
|
2015-07-21 08:23:41 +08:00
|
|
|
length -= ui;
|
|
|
|
|
|
|
|
/* Print the mode - RRQ and WRQ only */
|
|
|
|
if (length == 0)
|
|
|
|
goto trunc; /* no mode */
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" ");
|
2018-04-30 18:52:10 +08:00
|
|
|
ui = nd_printztn(ndo, bp, length, ndo->ndo_snapend);
|
2015-07-21 08:23:41 +08:00
|
|
|
if (ui == 0)
|
|
|
|
goto trunc;
|
2017-02-16 07:24:56 +08:00
|
|
|
bp += ui;
|
2015-07-21 08:23:41 +08:00
|
|
|
length -= ui;
|
|
|
|
|
|
|
|
/* Print options, if any */
|
|
|
|
while (length != 0) {
|
2017-12-05 03:21:48 +08:00
|
|
|
ND_TCHECK_1(bp);
|
2017-12-05 05:45:01 +08:00
|
|
|
if (EXTRACT_U_1(bp) != '\0')
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" ");
|
2018-04-30 18:52:10 +08:00
|
|
|
ui = nd_printztn(ndo, bp, length, ndo->ndo_snapend);
|
2015-07-21 08:23:41 +08:00
|
|
|
if (ui == 0)
|
|
|
|
goto trunc;
|
2017-02-16 07:24:56 +08:00
|
|
|
bp += ui;
|
2015-07-21 08:23:41 +08:00
|
|
|
length -= ui;
|
2003-02-19 16:01:36 +08:00
|
|
|
}
|
2015-07-21 08:23:41 +08:00
|
|
|
break;
|
2014-01-02 10:27:54 +08:00
|
|
|
|
2015-07-21 08:23:41 +08:00
|
|
|
case OACK:
|
|
|
|
/* Print options */
|
|
|
|
while (length != 0) {
|
2017-12-05 03:21:48 +08:00
|
|
|
ND_TCHECK_1(bp);
|
2017-12-05 05:45:01 +08:00
|
|
|
if (EXTRACT_U_1(bp) != '\0')
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" ");
|
2018-04-30 18:52:10 +08:00
|
|
|
ui = nd_printztn(ndo, bp, length, ndo->ndo_snapend);
|
2015-07-21 08:23:41 +08:00
|
|
|
if (ui == 0)
|
|
|
|
goto trunc;
|
2017-02-16 07:24:56 +08:00
|
|
|
bp += ui;
|
2015-07-21 08:23:41 +08:00
|
|
|
length -= ui;
|
|
|
|
}
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACK:
|
|
|
|
case DATA:
|
2015-07-21 08:23:41 +08:00
|
|
|
if (length < 2)
|
|
|
|
goto trunc; /* no block number */
|
2017-11-23 04:58:44 +08:00
|
|
|
ND_TCHECK_2(bp);
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT(" block %u", EXTRACT_BE_U_2(bp));
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
|
2008-04-12 00:47:38 +08:00
|
|
|
case TFTP_ERROR:
|
1999-10-08 07:47:09 +08:00
|
|
|
/* Print error code string */
|
2015-07-21 08:23:41 +08:00
|
|
|
if (length < 2)
|
|
|
|
goto trunc; /* no error code */
|
2017-11-23 04:58:44 +08:00
|
|
|
ND_TCHECK_2(bp);
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT(" %s", tok2str(err2str, "tftp-err-#%u \"",
|
2018-01-07 18:47:30 +08:00
|
|
|
EXTRACT_BE_U_2(bp)));
|
2017-02-16 07:24:56 +08:00
|
|
|
bp += 2;
|
2015-07-21 08:23:41 +08:00
|
|
|
length -= 2;
|
1999-10-08 07:47:09 +08:00
|
|
|
/* Print error message string */
|
2015-07-21 08:23:41 +08:00
|
|
|
if (length == 0)
|
|
|
|
goto trunc; /* no error message */
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" \"");
|
2018-04-30 18:52:10 +08:00
|
|
|
ui = nd_printztn(ndo, bp, length, ndo->ndo_snapend);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("\"");
|
2015-07-21 08:23:41 +08:00
|
|
|
if (ui == 0)
|
1999-10-08 07:47:09 +08:00
|
|
|
goto trunc;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* We shouldn't get here */
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT("(unknown #%u)", opcode);
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
trunc:
|
2018-05-02 23:15:04 +08:00
|
|
|
nd_print_trunc(ndo);
|
1999-10-08 07:47:09 +08:00
|
|
|
return;
|
|
|
|
}
|