version 1.5, 2001/05/04 01:06:23 |
version 1.15, 2003/07/21 13:36:41 |
|
|
/* $OpenXM: OpenXM/src/kan96xx/Kan/ext.c,v 1.4 2000/03/09 12:04:52 takayama Exp $ */ |
/* $OpenXM: OpenXM/src/kan96xx/Kan/ext.c,v 1.14 2003/07/14 12:49:52 takayama Exp $ */ |
#include <stdio.h> |
#include <stdio.h> |
#include <sys/types.h> |
#include <sys/types.h> |
#include <sys/stat.h> |
#include <sys/stat.h> |
|
|
#include "extern2.h" |
#include "extern2.h" |
#include <signal.h> |
#include <signal.h> |
#include "plugin.h" |
#include "plugin.h" |
|
#include <ctype.h> |
|
#include "ox_pathfinder.h" |
|
|
|
extern char **environ; |
|
|
#define MYCP_SIZE 100 |
#define MYCP_SIZE 100 |
static int Mychildren[MYCP_SIZE]; |
static int Mychildren[MYCP_SIZE]; |
static int Mycp = 0; |
static int Mycp = 0; |
Line 35 static void mywait() { |
|
Line 39 static void mywait() { |
|
} |
} |
|
|
#define SIZE_OF_ENVSTACK 5 |
#define SIZE_OF_ENVSTACK 5 |
static jmp_buf EnvStack[SIZE_OF_ENVSTACK]; |
#if defined(__CYGWIN__) |
|
#define JMP_BUF sigjmp_buf |
|
#else |
|
#define JMP_BUF jmp_buf |
|
#endif |
|
static JMP_BUF EnvStack[SIZE_OF_ENVSTACK]; |
static int Envp = 0; |
static int Envp = 0; |
static void pushEnv(jmp_buf jb) { |
static void pushEnv(JMP_BUF jb) { |
if (Envp < SIZE_OF_ENVSTACK) { |
if (Envp < SIZE_OF_ENVSTACK) { |
*(EnvStack[Envp]) = *jb; |
*(EnvStack[Envp]) = *jb; |
Envp++; |
Envp++; |
Line 46 static void pushEnv(jmp_buf jb) { |
|
Line 55 static void pushEnv(jmp_buf jb) { |
|
exit(2); |
exit(2); |
} |
} |
} |
} |
static void popEnv(jmp_buf jbp) { |
static void popEnv(JMP_BUF jbp) { |
if (Envp <= 0) { |
if (Envp <= 0) { |
fprintf(stderr,"Underflow of EnvStack.\n"); |
fprintf(stderr,"Underflow of EnvStack.\n"); |
exit(3); |
exit(3); |
Line 81 struct object Kextension(struct object obj) |
|
Line 90 struct object Kextension(struct object obj) |
|
struct object keyo; |
struct object keyo; |
struct object rob = NullObject; |
struct object rob = NullObject; |
struct object obj1,obj2,obj3,obj4; |
struct object obj1,obj2,obj3,obj4; |
int m,i; |
int m,i,pid, uid; |
int argListc, fdListc; |
int argListc, fdListc; |
char *abc; |
char *abc; |
char *abc2; |
char *abc2; |
extern struct context *CurrentContextp; |
extern struct context *CurrentContextp; |
|
#if (__CYGWIN__) |
|
extern sigjmp_buf EnvOfStackMachine; |
|
#else |
extern jmp_buf EnvOfStackMachine; |
extern jmp_buf EnvOfStackMachine; |
|
#endif |
extern void ctrlC(); |
extern void ctrlC(); |
extern int SigIgn; |
extern int SigIgn; |
extern errno; |
extern errno; |
Line 152 struct object Kextension(struct object obj) |
|
Line 165 struct object Kextension(struct object obj) |
|
obj1 = getoa(obj,1); |
obj1 = getoa(obj,1); |
if (obj1.tag != Sdollar) errorKan1("%s\n","[(getenv) envstr] extension"); |
if (obj1.tag != Sdollar) errorKan1("%s\n","[(getenv) envstr] extension"); |
abc = getenv(KopString(obj1)); |
abc = getenv(KopString(obj1)); |
|
#if defined(__CYGWIN__) |
if (abc == NULL) { |
if (abc == NULL) { |
|
abc2 = (char *)sGC_malloc(sizeof(char)*(strlen(KopString(obj1))+2)); |
|
strcpy(abc2,KopString(obj1)); |
|
for (i=0; i<strlen(abc2); i++) { |
|
abc2[i] = toupper(abc2[i]); |
|
} |
|
abc = getenv(abc2); |
|
} |
|
#endif |
|
if (abc == NULL) { |
rob = NullObject; |
rob = NullObject; |
}else{ |
}else{ |
abc2 = (char *)sGC_malloc(sizeof(char)*(strlen(abc)+2)); |
abc2 = (char *)sGC_malloc(sizeof(char)*(strlen(abc)+2)); |
Line 183 struct object Kextension(struct object obj) |
|
Line 206 struct object Kextension(struct object obj) |
|
}else if (strcmp(key,"forkExec")==0) { |
}else if (strcmp(key,"forkExec")==0) { |
if (size != 4) errorKan1("%s\n","[(forkExec) argList fdList sigblock] extension."); |
if (size != 4) errorKan1("%s\n","[(forkExec) argList fdList sigblock] extension."); |
obj1 = getoa(obj,1); |
obj1 = getoa(obj,1); |
|
if (obj1.tag == Sdollar) { |
|
obj1 = KstringToArgv(obj1); |
|
} |
if (obj1.tag != Sarray) errorKan1("%s\n","[(forkExec) argList fdList sigblock] extension. array argList."); |
if (obj1.tag != Sarray) errorKan1("%s\n","[(forkExec) argList fdList sigblock] extension. array argList."); |
obj2 = getoa(obj,2); |
obj2 = getoa(obj,2); |
if (obj2.tag != Sarray) errorKan1("%s\n","[(forkExec) argList fdList sigblock] extension. array fdList."); |
if (obj2.tag != Sarray) errorKan1("%s\n","[(forkExec) argList fdList sigblock] extension. array fdList."); |
obj3 = getoa(obj,3); |
obj3 = getoa(obj,3); |
if (obj3.tag != Sinteger) errorKan1("%s\n","[(forkExec) argList fdList sigblock] extension. integer sigblock."); |
if (obj3.tag != Sinteger) errorKan1("%s\n","[(forkExec) argList fdList sigblock] extension. integer sigblock."); |
m = KopInteger(obj3); /* m == 1 : block ctrl-C. */ |
m = KopInteger(obj3); /* m&1 : block ctrl-C. */ |
argListc = getoaSize(obj1); |
argListc = getoaSize(obj1); |
fdListc = getoaSize(obj2); |
fdListc = getoaSize(obj2); |
if ((m = fork()) > 0) { |
if ((pid = fork()) > 0) { |
/* parent */ |
/* parent */ |
signal(SIGCHLD,mywait); /* to kill Zombie */ |
if (m&2) { |
Mychildren[Mycp++] = m; |
/* Do not call singal to turn around a trouble on cygwin. BUG. */ |
|
}else{ |
|
signal(SIGCHLD,mywait); /* to kill Zombie */ |
|
} |
|
Mychildren[Mycp++] = pid; |
if (Mycp >= MYCP_SIZE-1) { |
if (Mycp >= MYCP_SIZE-1) { |
errorKan1("%s\n","Child process table is full.\n"); |
errorKan1("%s\n","Child process table is full.\n"); |
Mycp = 0; |
Mycp = 0; |
} |
} |
rob = KpoInteger(m); |
rob = KpoInteger(pid); |
/* Done */ |
/* Done */ |
}else{ |
}else{ |
/* Child */ |
/* Child */ |
Line 208 struct object Kextension(struct object obj) |
|
Line 238 struct object Kextension(struct object obj) |
|
close(KopInteger(getoa(obj2,i))); |
close(KopInteger(getoa(obj2,i))); |
} |
} |
/* execl */ |
/* execl */ |
if (m == 1) { |
if (m&1) { |
{ |
{ |
sigset_t sss; |
sigset_t sss; |
sigemptyset(&sss); |
sigemptyset(&sss); |
Line 225 struct object Kextension(struct object obj) |
|
Line 255 struct object Kextension(struct object obj) |
|
argv[i] = KopString(getoa(obj1,i)); |
argv[i] = KopString(getoa(obj1,i)); |
argv[i+1] = NULL; |
argv[i+1] = NULL; |
} |
} |
execv(argv[0],argv); |
|
|
if (m&4) { |
|
fprintf(stderr,"execv %s\n",argv[0]); |
|
sleep(5); |
|
fprintf(stderr,">>>\n"); |
|
} |
|
execve(argv[0],argv,environ); |
/* This place will never be reached unless execv fails. */ |
/* This place will never be reached unless execv fails. */ |
fprintf(stderr,"forkExec fails: "); |
fprintf(stderr,"forkExec fails: "); |
for (i=0; i<argListc; i++) { |
for (i=0; i<argListc; i++) { |
Line 258 struct object Kextension(struct object obj) |
|
Line 294 struct object Kextension(struct object obj) |
|
}else if (strcmp(key,"hilbert")==0) { |
}else if (strcmp(key,"hilbert")==0) { |
if (size != 3) errorKan1("%s\n","[(hilbert) obgb obvlist] extension."); |
if (size != 3) errorKan1("%s\n","[(hilbert) obgb obvlist] extension."); |
rob = hilberto(getoa(obj,1),getoa(obj,2)); |
rob = hilberto(getoa(obj,1),getoa(obj,2)); |
|
}else if (strcmp(key,"nobody") == 0) { |
|
uid = getuid(); |
|
if (uid == 0) { |
|
#define NOBODY 65534 |
|
/* If I'm a super user, then change uid to nobody. */ |
|
if (setuid(NOBODY) != 0) { |
|
fprintf(stderr,"Failed to change uid to nobody (%d)\n",NOBODY); |
|
exit(10); |
|
} |
|
fprintf(stderr,"uid is changed to nobody (%d).\n",NOBODY); |
|
rob.tag = Snull; |
|
} |
}else if (strcmp(key,"chattr")==0) { |
}else if (strcmp(key,"chattr")==0) { |
if (size != 3) errorKan1("%s\n","[(chattr) num symbol] extension."); |
if (size != 3) errorKan1("%s\n","[(chattr) num symbol] extension."); |
obj1 = getoa(obj,1); |
obj1 = getoa(obj,1); |
Line 269 struct object Kextension(struct object obj) |
|
Line 317 struct object Kextension(struct object obj) |
|
errorKan1("%s\n","The number must be 0, 1 or 2."); |
errorKan1("%s\n","The number must be 0, 1 or 2."); |
putUserDictionary2(obj2.lc.str,(obj2.rc.op->lc).ival,(obj2.rc.op->rc).ival, |
putUserDictionary2(obj2.lc.str,(obj2.rc.op->lc).ival,(obj2.rc.op->rc).ival, |
m,CurrentContextp->userDictionary); |
m,CurrentContextp->userDictionary); |
|
}else if (strcmp(key,"getServerEnv")==0) { |
|
if (size != 2) errorKan1("%s\n","[(getServerEnv) serverName] extension."); |
|
obj1 = getoa(obj,1); |
|
if (obj1.tag != Sdollar) errorKan1("%s\n","[(getServerEnv) serverName] extension."); |
|
{ |
|
char **se; int ii; int nn; |
|
se = getServerEnv(KopString(obj1)); |
|
if (se == NULL) { |
|
debugServerEnv(KopString(obj1)); |
|
rob = NullObject; |
|
}else{ |
|
for (ii=0,nn=0; se[ii] != NULL; ii++) nn++; |
|
rob = newObjectArray(nn); |
|
for (ii=0; ii<nn; ii++) { |
|
putoa(rob,ii,KpoString(se[ii])); |
|
} |
|
} |
|
} |
|
}else if (strcmp(key,"regionMatches")==0) { |
|
if (size != 3) errorKan1("%s\n","[(regionMatches) str strArray] extension."); |
|
obj1 = getoa(obj,1); |
|
if (obj1.tag != Sdollar) errorKan1("%s\n","[(regionMatches) str strArray] extension. str must be a string."); |
|
obj2 = getoa(obj,2); |
|
if (obj2.tag != Sarray) errorKan1("%s\n","[(regionMatches) str strArray] extension. strArray must be an array."); |
|
rob = KregionMatches(obj1,obj2); |
|
}else if (strcmp(key,"ostype")==0) { |
|
rob = newObjectArray(1); |
|
/* Hard encode the OS type. */ |
|
#if defined(__CYGWIN__) |
|
putoa(rob,0,KpoString("windows")); |
|
#else |
|
putoa(rob,0,KpoString("unix")); |
|
#endif |
} |
} |
#include "plugin.hh" |
#include "plugin.hh" |
else{ |
else{ |
Line 277 struct object Kextension(struct object obj) |
|
Line 358 struct object Kextension(struct object obj) |
|
|
|
|
|
return(rob); |
return(rob); |
|
} |
|
|
|
struct object KregionMatches(struct object sobj, struct object keyArray) |
|
{ |
|
struct object rob; |
|
int n,i,j,m,keyn; |
|
char *s,*key; |
|
rob = newObjectArray(3); |
|
getoa(rob,0) = KpoInteger(-1); |
|
getoa(rob,1) = NullObject; |
|
getoa(rob,2) = NullObject; |
|
|
|
if (sobj.tag != Sdollar) return rob; |
|
if (keyArray.tag != Sarray) return rob; |
|
n = getoaSize(keyArray); |
|
for (i=0; i<n; i++) { |
|
if (getoa(keyArray,i).tag != Sdollar) { return rob; } |
|
} |
|
|
|
s = KopString(sobj); |
|
m = strlen(s); |
|
|
|
for (i=0; i<n; i++) { |
|
key = KopString(getoa(keyArray,i)); |
|
keyn = strlen(key); |
|
for (j=0; j<m; j++) { |
|
if (strncmp(&(s[j]),key,keyn) == 0) { |
|
getoa(rob,0) = KpoInteger(j); |
|
getoa(rob,1) = KpoString(key); |
|
getoa(rob,2) = KpoInteger(i); |
|
return rob; |
|
} |
|
} |
|
} |
|
return rob; |
} |
} |
|
|