=================================================================== RCS file: /home/cvs/OpenXM/src/kan96xx/plugin/oxmisc2.c,v retrieving revision 1.11 retrieving revision 1.28 diff -u -p -r1.11 -r1.28 --- OpenXM/src/kan96xx/plugin/oxmisc2.c 2000/12/06 00:29:52 1.11 +++ OpenXM/src/kan96xx/plugin/oxmisc2.c 2020/10/06 11:33:47 1.28 @@ -1,5 +1,7 @@ -/* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc2.c,v 1.10 2000/12/05 12:03:43 takayama Exp $ */ +/* $OpenXM: OpenXM/src/kan96xx/plugin/oxmisc2.c,v 1.27 2013/11/06 06:23:24 takayama Exp $ */ #include +#include +#include #include "ox_kan.h" #include "oxmisc2.h" /* This file requires sm1 object description. */ #include "cmo.h" @@ -17,13 +19,13 @@ int DebugMathCap = 1; int oxGet(oxclientp client, struct object *op,int *isObj) -/* This method should be synchronized. */ -/* oxGet is a function for client. */ + /* This method should be synchronized. */ + /* oxGet is a function for client. */ { int ans; ox_stream os; int m; - struct object rob; + struct object rob = OINIT; int sss; /* Serial number of the recieved packet. */ *isObj = 0; op->tag = Snull; @@ -88,7 +90,7 @@ int oxReq(oxclientp client,int func,struct object ob) /* request to the control channel */ if (func == SM_control_reset_connection || func == SM_control_kill) { - AbortIfRFC_101(client); + AbortIfRFC_101(client); switch(func) { case SM_control_reset_connection: oxReqControlResetConnection(client->controlfd); @@ -135,32 +137,32 @@ int oxReq(oxclientp client,int func,struct object ob) break; case SM_setMathCap: /* ob = [(mathcap-obj) [[version num, system name] [sm tags] - ob1 smtags - oxtags [[ox numbers, [cmo numbers]]] - ob3 ob2 */ - /* oxtags [[OX_DATA, [cmo numbers]],[OX_DATA_LOCAL,[opt]],...]*/ + ob1 smtags + oxtags [[ox numbers, [cmo numbers]]] + ob3 ob2 */ + /* oxtags [[OX_DATA, [cmo numbers]],[OX_DATA_LOCAL,[opt]],...]*/ { - struct object ob1; - struct object ob2; - struct object ob3; - struct object obm; - struct object smtags; - struct object oxtags; - struct object ox; - int n,i; - struct mathCap mathcap; + struct object ob1 = OINIT; + struct object ob2 = OINIT; + struct object ob3 = OINIT; + struct object obm = OINIT; + struct object smtags = OINIT; + struct object oxtags = OINIT; + struct object ox = OINIT; + int n,i; + struct mathCap mathcap; - if (strcmp(KopString(getoa(ob,0)),"mathcap-object") != 0) { - errorOxmisc2("data format error in oxReqSetMathCap"); - client->dstate = DSTATE_ANY; - break; - } + if (strcmp(KopString(getoa(ob,0)),"mathcap-object") != 0) { + errorOxmisc2("data format error in oxReqSetMathCap"); + client->dstate = DSTATE_ANY; + break; + } obm = getoa(ob,1); ob1 = getoa(obm,0); smtags = getoa(obm,1); oxtags = getoa(obm,2); if (smtags.tag != Sarray || oxtags.tag != Sarray) { - errorOxmisc2("data format error in oxReqSetMathCap"); + errorOxmisc2("data format error in oxReqSetMathCap"); } ob1p = (struct object *) sGC_malloc(sizeof(struct object)); *ob1p = ob1; @@ -170,32 +172,32 @@ int oxReq(oxclientp client,int func,struct object ob) if (n >= MATHCAP_SIZE) errorOxmisc2("Too big mathcap of your peer."); mathcap.oxSize = n; for (i=0; i= MATHCAP_SIZE) errorOxmisc2("Too big mathcap of your peer."); - for (i=0; i= MATHCAP_SIZE) errorOxmisc2("Too big mathcap of your peer."); + for (i=0; i= MATHCAP_SIZE) errorOxmisc2("Too big mathcap of your peer."); mathcap.smSize = n; for (i=0; idatafp2,&mathcap); @@ -226,6 +228,14 @@ int oxReq(oxclientp client,int func,struct object ob) oxReqExecuteFunction(client->datafp2,KopString(ob)); client->dstate = DSTATE_ANY; break; + case SM_executeFunctionWithOptionalArgument: + if (ob.tag != Sdollar) { + errorOxmisc2("SM_executeFunctionWithOptionalArgument : the argument must be a string."); + return(-1); + } + oxReqExecuteFunctionWithOptionalArgument(client->datafp2,KopString(ob)); + client->dstate = DSTATE_ANY; + break; case SM_popString: oxReqPopString(client->datafp2); client->dstate = DSTATE_ANY; @@ -254,6 +264,10 @@ int oxReq(oxclientp client,int func,struct object ob) oxReqSingleOperand(client->datafp2,SM_dupErrors); client->dstate = DSTATE_ANY; break; + case SM_pushCMOtag: + oxReqSingleOperand(client->datafp2,SM_pushCMOtag); + client->dstate = DSTATE_ANY; + break; default: fprintf(MyErrorOut,"func=%d ",func); errorOxmisc2("This function is not implemented."); @@ -264,11 +278,14 @@ int oxReq(oxclientp client,int func,struct object ob) } struct object KoxCreateClient(struct object ip, - struct object portStream, - struct object portControl) + struct object portStream, + struct object portControl,struct object pass) { - struct object rob; + struct object rob = OINIT; oxclientp client; + char *passControl; char *passData; + struct object tob = OINIT; + passControl = NULL; passData = NULL; rob.tag = Snull; if (ip.tag != Sdollar) { errorOxmisc2("KoxCreateClient(): The first argument must be a hostname given by a string."); @@ -276,7 +293,7 @@ struct object KoxCreateClient(struct object ip, } if (portStream.tag == Sdollar) { client = oxCreateClientFile(KopString(ip),KopString(portStream), - "/dev/null","w"); + "/dev/null","w"); if (client == NULL) { errorOxmisc2("KoxCreateClient(): Open error."); return(rob); @@ -294,13 +311,32 @@ struct object KoxCreateClient(struct object ip, errorOxmisc2("KoxCreateClient(): The third argument must be a port number given in an integer."); return(rob); } - client = oxCreateClient(KopString(ip),KopInteger(portStream),KopInteger(portControl)); + if (pass.tag == Sarray) { + if (getoaSize(pass) < 2) { + errorOxmisc2("KoxCreateClient(): the fourth argument --- pass must be an array of strings."); + return rob; + } + tob = getoa(pass,0); + if (tob.tag != Sdollar) { + errorOxmisc2("KoxCreateClient(): the fourth argument --- pass must be an array of strings."); + return rob; + } + passControl = KopString(tob); + tob = getoa(pass,1); + if (tob.tag != Sdollar) { + errorOxmisc2("KoxCreateClient(): the fourth argument --- pass must be an array of strings."); + return rob; + } + passData = KopString(tob); + } + client = oxCreateClient(KopString(ip),KopInteger(portStream),KopInteger(portControl),passControl,passData); if (client == NULL) { errorOxmisc2("KoxCreateClient(): Open error."); return(rob); } rob = newObjectArray(N_OF_CLIENT_FIELDS); oxClientToObject(client,rob); + oxClientListUpdate(rob); return(rob); } @@ -332,7 +368,7 @@ static int isItClientObject(struct object ob) struct object KoxIsThereErrorClient(struct object ob) { - struct object rob; + struct object rob = OINIT; int ans; int size; oxclient cc; @@ -348,8 +384,8 @@ struct object KoxIsThereErrorClient(struct object ob) int oxClientToObject(oxclientp client,struct object rob) { - struct object ob; - if (client == NULL) return; + struct object ob = OINIT; + if (client == NULL) return 0; /* rob = newObjectArray(N_OF_CLIENT_FIELDS); */ if (rob.tag != Sarray) { errorOxmisc2("oxClientToObject(): the second argument must be an array."); @@ -381,12 +417,13 @@ int oxClientToObject(oxclientp client,struct object ro } putoa(rob,11,KpoInteger(client->engineByteOrder)); putoa(rob,12,KpoInteger(client->controlByteOrder)); + putoa(rob,13,KpoInteger(client->engineID)); return(0); } int oxObjectToClient(struct object ob,oxclientp cp) { - struct object ob1; + struct object ob1 = OINIT; struct object *obp; if (cp == NULL) { errorOxmisc2("oxObjectToClient(): the second argument is NULL"); @@ -437,18 +474,21 @@ int oxObjectToClient(struct object ob,oxclientp cp) cp->engineByteOrder = KopInteger(ob1); ob1 = getoa(ob,12); cp->controlByteOrder = KopInteger(ob1); + + ob1 = getoa(ob,13); + cp->engineID = KopInteger(ob1); return(0); } struct object KoxReq(struct object client, - struct object func, - struct object ob1) + struct object func, + struct object ob1) { int ans; static oxclientp cc1 = NULL; - struct object rob; + struct object rob = OINIT; rob.tag = Snull; if (cc1 == NULL) { cc1 = (oxclientp) mymalloc(sizeof(oxclient)); @@ -479,7 +519,7 @@ struct object KoxGet(struct object client) { int ans,k; static oxclientp cc1 = NULL; - struct object rob; + struct object rob = OINIT; rob.tag = Snull; if (cc1 == NULL) { cc1 = (oxclientp) mymalloc(sizeof(oxclient)); @@ -510,7 +550,7 @@ struct object KoxGetFromControl(struct object client) { int ans; static oxclientp cc1 = NULL; - struct object rob; + struct object rob = OINIT; rob.tag = Snull; if (cc1 == NULL) { cc1 = (oxclientp) mymalloc(sizeof(oxclient)); @@ -540,12 +580,12 @@ struct object KoxMultiSelect(struct object oclients,st static int csize = 0; static oxclientp *clients = NULL; oxclientp cc1; - struct object rob; + struct object rob = OINIT; int i; int tt; - struct object ob1; - struct object ob2; - struct object ob0; + struct object ob1 = OINIT; + struct object ob2 = OINIT; + struct object ob0 = OINIT; int size; int ans; int dataready[1024]; @@ -560,15 +600,15 @@ struct object KoxMultiSelect(struct object oclients,st if (first) { first = 0; csize = size; clients = (oxclientp *)mymalloc(sizeof(oxclientp)*(size+1)); - if (clients == NULL) { + if (clients == NULL) { errorOxmisc2("KoxMultiSelect(): no more memory."); return(rob); } for (i=0; idatafp2,in.rc.file,out.rc.file); + fputc(cc1->engineByteOrder,out.rc.file); /* Output engineByteOrder. */ + /* synchronize cc1 and client. */ + oxClientToObject(cc1,client); + + return(KpoInteger(ans)); +} + +struct object KoxLogStop(struct object client) { + static oxclientp cc1 = NULL; + struct object rob = OINIT; + rob.tag = Snull; + if (cc1 == NULL) { + cc1 = (oxclientp) mymalloc(sizeof(oxclient)); + if (cc1 == NULL) { + errorOxmisc2("KoxLog(): no more memory."); + return(rob); + } + oxInitClient(cc1); + } + + if (oxObjectToClient(client,cc1) == -1) return(rob); + if (cc1 == NULL) { + errorOxmisc2("KoxLog(): the first argument must be a client object."); + return(rob); + } + return(KpoInteger(fp2stopLog(cc1->datafp2))); +} struct object KoxCloseClient(struct object client) { oxclientp cc1 = NULL; oxclient cc; - struct object rob; + struct object rob = OINIT; rob.tag = Snull; cc1 = &cc; if (oxObjectToClient(client,cc1) == -1) return(rob); @@ -664,16 +761,17 @@ struct object KoxCloseClient(struct object client) { switch (cc1->type) { case CLIENT_SOCKET: fp2fclose(cc1->datafp2); - close(cc1->controlfd); + {int r; r=close(cc1->controlfd);} break; case CLIENT_FILE: fp2fclose(cc1->datafp2); - close(cc1->controlfd); + {int r; r=close(cc1->controlfd);} break; default: errorOxmisc2("Unknown client->type\n"); break; } + oxClientListRemove(client); return(KpoInteger(0)); } @@ -685,7 +783,7 @@ static int cmoCheck00(struct object obj,int cmo[], int static int typeTrans[CHECK00_N]; static int init = 0; /* if n == 0, report the cmo tag of the object obj. - If it cannot be translated to cmo, then return -1. */ + If it cannot be translated to cmo, then return -1. */ if (!init) { for (i=0; i CMO tag)\n"); for (i=0; i<20; i++) { - printf("%d ", typeTrans[i]); + printf("%d ", typeTrans[i]); } printf("\n"); } @@ -754,13 +853,13 @@ static int cmoCheck00(struct object obj,int cmo[], int int cmoCheckMathCap(struct object obj, struct object *obp) { - struct object mathcap; - struct object cmolist; - struct object mathcapMain; - struct object mathcapThird; - struct object ox; - struct object oxtag; - struct object ob0; + struct object mathcap = OINIT; + struct object cmolist = OINIT; + struct object mathcapMain = OINIT; + struct object mathcapThird = OINIT; + struct object ox = OINIT; + struct object oxtag = OINIT; + struct object ob0 = OINIT; int oxsize; int n; int i; @@ -776,12 +875,12 @@ int cmoCheckMathCap(struct object obj, struct object * } mathcap = *obp; /* Example of mathcap - [ $mathcap-object$ , - [ [ 199909080 , $Ox_system=ox_sm1.plain$ , $Version=2.991106$ , - $HOSTTYPE=i386$ ] , - [ 262 , 263 , 264 , 265 , 266 , 268 , 269 , 272 , 273 , 275 , - 276 ] , - [ [ 514 , [ 2130706434 , 1 , 2 , 4 , 5 , 17 , 19 , 20 , 22 , 23 , 24 , 25 , 26 , 30 , 31 , 60 , 61 , 27 , 33 , 40 , 16 , 34 ] ] ] ] ] + [ $mathcap-object$ , + [ [ 199909080 , $Ox_system=ox_sm1.plain$ , $Version=2.991106$ , + $HOSTTYPE=i386$ ] , + [ 262 , 263 , 264 , 265 , 266 , 268 , 269 , 272 , 273 , 275 , + 276 ] , + [ [ 514 , [ 2130706434 , 1 , 2 , 4 , 5 , 17 , 19 , 20 , 22 , 23 , 24 , 25 , 26 , 30 , 31 , 60 , 61 , 27 , 33 , 40 , 16 , 34 ] ] ] ] ] */ n = getoaSize(mathcap); @@ -806,7 +905,7 @@ int cmoCheckMathCap(struct object obj, struct object * } /* I should check - getoa(getoa(mathcap,1),2) + getoa(getoa(mathcap,1),2) contains OX_DATA. It has not yet implemented. */ @@ -836,43 +935,43 @@ int cmoCheckMathCap(struct object obj, struct object * if (getoaSize(ox) != 0) { oxtag = getoa(ox,0); if (oxtag.tag != Sinteger) { - fprintf(stderr,"cmoCheckMathCap: the mathcap obj is \n"); - printObject(*obp,0,stderr); - fprintf(stderr,"\n"); - errorOxmisc2("cmoCheckMathCap: the third element of mathcap must be [OX_DATA_xxx, [ ]]."); + fprintf(stderr,"cmoCheckMathCap: the mathcap obj is \n"); + printObject(*obp,0,stderr); + fprintf(stderr,"\n"); + errorOxmisc2("cmoCheckMathCap: the third element of mathcap must be [OX_DATA_xxx, [ ]]."); } if (KopInteger(oxtag) == OX_DATA) { - if (getoaSize(ox) > 1) { - cmolist = getoa(ox,1); - if (cmolist.tag != Sarray) { - fprintf(stderr,"cmoCheckMathCap: the mathcap obj is \n"); - printObject(*obp,0,stderr); - fprintf(stderr,"\n"); - errorOxmisc2("cmoCheckMathCap: mathcap[1] must be an array of integers.\n"); - } - n = getoaSize(cmolist); - if (n > CMO_CHECK_MATH_CAP_LIST_SIZE) { - errorOxmisc2("cmoCheckMathCap: Too big cmo list.\n"); - } - for (i=0; i 1) { + cmolist = getoa(ox,1); + if (cmolist.tag != Sarray) { + fprintf(stderr,"cmoCheckMathCap: the mathcap obj is \n"); + printObject(*obp,0,stderr); + fprintf(stderr,"\n"); + errorOxmisc2("cmoCheckMathCap: mathcap[1] must be an array of integers.\n"); + } + n = getoaSize(cmolist); + if (n > CMO_CHECK_MATH_CAP_LIST_SIZE) { + errorOxmisc2("cmoCheckMathCap: Too big cmo list.\n"); + } + for (i=0; imathcapObjp)) { - errorOxmisc2("oxPushCMO: your peer does not understand this cmo.\n"); - return(rob); + errorOxmisc2("oxPushCMO: your peer does not understand this cmo.\n"); + return(rob); } oxSendOXheader(cc1->datafp2,OX_DATA,SerialOX++); cmoObjectToStream2(ob,cc1->datafp2); @@ -1066,14 +1179,14 @@ struct object KoxPushCMO(struct object client,struct o } oxclientp oxCreateControl_RFC_101(int fdstream,int portStream, - int ipmask,char *pass); + int ipmask,char *pass); struct object KoxCreateControl_RFC_101(struct object peer,struct object ipmask,struct object pass) { - struct object rob; + struct object rob = OINIT; oxclientp client; int fdStream, portStream; int i; - struct object ob1; + struct object ob1 = OINIT; rob.tag = Snull; if (peer.tag != Sarray) { errorOxmisc2("KoxCreateControl_RFC_101(): The first argument must be an array [fdStream, portStream]"); @@ -1100,7 +1213,7 @@ struct object KoxCreateControl_RFC_101(struct object p } client = oxCreateControl_RFC_101(fdStream, portStream, - KopInteger(ipmask), KopString(pass)); + KopInteger(ipmask), KopString(pass)); if (client == NULL) { errorOxmisc2("KoxCreateControl_RFC_101(): Open error."); return(rob); @@ -1111,9 +1224,8 @@ struct object KoxCreateControl_RFC_101(struct object p } oxclientp oxCreateControl_RFC_101(int fdstream,int portStream, - int ipmask,char *pass) + int ipmask,char *pass) { - static int clnum = 0; int v = 0; int fdControl = -1; int fdStream = -1; @@ -1121,7 +1233,11 @@ oxclientp oxCreateControl_RFC_101(int fdstream,int por 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 engineByteOrder; extern int Quiet; @@ -1145,19 +1261,19 @@ oxclientp oxCreateControl_RFC_101(int fdstream,int por /* Authentication by password. */ m = strlen(pass); s = (char *)mymalloc(sizeof(char)*(m+1)); - read(fdStream,s,m+1); s[m] = '\0'; + {int r; r=read(fdStream,s,m+1);} s[m] = '\0'; if (strcmp(s,pass) != 0) { fprintf(stderr,"oxCreateControl_RFC_101(): password authentication failed for control channel.\n"); - close(fdStream); + {int r; r=close(fdStream);} return(NULL); } engineByteOrder = oxSetByteOrder(fdStream); if (v) fprintf(stderr,"Byte order for control stackmacine 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)); @@ -1170,7 +1286,7 @@ oxclientp oxCreateControl_RFC_101(int fdstream,int por client->dataport = portStream; client->controlport = -1; client->controlfd = -1; - client->id = clnum; clnum++; + client->id = oxGetClientID(); client->type = CLIENT_SOCKET; /* socket */ client->engineByteOrder = engineByteOrder; client->controlByteOrder = -1; @@ -1178,14 +1294,14 @@ oxclientp oxCreateControl_RFC_101(int fdstream,int por } oxclientp oxCreateEngine_RFC_101(int fdstream,int portStream, - int ipmask,char *pass, int engineID); + int ipmask,char *pass, int engineID); struct object KoxCreateEngine_RFC_101(struct object peer,struct object ipmask,struct object pass, struct object engineID) { - struct object rob; + struct object rob = OINIT; oxclientp client; int fdStream, portStream; int i; - struct object ob1; + struct object ob1 = OINIT; rob.tag = Snull; if (peer.tag != Sarray) { errorOxmisc2("KoxCreateEngine_RFC_101(): The first argument must be an array [fdStream, portStream]"); @@ -1215,18 +1331,19 @@ struct object KoxCreateEngine_RFC_101(struct object pe } client = oxCreateEngine_RFC_101(fdStream, portStream, - KopInteger(ipmask), KopString(pass),KopInteger(engineID)); + KopInteger(ipmask), KopString(pass),KopInteger(engineID)); if (client == NULL) { errorOxmisc2("KoxCreateEngine_RFC_101(): Open error."); return(rob); } rob = newObjectArray(N_OF_CLIENT_FIELDS); oxClientToObject(client,rob); + oxClientListUpdate(rob); return(rob); } oxclientp oxCreateEngine_RFC_101(int fdstream,int portStream, - int ipmask,char *pass,int engineID) + int ipmask,char *pass,int engineID) { int v = 0; int fdControl = -1; @@ -1235,7 +1352,11 @@ oxclientp oxCreateEngine_RFC_101(int fdstream,int port 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 engineByteOrder; extern int Quiet; @@ -1258,21 +1379,21 @@ oxclientp oxCreateEngine_RFC_101(int fdstream,int port /* Authentication by password. */ /* skip password check for now. BUG. - m = strlen(pass); - s = (char *)mymalloc(sizeof(char)*(m+1)); - read(fdStream,s,m+1); s[m] = '\0'; - if (strcmp(s,pass) != 0) { - fprintf(stderr,"oxCreateEngine_RFC_101(): password authentication failed for control channel.\n"); - close(fdStream); - return(NULL); - } + m = strlen(pass); + s = (char *)mymalloc(sizeof(char)*(m+1)); + read(fdStream,s,m+1); s[m] = '\0'; + if (strcmp(s,pass) != 0) { + fprintf(stderr,"oxCreateEngine_RFC_101(): password authentication failed for control channel.\n"); + close(fdStream); + return(NULL); + } */ engineByteOrder = oxSetByteOrder(fdStream); if (v) fprintf(stderr,"Byte order for engine stackmacine 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)); @@ -1285,9 +1406,71 @@ oxclientp oxCreateEngine_RFC_101(int fdstream,int port client->dataport = portStream; client->controlport = -1; client->controlfd = -1; - client->id = engineID; + client->id = oxGetClientID(); + client->engineID = engineID; client->type = CLIENT_SOCKET; /* socket */ client->engineByteOrder = engineByteOrder; client->controlByteOrder = -1; return(client); } + +void oxClientListUpdate(struct object ob) { + int id; + extern struct object OxClientList[]; + id = KopInteger(getoa(ob,8)); + /* printf("id=%d\n",id); */ + if ((id = 0)) { + OxClientList[id] = ob; + }else{ + errorOxmisc2("oxClientListUpdate(): the client table is full.\n"); + } +} +void oxClientListRemove(struct object ob) { + int id; + extern struct object OxClientList[]; + id = KopInteger(getoa(ob,8)); + if ((id = 0)) { + (OxClientList[id]).tag = Snull; + }else{ + /* errorOxmisc2("oxClientListRemove(): the client table is full.\n");*/ + } +} +static void KoxCleanClientList() { + extern int OxClientListn; + extern struct object OxClientList[]; + int i,j,n; + struct object ob = OINIT; + n = 0; + for (i=0; i= n) { + j=0; + errorOxmisc2("oxGetClientList(): the client table is broken.\n"); + } + putoa(rob,j,OxClientList[i]); + j++; + } + } + return rob; +} + +