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 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309
|
/*
* $Id: stream64.c 3172 2010-02-15 08:51:54Z baud $
*/
/*
* Copyright (C) 1990-2010 by CERN/IT/PDP/DM
* All rights reserved
*/
#ifndef lint
static char sccsid[] = "@(#)$RCSfile: stream64.c,v $ $Revision: 3172 $ $Date: 2010-02-15 09:51:54 +0100 (Mon, 15 Feb 2010) $ CERN/IT/PDP/DM F. Hemmer, A. Trannoy, F. Hassine, P. Gaillardon";
#endif /* not lint */
/* stream64.c Remote File I/O - Version 3 streaming routines */
#define RFIO_KERNEL 1 /* system part of Remote File I/O */
#include <errno.h>
#include <string.h>
#include <syslog.h> /* system logger */
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "rfio.h" /* remote file I/O definitions */
#include "rfio_rfilefdt.h"
#include "rfcntl.h" /* remote file control mapping macros */
#include "u64subr.h"
#include <pwd.h>
#include <signal.h>
#include "Castor_limits.h"
#include <Cpwd.h>
#include <Cnetdb.h>
#if !defined(_WIN32)
#include <sys/time.h>
#endif
#if defined(_AIX)
#include <sys/select.h>
#endif
#include <stdlib.h>
#if defined(_WIN32)
#include <winsock2.h>
#else
#include <netinet/in.h>
#include <arpa/inet.h> /* for inet_ntoa() */
#if ((defined(IRIX5) || defined(IRIX6)) && ! (defined(LITTLE_ENDIAN) && defined(BIG_ENDIAN) && defined(PDP_ENDIAN)))
#ifdef LITTLE_ENDIAN
#undef LITTLE_ENDIAN
#endif
#define LITTLE_ENDIAN 1234
#ifdef BIG_ENDIAN
#undef BIG_ENDIAN
#endif
#define BIG_ENDIAN 4321
#ifdef PDP_ENDIAN
#undef PDP_ENDIAN
#endif
#define PDP_ENDIAN 3412
#endif
#include <netinet/tcp.h>
#endif
static int na_key = -1;
EXTERN_C int DLL_DECL data_rfio_connect _PROTO((struct sockaddr *, int, char *, int *, int));
static void rfio_setup64_ext_v3(iop,uid,gid,passwd)
RFILE *iop;
int uid;
int gid;
int passwd;
{
extern char * getenv() ; /* External declaration */
char * cp ; /* Character pointer */
int v ;
if ( cp= getenv("RFIO_READOPT") ) {
v = atoi(cp) ;
rfiosetopt(RFIO_READOPT, &v , 4) ;
}
iop->magic = RFIO_MAGIC;
iop->mode64 = 1;
iop->s = -1;
if (uid || gid)
iop->mapping=0;
else
iop->mapping=1;
iop->passwd=passwd; /* used only if mapping == 0 */
iop->uid = (uid==0 ? geteuid(): uid);
iop->gid = (gid==0 ? getegid(): gid);
INIT_TRACE("RFIO_TRACE");
TRACE ( 1,"rfio","rfio_setup64_ext(%d,%d,%d)",iop,uid,gid);
TRACE ( 2,"rfio","rfio_setup64_ext: owner s uid is %d",iop->uid);
TRACE ( 2,"rfio","rfio_setup64_ext: owner s gid is %d",iop->gid);
END_TRACE();
(void) umask(iop->umask=umask(0));
iop->ftype = FFTYPE_C;
iop->binary = 0; /* no translation needed */
iop->eof = 0;
iop->unit = 0;
iop->access = 0;
iop->format = 0;
iop->recl = 0;
iop->blank = 0;
iop->opnopt = 0;
iop->offset= 0 ;
iop->_iobuf.base = NULL;
iop->_iobuf.ptr = NULL;
iop->_iobuf.count = 0;
iop->_iobuf.hsize = 0;
iop->_iobuf.dsize = 0;
iop->lseekhow= -1 ;
iop->ahead= rfioreadopt(RFIO_READOPT) & RFIO_READAHEAD ;
iop->eof= 0 ;
iop->readissued= 0 ;
iop->preseek = 0 ;
iop->nbrecord= 0 ;
iop->version3 = 1;
iop->offset64 = 0;
iop->lseekoff64 = 0;
strcpy(iop->host,"????????");
}
int DLL_DECL rfio_open64_v3(filepath, flags, mode)
char * filepath ;
int flags,mode ;
{
char rh[1] ;
rh[0]='\0' ;
return(rfio_open64_ext_v3(filepath, flags, mode,(uid_t)0,(gid_t)0,0,rh));
}
/*
* Remote file open.
*/
int rfio_open64_ext_v3(filepath, flags, mode,uid,gid,passwd,reqhost)
char * filepath ;
int flags,mode ;
uid_t uid;
gid_t gid;
int passwd ;
char * reqhost; /* In case of a Non-mapped I/O with uid & gid
sepcified, which host will be contacted
for key check ? */
{
int status ; /* Return code */
int rcode ; /* Remote errno */
int len ; /* Request length */
int rlen ; /* Reply length */
int save_errno, save_serrno;
char * host ; /* Host name */
char * filename; /* File name */
char * account; /* VM vestiges ? */
char * p ; /* Pointer to rfio buffer */
RFILE * rfp ; /* Remote file pointer */
WORD req ; /* Request code */
struct passwd *pw; /* User identification */
int rt ; /* daemon in site(0) or not (1) */
int bufsize ; /* socket buffer size */
struct sockaddr_storage to;
int tolen;
extern void rfio_setup64_ext_v3();
extern char * getacct() ;
extern char * getifnam() ;
int data_port;
int rem;
int rb;
int yes; /* Int for socket option */
off64_t offset ; /* Offset at open */
char rfio_buf[BUFSIZ];
int rfp_index, parserc;
char tmpbuf[21];
const char *tname, *tip;
/* Avoiding Valgrind error messages about uninitialized data */
memset(rfio_buf, 0, BUFSIZ);
INIT_TRACE("RFIO_TRACE");
TRACE(1,"rfio","rfio_open64_ext(%s, 0%o, 0%o, %d, %d, %d, %s)",
filepath,flags,mode,uid,gid,passwd,reqhost) ;
#if defined (CLIENTLOG)
/* Client logging */
rfio_logst();
#endif /* CLIENTLOG */
/*
* The file is local.
*/
if ( ! (parserc = rfio_parse(filepath,&host,&filename)) ) {
/* if not a remote file, must be local or HSM */
if ( host != NULL ) {
/*
* HSM file
*/
TRACE(1,"rfio","rfio_open64_ext: %s is an HSM path",
filename);
END_TRACE();
rfio_errno = 0;
return(rfio_HsmIf_open(filename,flags,mode,1));
}
status= open64(filename, flags, mode) ;
END_TRACE() ;
rfio_errno = 0;
#if defined (CLIENTLOG)
/* Client logging */
rfio_logop(status,filename,host,flags);
#endif /* CLIENTLOG */
return status ;
}
if (parserc < 0) {
END_TRACE();
return(-1);
}
/*
* Allocate and initialize a remote file descriptor.
*/
if ((rfp = (RFILE *)malloc(sizeof(RFILE))) == NULL) {
save_errno = errno;
TRACE(2, "rfio", "rfio_open64: malloc(): ERROR occured (errno=%d)", errno);
END_TRACE();
errno = save_errno;
return(-1);
}
rfio_setup64_ext_v3(rfp,(int)uid,(int)gid,passwd) ;
TRACE(2, "rfio", "rfio_open64_ext_v3: RFIO descriptor allocated at 0x%X", rfp);
/*
* Connecting server.
*/
rfp->s = rfio_connect(host,&rt);
if (rfp->s < 0) {
save_errno = errno;
TRACE(2, "rfio", "rfio_open64_ext_v3: Failing Doing first connect");
TRACE(2, "rfio", "rfio_open64_ext_v3: freeing RFIO descriptor at 0X%X", rfp);
(void) free(rfp);
END_TRACE();
errno = save_errno;
return(-1);
}
tolen=sizeof(to);
if (getpeername(rfp->s,(struct sockaddr *)&to, &tolen)<0) {
save_errno = errno;
syslog(LOG_ALERT, "rfio: rfio_open64_ext_v3: getpeername: %s\n",strerror(errno));
TRACE(2, "rfio", "rfio_open64_ext_v3: getpeername: %s\n",strerror(errno));
close(rfp->s);
(void) free(rfp);
END_TRACE();
errno = save_errno;
return(-1);
}
tname = Cgetnetaddress(-1, &to, tolen, &na_key, &tip, NULL, 0, 0);
if (tname == NULL || strlen(tip)>=RESHOSTNAMELEN) {
TRACE(2, "rfio", "rfio_open64_ext_v3: Cgetnetaddress: %s\n",(tname == NULL) ? sstrerror(serrno) : "Names too long");
close(rfp->s);
(void) free(rfp);
END_TRACE();
return(-1);
}
if (strlen(tname)<RESHOSTNAMELEN)
strcpy(rfp->host, tname);
else
strcpy(rfp->host, tip);
if ( !rt && !rfp->mapping ) {
rfp->uid=geteuid() ;
rfp->gid=getegid() ;
TRACE(3,"rfio", "rfio_open64_ext_v3: re-setting (uid,gid) to %d,%d",rfp->uid,rfp->gid) ;
rfp->mapping = 1 ;
}
/*
* Remote file table is not large enough.
*/
if ((rfp_index = rfio_rfilefdt_allocentry(rfp->s)) == -1) {
TRACE(2, "rfio", "rfio_open64_ext_v3: freeing RFIO descriptor at 0X%X", rfp);
(void) close(rfp->s);
(void) free(rfp);
END_TRACE();
errno= EMFILE ;
return -1 ;
}
rfilefdt[rfp_index]=rfp;
bufsize= DEFIOBUFSIZE ;
/* reset error code */
serrno=0;
/* Initialization needed for RFIO version 3 write and read requests */
rfp->first_write = 1;
rfp->wrbyte_net64 = 0;
rfp->first_read = 1;
rfp->rdbyte_net64 = 0;
/* Set the keepalive option on socket */
yes = 1;
if (setsockopt(rfp->s,SOL_SOCKET,SO_KEEPALIVE,(char *)&yes, sizeof(yes)) < 0) {
TRACE(2,"rfio","rfio_open64_ext_v3: setsockopt keepalive on ctrl: %s",strerror(errno));
}
TRACE(2,"rfio","rfio_open64_ext_v3: setsockopt keepalive on ctrl done");
#if (defined(__osf__) && defined(__alpha) && defined(DUXV4))
/* Set the keepalive interval to 20 mns instead of the default 2 hours */
yes = 20 * 60;
if (setsockopt(rfp->s,IPPROTO_TCP,TCP_KEEPIDLE,(char *)&yes,sizeof(yes)) < 0) {
TRACE(2,"rfio","rfio_open64_ext_v3: setsockopt keepidle on ctrl: %s",strerror(errno));
}
TRACE(2,"rfio","rfio_open64_ext_v3: setsockopt keepidle on ctrl done (%d s)",yes);
#endif
#if !(defined(__osf__) && defined(__alpha) && defined(DUXV4))
yes = 1;
if (setsockopt(rfp->s,IPPROTO_TCP,TCP_NODELAY,(char *)&yes,sizeof(yes)) < 0) {
TRACE(2,"rfio","rfio_open64_ext_v3: setsockopt nodelay on ctrl: %s",strerror(errno));
}
TRACE(2,"rfio","rfio_open64_ext_v3: setsockopt nodelay option set on ctrl socket");
#endif /* !(defined(__osf__) && defined(__alpha) && defined(DUXV4)) */
/*
* Allocate, if necessary, an I/O buffer.
*/
rfp->_iobuf.hsize= 3*LONGSIZE + WORDSIZE ;
if ( rfioreadopt(RFIO_READOPT) & RFIO_READBUF ) {
rfp->_iobuf.dsize = bufsize - rfp->_iobuf.hsize;
rfp->_iobuf.count = 0;
rfp->_iobuf.ptr = iodata(rfp) ;
}
if ( (pw = Cgetpwuid(geteuid()) ) == NULL ) {
save_errno = errno; save_serrno = serrno;
TRACE(2, "rfio" ,"rfio_open64_ext_v3: Cgetpwuid() error %s",strerror(errno));
rfio_cleanup_v3(rfp->s);
END_TRACE();
serrno = save_serrno; errno = save_errno;
return -1 ;
}
/*
* Building and sending request.
*/
/* if ((account = getacct()) == NULL) */ account = "";
TRACE(2,"rfio","rfio_open64_ext_v3: uid %d gid %d umask %o ftype %d, mode 0%o, flags 0%o",
rfp->uid,rfp->gid,rfp->umask,rfp->ftype,mode,flags) ;
TRACE(2,"rfio","rfio_open64_ext_v3: account: %s",account) ;
TRACE(2,"rfio","rfio_open64_ext_v3: filename: %s",filename) ;
if (reqhost != NULL && strlen(reqhost) )
TRACE(2,"rfio","rfio_open64_ext_v3: requestor's host: %s",reqhost) ;
p= rfio_buf ;
len= 5*WORDSIZE + 3*LONGSIZE + strlen(account) + strlen(filename) + strlen(pw->pw_name) +
strlen(reqhost) + 4 ;
marshall_WORD(p,RFIO_MAGIC) ;
marshall_WORD(p,RQST_OPEN64_V3) ;
marshall_LONG(p,len) ;
p= rfio_buf + RQSTSIZE ;
marshall_WORD(p,rfp->uid) ;
marshall_WORD(p,rfp->gid) ;
marshall_WORD(p,rfp->umask) ;
marshall_WORD(p,FFTYPE_C) ;
marshall_LONG(p,htonopnflg(flags)) ;
marshall_LONG(p,mode) ;
marshall_STRING(p,account) ;
marshall_STRING(p,filename) ;
marshall_STRING(p,pw->pw_name) ;
marshall_STRING(p,reqhost) ;
marshall_LONG(p,rfp->passwd);
marshall_WORD(p,rfp->mapping);
TRACE(2,"rfio","rfio_open64_v3: sending %d bytes",RQSTSIZE+len) ;
save_serrno = serrno; serrno = 0; save_errno = errno; errno = 0;
if (netwrite_timeout(rfp->s,rfio_buf,RQSTSIZE+len,RFIO_CTRL_TIMEOUT) != (RQSTSIZE+len)) {
save_errno = errno; save_serrno = serrno;
TRACE(2,"rfio","rfio_open64_v3: write(): ERROR occured (errno=%d)", errno) ;
syslog(LOG_ALERT,
"rfio: open64_v3: %s (error %d , serrno %d with %s) [uid=%d,gid=%d,pid=%d] in netwrite(%d,0X%X,%d)",
strerror(errno > 0 ? errno : serrno), errno, serrno,
rfp->host, rfp->uid, rfp->gid, getpid(), rfp->s, rfio_buf,
RQSTSIZE+len);
rfio_cleanup_v3(rfp->s) ;
END_TRACE() ;
serrno = save_serrno; errno = save_errno;
return -1 ;
}
serrno = save_serrno; errno = save_errno;
/*
* Getting status and current offset.
*/
TRACE(1, "rfio", "rfio_open64_v3: reading %d bytes",rfp->_iobuf.hsize) ;
save_serrno = serrno; serrno = 0; save_errno = errno; errno = 0;
/*
* We need to increase the timeout on this netread() because if we
* miss this message the server will hang forever (it will be stuck
* in an accept() on the data socket). A better solution on the
* server side is needed to more properly cope with this problem.
*/
rlen = RQSTSIZE+HYPERSIZE;
if ((rb = netread_timeout(rfp->s,rfio_buf,rlen,10*RFIO_CTRL_TIMEOUT)) != rlen ) {
save_errno = errno; save_serrno = serrno;
#if !defined(_WIN32)
if (rb == 0 || (rb < 0 && errno == ECONNRESET)) {
#else
if (rb == 0 || (rb < 0 && serrno == SETIMEDOUT)) {
#endif
TRACE(2, "rfio", "rfio_open64_v3: read(): The connection with the server has been broken");
} else {
TRACE(2, "rfio", "rfio_open64_v3: read(): ERROR %d occured (errno=%d, serrno=%d)",
rb, errno, serrno);
syslog(LOG_ALERT,
"rfio: open64_v3: %s (error %d, serrno %d with %s) [uid=%d,gid=%d,pid=%d] in netread(%d,0X%X,%d)",
strerror(errno > 0 ? errno : serrno), errno, serrno,
rfp->host, rfp->uid, rfp->gid, getpid(), rfp->s, rfio_buf,
rlen);
}
rfio_cleanup_v3(rfp->s);
END_TRACE();
serrno = save_serrno; errno = save_errno;
return(-1);
}
serrno = save_serrno; errno = save_errno;
p= rfio_buf ;
unmarshall_WORD(p,req) ;
unmarshall_LONG(p,status) ;
unmarshall_LONG(p, rcode) ;
unmarshall_LONG(p, data_port);
unmarshall_HYPER(p, offset);
TRACE(1,"rfio","rfio_open64_v3: return status(%d), rcode(%d), offset %s fd: %d",
status, rcode, u64tostr(offset,tmpbuf,0), rfp->s) ;
/* will have to check if server doesn't support OPEN_V3 */
if ( status < 0 ) {
if ( rcode >= SEBASEOFF)
serrno = rcode ;
else
rfio_errno= rcode ;
rfio_cleanup_v3(rfp->s) ;
/* Operation failed but no error message was sent */
if ( rcode == 0 )
serrno = SENORCODE ;
END_TRACE() ;
return -1 ;
}
else {
rfp->offset64= offset ;
}
/* use the remote address of the control connection,
* but change to the data_port number
*/
switch(to.ss_family) {
case AF_INET:
((struct sockaddr_in *)&to)->sin_port = htons(data_port);
break;
case AF_INET6:
((struct sockaddr_in6 *)&to)->sin6_port = htons(data_port);
break;
default:
TRACE(2,"rfio","unknown address family: %d",to.ss_family);
rfio_cleanup_v3(rfp->s);
END_TRACE() ;
#if defined(_WIN32)
WSASetLastError(WSAEAFNOSUPPORT);
#else
errno = EAFNOSUPPORT;
#endif
return (-1);
}
/* lseekhow field contains the fd of the data socket */
/* Add error checking here ! (-1)*/
rfp->lseekhow = data_rfio_connect((struct sockaddr *)&to,tolen,host,&rem,flags);
/* In case of network errors, abort */
if (rfp->lseekhow == -1) {
save_errno = errno; save_serrno = serrno;
rfio_cleanup_v3(rfp->s) ;
END_TRACE() ;
serrno = save_serrno; errno = save_errno;
return -1 ;
}
/* Set the keepalive option on both sockets */
yes = 1;
if (setsockopt(rfp->lseekhow,SOL_SOCKET,SO_KEEPALIVE,(char *)&yes, sizeof(yes)) < 0) {
TRACE(2,"rfio","open64_v3: setsockopt keepalive on data: %s",strerror(errno));
}
TRACE(2,"rfio","open64_v3: setsockopt keepalive on data done");
#if (defined(__osf__) && defined(__alpha) && defined(DUXV4))
/* Set the keepalive interval to 20 mns instead of the default 2 hours */
yes = 20 * 60;
if (setsockopt(rfp->lseekhow,IPPROTO_TCP,TCP_KEEPIDLE,(char *)&yes,sizeof(yes)) < 0) {
TRACE(2,"rfio","open64_v3: setsockopt keepidle on data: %s",strerror(errno));
}
TRACE(2,"rfio","open64_v3: setsockopt keepidle on data done (%d s)",yes);
#endif
#if !(defined(__osf__) && defined(__alpha) && defined(DUXV4))
yes = 1;
if (setsockopt(rfp->lseekhow,IPPROTO_TCP,TCP_NODELAY,(char *)&yes,sizeof(yes)) < 0) {
TRACE(2,"rfio","open64_v3: setsockopt nodelay on data: %s",strerror(errno));
}
TRACE(2,"rfio","open64_v3: setsockopt nodelay option set on data socket");
#endif /* !(defined(__osf__) && defined(__alpha) && defined(DUXV4)) */
#if defined (CLIENTLOG)
/* Client logging */
rfio_logop(rfp->s,filename,host,flags);
#endif
/*
* The file is open, update rfp->fp
*/
#if defined(hpux)
rfp->fp.__fileL = rfp->s;
#else
#if defined(linux)
rfp->fp._fileno = rfp->s;
#else
#if defined(__Lynx__)
rfp->fp._fd = rfp->s;
#else
rfp->fp._file = rfp->s;
#endif /* __Lynx__ */
#endif /* linux */
#endif /* hpux */
END_TRACE() ;
return (rfp->s) ;
}
void rfio_setup64_v3(iop)
RFILE *iop;
{
(void)rfio_setup64_ext_v3(iop,0,0,0);
}
/*
* Remote file read
*/
int DLL_DECL rfio_read64_v3(ctrl_sock, ptr, size)
char *ptr;
int ctrl_sock, size;
{
int status ; /* Return code of called func */
int HsmType, save_errno;
char * p ; /* Pointer to buffer */
fd_set fdvar;
struct timeval t;
int req;
char *iobuffer;
int byte_in_buffer;
int n;
char rqstbuf[BUFSIZ];
char rfio_buf[BUFSIZ];
int ctrl_sock_index;
char tmpbuf[21];
/* Avoiding Valgrind error messages about uninitialized data */
memset(rfio_buf, 0, BUFSIZ);
INIT_TRACE("RFIO_TRACE");
TRACE(1, "rfio", "rfio_read64_v3(%d, %x, %d)", ctrl_sock, ptr, size) ;
if (size == 0) {
END_TRACE();
return(0);
}
#if defined (CLIENTLOG)
/* Client logging */
rfio_logrd(ctrl_sock,size);
#endif
/*
* Check HSM type. The CASTOR HSM uses normal RFIO (local or remote)
* to perform the I/O. Thus we don't call rfio_HsmIf_read().
*/
HsmType = rfio_HsmIf_GetHsmType(ctrl_sock,NULL);
if ( HsmType > 0 ) {
if ( HsmType != RFIO_HSM_CNS ) {
status = rfio_HsmIf_read(ctrl_sock,ptr,size);
if ( status == -1 ) {
save_errno = errno;
rfio_HsmIf_IOError(ctrl_sock,errno);
errno = save_errno;
}
END_TRACE();
return(status);
}
}
/*
* The file is local.
*/
if ((ctrl_sock_index = rfio_rfilefdt_findentry(ctrl_sock,FINDRFILE_WITHOUT_SCAN)) == -1) {
TRACE(2, "rfio", "rfio_read64_v3: using local read(%d, %x, %d)", ctrl_sock, ptr, size);
status = read(ctrl_sock, ptr, size);
if ( HsmType == RFIO_HSM_CNS ) {
save_errno = errno;
rfio_HsmIf_IOError(ctrl_sock,errno);
errno = save_errno;
}
END_TRACE();
rfio_errno = 0;
return(status);
}
/*
* Checking magic number.
*/
if (rfilefdt[ctrl_sock_index]->magic != RFIO_MAGIC) {
serrno = SEBADVERSION ;
rfio_rfilefdt_freeentry(ctrl_sock_index);
(void) close(ctrl_sock) ;
END_TRACE();
return(-1);
}
/*
* Checking mode 64.
*/
if (!rfilefdt[ctrl_sock_index]->mode64) {
status = rfio_read_v3(ctrl_sock, ptr, size);
END_TRACE();
return(status);
}
if (rfilefdt[ctrl_sock_index]->first_read)
{
rfilefdt[ctrl_sock_index]->first_read = 0;
rfilefdt[ctrl_sock_index]->eof_received = 0;
/*
* Sending request using control socket.
*/
p = rfio_buf;
marshall_WORD(p,RFIO_MAGIC);
marshall_WORD(p,RQST_READ64_V3);
TRACE(2, "rfio", "rfio_read64_v3: sending %d bytes",RQSTSIZE) ;
if (netwrite_timeout(ctrl_sock, rfio_buf, RQSTSIZE, RFIO_CTRL_TIMEOUT) != RQSTSIZE) {
TRACE(2,"rfio","rfio_read64_v3: write(): ERROR occured (errno=%d)",errno) ;
END_TRACE() ;
return -1 ;
}
TRACE(2,"rfio", "rfio_read64_v3: reading %d bytes",RQSTSIZE) ;
if ((n = netread_timeout(ctrl_sock,rqstbuf,RQSTSIZE,RFIO_CTRL_TIMEOUT)) != RQSTSIZE) {
if (n == 0)
TRACE(2, "rfio","read64_v3 ctrl socket: read(): %s\n", sstrerror(serrno));
else
TRACE(2, "rfio","read64_v3 ctrl socket: read(): %s\n", strerror(errno));
END_TRACE();
return -1 ;
}
p = rqstbuf;
unmarshall_WORD(p,req) ;
unmarshall_HYPER(p,rfilefdt[ctrl_sock_index]->filesize64) ;
TRACE(2,"rfio", "rfio_read64_v3: filesize is %s bytes",
u64tostr(rfilefdt[ctrl_sock_index]->filesize64,tmpbuf,0)) ;
}
iobuffer = ptr;
byte_in_buffer = 0;
while (1)
{
/* EOF received previously but not all data read */
if (rfilefdt[ctrl_sock_index]->eof_received &&
rfilefdt[ctrl_sock_index]->filesize64 == rfilefdt[ctrl_sock_index]->rdbyte_net64) {
/* End of file and all data has been read by the client */
TRACE(2,"rfio","rfio_read64_v3: request satisfied eof encountered (read returns %d)",byte_in_buffer);
END_TRACE();
return(byte_in_buffer);
}
FD_ZERO(&fdvar);
/* Bother of ctrl socket till eof has not been received */
if (!rfilefdt[ctrl_sock_index]->eof_received)
FD_SET(ctrl_sock,&fdvar);
FD_SET(rfilefdt[ctrl_sock_index]->lseekhow,&fdvar);
t.tv_sec = 30;
t.tv_usec = 0;
TRACE(2,"rfio","read64_v3: doing select") ;
if (select(FD_SETSIZE,&fdvar,NULL,NULL,&t) < 0)
{
TRACE(2,"rfio","read64_v3: select failed (errno=%d)",errno) ;
END_TRACE() ;
return -1 ;
}
if (FD_ISSET(ctrl_sock,&fdvar)) {
int cause,rcode;
int n;
char rqstbuf[BUFSIZ];
/* Something received on the control socket */
TRACE(2,"rfio", "read64_v3: ctrl socket: reading %d bytes", RQSTSIZE) ;
n = netread_timeout(ctrl_sock, rqstbuf, RQSTSIZE, RFIO_CTRL_TIMEOUT);
if (n != RQSTSIZE) {
if (n == 0)
{
TRACE(2, "rfio","read64_v3: read ctrl socket: close received");
END_TRACE() ;
return(-1);
}
else
{
TRACE(2, "rfio","read64_v3: read ctrl socket: read(): %s", strerror(errno));
END_TRACE() ;
return -1 ;
}
}
p = rqstbuf;
unmarshall_WORD(p,cause) ;
unmarshall_LONG(p,status) ;
unmarshall_LONG(p,rcode) ;
if (cause == REP_ERROR)
{
TRACE(2,"rfio", "read64_v3: reply error status %d, rcode %d", status, rcode) ;
rfio_errno = rcode;
TRACE(2,"rfio","read64_v3: sending ack for error") ;
n = netwrite_timeout(ctrl_sock, rqstbuf, RQSTSIZE, RFIO_CTRL_TIMEOUT);
if (n != RQSTSIZE) {
TRACE(2,"rfio","read64_v3: write(): ERROR occured (errno=%d)",errno) ;
END_TRACE() ;
return -1 ;
}
if ( HsmType == RFIO_HSM_CNS )
rfio_HsmIf_IOError(ctrl_sock,(rfio_errno > 0 ? rfio_errno : serrno));
END_TRACE();
return(-1);
}
if (cause == REP_EOF)
{
rfilefdt[ctrl_sock_index]->eof_received = 1;
TRACE(2,"rfio", "read64_v3: eof received") ;
if (rfilefdt[ctrl_sock_index]->filesize64 == rfilefdt[ctrl_sock_index]->rdbyte_net64) {
/* End of file and all data has been read by the client */
TRACE(2,"rfio","rfio_read64_v3: request satisfied eof encountered (read returns %d)",
byte_in_buffer);
END_TRACE();
return(byte_in_buffer);
}
}
}
if (FD_ISSET(rfilefdt[ctrl_sock_index]->lseekhow,&fdvar))
{
/* Receiving data using data socket */
/* Do not use read here because NT doesn't support that with socket fds */
n = s_nrecv(rfilefdt[ctrl_sock_index]->lseekhow, iobuffer, size-byte_in_buffer);
if (n <= 0) {
if (n == 0)
{
TRACE(2,"rfio","read64_v3: datasoket %d closed by remote end",
rfilefdt[ctrl_sock_index]->lseekhow) ;
END_TRACE() ;
return(-1);
}
else
{
TRACE(2,"rfio","read64_v3: datasoket %d read(): ERROR occured (errno=%d)",
rfilefdt[ctrl_sock_index]->lseekhow, errno) ;
END_TRACE() ;
return -1 ;
}
}
byte_in_buffer += n;
rfilefdt[ctrl_sock_index]->rdbyte_net64 += n;
iobuffer += n;
TRACE(2,"rfio","read64_v3: receiving datasocket=%d bytes,buffer=%d,req=%d",
n, byte_in_buffer, size) ;
if (byte_in_buffer == size)
{
TRACE(2,"rfio","read64_v3: request satisfied completely"); ;
END_TRACE();
return(size);
}
} /* End of FD_ISSET(rfilefdt[ctrl_sock_index]->lseekhow,&fdvar) */
}
}
/*
* Remote file write
*/
int DLL_DECL rfio_write64_v3(ctrl_sock, ptr, size)
char *ptr;
int ctrl_sock, size;
{
int status ; /* Return code of called func */
int HsmType, save_errno, written_to;
char * p ; /* Pointer to buffer */
fd_set fdvar;
struct timeval t;
char rfio_buf[BUFSIZ];
int ctrl_sock_index;
/* Avoiding Valgrind error messages about uninitialized data */
memset(rfio_buf, 0, BUFSIZ);
INIT_TRACE("RFIO_TRACE");
TRACE(1, "rfio", "rfio_write64_v3(%d, %x, %d)", ctrl_sock, ptr, size) ;
if (size == 0) {
END_TRACE();
return(size);
}
#if defined (CLIENTLOG)
/* Client logging */
rfio_logwr(ctrl_sock,size);
#endif
/*
* Check HSM type and if file has been written to. The CASTOR HSM
* uses normal RFIO (local or remote) to perform the I/O. Thus we
* don't call rfio_HsmIf_write().
*/
HsmType = rfio_HsmIf_GetHsmType(ctrl_sock,&written_to);
if ( HsmType > 0 ) {
if ( written_to == 0 && (status = rfio_HsmIf_FirstWrite(ctrl_sock,ptr,size)) < 0 ) {
END_TRACE();
return(status);
}
if ( HsmType != RFIO_HSM_CNS ) {
status = rfio_HsmIf_write(ctrl_sock,ptr,size);
if ( status == -1 ) rfio_HsmIf_IOError(ctrl_sock,errno);
END_TRACE();
return(status);
}
}
/*
* The file is local.
*/
if ((ctrl_sock_index = rfio_rfilefdt_findentry(ctrl_sock,FINDRFILE_WITHOUT_SCAN)) == -1) {
TRACE(2, "rfio", "rfio_write64_v3: using local write(%d, %x, %d)", ctrl_sock, ptr, size);
status = write(ctrl_sock, ptr, size);
if ( HsmType == RFIO_HSM_CNS ) {
save_errno = errno;
rfio_HsmIf_IOError(ctrl_sock,errno);
errno = save_errno;
}
END_TRACE();
rfio_errno = 0;
return(status);
}
/*
* Checking magic number.
*/
if (rfilefdt[ctrl_sock_index]->magic != RFIO_MAGIC) {
serrno = SEBADVERSION ;
rfio_rfilefdt_freeentry(ctrl_sock_index);
(void) close(ctrl_sock) ;
END_TRACE();
return(-1);
}
/*
* Checking mode 64.
*/
if (!rfilefdt[ctrl_sock_index]->mode64) {
status = rfio_write_v3(ctrl_sock, ptr, size);
END_TRACE();
return(status);
}
if (rfilefdt[ctrl_sock_index]->first_write)
{
rfilefdt[ctrl_sock_index]->first_write = 0;
/*
* Sending request using control socket.
*/
p = rfio_buf;
marshall_WORD(p,RFIO_MAGIC);
marshall_WORD(p,RQST_WRITE64_V3);
TRACE(2, "rfio", "rfio_write64_v3: sending %d bytes",RQSTSIZE) ;
if (netwrite_timeout(ctrl_sock, rfio_buf, RQSTSIZE, RFIO_CTRL_TIMEOUT) != RQSTSIZE) {
TRACE(2,"rfio","rfio_write64_v3: write(): ERROR occured (errno=%d)",errno) ;
END_TRACE() ;
return -1 ;
}
}
FD_ZERO(&fdvar);
FD_SET(ctrl_sock,&fdvar);
t.tv_sec = 0;
t.tv_usec = 0;
TRACE(2,"rfio","write64_v3: doing select");
/* Immediate return here to send data as fast as possible */
if (select(FD_SETSIZE,&fdvar,NULL,NULL,&t) < 0)
{
TRACE(2,"rfio","write64_v3: select failed (errno=%d)",errno) ;
END_TRACE() ;
return -1 ;
}
if (FD_ISSET(ctrl_sock,&fdvar))
{
int cause,rcode;
int n;
char rqstbuf[BUFSIZ];
/* Avoiding Valgrind error messages about uninitialized data */
memset(rqstbuf, 0, BUFSIZ);
/* Something received on the control socket */
TRACE(2,"rfio", "write64_v3: ctrl socket: reading %d bytes",RQSTSIZE) ;
if ((n = netread_timeout(ctrl_sock,rqstbuf,RQSTSIZE,RFIO_CTRL_TIMEOUT)) != RQSTSIZE) {
if (n == 0)
TRACE(2, "rfio","write64_v3: read ctrl socket: read(): %s\n", sstrerror(serrno));
else
TRACE(2, "rfio","write64_v3: read ctrl socket: read(): %s\n", strerror(errno));
END_TRACE();
return -1 ;
}
p = rqstbuf;
unmarshall_WORD(p,cause) ;
unmarshall_LONG(p,status) ;
unmarshall_LONG(p,rcode) ;
if (cause == REP_ERROR)
TRACE(2,"rfio", "write64_v3: reply error status %d, rcode %d", status, rcode) ;
else
TRACE(2,"rfio", "write64_v3: unknown error status %d, rcode %d", status, rcode) ;
rfio_errno = rcode;
TRACE(2,"rfio","write64_v3: sending ack for error") ;
if (netwrite_timeout(ctrl_sock, rqstbuf, RQSTSIZE, RFIO_CTRL_TIMEOUT) != RQSTSIZE) {
TRACE(2,"rfio","write64_v3: write(): ERROR occured (errno=%d)",errno) ;
END_TRACE() ;
return -1 ;
}
if ( status < 0 ) rfio_HsmIf_IOError(ctrl_sock,rfio_errno);
END_TRACE();
return(-1);
}
/* Sending data using data socket */
TRACE(2,"rfio","write64_v3: sending %d bytes to datasocket filedesc=%d",
size,rfilefdt[ctrl_sock_index]->lseekhow) ;
if (netwrite_timeout(rfilefdt[ctrl_sock_index]->lseekhow, ptr, size, RFIO_DATA_TIMEOUT) != size) {
TRACE(2,"rfio","write64_v3: data write(): ERROR occured (errno=%d)",errno) ;
END_TRACE() ;
return -1 ;
}
rfilefdt[ctrl_sock_index]->wrbyte_net64 += size;
END_TRACE();
return(size);
}
/* Close part */
/*
* remote file close
*/
int DLL_DECL rfio_close64_v3(s)
int s;
{
int req;
char *p ;
struct {
unsigned int rcount; /* read() count */
unsigned int wcount; /* write() count */
off64_t rbcount; /* byte(s) read */
off64_t wbcount; /* byte(s) written */
} iostatbuf ;
int rcode,status,status1,HsmType;
struct timeval t;
fd_set fdvar;
unsigned char *dummy;
int sizeofdummy = 128 * 1024;
int n;
char rfio_buf[BUFSIZ];
int s_index;
int eod = 0; /* Close received on data socket*/
int save_errno;
/* Avoiding Valgrind error messages about uninitialized data */
memset(rfio_buf, 0, BUFSIZ);
INIT_TRACE("RFIO_TRACE");
TRACE(1, "rfio", "rfio_close64_v3(%d)", s);
/*
* Check if file is Hsm. For CASTOR HSM files, the file is
* closed using normal RFIO (local or remote) close().
*/
HsmType = rfio_HsmIf_GetHsmType(s,NULL);
if ( HsmType > 0 && HsmType != RFIO_HSM_CNS ) {
status = rfio_HsmIf_close(s);
END_TRACE() ;
return(status);
}
/*
* The file is local
*/
if ((s_index = rfio_rfilefdt_findentry(s,FINDRFILE_WITHOUT_SCAN)) == -1) {
char r_token[CA_MAXDPMTOKENLEN+1];
char upath[CA_MAXHOSTNAMELEN+CA_MAXPATHLEN+2];
if ( HsmType == RFIO_HSM_CNS )
status1 = rfio_HsmIf_getipath(s,upath,r_token);
TRACE(2, "rfio", "rfio_close64_v3: using local close(%d)",s) ;
status= close(s) ;
save_errno = errno;
#if defined (CLIENTLOG)
/* Client logging */
rfio_logcl(s);
#endif
if ( HsmType == RFIO_HSM_CNS ) {
if ( status1 == 1 )
status1 = rfio_HsmIf_reqtoput(upath,r_token);
if ( status1 == 0 ) errno = save_errno;
} else
status1 = 0;
END_TRACE() ;
rfio_errno = 0;
return (status ? status : status1) ;
}
/*
* Checking mode 64.
*/
if (!rfilefdt[s_index]->mode64) {
status = rfio_close_v3(s);
END_TRACE() ;
return(status);
}
#if defined (CLIENTLOG)
/* Client logging */
rfio_logcl(s);
#endif
/*
* Checking magic number
*/
if ( rfilefdt[s_index]->magic != RFIO_MAGIC ) {
serrno = SEBADVERSION ;
rfio_rfilefdt_freeentry(s_index);
(void) close(s) ;
END_TRACE();
return(-1);
}
/*
* Sending request.
*/
p= rfio_buf ;
marshall_WORD(p, RFIO_MAGIC);
marshall_WORD(p, RQST_CLOSE64_V3);
marshall_HYPER(p, rfilefdt[s_index]->wrbyte_net64);
TRACE(2, "rfio", "rfio_close64_v3: sending %d bytes",RQSTSIZE) ;
if (netwrite_timeout(s, rfio_buf,RQSTSIZE,RFIO_CTRL_TIMEOUT) != RQSTSIZE) {
TRACE(2, "rfio", "rfio_close64_v3: write(): ERROR occured (errno=%d)", errno);
(void) rfio_cleanup_v3(s) ;
END_TRACE() ;
return -1 ;
}
while (1)
{
FD_ZERO(&fdvar);
FD_SET(s,&fdvar);
if ( rfilefdt[s_index]->lseekhow != INVALID_SOCKET && eod == 0)
FD_SET(rfilefdt[s_index]->lseekhow,&fdvar);
t.tv_sec = 10;
t.tv_usec = 0;
TRACE(2,"rfio","close64_v3: doing select") ;
if (select(FD_SETSIZE,&fdvar,NULL,NULL,&t) < 0)
{
TRACE(2,"rfio","close64_v3: select failed (errno=%d)",errno) ;
END_TRACE() ;
return -1 ;
}
/* CLOSE confirmation received from server */
if (FD_ISSET(s,&fdvar))
{
/*
* Getting data from the network.
*/
TRACE(2, "rfio", "rfio_close64_v3: reading %d bytes",RQSTSIZE) ;
if ((n = netread_timeout(s,rfio_buf,RQSTSIZE,RFIO_CTRL_TIMEOUT)) != RQSTSIZE) {
if (n == 0)
TRACE(2, "rfio", "rfio_close64_v3: read(): ERROR occured (serrno=%d)", serrno);
else
TRACE(2, "rfio", "rfio_close64_v3: read(): ERROR occured (errno=%d)", errno);
(void)rfio_cleanup_v3(s) ;
END_TRACE() ;
return -1 ;
}
/* Closing data socket after the server has read all the data */
TRACE(2, "rfio", "rfio_close64_v3 closing data socket, fildesc=%d",
rfilefdt[s_index]->lseekhow) ;
if (rfilefdt[s_index]->lseekhow != INVALID_SOCKET &&
s_close(rfilefdt[s_index]->lseekhow) < 0)
TRACE(2, "rfio", "rfio_close64_v3: close(): ERROR occured (errno=%d)", errno);
rfilefdt[s_index]->lseekhow = INVALID_SOCKET;
p = rfio_buf ;
unmarshall_WORD(p,req) ;
unmarshall_LONG(p,status) ;
unmarshall_LONG(p, rcode) ;
rfio_errno = rcode ;
switch(req) {
case RQST_CLOSE64_V3:
(void) rfio_cleanup_v3(s) ;
TRACE(1, "rfio", "rfio_close64_v3: return status=%d, rcode=%d",status,rcode) ;
END_TRACE() ;
return status ;
case REP_ERROR:
/* It is possible to receive an error reply from the server write64_v3 routine */
/* This is a bug fix for the internal rfio error returned by close64_v3 when
write64_v3 on the server side returns 'not enough space' while the client
has executing the close64_v3 routine */
(void) rfio_cleanup_v3(s) ;
TRACE(1, "rfio", "rfio_close64_v3: return status=%d, rcode=%d",status,rcode) ;
if ( status < 0 ) rfio_HsmIf_IOError(s,rcode);
END_TRACE() ;
return status ;
case REP_EOF: /* If we read exactly the amount of data in the file */
TRACE(1, "rfio", "rfio_close64_v3: received REP_EOF at close.");
continue;
default:
TRACE(1,"rfio","rfio_close64_v3(): Bad control word received") ;
serrno= SEINTERNAL ;
(void) rfio_cleanup_v3(s) ;
END_TRACE() ;
return -1 ;
}
}
/* Server is still sending data through data socket */
/* Reading data socket to unstuck the server which then will
be able to handle the CLOSE request we have sent previously */
if (FD_ISSET(rfilefdt[s_index]->lseekhow,&fdvar))
{
TRACE(2, "rfio", "rfio_close64_v3: emptying data socket") ;
dummy = (unsigned char *)malloc(sizeof(unsigned char) * sizeofdummy);
if (dummy == NULL) {
TRACE(2,"rfio","rfio_close64_v3(): Cannot allocate memory") ;
(void) rfio_cleanup_v3(s) ;
END_TRACE() ;
return -1 ;
}
/* Do not use read here as NT doesn't support this with socket fds */
if ((n = s_nrecv(rfilefdt[s_index]->lseekhow, dummy, sizeofdummy)) <= 0) {
if (n < 0) /* 0 = continue (data socket closed, waiting for close ack */
{
TRACE(2,"rfio","close64_v3: read failed (errno=%d)",errno) ;
(void) rfio_cleanup_v3(s) ;
END_TRACE() ;
return -1 ;
}
else
if (n == 0) {
TRACE(2, "rfio","rfio_close64_v3: close received on data socket %d",
rfilefdt[s_index]->lseekhow);
eod = 1;
}
else { /* n > 0 */
TRACE(2, "rfio", "rfio_close64_v3: emptying data socket, %d bytes read from data socket",n) ;
}
}
free(dummy);
}
}
}
/*
* lseek for RFIO version 3 transfers
* Must be called only between an open (version 3)
* and the first read or write system call
*/
off64_t rfio_lseek64_v3(s, offset, how)
int s;
off64_t offset;
int how;
{
char *p;
off64_t offset64_out;
char rfio_buf[BUFSIZ];
int rep;
int status,rcode;
int s_index;
char tmpbuf[21];
INIT_TRACE("RFIO_TRACE") ;
TRACE(1, "rfio", "rfio_lseek64_v3(%d,%s,%x)",s,i64tostr(offset,tmpbuf,0),how);
#if defined(CLIENTLOG)
/* Client logging */
rfio_logls(s,offset,how);
#endif /* CLIENTLOG */
/*
* The file is local
*/
if ((s_index = rfio_rfilefdt_findentry(s,FINDRFILE_WITHOUT_SCAN)) == -1) {
TRACE(2, "rfio", "rfio_lseek64_v3: using local lseek(%d,%s,%d)",s,i64tostr(offset,tmpbuf,0),how) ;
offset64_out = lseek64(s,offset,how);
rfio_errno = 0;
END_TRACE();
return offset64_out;
}
/*
* Checking mode 64.
*/
if (!rfilefdt[s_index]->mode64) {
int offsetout;
int offsetin;
off64_t off64;
offsetin = offset;
offsetout = rfio_lseek_v3(s, offsetin, how );
off64 = offsetout;
END_TRACE();
return(off64);
}
/*
* Checking 'how' parameter.
*/
if (how != SEEK_SET) {
errno = EINVAL;
END_TRACE();
return -1;
}
/*
* Checking magic number
*/
if (rfilefdt[s_index]->magic != RFIO_MAGIC) {
serrno = SEBADVERSION;
rfio_rfilefdt_freeentry(s_index);
(void) close(s);
END_TRACE();
return -1;
}
/*
* Sending request.
*/
p = rfio_buf;
marshall_WORD(p,RFIO_MAGIC);
marshall_WORD(p,RQST_LSEEK64_V3);
marshall_HYPER(p,offset);
marshall_LONG(p,how);
TRACE(2, "rfio", "rfio_lseek64_v3: sending %d bytes",RQSTSIZE);
if (netwrite_timeout(s,rfio_buf,RQSTSIZE,RFIO_CTRL_TIMEOUT) != RQSTSIZE) {
TRACE(2, "rfio", "rfio_lseek64_v3: write(): ERROR occured (errno=%d)", errno);
END_TRACE();
return -1;
}
/*
* Receiving reply
*
*/
TRACE(2, "rfio", "rfio_lseek64_v3: reading %d bytes",RQSTSIZE);
if (netread_timeout(s,rfio_buf,WORDSIZE+HYPERSIZE+LONGSIZE,RFIO_DATA_TIMEOUT) != WORDSIZE+HYPERSIZE+LONGSIZE) {
TRACE(2,"rfio","rfio_lseek64_v3: read(): ERROR occured (errno=%d)",errno);
END_TRACE();
return -1;
}
p = rfio_buf;
unmarshall_WORD(p,rep);
unmarshall_HYPER(p,offset64_out);
unmarshall_LONG(p,rcode);
if (rep != RQST_LSEEK64_V3) {
TRACE(1,"rfio","rfio_lseek64_v3(): Bad control word received\n");
serrno = SEINTERNAL;
END_TRACE();
return -1;
}
if (offset64_out < 0)
rfio_errno = rcode;
TRACE(1,"rfio","rfio_lseek64_v3: rep %x, offset64_out %s, rcode %d",
rep,u64tostr(offset64_out,tmpbuf,0),rcode) ;
END_TRACE();
return offset64_out;
}
|