123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- #ifndef TFTP_H
- #define TFTP_H
-
-
-
- #include <gpxe/in.h>
- #include "buffer.h"
- #include "nic.h"
- #include "ip.h"
- #include "udp.h"
-
- #define TFTP_PORT 69
- #define TFTP_DEFAULT_BLKSIZE 512
- #define TFTP_MAX_BLKSIZE 1432
-
- #define TFTP_RRQ 1
- #define TFTP_WRQ 2
- #define TFTP_DATA 3
- #define TFTP_ACK 4
- #define TFTP_ERROR 5
- #define TFTP_OACK 6
-
- #define TFTP_ERR_FILE_NOT_FOUND 1
- #define TFTP_ERR_ACCESS_DENIED 2
- #define TFTP_ERR_DISK_FULL 3
- #define TFTP_ERR_ILLEGAL_OP 4
- #define TFTP_ERR_UNKNOWN_TID 5
- #define TFTP_ERR_FILE_EXISTS 6
- #define TFTP_ERR_UNKNOWN_USER 7
- #define TFTP_ERR_BAD_OPTS 8
-
-
- struct tftp_rrq {
- struct iphdr ip;
- struct udphdr udp;
- uint16_t opcode;
- char data[TFTP_DEFAULT_BLKSIZE];
- } PACKED;
-
-
- struct tftp_data {
- struct iphdr ip;
- struct udphdr udp;
- uint16_t opcode;
- uint16_t block;
- uint8_t data[TFTP_MAX_BLKSIZE];
- } PACKED;
-
-
- struct tftp_ack {
- struct iphdr ip;
- struct udphdr udp;
- uint16_t opcode;
- uint16_t block;
- } PACKED;
-
-
- struct tftp_error {
- struct iphdr ip;
- struct udphdr udp;
- uint16_t opcode;
- uint16_t errcode;
- char errmsg[TFTP_DEFAULT_BLKSIZE];
- } PACKED;
-
-
- struct tftp_oack {
- struct iphdr ip;
- struct udphdr udp;
- uint16_t opcode;
- uint8_t data[TFTP_DEFAULT_BLKSIZE];
- } PACKED;
-
-
- struct tftp_common {
- struct iphdr ip;
- struct udphdr udp;
- uint16_t opcode;
- } PACKED;
-
-
- union tftp_any {
- struct tftp_common common;
- struct tftp_rrq rrq;
- struct tftp_data data;
- struct tftp_ack ack;
- struct tftp_error error;
- struct tftp_oack oack;
- };
-
-
- struct tftp_state {
-
-
- struct sockaddr_in server;
-
-
- in_port_t lport;
-
-
- struct sockaddr_in multicast;
-
-
- int master;
-
-
- unsigned int blksize;
-
-
- off_t tsize;
-
-
- unsigned int block;
- };
-
-
-
- struct tftpreq_info_t {
- struct sockaddr_in *server;
- const char *name;
- unsigned short blksize;
- } PACKED;
-
- struct tftpblk_info_t {
- char *data;
- unsigned int block;
- unsigned int len;
- int eof;
- } PACKED;
-
- #define TFTP_MIN_PACKET (sizeof(struct iphdr) + sizeof(struct udphdr) + 4)
-
- #endif
|