1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
|
/*
* Copyright 1994 the Free Software Foundation, Inc.
*
* Author: Roland B. Roberts (roberts@nsrl.rochester.edu)
*
* This file is a part of GNU VMSLIB, the GNU library for porting GNU
* software to VMS.
*
* GNU VMSLIB is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* GNU VMSLIB is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
/*
* Modification History
* 13 Sep 94 - RBR
* Use event flag one -- zero seems to cause sys$synch to hang.
* 12 Sep 94 - RBR
* All pipes now use event flag zero.
* Removed the limit on the number of pipes.
* Added members to PIPE structure and memory corruption tests.
*/
/* This won't work with GCC, but it won't cause any problems either. */
#define MODULE PIPE
#define VERSION "V1.5"
#ifdef __DECC
#pragma module MODULE VERSION
#else
#ifdef VAXC
#module MODULE VERSION
#endif
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <iodef.h>
#include <ssdef.h>
#include <syidef.h>
#include <clidef.h>
#include <stsdef.h>
#include <dvidef.h>
#include <nam.h>
#include <descrip.h>
#include <errno.h>
#include <file.h>
#include <lib$routines.h>
#include <starlet.h>
#include <setjmp.h>
#include "vms-types.h"
/* A linked list of pipes, for internal use only */
struct PIPE
{
struct PIPE *next; /* next pipe in the chain */
struct PIPE *prev; /* previous pipe in the chain */
struct PIPE *self; /* self reference */
int mode; /* pipe I/O mode (read or write) */
long status; /* subprocess completion status */
struct IOSB iosb; /* pipe I/O status block */
FILE *file; /* pipe file structure */
int pid; /* pipe process id */
short chan; /* pipe channel */
jmp_buf jmpbuf; /* jump buffer, if needed */
int has_jmpbuf; /* flag */
};
/* Head of the pipe chain */
static struct PIPE *phead = NULL, *ptail = NULL;
static unsigned char evf = 1;
/*
* Exit handler for current process, established by popen().
* Force the current process to wait for the completion of children
* which were started via popen().
* Since
*/
static int
pwait (status)
int status;
{
struct IOSB iosb;
struct PIPE *this;
int ret = 0;
this = phead;
while (this)
{
if (this->self != this)
{
ret = -1;
continue;
}
if (!this->iosb.status)
{
fflush (this->file);
if (this->mode == O_WRONLY)
sys$qio (0, this->chan, IO$_WRITEOF, &iosb,
0, 0, 0, 0, 0, 0, 0, 0);
fclose (this->file);
sys$synch (evf, &this->iosb);
}
else
fclose(this->file);
sys$dassgn (this->chan);
this = this->next;
}
return ret;
}
/*
* Close a "pipe" created by popen()
* Return codes
* >0 VMS exit status of process
* 0 success, pipe was closed
* -1 stream not found in list of pipes
* -2 memory corruption detected
*/
int
pclose (stream)
FILE *stream;
{
struct IOSB iosb;
struct PIPE *this = phead;
while (this && this->self == this && this->file != stream)
this = this->next;
/* Pipe not found or failed sanity check */
if (!this)
return -1;
else if (this->self != this)
return -2;
/* Flush the I/O buffer and wait for the close to complete */
if (!this->iosb.status)
{
fflush (this->file);
if (this->mode == O_WRONLY)
sys$qio (0, this->chan, IO$_WRITEOF, &iosb,
0, 0, 0, 0, 0, 0, 0, 0);
fclose (this->file);
sys$synch (evf, &this->iosb);
}
else
fclose (this->file);
sys$dassgn (this->chan);
/* Remove `this' from the list of pipes and free its storage */
if (this == ptail)
ptail = this->prev;
if (this == phead)
phead = this->next;
if (this->prev)
this->prev->next = this->next;
if (this->next)
this->next->prev = this->prev;
free (this);
if (this->status & STS$M_SUCCESS != STS$M_SUCCESS)
return this->status;
else
return 0;
}
/*
* Subprocess AST completion routine
* Indicate successful completion in the iosb and clear the pid.
* Note that the channel is *not* deassigned and the file is
* *not* closed.
*/
void
pdone (this)
struct PIPE *this;
{
struct IOSB iosb;
if (this->self != this)
return;
this->iosb.status = 1;
this->pid = 0;
if (this->has_jmpbuf)
{
this->has_jmpbuf = 0;
longjmp (this->jmpbuf, 1);
}
}
int
pipe_set_fd_jmpbuf (fd, jmpbuf)
int fd;
jmp_buf jmpbuf;
{
struct PIPE *this = phead;
while (this)
if (fileno (this->file) == fd)
{
memcpy (this->jmpbuf, jmpbuf, sizeof (jmp_buf));
this->has_jmpbuf = 1;
if (this->pid == 0)
{
this->has_jmpbuf = 0;
longjmp (this->jmpbuf, 1);
}
return 0;
}
else
this = this->next;
return 1;
}
pipe_unset_fd_jmpbuf (fd)
int fd;
{
struct PIPE *this = phead;
while (this)
if (fileno (this->file) == fd)
{
this->has_jmpbuf = 0;
return 0;
}
else
this = this->next;
return 1;
}
/* Exit handler control block for the current process. */
static struct EXHCB pexhcb = { 0, pwait, 1, &pexhcb.exh$l_status, 0 };
struct Vstring
{
short length;
char body[NAM$C_MAXRSS+1];
};
/*
* Emulate a unix popen() call using lib$spawn
*
* if mode == "w", lib$spawn uses the mailbox for sys$input
* if mode == "r", lib$spawn uses the mailbox for sys$output
*
* Don't now how to handle both read and write
*
* Returns
* FILE * file pointer to the pipe
* NULL indicates an error ocurred, check errno value
*/
FILE *
popen (cmd, mode)
const char *cmd;
const char *mode;
{
int i, status, flags, mbxsize;
struct IOSB iosb;
struct dsc$descriptor_s cmddsc, mbxdsc;
struct Vstring mbxname = { sizeof(mbxname.body) };
struct itm$list3 mbxlist[2] = {
{ sizeof(mbxname.body)-1, DVI$_DEVNAM, &mbxname.body, &mbxname.length },
{ 0, 0, 0, 0} };
struct itm$list3 syilist[2] = {
{ sizeof(mbxsize), SYI$_MAXBUF, &mbxsize, (void *) 0 },
{ 0, 0, 0, 0} };
static int noExitHandler = 1;
struct PIPE *this;
/* First allocate space for the new pipe */
this = (struct PIPE *) calloc (1, sizeof(struct PIPE));
if (!this)
{
errno = ENOMEM;
return NULL;
}
/* Sanity check value */
this->self = this;
/* Use the smaller of SYI$_MAXBUF and 2048 for the mailbox size */
status = sys$getsyiw(0, 0, 0, syilist, &iosb, 0, 0, 0);
if (status != SS$_NORMAL && !(iosb.status & STS$M_SUCCESS))
{
vaxc$errno = iosb.status;
errno = EVMSERR;
free (this);
perror ("popen, $GETSYIW failure for SYI$_MAXBUF");
return NULL;
}
if (mbxsize > 2048)
mbxsize = 2048;
status = sys$crembx (0, &this->chan, mbxsize, mbxsize, 0, 0, 0, 0);
if (status != SS$_NORMAL)
{
vaxc$errno = status;
errno = EVMSERR;
free (this);
perror ("popen, $CREMBX failure");
return NULL;
}
/* Retrieve mailbox name, use for fopen */
status = sys$getdviw (0, this->chan, 0, &mbxlist, &iosb, 0, 0, 0);
if (status != SS$_NORMAL && !(iosb.status & STS$M_SUCCESS))
{
vaxc$errno = iosb.status;
errno = EVMSERR;
sys$dassgn (this->chan);
free (this);
perror ("popen, $GETDVIW failure");
return NULL;
}
/* Spawn the command using the mailbox as the name for sys$input */
mbxname.body[mbxname.length] = 0;
mbxdsc.dsc$w_length = mbxname.length;
mbxdsc.dsc$b_dtype = DSC$K_DTYPE_T;
mbxdsc.dsc$b_class = DSC$K_CLASS_S;
mbxdsc.dsc$a_pointer = mbxname.body;
cmddsc.dsc$w_length = strlen(cmd);
cmddsc.dsc$b_dtype = DSC$K_DTYPE_T;
cmddsc.dsc$b_class = DSC$K_CLASS_S;
cmddsc.dsc$a_pointer = (char *)cmd;
flags = CLI$M_NOWAIT;
if (strcmp(mode,"w") == 0)
{
status = lib$spawn (&cmddsc, &mbxdsc, 0, &flags, 0, &this->pid,
&this->status, &evf, &pdone, this->self);
this->mode = O_WRONLY;
}
else
{
status = lib$spawn (&cmddsc, 0, &mbxdsc, &flags, 0, &this->pid,
&this->status, &evf, &pdone, this->self);
this->mode = O_RDONLY;
}
if (status != SS$_NORMAL)
{
vaxc$errno = status;
errno = EVMSERR;
sys$dassgn (this->chan);
free (this);
perror("popen, LIB$SPAWN failure");
return NULL;
}
/* Set up an exit handler so the subprocess isn't prematurely killed */
if (noExitHandler)
{
status = sys$dclexh (&pexhcb);
if (status != SS$_NORMAL)
{
vaxc$errno = status;
errno = EVMSERR;
sys$dassgn (this->chan);
sys$delprc (&this->pid, 0);
free (this);
perror("popen, $DCLEXH failure");
return NULL;
}
noExitHandler = 0;
}
/* Pipes are always binary mode devices */
if (this->mode == O_WRONLY)
this->file = fopen (mbxname.body, "wb");
else
this->file = fopen (mbxname.body, "rb");
/* Paranoia, check for failure again */
if (!this->file)
{
sys$dassgn (this->chan);
sys$delprc (this->pid);
free (this);
perror ("popen, fopen failure");
return NULL;
}
this->has_jmpbuf = 0;
/* Insert the new pipe into the list of open pipes */
if (phead)
{
ptail->next = this;
this->prev = ptail;
ptail = this;
}
else
phead = ptail = this;
return (this->file);
}
#ifdef TEST_PIPE
int
main (argc, argv)
int argc;
char **argv;
{
FILE *stdpipe;
char line[512];
while (1)
{
printf ("\nEnter a command to run >> ");
fgets (line, 511, stdin);
if (!strlen(line))
exit (1);
line[strlen(line)-1] = 0;
stdpipe = popen (line, "r");
if (!stdpipe)
{
fprintf (stderr, "popen failed.\n");
exit(44);
}
do {
fgets (line, 511, stdpipe);
fputs (line, stdout);
} while (!feof(stdpipe));
pclose (stdpipe);
}
}
#endif
|