/*********************************************************************** * * * This software is part of the ast package * * Copyright (c) 1985-2007 AT&T Knowledge Ventures * * and is licensed under the * * Common Public License, Version 1.0 * * by AT&T Knowledge Ventures * * * * A copy of the License is available at * * http://www.opensource.org/licenses/cpl1.0.txt * * (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) * * * * Information and Software Systems Research * * AT&T Research * * Florham Park NJ * * * * Glenn Fowler * * David Korn * * Phong Vo * * * ***********************************************************************/ #pragma prototyped /* * process library interface */ #ifndef _PROC_H #define _PROC_H #include #define PROC_ARGMOD (1<<0) /* argv[-1],argv[0] can be modified */ #define PROC_BACKGROUND (1<<1) /* shell background (&) setup */ #define PROC_CHECK (1<<17) /* check that command exists */ #define PROC_CLEANUP (1<<2) /* close parent redirect fds on error */ #define PROC_DAEMON (1<<3) /* daemon setup */ #define PROC_ENVCLEAR (1<<4) /* clear environment */ #define PROC_FOREGROUND (1<<14) /* system(3) setup */ #define PROC_GID (1<<5) /* setgid(getgid()) */ #define PROC_IGNORE (1<<6) /* ignore parent pipe errors */ #define PROC_IGNOREPATH (1<<16) /* procrun() intercept to ignore path */ #define PROC_OVERLAY (1<<7) /* overlay current process if possible */ #define PROC_PARANOID (1<<8) /* restrict everything */ #define PROC_PRIVELEGED (1<<9) /* setuid(0), setgid(getegid()) */ #define PROC_READ (1<<10) /* proc pipe fd 1 returned */ #define PROC_SESSION (1<<11) /* session leader */ #define PROC_UID (1<<12) /* setuid(getuid()) */ #define PROC_WRITE (1<<13) /* proc pipe fd 0 returned */ #define PROC_ZOMBIE (1<<15) /* proc may leave a zombie behind */ #define PROC_ARG_BIT 14 /* bits per op arg */ #define PROC_OP_BIT 4 /* bits per op */ #define PROC_ARG_NULL ((1<>(2*PROC_ARG_BIT))&((1<>(((n)-1)*PROC_ARG_BIT))&PROC_ARG_NULL):(((x)&~((1<<(2*PROC_ARG_BIT))-1))==~((1<<(2*PROC_ARG_BIT))-1))?(-1):((x)&~((1<<(2*PROC_ARG_BIT))-1))) typedef struct { pid_t pid; /* process id */ pid_t pgrp; /* process group id */ int rfd; /* read fd if applicable */ int wfd; /* write fd if applicable */ #ifdef _PROC_PRIVATE_ _PROC_PRIVATE_ #endif } Proc_t; #if _BLD_ast && defined(__EXPORT__) #define extern __EXPORT__ #endif extern int procclose(Proc_t*); extern int procfree(Proc_t*); extern Proc_t* procopen(const char*, char**, char**, long*, int); extern int procrun(const char*, char**, int); #undef extern #endif