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
|
/*
* contributed by Stanislav Voronyi <stas@uanet.kharkov.ua>
* - some modifications by Jean-Louis Noel <jln@habcnx.stben.be>
*/
#ifdef HAS_TCP
#include <sys/types.h>
#include <unistd.h>
#include <time.h>
#include <utime.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/stat.h>
#include "xutil.h"
#include "lutil.h"
#include "ttyio.h"
#include "session.h"
#include "config.h"
#include "emsi.h"
#define TCP_CMD 0x87
#define TCP_DATA 0xe1
static FILE *fout;
static FILE *in;
static char txbuf[2048];
static char rxbuf[2048];
static int rx_type;
static time_t startime,endtime;
static off_t rxbytes,sbytes;
static int sendfile(char *,char *);
static int finsend(void);
static int receivefile(char *,time_t,off_t);
static int resync(off_t);
static int closeit(int);
static int tcp_sblk(char *,int,int);
static int tcp_rblk(char *,int *);
static int getsync();
extern FILE *openfile(char*,time_t,off_t,off_t*,int(*)(off_t));
extern int closefile(int);
int tcpsndfiles(file_list*);
int tcpsndfiles(lst)
file_list *lst;
{
int rc=0,maxrc=0;
file_list *tmpf;
loginf("start TCP send%s",lst?"":" (dummy)");
if(getsync()){
logerr("cant get synchronization");
return 1;
}
for (tmpf=lst;tmpf && (maxrc == 0);tmpf=tmpf->next)
{
if (tmpf->remote)
{
rc=sendfile(tmpf->local,tmpf->remote);
rc=abs(rc);
if (rc > maxrc) maxrc=rc;
if (rc == 0) execute_disposition(tmpf);
}
else if (maxrc == 0) execute_disposition(tmpf);
}
if (maxrc < 2)
{
rc=finsend();
rc=abs(rc);
}
if (rc > maxrc) maxrc=rc;
loginf("TCP send rc=%d",maxrc);
return maxrc;
}
int tcprcvfiles(void);
int tcprcvfiles(void)
{
int rc,bufl;
long filesize,filetime;
char *filename,*p;
loginf("start TCP receive");
if(getsync()){
logerr("cant get synchronization");
return 1;
}
next:
if((rc=tcp_rblk(rxbuf,&bufl))==0){
if(strncmp(rxbuf,"SN",2)==0){
rc=tcp_sblk("RN",2,TCP_CMD);
return rc;
}
else if(strncmp(rxbuf,"S ",2)==0){
p=strchr(rxbuf+2,' ');
if (p!=NULL)
*p=0;
else
return 1;
filename=xstrcpy(rxbuf+2);
p++;
filesize=strtol(p,&p,10);
filetime=strtol(++p,(char **)NULL,10);
}
else return rc==0?1:rc;
if(strlen(filename) && filesize && filetime)
rc=receivefile(filename,filetime,filesize);
if (fout)
{
if (closeit(0)) {
logerr("Error closing file");
}
(void)tcp_sblk("FERROR",6,TCP_CMD);
}
else
goto next;
}
loginf("TCP receive rc=%d",rc);
return abs(rc);
}
static int sendfile(ln,rn)
char *ln,*rn;
{
int rc=0;
struct stat st;
struct flock fl;
int bufl;
long offset;
int sverr;
fl.l_type=F_RDLCK;
fl.l_whence=0;
fl.l_start=0L;
fl.l_len=0L;
if ((in=fopen(ln,"r")) == NULL)
{
sverr=errno;
logerr("$tcpsend cannot open file %s, skipping",ln);
if (sverr == ENOENT) return 0;
else return 1;
}
if (fcntl(fileno(in),F_SETLK,&fl) != 0)
{
loginf("$tcpsend cannot lock file %s, skipping",ln);
fclose(in);
return 1;
}
if (stat(ln,&st) != 0)
{
loginf("$cannot access \"%s\", skipping",ln);
fclose(in);
return 1;
}
if(st.st_size>0){
loginf("TCP send \"%s\" as \"%s\" (%lu bytes)",
ln,rn,(unsigned long)st.st_size);
(void)time(&startime);
}
else{
loginf("File \"%s\" has 0 size, skiped",ln);
return 0;
}
sprintf(txbuf,"S %s %lu %lu",rn,(unsigned long)st.st_size,st.st_mtime);
bufl=strlen(txbuf);
rc=tcp_sblk(txbuf,bufl,TCP_CMD);
rc=tcp_rblk(rxbuf,&bufl);
if (strncmp(rxbuf,"RS",2)==0)
{
loginf("file %s considered normally sent",ln);
return 0;
}
else if (strncmp(rxbuf,"RN",2)==0)
{
loginf("remote refusing receiving, aborting",ln);
return 2;
}
else if(strncmp(rxbuf,"ROK",3)==0){
if(bufl > 3 && rxbuf[3]==' '){
offset=strtol(rxbuf+4,(char **)NULL,10);
if(fseek(in,offset,SEEK_SET)!=0){
logerr("$tcpsend cannot seek in file %s",ln);
return 1;
}
}
else offset=0;
}
else return rc;
while((bufl=fread(&txbuf,1,1024,in))!=0){
if((rc=tcp_sblk(txbuf,bufl,TCP_DATA))>0)
break;
}
fclose(in);
if(rc==0){
strcpy(txbuf,"EOF");
rc=tcp_sblk(txbuf,3,TCP_CMD);
rc=tcp_rblk(rxbuf,&bufl);
}
if (rc == 0 && strncmp(rxbuf,"FOK",3)==0)
{
(void)time(&endtime);
if ((startime=endtime-startime) == 0) startime=1;
debug(7,"st_size %d, offset %d",st.st_size,offset);
loginf("sent %lu bytes in %ld seconds (%ld cps)",
(unsigned long)st.st_size-offset,
startime,
(long)(st.st_size-offset)/startime);
return 0;
}
else if(strncmp(rxbuf,"FERROR",6)==0){
logerr("$tcpsend remote file error",ln);
return rc==0?1:rc;
}
else return rc==0?1:rc;
}
static int resync(off)
off_t off;
{
sprintf(txbuf,"ROK %ld",(long)off);
return 0;
}
static int closeit(success)
int success;
{
int rc;
rc=closefile(success);
fout=NULL;
sbytes=rxbytes-sbytes;
(void)time(&endtime);
if ((startime=endtime-startime) == 0L) startime=1L;
loginf("%s %llu bytes in %ld seconds (%ld cps)",
success?"received":"dropped after",
sbytes,startime,sbytes/startime);
return rc;
}
static int finsend()
{
int rc,bufl;
rc=tcp_sblk("SN",2,TCP_CMD);
if(rc) return rc;
rc=tcp_rblk(rxbuf,&bufl);
if(strncmp(rxbuf,"RN",2)==0)
return rc;
else
return 1;
}
static int receivefile(fn,ft,fs)
char *fn;
time_t ft;
off_t fs;
{
int rc,bufl;
loginf("TCP receive \"%s\" (%lu bytes)",fn,fs);
strcpy(txbuf,"ROK");
fout=openfile(fn,ft,fs,&rxbytes,resync);
if ( !fout) return 1;
(void)time(&startime);
sbytes=rxbytes;
if (fs == rxbytes) {
loginf("Skipping %s", fn);
closeit(1);
rc=tcp_sblk("RS",2,TCP_CMD);
return rc;
}
bufl=strlen(txbuf);
rc=tcp_sblk(txbuf,bufl,TCP_CMD);
while((rc=tcp_rblk(rxbuf,&bufl))==0){
if(rx_type==TCP_CMD)
break;
if(fwrite(rxbuf,1,bufl,fout)!=bufl)
break;
rxbytes+=bufl;
}
if(rc) return rc;
if(rx_type==TCP_CMD && bufl==3 && strncmp(rxbuf,"EOF",3)==0){
if(ftell(fout)==fs){
closeit(1);
rc=tcp_sblk("FOK",3,TCP_CMD);
return rc;
}
else return 1;
}
else return 1;
}
static int
tcp_sblk(buf,len,typ)
char *buf;
int len,typ;
{
PUTCHAR(0xc6);
PUTCHAR(typ);
PUTCHAR((len>>8)&0x0ff);
PUTCHAR(len&0x0ff);
PUT(buf,len);
PUTCHAR(0x6c);
return tty_status;
}
static int
tcp_rblk(buf,len)
char *buf;
int *len;
{
int c;
*len=0;
c=GETCHAR(120);
if(c!=0xc6)
return c;
c=GETCHAR(120);
rx_type=c;
if(c!=TCP_CMD && c!=TCP_DATA)
return c;
c=GETCHAR(120);
*len=c<<8;
c=GETCHAR(120);
*len+=c;
GET(buf,*len,120);
c=GETCHAR(120);
if(c!=0x6c)
return c;
return tty_status;
}
static int
getsync()
{
int c;
PUTCHAR(0xaa);
PUTCHAR(0x55);
debug(9,"getsync try to synchronize");
gs:
if(tty_status==STAT_TIMEOUT){
debug(9,"getsync failed");
return 1;}
while((c=GETCHAR(120))!=0xaa)
if(tty_status==STAT_TIMEOUT){
debug(9,"getsync failed");
return 1;}
if((c=GETCHAR(120))!=0x55)
goto gs;
debug(9,"getsync ok");
return tty_status;
}
#endif /* HAS_TCP */
|