blob: e1cc24b9bf8a004ddd966a152cd9b6e312501f59 [file] [log] [blame]
bellardc7f74642004-08-24 21:57:12 +00001/* tftp defines */
Paolo Bonzinicb9c3772012-12-06 12:15:58 +01002#ifndef SLIRP_TFTP_H
3#define SLIRP_TFTP_H 1
bellardc7f74642004-08-24 21:57:12 +00004
Bernhard Übelacker5f22b052014-06-21 15:26:05 +02005#define TFTP_SESSIONS_MAX 20
bellardc7f74642004-08-24 21:57:12 +00006
7#define TFTP_SERVER 69
8
9#define TFTP_RRQ 1
10#define TFTP_WRQ 2
11#define TFTP_DATA 3
12#define TFTP_ACK 4
13#define TFTP_ERROR 5
ths1f697db2007-02-20 00:07:50 +000014#define TFTP_OACK 6
bellardc7f74642004-08-24 21:57:12 +000015
16#define TFTP_FILENAME_MAX 512
17
18struct tftp_t {
19 struct ip ip;
20 struct udphdr udp;
Stefan Weilb6dce922010-07-22 22:15:23 +020021 uint16_t tp_op;
bellardc7f74642004-08-24 21:57:12 +000022 union {
ths5fafdf22007-09-16 21:08:06 +000023 struct {
Stefan Weilb6dce922010-07-22 22:15:23 +020024 uint16_t tp_block_nr;
25 uint8_t tp_buf[512];
bellardc7f74642004-08-24 21:57:12 +000026 } tp_data;
ths5fafdf22007-09-16 21:08:06 +000027 struct {
Stefan Weilb6dce922010-07-22 22:15:23 +020028 uint16_t tp_error_code;
29 uint8_t tp_msg[512];
bellardc7f74642004-08-24 21:57:12 +000030 } tp_error;
Stefan Weil89d2d3af2011-02-23 19:40:14 +010031 char tp_buf[512 + 2];
bellardc7f74642004-08-24 21:57:12 +000032 } x;
33};
34
Jan Kiszka460fec62009-06-24 14:42:31 +020035struct tftp_session {
36 Slirp *slirp;
37 char *filename;
Hervé Poussineau78be0562012-09-10 20:52:25 +020038 int fd;
Jan Kiszka460fec62009-06-24 14:42:31 +020039
40 struct in_addr client_ip;
Stefan Weilb6dce922010-07-22 22:15:23 +020041 uint16_t client_port;
Hervé Poussineau4aa401f2012-09-13 12:39:36 +020042 uint32_t block_nr;
Jan Kiszka460fec62009-06-24 14:42:31 +020043
44 int timestamp;
45};
46
bellardc7f74642004-08-24 21:57:12 +000047void tftp_input(struct mbuf *m);
Paolo Bonzinicb9c3772012-12-06 12:15:58 +010048
49#endif