Imported Upstream version 2.55.0
[platform/upstream/glib.git] / glib / gutils.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1998  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
16  */
17
18 /*
19  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
20  * file for a list of people on the GLib Team.  See the ChangeLog
21  * files for a list of changes.  These files are distributed with
22  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
23  */
24
25 /* 
26  * MT safe for the unix part, FIXME: make the win32 part MT safe as well.
27  */
28
29 #include "config.h"
30
31 #include "gutils.h"
32
33 #include <stdarg.h>
34 #include <stdlib.h>
35 #include <stdio.h>
36 #include <locale.h>
37 #include <string.h>
38 #include <ctype.h>              /* For tolower() */
39 #include <errno.h>
40 #include <sys/types.h>
41 #include <sys/stat.h>
42 #ifdef G_OS_UNIX
43 #include <pwd.h>
44 #include <unistd.h>
45 #endif
46 #include <sys/types.h>
47 #ifdef HAVE_SYS_PARAM_H
48 #include <sys/param.h>
49 #endif
50 #ifdef HAVE_CRT_EXTERNS_H 
51 #include <crt_externs.h> /* for _NSGetEnviron */
52 #endif
53
54 #include "glib-init.h"
55 #include "glib-private.h"
56 #include "genviron.h"
57 #include "gfileutils.h"
58 #include "ggettext.h"
59 #include "ghash.h"
60 #include "gthread.h"
61 #include "gtestutils.h"
62 #include "gunicode.h"
63 #include "gstrfuncs.h"
64 #include "garray.h"
65 #include "glibintl.h"
66 #include "gstdio.h"
67
68 #ifdef G_PLATFORM_WIN32
69 #include "gconvert.h"
70 #include "gwin32.h"
71 #endif
72
73
74 /**
75  * SECTION:misc_utils
76  * @title: Miscellaneous Utility Functions
77  * @short_description: a selection of portable utility functions
78  *
79  * These are portable utility functions.
80  */
81
82 #ifdef G_PLATFORM_WIN32
83 #  include <windows.h>
84 #  ifndef GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS
85 #    define GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT 2
86 #    define GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS 4
87 #  endif
88 #  include <lmcons.h>           /* For UNLEN */
89 #endif /* G_PLATFORM_WIN32 */
90
91 #ifdef G_OS_WIN32
92 #  include <direct.h>
93 #  include <shlobj.h>
94    /* older SDK (e.g. msvc 5.0) does not have these*/
95 #  ifndef CSIDL_MYMUSIC
96 #    define CSIDL_MYMUSIC 13
97 #  endif
98 #  ifndef CSIDL_MYVIDEO
99 #    define CSIDL_MYVIDEO 14
100 #  endif
101 #  ifndef CSIDL_INTERNET_CACHE
102 #    define CSIDL_INTERNET_CACHE 32
103 #  endif
104 #  ifndef CSIDL_COMMON_APPDATA
105 #    define CSIDL_COMMON_APPDATA 35
106 #  endif
107 #  ifndef CSIDL_MYPICTURES
108 #    define CSIDL_MYPICTURES 0x27
109 #  endif
110 #  ifndef CSIDL_COMMON_DOCUMENTS
111 #    define CSIDL_COMMON_DOCUMENTS 46
112 #  endif
113 #  ifndef CSIDL_PROFILE
114 #    define CSIDL_PROFILE 40
115 #  endif
116 #  include <process.h>
117 #endif
118
119 #ifdef HAVE_CARBON
120 #include <CoreServices/CoreServices.h>
121 #endif
122
123 #ifdef HAVE_CODESET
124 #include <langinfo.h>
125 #endif
126
127 #ifdef G_PLATFORM_WIN32
128
129 gchar *
130 _glib_get_dll_directory (void)
131 {
132   gchar *retval;
133   gchar *p;
134   wchar_t wc_fn[MAX_PATH];
135
136 #ifdef DLL_EXPORT
137   if (glib_dll == NULL)
138     return NULL;
139 #endif
140
141   /* This code is different from that in
142    * g_win32_get_package_installation_directory_of_module() in that
143    * here we return the actual folder where the GLib DLL is. We don't
144    * do the check for it being in a "bin" or "lib" subfolder and then
145    * returning the parent of that.
146    *
147    * In a statically built GLib, glib_dll will be NULL and we will
148    * thus look up the application's .exe file's location.
149    */
150   if (!GetModuleFileNameW (glib_dll, wc_fn, MAX_PATH))
151     return NULL;
152
153   retval = g_utf16_to_utf8 (wc_fn, -1, NULL, NULL, NULL);
154
155   p = strrchr (retval, G_DIR_SEPARATOR);
156   if (p == NULL)
157     {
158       /* Wtf? */
159       return NULL;
160     }
161   *p = '\0';
162
163   return retval;
164 }
165
166 #endif
167
168 /**
169  * g_memmove: 
170  * @dest: the destination address to copy the bytes to.
171  * @src: the source address to copy the bytes from.
172  * @len: the number of bytes to copy.
173  *
174  * Copies a block of memory @len bytes long, from @src to @dest.
175  * The source and destination areas may overlap.
176  *
177  * Deprecated:2.40: Just use memmove().
178  */
179
180 #ifdef G_OS_WIN32
181 #undef g_atexit
182 #endif
183
184 /**
185  * g_atexit:
186  * @func: (scope async): the function to call on normal program termination.
187  * 
188  * Specifies a function to be called at normal program termination.
189  *
190  * Since GLib 2.8.2, on Windows g_atexit() actually is a preprocessor
191  * macro that maps to a call to the atexit() function in the C
192  * library. This means that in case the code that calls g_atexit(),
193  * i.e. atexit(), is in a DLL, the function will be called when the
194  * DLL is detached from the program. This typically makes more sense
195  * than that the function is called when the GLib DLL is detached,
196  * which happened earlier when g_atexit() was a function in the GLib
197  * DLL.
198  *
199  * The behaviour of atexit() in the context of dynamically loaded
200  * modules is not formally specified and varies wildly.
201  *
202  * On POSIX systems, calling g_atexit() (or atexit()) in a dynamically
203  * loaded module which is unloaded before the program terminates might
204  * well cause a crash at program exit.
205  *
206  * Some POSIX systems implement atexit() like Windows, and have each
207  * dynamically loaded module maintain an own atexit chain that is
208  * called when the module is unloaded.
209  *
210  * On other POSIX systems, before a dynamically loaded module is
211  * unloaded, the registered atexit functions (if any) residing in that
212  * module are called, regardless where the code that registered them
213  * resided. This is presumably the most robust approach.
214  *
215  * As can be seen from the above, for portability it's best to avoid
216  * calling g_atexit() (or atexit()) except in the main executable of a
217  * program.
218  *
219  * Deprecated:2.32: It is best to avoid g_atexit().
220  */
221 void
222 g_atexit (GVoidFunc func)
223 {
224   gint result;
225   int errsv;
226
227   result = atexit ((void (*)(void)) func);
228   errsv = errno;
229   if (result)
230     {
231       g_error ("Could not register atexit() function: %s",
232                g_strerror (errsv));
233     }
234 }
235
236 /* Based on execvp() from GNU Libc.
237  * Some of this code is cut-and-pasted into gspawn.c
238  */
239
240 static gchar*
241 my_strchrnul (const gchar *str, 
242               gchar        c)
243 {
244   gchar *p = (gchar*)str;
245   while (*p && (*p != c))
246     ++p;
247
248   return p;
249 }
250
251 #ifdef G_OS_WIN32
252
253 static gchar *inner_find_program_in_path (const gchar *program);
254
255 gchar*
256 g_find_program_in_path (const gchar *program)
257 {
258   const gchar *last_dot = strrchr (program, '.');
259
260   if (last_dot == NULL ||
261       strchr (last_dot, '\\') != NULL ||
262       strchr (last_dot, '/') != NULL)
263     {
264       const gint program_length = strlen (program);
265       gchar *pathext = g_build_path (";",
266                                      ".exe;.cmd;.bat;.com",
267                                      g_getenv ("PATHEXT"),
268                                      NULL);
269       gchar *p;
270       gchar *decorated_program;
271       gchar *retval;
272
273       p = pathext;
274       do
275         {
276           gchar *q = my_strchrnul (p, ';');
277
278           decorated_program = g_malloc (program_length + (q-p) + 1);
279           memcpy (decorated_program, program, program_length);
280           memcpy (decorated_program+program_length, p, q-p);
281           decorated_program [program_length + (q-p)] = '\0';
282           
283           retval = inner_find_program_in_path (decorated_program);
284           g_free (decorated_program);
285
286           if (retval != NULL)
287             {
288               g_free (pathext);
289               return retval;
290             }
291           p = q;
292         } while (*p++ != '\0');
293       g_free (pathext);
294       return NULL;
295     }
296   else
297     return inner_find_program_in_path (program);
298 }
299
300 #endif
301
302 /**
303  * g_find_program_in_path:
304  * @program: (type filename): a program name in the GLib file name encoding
305  * 
306  * Locates the first executable named @program in the user's path, in the
307  * same way that execvp() would locate it. Returns an allocated string
308  * with the absolute path name, or %NULL if the program is not found in
309  * the path. If @program is already an absolute path, returns a copy of
310  * @program if @program exists and is executable, and %NULL otherwise.
311  *  
312  * On Windows, if @program does not have a file type suffix, tries
313  * with the suffixes .exe, .cmd, .bat and .com, and the suffixes in
314  * the `PATHEXT` environment variable. 
315  * 
316  * On Windows, it looks for the file in the same way as CreateProcess() 
317  * would. This means first in the directory where the executing
318  * program was loaded from, then in the current directory, then in the
319  * Windows 32-bit system directory, then in the Windows directory, and
320  * finally in the directories in the `PATH` environment variable. If
321  * the program is found, the return value contains the full name
322  * including the type suffix.
323  *
324  * Returns: (type filename): a newly-allocated string with the absolute path,
325  *     or %NULL
326  **/
327 #ifdef G_OS_WIN32
328 static gchar *
329 inner_find_program_in_path (const gchar *program)
330 #else
331 gchar*
332 g_find_program_in_path (const gchar *program)
333 #endif
334 {
335   const gchar *path, *p;
336   gchar *name, *freeme;
337 #ifdef G_OS_WIN32
338   const gchar *path_copy;
339   gchar *filename = NULL, *appdir = NULL;
340   gchar *sysdir = NULL, *windir = NULL;
341   int n;
342   wchar_t wfilename[MAXPATHLEN], wsysdir[MAXPATHLEN],
343     wwindir[MAXPATHLEN];
344 #endif
345   gsize len;
346   gsize pathlen;
347
348   g_return_val_if_fail (program != NULL, NULL);
349
350   /* If it is an absolute path, or a relative path including subdirectories,
351    * don't look in PATH.
352    */
353   if (g_path_is_absolute (program)
354       || strchr (program, G_DIR_SEPARATOR) != NULL
355 #ifdef G_OS_WIN32
356       || strchr (program, '/') != NULL
357 #endif
358       )
359     {
360       if (g_file_test (program, G_FILE_TEST_IS_EXECUTABLE) &&
361           !g_file_test (program, G_FILE_TEST_IS_DIR))
362         return g_strdup (program);
363       else
364         return NULL;
365     }
366   
367   path = g_getenv ("PATH");
368 #if defined(G_OS_UNIX)
369   if (path == NULL)
370     {
371       /* There is no 'PATH' in the environment.  The default
372        * search path in GNU libc is the current directory followed by
373        * the path 'confstr' returns for '_CS_PATH'.
374        */
375       
376       /* In GLib we put . last, for security, and don't use the
377        * unportable confstr(); UNIX98 does not actually specify
378        * what to search if PATH is unset. POSIX may, dunno.
379        */
380       
381       path = "/bin:/usr/bin:.";
382     }
383 #else
384   n = GetModuleFileNameW (NULL, wfilename, MAXPATHLEN);
385   if (n > 0 && n < MAXPATHLEN)
386     filename = g_utf16_to_utf8 (wfilename, -1, NULL, NULL, NULL);
387   
388   n = GetSystemDirectoryW (wsysdir, MAXPATHLEN);
389   if (n > 0 && n < MAXPATHLEN)
390     sysdir = g_utf16_to_utf8 (wsysdir, -1, NULL, NULL, NULL);
391   
392   n = GetWindowsDirectoryW (wwindir, MAXPATHLEN);
393   if (n > 0 && n < MAXPATHLEN)
394     windir = g_utf16_to_utf8 (wwindir, -1, NULL, NULL, NULL);
395   
396   if (filename)
397     {
398       appdir = g_path_get_dirname (filename);
399       g_free (filename);
400     }
401   
402   path = g_strdup (path);
403
404   if (windir)
405     {
406       const gchar *tem = path;
407       path = g_strconcat (windir, ";", path, NULL);
408       g_free ((gchar *) tem);
409       g_free (windir);
410     }
411   
412   if (sysdir)
413     {
414       const gchar *tem = path;
415       path = g_strconcat (sysdir, ";", path, NULL);
416       g_free ((gchar *) tem);
417       g_free (sysdir);
418     }
419   
420   {
421     const gchar *tem = path;
422     path = g_strconcat (".;", path, NULL);
423     g_free ((gchar *) tem);
424   }
425   
426   if (appdir)
427     {
428       const gchar *tem = path;
429       path = g_strconcat (appdir, ";", path, NULL);
430       g_free ((gchar *) tem);
431       g_free (appdir);
432     }
433
434   path_copy = path;
435 #endif
436   
437   len = strlen (program) + 1;
438   pathlen = strlen (path);
439   freeme = name = g_malloc (pathlen + len + 1);
440   
441   /* Copy the file name at the top, including '\0'  */
442   memcpy (name + pathlen + 1, program, len);
443   name = name + pathlen;
444   /* And add the slash before the filename  */
445   *name = G_DIR_SEPARATOR;
446   
447   p = path;
448   do
449     {
450       char *startp;
451
452       path = p;
453       p = my_strchrnul (path, G_SEARCHPATH_SEPARATOR);
454
455       if (p == path)
456         /* Two adjacent colons, or a colon at the beginning or the end
457          * of 'PATH' means to search the current directory.
458          */
459         startp = name + 1;
460       else
461         startp = memcpy (name - (p - path), path, p - path);
462
463       if (g_file_test (startp, G_FILE_TEST_IS_EXECUTABLE) &&
464           !g_file_test (startp, G_FILE_TEST_IS_DIR))
465         {
466           gchar *ret;
467           ret = g_strdup (startp);
468           g_free (freeme);
469 #ifdef G_OS_WIN32
470           g_free ((gchar *) path_copy);
471 #endif
472           return ret;
473         }
474     }
475   while (*p++ != '\0');
476   
477   g_free (freeme);
478 #ifdef G_OS_WIN32
479   g_free ((gchar *) path_copy);
480 #endif
481
482   return NULL;
483 }
484
485 /* The functions below are defined this way for compatibility reasons.
486  * See the note in gutils.h.
487  */
488
489 /**
490  * g_bit_nth_lsf:
491  * @mask: a #gulong containing flags
492  * @nth_bit: the index of the bit to start the search from
493  *
494  * Find the position of the first bit set in @mask, searching
495  * from (but not including) @nth_bit upwards. Bits are numbered
496  * from 0 (least significant) to sizeof(#gulong) * 8 - 1 (31 or 63,
497  * usually). To start searching from the 0th bit, set @nth_bit to -1.
498  *
499  * Returns: the index of the first bit set which is higher than @nth_bit, or -1
500  *    if no higher bits are set
501  */
502 gint
503 (g_bit_nth_lsf) (gulong mask,
504                  gint   nth_bit)
505 {
506   return g_bit_nth_lsf_impl (mask, nth_bit);
507 }
508
509 /**
510  * g_bit_nth_msf:
511  * @mask: a #gulong containing flags
512  * @nth_bit: the index of the bit to start the search from
513  *
514  * Find the position of the first bit set in @mask, searching
515  * from (but not including) @nth_bit downwards. Bits are numbered
516  * from 0 (least significant) to sizeof(#gulong) * 8 - 1 (31 or 63,
517  * usually). To start searching from the last bit, set @nth_bit to
518  * -1 or GLIB_SIZEOF_LONG * 8.
519  *
520  * Returns: the index of the first bit set which is lower than @nth_bit, or -1
521  *    if no lower bits are set
522  */
523 gint
524 (g_bit_nth_msf) (gulong mask,
525                  gint   nth_bit)
526 {
527   return g_bit_nth_msf_impl (mask, nth_bit);
528 }
529
530
531 /**
532  * g_bit_storage:
533  * @number: a #guint
534  *
535  * Gets the number of bits used to hold @number,
536  * e.g. if @number is 4, 3 bits are needed.
537  *
538  * Returns: the number of bits used to hold @number
539  */
540 guint
541 (g_bit_storage) (gulong number)
542 {
543   return g_bit_storage_impl (number);
544 }
545
546 G_LOCK_DEFINE_STATIC (g_utils_global);
547
548 typedef struct
549 {
550   gchar *user_name;
551   gchar *real_name;
552   gchar *home_dir;
553 } UserDatabaseEntry;
554
555 static  gchar   *g_user_data_dir = NULL;
556 static  gchar  **g_system_data_dirs = NULL;
557 static  gchar   *g_user_cache_dir = NULL;
558 static  gchar   *g_user_config_dir = NULL;
559 static  gchar  **g_system_config_dirs = NULL;
560
561 static  gchar  **g_user_special_dirs = NULL;
562
563 /* fifteen minutes of fame for everybody */
564 #define G_USER_DIRS_EXPIRE      15 * 60
565
566 #ifdef G_OS_WIN32
567
568 static gchar *
569 get_special_folder (int csidl)
570 {
571   wchar_t path[MAX_PATH+1];
572   HRESULT hr;
573   LPITEMIDLIST pidl = NULL;
574   BOOL b;
575   gchar *retval = NULL;
576
577   hr = SHGetSpecialFolderLocation (NULL, csidl, &pidl);
578   if (hr == S_OK)
579     {
580       b = SHGetPathFromIDListW (pidl, path);
581       if (b)
582         retval = g_utf16_to_utf8 (path, -1, NULL, NULL, NULL);
583       CoTaskMemFree (pidl);
584     }
585   return retval;
586 }
587
588 static char *
589 get_windows_directory_root (void)
590 {
591   wchar_t wwindowsdir[MAX_PATH];
592
593   if (GetWindowsDirectoryW (wwindowsdir, G_N_ELEMENTS (wwindowsdir)))
594     {
595       /* Usually X:\Windows, but in terminal server environments
596        * might be an UNC path, AFAIK.
597        */
598       char *windowsdir = g_utf16_to_utf8 (wwindowsdir, -1, NULL, NULL, NULL);
599       char *p;
600
601       if (windowsdir == NULL)
602         return g_strdup ("C:\\");
603
604       p = (char *) g_path_skip_root (windowsdir);
605       if (G_IS_DIR_SEPARATOR (p[-1]) && p[-2] != ':')
606         p--;
607       *p = '\0';
608       return windowsdir;
609     }
610   else
611     return g_strdup ("C:\\");
612 }
613
614 #endif
615
616 /* HOLDS: g_utils_global_lock */
617 static UserDatabaseEntry *
618 g_get_user_database_entry (void)
619 {
620   static UserDatabaseEntry *entry;
621
622   if (g_once_init_enter (&entry))
623     {
624       static UserDatabaseEntry e;
625
626 #ifdef G_OS_UNIX
627       {
628         struct passwd *pw = NULL;
629         gpointer buffer = NULL;
630         gint error;
631         gchar *logname;
632
633 #  if defined (HAVE_GETPWUID_R)
634         struct passwd pwd;
635 #    ifdef _SC_GETPW_R_SIZE_MAX
636         /* This reurns the maximum length */
637         glong bufsize = sysconf (_SC_GETPW_R_SIZE_MAX);
638
639         if (bufsize < 0)
640           bufsize = 64;
641 #    else /* _SC_GETPW_R_SIZE_MAX */
642         glong bufsize = 64;
643 #    endif /* _SC_GETPW_R_SIZE_MAX */
644
645         logname = (gchar *) g_getenv ("LOGNAME");
646
647         do
648           {
649             g_free (buffer);
650             /* we allocate 6 extra bytes to work around a bug in
651              * Mac OS < 10.3. See #156446
652              */
653             buffer = g_malloc (bufsize + 6);
654             errno = 0;
655
656             if (logname) {
657               error = getpwnam_r (logname, &pwd, buffer, bufsize, &pw);
658               if (!pw || (pw->pw_uid != getuid ())) {
659                 /* LOGNAME is lying, fall back to looking up the uid */
660                 error = getpwuid_r (getuid (), &pwd, buffer, bufsize, &pw);
661               }
662             } else {
663               error = getpwuid_r (getuid (), &pwd, buffer, bufsize, &pw);
664             }
665             error = error < 0 ? errno : error;
666
667             if (!pw)
668               {
669                 /* we bail out prematurely if the user id can't be found
670                  * (should be pretty rare case actually), or if the buffer
671                  * should be sufficiently big and lookups are still not
672                  * successful.
673                  */
674                 if (error == 0 || error == ENOENT)
675                   {
676                     g_warning ("getpwuid_r(): failed due to unknown user id (%lu)",
677                                (gulong) getuid ());
678                     break;
679                   }
680                 if (bufsize > 32 * 1024)
681                   {
682                     g_warning ("getpwuid_r(): failed due to: %s.",
683                                g_strerror (error));
684                     break;
685                   }
686
687                 bufsize *= 2;
688               }
689           }
690         while (!pw);
691 #  endif /* HAVE_GETPWUID_R */
692
693         if (!pw)
694           {
695             pw = getpwuid (getuid ());
696           }
697         if (pw)
698           {
699             e.user_name = g_strdup (pw->pw_name);
700
701 #ifndef __BIONIC__
702             if (pw->pw_gecos && *pw->pw_gecos != '\0')
703               {
704                 gchar **gecos_fields;
705                 gchar **name_parts;
706
707                 /* split the gecos field and substitute '&' */
708                 gecos_fields = g_strsplit (pw->pw_gecos, ",", 0);
709                 name_parts = g_strsplit (gecos_fields[0], "&", 0);
710                 pw->pw_name[0] = g_ascii_toupper (pw->pw_name[0]);
711                 e.real_name = g_strjoinv (pw->pw_name, name_parts);
712                 g_strfreev (gecos_fields);
713                 g_strfreev (name_parts);
714               }
715 #endif
716
717             if (!e.home_dir)
718               e.home_dir = g_strdup (pw->pw_dir);
719           }
720         g_free (buffer);
721       }
722
723 #endif /* G_OS_UNIX */
724
725 #ifdef G_OS_WIN32
726       {
727         guint len = UNLEN+1;
728         wchar_t buffer[UNLEN+1];
729
730         if (GetUserNameW (buffer, (LPDWORD) &len))
731           {
732             e.user_name = g_utf16_to_utf8 (buffer, -1, NULL, NULL, NULL);
733             e.real_name = g_strdup (e.user_name);
734           }
735       }
736 #endif /* G_OS_WIN32 */
737
738       if (!e.user_name)
739         e.user_name = g_strdup ("somebody");
740       if (!e.real_name)
741         e.real_name = g_strdup ("Unknown");
742
743       g_once_init_leave (&entry, &e);
744     }
745
746   return entry;
747 }
748
749 /**
750  * g_get_user_name:
751  *
752  * Gets the user name of the current user. The encoding of the returned
753  * string is system-defined. On UNIX, it might be the preferred file name
754  * encoding, or something else, and there is no guarantee that it is even
755  * consistent on a machine. On Windows, it is always UTF-8.
756  *
757  * Returns: (type filename): the user name of the current user.
758  */
759 const gchar *
760 g_get_user_name (void)
761 {
762   UserDatabaseEntry *entry;
763
764   entry = g_get_user_database_entry ();
765
766   return entry->user_name;
767 }
768
769 /**
770  * g_get_real_name:
771  *
772  * Gets the real name of the user. This usually comes from the user's
773  * entry in the `passwd` file. The encoding of the returned string is
774  * system-defined. (On Windows, it is, however, always UTF-8.) If the
775  * real user name cannot be determined, the string "Unknown" is 
776  * returned.
777  *
778  * Returns: (type filename): the user's real name.
779  */
780 const gchar *
781 g_get_real_name (void)
782 {
783   UserDatabaseEntry *entry;
784
785   entry = g_get_user_database_entry ();
786
787   return entry->real_name;
788 }
789
790 /**
791  * g_get_home_dir:
792  *
793  * Gets the current user's home directory.
794  *
795  * As with most UNIX tools, this function will return the value of the
796  * `HOME` environment variable if it is set to an existing absolute path
797  * name, falling back to the `passwd` file in the case that it is unset.
798  *
799  * If the path given in `HOME` is non-absolute, does not exist, or is
800  * not a directory, the result is undefined.
801  *
802  * Before version 2.36 this function would ignore the `HOME` environment
803  * variable, taking the value from the `passwd` database instead. This was
804  * changed to increase the compatibility of GLib with other programs (and
805  * the XDG basedir specification) and to increase testability of programs
806  * based on GLib (by making it easier to run them from test frameworks).
807  *
808  * If your program has a strong requirement for either the new or the
809  * old behaviour (and if you don't wish to increase your GLib
810  * dependency to ensure that the new behaviour is in effect) then you
811  * should either directly check the `HOME` environment variable yourself
812  * or unset it before calling any functions in GLib.
813  *
814  * Returns: (type filename): the current user's home directory
815  */
816 const gchar *
817 g_get_home_dir (void)
818 {
819   static gchar *home_dir;
820
821   if (g_once_init_enter (&home_dir))
822     {
823       gchar *tmp;
824
825       /* We first check HOME and use it if it is set */
826       tmp = g_strdup (g_getenv ("HOME"));
827
828 #ifdef G_OS_WIN32
829       /* Only believe HOME if it is an absolute path and exists.
830        *
831        * We only do this check on Windows for a couple of reasons.
832        * Historically, we only did it there because we used to ignore $HOME
833        * on UNIX.  There are concerns about enabling it now on UNIX because
834        * of things like autofs.  In short, if the user has a bogus value in
835        * $HOME then they get what they pay for...
836        */
837       if (tmp)
838         {
839           if (!(g_path_is_absolute (tmp) &&
840                 g_file_test (tmp, G_FILE_TEST_IS_DIR)))
841             {
842               g_free (tmp);
843               tmp = NULL;
844             }
845         }
846
847       /* In case HOME is Unix-style (it happens), convert it to
848        * Windows style.
849        */
850       if (tmp)
851         {
852           gchar *p;
853           while ((p = strchr (tmp, '/')) != NULL)
854             *p = '\\';
855         }
856
857       if (!tmp)
858         {
859           /* USERPROFILE is probably the closest equivalent to $HOME? */
860           if (g_getenv ("USERPROFILE") != NULL)
861             tmp = g_strdup (g_getenv ("USERPROFILE"));
862         }
863
864       if (!tmp)
865         tmp = get_special_folder (CSIDL_PROFILE);
866
867       if (!tmp)
868         tmp = get_windows_directory_root ();
869 #endif /* G_OS_WIN32 */
870
871       if (!tmp)
872         {
873           /* If we didn't get it from any of those methods, we will have
874            * to read the user database entry.
875            */
876           UserDatabaseEntry *entry;
877
878           entry = g_get_user_database_entry ();
879
880           /* Strictly speaking, we should copy this, but we know that
881            * neither will ever be freed, so don't bother...
882            */
883           tmp = entry->home_dir;
884         }
885
886       g_once_init_leave (&home_dir, tmp);
887     }
888
889   return home_dir;
890 }
891
892 /**
893  * g_get_tmp_dir:
894  *
895  * Gets the directory to use for temporary files.
896  *
897  * On UNIX, this is taken from the `TMPDIR` environment variable.
898  * If the variable is not set, `P_tmpdir` is
899  * used, as defined by the system C library. Failing that, a
900  * hard-coded default of "/tmp" is returned.
901  *
902  * On Windows, the `TEMP` environment variable is used, with the
903  * root directory of the Windows installation (eg: "C:\") used
904  * as a default.
905  *
906  * The encoding of the returned string is system-defined. On Windows,
907  * it is always UTF-8. The return value is never %NULL or the empty
908  * string.
909  *
910  * Returns: (type filename): the directory to use for temporary files.
911  */
912 const gchar *
913 g_get_tmp_dir (void)
914 {
915   static gchar *tmp_dir;
916
917   if (g_once_init_enter (&tmp_dir))
918     {
919       gchar *tmp;
920
921 #ifdef G_OS_WIN32
922       tmp = g_strdup (g_getenv ("TEMP"));
923
924       if (tmp == NULL || *tmp == '\0')
925         {
926           g_free (tmp);
927           tmp = get_windows_directory_root ();
928         }
929 #else /* G_OS_WIN32 */
930       tmp = g_strdup (g_getenv ("TMPDIR"));
931
932 #ifdef P_tmpdir
933       if (tmp == NULL || *tmp == '\0')
934         {
935           gsize k;
936           g_free (tmp);
937           tmp = g_strdup (P_tmpdir);
938           k = strlen (tmp);
939           if (k > 1 && G_IS_DIR_SEPARATOR (tmp[k - 1]))
940             tmp[k - 1] = '\0';
941         }
942 #endif /* P_tmpdir */
943
944       if (tmp == NULL || *tmp == '\0')
945         {
946           g_free (tmp);
947           tmp = g_strdup ("/tmp");
948         }
949 #endif /* !G_OS_WIN32 */
950
951       g_once_init_leave (&tmp_dir, tmp);
952     }
953
954   return tmp_dir;
955 }
956
957 /**
958  * g_get_host_name:
959  *
960  * Return a name for the machine. 
961  *
962  * The returned name is not necessarily a fully-qualified domain name,
963  * or even present in DNS or some other name service at all. It need
964  * not even be unique on your local network or site, but usually it
965  * is. Callers should not rely on the return value having any specific
966  * properties like uniqueness for security purposes. Even if the name
967  * of the machine is changed while an application is running, the
968  * return value from this function does not change. The returned
969  * string is owned by GLib and should not be modified or freed. If no
970  * name can be determined, a default fixed string "localhost" is
971  * returned.
972  *
973  * The encoding of the returned string is UTF-8.
974  *
975  * Returns: the host name of the machine.
976  *
977  * Since: 2.8
978  */
979 const gchar *
980 g_get_host_name (void)
981 {
982   static gchar *hostname;
983
984   if (g_once_init_enter (&hostname))
985     {
986       gboolean failed;
987       gchar *utmp;
988
989 #ifndef G_OS_WIN32
990       gchar *tmp = g_malloc (sizeof (gchar) * 100);
991       failed = (gethostname (tmp, sizeof (gchar) * 100) == -1);
992       if (failed)
993         g_clear_pointer (&tmp, g_free);
994       utmp = tmp;
995 #else
996       wchar_t tmp[MAX_COMPUTERNAME_LENGTH + 1];
997       DWORD size = sizeof (tmp) / sizeof (tmp[0]);
998       failed = (!GetComputerNameW (tmp, &size));
999       if (!failed)
1000         utmp = g_utf16_to_utf8 (tmp, size, NULL, NULL, NULL);
1001       if (utmp == NULL)
1002         failed = TRUE;
1003 #endif
1004
1005       g_once_init_leave (&hostname, failed ? g_strdup ("localhost") : utmp);
1006     }
1007
1008   return hostname;
1009 }
1010
1011 G_LOCK_DEFINE_STATIC (g_prgname);
1012 static gchar *g_prgname = NULL;
1013
1014 /**
1015  * g_get_prgname:
1016  *
1017  * Gets the name of the program. This name should not be localized,
1018  * in contrast to g_get_application_name().
1019  *
1020  * If you are using #GApplication the program name is set in
1021  * g_application_run(). In case of GDK or GTK+ it is set in
1022  * gdk_init(), which is called by gtk_init() and the
1023  * #GtkApplication::startup handler. The program name is found by
1024  * taking the last component of @argv[0].
1025  *
1026  * Returns: the name of the program. The returned string belongs 
1027  *     to GLib and must not be modified or freed.
1028  */
1029 const gchar*
1030 g_get_prgname (void)
1031 {
1032   gchar* retval;
1033
1034   G_LOCK (g_prgname);
1035 #ifdef G_OS_WIN32
1036   if (g_prgname == NULL)
1037     {
1038       static gboolean beenhere = FALSE;
1039
1040       if (!beenhere)
1041         {
1042           gchar *utf8_buf = NULL;
1043           wchar_t buf[MAX_PATH+1];
1044
1045           beenhere = TRUE;
1046           if (GetModuleFileNameW (GetModuleHandle (NULL),
1047                                   buf, G_N_ELEMENTS (buf)) > 0)
1048             utf8_buf = g_utf16_to_utf8 (buf, -1, NULL, NULL, NULL);
1049
1050           if (utf8_buf)
1051             {
1052               g_prgname = g_path_get_basename (utf8_buf);
1053               g_free (utf8_buf);
1054             }
1055         }
1056     }
1057 #endif
1058   retval = g_prgname;
1059   G_UNLOCK (g_prgname);
1060
1061   return retval;
1062 }
1063
1064 /**
1065  * g_set_prgname:
1066  * @prgname: the name of the program.
1067  *
1068  * Sets the name of the program. This name should not be localized,
1069  * in contrast to g_set_application_name().
1070  *
1071  * If you are using #GApplication the program name is set in
1072  * g_application_run(). In case of GDK or GTK+ it is set in
1073  * gdk_init(), which is called by gtk_init() and the
1074  * #GtkApplication::startup handler. The program name is found by
1075  * taking the last component of @argv[0].
1076  *
1077  * Note that for thread-safety reasons this function can only be called once.
1078  */
1079 void
1080 g_set_prgname (const gchar *prgname)
1081 {
1082   G_LOCK (g_prgname);
1083   g_free (g_prgname);
1084   g_prgname = g_strdup (prgname);
1085   G_UNLOCK (g_prgname);
1086 }
1087
1088 G_LOCK_DEFINE_STATIC (g_application_name);
1089 static gchar *g_application_name = NULL;
1090
1091 /**
1092  * g_get_application_name:
1093  * 
1094  * Gets a human-readable name for the application, as set by
1095  * g_set_application_name(). This name should be localized if
1096  * possible, and is intended for display to the user.  Contrast with
1097  * g_get_prgname(), which gets a non-localized name. If
1098  * g_set_application_name() has not been called, returns the result of
1099  * g_get_prgname() (which may be %NULL if g_set_prgname() has also not
1100  * been called).
1101  * 
1102  * Returns: human-readable application name. may return %NULL
1103  *
1104  * Since: 2.2
1105  **/
1106 const gchar *
1107 g_get_application_name (void)
1108 {
1109   gchar* retval;
1110
1111   G_LOCK (g_application_name);
1112   retval = g_application_name;
1113   G_UNLOCK (g_application_name);
1114
1115   if (retval == NULL)
1116     return g_get_prgname ();
1117   
1118   return retval;
1119 }
1120
1121 /**
1122  * g_set_application_name:
1123  * @application_name: localized name of the application
1124  *
1125  * Sets a human-readable name for the application. This name should be
1126  * localized if possible, and is intended for display to the user.
1127  * Contrast with g_set_prgname(), which sets a non-localized name.
1128  * g_set_prgname() will be called automatically by gtk_init(),
1129  * but g_set_application_name() will not.
1130  *
1131  * Note that for thread safety reasons, this function can only
1132  * be called once.
1133  *
1134  * The application name will be used in contexts such as error messages,
1135  * or when displaying an application's name in the task list.
1136  * 
1137  * Since: 2.2
1138  **/
1139 void
1140 g_set_application_name (const gchar *application_name)
1141 {
1142   gboolean already_set = FALSE;
1143         
1144   G_LOCK (g_application_name);
1145   if (g_application_name)
1146     already_set = TRUE;
1147   else
1148     g_application_name = g_strdup (application_name);
1149   G_UNLOCK (g_application_name);
1150
1151   if (already_set)
1152     g_warning ("g_set_application_name() called multiple times");
1153 }
1154
1155 /**
1156  * g_get_user_data_dir:
1157  * 
1158  * Returns a base directory in which to access application data such
1159  * as icons that is customized for a particular user.  
1160  *
1161  * On UNIX platforms this is determined using the mechanisms described
1162  * in the
1163  * [XDG Base Directory Specification](http://www.freedesktop.org/Standards/basedir-spec).
1164  * In this case the directory retrieved will be `XDG_DATA_HOME`.
1165  *
1166  * On Windows it follows XDG Base Directory Specification if `XDG_DATA_HOME`
1167  * is defined. If `XDG_DATA_HOME` is undefined, the folder to use for local (as
1168  * opposed to roaming) application data is used instead. See the
1169  * [documentation for `CSIDL_LOCAL_APPDATA`](https://msdn.microsoft.com/en-us/library/windows/desktop/bb762494%28v=vs.85%29.aspx#csidl_local_appdata).
1170  * Note that in this case on Windows it will be the same
1171  * as what g_get_user_config_dir() returns.
1172  *
1173  * Returns: (type filename): a string owned by GLib that must not be modified
1174  *               or freed.
1175  * Since: 2.6
1176  **/
1177 const gchar *
1178 g_get_user_data_dir (void)
1179 {
1180   gchar *data_dir = NULL;
1181
1182   G_LOCK (g_utils_global);
1183
1184   if (!g_user_data_dir)
1185     {
1186       const gchar *data_dir_env = g_getenv ("XDG_DATA_HOME");
1187
1188       if (data_dir_env && data_dir_env[0])
1189         data_dir = g_strdup (data_dir_env);
1190 #ifdef G_OS_WIN32
1191       else
1192         data_dir = get_special_folder (CSIDL_LOCAL_APPDATA);
1193 #endif
1194       if (!data_dir || !data_dir[0])
1195         {
1196           const gchar *home_dir = g_get_home_dir ();
1197
1198           if (home_dir)
1199             data_dir = g_build_filename (home_dir, ".local", "share", NULL);
1200           else
1201             data_dir = g_build_filename (g_get_tmp_dir (), g_get_user_name (), ".local", "share", NULL);
1202         }
1203
1204       g_user_data_dir = data_dir;
1205     }
1206   else
1207     data_dir = g_user_data_dir;
1208
1209   G_UNLOCK (g_utils_global);
1210
1211   return data_dir;
1212 }
1213
1214 static void
1215 g_init_user_config_dir (void)
1216 {
1217   gchar *config_dir = NULL;
1218
1219   if (!g_user_config_dir)
1220     {
1221       const gchar *config_dir_env = g_getenv ("XDG_CONFIG_HOME");
1222
1223       if (config_dir_env && config_dir_env[0])
1224         config_dir = g_strdup (config_dir_env);
1225 #ifdef G_OS_WIN32
1226       else
1227         config_dir = get_special_folder (CSIDL_LOCAL_APPDATA);
1228 #endif
1229       if (!config_dir || !config_dir[0])
1230         {
1231           const gchar *home_dir = g_get_home_dir ();
1232
1233           if (home_dir)
1234             config_dir = g_build_filename (home_dir, ".config", NULL);
1235           else
1236             config_dir = g_build_filename (g_get_tmp_dir (), g_get_user_name (), ".config", NULL);
1237         }
1238
1239       g_user_config_dir = config_dir;
1240     }
1241 }
1242
1243 /**
1244  * g_get_user_config_dir:
1245  * 
1246  * Returns a base directory in which to store user-specific application 
1247  * configuration information such as user preferences and settings. 
1248  *
1249  * On UNIX platforms this is determined using the mechanisms described
1250  * in the
1251  * [XDG Base Directory Specification](http://www.freedesktop.org/Standards/basedir-spec).
1252  * In this case the directory retrieved will be `XDG_CONFIG_HOME`.
1253  *
1254  * On Windows it follows XDG Base Directory Specification if `XDG_CONFIG_HOME` is defined.
1255  * If `XDG_CONFIG_HOME` is undefined, the folder to use for local (as opposed
1256  * to roaming) application data is used instead. See the
1257  * [documentation for `CSIDL_LOCAL_APPDATA`](https://msdn.microsoft.com/en-us/library/windows/desktop/bb762494%28v=vs.85%29.aspx#csidl_local_appdata).
1258  * Note that in this case on Windows it will be  the same
1259  * as what g_get_user_data_dir() returns.
1260  *
1261  * Returns: (type filename): a string owned by GLib that must not be modified
1262  *               or freed.
1263  * Since: 2.6
1264  **/
1265 const gchar *
1266 g_get_user_config_dir (void)
1267 {
1268   G_LOCK (g_utils_global);
1269
1270   g_init_user_config_dir ();
1271
1272   G_UNLOCK (g_utils_global);
1273
1274   return g_user_config_dir;
1275 }
1276
1277 /**
1278  * g_get_user_cache_dir:
1279  * 
1280  * Returns a base directory in which to store non-essential, cached
1281  * data specific to particular user.
1282  *
1283  * On UNIX platforms this is determined using the mechanisms described
1284  * in the
1285  * [XDG Base Directory Specification](http://www.freedesktop.org/Standards/basedir-spec).
1286  * In this case the directory retrieved will be `XDG_CACHE_HOME`.
1287  *
1288  * On Windows it follows XDG Base Directory Specification if `XDG_CACHE_HOME` is defined.
1289  * If `XDG_CACHE_HOME` is undefined, the directory that serves as a common
1290  * repository for temporary Internet files is used instead. A typical path is
1291  * `C:\Documents and Settings\username\Local Settings\Temporary Internet Files`.
1292  * See the [documentation for `CSIDL_INTERNET_CACHE`](https://msdn.microsoft.com/en-us/library/windows/desktop/bb762494%28v=vs.85%29.aspx#csidl_internet_cache).
1293  *
1294  * Returns: (type filename): a string owned by GLib that must not be modified
1295  *               or freed.
1296  * Since: 2.6
1297  **/
1298 const gchar *
1299 g_get_user_cache_dir (void)
1300 {
1301   gchar *cache_dir = NULL;
1302
1303   G_LOCK (g_utils_global);
1304
1305   if (!g_user_cache_dir)
1306     {
1307       const gchar *cache_dir_env = g_getenv ("XDG_CACHE_HOME");
1308
1309       if (cache_dir_env && cache_dir_env[0])
1310         cache_dir = g_strdup (cache_dir_env);
1311 #ifdef G_OS_WIN32
1312       else
1313         cache_dir = get_special_folder (CSIDL_INTERNET_CACHE);
1314 #endif
1315       if (!cache_dir || !cache_dir[0])
1316         {
1317           const gchar *home_dir = g_get_home_dir ();
1318
1319           if (home_dir)
1320             cache_dir = g_build_filename (home_dir, ".cache", NULL);
1321           else
1322             cache_dir = g_build_filename (g_get_tmp_dir (), g_get_user_name (), ".cache", NULL);
1323         }
1324       g_user_cache_dir = cache_dir;
1325     }
1326   else
1327     cache_dir = g_user_cache_dir;
1328
1329   G_UNLOCK (g_utils_global);
1330
1331   return cache_dir;
1332 }
1333
1334 /**
1335  * g_get_user_runtime_dir:
1336  *
1337  * Returns a directory that is unique to the current user on the local
1338  * system.
1339  *
1340  * This is determined using the mechanisms described
1341  * in the 
1342  * [XDG Base Directory Specification](http://www.freedesktop.org/Standards/basedir-spec).
1343  * This is the directory
1344  * specified in the `XDG_RUNTIME_DIR` environment variable.
1345  * In the case that this variable is not set, we return the value of
1346  * g_get_user_cache_dir(), after verifying that it exists.
1347  *
1348  * Returns: (type filename): a string owned by GLib that must not be
1349  *     modified or freed.
1350  *
1351  * Since: 2.28
1352  **/
1353 const gchar *
1354 g_get_user_runtime_dir (void)
1355 {
1356   static const gchar *runtime_dir;
1357
1358   if (g_once_init_enter (&runtime_dir))
1359     {
1360       const gchar *dir;
1361
1362       dir = g_strdup (getenv ("XDG_RUNTIME_DIR"));
1363
1364       if (dir == NULL)
1365         {
1366           /* No need to strdup this one since it is valid forever. */
1367           dir = g_get_user_cache_dir ();
1368
1369           /* The user should be able to rely on the directory existing
1370            * when the function returns.  Probably it already does, but
1371            * let's make sure.  Just do mkdir() directly since it will be
1372            * no more expensive than a stat() in the case that the
1373            * directory already exists and is a lot easier.
1374            *
1375            * $XDG_CACHE_HOME is probably ~/.cache/ so as long as $HOME
1376            * exists this will work.  If the user changed $XDG_CACHE_HOME
1377            * then they can make sure that it exists...
1378            */
1379           (void) g_mkdir (dir, 0700);
1380         }
1381
1382       g_assert (dir != NULL);
1383
1384       g_once_init_leave (&runtime_dir, dir);
1385     }
1386
1387   return runtime_dir;
1388 }
1389
1390 #ifdef HAVE_CARBON
1391
1392 static gchar *
1393 find_folder (OSType type)
1394 {
1395   gchar *filename = NULL;
1396   FSRef  found;
1397
1398   if (FSFindFolder (kUserDomain, type, kDontCreateFolder, &found) == noErr)
1399     {
1400       CFURLRef url = CFURLCreateFromFSRef (kCFAllocatorSystemDefault, &found);
1401
1402       if (url)
1403         {
1404           CFStringRef path = CFURLCopyFileSystemPath (url, kCFURLPOSIXPathStyle);
1405
1406           if (path)
1407             {
1408               filename = g_strdup (CFStringGetCStringPtr (path, kCFStringEncodingUTF8));
1409
1410               if (! filename)
1411                 {
1412                   filename = g_new0 (gchar, CFStringGetLength (path) * 3 + 1);
1413
1414                   CFStringGetCString (path, filename,
1415                                       CFStringGetLength (path) * 3 + 1,
1416                                       kCFStringEncodingUTF8);
1417                 }
1418
1419               CFRelease (path);
1420             }
1421
1422           CFRelease (url);
1423         }
1424     }
1425
1426   return filename;
1427 }
1428
1429 static void
1430 load_user_special_dirs (void)
1431 {
1432   g_user_special_dirs[G_USER_DIRECTORY_DESKTOP] = find_folder (kDesktopFolderType);
1433   g_user_special_dirs[G_USER_DIRECTORY_DOCUMENTS] = find_folder (kDocumentsFolderType);
1434   g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] = find_folder (kDesktopFolderType); /* XXX correct ? */
1435   g_user_special_dirs[G_USER_DIRECTORY_MUSIC] = find_folder (kMusicDocumentsFolderType);
1436   g_user_special_dirs[G_USER_DIRECTORY_PICTURES] = find_folder (kPictureDocumentsFolderType);
1437   g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] = NULL;
1438   g_user_special_dirs[G_USER_DIRECTORY_TEMPLATES] = NULL;
1439   g_user_special_dirs[G_USER_DIRECTORY_VIDEOS] = find_folder (kMovieDocumentsFolderType);
1440 }
1441
1442 #elif defined(G_OS_WIN32)
1443
1444 static void
1445 load_user_special_dirs (void)
1446 {
1447   typedef HRESULT (WINAPI *t_SHGetKnownFolderPath) (const GUID *rfid,
1448                                                     DWORD dwFlags,
1449                                                     HANDLE hToken,
1450                                                     PWSTR *ppszPath);
1451   t_SHGetKnownFolderPath p_SHGetKnownFolderPath;
1452
1453   static const GUID FOLDERID_Downloads =
1454     { 0x374de290, 0x123f, 0x4565, { 0x91, 0x64, 0x39, 0xc4, 0x92, 0x5e, 0x46, 0x7b } };
1455   static const GUID FOLDERID_Public =
1456     { 0xDFDF76A2, 0xC82A, 0x4D63, { 0x90, 0x6A, 0x56, 0x44, 0xAC, 0x45, 0x73, 0x85 } };
1457
1458   wchar_t *wcp;
1459
1460   p_SHGetKnownFolderPath = (t_SHGetKnownFolderPath) GetProcAddress (GetModuleHandle ("shell32.dll"),
1461                                                                     "SHGetKnownFolderPath");
1462
1463   g_user_special_dirs[G_USER_DIRECTORY_DESKTOP] = get_special_folder (CSIDL_DESKTOPDIRECTORY);
1464   g_user_special_dirs[G_USER_DIRECTORY_DOCUMENTS] = get_special_folder (CSIDL_PERSONAL);
1465
1466   if (p_SHGetKnownFolderPath == NULL)
1467     {
1468       g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] = get_special_folder (CSIDL_DESKTOPDIRECTORY);
1469     }
1470   else
1471     {
1472       wcp = NULL;
1473       (*p_SHGetKnownFolderPath) (&FOLDERID_Downloads, 0, NULL, &wcp);
1474       if (wcp)
1475         {
1476           g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] = g_utf16_to_utf8 (wcp, -1, NULL, NULL, NULL);
1477           if (g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] == NULL)
1478               g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] = get_special_folder (CSIDL_DESKTOPDIRECTORY);
1479           CoTaskMemFree (wcp);
1480         }
1481       else
1482           g_user_special_dirs[G_USER_DIRECTORY_DOWNLOAD] = get_special_folder (CSIDL_DESKTOPDIRECTORY);
1483     }
1484
1485   g_user_special_dirs[G_USER_DIRECTORY_MUSIC] = get_special_folder (CSIDL_MYMUSIC);
1486   g_user_special_dirs[G_USER_DIRECTORY_PICTURES] = get_special_folder (CSIDL_MYPICTURES);
1487
1488   if (p_SHGetKnownFolderPath == NULL)
1489     {
1490       /* XXX */
1491       g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] = get_special_folder (CSIDL_COMMON_DOCUMENTS);
1492     }
1493   else
1494     {
1495       wcp = NULL;
1496       (*p_SHGetKnownFolderPath) (&FOLDERID_Public, 0, NULL, &wcp);
1497       if (wcp)
1498         {
1499           g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] = g_utf16_to_utf8 (wcp, -1, NULL, NULL, NULL);
1500           if (g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] == NULL)
1501               g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] = get_special_folder (CSIDL_COMMON_DOCUMENTS);
1502           CoTaskMemFree (wcp);
1503         }
1504       else
1505           g_user_special_dirs[G_USER_DIRECTORY_PUBLIC_SHARE] = get_special_folder (CSIDL_COMMON_DOCUMENTS);
1506     }
1507   
1508   g_user_special_dirs[G_USER_DIRECTORY_TEMPLATES] = get_special_folder (CSIDL_TEMPLATES);
1509   g_user_special_dirs[G_USER_DIRECTORY_VIDEOS] = get_special_folder (CSIDL_MYVIDEO);
1510 }
1511
1512 #else /* default is unix */
1513
1514 /* adapted from xdg-user-dir-lookup.c
1515  *
1516  * Copyright (C) 2007 Red Hat Inc.
1517  *
1518  * Permission is hereby granted, free of charge, to any person
1519  * obtaining a copy of this software and associated documentation files
1520  * (the "Software"), to deal in the Software without restriction,
1521  * including without limitation the rights to use, copy, modify, merge,
1522  * publish, distribute, sublicense, and/or sell copies of the Software,
1523  * and to permit persons to whom the Software is furnished to do so,
1524  * subject to the following conditions: 
1525  *
1526  * The above copyright notice and this permission notice shall be
1527  * included in all copies or substantial portions of the Software. 
1528  *
1529  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1530  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1531  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1532  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
1533  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
1534  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1535  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1536  * SOFTWARE.
1537  */
1538 static void
1539 load_user_special_dirs (void)
1540 {
1541   gchar *config_file;
1542   gchar *data;
1543   gchar **lines;
1544   gint n_lines, i;
1545   
1546   g_init_user_config_dir ();
1547   config_file = g_build_filename (g_user_config_dir,
1548                                   "user-dirs.dirs",
1549                                   NULL);
1550   
1551   if (!g_file_get_contents (config_file, &data, NULL, NULL))
1552     {
1553       g_free (config_file);
1554       return;
1555     }
1556
1557   lines = g_strsplit (data, "\n", -1);
1558   n_lines = g_strv_length (lines);
1559   g_free (data);
1560   
1561   for (i = 0; i < n_lines; i++)
1562     {
1563       gchar *buffer = lines[i];
1564       gchar *d, *p;
1565       gint len;
1566       gboolean is_relative = FALSE;
1567       GUserDirectory directory;
1568
1569       /* Remove newline at end */
1570       len = strlen (buffer);
1571       if (len > 0 && buffer[len - 1] == '\n')
1572         buffer[len - 1] = 0;
1573       
1574       p = buffer;
1575       while (*p == ' ' || *p == '\t')
1576         p++;
1577       
1578       if (strncmp (p, "XDG_DESKTOP_DIR", strlen ("XDG_DESKTOP_DIR")) == 0)
1579         {
1580           directory = G_USER_DIRECTORY_DESKTOP;
1581           p += strlen ("XDG_DESKTOP_DIR");
1582         }
1583       else if (strncmp (p, "XDG_DOCUMENTS_DIR", strlen ("XDG_DOCUMENTS_DIR")) == 0)
1584         {
1585           directory = G_USER_DIRECTORY_DOCUMENTS;
1586           p += strlen ("XDG_DOCUMENTS_DIR");
1587         }
1588       else if (strncmp (p, "XDG_DOWNLOAD_DIR", strlen ("XDG_DOWNLOAD_DIR")) == 0)
1589         {
1590           directory = G_USER_DIRECTORY_DOWNLOAD;
1591           p += strlen ("XDG_DOWNLOAD_DIR");
1592         }
1593       else if (strncmp (p, "XDG_MUSIC_DIR", strlen ("XDG_MUSIC_DIR")) == 0)
1594         {
1595           directory = G_USER_DIRECTORY_MUSIC;
1596           p += strlen ("XDG_MUSIC_DIR");
1597         }
1598       else if (strncmp (p, "XDG_PICTURES_DIR", strlen ("XDG_PICTURES_DIR")) == 0)
1599         {
1600           directory = G_USER_DIRECTORY_PICTURES;
1601           p += strlen ("XDG_PICTURES_DIR");
1602         }
1603       else if (strncmp (p, "XDG_PUBLICSHARE_DIR", strlen ("XDG_PUBLICSHARE_DIR")) == 0)
1604         {
1605           directory = G_USER_DIRECTORY_PUBLIC_SHARE;
1606           p += strlen ("XDG_PUBLICSHARE_DIR");
1607         }
1608       else if (strncmp (p, "XDG_TEMPLATES_DIR", strlen ("XDG_TEMPLATES_DIR")) == 0)
1609         {
1610           directory = G_USER_DIRECTORY_TEMPLATES;
1611           p += strlen ("XDG_TEMPLATES_DIR");
1612         }
1613       else if (strncmp (p, "XDG_VIDEOS_DIR", strlen ("XDG_VIDEOS_DIR")) == 0)
1614         {
1615           directory = G_USER_DIRECTORY_VIDEOS;
1616           p += strlen ("XDG_VIDEOS_DIR");
1617         }
1618       else
1619         continue;
1620
1621       while (*p == ' ' || *p == '\t')
1622         p++;
1623
1624       if (*p != '=')
1625         continue;
1626       p++;
1627
1628       while (*p == ' ' || *p == '\t')
1629         p++;
1630
1631       if (*p != '"')
1632         continue;
1633       p++;
1634
1635       if (strncmp (p, "$HOME", 5) == 0)
1636         {
1637           p += 5;
1638           is_relative = TRUE;
1639         }
1640       else if (*p != '/')
1641         continue;
1642
1643       d = strrchr (p, '"');
1644       if (!d)
1645         continue;
1646       *d = 0;
1647
1648       d = p;
1649       
1650       /* remove trailing slashes */
1651       len = strlen (d);
1652       if (d[len - 1] == '/')
1653         d[len - 1] = 0;
1654       
1655       if (is_relative)
1656         {
1657           g_user_special_dirs[directory] = g_build_filename (g_get_home_dir (), d, NULL);
1658         }
1659       else
1660         g_user_special_dirs[directory] = g_strdup (d);
1661     }
1662
1663   g_strfreev (lines);
1664   g_free (config_file);
1665 }
1666
1667 #endif /* platform-specific load_user_special_dirs implementations */
1668
1669
1670 /**
1671  * g_reload_user_special_dirs_cache:
1672  *
1673  * Resets the cache used for g_get_user_special_dir(), so
1674  * that the latest on-disk version is used. Call this only
1675  * if you just changed the data on disk yourself.
1676  *
1677  * Due to threadsafety issues this may cause leaking of strings
1678  * that were previously returned from g_get_user_special_dir()
1679  * that can't be freed. We ensure to only leak the data for
1680  * the directories that actually changed value though.
1681  *
1682  * Since: 2.22
1683  */
1684 void
1685 g_reload_user_special_dirs_cache (void)
1686 {
1687   int i;
1688
1689   G_LOCK (g_utils_global);
1690
1691   if (g_user_special_dirs != NULL)
1692     {
1693       /* save a copy of the pointer, to check if some memory can be preserved */
1694       char **old_g_user_special_dirs = g_user_special_dirs;
1695       char *old_val;
1696
1697       /* recreate and reload our cache */
1698       g_user_special_dirs = g_new0 (gchar *, G_USER_N_DIRECTORIES);
1699       load_user_special_dirs ();
1700
1701       /* only leak changed directories */
1702       for (i = 0; i < G_USER_N_DIRECTORIES; i++)
1703         {
1704           old_val = old_g_user_special_dirs[i];
1705           if (g_user_special_dirs[i] == NULL)
1706             {
1707               g_user_special_dirs[i] = old_val;
1708             }
1709           else if (g_strcmp0 (old_val, g_user_special_dirs[i]) == 0)
1710             {
1711               /* don't leak */
1712               g_free (g_user_special_dirs[i]);
1713               g_user_special_dirs[i] = old_val;
1714             }
1715           else
1716             g_free (old_val);
1717         }
1718
1719       /* free the old array */
1720       g_free (old_g_user_special_dirs);
1721     }
1722
1723   G_UNLOCK (g_utils_global);
1724 }
1725
1726 /**
1727  * g_get_user_special_dir:
1728  * @directory: the logical id of special directory
1729  *
1730  * Returns the full path of a special directory using its logical id.
1731  *
1732  * On UNIX this is done using the XDG special user directories.
1733  * For compatibility with existing practise, %G_USER_DIRECTORY_DESKTOP
1734  * falls back to `$HOME/Desktop` when XDG special user directories have
1735  * not been set up. 
1736  *
1737  * Depending on the platform, the user might be able to change the path
1738  * of the special directory without requiring the session to restart; GLib
1739  * will not reflect any change once the special directories are loaded.
1740  *
1741  * Returns: (type filename): the path to the specified special directory, or
1742  *   %NULL if the logical id was not found. The returned string is owned by
1743  *   GLib and should not be modified or freed.
1744  *
1745  * Since: 2.14
1746  */
1747 const gchar *
1748 g_get_user_special_dir (GUserDirectory directory)
1749 {
1750   g_return_val_if_fail (directory >= G_USER_DIRECTORY_DESKTOP &&
1751                         directory < G_USER_N_DIRECTORIES, NULL);
1752
1753   G_LOCK (g_utils_global);
1754
1755   if (G_UNLIKELY (g_user_special_dirs == NULL))
1756     {
1757       g_user_special_dirs = g_new0 (gchar *, G_USER_N_DIRECTORIES);
1758
1759       load_user_special_dirs ();
1760
1761       /* Special-case desktop for historical compatibility */
1762       if (g_user_special_dirs[G_USER_DIRECTORY_DESKTOP] == NULL)
1763         g_user_special_dirs[G_USER_DIRECTORY_DESKTOP] = g_build_filename (g_get_home_dir (), "Desktop", NULL);
1764     }
1765
1766   G_UNLOCK (g_utils_global);
1767
1768   return g_user_special_dirs[directory];
1769 }
1770
1771 #ifdef G_OS_WIN32
1772
1773 #undef g_get_system_data_dirs
1774
1775 static HMODULE
1776 get_module_for_address (gconstpointer address)
1777 {
1778   /* Holds the g_utils_global lock */
1779
1780   static gboolean beenhere = FALSE;
1781   typedef BOOL (WINAPI *t_GetModuleHandleExA) (DWORD, LPCTSTR, HMODULE *);
1782   static t_GetModuleHandleExA p_GetModuleHandleExA = NULL;
1783   HMODULE hmodule = NULL;
1784
1785   if (!address)
1786     return NULL;
1787
1788   if (!beenhere)
1789     {
1790       p_GetModuleHandleExA =
1791         (t_GetModuleHandleExA) GetProcAddress (GetModuleHandle ("kernel32.dll"),
1792                                                "GetModuleHandleExA");
1793       beenhere = TRUE;
1794     }
1795
1796   if (p_GetModuleHandleExA == NULL ||
1797       !(*p_GetModuleHandleExA) (GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT |
1798                                 GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
1799                                 address, &hmodule))
1800     {
1801       MEMORY_BASIC_INFORMATION mbi;
1802       VirtualQuery (address, &mbi, sizeof (mbi));
1803       hmodule = (HMODULE) mbi.AllocationBase;
1804     }
1805
1806   return hmodule;
1807 }
1808
1809 static gchar *
1810 get_module_share_dir (gconstpointer address)
1811 {
1812   HMODULE hmodule;
1813   gchar *filename;
1814   gchar *retval;
1815
1816   hmodule = get_module_for_address (address);
1817   if (hmodule == NULL)
1818     return NULL;
1819
1820   filename = g_win32_get_package_installation_directory_of_module (hmodule);
1821   retval = g_build_filename (filename, "share", NULL);
1822   g_free (filename);
1823
1824   return retval;
1825 }
1826
1827 static const gchar * const *
1828 g_win32_get_system_data_dirs_for_module_real (void (*address_of_function)(void))
1829 {
1830   GArray *data_dirs;
1831   HMODULE hmodule;
1832   static GHashTable *per_module_data_dirs = NULL;
1833   gchar **retval;
1834   gchar *p;
1835   gchar *exe_root;
1836
1837   hmodule = NULL;
1838   if (address_of_function)
1839     {
1840       G_LOCK (g_utils_global);
1841       hmodule = get_module_for_address (address_of_function);
1842       if (hmodule != NULL)
1843         {
1844           if (per_module_data_dirs == NULL)
1845             per_module_data_dirs = g_hash_table_new (NULL, NULL);
1846           else
1847             {
1848               retval = g_hash_table_lookup (per_module_data_dirs, hmodule);
1849               
1850               if (retval != NULL)
1851                 {
1852                   G_UNLOCK (g_utils_global);
1853                   return (const gchar * const *) retval;
1854                 }
1855             }
1856         }
1857     }
1858
1859   data_dirs = g_array_new (TRUE, TRUE, sizeof (char *));
1860
1861   /* Documents and Settings\All Users\Application Data */
1862   p = get_special_folder (CSIDL_COMMON_APPDATA);
1863   if (p)
1864     g_array_append_val (data_dirs, p);
1865   
1866   /* Documents and Settings\All Users\Documents */
1867   p = get_special_folder (CSIDL_COMMON_DOCUMENTS);
1868   if (p)
1869     g_array_append_val (data_dirs, p);
1870         
1871   /* Using the above subfolders of Documents and Settings perhaps
1872    * makes sense from a Windows perspective.
1873    *
1874    * But looking at the actual use cases of this function in GTK+
1875    * and GNOME software, what we really want is the "share"
1876    * subdirectory of the installation directory for the package
1877    * our caller is a part of.
1878    *
1879    * The address_of_function parameter, if non-NULL, points to a
1880    * function in the calling module. Use that to determine that
1881    * module's installation folder, and use its "share" subfolder.
1882    *
1883    * Additionally, also use the "share" subfolder of the installation
1884    * locations of GLib and the .exe file being run.
1885    *
1886    * To guard against none of the above being what is really wanted,
1887    * callers of this function should have Win32-specific code to look
1888    * up their installation folder themselves, and handle a subfolder
1889    * "share" of it in the same way as the folders returned from this
1890    * function.
1891    */
1892
1893   p = get_module_share_dir (address_of_function);
1894   if (p)
1895     g_array_append_val (data_dirs, p);
1896     
1897   if (glib_dll != NULL)
1898     {
1899       gchar *glib_root = g_win32_get_package_installation_directory_of_module (glib_dll);
1900       p = g_build_filename (glib_root, "share", NULL);
1901       if (p)
1902         g_array_append_val (data_dirs, p);
1903       g_free (glib_root);
1904     }
1905   
1906   exe_root = g_win32_get_package_installation_directory_of_module (NULL);
1907   p = g_build_filename (exe_root, "share", NULL);
1908   if (p)
1909     g_array_append_val (data_dirs, p);
1910   g_free (exe_root);
1911
1912   retval = (gchar **) g_array_free (data_dirs, FALSE);
1913
1914   if (address_of_function)
1915     {
1916       if (hmodule != NULL)
1917         g_hash_table_insert (per_module_data_dirs, hmodule, retval);
1918       G_UNLOCK (g_utils_global);
1919     }
1920
1921   return (const gchar * const *) retval;
1922 }
1923
1924 const gchar * const *
1925 g_win32_get_system_data_dirs_for_module (void (*address_of_function)(void))
1926 {
1927   gboolean should_call_g_get_system_data_dirs;
1928
1929   should_call_g_get_system_data_dirs = TRUE;
1930   /* These checks are the same as the ones that g_get_system_data_dirs() does.
1931    * Please keep them in sync.
1932    */
1933   G_LOCK (g_utils_global);
1934
1935   if (!g_system_data_dirs)
1936     {
1937       const gchar *data_dirs = g_getenv ("XDG_DATA_DIRS");
1938
1939       if (!data_dirs || !data_dirs[0])
1940         should_call_g_get_system_data_dirs = FALSE;
1941     }
1942
1943   G_UNLOCK (g_utils_global);
1944
1945   /* There is a subtle difference between g_win32_get_system_data_dirs_for_module (NULL),
1946    * which is what GLib code can normally call,
1947    * and g_win32_get_system_data_dirs_for_module (&_g_win32_get_system_data_dirs),
1948    * which is what the inline function used by non-GLib code calls.
1949    * The former gets prefix relative to currently-running executable,
1950    * the latter - relative to the module that calls _g_win32_get_system_data_dirs()
1951    * (disguised as g_get_system_data_dirs()), which could be an executable or
1952    * a DLL that is located somewhere else.
1953    * This is why that inline function in gutils.h exists, and why we can't just
1954    * call g_get_system_data_dirs() from there - because we need to get the address
1955    * local to the non-GLib caller-module.
1956    */
1957
1958   /*
1959    * g_get_system_data_dirs() will fall back to calling
1960    * g_win32_get_system_data_dirs_for_module_real(NULL) if XDG_DATA_DIRS is NULL
1961    * or an empty string. The checks above ensure that we do not call it in such
1962    * cases and use the address_of_function that we've been given by the inline function.
1963    * The reason we're calling g_get_system_data_dirs /at all/ is to give
1964    * XDG_DATA_DIRS precedence (if it is set).
1965    */
1966   if (should_call_g_get_system_data_dirs)
1967     return g_get_system_data_dirs ();
1968
1969   return g_win32_get_system_data_dirs_for_module_real (address_of_function);
1970 }
1971
1972 #endif
1973
1974 /**
1975  * g_get_system_data_dirs:
1976  * 
1977  * Returns an ordered list of base directories in which to access 
1978  * system-wide application data.
1979  *
1980  * On UNIX platforms this is determined using the mechanisms described
1981  * in the
1982  * [XDG Base Directory Specification](http://www.freedesktop.org/Standards/basedir-spec)
1983  * In this case the list of directories retrieved will be `XDG_DATA_DIRS`.
1984  *
1985  * On Windows it follows XDG Base Directory Specification if `XDG_DATA_DIRS` is defined.
1986  * If `XDG_DATA_DIRS` is undefined,
1987  * the first elements in the list are the Application Data
1988  * and Documents folders for All Users. (These can be determined only
1989  * on Windows 2000 or later and are not present in the list on other
1990  * Windows versions.) See documentation for CSIDL_COMMON_APPDATA and
1991  * CSIDL_COMMON_DOCUMENTS.
1992  *
1993  * Then follows the "share" subfolder in the installation folder for
1994  * the package containing the DLL that calls this function, if it can
1995  * be determined.
1996  * 
1997  * Finally the list contains the "share" subfolder in the installation
1998  * folder for GLib, and in the installation folder for the package the
1999  * application's .exe file belongs to.
2000  *
2001  * The installation folders above are determined by looking up the
2002  * folder where the module (DLL or EXE) in question is located. If the
2003  * folder's name is "bin", its parent is used, otherwise the folder
2004  * itself.
2005  *
2006  * Note that on Windows the returned list can vary depending on where
2007  * this function is called.
2008  *
2009  * Returns: (array zero-terminated=1) (element-type filename) (transfer none):
2010  *     a %NULL-terminated array of strings owned by GLib that must not be
2011  *     modified or freed.
2012  * 
2013  * Since: 2.6
2014  **/
2015 const gchar * const * 
2016 g_get_system_data_dirs (void)
2017 {
2018   gchar **data_dir_vector;
2019
2020   /* These checks are the same as the ones that g_win32_get_system_data_dirs_for_module()
2021    * does. Please keep them in sync.
2022    */
2023   G_LOCK (g_utils_global);
2024
2025   if (!g_system_data_dirs)
2026     {
2027       gchar *data_dirs = (gchar *) g_getenv ("XDG_DATA_DIRS");
2028
2029 #ifndef G_OS_WIN32
2030       if (!data_dirs || !data_dirs[0])
2031           data_dirs = "/usr/local/share/:/usr/share/";
2032
2033       data_dir_vector = g_strsplit (data_dirs, G_SEARCHPATH_SEPARATOR_S, 0);
2034 #else
2035       if (!data_dirs || !data_dirs[0])
2036         data_dir_vector = g_strdupv ((gchar **) g_win32_get_system_data_dirs_for_module_real (NULL));
2037       else
2038         data_dir_vector = g_strsplit (data_dirs, G_SEARCHPATH_SEPARATOR_S, 0);
2039 #endif
2040
2041       g_system_data_dirs = data_dir_vector;
2042     }
2043   else
2044     data_dir_vector = g_system_data_dirs;
2045
2046   G_UNLOCK (g_utils_global);
2047
2048   return (const gchar * const *) data_dir_vector;
2049 }
2050
2051 /**
2052  * g_get_system_config_dirs:
2053  * 
2054  * Returns an ordered list of base directories in which to access 
2055  * system-wide configuration information.
2056  *
2057  * On UNIX platforms this is determined using the mechanisms described
2058  * in the
2059  * [XDG Base Directory Specification](http://www.freedesktop.org/Standards/basedir-spec).
2060  * In this case the list of directories retrieved will be `XDG_CONFIG_DIRS`.
2061  *
2062  * On Windows it follows XDG Base Directory Specification if `XDG_CONFIG_DIRS` is defined.
2063  * If `XDG_CONFIG_DIRS` is undefined, the directory that contains application
2064  * data for all users is used instead. A typical path is
2065  * `C:\Documents and Settings\All Users\Application Data`.
2066  * This folder is used for application data
2067  * that is not user specific. For example, an application can store
2068  * a spell-check dictionary, a database of clip art, or a log file in the
2069  * CSIDL_COMMON_APPDATA folder. This information will not roam and is available
2070  * to anyone using the computer.
2071  *
2072  * Returns: (array zero-terminated=1) (element-type filename) (transfer none):
2073  *     a %NULL-terminated array of strings owned by GLib that must not be
2074  *     modified or freed.
2075  * 
2076  * Since: 2.6
2077  **/
2078 const gchar * const *
2079 g_get_system_config_dirs (void)
2080 {
2081   gchar **conf_dir_vector;
2082
2083   G_LOCK (g_utils_global);
2084
2085   if (!g_system_config_dirs)
2086     {
2087       const gchar *conf_dirs = g_getenv ("XDG_CONFIG_DIRS");
2088 #ifdef G_OS_WIN32
2089       if (conf_dirs)
2090         {
2091           conf_dir_vector = g_strsplit (conf_dirs, G_SEARCHPATH_SEPARATOR_S, 0);
2092         }
2093       else
2094         {
2095           gchar *special_conf_dirs = get_special_folder (CSIDL_COMMON_APPDATA);
2096
2097           if (special_conf_dirs)
2098             conf_dir_vector = g_strsplit (special_conf_dirs, G_SEARCHPATH_SEPARATOR_S, 0);
2099           else
2100             /* Return empty list */
2101             conf_dir_vector = g_strsplit ("", G_SEARCHPATH_SEPARATOR_S, 0);
2102
2103           g_free (special_conf_dirs);
2104         }
2105 #else
2106       if (!conf_dirs || !conf_dirs[0])
2107           conf_dirs = "/etc/xdg";
2108
2109       conf_dir_vector = g_strsplit (conf_dirs, G_SEARCHPATH_SEPARATOR_S, 0);
2110 #endif
2111
2112       g_system_config_dirs = conf_dir_vector;
2113     }
2114   else
2115     conf_dir_vector = g_system_config_dirs;
2116   G_UNLOCK (g_utils_global);
2117
2118   return (const gchar * const *) conf_dir_vector;
2119 }
2120
2121 /**
2122  * g_nullify_pointer:
2123  * @nullify_location: (not nullable): the memory address of the pointer.
2124  *
2125  * Set the pointer at the specified location to %NULL.
2126  **/
2127 void
2128 g_nullify_pointer (gpointer *nullify_location)
2129 {
2130   g_return_if_fail (nullify_location != NULL);
2131
2132   *nullify_location = NULL;
2133 }
2134
2135 #define KILOBYTE_FACTOR (G_GOFFSET_CONSTANT (1000))
2136 #define MEGABYTE_FACTOR (KILOBYTE_FACTOR * KILOBYTE_FACTOR)
2137 #define GIGABYTE_FACTOR (MEGABYTE_FACTOR * KILOBYTE_FACTOR)
2138 #define TERABYTE_FACTOR (GIGABYTE_FACTOR * KILOBYTE_FACTOR)
2139 #define PETABYTE_FACTOR (TERABYTE_FACTOR * KILOBYTE_FACTOR)
2140 #define EXABYTE_FACTOR  (PETABYTE_FACTOR * KILOBYTE_FACTOR)
2141
2142 #define KIBIBYTE_FACTOR (G_GOFFSET_CONSTANT (1024))
2143 #define MEBIBYTE_FACTOR (KIBIBYTE_FACTOR * KIBIBYTE_FACTOR)
2144 #define GIBIBYTE_FACTOR (MEBIBYTE_FACTOR * KIBIBYTE_FACTOR)
2145 #define TEBIBYTE_FACTOR (GIBIBYTE_FACTOR * KIBIBYTE_FACTOR)
2146 #define PEBIBYTE_FACTOR (TEBIBYTE_FACTOR * KIBIBYTE_FACTOR)
2147 #define EXBIBYTE_FACTOR (PEBIBYTE_FACTOR * KIBIBYTE_FACTOR)
2148
2149 /**
2150  * g_format_size:
2151  * @size: a size in bytes
2152  *
2153  * Formats a size (for example the size of a file) into a human readable
2154  * string.  Sizes are rounded to the nearest size prefix (kB, MB, GB)
2155  * and are displayed rounded to the nearest tenth. E.g. the file size
2156  * 3292528 bytes will be converted into the string "3.2 MB".
2157  *
2158  * The prefix units base is 1000 (i.e. 1 kB is 1000 bytes).
2159  *
2160  * This string should be freed with g_free() when not needed any longer.
2161  *
2162  * See g_format_size_full() for more options about how the size might be
2163  * formatted.
2164  *
2165  * Returns: a newly-allocated formatted string containing a human readable
2166  *     file size
2167  *
2168  * Since: 2.30
2169  */
2170 gchar *
2171 g_format_size (guint64 size)
2172 {
2173   return g_format_size_full (size, G_FORMAT_SIZE_DEFAULT);
2174 }
2175
2176 /**
2177  * GFormatSizeFlags:
2178  * @G_FORMAT_SIZE_DEFAULT: behave the same as g_format_size()
2179  * @G_FORMAT_SIZE_LONG_FORMAT: include the exact number of bytes as part
2180  *     of the returned string.  For example, "45.6 kB (45,612 bytes)".
2181  * @G_FORMAT_SIZE_IEC_UNITS: use IEC (base 1024) units with "KiB"-style
2182  *     suffixes. IEC units should only be used for reporting things with
2183  *     a strong "power of 2" basis, like RAM sizes or RAID stripe sizes.
2184  *     Network and storage sizes should be reported in the normal SI units.
2185  * @G_FORMAT_SIZE_BITS: set the size as a quantity in bits, rather than
2186  *     bytes, and return units in bits. For example, â€˜Mb’ rather than â€˜MB’.
2187  *
2188  * Flags to modify the format of the string returned by g_format_size_full().
2189  */
2190
2191 #pragma GCC diagnostic push
2192 #pragma GCC diagnostic ignored "-Wformat-nonliteral"
2193
2194 /**
2195  * g_format_size_full:
2196  * @size: a size in bytes
2197  * @flags: #GFormatSizeFlags to modify the output
2198  *
2199  * Formats a size.
2200  *
2201  * This function is similar to g_format_size() but allows for flags
2202  * that modify the output. See #GFormatSizeFlags.
2203  *
2204  * Returns: a newly-allocated formatted string containing a human
2205  *     readable file size
2206  *
2207  * Since: 2.30
2208  */
2209 gchar *
2210 g_format_size_full (guint64          size,
2211                     GFormatSizeFlags flags)
2212 {
2213   struct Format
2214   {
2215     guint64 factor;
2216     char string[9];
2217   };
2218
2219   typedef enum
2220   {
2221     FORMAT_BYTES,
2222     FORMAT_BYTES_IEC,
2223     FORMAT_BITS,
2224     FORMAT_BITS_IEC
2225   } FormatIndex;
2226
2227   const struct Format formats[4][6] = {
2228     {
2229       { KILOBYTE_FACTOR, N_("%.1f kB") },
2230       { MEGABYTE_FACTOR, N_("%.1f MB") },
2231       { GIGABYTE_FACTOR, N_("%.1f GB") },
2232       { TERABYTE_FACTOR, N_("%.1f TB") },
2233       { PETABYTE_FACTOR, N_("%.1f PB") },
2234       { EXABYTE_FACTOR,  N_("%.1f EB") }
2235     },
2236     {
2237       { KIBIBYTE_FACTOR, N_("%.1f KiB") },
2238       { MEBIBYTE_FACTOR, N_("%.1f MiB") },
2239       { GIBIBYTE_FACTOR, N_("%.1f GiB") },
2240       { TEBIBYTE_FACTOR, N_("%.1f TiB") },
2241       { PEBIBYTE_FACTOR, N_("%.1f PiB") },
2242       { EXBIBYTE_FACTOR, N_("%.1f EiB") }
2243     },
2244     {
2245       { KILOBYTE_FACTOR, N_("%.1f kb") },
2246       { MEGABYTE_FACTOR, N_("%.1f Mb") },
2247       { GIGABYTE_FACTOR, N_("%.1f Gb") },
2248       { TERABYTE_FACTOR, N_("%.1f Tb") },
2249       { PETABYTE_FACTOR, N_("%.1f Pb") },
2250       { EXABYTE_FACTOR,  N_("%.1f Eb") }
2251     },
2252     {
2253       { KIBIBYTE_FACTOR, N_("%.1f Kib") },
2254       { MEBIBYTE_FACTOR, N_("%.1f Mib") },
2255       { GIBIBYTE_FACTOR, N_("%.1f Gib") },
2256       { TEBIBYTE_FACTOR, N_("%.1f Tib") },
2257       { PEBIBYTE_FACTOR, N_("%.1f Pib") },
2258       { EXBIBYTE_FACTOR, N_("%.1f Eib") }
2259     }
2260   };
2261
2262   GString *string;
2263   FormatIndex index;
2264
2265   string = g_string_new (NULL);
2266
2267   switch (flags & ~G_FORMAT_SIZE_LONG_FORMAT)
2268     {
2269     case G_FORMAT_SIZE_DEFAULT:
2270       index = FORMAT_BYTES;
2271       break;
2272     case (G_FORMAT_SIZE_DEFAULT | G_FORMAT_SIZE_IEC_UNITS):
2273       index = FORMAT_BYTES_IEC;
2274       break;
2275     case G_FORMAT_SIZE_BITS:
2276       index = FORMAT_BITS;
2277       break;
2278     case (G_FORMAT_SIZE_BITS | G_FORMAT_SIZE_IEC_UNITS):
2279       index = FORMAT_BITS_IEC;
2280       break;
2281     default:
2282       g_assert_not_reached ();
2283     }
2284
2285
2286   if (size < formats[index][0].factor)
2287     {
2288       const char * format;
2289
2290       if (index == FORMAT_BYTES || index == FORMAT_BYTES_IEC)
2291         {
2292           format = g_dngettext (GETTEXT_PACKAGE, "%u byte", "%u bytes", (guint) size);
2293         }
2294       else
2295         {
2296           format = g_dngettext (GETTEXT_PACKAGE, "%u bit", "%u bits", (guint) size);
2297         }
2298
2299       g_string_printf (string, format, (guint) size);
2300
2301       flags &= ~G_FORMAT_SIZE_LONG_FORMAT;
2302     }
2303   else
2304     {
2305       const gsize n = G_N_ELEMENTS (formats[index]);
2306       gsize i;
2307
2308       /*
2309        * Point the last format (the highest unit) by default
2310        * and then then scan all formats, starting with the 2nd one
2311        * because the 1st is already managed by with the plural form
2312        */
2313       const struct Format * f = &formats[index][n - 1];
2314
2315       for (i = 1; i < n; i++)
2316         {
2317           if (size < formats[index][i].factor)
2318             {
2319               f = &formats[index][i - 1];
2320               break;
2321             }
2322         }
2323
2324       g_string_printf (string, _(f->string), (gdouble) size / (gdouble) f->factor);
2325     }
2326
2327   if (flags & G_FORMAT_SIZE_LONG_FORMAT)
2328     {
2329       /* First problem: we need to use the number of bytes to decide on
2330        * the plural form that is used for display, but the number of
2331        * bytes potentially exceeds the size of a guint (which is what
2332        * ngettext() takes).
2333        *
2334        * From a pragmatic standpoint, it seems that all known languages
2335        * base plural forms on one or both of the following:
2336        *
2337        *   - the lowest digits of the number
2338        *
2339        *   - if the number if greater than some small value
2340        *
2341        * Here's how we fake it:  Draw an arbitrary line at one thousand.
2342        * If the number is below that, then fine.  If it is above it,
2343        * then we take the modulus of the number by one thousand (in
2344        * order to keep the lowest digits) and add one thousand to that
2345        * (in order to ensure that 1001 is not treated the same as 1).
2346        */
2347       guint plural_form = size < 1000 ? size : size % 1000 + 1000;
2348
2349       /* Second problem: we need to translate the string "%u byte/bit" and
2350        * "%u bytes/bits" for pluralisation, but the correct number format to
2351        * use for a gsize is different depending on which architecture
2352        * we're on.
2353        *
2354        * Solution: format the number separately and use "%s bytes/bits" on
2355        * all platforms.
2356        */
2357       const gchar *translated_format;
2358       gchar *formatted_number;
2359
2360       if (index == FORMAT_BYTES || index == FORMAT_BYTES_IEC)
2361         {
2362           /* Translators: the %s in "%s bytes" will always be replaced by a number. */
2363           translated_format = g_dngettext (GETTEXT_PACKAGE, "%s byte", "%s bytes", plural_form);
2364         }
2365       else
2366         {
2367           /* Translators: the %s in "%s bits" will always be replaced by a number. */
2368           translated_format = g_dngettext (GETTEXT_PACKAGE, "%s bit", "%s bits", plural_form);
2369         }
2370       /* XXX: Windows doesn't support the "'" format modifier, so we
2371        * must not use it there.  Instead, just display the number
2372        * without separation.  Bug #655336 is open until a solution is
2373        * found.
2374        */
2375 #ifndef G_OS_WIN32
2376       formatted_number = g_strdup_printf ("%'"G_GUINT64_FORMAT, size);
2377 #else
2378       formatted_number = g_strdup_printf ("%"G_GUINT64_FORMAT, size);
2379 #endif
2380
2381       g_string_append (string, " (");
2382       g_string_append_printf (string, translated_format, formatted_number);
2383       g_free (formatted_number);
2384       g_string_append (string, ")");
2385     }
2386
2387   return g_string_free (string, FALSE);
2388 }
2389
2390 #pragma GCC diagnostic pop
2391
2392 /**
2393  * g_format_size_for_display:
2394  * @size: a size in bytes
2395  *
2396  * Formats a size (for example the size of a file) into a human
2397  * readable string. Sizes are rounded to the nearest size prefix
2398  * (KB, MB, GB) and are displayed rounded to the nearest tenth.
2399  * E.g. the file size 3292528 bytes will be converted into the
2400  * string "3.1 MB".
2401  *
2402  * The prefix units base is 1024 (i.e. 1 KB is 1024 bytes).
2403  *
2404  * This string should be freed with g_free() when not needed any longer.
2405  *
2406  * Returns: a newly-allocated formatted string containing a human
2407  *     readable file size
2408  *
2409  * Since: 2.16
2410  *
2411  * Deprecated:2.30: This function is broken due to its use of SI
2412  *     suffixes to denote IEC units. Use g_format_size() instead.
2413  */
2414 gchar *
2415 g_format_size_for_display (goffset size)
2416 {
2417   if (size < (goffset) KIBIBYTE_FACTOR)
2418     return g_strdup_printf (g_dngettext(GETTEXT_PACKAGE, "%u byte", "%u bytes",(guint) size), (guint) size);
2419   else
2420     {
2421       gdouble displayed_size;
2422
2423       if (size < (goffset) MEBIBYTE_FACTOR)
2424         {
2425           displayed_size = (gdouble) size / (gdouble) KIBIBYTE_FACTOR;
2426           /* Translators: this is from the deprecated function g_format_size_for_display() which uses 'KB' to
2427            * mean 1024 bytes.  I am aware that 'KB' is not correct, but it has been preserved for reasons of
2428            * compatibility.  Users will not see this string unless a program is using this deprecated function.
2429            * Please translate as literally as possible.
2430            */
2431           return g_strdup_printf (_("%.1f KB"), displayed_size);
2432         }
2433       else if (size < (goffset) GIBIBYTE_FACTOR)
2434         {
2435           displayed_size = (gdouble) size / (gdouble) MEBIBYTE_FACTOR;
2436           return g_strdup_printf (_("%.1f MB"), displayed_size);
2437         }
2438       else if (size < (goffset) TEBIBYTE_FACTOR)
2439         {
2440           displayed_size = (gdouble) size / (gdouble) GIBIBYTE_FACTOR;
2441           return g_strdup_printf (_("%.1f GB"), displayed_size);
2442         }
2443       else if (size < (goffset) PEBIBYTE_FACTOR)
2444         {
2445           displayed_size = (gdouble) size / (gdouble) TEBIBYTE_FACTOR;
2446           return g_strdup_printf (_("%.1f TB"), displayed_size);
2447         }
2448       else if (size < (goffset) EXBIBYTE_FACTOR)
2449         {
2450           displayed_size = (gdouble) size / (gdouble) PEBIBYTE_FACTOR;
2451           return g_strdup_printf (_("%.1f PB"), displayed_size);
2452         }
2453       else
2454         {
2455           displayed_size = (gdouble) size / (gdouble) EXBIBYTE_FACTOR;
2456           return g_strdup_printf (_("%.1f EB"), displayed_size);
2457         }
2458     }
2459 }
2460
2461 #if defined (G_OS_WIN32) && !defined (_WIN64)
2462
2463 /* Binary compatibility versions. Not for newly compiled code. */
2464
2465 _GLIB_EXTERN const gchar *g_get_user_name_utf8        (void);
2466 _GLIB_EXTERN const gchar *g_get_real_name_utf8        (void);
2467 _GLIB_EXTERN const gchar *g_get_home_dir_utf8         (void);
2468 _GLIB_EXTERN const gchar *g_get_tmp_dir_utf8          (void);
2469 _GLIB_EXTERN gchar       *g_find_program_in_path_utf8 (const gchar *program);
2470
2471 gchar *
2472 g_find_program_in_path_utf8 (const gchar *program)
2473 {
2474   return g_find_program_in_path (program);
2475 }
2476
2477 const gchar *g_get_user_name_utf8 (void) { return g_get_user_name (); }
2478 const gchar *g_get_real_name_utf8 (void) { return g_get_real_name (); }
2479 const gchar *g_get_home_dir_utf8 (void) { return g_get_home_dir (); }
2480 const gchar *g_get_tmp_dir_utf8 (void) { return g_get_tmp_dir (); }
2481
2482 #endif
2483
2484 /* Private API:
2485  *
2486  * Returns %TRUE if the current process was executed as setuid (or an
2487  * equivalent __libc_enable_secure is available).  See:
2488  * http://osdir.com/ml/linux.lfs.hardened/2007-04/msg00032.html
2489  */ 
2490 gboolean
2491 g_check_setuid (void)
2492 {
2493   /* TODO: get __libc_enable_secure exported from glibc.
2494    * See http://www.openwall.com/lists/owl-dev/2012/08/14/1
2495    */
2496 #if 0 && defined(HAVE_LIBC_ENABLE_SECURE)
2497   {
2498     /* See glibc/include/unistd.h */
2499     extern int __libc_enable_secure;
2500     return __libc_enable_secure;
2501   }
2502 #elif defined(HAVE_ISSETUGID) && !defined(__BIONIC__)
2503   /* BSD: http://www.freebsd.org/cgi/man.cgi?query=issetugid&sektion=2 */
2504
2505   /* Android had it in older versions but the new 64 bit ABI does not
2506    * have it anymore, and some versions of the 32 bit ABI neither.
2507    * https://code.google.com/p/android-developer-preview/issues/detail?id=168
2508    */
2509   return issetugid ();
2510 #elif defined(G_OS_UNIX)
2511   uid_t ruid, euid, suid; /* Real, effective and saved user ID's */
2512   gid_t rgid, egid, sgid; /* Real, effective and saved group ID's */
2513
2514   static gsize check_setuid_initialised;
2515   static gboolean is_setuid;
2516
2517   if (g_once_init_enter (&check_setuid_initialised))
2518     {
2519 #ifdef HAVE_GETRESUID
2520       /* These aren't in the header files, so we prototype them here.
2521        */
2522       int getresuid(uid_t *ruid, uid_t *euid, uid_t *suid);
2523       int getresgid(gid_t *rgid, gid_t *egid, gid_t *sgid);
2524       
2525       if (getresuid (&ruid, &euid, &suid) != 0 ||
2526           getresgid (&rgid, &egid, &sgid) != 0)
2527 #endif /* HAVE_GETRESUID */
2528         {
2529           suid = ruid = getuid ();
2530           sgid = rgid = getgid ();
2531           euid = geteuid ();
2532           egid = getegid ();
2533         }
2534
2535       is_setuid = (ruid != euid || ruid != suid ||
2536                    rgid != egid || rgid != sgid);
2537
2538       g_once_init_leave (&check_setuid_initialised, 1);
2539     }
2540   return is_setuid;
2541 #else
2542   return FALSE;
2543 #endif
2544 }
2545
2546 #ifdef G_OS_WIN32
2547 /**
2548  * g_abort:
2549  *
2550  * A wrapper for the POSIX abort() function.
2551  *
2552  * On Windows it is a function that makes extra effort (including a call
2553  * to abort()) to ensure that a debugger-catchable exception is thrown
2554  * before the program terminates.
2555  *
2556  * See your C library manual for more details about abort().
2557  *
2558  * Since: 2.50
2559  */
2560 void
2561 g_abort (void)
2562 {
2563   /* One call to break the debugger */
2564   DebugBreak ();
2565   /* One call in case CRT does get saner about abort() behaviour */
2566   abort ();
2567   /* And one call to bind them all and terminate the program for sure */
2568   ExitProcess (127);
2569 }
2570 #endif