version 1.8, 2000/12/03 07:29:39 |
version 1.18, 2003/11/19 01:02:39 |
|
|
/* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc.c,v 1.7 2000/09/08 17:30:50 takayama Exp $ */ |
/* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc.c,v 1.17 2003/11/18 11:08:27 takayama Exp $ */ |
#include <stdio.h> |
#include <stdio.h> |
#include <sys/types.h> |
#include <sys/types.h> |
#include <sys/stat.h> |
#include <sys/stat.h> |
Line 94 int readOneByte_org(int fd) /* blocking */ |
|
Line 94 int readOneByte_org(int fd) /* blocking */ |
|
if (oxSocketSelect0(fd,-1)) { /* block */ |
if (oxSocketSelect0(fd,-1)) { /* block */ |
size = read(fd,data,READBUFSIZE-1); |
size = read(fd,data,READBUFSIZE-1); |
if (size == 0) { |
if (size == 0) { |
fprintf(MyErrorOut,"oxSocketSelect0() returns 1, but there is no data. Your peer may be killed.\n"); |
fprintf(MyErrorOut,"oxSocketSelect0() returns 1, but there is no data. Your peer may be killed.\n"); |
return(-1); |
return(-1); |
} |
} |
from = 0; |
from = 0; |
to = size; |
to = size; |
Line 175 int oxWaitSyncBall(ox_stream ostream) |
|
Line 175 int oxWaitSyncBall(ox_stream ostream) |
|
int mtag; |
int mtag; |
while ((mtag = oxGetOXheader(ostream,&sss)) != OX_SYNC_BALL) { |
while ((mtag = oxGetOXheader(ostream,&sss)) != OX_SYNC_BALL) { |
fprintf(stderr,"Looking for the next message tag. mtag=%d\n",mtag); |
fprintf(stderr,"Looking for the next message tag. mtag=%d\n",mtag); |
/* or stdout */ |
/* or stdout */ |
fflush(NULL); |
fflush(NULL); |
} |
} |
} |
} |
Line 190 int oxWaitSyncBall_org(ox_stream ostream) |
|
Line 190 int oxWaitSyncBall_org(ox_stream ostream) |
|
while (1) { |
while (1) { |
/* This part should be revised so that this part understands |
/* This part should be revised so that this part understands |
the cmo format. |
the cmo format. |
*/ |
*/ |
|
|
if ((c = fp2fgetc(ostream)) < 0) { |
if ((c = fp2fgetc(ostream)) < 0) { |
/* never use read directory. readOneByte() is buffers every thing. */ |
/* never use read directory. readOneByte() is buffers every thing. */ |
Line 208 int oxWaitSyncBall_org(ox_stream ostream) |
|
Line 208 int oxWaitSyncBall_org(ox_stream ostream) |
|
return(mtag); |
return(mtag); |
} |
} |
fprintf(stderr,"Looking for the next message tag.. %2x, mtag=%d\n",c,mtag); |
fprintf(stderr,"Looking for the next message tag.. %2x, mtag=%d\n",c,mtag); |
/* or stdout */ |
/* or stdout */ |
fflush(NULL); |
fflush(NULL); |
} |
} |
} |
} |
Line 493 int oxGetResultOfControlInt32(int fd) { |
|
Line 493 int oxGetResultOfControlInt32(int fd) { |
|
} |
} |
|
|
int oxclientMultiSelect(oxclientp clients[],int dataready[], |
int oxclientMultiSelect(oxclientp clients[],int dataready[], |
int controlready[], int size, int t) |
int controlready[], int size, int t) |
{ |
{ |
int i, ddd; |
int i, ddd; |
int fd; |
int fd; |
Line 517 int oxclientMultiSelect(oxclientp clients[],int datare |
|
Line 517 int oxclientMultiSelect(oxclientp clients[],int datare |
|
fd = (fd<humanfd?humanfd:fd); |
fd = (fd<humanfd?humanfd:fd); |
FD_SET(humanfd,&readfds); |
FD_SET(humanfd,&readfds); |
if (oxSocketSelect0(humanfd,0)) { |
if (oxSocketSelect0(humanfd,0)) { |
ddd = dataready[i] = 1; controlready[i] = 0; |
ddd = dataready[i] = 1; controlready[i] = 0; |
}else{ |
}else{ |
dataready[i] = 0; controlready[i] = 0; |
dataready[i] = 0; controlready[i] = 0; |
} |
} |
}else{ |
}else{ |
if (clients[i]->controlport < 0) { /* For RFC_101 */ |
if (clients[i]->controlport < 0) { /* For RFC_101 */ |
controlready[i] = 0; |
controlready[i] = 0; |
}else{ |
}else{ |
fd = (fd<clients[i]->controlfd?clients[i]->controlfd:fd); |
fd = (fd<clients[i]->controlfd?clients[i]->controlfd:fd); |
FD_SET(clients[i]->controlfd,&readfds); |
FD_SET(clients[i]->controlfd,&readfds); |
if (oxSocketSelect0(clients[i]->controlfd,0)) { |
if (oxSocketSelect0(clients[i]->controlfd,0)) { |
ddd = controlready[i] = 1; |
ddd = controlready[i] = 1; |
}else{ |
}else{ |
controlready[i] = 0; |
controlready[i] = 0; |
} |
} |
} |
} |
if (clients[i]->datafp2 != NULL) { |
if (clients[i]->datafp2 != NULL) { |
fd = (fd<clients[i]->datafp2->fd?clients[i]->datafp2->fd:fd); |
fd = (fd<clients[i]->datafp2->fd?clients[i]->datafp2->fd:fd); |
FD_SET(clients[i]->datafp2->fd,&readfds); |
FD_SET(clients[i]->datafp2->fd,&readfds); |
if (fp2select(clients[i]->datafp2,0)) { |
if (fp2select(clients[i]->datafp2,0)) { |
ddd = dataready[i] = 1; |
ddd = dataready[i] = 1; |
}else{ |
}else{ |
dataready[i] = 0; |
dataready[i] = 0; |
} |
} |
}else{ |
}else{ |
dataready[i] = 0; |
dataready[i] = 0; |
} |
} |
} |
} |
} |
} |
Line 567 int oxclientMultiSelect(oxclientp clients[],int datare |
|
Line 567 int oxclientMultiSelect(oxclientp clients[],int datare |
|
} |
} |
|
|
int oxGetControl(oxclientp client) |
int oxGetControl(oxclientp client) |
/* synchronized. */ |
/* synchronized. */ |
{ |
{ |
int ans; |
int ans; |
ox_stream os; |
ox_stream os; |
Line 598 int oxInitClient(oxclientp client) |
|
Line 598 int oxInitClient(oxclientp client) |
|
client->mathcapObjp = NULL; |
client->mathcapObjp = NULL; |
client->controlByteOrder = OX_BYTE_NETWORK_BYTE_ORDER; |
client->controlByteOrder = OX_BYTE_NETWORK_BYTE_ORDER; |
client->engineByteOrder = OX_BYTE_NETWORK_BYTE_ORDER; |
client->engineByteOrder = OX_BYTE_NETWORK_BYTE_ORDER; |
|
client->engineID = -1; |
return(0); |
return(0); |
} |
} |
|
|
Line 609 int oxIsThereErrorClient(oxclientp client) { |
|
Line 610 int oxIsThereErrorClient(oxclientp client) { |
|
} |
} |
|
|
oxclientp oxCreateClient(char *sname,int portStream,int portControl) |
oxclientp oxCreateClient(char *sname,int portStream,int portControl) |
/* you also need to change oxCreateClient2. */ |
/* you also need to change oxCreateClient2. */ |
{ |
{ |
static int clnum = 0; |
|
int v = 0; |
int v = 0; |
int fdControl = -1; |
int fdControl = -1; |
int fdStream = -1; |
int fdStream = -1; |
Line 635 oxclientp oxCreateClient(char *sname,int portStream,in |
|
Line 635 oxclientp oxCreateClient(char *sname,int portStream,in |
|
|
|
controlByteOrder = oxSetByteOrder(fdControl); |
controlByteOrder = oxSetByteOrder(fdControl); |
if (v) fprintf(stderr,"Byte order for control process is %s.\n", |
if (v) fprintf(stderr,"Byte order for control process is %s.\n", |
(controlByteOrder == 0? "network byte order": |
(controlByteOrder == 0? "network byte order": |
(controlByteOrder == 1? "little indican": |
(controlByteOrder == 1? "little indican": |
"big indian"))); |
"big indian"))); |
engineByteOrder = oxSetByteOrder(fdStream); |
engineByteOrder = oxSetByteOrder(fdStream); |
if (v) fprintf(stderr,"Byte order for engine process is %s.\n", |
if (v) fprintf(stderr,"Byte order for engine process is %s.\n", |
(engineByteOrder == 0? "network byte order": |
(engineByteOrder == 0? "network byte order": |
(engineByteOrder == 1? "little indican": |
(engineByteOrder == 1? "little indican": |
"big indian"))); |
"big indian"))); |
|
|
client = (oxclientp) mymalloc(sizeof(oxclient)); |
client = (oxclientp) mymalloc(sizeof(oxclient)); |
oxInitClient(client); |
oxInitClient(client); |
Line 654 oxclientp oxCreateClient(char *sname,int portStream,in |
|
Line 654 oxclientp oxCreateClient(char *sname,int portStream,in |
|
client->dataport = portStream; |
client->dataport = portStream; |
client->controlport = portControl; |
client->controlport = portControl; |
client->controlfd = fdControl; |
client->controlfd = fdControl; |
client->id = clnum; clnum++; |
client->id = oxGetClientID(); |
client->type = CLIENT_SOCKET; /* socket */ |
client->type = CLIENT_SOCKET; /* socket */ |
client->engineByteOrder = engineByteOrder; |
client->engineByteOrder = engineByteOrder; |
client->controlByteOrder = controlByteOrder; |
client->controlByteOrder = controlByteOrder; |
Line 721 oxclientp oxCreateClientFile(char *fname,char *mode,ch |
|
Line 721 oxclientp oxCreateClientFile(char *fname,char *mode,ch |
|
} |
} |
|
|
void oxSendOXheader_generic(int type,int fd,ox_stream ox, |
void oxSendOXheader_generic(int type,int fd,ox_stream ox, |
int k,int serial) |
int k,int serial) |
{ |
{ |
static int ss = 0; |
static int ss = 0; |
extern int UseOXPacketSerial; |
extern int UseOXPacketSerial; |
Line 883 char *oxGenPass(void) { |
|
Line 883 char *oxGenPass(void) { |
|
|
|
|
|
static void cancelConnection() { |
static void cancelConnection() { |
|
#if defined(__CYGWIN__) |
|
extern sigjmp_buf MyEnv_oxmisc; |
|
#else |
extern jmp_buf MyEnv_oxmisc; |
extern jmp_buf MyEnv_oxmisc; |
|
#endif |
signal(SIGALRM,SIG_IGN); |
signal(SIGALRM,SIG_IGN); |
fprintf(stderr,"Time out in TCP/IP connection.\n"); |
fprintf(stderr,"Time out in TCP/IP connection.\n"); |
|
#if defined(__CYGWIN__) |
|
siglongjmp(MyEnv_oxmisc,1); |
|
#else |
longjmp(MyEnv_oxmisc,1); |
longjmp(MyEnv_oxmisc,1); |
|
#endif |
} |
} |
|
|
oxclientp oxCreateClient2(int fdstream,int portStream, |
oxclientp oxCreateClient2(int fdstream,int portStream, |
int fdcontrol,int portControl,int ipmask,char *pass) |
int fdcontrol,int portControl,int ipmask,char *pass) |
{ |
{ |
static int clnum = 0; |
|
int v = 0; |
int v = 0; |
int fdControl = -1; |
int fdControl = -1; |
int fdStream = -1; |
int fdStream = -1; |
Line 900 oxclientp oxCreateClient2(int fdstream,int portStream, |
|
Line 907 oxclientp oxCreateClient2(int fdstream,int portStream, |
|
|
|
char *s; |
char *s; |
oxclientp client; |
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; |
int controlByteOrder, engineByteOrder; |
|
|
v = !Quiet; |
v = !Quiet; |
|
#if defined(__CYGWIN__) |
|
if (sigsetjmp(MyEnv_oxmisc,1)) { |
|
#else |
if (setjmp(MyEnv_oxmisc)) { |
if (setjmp(MyEnv_oxmisc)) { |
|
#endif |
return(NULL); |
return(NULL); |
}else{ |
}else{ |
} |
} |
alarm((unsigned int) 10); /* setup timeout. */ |
alarm((unsigned int) 20); /* setup timeout. */ |
signal(SIGALRM,cancelConnection); |
signal(SIGALRM,cancelConnection); |
|
|
switch(ipmask) { |
switch(ipmask) { |
Line 925 oxclientp oxCreateClient2(int fdstream,int portStream, |
|
Line 940 oxclientp oxCreateClient2(int fdstream,int portStream, |
|
if (v) fprintf(stderr,"\nStream port %d : Connected.\n",portStream); |
if (v) fprintf(stderr,"\nStream port %d : Connected.\n",portStream); |
|
|
if (fdStream == -1 || fdControl == -1) { |
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); |
return(NULL); |
} |
} |
|
|
/* Authentication by password. */ |
/* Authentication by password. */ |
m = strlen(pass); |
m = strlen(pass); |
s = (char *)mymalloc(sizeof(char)*(m+1)); |
if (m > 0) { |
read(fdControl,s,m+1); s[m] = '\0'; |
s = (char *)mymalloc(sizeof(char)*(m+1)); |
if (strcmp(s,pass) != 0) { |
read(fdControl,s,m+1); s[m] = '\0'; |
fprintf(stderr,"oxCreateClient2(): password authentication failed for control channel.\n"); |
if (strcmp(s,pass) != 0) { |
close(fdControl); |
fprintf(stderr,"oxCreateClient2(): password authentication failed for control channel.\n"); |
return(NULL); |
close(fdControl); |
|
return(NULL); |
|
} |
|
read(fdStream,s,m+1); s[m] = '\0'; |
|
if (strcmp(s,pass) != 0) { |
|
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 authentication failed for data channel.\n"); |
|
close(fdStream); |
|
return(NULL); |
|
} |
|
signal(SIGALRM,SIG_IGN); |
signal(SIGALRM,SIG_IGN); |
|
|
controlByteOrder = oxSetByteOrder(fdControl); |
controlByteOrder = oxSetByteOrder(fdControl); |
if (v) fprintf(stderr,"Byte order for control process is %s.\n", |
if (v) fprintf(stderr,"Byte order for control process is %s.\n", |
(controlByteOrder == 0? "network byte order": |
(controlByteOrder == 0? "network byte order": |
(controlByteOrder == 1? "little indican": |
(controlByteOrder == 1? "little indican": |
"big indian"))); |
"big indian"))); |
engineByteOrder = oxSetByteOrder(fdStream); |
engineByteOrder = oxSetByteOrder(fdStream); |
if (v) fprintf(stderr,"Byte order for engine process is %s.\n", |
if (v) fprintf(stderr,"Byte order for engine process is %s.\n", |
(engineByteOrder == 0? "network byte order": |
(engineByteOrder == 0? "network byte order": |
(engineByteOrder == 1? "little indican": |
(engineByteOrder == 1? "little indican": |
"big indian"))); |
"big indian"))); |
|
|
|
|
client = (oxclientp) mymalloc(sizeof(oxclient)); |
client = (oxclientp) mymalloc(sizeof(oxclient)); |
Line 968 oxclientp oxCreateClient2(int fdstream,int portStream, |
|
Line 986 oxclientp oxCreateClient2(int fdstream,int portStream, |
|
client->dataport = portStream; |
client->dataport = portStream; |
client->controlport = portControl; |
client->controlport = portControl; |
client->controlfd = fdControl; |
client->controlfd = fdControl; |
client->id = clnum; clnum++; |
client->id = oxGetClientID(); |
client->type = CLIENT_SOCKET; /* socket */ |
client->type = CLIENT_SOCKET; /* socket */ |
client->engineByteOrder = engineByteOrder; |
client->engineByteOrder = engineByteOrder; |
client->controlByteOrder = controlByteOrder; |
client->controlByteOrder = controlByteOrder; |
Line 990 int oxSetByteOrder(int fd) { |
|
Line 1008 int oxSetByteOrder(int fd) { |
|
return(OX_BYTE_NETWORK_BYTE_ORDER); |
return(OX_BYTE_NETWORK_BYTE_ORDER); |
} |
} |
|
|
int oxTellMyByteOrder(int fd) { |
int oxTellMyByteOrder(int fdOut, int fdIn) { |
char data[1]; |
char data[1]; |
int peertype; |
int peertype; |
/* It is for server. read and next write. */ |
/* It is for server. read and next write. */ |
|
|
/* We support only Network byte order */ |
/* We support only Network byte order */ |
data[0] = OX_BYTE_NETWORK_BYTE_ORDER; |
data[0] = OX_BYTE_NETWORK_BYTE_ORDER; |
write(fd,data,1); |
write(fdOut,data,1); |
fsync(fd); /* returns 0 if normal. Does it work for socket? */ |
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); |
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<OxClientListn; i++) { |
|
if ((OxClientList[i]).tag == Snull) { |
|
return i; |
|
} |
|
} |
|
i = OxClientListn; |
|
(OxClientList[i]).tag = Snull; |
|
if (OxClientListn < MAX_N_OF_CLIENT-1) { |
|
OxClientListn++; |
|
return i; |
|
}else{ |
|
fprintf(MyErrorOut,"oxGetClientID(): the client table is full. Returns ID = 0.\n"); |
|
return 0; |
|
} |
|
} |
|
|
|
char *oxFIDtoStr(int id) { |
|
switch( id ) { |
|
case SM_mathcap: |
|
return "SM_mathcap"; break; |
|
case SM_setMathCap: |
|
return "SM_setMathCap"; break; |
|
case SM_pops: |
|
return "SM_pops"; break; |
|
case SM_getsp: |
|
return "SM_getsp"; break; |
|
case SM_dupErrors: |
|
return "SM_dupErrors"; break; |
|
case SM_pushCMOtag: |
|
return "SM_pushCMOtag"; break; |
|
case SM_setName: |
|
return "SM_setName"; break; |
|
case SM_evalName: |
|
return "SM_evalName"; break; |
|
case SM_executeStringByLocalParser: |
|
return "SM_executeStringByLocalParser"; break; |
|
case SM_executeFunction: |
|
return "SM_executeFunction"; break; |
|
case SM_popCMO: |
|
return "SM_popCMO"; break; |
|
case SM_popString: |
|
return "SM_popString"; break; |
|
case SM_shutdown: |
|
return "SM_shutdown"; break; |
|
case SM_beginBlock: |
|
return "SM_beginBlock"; break; |
|
case SM_endBlock: |
|
return "SM_endBlock"; break; |
|
default: |
|
return "Unknown to oxFIDtoStr"; break; |
|
} |
|
} |