2000-09-08 04:56:55 +02:00
|
|
|
/* pinfo.h: process table info
|
|
|
|
|
* child_info.h, cygheap.h, fhandler_clipboard.cc, fhandler_dsp.cc,
fhandler_floppy.cc, fhandler_mem.cc, fhandler_random.cc,
fhandler_tape.cc, fhandler_zero.cc, grp.cc, mmap.cc, passwd.cc,
pinfo.cc, pinfo.h, pipe.cc, sec_acl.cc, sec_helper.cc, security.cc,
security.h, thread.h, uinfo.cc, include/cygwin/acl.h: Fix copyright.
2002-02-10 14:50:13 +01:00
|
|
|
Copyright 2000, 2001, 2002 Red Hat, Inc.
|
2000-09-08 04:56:55 +02:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
2000-07-29 18:24:59 +02:00
|
|
|
|
2002-06-02 08:07:01 +02:00
|
|
|
#ifndef _PINFO_H
|
|
|
|
#define _PINFO_H
|
2000-07-29 18:24:59 +02:00
|
|
|
/* Signal constants (have to define them here, unfortunately) */
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
__SIGFLUSH = -2,
|
|
|
|
__SIGSTRACE = -1,
|
2002-10-30 22:05:18 +01:00
|
|
|
__SIGCOMMUNE = 0,
|
2001-05-04 23:09:47 +02:00
|
|
|
__SIGOFFSET = 2
|
2000-07-29 18:24:59 +02:00
|
|
|
};
|
|
|
|
|
2001-02-10 05:20:52 +01:00
|
|
|
#define PSIZE 63
|
2000-08-22 07:10:20 +02:00
|
|
|
|
2000-09-08 04:56:55 +02:00
|
|
|
#include <sys/resource.h>
|
2000-10-17 01:55:58 +02:00
|
|
|
#include "thread.h"
|
2000-08-22 07:10:20 +02:00
|
|
|
|
2002-10-30 22:05:18 +01:00
|
|
|
struct commune_result
|
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
int n;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum picom
|
|
|
|
{
|
|
|
|
PICOM_CMDLINE = 1
|
|
|
|
};
|
|
|
|
|
2000-07-29 18:24:59 +02:00
|
|
|
class _pinfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/* Cygwin pid */
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
/* Various flags indicating the state of the process. See PID_
|
|
|
|
constants below. */
|
|
|
|
DWORD process_state;
|
|
|
|
|
|
|
|
/* If hProcess is set, it's because it came from a
|
|
|
|
CreateProcess call. This means it's process relative
|
|
|
|
to the thing which created the process. That's ok because
|
|
|
|
we only use this handle from the parent. */
|
|
|
|
HANDLE hProcess;
|
|
|
|
|
2002-05-02 06:13:48 +02:00
|
|
|
#define PINFO_REDIR_SIZE ((char *) &myself.procinfo->hProcess - (char *) myself.procinfo)
|
2000-07-29 18:24:59 +02:00
|
|
|
|
2000-10-09 04:53:44 +02:00
|
|
|
/* Handle associated with initial Windows pid which started it all. */
|
|
|
|
HANDLE pid_handle;
|
|
|
|
|
2000-11-06 07:36:32 +01:00
|
|
|
/* Handle to the logical parent of this pid. */
|
|
|
|
HANDLE ppid_handle;
|
|
|
|
|
2000-07-29 18:24:59 +02:00
|
|
|
/* Parent process id. */
|
|
|
|
pid_t ppid;
|
|
|
|
|
|
|
|
/* dwProcessId contains the processid used for sending signals. It
|
|
|
|
* will be reset in a child process when it is capable of receiving
|
|
|
|
* signals.
|
|
|
|
*/
|
|
|
|
DWORD dwProcessId;
|
|
|
|
|
|
|
|
/* Used to spawn a child for fork(), among other things. */
|
|
|
|
char progname[MAX_PATH];
|
|
|
|
|
|
|
|
/* User information.
|
|
|
|
The information is derived from the GetUserName system call,
|
|
|
|
with the name looked up in /etc/passwd and assigned a default value
|
|
|
|
if not found. This data resides in the shared data area (allowing
|
|
|
|
tasks to store whatever they want here) so it's for informational
|
|
|
|
purposes only. */
|
Change internal gid datatype from __gid16_t to __gid32_t
throughout.
* cygwin.din: Export new symbols chown32, fchown32, getegid32,
getgid32, getgrgid32, getgrnam32, getgroups32, initgroups32, lchown32,
setgid32, setegid32, getgrent32.
* grp.cc (grp32togrp16): New static function.
(getgrgid32): New function.
(getgrnam32): Ditto.
(getgrent32): Ditto.
(getgroups32): Change name of internal function from getgroups.
(getgroups32): New function.
(initgroups32): Ditto.
* syscalls.cc (chown32): Ditto.
(lchown32): Ditto.
(fchown32): Ditto.
(setegid32): Ditto.
(setgid32): Ditto.
* uinfo.cc (getgid32): Ditto.
(getegid32): Ditto.
* include/cygwin/grp.h: Remove declaration of getgrgid() and getgrnam().
Declare getgrgid32() and getgrnam32() instead. Declare getgid32().
2002-05-28 16:10:55 +02:00
|
|
|
__uid32_t uid; /* User ID */
|
|
|
|
__gid32_t gid; /* Group ID */
|
2000-08-09 04:33:47 +02:00
|
|
|
pid_t pgid; /* Process group ID */
|
|
|
|
pid_t sid; /* Session ID */
|
|
|
|
int ctty; /* Control tty */
|
2000-10-25 05:54:50 +02:00
|
|
|
bool has_pgid_children;/* True if we've forked or spawned children with our GID. */
|
2000-07-29 18:24:59 +02:00
|
|
|
|
2000-10-15 03:37:07 +02:00
|
|
|
/* Resources used by process. */
|
|
|
|
long start_time;
|
|
|
|
struct rusage rusage_self;
|
|
|
|
struct rusage rusage_children;
|
|
|
|
|
2000-07-29 18:24:59 +02:00
|
|
|
/* Non-zero if process was stopped by a signal. */
|
|
|
|
char stopsig;
|
2002-12-12 04:09:38 +01:00
|
|
|
|
2002-10-30 22:05:18 +01:00
|
|
|
/* commune */
|
|
|
|
pid_t hello_pid;
|
|
|
|
HANDLE tothem;
|
|
|
|
HANDLE fromthem;
|
2000-07-29 18:24:59 +02:00
|
|
|
|
2000-10-17 01:55:58 +02:00
|
|
|
void exit (UINT n, bool norecord = 0) __attribute__ ((noreturn, regparm(2)));
|
|
|
|
|
2000-10-25 05:54:50 +02:00
|
|
|
inline void set_has_pgid_children ()
|
|
|
|
{
|
|
|
|
if (pgid == pid)
|
|
|
|
has_pgid_children = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void set_has_pgid_children (bool val) {has_pgid_children = val;}
|
|
|
|
|
2000-10-17 01:55:58 +02:00
|
|
|
inline struct sigaction& getsig (int sig)
|
|
|
|
{
|
|
|
|
return thread2signal ? thread2signal->sigs[sig] : sigs[sig];
|
|
|
|
}
|
|
|
|
|
2002-05-18 22:27:49 +02:00
|
|
|
inline void copysigs (_pinfo *p) {memcpy (sigs, p->sigs, sizeof (sigs));}
|
2000-10-17 01:55:58 +02:00
|
|
|
|
|
|
|
inline sigset_t& getsigmask ()
|
|
|
|
{
|
|
|
|
return thread2signal ? *thread2signal->sigmask : sig_mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void setsigmask (sigset_t mask)
|
|
|
|
{
|
|
|
|
if (thread2signal)
|
|
|
|
*(thread2signal->sigmask) = mask;
|
|
|
|
sig_mask = mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline LONG* getsigtodo (int sig) {return _sigtodo + __SIGOFFSET + sig;}
|
|
|
|
|
|
|
|
inline HANDLE getthread2signal ()
|
|
|
|
{
|
|
|
|
return thread2signal ? thread2signal->win32_obj_id : hMainThread;
|
|
|
|
}
|
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
inline void setthread2signal (void *thr) {thread2signal = (pthread *) thr;}
|
2002-10-30 22:05:18 +01:00
|
|
|
void commune_recv ();
|
|
|
|
commune_result commune_send (DWORD);
|
|
|
|
bool alive ();
|
|
|
|
char *cmdline (size_t &);
|
|
|
|
|
|
|
|
friend void __stdcall set_myself (pid_t, HANDLE);
|
2000-07-29 18:24:59 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct sigaction sigs[NSIG];
|
|
|
|
sigset_t sig_mask; /* one set for everything to ignore. */
|
|
|
|
LONG _sigtodo[NSIG + __SIGOFFSET];
|
2002-10-30 22:05:18 +01:00
|
|
|
pthread *thread2signal; // NULL means thread any other means a pthread
|
|
|
|
CRITICAL_SECTION lock;
|
2000-07-29 18:24:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class pinfo
|
|
|
|
{
|
|
|
|
HANDLE h;
|
2000-08-26 05:48:37 +02:00
|
|
|
_pinfo *procinfo;
|
2002-08-19 16:59:27 +02:00
|
|
|
bool destroy;
|
2000-07-29 18:24:59 +02:00
|
|
|
public:
|
2000-11-12 05:57:41 +01:00
|
|
|
void init (pid_t n, DWORD create = 0, HANDLE h = NULL) __attribute__ ((regparm(3)));
|
2000-10-15 03:37:07 +02:00
|
|
|
pinfo () {}
|
2000-08-26 05:48:37 +02:00
|
|
|
pinfo (_pinfo *x): procinfo (x) {}
|
2000-07-29 18:24:59 +02:00
|
|
|
pinfo (pid_t n) {init (n);}
|
|
|
|
pinfo (pid_t n, int create) {init (n, create);}
|
2000-08-26 05:48:37 +02:00
|
|
|
void release ();
|
2000-07-29 18:24:59 +02:00
|
|
|
~pinfo ()
|
|
|
|
{
|
2000-08-26 05:48:37 +02:00
|
|
|
if (destroy && procinfo)
|
2000-07-29 18:24:59 +02:00
|
|
|
release ();
|
|
|
|
}
|
2000-10-25 05:54:50 +02:00
|
|
|
|
2000-08-26 05:48:37 +02:00
|
|
|
_pinfo *operator -> () const {return procinfo;}
|
|
|
|
int operator == (pinfo *x) const {return x->procinfo == procinfo;}
|
|
|
|
int operator == (pinfo &x) const {return x.procinfo == procinfo;}
|
|
|
|
int operator == (void *x) const {return procinfo == x;}
|
|
|
|
int operator == (int x) const {return (int) procinfo == (int) x;}
|
|
|
|
int operator == (char *x) const {return (char *) procinfo == x;}
|
|
|
|
_pinfo *operator * () const {return procinfo;}
|
|
|
|
operator _pinfo * () const {return procinfo;}
|
2000-08-24 06:07:50 +02:00
|
|
|
// operator bool () const {return (int) h;}
|
2002-08-19 16:59:27 +02:00
|
|
|
#ifndef _SIGPROC_H
|
2002-06-02 08:07:01 +02:00
|
|
|
int remember () {system_printf ("remember is not here"); return 0;}
|
2002-08-19 16:59:27 +02:00
|
|
|
#else
|
|
|
|
int remember ()
|
|
|
|
{
|
|
|
|
int res = proc_subproc (PROC_ADDCHILD, (DWORD) this);
|
|
|
|
destroy = res ? false : true;
|
|
|
|
return res;
|
|
|
|
}
|
2002-06-02 08:07:01 +02:00
|
|
|
#endif
|
2000-08-24 06:07:50 +02:00
|
|
|
HANDLE shared_handle () {return h;}
|
2000-07-29 18:24:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#define ISSTATE(p, f) (!!((p)->process_state & f))
|
|
|
|
#define NOTSTATE(p, f) (!((p)->process_state & f))
|
|
|
|
|
|
|
|
class winpids
|
|
|
|
{
|
2000-11-02 06:25:56 +01:00
|
|
|
DWORD *pidlist;
|
|
|
|
DWORD npidlist;
|
2000-11-05 07:42:23 +01:00
|
|
|
pinfo *pinfolist;
|
|
|
|
DWORD (winpids::* enum_processes) (bool winpid);
|
|
|
|
DWORD enum_init (bool winpid);
|
|
|
|
DWORD enumNT (bool winpid);
|
|
|
|
DWORD enum9x (bool winpid);
|
|
|
|
void add (DWORD& nelem, bool, DWORD pid);
|
2002-11-29 08:05:26 +01:00
|
|
|
static CRITICAL_SECTION cs;
|
2000-07-29 18:24:59 +02:00
|
|
|
public:
|
|
|
|
DWORD npids;
|
2000-11-05 07:42:23 +01:00
|
|
|
inline void reset () { npids = 0; release (); }
|
2002-11-29 08:05:26 +01:00
|
|
|
void set (bool winpid);
|
2000-11-05 07:42:23 +01:00
|
|
|
winpids (int): enum_processes (&winpids::enum_init) { reset (); }
|
|
|
|
winpids (): pidlist (NULL), npidlist (0), pinfolist (NULL),
|
2002-11-29 08:05:26 +01:00
|
|
|
enum_processes (&winpids::enum_init), npids (0) { set (0); }
|
2000-11-05 07:42:23 +01:00
|
|
|
inline DWORD& winpid (int i) const {return pidlist[i];}
|
|
|
|
inline _pinfo *operator [] (int i) const {return (_pinfo *) pinfolist[i];}
|
|
|
|
~winpids ();
|
|
|
|
void release ();
|
2002-11-29 08:05:26 +01:00
|
|
|
static void init ();
|
2000-07-29 18:24:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern __inline pid_t
|
|
|
|
cygwin_pid (pid_t pid)
|
|
|
|
{
|
* Makefile.in: Build wincap.o.
* wincap.cc: New file.
* wincap.h: Ditto.
* autoload.cc: Add dynamic load statement for `CreateHardLinkA'.
* dcrt0.cc (os_being_run): Eliminated.
(osname): Ditto.
(iswinnt): Ditto.
(set_os_type): Ditto.
(dll_crt0_1): Call wincap.init() instead of set_os_type().
(_dll_crt0): Ditto.
* environ.cc (set_chunksize): New function.
(parse_thing): `forkchunk' setting now invokes function `set_chunksize'.
* fork.cc (chunksize): Eliminated. Moved to be member of wincap.
* host_dependent.h: Removed.
* syscalls.cc (_link): Try using `CreateHardLinkA' first, if available.
* cygheap.cc, dcrt0.cc, delqueue.cc, dir.cc,
environ.cc, fhandler.cc, fhandler.h, fhandler_console.cc,
fhandler_mem.cc, fork.cc, mmap.cc, net.cc, pinfo.cc, pinfo.h,
security.cc, syscalls.cc, sysconf.cc, syslog.cc, thread.cc,
times.cc, tty.cc, uinfo.cc, uname.cc, winsup.h: Use new wincap
capability check throughout.
* winsup.h: Include wincap.h. Eliminate extern declarations of
`os_being_run' and `iswinnt'. Eliminate `os_type" definition.
* include/cygwin/version.h: Bump version to 1.3.4.
2001-09-12 19:46:37 +02:00
|
|
|
return (pid_t) (wincap.has_negative_pids ()) ? -(int) pid : pid;
|
2000-07-29 18:24:59 +02:00
|
|
|
}
|
2000-08-24 06:07:50 +02:00
|
|
|
|
2000-10-17 01:55:58 +02:00
|
|
|
void __stdcall pinfo_init (char **, int);
|
2000-08-24 06:07:50 +02:00
|
|
|
void __stdcall set_myself (pid_t pid, HANDLE h = NULL);
|
2000-08-22 07:10:20 +02:00
|
|
|
extern pinfo myself;
|
2000-09-08 04:56:55 +02:00
|
|
|
|
|
|
|
#define _P_VFORK 0
|
2000-10-15 03:37:07 +02:00
|
|
|
extern void __stdcall pinfo_fixup_after_fork ();
|
2000-10-17 01:55:58 +02:00
|
|
|
extern HANDLE hexec_proc;
|
2000-09-08 04:56:55 +02:00
|
|
|
|
|
|
|
/* For mmaps across fork(). */
|
2002-03-11 18:57:22 +01:00
|
|
|
int __stdcall fixup_mmaps_after_fork (HANDLE parent);
|
2002-02-28 15:30:38 +01:00
|
|
|
/* for shm areas across fork (). */
|
|
|
|
int __stdcall fixup_shms_after_fork ();
|
2000-09-08 04:56:55 +02:00
|
|
|
|
|
|
|
void __stdcall fill_rusage (struct rusage *, HANDLE);
|
|
|
|
void __stdcall add_rusage (struct rusage *, struct rusage *);
|
2002-06-02 08:07:01 +02:00
|
|
|
#endif /*_PINFO_H*/
|