1 #define PERLIO_NOT_STDIO 0
4 /* hold file pointer, command, mode, and the status of the command */
8 struct pipe_list *next;
12 /* static, global list pointer */
13 static struct pipe_list *pl = NULL;
16 djgpp_popen (const char *cm, const char *md) /* program name, pipe mode */
23 if ((l1 = (struct pipe_list *) malloc (sizeof (*l1)))
24 && (temp_name = malloc (L_tmpnam)) && tmpnam (temp_name))
32 /* if caller wants to read */
33 if (md[0] == 'r' && (fd = dup (fileno (stdout))) >= 0)
35 if ((l1->fp = freopen (temp_name, "wb", stdout)))
37 l1->exit_status = system (cm);
38 if (dup2 (fd, fileno (stdout)) >= 0)
39 l1->fp = fopen (temp_name, md);
43 /* if caller wants to write */
44 else if (md[0] == 'w' && (l1->command = malloc (1 + strlen (cm))))
46 strcpy (l1->command, cm);
47 l1->fp = fopen (temp_name, md);
52 l1->fp->_flag |= _IORMONCL; /* remove on close */
53 l1->fp->_name_to_remove = temp_name;
64 djgpp_pclose (FILE *pp)
66 struct pipe_list *l1, **l2; /* list pointers */
67 int retval=-1; /* function return value */
69 for (l2 = &pl; *l2 && (*l2)->fp != pp; l2 = &((*l2)->next))
75 /* if pipe was opened to write */
80 close (fileno (l1->fp));
82 if ((fd = dup (fileno (stdin))) >= 0
83 && (freopen (l1->fp->_name_to_remove, "rb", stdin)))
85 retval = system (l1->command);
86 dup2 (fd, fileno (stdin));
92 /* if pipe was opened to read, return the exit status we saved */
93 retval = l1->exit_status;
95 fclose (l1->fp); /* this removes the temp file */
97 return retval; /* retval==0 ? OK : ERROR */
102 #define EXECF_SPAWN 0
106 convretcode (pTHX_ int rc,char *prog,int fl)
108 if (rc < 0 && ckWARN(WARN_EXEC))
109 Perl_warner(aTHX_ packWARN(WARN_EXEC),"Can't %s \"%s\": %s",
110 fl ? "exec" : "spawn",prog,Strerror (errno));
117 do_aspawn (pTHX_ SV *really,SV **mark,SV **sp)
120 char **a,*tmps,**argv;
125 a=argv=(char**) alloca ((sp-mark+3)*sizeof (char*));
129 *a++ = SvPVx(*mark, n_a);
134 if (argv[0][0] != '/' && argv[0][0] != '\\'
135 && !(argv[0][0] && argv[0][1] == ':'
136 && (argv[0][2] == '/' || argv[0][2] != '\\'))
137 ) /* will swawnvp use PATH? */
138 TAINT_ENV(); /* testing IFS here is overkill, probably */
140 if (really && *(tmps = SvPV(really, n_a)))
141 rc=spawnvp (P_WAIT,tmps,argv);
143 rc=spawnvp (P_WAIT,argv[0],argv);
145 return convretcode (rc,argv[0],EXECF_SPAWN);
148 #define EXTRA "\x00\x00\x00\x00\x00\x00"
151 do_spawn2 (pTHX_ char *cmd,int execf)
153 char **a,*s,*shell,*metachars;
156 if ((shell=getenv("SHELL"))==NULL && (shell=getenv("COMSPEC"))==NULL)
157 shell="c:\\command.com" EXTRA;
159 unixysh=_is_unixy_shell (shell);
160 metachars=unixysh ? "$&*(){}[]'\";\\?>|<~`\n" EXTRA : "*?[|<>\"\\" EXTRA;
162 while (*cmd && isSPACE(*cmd))
165 if (strnEQ (cmd,"/bin/sh",7) && isSPACE (cmd[7]))
168 /* save an extra exec if possible */
169 /* see if there are shell metacharacters in it */
170 if (strstr (cmd,"..."))
174 if (*cmd=='.' && isSPACE (cmd[1]))
176 if (strnEQ (cmd,"exec",4) && isSPACE (cmd[4]))
178 for (s=cmd; *s && isALPHA (*s); s++) ; /* catch VAR=val gizmo */
183 if (strchr (metachars,*s))
185 if (*s=='\n' && s[1]=='\0')
191 if (execf==EXECF_EXEC)
192 return convretcode (execl (shell,shell,unixysh ? "-c" : "/c",cmd,NULL),cmd,execf);
193 return convretcode (system (cmd),cmd,execf);
196 New (1303,PL_Argv,(s-cmd)/2+2,char*);
197 PL_Cmd=savepvn (cmd,s-cmd);
199 for (s=PL_Cmd; *s;) {
200 while (*s && isSPACE (*s)) s++;
203 while (*s && !isSPACE (*s)) s++;
211 if (execf==EXECF_EXEC)
212 rc=execvp (PL_Argv[0],PL_Argv);
214 rc=spawnvp (P_WAIT,PL_Argv[0],PL_Argv);
215 return convretcode (rc,PL_Argv[0],execf);
219 do_spawn (pTHX_ char *cmd)
221 return do_spawn2 (aTHX_ cmd,EXECF_SPAWN);
225 Perl_do_exec (pTHX_ char *cmd)
227 do_spawn2 (aTHX_ cmd,EXECF_EXEC);
241 #define MAXOPENGLOBS 10
243 static struct globinfo myglobs[MAXOPENGLOBS];
245 static struct globinfo *
249 for (ic=0; ic<MAXOPENGLOBS; ic++)
250 if (myglobs[ic].fd==fd)
256 glob_handler (__FSEXT_Fnumber n,int *rv,va_list args)
264 char *p1,*pattern,*name=va_arg (args,char*);
268 if (strnNE (name,"/dev/dosglob/",13))
270 if ((gi=searchfd (-1)) == NULL)
274 pattern=alloca (strlen (name+=13)+1);
275 strcpy (pattern,name);
282 if ((p1=strchr (pattern,' '))!=NULL)
284 glob (pattern,ic,0,&pglob);
286 if ((pattern=p1)!=NULL)
289 for (ic=len=0; ic<pglob.gl_pathc; ic++)
290 len+=1+strlen (pglob.gl_pathv[ic]);
293 if ((gi->matches=p1=(char*) malloc (gi->size=len))==NULL)
295 for (ic=0; ic<pglob.gl_pathc; ic++)
297 strcpy (p1,pglob.gl_pathv[ic]);
303 if ((gi->matches=strdup (name))==NULL)
305 gi->size=strlen (name)+1;
308 gi->fd=*rv=__FSEXT_alloc_fd (glob_handler);
313 int fd=va_arg (args,int);
314 char *buf=va_arg (args,char*);
315 size_t siz=va_arg (args,size_t);
317 if ((gi=searchfd (fd))==NULL)
320 if (siz+gi->pos > gi->size)
321 siz = gi->size - gi->pos;
322 memcpy (buf,gi->pos+gi->matches,siz);
329 int fd=va_arg (args,int);
331 if ((gi=searchfd (fd))==NULL)
349 Perl_croak (aTHX_ "Usage: Dos::GetCwd()");
351 char tmp[PATH_MAX+2];
352 ST(0)=sv_newmortal ();
353 if (getcwd (tmp,PATH_MAX+1)!=NULL)
354 sv_setpv ((SV*)ST(0),tmp);
355 #ifndef INCOMPLETE_TAINTS
366 XSRETURN_IV (_USE_LFN);
373 Perl_croak_nocontext("Usage: Cwd::sys_cwd()");
377 RETVAL = getcwd(p, MAXPATHLEN);
378 ST(0) = sv_newmortal();
379 sv_setpv((SV*)ST(0), RETVAL);
380 #ifndef INCOMPLETE_TAINTS
388 Perl_init_os_extras(pTHX)
390 char *file = __FILE__;
394 newXS ("Dos::GetCwd",dos_GetCwd,file);
395 newXS ("Dos::UseLFN",dos_UseLFN,file);
396 newXS ("Cwd::sys_cwd",XS_Cwd_sys_cwd,file);
398 /* install my File System Extension for globbing */
399 __FSEXT_add_open_handler (glob_handler);
400 memset (myglobs,-1,sizeof (myglobs));
403 static char *perlprefix;
405 #define PERL5 "/perl5"
408 djgpp_pathexp (const char *p)
410 static char expp[PATH_MAX];
411 strcpy (expp,perlprefix);
415 strcat (expp,"/bin");
418 strcat (expp,"/lib" PERL5 "/site");
421 strcat (expp,"/lib" PERL5);
428 Perl_DJGPP_init (int *argcp,char ***argvp)
432 perlprefix=strdup (**argvp);
434 if ((p=strrchr (perlprefix,'/'))!=NULL)
437 if (strEQ (p-4,"/bin"))
441 strcpy (perlprefix,"..");
445 djgpp_fflush (FILE *fp)
449 if ((res = fflush(fp)) == 0 && fp) {
451 if (Fstat(fileno(fp), &s) == 0 && !S_ISSOCK(s.st_mode))
452 res = fsync(fileno(fp));
455 * If the flush succeeded but set end-of-file, we need to clear
456 * the error because our caller may check ferror(). BTW, this
457 * probably means we just flushed an empty file.
459 if (res == 0 && fp && ferror(fp) == EOF) clearerr(fp);
464 int djgpp_get_stream_mode(FILE *f)
466 extern char *__file_handle_modes;
468 int mode = __file_handle_modes[fileno(f)];
469 if (f->_flag & _IORW)
470 return mode | O_RDWR;
471 if (f->_flag & _IOWRT)
472 return mode | O_WRONLY;
473 return mode | O_RDONLY;