Added check for pwd.h.
[wine/multimedia.git] / library / config.c
blob80a68942dae417e5b02ebcbe0c96984d69188fba
1 /*
2 * Configuration parameters shared between Wine server and clients
4 * Copyright 2002 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <errno.h>
25 #include <stdio.h>
26 #include <stdarg.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <sys/stat.h>
30 #include <unistd.h>
32 #ifdef HAVE_PWD_H
33 #include <pwd.h>
34 #endif
36 static const char * const server_config_dir = "/.wine"; /* config dir relative to $HOME */
37 static const char * const server_root_prefix = "/tmp/.wine-"; /* prefix for server root dir */
38 static const char * const server_dir_prefix = "/server-"; /* prefix for server dir */
40 static char *config_dir;
41 static char *server_dir;
43 #ifdef __GNUC__
44 static void fatal_error( const char *err, ... ) __attribute__((noreturn,format(printf,1,2)));
45 static void fatal_perror( const char *err, ... ) __attribute__((noreturn,format(printf,1,2)));
46 #endif
48 /* die on a fatal error */
49 static void fatal_error( const char *err, ... )
51 va_list args;
53 va_start( args, err );
54 fprintf( stderr, "wine: " );
55 vfprintf( stderr, err, args );
56 va_end( args );
57 exit(1);
60 /* die on a fatal error */
61 static void fatal_perror( const char *err, ... )
63 va_list args;
65 va_start( args, err );
66 fprintf( stderr, "wine: " );
67 vfprintf( stderr, err, args );
68 perror( " " );
69 va_end( args );
70 exit(1);
73 /* malloc wrapper */
74 static void *xmalloc( size_t size )
76 void *res;
78 if (!size) size = 1;
79 if (!(res = malloc( size ))) fatal_error( "virtual memory exhausted\n");
80 return res;
83 /* remove all trailing slashes from a path name */
84 inline static void remove_trailing_slashes( char *path )
86 int len = strlen( path );
87 while (len > 1 && path[len-1] == '/') path[--len] = 0;
90 /* initialize all the paths values */
91 static void init_paths(void)
93 struct stat st;
94 char uid_str[32], *p;
96 const char *home = getenv( "HOME" );
97 const char *user = NULL;
98 const char *prefix = getenv( "WINEPREFIX" );
99 struct passwd *pwd = getpwuid( getuid() );
101 if (pwd)
103 user = pwd->pw_name;
104 if (!home) home = pwd->pw_dir;
106 if (!user)
108 sprintf( uid_str, "%d", getuid() );
109 user = uid_str;
112 /* build config_dir */
114 if (prefix)
116 if (!(config_dir = strdup( prefix ))) fatal_error( "virtual memory exhausted\n");
117 remove_trailing_slashes( config_dir );
118 if (config_dir[0] != '/')
119 fatal_error( "invalid directory %s in WINEPREFIX: not an absolute path\n", prefix );
120 if (stat( config_dir, &st ) == -1)
121 fatal_perror( "cannot open %s as specified in WINEPREFIX", config_dir );
123 else
125 if (!home) fatal_error( "could not determine your home directory\n" );
126 if (home[0] != '/') fatal_error( "your home directory %s is not an absolute path\n", home );
127 config_dir = xmalloc( strlen(home) + strlen(server_config_dir) + 1 );
128 strcpy( config_dir, home );
129 remove_trailing_slashes( config_dir );
130 strcat( config_dir, server_config_dir );
131 if (stat( config_dir, &st ) == -1)
132 fatal_perror( "cannot open %s", config_dir );
134 if (!S_ISDIR(st.st_mode)) fatal_error( "%s is not a directory\n", config_dir );
136 /* build server_dir */
138 server_dir = xmalloc( strlen(server_root_prefix) + strlen(user) + strlen( server_dir_prefix ) +
139 2*sizeof(st.st_dev) + 2*sizeof(st.st_ino) + 2 );
140 strcpy( server_dir, server_root_prefix );
141 p = server_dir + strlen(server_dir);
142 strcpy( p, user );
143 while (*p)
145 if (*p == '/') *p = '!';
146 p++;
148 strcpy( p, server_dir_prefix );
150 if (sizeof(st.st_dev) > sizeof(unsigned long))
151 sprintf( server_dir + strlen(server_dir), "%llx-", (unsigned long long)st.st_dev );
152 else
153 sprintf( server_dir + strlen(server_dir), "%lx-", (unsigned long)st.st_dev );
155 if (sizeof(st.st_ino) > sizeof(unsigned long))
156 sprintf( server_dir + strlen(server_dir), "%llx", (unsigned long long)st.st_ino );
157 else
158 sprintf( server_dir + strlen(server_dir), "%lx", (unsigned long)st.st_ino );
161 /* return the configuration directory ($WINEPREFIX or $HOME/.wine) */
162 const char *wine_get_config_dir(void)
164 if (!config_dir) init_paths();
165 return config_dir;
168 /* return the full name of the server directory (the one containing the socket) */
169 const char *wine_get_server_dir(void)
171 if (!server_dir) init_paths();
172 return server_dir;