-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtftp12packet.c
256 lines (236 loc) · 5.01 KB
/
tftp12packet.c
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
#include "windows.h"
#include "tftp12packet.h"
#include "tftp12header.h"
#include "stdarg.h"
#include "stdio.h"
#define MAX_DIGITS (11)
#define STR_BLKSIZE "blksize"
#define STR_TIMEOUT "timeout"
#define STR_TSIZE "tsize"
static const char *tftp12ConstStrTransMode[2] = {
"netascii",
"octet",
};
static const char *tftp12ConstStrOption[3] = {
STR_BLKSIZE,STR_TIMEOUT,STR_TSIZE
};
static inline INT32 tftp12IntPow(INT32 x, INT32 y) {
INT32 ret = 1;
for (INT32 i = 0; i < y; i++)
{
ret *= x;
}
return ret;
}
static inline INT32 tftp12StrToNum(char *buf)
{
INT32 cnt = 0;
char *pBuffer = buf;
char tem[MAX_DIGITS];
while (*pBuffer != '\0')
{
if ((*pBuffer >= '0') && (*pBuffer <= '9'))
{
tem[cnt] = *pBuffer;
cnt++;
pBuffer++;
if (cnt >= MAX_DIGITS)
{
/*返回个负数表示错误*/
return -1;
}
}
else
{
return -1;
}
}
INT32 num = 0;
for (INT32 i = 0; i < cnt; i++)
{
num += (tem[i] - '0') * tftp12IntPow(10, (cnt - i - 1));
}
return num;
}
static inline tftp12StrReplace(char *buf, INT32 len)
{
for (INT32 i = 0; i < (len-1); i++)
{
if (buf[i] == '\0')
{
/*随便替换为一个其他字符*/
buf[i] = 1;
}
}
}
//INT32 tftp12ExtractOption(char *buffer, INT32 len, TFTP12Option *option)
// {
// char *position = NULL;
// INT32 num = 0;
// tftp12StrReplace(buffer, len);
// for (INT32 i = 0; i < TFTP12_NUMBER_OF_OPTIONS; i++)
// {
// position = strstr(buffer, tftp12ConstStrOption[i]);
// if (position == NULL)
// {
// continue;
// }
// position++;
// num = tftp12StrToNum(position);
// if (num < 0)
// {
// return ERROR;
// }
//
// /*必须保证TFTP12Option定义顺序,与tftp12ConstStrOption定义的顺序一致*/
// ((INT32 *)option)[i] = num;
// }
// return TRUE;
// }
// INT32 tftp12CreateRequestPkt(TFTP12Description *desc)
// {
// if (desc == NULL)
// {
// return ERROR;
// }
//
// /*检查各个指针是否为空*/
// if (desc->filename == NULL || desc->sendBuffer == NULL || desc->mode == NULL)
// {
// return ERROR;
// }
//
// /*只接受opcode = 1或2*/
// if (!(desc->writeOrRead == TFTP12_OPCODE_READ_REQUEST || desc->writeOrRead == TFTP12_OPCODE_WRITE_REQUEST))
// {
// return ERROR;
// }
//
// memset(desc->sendBuffer, '\0', TFTP12_CONTROL_PACKET_MAX_SIZE);
//
// char *pWalk = desc->sendBuffer;
// *pWalk = 0;
// pWalk++;
// *pWalk = (INT8)(desc->writeOrRead);
// pWalk++;
// strcpy(pWalk, desc->filename);
// pWalk += strlen(desc->filename) + 1;
// strcpy(pWalk, desc->mode);
// pWalk += strlen(desc->mode) + 1;
//
//
// /*INT32最长为10个字符*/
// char num[11];
//
// /*填充blksize字段*/
// strcpy(pWalk, STR_BLKSIZE);
// pWalk += strlen(STR_BLKSIZE) + 1;
// _itoa(desc->option.blockSize, num, 10);
// strcpy(pWalk, num);
// pWalk += strlen(num) + 1;
//
// /*填充timeout字段*/
// strcpy(pWalk, STR_TIMEOUT);
// pWalk += strlen(STR_TIMEOUT) + 1;
// _itoa(desc->option.timeout, num, 10);
// strcpy(pWalk, num);
// pWalk += strlen(num) + 1;
//
// /*填充tsize字段*/
// strcpy(pWalk, STR_TSIZE);
// pWalk += strlen(STR_TSIZE) + 1;
// _itoa(desc->option.tsize, num, 10);
// strcpy(pWalk, num);
// pWalk += strlen(num) + 1;
// *pWalk = 0;
// pWalk++;
//
// /*返回报文长度*/
// return pWalk - desc->sendBuffer;
// }
// INT32 tftp12CreateOACKPkt(TFTP12Description *desc)
// {
// if (desc == NULL)
// {
// return ERROR;
// }
//
// /*检查各个指针是否为空*/
// if (desc->sendBuffer == NULL || desc->mode == NULL)
// {
// return ERROR;
// }
//
// memset(desc->sendBuffer, '\0', TFTP12_BUFFER_SIZE(desc));
//
// char *pWalk = desc->sendBuffer;
// *pWalk = 0;
// pWalk++;
// *pWalk = (INT8)(TFTP12_OPCODE_OACK);
// pWalk++;
//
// strcpy(pWalk, desc->filename);
// pWalk += strlen(desc->filename) + 1;
// strcpy(pWalk, desc->mode);
// pWalk += strlen(desc->mode) + 1;
//
//
// /*INT32最长为10个字符*/
// char num[10];
//
// /*填充blksize字段*/
// strcpy(pWalk, STR_BLKSIZE);
// pWalk += strlen(STR_BLKSIZE) + 1;
// _itoa(desc->option.blockSize, num, 10);
// strcpy(pWalk, num);
// pWalk += strlen(num) + 1;
//
// /*填充timeout字段*/
// strcpy(pWalk, STR_TIMEOUT);
// pWalk += strlen(STR_TIMEOUT) + 1;
// _itoa(desc->option.timeout, num, 10);
// strcpy(pWalk, num);
// pWalk += strlen(num) + 1;
//
// /*填充tsize字段*/
// strcpy(pWalk, STR_TSIZE);
// pWalk += strlen(STR_TSIZE) + 1;
// _itoa(desc->option.tsize, num, 10);
// strcpy(pWalk, num);
// pWalk += strlen(num) + 1;
// *pWalk = 0;
// pWalk++;
//
// /*返回报文长度*/
// return pWalk - desc->sendBuffer;
// }
//
//
//
// char *tftp12CreateDataPkt(char *buf, INT16 blockNum)
// {
// char *pktHead = buf - 4;
// pktHead = 0;
// pktHead++;
// pktHead = TFTP12_OPCODE_DATA;
// pktHead++;
// *(INT16 *)pktHead = htonl(blockNum);
// pktHead++;
// return pktHead;
// }
//
// INT16 tftp12ParseDataPkt(char *buf,INT32 blockSize)
// {
// INT16 blockNum = 0;
// char *tem = buf;
// tem++;
// if (*tem!=TFTP12_OPCODE_DATA)
// {
// //换宏
// return -1;
// }
// tem++;
// blockNum = *(INT16*)tem;
// blockNum = htonl(blockNum);
// return blockNum;
// }