-
Notifications
You must be signed in to change notification settings - Fork 0
/
receiver.c
491 lines (442 loc) · 8.97 KB
/
receiver.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
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
/*Non-Canonical Input Processing*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <termios.h>
#include <stdio.h>
#include <string.h>
#define BAUDRATE B38400
#define _POSIX_SOURCE 1 /* POSIX compliant source */
#define FALSE 0
#define TRUE 1
#define FLAG 0x7E
#define START 0
#define F 1
#define FA 2
#define FAC 3
#define A 0x03
#define A2 0x01
#define CSET 0x03
#define CS0 0x00
#define CS1 0x02
#define CUA 0x07
#define CDISC 0x0B
#define SUCCESS 4
#define ESCAPE0 0X7d
#define ESCAPE1 0x5e
#define ESCAPE2 0x5d
volatile int STOP=FALSE;
volatile int STOP2=FALSE;
volatile int I=FALSE;
volatile int ENDOFDATA=FALSE;
struct termios oldtio,newtio;
char buf[255],buf2[5],databuf[255];
unsigned char filename[50];
int lerdados(unsigned char* buffer,unsigned char* dados, int pointer);
int llopen(int porta){
int fd;
char nomeporta[11];
switch(porta){
case 0:
strcpy(nomeporta,"/dev/ttyS0");
break;
case 1:
strcpy(nomeporta,"/dev/ttyS1");
break;
default:
perror("Porta invalida\n");
return -1;
}
fd = open(nomeporta, O_RDWR | O_NOCTTY);
if (fd <0){
return fd;
}
if (tcgetattr(fd,&oldtio) == -1) { /* save current port settings */
perror("tcgetattr");
exit(-1);
}
bzero(&newtio, sizeof(newtio));
newtio.c_cflag = BAUDRATE | CS8 | CLOCAL | CREAD;
newtio.c_iflag = IGNPAR;
newtio.c_oflag = 0;
/* set input mode (non-canonical, no echo,...) */
newtio.c_lflag = 0;
newtio.c_cc[VTIME] = 0; /* inter-character timer unused */
newtio.c_cc[VMIN] = 1; /* blocking read until 5 chars received */
tcflush(fd, TCIOFLUSH);
if ( tcsetattr(fd,TCSANOW,&newtio) == -1) {
perror("tcsetattr");
exit(-1);
}
//fcntl(fd,F_SETFL, FNDELAY);
printf("Serial port open\n\n");
return fd;
}
int llread(int fd, unsigned char* buffer)
{
int res,i=0;
char state=START;
while(state!=SUCCESS)
{
res = read(fd,buffer+i,sizeof(char));
switch(state){
case START:
if(buffer[i]==FLAG){
state = F;
i++;
}
break;
case F:
if(buffer[i]==FLAG){
state = F;
}
else{
i++;
state=FA;
}
break;
case FA:
if(buffer[i] == F){
state = F;
i=1;
}
else{
state =FAC;
i++;
}
break;
case FAC:
do{
i++;
res = read(fd,buffer+i,1);
}while(buffer[i]!=FLAG);
state=SUCCESS;
break;
}
}
state=START;
return i;
}
int llwrite(int fd, char* buffer, int length){
int res;
res = write(fd,buffer,length);
return res;
}
void llclose(int fd){
sleep(1);
tcsetattr(fd,TCSANOW,&oldtio);
close(fd);
printf("\nSerial port closed, exiting...\n");
}
//Verifica se o SET foi bem recebido, devolvendo TRUE ou FALSE
int checkSET(char* buffer){
if( buffer[0]!=FLAG
|| buffer[1]!=A
|| buffer[2]!=CSET
|| buffer[3]!=(buf[1]^buf[2])
|| buffer[4]!=FLAG)
return FALSE;
else
return TRUE;
}
//Devolve TRUE quando a primeira trama I é detectada
int checkFirstI(char* buffer){
if( buffer[0]==FLAG
&& buffer[1]==A
&& (buffer[2]==CS0 || buffer[2]==CS1))
return TRUE;
else
return FALSE;
}
//Escreve o UA de resposta para o SET, devolvendo o numero de bytes escritos
int writeUA(int fd){
char buffer[5];
int res;
buffer[0]=FLAG;
buffer[1]=A;
buffer[2]=CUA;
buffer[3]=A^CUA;
buffer[4]=FLAG;
res = llwrite(fd,buffer,5);
if(res>0)
printf("Resposta enviada (UA)\n");
else
exit(1);
return res;
}
//Retira do buffer apenas o que e informacao e coloca no data, devolvendo um pointer para a posicao actual no data
int getData(char* buffer, char* data){
int k,i=4;
for(k=0;buffer[i]!=FLAG;k++){
data[k]=buffer[i];
if(data[k-1]==ESCAPE0 && data[k]==ESCAPE1){
data[k-1]=FLAG;
k--;
}
else if(data[k-1]==ESCAPE0 && data[k]==ESCAPE2){
data[k-1]=ESCAPE0;
k--;
}
i++;
}
return k-1;
}
//Calcula o BCC2 e verifica se é igual ao que foi recebido, devolvendo TRUE ou FALSE
int checkData(char* buffer, int pos)
{
char temp=0;
int k;
for(k=0;k<pos;k++){
temp = temp^buffer[k];
}
if(temp==buffer[pos])
{
return TRUE;
}
else
return FALSE;
}
//Verifica se o I foi bem recebido
int checkI(char* buffer,int cns){
int res,i;
char data[15000];
if( buffer[0]!=FLAG
|| buffer[1]!=A
|| buffer[2]!=cns
|| buffer[3]!=(A^cns))
{
return FALSE;
}
else
{
res = getData(buffer,data);
res = checkData(data,res);
return res;
}
}
//Verifica se o DISC foi bem recebido, devolvendo TRUE ou FALSE
int checkDISC(char* buffer){
if( buffer[0]==FLAG
&& buffer[1]==A
&& buffer[2]==CDISC
&& buffer[3]==(A^CDISC)
&& buffer[4]==FLAG){
return TRUE;
}
else{
return FALSE;
}
}
//Escreve o RR de resposta ao I, devolvendo o numero de bytes escritos
int writeRR(int fd, int cnr){
char buffer[5];
int res;
buffer[0]=FLAG;
buffer[1]=A;
buffer[2]=cnr;
buffer[3]=A^cnr;
buffer[4]=FLAG;
res = llwrite(fd,buffer,5);
if(res>0)
printf("Resposta enviada (RR)\n");
else
exit(1);
return res;
}
//Verifica se o ultimo UA foi bem recebido, devolvendo TRUE ou FALSE
int checkUA(char* buffer){
if( buffer[0]==FLAG
&& buffer[1]==A2
&& buffer[2]==CUA
&& buffer[3]==(A2^CUA)
&& buffer[4]==FLAG)
return TRUE;
else
return FALSE;
}
//Escreve o DISC de resposta, devolvendo o numero de bytes escritos
int writeDISC(int fd){
char buffer[5];
int res;
buffer[0]=FLAG;
buffer[1]=A2;
buffer[2]=CDISC;
buffer[3]=(A2^CDISC);
buffer[4]=FLAG;
res = llwrite(fd,buffer,5);
if(res>0)
printf("Comando enviado (DISC)\n");
else
exit(1);
return res;
}
//Recebe o SET e responde UA
void estabelecimento(int fd, unsigned char* buffer)
{
int res;
int isValid = FALSE, next = FALSE, canProceed = FALSE;
while(canProceed != TRUE || next!=TRUE)
{
res = llread(fd,buffer);
isValid = checkSET(buffer);
if(isValid==TRUE)
{
printf("Comando recebido (SET)\n");
canProceed=TRUE;
writeUA(fd);
}
else
{
next = checkFirstI(buffer);
}
}
}
//Recebe as tramas de dados e responde RR
int transfDados(int fd, char* buffer, char* data, int filesize)
{
char dados[15000];
int res=0,i, a=0;
int pointer=0;
char nr,cns,cnr;
nr=0x0;
cns=0x0;
cnr=0x5;
int isValid = FALSE, next = FALSE;
while(next!=TRUE)
{
isValid = checkI(buffer,cns);
if(isValid==TRUE)
{
getData(buffer,data);
if (data[0]==1)
{
printf("Recebida trama de controlo de dados (start)\n");
char fsize[data[2]];
while(a<data[2])
{
fsize[a]=data[a+3];
a++;
}
filesize = atoi(fsize);
a=0;
while(a<=data[4+data[2]])
{
filename[a]=data[4+data[2]+a];
//printf("%c",filename[a]);
a++;
}
filename[a]='\0';
}
else if(data[0]==0)
{
pointer = lerdados(data,dados,pointer);
printf("A escrever dados na posicao %d de um total de %d\n",pointer,filesize);
}
else if(data[0]==2)
{
printf("Recebida trama de controlo de dados (end)\n");
/*if(filesize!=(data[3]))
{
printf("Dados corrompidos, tamanho do ficheiro nao e valido.%d\n",data[3]);
exit(1);
}
if(filename!=data[6])
{
printf("Dados corrompidos. Impossivel terminar.\n");
exit(1);
}*/
}
else
{
printf("Trama de dados corrompida.\n");
}
//Verifica o valor do N(r) anterior para o poder alterar
if(nr==0x1){
nr=0x0;
cns=0x0;
cnr=0x5;
}
else{
nr=0x1;
cns=0x2;
cnr=0x25;
}
writeRR(fd,cnr);//Escreve o RR de resposta que permite ao Sender identificar se enviou o I bem ou necessita de enviar outra vez
}
else
{
next = checkDISC(buffer);
if(next==FALSE)
{
writeRR(fd,cnr);
}
else{
for(i=0; i<filesize; i++){
data[i] = dados[i];
}
return filesize;
}
}
llread(fd,buffer);
}
}
//Recebe o DISC, responde DISC e recebe o UA
void terminacao(fd){
char* buffer[255];
char next = FALSE, isValid=TRUE;
while(next!=TRUE){
if(isValid==TRUE){
printf("Comando recebido (DISC)\n");
writeDISC(fd);
}
next = checkUA(buffer);
if(next!=TRUE){
llread(fd,buffer);
isValid = checkDISC(buffer);
}
}
printf("Comando recebido (UA)\n");
}
int main(int argc, char** argv)
{
FILE *file;
char data[150000];
int fd, i;
fd = llopen(0);
int filesize;
unsigned char firstData[10000];
estabelecimento(fd, firstData);
filesize = transfDados(fd, firstData, data, filesize);
terminacao(fd);
/*printf("filename: \n");
for(i=0; i<strlen(filename); i++){
printf("%c",filename[i]);
}
printf("Dados:\n ");
for(i=0;i<filesize;i++){
printf("%x ",data[i]);
}*/
file=open(filename+1, O_WRONLY | O_CREAT, S_IWRITE | S_IREAD);
write(file,data,filesize);
close(file);
llclose(fd);
return 0;
}
// cenas ---------------------------------------------------------------------------
//Le os pacotes de dados e separa o que sao dados do que sao os campos c, n , L1 e L2
//Devolve um pointer indicando o sitio nos dados em que esta funcao terminou
int lerdados(unsigned char* buffer,unsigned char* dados, int pointer)
{
int k, a;
k=256*buffer[2]+buffer[3]; //Calcula o numero total de octetos que vão ser enviados no campo dos dados
printf("k: %d\n", k);
a=4;
while(k>0)
{
dados[pointer]=buffer[a];
a++;
k--;
pointer++;
}
return pointer;
}