2000-02-17 20:38:33 +01:00
|
|
|
/* environ.cc: Cygwin-adopted functions from newlib to manipulate
|
|
|
|
process's environment.
|
|
|
|
|
|
|
|
Copyright 1997, 1998, 1999, 2000 Cygnus Solutions.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2000-08-02 18:28:18 +02:00
|
|
|
#include "winsup.h"
|
2000-07-26 03:44:16 +02:00
|
|
|
#include <errno.h>
|
2000-02-17 20:38:33 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <fcntl.h>
|
2000-09-08 04:56:55 +02:00
|
|
|
#include <sys/cygwin.h>
|
|
|
|
#include <cygwin/version.h>
|
2000-08-22 07:10:20 +02:00
|
|
|
#include "sync.h"
|
|
|
|
#include "sigproc.h"
|
2000-08-12 07:35:42 +02:00
|
|
|
#include "pinfo.h"
|
2000-08-22 07:10:20 +02:00
|
|
|
#include "fhandler.h"
|
|
|
|
#include "path.h"
|
2000-08-22 05:58:47 +02:00
|
|
|
#include "cygerrno.h"
|
2000-09-03 06:45:52 +02:00
|
|
|
#include "cygheap.h"
|
2000-09-08 04:56:55 +02:00
|
|
|
#include "registry.h"
|
|
|
|
#include "environ.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
extern BOOL allow_glob;
|
|
|
|
extern BOOL allow_ntea;
|
|
|
|
extern BOOL strip_title_path;
|
|
|
|
extern DWORD chunksize;
|
|
|
|
BOOL reset_com = TRUE;
|
|
|
|
static BOOL envcache = TRUE;
|
|
|
|
|
2000-09-03 06:16:35 +02:00
|
|
|
static char **lastenviron = NULL;
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* List of names which are converted from dos to unix
|
|
|
|
* on the way in and back again on the way out.
|
|
|
|
*
|
|
|
|
* PATH needs to be here because CreateProcess uses it and gdb uses
|
|
|
|
* CreateProcess. HOME is here because most shells use it and would be
|
|
|
|
* confused by Windows style path names.
|
|
|
|
*/
|
|
|
|
static int return_MAX_PATH (const char *) {return MAX_PATH;}
|
|
|
|
static win_env conv_envvars[] =
|
|
|
|
{
|
|
|
|
{"PATH=", 5, NULL, NULL, cygwin_win32_to_posix_path_list,
|
|
|
|
cygwin_posix_to_win32_path_list,
|
|
|
|
cygwin_win32_to_posix_path_list_buf_size,
|
|
|
|
cygwin_posix_to_win32_path_list_buf_size},
|
|
|
|
{"HOME=", 5, NULL, NULL, cygwin_conv_to_full_posix_path, cygwin_conv_to_full_win32_path,
|
|
|
|
return_MAX_PATH, return_MAX_PATH},
|
|
|
|
{"LD_LIBRARY_PATH=", 16, NULL, NULL, cygwin_conv_to_full_posix_path,
|
|
|
|
cygwin_conv_to_full_win32_path, return_MAX_PATH, return_MAX_PATH},
|
2000-03-25 06:25:27 +01:00
|
|
|
{"TMPDIR=", 7, NULL, NULL, cygwin_conv_to_full_posix_path, cygwin_conv_to_full_win32_path,
|
|
|
|
return_MAX_PATH, return_MAX_PATH},
|
2000-06-15 05:50:03 +02:00
|
|
|
{"TMP=", 4, NULL, NULL, cygwin_conv_to_full_posix_path, cygwin_conv_to_full_win32_path,
|
|
|
|
return_MAX_PATH, return_MAX_PATH},
|
|
|
|
{"TEMP=", 5, NULL, NULL, cygwin_conv_to_full_posix_path, cygwin_conv_to_full_win32_path,
|
|
|
|
return_MAX_PATH, return_MAX_PATH},
|
2000-02-21 06:20:38 +01:00
|
|
|
{NULL, 0, NULL, NULL, NULL, NULL, 0, 0}
|
2000-02-17 20:38:33 +01:00
|
|
|
};
|
|
|
|
|
2000-10-19 02:45:39 +02:00
|
|
|
static unsigned char conv_start_chars[256] = {0};
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
void
|
|
|
|
win_env::add_cache (const char *in_posix, const char *in_native)
|
|
|
|
{
|
|
|
|
posix = (char *) realloc (posix, strlen (in_posix) + 1);
|
|
|
|
strcpy (posix, in_posix);
|
|
|
|
if (in_native)
|
|
|
|
{
|
|
|
|
native = (char *) realloc (native, namelen + 1 + strlen (in_native));
|
|
|
|
(void) strcpy (native, name);
|
|
|
|
(void) strcpy (native + namelen, in_native);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
native = (char *) realloc (native, namelen + 1 + win32_len (in_posix));
|
|
|
|
(void) strcpy (native, name);
|
|
|
|
towin32 (in_posix, native + namelen);
|
|
|
|
}
|
|
|
|
debug_printf ("posix %s", posix);
|
|
|
|
debug_printf ("native %s", native);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Check for a "special" environment variable name. *env is the pointer
|
|
|
|
* to the beginning of the environment variable name. n is the length
|
|
|
|
* of the name including a mandatory '='. Returns a pointer to the
|
|
|
|
* appropriate conversion structure.
|
|
|
|
*/
|
2000-02-21 04:13:24 +01:00
|
|
|
win_env * __stdcall
|
2000-02-17 20:38:33 +01:00
|
|
|
getwinenv (const char *env, const char *in_posix)
|
|
|
|
{
|
2000-10-19 02:45:39 +02:00
|
|
|
if (!conv_start_chars[(unsigned char)*env])
|
|
|
|
return NULL;
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
for (int i = 0; conv_envvars[i].name != NULL; i++)
|
|
|
|
if (strncasematch (env, conv_envvars[i].name, conv_envvars[i].namelen))
|
|
|
|
{
|
|
|
|
win_env *we = conv_envvars + i;
|
|
|
|
const char *val;
|
2000-08-02 18:28:18 +02:00
|
|
|
if (!cur_environ () || !(val = in_posix ?: getenv(we->name)))
|
2000-02-17 20:38:33 +01:00
|
|
|
debug_printf ("can't set native for %s since no environ yet",
|
|
|
|
we->name);
|
|
|
|
else if (!envcache || !we->posix || strcmp (val, we->posix))
|
|
|
|
we->add_cache (val);
|
|
|
|
return we;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert windows path specs to POSIX, if appropriate.
|
|
|
|
*/
|
|
|
|
static void __stdcall
|
2000-09-03 06:16:35 +02:00
|
|
|
posify (char **here, const char *value)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
char *src = *here;
|
|
|
|
win_env *conv;
|
|
|
|
|
|
|
|
if (!(conv = getwinenv (src)))
|
|
|
|
return;
|
|
|
|
|
2000-10-18 06:53:37 +02:00
|
|
|
int len = strcspn (src, "=") + 1;
|
|
|
|
|
2000-09-03 06:16:35 +02:00
|
|
|
/* Turn all the items from c:<foo>;<bar> into their
|
|
|
|
mounted equivalents - if there is one. */
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-09-03 06:16:35 +02:00
|
|
|
char *outenv = (char *) malloc (1 + len + conv->posix_len (value));
|
|
|
|
memcpy (outenv, src, len);
|
|
|
|
conv->toposix (value, outenv + len);
|
|
|
|
conv->add_cache (outenv + len, value);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-09-03 06:16:35 +02:00
|
|
|
debug_printf ("env var converted to %s", outenv);
|
|
|
|
*here = outenv;
|
|
|
|
free (src);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* my_findenv --
|
|
|
|
* Returns pointer to value associated with name, if any, else NULL.
|
|
|
|
* Sets offset to be the offset of the name/value combination in the
|
|
|
|
* environment array, for use by setenv(3) and unsetenv(3).
|
|
|
|
* Explicitly removes '=' in argument name.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static char * __stdcall
|
|
|
|
my_findenv (const char *name, int *offset)
|
|
|
|
{
|
|
|
|
register int len;
|
|
|
|
register char **p;
|
|
|
|
const char *c;
|
|
|
|
|
|
|
|
c = name;
|
|
|
|
len = 0;
|
|
|
|
while (*c && *c != '=')
|
|
|
|
{
|
|
|
|
c++;
|
|
|
|
len++;
|
|
|
|
}
|
|
|
|
|
2000-08-02 18:28:18 +02:00
|
|
|
for (p = cur_environ (); *p; ++p)
|
2000-02-17 20:38:33 +01:00
|
|
|
if (!strncmp (*p, name, len))
|
|
|
|
if (*(c = *p + len) == '=')
|
|
|
|
{
|
2000-08-02 18:28:18 +02:00
|
|
|
*offset = p - cur_environ ();
|
2000-02-17 20:38:33 +01:00
|
|
|
return (char *) (++c);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* getenv --
|
|
|
|
* Returns ptr to value associated with name, if any, else NULL.
|
|
|
|
*/
|
|
|
|
|
2000-02-21 04:13:24 +01:00
|
|
|
extern "C" char *
|
2000-02-17 20:38:33 +01:00
|
|
|
getenv (const char *name)
|
|
|
|
{
|
|
|
|
int offset;
|
|
|
|
|
|
|
|
return my_findenv (name, &offset);
|
|
|
|
}
|
|
|
|
|
2000-09-03 06:16:35 +02:00
|
|
|
extern int __stdcall
|
|
|
|
envsize (const char * const *in_envp, int debug_print)
|
|
|
|
{
|
|
|
|
const char * const *envp;
|
|
|
|
for (envp = in_envp; *envp; envp++)
|
|
|
|
if (debug_print)
|
|
|
|
debug_printf ("%s", *envp);
|
|
|
|
return (1 + envp - in_envp) * sizeof (const char *);
|
|
|
|
}
|
|
|
|
|
2000-07-26 03:44:16 +02:00
|
|
|
/* Takes similar arguments to setenv except that overwrite is
|
|
|
|
either -1, 0, or 1. 0 or 1 signify that the function should
|
|
|
|
perform similarly to setenv. Otherwise putenv is assumed. */
|
|
|
|
static int __stdcall
|
|
|
|
_addenv (const char *name, const char *value, int overwrite)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-07-26 03:44:16 +02:00
|
|
|
int issetenv = overwrite >= 0;
|
|
|
|
int offset;
|
|
|
|
char *p;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-07-26 03:44:16 +02:00
|
|
|
unsigned int valuelen = strlen (value);
|
|
|
|
if ((p = my_findenv (name, &offset)))
|
|
|
|
{ /* Already exists. */
|
|
|
|
if (!overwrite) /* Ok to overwrite? */
|
|
|
|
return 0; /* No. Wanted to add new value. FIXME: Right return value? */
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-07-26 03:44:16 +02:00
|
|
|
/* We've found the offset into environ. If this is a setenv call and
|
|
|
|
there is room in the current environment entry then just overwrite it.
|
|
|
|
Otherwise handle this case below. */
|
|
|
|
if (issetenv && strlen (p) >= valuelen)
|
|
|
|
{
|
|
|
|
strcpy (p, value);
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2000-07-26 03:44:16 +02:00
|
|
|
{ /* Create new slot. */
|
2000-09-03 06:16:35 +02:00
|
|
|
int sz = envsize (cur_environ ());
|
|
|
|
int allocsz = sz + sizeof (char *);
|
2000-07-26 03:44:16 +02:00
|
|
|
|
2000-09-03 06:16:35 +02:00
|
|
|
offset = (sz - 1) / sizeof (char *);
|
2000-07-26 03:44:16 +02:00
|
|
|
|
|
|
|
/* Allocate space for additional element plus terminating NULL. */
|
2000-09-03 06:16:35 +02:00
|
|
|
if (__cygwin_environ == lastenviron)
|
|
|
|
lastenviron = __cygwin_environ = (char **) realloc (cur_environ (),
|
|
|
|
allocsz);
|
|
|
|
else if ((lastenviron = (char **) malloc (allocsz)) != NULL)
|
|
|
|
__cygwin_environ = (char **) memcpy ((char **) lastenviron,
|
|
|
|
__cygwin_environ, sz);
|
|
|
|
|
2000-07-17 17:59:27 +02:00
|
|
|
if (!__cygwin_environ)
|
2000-10-23 05:35:50 +02:00
|
|
|
{
|
|
|
|
#ifdef DEBUGING
|
|
|
|
try_to_debug ();
|
|
|
|
return -1; /* Oops. No more memory. */
|
|
|
|
#endif
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-07-26 03:44:16 +02:00
|
|
|
__cygwin_environ[offset + 1] = NULL; /* NULL terminate. */
|
|
|
|
update_envptrs (); /* Update any local copies of 'environ'. */
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-07-26 03:44:16 +02:00
|
|
|
char *envhere;
|
|
|
|
if (!issetenv)
|
2000-08-02 18:28:18 +02:00
|
|
|
envhere = cur_environ ()[offset] = (char *) name; /* Not setenv. Just
|
2000-07-26 03:44:16 +02:00
|
|
|
overwrite existing. */
|
|
|
|
else
|
|
|
|
{ /* setenv */
|
|
|
|
/* Look for an '=' in the name and ignore anything after that if found. */
|
|
|
|
for (p = (char *) name; *p && *p != '='; p++)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int namelen = p - name; /* Length of name. */
|
|
|
|
/* Allocate enough space for name + '=' + value + '\0' */
|
2000-08-02 18:28:18 +02:00
|
|
|
envhere = cur_environ ()[offset] = (char *) malloc (namelen + valuelen + 2);
|
2000-07-26 03:44:16 +02:00
|
|
|
if (!envhere)
|
|
|
|
return -1; /* Oops. No more memory. */
|
|
|
|
|
|
|
|
/* Put name '=' value into current slot. */
|
|
|
|
strncpy (envhere, name, namelen);
|
|
|
|
envhere[namelen] = '=';
|
|
|
|
strcpy (envhere + namelen + 1, value);
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-07-26 03:44:16 +02:00
|
|
|
/* Update cygwin's cache, if appropriate */
|
2000-02-17 20:38:33 +01:00
|
|
|
win_env *spenv;
|
2000-07-26 03:44:16 +02:00
|
|
|
if ((spenv = getwinenv (envhere)))
|
2000-02-17 20:38:33 +01:00
|
|
|
spenv->add_cache (value);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-07-26 03:44:16 +02:00
|
|
|
/* putenv --
|
|
|
|
* Sets an environment variable
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern "C" int
|
|
|
|
putenv (const char *str)
|
|
|
|
{
|
2000-07-26 20:51:14 +02:00
|
|
|
int res;
|
|
|
|
if ((res = check_null_empty_path (str)))
|
|
|
|
{
|
|
|
|
if (res == ENOENT)
|
2000-09-03 06:16:35 +02:00
|
|
|
return 0;
|
2000-07-26 20:51:14 +02:00
|
|
|
set_errno (res);
|
|
|
|
return -1;
|
|
|
|
}
|
2000-07-26 03:44:16 +02:00
|
|
|
char *eq = strchr (str, '=');
|
|
|
|
if (eq)
|
|
|
|
return _addenv (str, eq + 1, -1);
|
|
|
|
|
|
|
|
/* Remove str from the environment. */
|
|
|
|
unsetenv (str);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* setenv --
|
|
|
|
* Set the value of the environment variable "name" to be
|
|
|
|
* "value". If overwrite is set, replace any current value.
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern "C" int
|
|
|
|
setenv (const char *name, const char *value, int overwrite)
|
|
|
|
{
|
|
|
|
int res;
|
2000-07-26 20:51:14 +02:00
|
|
|
if ((res = check_null_empty_path (value)) == EFAULT)
|
|
|
|
{
|
|
|
|
set_errno (res);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if ((res = check_null_empty_path (name)))
|
2000-07-26 03:44:16 +02:00
|
|
|
{
|
2000-07-26 20:51:14 +02:00
|
|
|
if (res == ENOENT)
|
2000-09-03 06:16:35 +02:00
|
|
|
return 0;
|
2000-07-26 03:44:16 +02:00
|
|
|
set_errno (res);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (*value == '=')
|
|
|
|
value++;
|
|
|
|
return _addenv (name, value, !!overwrite);
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/*
|
|
|
|
* unsetenv(name) --
|
|
|
|
* Delete environment variable "name".
|
|
|
|
*/
|
|
|
|
|
2000-02-21 04:13:24 +01:00
|
|
|
extern "C" void
|
2000-02-17 20:38:33 +01:00
|
|
|
unsetenv (const char *name)
|
|
|
|
{
|
2000-07-17 21:18:21 +02:00
|
|
|
register char **e;
|
2000-02-17 20:38:33 +01:00
|
|
|
int offset;
|
|
|
|
|
|
|
|
while (my_findenv (name, &offset)) /* if set multiple times */
|
2000-07-17 21:18:21 +02:00
|
|
|
/* Move up the rest of the array */
|
2000-08-02 18:28:18 +02:00
|
|
|
for (e = cur_environ () + offset; ; e++)
|
2000-07-17 21:18:21 +02:00
|
|
|
if (!(*e = *(e + 1)))
|
2000-02-17 20:38:33 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Turn environment variable part of a=b string into uppercase. */
|
|
|
|
|
2000-02-21 06:20:38 +01:00
|
|
|
static __inline__ void
|
2000-02-17 20:38:33 +01:00
|
|
|
ucenv (char *p, char *eq)
|
|
|
|
{
|
|
|
|
/* Amazingly, NT has a case sensitive environment name list,
|
|
|
|
but only sometimes.
|
|
|
|
It's normal to have NT set your "Path" to something.
|
|
|
|
Later, you set "PATH" to something else. This alters "Path".
|
|
|
|
But if you try and do a naive getenv on "PATH" you'll get nothing.
|
|
|
|
|
|
|
|
So we upper case the labels here to prevent confusion later but
|
|
|
|
we only do it for the first process in a session group. */
|
|
|
|
for (; p < eq; p++)
|
|
|
|
if (islower (*p))
|
2000-10-19 05:12:44 +02:00
|
|
|
*p = cyg_toupper (*p);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Parse CYGWIN options */
|
|
|
|
|
|
|
|
static NO_COPY BOOL export_settings = FALSE;
|
|
|
|
|
|
|
|
enum settings
|
|
|
|
{
|
|
|
|
justset,
|
|
|
|
isfunc,
|
|
|
|
setbit,
|
|
|
|
set_process_state,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* The structure below is used to set up an array which is used to
|
|
|
|
* parse the CYGWIN environment variable or, if enabled, options from
|
|
|
|
* the registry.
|
|
|
|
*/
|
|
|
|
struct parse_thing
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
union parse_setting
|
|
|
|
{
|
|
|
|
BOOL *b;
|
|
|
|
DWORD *x;
|
|
|
|
int *i;
|
|
|
|
void (*func)(const char *);
|
|
|
|
} setting;
|
|
|
|
|
|
|
|
enum settings disposition;
|
|
|
|
char *remember;
|
|
|
|
union parse_values
|
|
|
|
{
|
|
|
|
DWORD i;
|
|
|
|
const char *s;
|
|
|
|
} values[2];
|
|
|
|
} known[] =
|
|
|
|
{
|
2000-08-24 19:54:43 +02:00
|
|
|
{"binmode", {x: &binmode}, justset, NULL, {{O_TEXT}, {O_BINARY}}},
|
2000-02-17 20:38:33 +01:00
|
|
|
{"envcache", {&envcache}, justset, NULL, {{TRUE}, {FALSE}}},
|
|
|
|
{"error_start", {func: &error_start_init}, isfunc, NULL, {{0}, {0}}},
|
|
|
|
{"export", {&export_settings}, justset, NULL, {{FALSE}, {TRUE}}},
|
|
|
|
{"forkchunk", {x: &chunksize}, justset, NULL, {{8192}, {0}}},
|
|
|
|
{"glob", {&allow_glob}, justset, NULL, {{FALSE}, {TRUE}}},
|
|
|
|
{"ntea", {&allow_ntea}, justset, NULL, {{FALSE}, {TRUE}}},
|
|
|
|
{"ntsec", {&allow_ntsec}, justset, NULL, {{FALSE}, {TRUE}}},
|
|
|
|
{"reset_com", {&reset_com}, justset, NULL, {{FALSE}, {TRUE}}},
|
|
|
|
{"strip_title", {&strip_title_path}, justset, NULL, {{FALSE}, {TRUE}}},
|
|
|
|
{"title", {&display_title}, justset, NULL, {{FALSE}, {TRUE}}},
|
|
|
|
{"tty", {NULL}, set_process_state, NULL, {{0}, {PID_USETTY}}},
|
|
|
|
{NULL, {0}, justset, 0, {{0}, {0}}}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Parse a string of the form "something=stuff somethingelse=more-stuff",
|
|
|
|
* silently ignoring unknown "somethings".
|
|
|
|
*/
|
|
|
|
static void __stdcall
|
|
|
|
parse_options (char *buf)
|
|
|
|
{
|
|
|
|
int istrue;
|
|
|
|
char *p;
|
|
|
|
parse_thing *k;
|
|
|
|
|
|
|
|
if (buf == NULL)
|
|
|
|
{
|
|
|
|
char newbuf[MAX_PATH + 7] = "CYGWIN";
|
|
|
|
for (k = known; k->name != NULL; k++)
|
|
|
|
if (k->remember)
|
|
|
|
{
|
|
|
|
strcat (strcat (newbuf, " "), k->remember);
|
|
|
|
free (k->remember);
|
|
|
|
k->remember = NULL;
|
|
|
|
}
|
|
|
|
if (!export_settings)
|
|
|
|
return;
|
|
|
|
newbuf[sizeof ("CYGWIN") - 1] = '=';
|
|
|
|
debug_printf ("%s", newbuf);
|
|
|
|
putenv (newbuf);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf = strcpy ((char *) alloca (strlen (buf) + 1), buf);
|
|
|
|
for (p = strtok (buf, " \t"); p != NULL; p = strtok (NULL, " \t"))
|
|
|
|
{
|
|
|
|
if (!(istrue = !strncasematch (p, "no", 2)))
|
|
|
|
p += 2;
|
|
|
|
else if (!(istrue = *p != '-'))
|
|
|
|
p++;
|
|
|
|
|
|
|
|
char ch, *eq;
|
|
|
|
if ((eq = strchr (p, '=')) != NULL || (eq = strchr (p, ':')) != NULL)
|
|
|
|
ch = *eq, *eq++ = '\0';
|
|
|
|
else
|
|
|
|
ch = 0;
|
|
|
|
|
|
|
|
for (parse_thing *k = known; k->name != NULL; k++)
|
|
|
|
if (strcasematch (p, k->name))
|
|
|
|
{
|
|
|
|
switch (k->disposition)
|
|
|
|
{
|
|
|
|
case isfunc:
|
|
|
|
k->setting.func ((!eq || !istrue) ?
|
|
|
|
k->values[istrue].s : eq);
|
|
|
|
debug_printf ("%s (called func)", k->name);
|
|
|
|
break;
|
|
|
|
case justset:
|
|
|
|
if (!istrue || !eq)
|
|
|
|
*k->setting.x = k->values[istrue].i;
|
|
|
|
else
|
|
|
|
*k->setting.x = strtol (eq, NULL, 0);
|
|
|
|
debug_printf ("%s %d", k->name, *k->setting.x);
|
|
|
|
break;
|
|
|
|
case set_process_state:
|
|
|
|
k->setting.x = &myself->process_state;
|
|
|
|
/* fall through */
|
|
|
|
case setbit:
|
|
|
|
*k->setting.x &= ~k->values[istrue].i;
|
|
|
|
if (istrue || (eq && strtol (eq, NULL, 0)))
|
|
|
|
*k->setting.x |= k->values[istrue].i;
|
|
|
|
debug_printf ("%s %x", k->name, *k->setting.x);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (eq)
|
|
|
|
*--eq = ch;
|
|
|
|
|
|
|
|
int n = eq - p;
|
|
|
|
p = strdup (p);
|
|
|
|
if (n > 0)
|
|
|
|
p[n] = ':';
|
|
|
|
k->remember = p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
debug_printf ("returning");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set options from the registry. */
|
|
|
|
|
|
|
|
static void __stdcall
|
|
|
|
regopt (const char *name)
|
|
|
|
{
|
|
|
|
MALLOC_CHECK;
|
|
|
|
/* FIXME: should not be under mount */
|
|
|
|
reg_key r (KEY_READ, CYGWIN_INFO_PROGRAM_OPTIONS_NAME, NULL);
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
char lname[strlen(name) + 1];
|
|
|
|
strlwr (strcpy (lname, name));
|
|
|
|
MALLOC_CHECK;
|
|
|
|
if (r.get_string (lname, buf, sizeof (buf) - 1, "") == ERROR_SUCCESS)
|
|
|
|
parse_options (buf);
|
2000-05-22 23:19:36 +02:00
|
|
|
else
|
|
|
|
{
|
2000-08-24 19:54:43 +02:00
|
|
|
reg_key r1 (HKEY_LOCAL_MACHINE, KEY_READ, "SOFTWARE",
|
|
|
|
CYGWIN_INFO_CYGNUS_REGISTRY_NAME,
|
|
|
|
CYGWIN_INFO_CYGWIN_REGISTRY_NAME,
|
|
|
|
CYGWIN_INFO_PROGRAM_OPTIONS_NAME, NULL);
|
2000-05-22 23:19:36 +02:00
|
|
|
if (r1.get_string (lname, buf, sizeof (buf) - 1, "") == ERROR_SUCCESS)
|
|
|
|
parse_options (buf);
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
MALLOC_CHECK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize the environ array. Look for the CYGWIN environment
|
|
|
|
* environment variable and set appropriate options from it.
|
|
|
|
*/
|
|
|
|
void
|
2000-10-17 01:55:58 +02:00
|
|
|
environ_init (char **envp, int envc)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2000-09-03 06:16:35 +02:00
|
|
|
char *rawenv;
|
2000-10-17 01:55:58 +02:00
|
|
|
int i;
|
2000-07-26 03:44:16 +02:00
|
|
|
char *p;
|
2000-09-03 06:16:35 +02:00
|
|
|
char *newp;
|
2000-02-17 20:38:33 +01:00
|
|
|
int sawTERM = 0;
|
2000-09-25 18:36:12 +02:00
|
|
|
bool envp_passed_in;
|
2000-07-26 03:44:16 +02:00
|
|
|
static char cygterm[] = "TERM=cygwin";
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-10-19 02:45:39 +02:00
|
|
|
static int initted = 0;
|
|
|
|
if (!initted)
|
|
|
|
{
|
|
|
|
for (int i = 0; conv_envvars[i].name != NULL; i++)
|
|
|
|
{
|
2000-10-19 05:12:44 +02:00
|
|
|
conv_start_chars[cyg_tolower(conv_envvars[i].name[0])] = 1;
|
|
|
|
conv_start_chars[cyg_toupper(conv_envvars[i].name[0])] = 1;
|
2000-10-19 02:45:39 +02:00
|
|
|
}
|
|
|
|
initted = 1;
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
regopt ("default");
|
|
|
|
if (myself->progname[0])
|
|
|
|
regopt (myself->progname);
|
|
|
|
|
|
|
|
#ifdef NTSEC_ON_BY_DEFAULT
|
|
|
|
/* Set ntsec explicit as default, if NT is running */
|
|
|
|
if (os_being_run == winNT)
|
|
|
|
allow_ntsec = TRUE;
|
|
|
|
#endif
|
|
|
|
|
2000-09-25 18:36:12 +02:00
|
|
|
if (!envp)
|
|
|
|
envp_passed_in = 0;
|
|
|
|
else
|
2000-09-03 06:16:35 +02:00
|
|
|
{
|
2000-10-17 01:55:58 +02:00
|
|
|
char **newenv = (char **) malloc (envc);
|
|
|
|
memcpy (newenv, envp, envc);
|
2000-09-03 06:16:35 +02:00
|
|
|
cfree (envp);
|
2000-09-03 06:45:52 +02:00
|
|
|
envp = newenv;
|
2000-09-25 18:36:12 +02:00
|
|
|
envp_passed_in = 1;
|
2000-09-03 06:16:35 +02:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate space for environment + trailing NULL + CYGWIN env. */
|
2000-10-17 01:55:58 +02:00
|
|
|
lastenviron = envp = (char **) malloc ((4 + (envc = 100)) * sizeof (char *));
|
2000-09-03 06:16:35 +02:00
|
|
|
rawenv = GetEnvironmentStrings ();
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Current directory information is recorded as variables of the
|
|
|
|
form "=X:=X:\foo\bar; these must be changed into something legal
|
|
|
|
(we could just ignore them but maybe an application will
|
|
|
|
eventually want to use them). */
|
|
|
|
for (i = 0, p = rawenv; *p != '\0'; p = strchr (p, '\0') + 1, i++)
|
|
|
|
{
|
2000-07-26 20:51:14 +02:00
|
|
|
newp = strdup (p);
|
2000-10-17 01:55:58 +02:00
|
|
|
if (i >= envc)
|
|
|
|
envp = (char **) realloc (envp, (4 + (envc += 100)) * sizeof (char *));
|
2000-07-26 20:51:14 +02:00
|
|
|
envp[i] = newp;
|
|
|
|
if (*newp == '=')
|
|
|
|
*newp = '!';
|
2000-02-17 20:38:33 +01:00
|
|
|
char *eq;
|
2000-07-26 20:51:14 +02:00
|
|
|
if ((eq = strchr (newp, '=')) == NULL)
|
|
|
|
eq = strchr (newp, '\0');
|
2000-02-17 20:38:33 +01:00
|
|
|
if (!parent_alive)
|
2000-07-26 20:51:14 +02:00
|
|
|
ucenv (newp, eq);
|
2000-10-19 02:45:39 +02:00
|
|
|
if (*newp == 'T' && strncmp (newp, "TERM=", 5) == 0)
|
2000-02-17 20:38:33 +01:00
|
|
|
sawTERM = 1;
|
2000-10-19 02:45:39 +02:00
|
|
|
if (*newp == 'C' && strncmp (newp, "CYGWIN=", sizeof("CYGWIN=") - 1) == 0)
|
2000-07-26 20:51:14 +02:00
|
|
|
parse_options (newp + sizeof("CYGWIN=") - 1);
|
2000-10-19 02:45:39 +02:00
|
|
|
if (*eq && conv_start_chars[(unsigned char)envp[i][0]])
|
2000-09-03 06:16:35 +02:00
|
|
|
posify (envp + i, *++eq ? eq : --eq);
|
2000-02-17 20:38:33 +01:00
|
|
|
debug_printf ("%s", envp[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!sawTERM)
|
2000-07-26 03:44:16 +02:00
|
|
|
envp[i++] = cygterm;
|
2000-02-17 20:38:33 +01:00
|
|
|
envp[i] = NULL;
|
2000-09-03 06:16:35 +02:00
|
|
|
FreeEnvironmentStrings (rawenv);
|
|
|
|
|
|
|
|
out:
|
2000-07-16 22:06:11 +02:00
|
|
|
__cygwin_environ = envp;
|
2000-07-15 04:48:11 +02:00
|
|
|
update_envptrs ();
|
2000-09-25 18:36:12 +02:00
|
|
|
if (envp_passed_in)
|
|
|
|
{
|
|
|
|
p = getenv ("CYGWIN");
|
|
|
|
if (p)
|
|
|
|
parse_options (p);
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
parse_options (NULL);
|
|
|
|
MALLOC_CHECK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Function called by qsort to sort environment strings.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
env_sort (const void *a, const void *b)
|
|
|
|
{
|
|
|
|
const char **p = (const char **) a;
|
|
|
|
const char **q = (const char **) b;
|
|
|
|
|
|
|
|
return strcmp (*p, *q);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a Windows-style environment block, i.e. a typical character buffer
|
|
|
|
* filled with null terminated strings, terminated by double null characters.
|
|
|
|
* Converts environment variables noted in conv_envvars into win32 form
|
|
|
|
* prior to placing them in the string.
|
|
|
|
*/
|
2000-02-21 04:13:24 +01:00
|
|
|
char * __stdcall
|
2000-04-26 07:13:32 +02:00
|
|
|
winenv (const char * const *envp, int keep_posix)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
int len, n, tl;
|
|
|
|
const char * const *srcp;
|
|
|
|
const char * *dstp;
|
|
|
|
|
|
|
|
for (n = 0; envp[n]; n++)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const char *newenvp[n + 1];
|
|
|
|
|
2000-04-26 07:13:32 +02:00
|
|
|
debug_printf ("envp %p, keep_posix %d", envp, keep_posix);
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
for (tl = 0, srcp = envp, dstp = newenvp; *srcp; srcp++, dstp++)
|
|
|
|
{
|
|
|
|
len = strcspn (*srcp, "=") + 1;
|
|
|
|
win_env *conv;
|
|
|
|
|
2000-04-26 07:13:32 +02:00
|
|
|
if (!keep_posix && (conv = getwinenv (*srcp, *srcp + len)))
|
2000-02-17 20:38:33 +01:00
|
|
|
*dstp = conv->native;
|
|
|
|
else
|
|
|
|
*dstp = *srcp;
|
|
|
|
tl += strlen (*dstp) + 1;
|
2000-05-30 02:38:51 +02:00
|
|
|
if ((*dstp)[0] == '!' && isdrive ((*dstp) + 1) && (*dstp)[3] == '=')
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
char *p = (char *) alloca (strlen (*dstp) + 1);
|
|
|
|
strcpy (p, *dstp);
|
|
|
|
*p = '=';
|
|
|
|
*dstp = p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*dstp = NULL; /* Terminate */
|
|
|
|
|
|
|
|
int envlen = dstp - newenvp;
|
|
|
|
debug_printf ("env count %d, bytes %d", envlen, tl);
|
|
|
|
|
|
|
|
/* Windows programs expect the environment block to be sorted. */
|
|
|
|
qsort (newenvp, envlen, sizeof (char *), env_sort);
|
|
|
|
|
|
|
|
/* Create an environment block suitable for passing to CreateProcess. */
|
|
|
|
char *ptr, *envblock;
|
|
|
|
envblock = (char *) malloc (tl + 2);
|
|
|
|
for (srcp = newenvp, ptr = envblock; *srcp; srcp++)
|
|
|
|
{
|
|
|
|
len = strlen (*srcp);
|
|
|
|
memcpy (ptr, *srcp, len + 1);
|
|
|
|
ptr += len + 1;
|
|
|
|
}
|
|
|
|
*ptr = '\0'; /* Two null bytes at the end */
|
|
|
|
|
|
|
|
return envblock;
|
|
|
|
}
|
2000-07-16 22:06:11 +02:00
|
|
|
|
|
|
|
/* This idiocy is necessary because the early implementers of cygwin
|
|
|
|
did not seem to know about importing data variables from the DLL.
|
|
|
|
So, we have to synchronize cygwin's idea of the environment with the
|
|
|
|
main program's with each reference to the environment. */
|
2000-07-29 18:24:59 +02:00
|
|
|
extern "C" char ** __stdcall
|
2000-07-16 22:06:11 +02:00
|
|
|
cur_environ ()
|
|
|
|
{
|
|
|
|
if (*main_environ != __cygwin_environ)
|
|
|
|
{
|
|
|
|
__cygwin_environ = *main_environ;
|
|
|
|
update_envptrs ();
|
|
|
|
}
|
|
|
|
|
|
|
|
return __cygwin_environ;
|
|
|
|
}
|