Fixed some problems found while compiling and linking Wine under
[wine] / dlls / ntdll / env.c
1 /*
2  * Ntdll environment functions
3  *
4  * Copyright 1996, 1998 Alexandre Julliard
5  * Copyright 2003       Eric Pouech
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21 #include "config.h"
22
23 #include <assert.h>
24 #include <stdarg.h>
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winreg.h"
29 #include "winternl.h"
30 #include "wine/unicode.h"
31 #include "wine/debug.h"
32 #include "ntdll_misc.h"
33
34 WINE_DEFAULT_DEBUG_CHANNEL(environ);
35
36 /******************************************************************************
37  *  RtlCreateEnvironment                [NTDLL.@]
38  */
39 NTSTATUS WINAPI RtlCreateEnvironment(BOOLEAN inherit, PWSTR* env)
40 {
41     NTSTATUS    nts;
42
43     TRACE("(%u,%p)!\n", inherit, env);
44
45     if (inherit)
46     {
47         MEMORY_BASIC_INFORMATION        mbi;
48
49         RtlAcquirePebLock();
50
51         nts = NtQueryVirtualMemory(NtCurrentProcess(), ntdll_get_process_pmts()->Environment, 
52                                    0, &mbi, sizeof(mbi), NULL);
53         if (nts == STATUS_SUCCESS)
54         {
55             *env = NULL;
56             nts = NtAllocateVirtualMemory(NtCurrentProcess(), (void**)env, 0, &mbi.RegionSize, 
57                                           MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
58             if (nts == STATUS_SUCCESS)
59                 memcpy(*env, ntdll_get_process_pmts()->Environment, mbi.RegionSize);
60             else *env = NULL;
61         }
62         RtlReleasePebLock();
63     }
64     else 
65     {
66         ULONG       size = 1;
67         nts = NtAllocateVirtualMemory(NtCurrentProcess(), (void**)env, 0, &size, 
68                                       MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
69         if (nts == STATUS_SUCCESS)
70             memset(*env, 0, size);
71     }
72
73     return nts;
74 }
75
76 /******************************************************************************
77  *  RtlDestroyEnvironment               [NTDLL.@]
78  */
79 NTSTATUS WINAPI RtlDestroyEnvironment(PWSTR env) 
80 {
81     ULONG size = 0;
82
83     TRACE("(%p)!\n", env);
84
85     return NtFreeVirtualMemory(NtCurrentProcess(), (void**)&env, &size, MEM_RELEASE);
86 }
87
88 static LPCWSTR ENV_FindVariable(PCWSTR var, PCWSTR name, unsigned namelen)
89 {
90     for (; *var; var += strlenW(var) + 1)
91     {
92         /* match var names, but avoid setting a var with a name including a '='
93          * (a starting '=' is valid though)
94          */
95         if (strncmpiW(var, name, namelen) == 0 && var[namelen] == '=' &&
96             strchrW(var + 1, '=') == var + namelen) 
97         {
98             return var + namelen + 1;
99         }
100     }
101     return NULL;
102 }
103
104 /******************************************************************
105  *              RtlQueryEnvironmentVariable_U   [NTDLL.@]
106  *
107  * NOTES: when the buffer is too small, the string is not written, but if the
108  *      terminating null char is the only char that cannot be written, then
109  *      all chars (except the null) are written and success is returned
110  *      (behavior of Win2k at least)
111  */
112 NTSTATUS WINAPI RtlQueryEnvironmentVariable_U(PWSTR env,
113                                               PUNICODE_STRING name,
114                                               PUNICODE_STRING value)
115 {
116     NTSTATUS    nts = STATUS_VARIABLE_NOT_FOUND;
117     PCWSTR      var;
118     unsigned    namelen;
119
120     TRACE("%s %s %p\n", debugstr_w(env), debugstr_w(name->Buffer), value);
121
122     value->Length = 0;
123     namelen = name->Length / sizeof(WCHAR);
124     if (!namelen) return nts;
125
126     if (!env)
127     {
128         RtlAcquirePebLock();
129         var = ntdll_get_process_pmts()->Environment;
130     }
131     else var = env;
132
133     var = ENV_FindVariable(var, name->Buffer, namelen);
134     if (var != NULL)
135     {
136         value->Length = strlenW(var) * sizeof(WCHAR);
137
138         if (value->Length <= value->MaximumLength)
139         {
140             memmove(value->Buffer, var, min(value->Length + sizeof(WCHAR), value->MaximumLength));
141             nts = STATUS_SUCCESS;
142         }
143         else nts = STATUS_BUFFER_TOO_SMALL;
144     }
145
146     if (!env) RtlReleasePebLock();
147
148     return nts;
149 }
150
151 /******************************************************************
152  *              RtlSetCurrentEnvironment        [NTDLL.@]
153  *
154  */
155 void WINAPI RtlSetCurrentEnvironment(PWSTR new_env, PWSTR* old_env)
156 {
157     TRACE("(%p %p)\n", new_env, old_env);
158
159     RtlAcquirePebLock();
160
161     if (old_env) *old_env = ntdll_get_process_pmts()->Environment;
162     ntdll_get_process_pmts()->Environment = new_env;
163
164     RtlReleasePebLock();
165 }
166
167
168 /******************************************************************************
169  *  RtlSetEnvironmentVariable           [NTDLL.@]
170  */
171 NTSTATUS WINAPI RtlSetEnvironmentVariable(PWSTR* penv, PUNICODE_STRING name, 
172                                           PUNICODE_STRING value)
173 {
174     INT         len, old_size;
175     LPWSTR      p, env;
176     NTSTATUS    nts = STATUS_VARIABLE_NOT_FOUND;
177     MEMORY_BASIC_INFORMATION mbi;
178
179     TRACE("(%p,%s,%s)\n", 
180           penv, debugstr_w(name->Buffer), 
181           value ? debugstr_w(value->Buffer) : "--nil--");
182
183     if (!name || !name->Buffer || !name->Buffer[0])
184         return STATUS_INVALID_PARAMETER_1;
185     /* variable names can't contain a '=' except as a first character */
186     if (strchrW(name->Buffer + 1, '=')) return STATUS_INVALID_PARAMETER;
187
188     if (!penv)
189     {
190         RtlAcquirePebLock();
191         env = ntdll_get_process_pmts()->Environment;
192     } else env = *penv;
193
194     len = name->Length / sizeof(WCHAR);
195
196     /* compute current size of environment */
197     for (p = env; *p; p += strlenW(p) + 1);
198     old_size = p + 1 - env;
199
200     /* Find a place to insert the string */
201     for (p = env; *p; p += strlenW(p) + 1)
202     {
203         if (!strncmpiW(name->Buffer, p, len) && (p[len] == '=')) break;
204     }
205     if (!value && !*p) goto done;  /* Value to remove doesn't exist */
206
207     /* Realloc the buffer */
208     len = value ? len + value->Length / sizeof(WCHAR) + 2 : 0;
209     if (*p) len -= strlenW(p) + 1;  /* The name already exists */
210
211     if (len < 0)
212     {
213         LPWSTR next = p + strlenW(p) + 1;  /* We know there is a next one */
214         memmove(next + len, next, (old_size - (next - env)) * sizeof(WCHAR));
215     }
216
217     nts = NtQueryVirtualMemory(NtCurrentProcess(), env, 0,
218                                &mbi, sizeof(mbi), NULL);
219     if (nts != STATUS_SUCCESS) goto done;
220
221     if ((old_size + len) * sizeof(WCHAR) > mbi.RegionSize)
222     {
223         LPWSTR  new_env;
224         ULONG   new_size = (old_size + len) * sizeof(WCHAR);
225
226         new_env = NULL;
227         nts = NtAllocateVirtualMemory(NtCurrentProcess(), (void**)&new_env, 0,
228                                       &new_size, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
229         if (nts != STATUS_SUCCESS) goto done;
230
231         memmove(new_env, env, (p - env) * sizeof(WCHAR));
232         assert(len > 0);
233         memmove(new_env + (p - env) + len, p, (old_size - (p - env)) * sizeof(WCHAR));
234         p = new_env + (p - env);
235
236         RtlDestroyEnvironment(env);
237         if (!penv) ntdll_get_process_pmts()->Environment = new_env;
238         else *penv = new_env;
239         env = new_env;
240     }
241     else
242     {
243         if (len > 0) memmove(p + len, p, (old_size - (p - env)) * sizeof(WCHAR));
244     }
245
246     /* Set the new string */
247     if (value)
248     {
249         static const WCHAR equalW[] = {'=',0};
250
251         strcpyW(p, name->Buffer);
252         strcatW(p, equalW);
253         strcatW(p, value->Buffer);
254     }
255 done:
256     if (!penv) RtlReleasePebLock();
257
258     return nts;
259 }
260
261 /******************************************************************
262  *              RtlExpandEnvironmentStrings_U (NTDLL.@)
263  *
264  */
265 NTSTATUS WINAPI RtlExpandEnvironmentStrings_U(PWSTR renv, const UNICODE_STRING* us_src,
266                                               PUNICODE_STRING us_dst, PULONG plen)
267 {
268     DWORD       len, count, total_size = 1;  /* 1 for terminating '\0' */
269     LPCWSTR     env, src, p, var;
270     LPWSTR      dst;
271
272     src = us_src->Buffer;
273     count = us_dst->MaximumLength / sizeof(WCHAR);
274     dst = count ? us_dst->Buffer : NULL;
275
276     if (!renv)
277     {
278         RtlAcquirePebLock();
279         env = ntdll_get_process_pmts()->Environment;
280     }
281     else env = renv;
282
283     while (*src)
284     {
285         if (*src != '%')
286         {
287             if ((p = strchrW( src, '%' ))) len = p - src;
288             else len = strlenW(src);
289             var = src;
290             src += len;
291         }
292         else  /* we are at the start of a variable */
293         {
294             if ((p = strchrW( src + 1, '%' )))
295             {
296                 len = p - src - 1;  /* Length of the variable name */
297                 if ((var = ENV_FindVariable( env, src + 1, len )))
298                 {
299                     src += len + 2;  /* Skip the variable name */
300                     len = strlenW(var);
301                 }
302                 else
303                 {
304                     var = src;  /* Copy original name instead */
305                     len += 2;
306                     src += len;
307                 }
308             }
309             else  /* unfinished variable name, ignore it */
310             {
311                 var = src;
312                 len = strlenW(src);  /* Copy whole string */
313                 src += len;
314             }
315         }
316         total_size += len;
317         if (dst)
318         {
319             if (count < len) len = count;
320             memcpy(dst, var, len * sizeof(WCHAR));
321             count -= len;
322             dst += len;
323         }
324     }
325
326     if (!renv) RtlReleasePebLock();
327
328     /* Null-terminate the string */
329     if (dst && count) *dst = '\0';
330
331     us_dst->Length = (dst) ? (dst - us_dst->Buffer) * sizeof(WCHAR) : 0;
332     if (plen) *plen = total_size * sizeof(WCHAR);
333
334     return (count) ? STATUS_SUCCESS : STATUS_BUFFER_TOO_SMALL;
335 }
336
337
338 static inline void normalize( void *base, WCHAR **ptr )
339 {
340     if (*ptr) *ptr = (WCHAR *)((char *)base + (UINT_PTR)*ptr);
341 }
342
343 /******************************************************************************
344  *  RtlNormalizeProcessParams  [NTDLL.@]
345  */
346 PRTL_USER_PROCESS_PARAMETERS WINAPI RtlNormalizeProcessParams( RTL_USER_PROCESS_PARAMETERS *params )
347 {
348     if (params && !(params->Flags & PROCESS_PARAMS_FLAG_NORMALIZED))
349     {
350         normalize( params, &params->CurrentDirectoryName.Buffer );
351         normalize( params, &params->DllPath.Buffer );
352         normalize( params, &params->ImagePathName.Buffer );
353         normalize( params, &params->CommandLine.Buffer );
354         normalize( params, &params->WindowTitle.Buffer );
355         normalize( params, &params->Desktop.Buffer );
356         normalize( params, &params->ShellInfo.Buffer );
357         normalize( params, &params->RuntimeInfo.Buffer );
358         params->Flags |= PROCESS_PARAMS_FLAG_NORMALIZED;
359     }
360     return params;
361 }
362
363
364 static inline void denormalize( void *base, WCHAR **ptr )
365 {
366     if (*ptr) *ptr = (WCHAR *)(UINT_PTR)((char *)*ptr - (char *)base);
367 }
368
369 /******************************************************************************
370  *  RtlDeNormalizeProcessParams  [NTDLL.@]
371  */
372 PRTL_USER_PROCESS_PARAMETERS WINAPI RtlDeNormalizeProcessParams( RTL_USER_PROCESS_PARAMETERS *params )
373 {
374     if (params && (params->Flags & PROCESS_PARAMS_FLAG_NORMALIZED))
375     {
376         denormalize( params, &params->CurrentDirectoryName.Buffer );
377         denormalize( params, &params->DllPath.Buffer );
378         denormalize( params, &params->ImagePathName.Buffer );
379         denormalize( params, &params->CommandLine.Buffer );
380         denormalize( params, &params->WindowTitle.Buffer );
381         denormalize( params, &params->Desktop.Buffer );
382         denormalize( params, &params->ShellInfo.Buffer );
383         denormalize( params, &params->RuntimeInfo.Buffer );
384         params->Flags &= ~PROCESS_PARAMS_FLAG_NORMALIZED;
385     }
386     return params;
387 }
388
389
390 /* append a unicode string to the process params data; helper for RtlCreateProcessParameters */
391 static void append_unicode_string( void **data, const UNICODE_STRING *src,
392                                    UNICODE_STRING *dst )
393 {
394     dst->Length = src->Length;
395     dst->MaximumLength = src->MaximumLength;
396     dst->Buffer = *data;
397     memcpy( dst->Buffer, src->Buffer, dst->MaximumLength );
398     *data = (char *)dst->Buffer + dst->MaximumLength;
399 }
400
401
402 /******************************************************************************
403  *  RtlCreateProcessParameters  [NTDLL.@]
404  */
405 NTSTATUS WINAPI RtlCreateProcessParameters( RTL_USER_PROCESS_PARAMETERS **result,
406                                             const UNICODE_STRING *ImagePathName,
407                                             const UNICODE_STRING *DllPath,
408                                             const UNICODE_STRING *CurrentDirectoryName,
409                                             const UNICODE_STRING *CommandLine,
410                                             PWSTR Environment,
411                                             const UNICODE_STRING *WindowTitle,
412                                             const UNICODE_STRING *Desktop,
413                                             const UNICODE_STRING *ShellInfo,
414                                             const UNICODE_STRING *RuntimeInfo )
415 {
416     static const WCHAR empty[] = {0};
417     static const UNICODE_STRING empty_str = { 0, sizeof(empty), (WCHAR *)empty };
418
419     const RTL_USER_PROCESS_PARAMETERS *cur_params;
420     ULONG size, total_size;
421     void *ptr;
422     NTSTATUS status;
423
424     RtlAcquirePebLock();
425     cur_params = NtCurrentTeb()->Peb->ProcessParameters;
426     if (!DllPath) DllPath = &cur_params->DllPath;
427     if (!CurrentDirectoryName) CurrentDirectoryName = &cur_params->CurrentDirectoryName;
428     if (!CommandLine) CommandLine = ImagePathName;
429     if (!Environment) Environment = cur_params->Environment;
430     if (!WindowTitle) WindowTitle = &empty_str;
431     if (!Desktop) Desktop = &empty_str;
432     if (!ShellInfo) ShellInfo = &empty_str;
433     if (!RuntimeInfo) RuntimeInfo = &empty_str;
434
435     size = (sizeof(RTL_USER_PROCESS_PARAMETERS)
436             + ImagePathName->MaximumLength
437             + DllPath->MaximumLength
438             + CurrentDirectoryName->MaximumLength
439             + CommandLine->MaximumLength
440             + WindowTitle->MaximumLength
441             + Desktop->MaximumLength
442             + ShellInfo->MaximumLength
443             + RuntimeInfo->MaximumLength);
444
445     total_size = size;
446     if ((status = NtAllocateVirtualMemory( NtCurrentProcess(), &ptr, NULL, &total_size,
447                                            MEM_COMMIT, PAGE_READWRITE )) == STATUS_SUCCESS)
448     {
449         RTL_USER_PROCESS_PARAMETERS *params = ptr;
450         params->AllocationSize = total_size;
451         params->Size           = size;
452         params->Flags          = PROCESS_PARAMS_FLAG_NORMALIZED;
453         params->ProcessGroup   = cur_params->ProcessGroup;
454         params->Environment    = Environment;
455         /* all other fields are zero */
456
457         ptr = params + 1;
458         append_unicode_string( &ptr, CurrentDirectoryName, &params->CurrentDirectoryName );
459         append_unicode_string( &ptr, DllPath, &params->DllPath );
460         append_unicode_string( &ptr, ImagePathName, &params->ImagePathName );
461         append_unicode_string( &ptr, CommandLine, &params->CommandLine );
462         append_unicode_string( &ptr, WindowTitle, &params->WindowTitle );
463         append_unicode_string( &ptr, Desktop, &params->Desktop );
464         append_unicode_string( &ptr, ShellInfo, &params->ShellInfo );
465         append_unicode_string( &ptr, RuntimeInfo, &params->RuntimeInfo );
466         *result = RtlDeNormalizeProcessParams( params );
467     }
468     RtlReleasePebLock();
469     return status;
470 }
471
472
473 /******************************************************************************
474  *  RtlDestroyProcessParameters  [NTDLL.@]
475  */
476 void WINAPI RtlDestroyProcessParameters( RTL_USER_PROCESS_PARAMETERS *params )
477 {
478     void *ptr = params;
479     ULONG size = 0;
480     NtFreeVirtualMemory( NtCurrentProcess(), &ptr, &size, MEM_RELEASE );
481 }