=================================================================== RCS file: /home/cvs/OpenXM/src/kan96xx/plugin/oxmisc.c,v retrieving revision 1.5 retrieving revision 1.31 diff -u -p -r1.5 -r1.31 --- OpenXM/src/kan96xx/plugin/oxmisc.c 2000/03/20 01:53:47 1.5 +++ OpenXM/src/kan96xx/plugin/oxmisc.c 2016/08/29 01:15:01 1.31 @@ -1,5 +1,6 @@ -/* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc.c,v 1.4 1999/11/27 01:41:11 takayama Exp $ */ +/* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc.c,v 1.30 2016/03/31 03:22:55 takayama Exp $ */ #include +#include #include #include #include @@ -11,6 +12,7 @@ #include #include #include +#include #define SET_MYERROROUT { if (MyErrorOut == NULL) MyErrorOut=stdout; } /* It is also defined in oxmisc2.c */ FILE *MyErrorOut = NULL; @@ -21,10 +23,12 @@ FILE *MyErrorOut = NULL; #include "../Kan/extern.h" #include "ox_kan.h" +#include "mysig.h" + #define READBUFSIZE 5000 -int OxVersion = 199909080; +int OxVersion = 200012030; int UseOXPacketSerial = 1; int SerialOX = 1; extern int Quiet; @@ -48,7 +52,7 @@ int readOneByte(int fd) /* blocking */ if (oxSocketSelect0(fd,-1)) { /* block */ size = read(fd,data,1); if (size == 0) { - fprintf(MyErrorOut,"oxSocketSelect0() returns 1, but there is no data. You peer may be killed.\n"); + fprintf(MyErrorOut,"oxSocketSelect0() returns 1, but there is no data. Your peer may be killed.\n"); return(-1); } return(data[0]); @@ -94,8 +98,8 @@ int readOneByte_org(int fd) /* blocking */ if (oxSocketSelect0(fd,-1)) { /* block */ size = read(fd,data,READBUFSIZE-1); if (size == 0) { - fprintf(MyErrorOut,"oxSocketSelect0() returns 1, but there is no data. You peer may be killed.\n"); - return(-1); + fprintf(MyErrorOut,"oxSocketSelect0() returns 1, but there is no data. Your peer may be killed.\n"); + return(-1); } from = 0; to = size; @@ -173,10 +177,31 @@ int oxWaitSyncBall(ox_stream ostream) { int sss; int mtag; + int com; while ((mtag = oxGetOXheader(ostream,&sss)) != OX_SYNC_BALL) { - fprintf(stderr,"Looking for the next message tag. mtag=%d\n",mtag); - /* or stdout */ + switch (mtag) { + case OX_COMMAND: + fprintf(stderr,"Waiting for command body: "); fflush(NULL); + com=oxGetInt32(ostream); + fprintf(stderr,"%d. Done\n",com); + break; + default: /* Todo, need support OX_DATA */ + fprintf(stderr,"Looking for the next message tag. Current unknown or unimplented mtag=%d\n",mtag); + if (UseOXPacketSerial) fprintf(stderr,"Note that we expect the OX message tag with a serial number.\n"); + if (UseOXPacketSerial && (sss == OX_SYNC_BALL)) { + /* dirty trick, it might cause a trouble. */ + fprintf(stderr,"We assume that the serial number is OX_SYNC_BALL\n"); + oxGetInt32(ostream); // discard the serial of OX_SYNC_BALL + goto aaa ; + } + break; + } + aaa: + /* or stdout */ fflush(NULL); + if (mtag == -1) { + fprintf(stderr,"Your peer seems to be dead.\n"); return 0; + } } } @@ -190,7 +215,7 @@ int oxWaitSyncBall_org(ox_stream ostream) while (1) { /* This part should be revised so that this part understands the cmo format. - */ + */ if ((c = fp2fgetc(ostream)) < 0) { /* never use read directory. readOneByte() is buffers every thing. */ @@ -208,7 +233,7 @@ int oxWaitSyncBall_org(ox_stream ostream) return(mtag); } fprintf(stderr,"Looking for the next message tag.. %2x, mtag=%d\n",c,mtag); - /* or stdout */ + /* or stdout */ fflush(NULL); } } @@ -343,7 +368,7 @@ void oxSendResultOfControl(int fd) void oxSendMathCap(ox_stream os,struct mathCap *mathcap) { int i,n,infosize,ncmo; - struct object mathinfo; + struct object mathinfo = OINIT; /* printf("ox sending mathcap\n"); fflush(stdout); */ mathinfo = *((struct object *)(mathcap->infop)); infosize = getoaSize(mathinfo); @@ -444,7 +469,16 @@ void oxReqExecuteFunction(ox_stream os,char *s) fp2fflush(os); } +void oxReqExecuteFunctionWithOptionalArgument(ox_stream os,char *s) +{ + oxSendOXheader(os,OX_DATA,SerialOX++); + oxSendCmoString(os,s); + oxSendOXheader(os,OX_COMMAND,SerialOX++); + oxSendInt32(os,SM_executeFunctionWithOptionalArgument); + fp2fflush(os); +} + void oxReqPopString(ox_stream os) { oxSendOXheader(os,OX_COMMAND,SerialOX++); @@ -493,14 +527,13 @@ int oxGetResultOfControlInt32(int fd) { } int oxclientMultiSelect(oxclientp clients[],int dataready[], - int controlready[], int size, int t) + int controlready[], int size, int t) { int i, ddd; int fd; int humanfd = 0; fd_set readfds; struct timeval timeout; - extern int errno; SET_MYERROROUT; /** printf("(1)"); fflush(NULL); */ @@ -517,28 +550,32 @@ int oxclientMultiSelect(oxclientp clients[],int datare fd = (fdcontrolfd?clients[i]->controlfd:fd); - FD_SET(clients[i]->controlfd,&readfds); - if (oxSocketSelect0(clients[i]->controlfd,0)) { - ddd = controlready[i] = 1; + if (clients[i]->controlport < 0) { /* For RFC_101 */ + controlready[i] = 0; }else{ - controlready[i] = 0; + fd = (fdcontrolfd?clients[i]->controlfd:fd); + FD_SET(clients[i]->controlfd,&readfds); + if (oxSocketSelect0(clients[i]->controlfd,0)) { + ddd = controlready[i] = 1; + }else{ + controlready[i] = 0; + } } if (clients[i]->datafp2 != NULL) { - fd = (fddatafp2->fd?clients[i]->datafp2->fd:fd); - FD_SET(clients[i]->datafp2->fd,&readfds); - if (fp2select(clients[i]->datafp2,0)) { - ddd = dataready[i] = 1; - }else{ - dataready[i] = 0; - } + fd = (fddatafp2->fd?clients[i]->datafp2->fd:fd); + FD_SET(clients[i]->datafp2->fd,&readfds); + if (fp2select(clients[i]->datafp2,0)) { + ddd = dataready[i] = 1; + }else{ + dataready[i] = 0; + } }else{ - dataready[i] = 0; + dataready[i] = 0; } } } @@ -563,7 +600,7 @@ int oxclientMultiSelect(oxclientp clients[],int datare } int oxGetControl(oxclientp client) -/* synchronized. */ + /* synchronized. */ { int ans; ox_stream os; @@ -594,6 +631,7 @@ int oxInitClient(oxclientp client) client->mathcapObjp = NULL; client->controlByteOrder = OX_BYTE_NETWORK_BYTE_ORDER; client->engineByteOrder = OX_BYTE_NETWORK_BYTE_ORDER; + client->engineID = -1; return(0); } @@ -604,10 +642,10 @@ int oxIsThereErrorClient(oxclientp client) { return(0); } -oxclientp oxCreateClient(char *sname,int portStream,int portControl) - /* you also need to change oxCreateClient2. */ +oxclientp oxCreateClient(char *sname,int portStream,int portControl, + char *passControl, char *passData) + /* you also need to change oxCreateClient2. */ { - static int clnum = 0; int v = 0; int fdControl = -1; int fdStream = -1; @@ -629,16 +667,33 @@ oxclientp oxCreateClient(char *sname,int portStream,in return(NULL); } + if (passControl != NULL) { + if (v) fprintf(stderr,"Sending password %s for the control channel.\n", + passControl); + if (write(fdControl,passControl,strlen(passControl)+1) < 0) { + fprintf(stderr,"oxCreateClient(): failed to send passControl.\n"); + return(NULL); + } + } + if (passData != NULL) { + if (v) fprintf(stderr,"Sending password %s for the data channel.\n", + passData); + if (write(fdStream,passData,strlen(passData)+1) < 0) { + fprintf(stderr,"oxCreateClient(): failed to send passData.\n"); + return(NULL); + } + } + controlByteOrder = oxSetByteOrder(fdControl); if (v) fprintf(stderr,"Byte order for control process is %s.\n", - (controlByteOrder == 0? "network byte order": - (controlByteOrder == 1? "little indican": - "big indian"))); + (controlByteOrder == 0? "network byte order": + (controlByteOrder == 1? "little indican": + "big indian"))); engineByteOrder = oxSetByteOrder(fdStream); if (v) fprintf(stderr,"Byte order for engine process is %s.\n", - (engineByteOrder == 0? "network byte order": - (engineByteOrder == 1? "little indican": - "big indian"))); + (engineByteOrder == 0? "network byte order": + (engineByteOrder == 1? "little indican": + "big indian"))); client = (oxclientp) mymalloc(sizeof(oxclient)); oxInitClient(client); @@ -650,7 +705,7 @@ oxclientp oxCreateClient(char *sname,int portStream,in client->dataport = portStream; client->controlport = portControl; client->controlfd = fdControl; - client->id = clnum; clnum++; + client->id = oxGetClientID(); client->type = CLIENT_SOCKET; /* socket */ client->engineByteOrder = engineByteOrder; client->controlByteOrder = controlByteOrder; @@ -717,7 +772,7 @@ oxclientp oxCreateClientFile(char *fname,char *mode,ch } void oxSendOXheader_generic(int type,int fd,ox_stream ox, - int k,int serial) + int k,int serial) { static int ss = 0; extern int UseOXPacketSerial; @@ -865,30 +920,40 @@ char *oxGenPass(void) { static int seed = 0; long p; char *s; - int i; + int i,n; if (seed == 0) { seed = (int) time(NULL) + (int) &p; srandom((unsigned int) seed); } - for (i=0; i < ((int) &p) % 100 ; i++) random(); - p = random(); s = (char *)malloc(128*sizeof(char)); + if (s == NULL) { fprintf(stderr,"No more memory.\n"); return(s); } + n = (((int) s) + (int) time(NULL)) % 100; + for (i=0; i < n ; i++) random(); + p = random(); sprintf(s,"%ld",p); return(s); } static void cancelConnection() { +#if defined(__CYGWIN__) + extern sigjmp_buf MyEnv_oxmisc; +#else extern jmp_buf MyEnv_oxmisc; - signal(SIGALRM,SIG_IGN); +#endif + mysignal(SIGALRM,SIG_IGN); fprintf(stderr,"Time out in TCP/IP connection.\n"); - longjmp(MyEnv_oxmisc,1); +#if defined(__CYGWIN__) + MYSIGLONGJMP(MyEnv_oxmisc,1); +#else + MYLONGJMP(MyEnv_oxmisc,1); +#endif } oxclientp oxCreateClient2(int fdstream,int portStream, - int fdcontrol,int portControl,int ipmask,char *pass) + int fdcontrol,int portControl,int ipmask, + char *passControl, char *passData) { - static int clnum = 0; int v = 0; int fdControl = -1; int fdStream = -1; @@ -896,16 +961,24 @@ oxclientp oxCreateClient2(int fdstream,int portStream, char *s; oxclientp client; - extern jmp_buf MyEnv_oxmisc ; +#if defined(__CYGWIN__) + extern sigjmp_buf MyEnv_oxmisc; +#else + extern jmp_buf MyEnv_oxmisc; +#endif int controlByteOrder, engineByteOrder; v = !Quiet; - if (setjmp(MyEnv_oxmisc)) { +#if defined(__CYGWIN__) + if (MYSIGSETJMP(MyEnv_oxmisc,1)) { +#else + if (MYSETJMP(MyEnv_oxmisc)) { +#endif return(NULL); }else{ } - alarm((unsigned int) 10); /* setup timeout. */ - signal(SIGALRM,cancelConnection); + alarm((unsigned int) 20); /* setup timeout. */ + mysignal(SIGALRM,cancelConnection); switch(ipmask) { case 0:/* only local */ @@ -921,37 +994,44 @@ oxclientp oxCreateClient2(int fdstream,int portStream, if (v) fprintf(stderr,"\nStream port %d : Connected.\n",portStream); if (fdStream == -1 || fdControl == -1) { - fprintf(stderr,"\nOpen error in oxCreateClient.\n"); + fprintf(stderr,"\nOpen error in oxCreateClient2.\n"); + fprintf(stderr,"fdStream=%d, fdControl=%d\n",fdStream,fdControl); return(NULL); } - /* Authentification by password. */ - m = strlen(pass); - s = (char *)mymalloc(sizeof(char)*(m+1)); - read(fdControl,s,m+1); s[m] = '\0'; - if (strcmp(s,pass) != 0) { - fprintf(stderr,"oxCreateClient2(): password authentification failed for control channel.\n"); - close(fdControl); - return(NULL); + /* Authentication by password. */ + m = strlen(passControl)+strlen(passData); + if (m > 0) { + s = (char *)mymalloc(sizeof(char)*(m+1)); + m = strlen(passControl); s[0] = 0; + read(fdControl,s,m+1); s[m] = '\0'; + if (strcmp(s,passControl) != 0) { + fprintf(stderr,"s=%s, passControl=%s\n",s,passControl); + fprintf(stderr,"oxCreateClient2(): password authentication failed for control channel.\n"); + close(fdControl); + return(NULL); + } + m = strlen(passData); s[0] = 0; + read(fdStream,s,m+1); s[m] = '\0'; + if (strcmp(s,passData) != 0) { + fprintf(stderr,"s=%s, passData=%s\n",s,passData); + fprintf(stderr,"oxCreateClient2(): password authentication failed for data channel.\n"); + close(fdStream); + return(NULL); + } } - read(fdStream,s,m+1); s[m] = '\0'; - if (strcmp(s,pass) != 0) { - fprintf(stderr,"oxCreateClient2(): password authentification failed for data channel.\n"); - close(fdStream); - return(NULL); - } - signal(SIGALRM,SIG_IGN); + mysignal(SIGALRM,SIG_IGN); controlByteOrder = oxSetByteOrder(fdControl); if (v) fprintf(stderr,"Byte order for control process is %s.\n", - (controlByteOrder == 0? "network byte order": - (controlByteOrder == 1? "little indican": - "big indian"))); + (controlByteOrder == 0? "network byte order": + (controlByteOrder == 1? "little indican": + "big indian"))); engineByteOrder = oxSetByteOrder(fdStream); if (v) fprintf(stderr,"Byte order for engine process is %s.\n", - (engineByteOrder == 0? "network byte order": - (engineByteOrder == 1? "little indican": - "big indian"))); + (engineByteOrder == 0? "network byte order": + (engineByteOrder == 1? "little indican": + "big indian"))); client = (oxclientp) mymalloc(sizeof(oxclient)); @@ -964,7 +1044,7 @@ oxclientp oxCreateClient2(int fdstream,int portStream, client->dataport = portStream; client->controlport = portControl; client->controlfd = fdControl; - client->id = clnum; clnum++; + client->id = oxGetClientID(); client->type = CLIENT_SOCKET; /* socket */ client->engineByteOrder = engineByteOrder; client->controlByteOrder = controlByteOrder; @@ -986,20 +1066,81 @@ int oxSetByteOrder(int fd) { return(OX_BYTE_NETWORK_BYTE_ORDER); } -int oxTellMyByteOrder(int fd) { +int oxTellMyByteOrder(int fdOut, int fdIn) { char data[1]; int peertype; /* It is for server. read and next write. */ /* We support only Network byte order */ data[0] = OX_BYTE_NETWORK_BYTE_ORDER; - write(fd,data,1); - fsync(fd); /* returns 0 if normal. Does it work for socket? */ + write(fdOut,data,1); + fsync(fdOut); /* returns 0 if normal. Does it work for socket? */ - read(fd,data,1); + read(fdIn,data,1); /* Read pear's byte order */ return(OX_BYTE_NETWORK_BYTE_ORDER); } +struct object OxClientList[MAX_N_OF_CLIENT]; +int OxClientListn = 0; +int oxGetClientID() { + extern struct object OxClientList[]; + extern int OxClientListn; + extern struct object Nobj; + int i; + for (i=0; i