Cast time_t to long for printing.
[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  *           build_environment
339  *
340  * Build the Win32 environment from the Unix environment
341  */
342 static NTSTATUS build_initial_environment(void)
343 {
344     extern char **environ;
345     LPSTR*      e, te;
346     LPWSTR      p;
347     ULONG       size;
348     NTSTATUS    nts;
349     int         len;
350
351     /* Compute the total size of the Unix environment */
352     size = sizeof(BYTE);
353     for (e = environ; *e; e++)
354     {
355         if (!memcmp(*e, "PATH=", 5)) continue;
356         size += strlen(*e) + 1;
357     }
358     size *= sizeof(WCHAR);
359
360     /* Now allocate the environment */
361     nts = NtAllocateVirtualMemory(NtCurrentProcess(), (void**)&p, 0, &size, 
362                                   MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
363     if (nts != STATUS_SUCCESS) return nts;
364
365     ntdll_get_process_pmts()->Environment = p;
366
367     /* And fill it with the Unix environment */
368     for (e = environ; *e; e++)
369     {
370         /* skip Unix PATH and store WINEPATH as PATH */
371         if (!memcmp(*e, "PATH=", 5)) continue;
372         if (!memcmp(*e, "WINEPATH=", 9 )) te = *e + 4; else te = *e;
373         len = strlen(te);
374         RtlMultiByteToUnicodeN(p, len * sizeof(WCHAR), NULL, te, len);
375         p[len] = 0;
376         p += len + 1;
377     }
378     *p = 0;
379
380     return STATUS_SUCCESS;
381 }
382
383 static void init_unicode( UNICODE_STRING* us, const char** src, size_t len)
384 {
385     if (len)
386     {
387         STRING ansi;
388         ansi.Buffer = (char*)*src;
389         ansi.Length = len;
390         ansi.MaximumLength = len;       
391         /* FIXME: should check value returned */
392         RtlAnsiStringToUnicodeString( us, &ansi, TRUE );
393         *src += len;
394     }
395 }
396
397 /***********************************************************************
398  *           init_user_process_pmts
399  *
400  * Fill the RTL_USER_PROCESS_PARAMETERS structure from the server.
401  */
402 BOOL init_user_process_pmts( size_t info_size )
403 {
404     startup_info_t info;
405     void *data;
406     const char *src;
407     size_t len;
408     RTL_USER_PROCESS_PARAMETERS *rupp;
409
410     if (build_initial_environment() != STATUS_SUCCESS) return FALSE;
411     if (!info_size) return TRUE;
412     if (!(data = RtlAllocateHeap( ntdll_get_process_heap(), 0, info_size )))
413         return FALSE;
414
415     SERVER_START_REQ( get_startup_info )
416     {
417         wine_server_set_reply( req, data, info_size );
418         wine_server_call( req );
419         info_size = wine_server_reply_size( reply );
420     }
421     SERVER_END_REQ;
422
423     if (info_size < sizeof(info.size)) goto done;
424     len = min( info_size, ((startup_info_t *)data)->size );
425     memset( &info, 0, sizeof(info) );
426     memcpy( &info, data, len );
427     src = (char *)data + len;
428     info_size -= len;
429
430     /* fixup the lengths */
431     if (info.filename_len > info_size) info.filename_len = info_size;
432     info_size -= info.filename_len;
433     if (info.cmdline_len > info_size) info.cmdline_len = info_size;
434     info_size -= info.cmdline_len;
435     if (info.desktop_len > info_size) info.desktop_len = info_size;
436     info_size -= info.desktop_len;
437     if (info.title_len > info_size) info.title_len = info_size;
438
439     rupp = NtCurrentTeb()->Peb->ProcessParameters;
440
441     init_unicode( &rupp->ImagePathName, &src, info.filename_len );
442     init_unicode( &rupp->CommandLine, &src, info.cmdline_len );
443     init_unicode( &rupp->Desktop, &src, info.desktop_len );
444     init_unicode( &rupp->WindowTitle, &src, info.title_len );
445
446     rupp->dwX             = info.x;
447     rupp->dwY             = info.y;
448     rupp->dwXSize         = info.cx;
449     rupp->dwYSize         = info.cy;
450     rupp->dwXCountChars   = info.x_chars;
451     rupp->dwYCountChars   = info.y_chars;
452     rupp->dwFillAttribute = info.attribute;
453     rupp->wShowWindow     = info.cmd_show;
454     rupp->dwFlags         = info.flags;
455
456  done:
457     RtlFreeHeap( ntdll_get_process_heap(), 0, data );
458     return TRUE;
459 }
460
461 /***********************************************************************
462  *              set_library_argv
463  *
464  * Set the Wine library argc/argv global variables.
465  */
466 static void set_library_argv( char **argv )
467 {
468     int argc;
469     WCHAR *p;
470     WCHAR **wargv;
471     DWORD total = 0, len, reslen;
472
473     for (argc = 0; argv[argc]; argc++)
474     {
475         len = strlen(argv[argc]) + 1;
476         RtlMultiByteToUnicodeN(NULL, 0, &reslen, argv[argc], len);
477         total += reslen;
478     }
479     wargv = RtlAllocateHeap( ntdll_get_process_heap(), 0,
480                              total + (argc + 1) * sizeof(*wargv) );
481     p = (WCHAR *)(wargv + argc + 1);
482     for (argc = 0; argv[argc]; argc++)
483     {
484         len = strlen(argv[argc]) + 1;
485         RtlMultiByteToUnicodeN(p, total, &reslen, argv[argc], len);
486         wargv[argc] = p;
487         p += reslen / sizeof(WCHAR);
488         total -= reslen;
489     }
490     wargv[argc] = NULL;
491
492     __wine_main_argc  = argc;
493     __wine_main_argv  = argv;
494     __wine_main_wargv = wargv;
495 }
496
497 /***********************************************************************
498  *           build_command_line
499  *
500  * Build the command line of a process from the argv array.
501  *
502  * Note that it does NOT necessarily include the file name.
503  * Sometimes we don't even have any command line options at all.
504  *
505  * We must quote and escape characters so that the argv array can be rebuilt
506  * from the command line:
507  * - spaces and tabs must be quoted
508  *   'a b'   -> '"a b"'
509  * - quotes must be escaped
510  *   '"'     -> '\"'
511  * - if '\'s are followed by a '"', they must be doubled and followed by '\"',
512  *   resulting in an odd number of '\' followed by a '"'
513  *   '\"'    -> '\\\"'
514  *   '\\"'   -> '\\\\\"'
515  * - '\'s that are not followed by a '"' can be left as is
516  *   'a\b'   == 'a\b'
517  *   'a\\b'  == 'a\\b'
518  */
519 BOOL build_command_line( char **argv )
520 {
521     int len;
522     char **arg;
523     LPWSTR p;
524     RTL_USER_PROCESS_PARAMETERS* rupp;
525
526     set_library_argv( argv );
527
528     rupp = ntdll_get_process_pmts();
529     if (rupp->CommandLine.Buffer) return TRUE; /* already got it from the server */
530
531     len = 0;
532     for (arg = argv; *arg; arg++)
533     {
534         int has_space,bcount;
535         char* a;
536
537         has_space=0;
538         bcount=0;
539         a=*arg;
540         if( !*a ) has_space=1;
541         while (*a!='\0') {
542             if (*a=='\\') {
543                 bcount++;
544             } else {
545                 if (*a==' ' || *a=='\t') {
546                     has_space=1;
547                 } else if (*a=='"') {
548                     /* doubling of '\' preceeding a '"',
549                      * plus escaping of said '"'
550                      */
551                     len+=2*bcount+1;
552                 }
553                 bcount=0;
554             }
555             a++;
556         }
557         len+=(a-*arg)+1 /* for the separating space */;
558         if (has_space)
559             len+=2; /* for the quotes */
560     }
561
562     if (!(rupp->CommandLine.Buffer = RtlAllocateHeap( ntdll_get_process_heap(), 0, len * sizeof(WCHAR))))
563         return FALSE;
564
565     p = rupp->CommandLine.Buffer;
566     rupp->CommandLine.Length = (len - 1) * sizeof(WCHAR);
567     rupp->CommandLine.MaximumLength = len * sizeof(WCHAR);
568     for (arg = argv; *arg; arg++)
569     {
570         int has_space,has_quote;
571         char* a;
572
573         /* Check for quotes and spaces in this argument */
574         has_space=has_quote=0;
575         a=*arg;
576         if( !*a ) has_space=1;
577         while (*a!='\0') {
578             if (*a==' ' || *a=='\t') {
579                 has_space=1;
580                 if (has_quote)
581                     break;
582             } else if (*a=='"') {
583                 has_quote=1;
584                 if (has_space)
585                     break;
586             }
587             a++;
588         }
589
590         /* Now transfer it to the command line */
591         if (has_space)
592             *p++='"';
593         if (has_quote) {
594             int bcount;
595             char* a;
596
597             bcount=0;
598             a=*arg;
599             while (*a!='\0') {
600                 if (*a=='\\') {
601                     *p++=*a;
602                     bcount++;
603                 } else {
604                     if (*a=='"') {
605                         int i;
606
607                         /* Double all the '\\' preceeding this '"', plus one */
608                         for (i=0;i<=bcount;i++)
609                             *p++='\\';
610                         *p++='"';
611                     } else {
612                         *p++=*a;
613                     }
614                     bcount=0;
615                 }
616                 a++;
617             }
618         } else {
619             char* x = *arg;
620             while ((*p=*x++)) p++;
621         }
622         if (has_space)
623             *p++='"';
624         *p++=' ';
625     }
626     if (p > rupp->CommandLine.Buffer)
627         p--;  /* remove last space */
628     *p = '\0';
629
630     return TRUE;
631 }