perl 5.002
[p5sagit/p5-mst-13.2.git] / os2 / os2.c
index a0aa0ac..9b88b7f 100644 (file)
--- a/os2/os2.c
+++ b/os2/os2.c
@@ -1,38 +1,9 @@
-/* $RCSfile: os2.c,v $$Revision: 4.1 $$Date: 92/08/07 18:25:20 $
- *
- *    (C) Copyright 1989, 1990 Diomidis Spinellis.
- *
- *    You may distribute under the terms of either the GNU General Public
- *    License or the Artistic License, as specified in the README file.
- *
- * $Log:       os2.c,v $
- * Revision 4.1  92/08/07  18:25:20  lwall
- * 
- * Revision 4.0.1.2  92/06/08  14:32:30  lwall
- * patch20: new OS/2 support
- * 
- * Revision 4.0.1.1  91/06/07  11:23:06  lwall
- * patch4: new copyright notice
- * 
- * Revision 4.0  91/03/20  01:36:21  lwall
- * 4.0 baseline.
- * 
- * Revision 3.0.1.2  90/11/10  01:42:38  lwall
- * patch38: more msdos/os2 upgrades
- * 
- * Revision 3.0.1.1  90/10/15  17:49:55  lwall
- * patch29: Initial revision
- * 
- * Revision 3.0.1.1  90/03/27  16:10:41  lwall
- * patch16: MSDOS support
- *
- * Revision 1.1  90/03/18  20:32:01  dds
- * Initial revision
- *
- */
-
 #define INCL_DOS
 #define INCL_NOPM
+#ifndef NO_SYS_ALLOC 
+#  define INCL_DOSMEMMGR
+#  define INCL_DOSERRORS
+#endif /* ! defined NO_SYS_ALLOC */
 #include <os2.h>
 
 /*
 
 #include <stdio.h>
 #include <errno.h>
+#include <limits.h>
 #include <process.h>
 
 #include "EXTERN.h"
 #include "perl.h"
 
+/*****************************************************************************/
+/* priorities */
 
-/* dummies */
-
-int ioctl(int handle, unsigned int function, char *data)
-{ return -1; }
-
-int userinit()
-{ return -1; }
-
-int syscall()
-{ return -1; }
-
-
-/* extended chdir() */
-
-int chdir(char *path)
+int setpriority(int which, int pid, int val)
 {
-  if ( path[0] != 0 && path[1] == ':' )
-    if ( DosSelectDisk(toupper(path[0]) - '@') )
-      return -1;
-
-  return DosChDir(path, 0L);
+  return DosSetPriority((pid < 0) ? PRTYS_PROCESSTREE : PRTYS_PROCESS,
+                       val >> 8, val & 0xFF, abs(pid));
 }
 
-
-/* priorities */
-
-int setpriority(int class, int pid, int val)
+int getpriority(int which /* ignored */, int pid)
 {
-  int flag = 0;
+  TIB *tib;
+  PIB *pib;
+  DosGetInfoBlocks(&tib, &pib);
+  return tib->tib_ptib2->tib2_ulpri;
+}
 
-  if ( pid < 0 )
-  {
-    flag++;
-    pid = -pid;
-  }
+/*****************************************************************************/
+/* spawn */
 
-  return DosSetPrty(flag ? PRTYS_PROCESSTREE : PRTYS_PROCESS, class, val, pid);
+static int
+result(int flag, int pid)
+{
+       int r, status;
+       Signal_t (*ihand)();     /* place to save signal during system() */
+       Signal_t (*qhand)();     /* place to save signal during system() */
+
+       if (pid < 0 || flag != 0) 
+               return pid;
+
+       ihand = signal(SIGINT, SIG_IGN);
+       qhand = signal(SIGQUIT, SIG_IGN);
+       do {
+           r = wait4pid(pid, &status, 0);
+       } while (r == -1 && errno == EINTR);
+       signal(SIGINT, ihand);
+       signal(SIGQUIT, qhand);
+
+       statusvalue = (U16)status;
+       if (r < 0)
+               return -1;
+       return status & 0xFFFF;
 }
 
-int getpriority(int which /* ignored */, int pid)
+int
+do_aspawn(really,mark,sp)
+SV *really;
+register SV **mark;
+register SV **sp;
 {
-  USHORT val;
+    register char **a;
+    char *tmps;
+    int rc;
+    int flag = P_WAIT, trueflag;
 
-  if ( DosGetPrty(PRTYS_PROCESS, &val, pid) )
-    return -1;
-  else
-    return val;
-}
+    if (sp > mark) {
+       New(401,Argv, sp - mark + 1, char*);
+       a = Argv;
 
+       if (mark < sp && SvIOKp(*(mark+1))) {
+               ++mark;
+               flag = SvIVx(*mark);
+       }
 
-/* get parent process id */
+       while (++mark <= sp) {
+           if (*mark)
+               *a++ = SvPVx(*mark, na);
+           else
+               *a++ = "";
+       }
+       *a = Nullch;
 
-int getppid(void)
-{
-  PIDINFO pi;
+       trueflag = flag;
+       if (flag == P_WAIT)
+               flag = P_NOWAIT;
 
-  DosGetPID(&pi);
-  return pi.pidParent;
+       if (*Argv[0] != '/' && *Argv[0] != '\\') /* will swawnvp use PATH? */
+           TAINT_ENV();        /* testing IFS here is overkill, probably */
+       if (really && *(tmps = SvPV(really, na)))
+           rc = result(trueflag, spawnvp(flag,tmps,Argv));
+       else
+           rc = result(trueflag, spawnvp(flag,Argv[0],Argv));
+
+       if (rc < 0 && dowarn)
+           warn("Can't spawn \"%s\": %s", Argv[0], Strerror(errno));
+       if (rc < 0) rc = 255 << 8; /* Emulate the fork(). */
+    } else
+       rc = -1;
+    do_execfree();
+    return rc;
 }
 
-
-/* wait for specific pid */
-int wait4pid(int pid, int *status, int flags)
+int
+do_spawn(cmd)
+char *cmd;
 {
-  RESULTCODES res;
-  int endpid, rc;
-  if ( DosCwait(DCWA_PROCESS, flags ? DCWW_NOWAIT : DCWW_WAIT,
-                &res, &endpid, pid) )
-    return -1;
-  *status = res.codeResult;
-  return endpid;
-}
-/* kill */
+    register char **a;
+    register char *s;
+    char flags[10];
+    char *shell, *copt;
+    int rc;
+
+#ifdef TRYSHELL
+    if ((shell = getenv("EMXSHELL")) != NULL)
+       copt = "-c";
+    else if ((shell = getenv("SHELL")) != NULL)
+       copt = "-c";
+    else if ((shell = getenv("COMSPEC")) != NULL)
+       copt = "/C";
+    else
+       shell = "cmd.exe";
+#else
+    /* Consensus on perl5-porters is that it is _very_ important to
+       have a shell which will not change between computers with the
+       same architecture, to avoid "action on a distance". 
+       And to have simple build, this shell should be sh. */
+    shell = "sh.exe";
+    copt = "-c";
+#endif 
 
-int kill(int pid, int sig)
-{
-  int flag = 0;
+    while (*cmd && isSPACE(*cmd))
+       cmd++;
 
-  if ( pid < 0 )
-  {
-    flag++;
-    pid = -pid;
-  }
+    /* save an extra exec if possible */
+    /* see if there are shell metacharacters in it */
 
-  switch ( sig & 3 )
-  {
+    if (*cmd == '.' && isSPACE(cmd[1]))
+       goto doshell;
 
-  case 0:
-    DosKillProcess(flag ? DKP_PROCESSTREE : DKP_PROCESS, pid);
-    break;
+    if (strnEQ(cmd,"exec",4) && isSPACE(cmd[4]))
+       goto doshell;
 
-  case 1: /* FLAG A */
-    DosFlagProcess(pid, flag ? FLGP_SUBTREE : FLGP_PID, PFLG_A, 0);
-    break;
+    for (s = cmd; *s && isALPHA(*s); s++) ;    /* catch VAR=val gizmo */
+    if (*s == '=')
+       goto doshell;
 
-  case 2: /* FLAG B */
-    DosFlagProcess(pid, flag ? FLGP_SUBTREE : FLGP_PID, PFLG_B, 0);
-    break;
+    for (s = cmd; *s; s++) {
+       if (*s != ' ' && !isALPHA(*s) && strchr("$&*(){}[]'\";\\|?<>~`\n",*s)) {
+           if (*s == '\n' && !s[1]) {
+               *s = '\0';
+               break;
+           }
+         doshell:
+           rc = result(P_WAIT,
+                         spawnl(P_NOWAIT,shell,shell,copt,cmd,(char*)0));
+           if (rc < 0 && dowarn)
+               warn("Can't spawn \"%s\": %s", shell, Strerror(errno));
+           if (rc < 0) rc = 255 << 8; /* Emulate the fork(). */
+           return rc;
+       }
+    }
 
-  case 3: /* FLAG C */
-    DosFlagProcess(pid, flag ? FLGP_SUBTREE : FLGP_PID, PFLG_C, 0);
-    break;
+    New(402,Argv, (s - cmd) / 2 + 2, char*);
+    Cmd = savepvn(cmd, s-cmd);
+    a = Argv;
+    for (s = Cmd; *s;) {
+       while (*s && isSPACE(*s)) s++;
+       if (*s)
+           *(a++) = s;
+       while (*s && !isSPACE(*s)) s++;
+       if (*s)
+           *s++ = '\0';
+    }
+    *a = Nullch;
+    if (Argv[0]) {
+       rc = result(P_WAIT, spawnvp(P_NOWAIT,Argv[0],Argv));
+       if (rc < 0 && dowarn)
+           warn("Can't spawn \"%s\": %s", Argv[0], Strerror(errno));
+       if (rc < 0) rc = 255 << 8; /* Emulate the fork(). */
+    } else
+       rc = -1;
+    do_execfree();
+    return rc;
+}
 
-  }
+FILE *
+my_popen(cmd,mode)
+char   *cmd;
+char   *mode;
+{
+    char *shell = getenv("EMXSHELL");
+    FILE *res;
+    
+    my_setenv("EMXSHELL", "sh.exe");
+    res = popen(cmd, mode);
+    my_setenv("EMXSHELL", shell);
+    return res;
 }
 
+/*****************************************************************************/
 
-/* Sleep function. */
-void
-sleep(unsigned len)
+#ifndef HAS_FORK
+int
+fork(void)
 {
-   DosSleep(len * 1000L);
+    die(no_func, "Unsupported function fork");
+    errno = EINVAL;
+    return -1;
 }
+#endif
 
-/* Just pretend that everyone is a superuser */
+/*****************************************************************************/
+/* not implemented in EMX 0.9a */
 
-int setuid()
-{ return 0; }
+void * ctermid(x)      { return 0; }
 
-int setgid()
-{ return 0; }
+#ifdef MYTTYNAME /* was not in emx0.9a */
+void * ttyname(x)      { return 0; }
+#endif
 
-int getuid(void)
-{ return 0; }
+void * gethostent()    { return 0; }
+void * getnetent()     { return 0; }
+void * getprotoent()   { return 0; }
+void * getservent()    { return 0; }
+void   sethostent(x)   {}
+void   setnetent(x)    {}
+void   setprotoent(x)  {}
+void   setservent(x)   {}
+void   endhostent(x)   {}
+void   endnetent(x)    {}
+void   endprotoent(x)  {}
+void   endservent(x)   {}
 
-int geteuid(void)
-{ return 0; }
+/*****************************************************************************/
+/* stat() hack for char/block device */
 
-int getgid(void)
-{ return 0; }
+#if OS2_STAT_HACK
 
-int getegid(void)
-{ return 0; }
+    /* First attempt used DosQueryFSAttach which crashed the system when
+       used with 5.001. Now just look for /dev/. */
 
-/*
- * The following code is based on the do_exec and do_aexec functions
- * in file doio.c
- */
 int
-do_aspawn(really,arglast)
-STR *really;
-int *arglast;
+os2_stat(char *name, struct stat *st)
 {
-    register STR **st = stack->ary_array;
-    register int sp = arglast[1];
-    register int items = arglast[2] - sp;
-    register char **a;
-    char **argv;
-    char *tmps;
-    int status;
-
-    if (items) {
-       New(1101,argv, items+1, char*);
-       a = argv;
-       for (st += ++sp; items > 0; items--,st++) {
-           if (*st)
-               *a++ = str_get(*st);
-           else
-               *a++ = "";
-       }
-       *a = Nullch;
-       if (really && *(tmps = str_get(really)))
-           status = spawnvp(P_WAIT,tmps,argv);
-       else
-           status = spawnvp(P_WAIT,argv[0],argv);
-       Safefree(argv);
-    }
-    return status;
+    static int ino = SHRT_MAX;
+
+    if (stricmp(name, "/dev/con") != 0
+     && stricmp(name, "/dev/tty") != 0)
+       return stat(name, st);
+
+    memset(st, 0, sizeof *st);
+    st->st_mode = S_IFCHR|0666;
+    st->st_ino = (ino-- & 0x7FFF);
+    st->st_nlink = 1;
+    return 0;
 }
 
-char *getenv(char *name);
+#endif
 
-int
-do_spawn(cmd)
-char *cmd;
-{
-    register char **a;
-    register char *s;
-    char **argv;
-    char flags[10];
-    int status;
-    char *shell, *cmd2;
+#ifndef NO_SYS_ALLOC
 
-    /* save an extra exec if possible */
-    if ((shell = getenv("COMSPEC")) == 0)
-       shell = "C:\\OS2\\CMD.EXE";
+static char *old2K;
 
-    /* see if there are shell metacharacters in it */
-    if (strchr(cmd, '>') || strchr(cmd, '<') || strchr(cmd, '|')
-        || strchr(cmd, '&') || strchr(cmd, '^'))
-         doshell:
-           return spawnl(P_WAIT,shell,shell,"/C",cmd,(char*)0);
+#define ONE_K (1<<10)
+#define TWO_K (1<<11)
+#define FOUR_K (1<<12)
+#define FOUR_K_FLAG (FOUR_K - 1)
 
-    New(1102,argv, strlen(cmd) / 2 + 2, char*);
 
-    New(1103,cmd2, strlen(cmd) + 1, char);
-    strcpy(cmd2, cmd);
-    a = argv;
-    for (s = cmd2; *s;) {
-       while (*s && isspace(*s)) s++;
-       if (*s)
-           *(a++) = s;
-       while (*s && !isspace(*s)) s++;
-       if (*s)
-           *s++ = '\0';
-    }
-    *a = Nullch;
-    if (argv[0])
-       if ((status = spawnvp(P_WAIT,argv[0],argv)) == -1) {
-           Safefree(argv);
-           Safefree(cmd2);
-           goto doshell;
+void *
+sbrk(int size)
+{
+    char *got;
+    APIRET rc;
+    int is2K = 0;
+
+    if (!size) return 0;
+    else if (size == TWO_K) {
+       is2K = 1;
+       if (old2K) {
+           char *ret = old2K;
+
+           old2K = 0;
+           return (void *)ret;
        }
-    Safefree(cmd2);
-    Safefree(argv);
-    return status;
+       size = FOUR_K;
+    } else if (size & FOUR_K_FLAG) {
+       croak("Memory allocation in units %li not multiple to 4K", size);
+    }
+    rc = DosAllocMem((void **)&got, size, PAG_COMMIT | PAG_WRITE);
+    if (rc == ERROR_NOT_ENOUGH_MEMORY) {
+       return (void *) -1;
+    } else if ( rc ) die("Got an error from DosAllocMem: %li", (long)rc);
+    if (is2K) old2K = got + TWO_K;
+    return (void *)got;
 }
+#endif /* ! defined NO_SYS_ALLOC */
+
+/* tmp path */
 
-usage(char *myname)
+char *tmppath = TMPPATH1;
+
+void
+settmppath()
 {
-#ifdef MSDOS
-  printf("\nUsage: %s [-acdnpPsSvw] [-0[octal]] [-Dnumber] [-i[extension]] [-Idirectory]"
-#else
-  printf("\nUsage: %s [-acdnpPsSuUvw] [-Dnumber] [-i[extension]] [-Idirectory]"
-#endif
-         "\n            [-e \"command\"] [-x[directory]] [filename] [arguments]\n", myname);
-
-  printf("\n  -a  autosplit mode with -n or -p"
-         "\n  -c  syntaxcheck only"
-         "\n  -d  run scripts under debugger"
-         "\n  -n  assume 'while (<>) { ...script... }' loop arround your script"
-         "\n  -p  assume loop like -n but print line also like sed"
-         "\n  -P  run script through C preprocessor befor compilation"
-         "\n  -s  enable some switch parsing for switches after script name"
-         "\n  -S  look for the script using PATH environment variable");
-#ifndef MSDOS
-  printf("\n  -u  dump core after compiling the script"
-         "\n  -U  allow unsafe operations");
-#endif
-  printf("\n  -v  print version number and patchlevel of perl"
-         "\n  -w  turn warnings on for compilation of your script\n"
-         "\n  -0[octal]       specify record separator (0, if no argument)"
-         "\n  -Dnumber        set debugging flags (argument is a bit mask)"
-         "\n  -i[extension]   edit <> files in place (make backup if extension supplied)"
-         "\n  -Idirectory     specify include directory in conjunction with -P"
-         "\n  -e command      one line of script, multiple -e options are allowed"
-         "\n                  [filename] can be ommitted, when -e is used"
-         "\n  -x[directory]   strip off text before #!perl line and perhaps cd to directory\n");
+    char *p = getenv("TMP"), *tpath;
+    int len;
+
+    if (!p) p = getenv("TEMP");
+    if (!p) return;
+    len = strlen(p);
+    tpath = (char *)malloc(len + strlen(TMPPATH1) + 2);
+    strcpy(tpath, p);
+    tpath[len] = '/';
+    strcpy(tpath + len + 1, TMPPATH1);
+    tmppath = tpath;
 }