]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/globals.c
Sync up with CUPS 1.6svn-r10269 (changes from Zin TOT merged into cups.org TOT)
[thirdparty/cups.git] / cups / globals.c
1 /*
2 * "$Id: globals.c 7870 2008-08-27 18:14:10Z mike $"
3 *
4 * Global variable access routines for CUPS.
5 *
6 * Copyright 2007-2012 by Apple Inc.
7 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
8 *
9 * These coded instructions, statements, and computer programs are the
10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
14 *
15 * This file is subject to the Apple OS-Developed Software exception.
16 *
17 * Contents:
18 *
19 * _cupsGlobalLock() - Lock the global mutex.
20 * _cupsGlobals() - Return a pointer to thread local storage
21 * _cupsGlobalUnlock() - Unlock the global mutex.
22 * DllMain() - Main entry for library.
23 * cups_fix_path() - Fix a file path to use forward slashes consistently.
24 * cups_globals_alloc() - Allocate and initialize global data.
25 * cups_globals_free() - Free global data.
26 * cups_globals_init() - Initialize environment variables.
27 */
28
29 /*
30 * Include necessary headers...
31 */
32
33 #include "cups-private.h"
34
35
36 /*
37 * Local globals...
38 */
39
40
41 static _cups_threadkey_t cups_globals_key = _CUPS_THREADKEY_INITIALIZER;
42 /* Thread local storage key */
43 #ifdef HAVE_PTHREAD_H
44 static pthread_once_t cups_globals_key_once = PTHREAD_ONCE_INIT;
45 /* One-time initialization object */
46 #endif /* HAVE_PTHREAD_H */
47 static _cups_mutex_t cups_global_mutex = _CUPS_MUTEX_INITIALIZER;
48 /* Global critical section */
49
50
51 /*
52 * Local functions...
53 */
54
55 #ifdef WIN32
56 static void cups_fix_path(char *path);
57 #endif /* WIN32 */
58 static _cups_globals_t *cups_globals_alloc(void);
59 static void cups_globals_free(_cups_globals_t *g);
60 #ifdef HAVE_PTHREAD_H
61 static void cups_globals_init(void);
62 #endif /* HAVE_PTHREAD_H */
63
64
65 /*
66 * '_cupsGlobalLock()' - Lock the global mutex.
67 */
68
69 void
70 _cupsGlobalLock(void)
71 {
72 #ifdef HAVE_PTHREAD_H
73 pthread_mutex_lock(&cups_global_mutex);
74 #elif defined(WIN32)
75 EnterCriticalSection(&cups_global_mutex.m_criticalSection);
76 #endif /* HAVE_PTHREAD_H */
77 }
78
79
80 /*
81 * '_cupsGlobals()' - Return a pointer to thread local storage
82 */
83
84 _cups_globals_t * /* O - Pointer to global data */
85 _cupsGlobals(void)
86 {
87 _cups_globals_t *cg; /* Pointer to global data */
88
89
90 #ifdef HAVE_PTHREAD_H
91 /*
92 * Initialize the global data exactly once...
93 */
94
95 pthread_once(&cups_globals_key_once, cups_globals_init);
96 #endif /* HAVE_PTHREAD_H */
97
98 /*
99 * See if we have allocated the data yet...
100 */
101
102 if ((cg = (_cups_globals_t *)_cupsThreadGetData(cups_globals_key)) == NULL)
103 {
104 /*
105 * No, allocate memory as set the pointer for the key...
106 */
107
108 if ((cg = cups_globals_alloc()) != NULL)
109 _cupsThreadSetData(cups_globals_key, cg);
110 }
111
112 /*
113 * Return the pointer to the data...
114 */
115
116 return (cg);
117 }
118
119
120 /*
121 * '_cupsGlobalUnlock()' - Unlock the global mutex.
122 */
123
124 void
125 _cupsGlobalUnlock(void)
126 {
127 #ifdef HAVE_PTHREAD_H
128 pthread_mutex_unlock(&cups_global_mutex);
129 #elif defined(WIN32)
130 LeaveCriticalSection(&cups_global_mutex.m_criticalSection);
131 #endif /* HAVE_PTHREAD_H */
132 }
133
134
135 #ifdef WIN32
136 /*
137 * 'DllMain()' - Main entry for library.
138 */
139
140 BOOL WINAPI /* O - Success/failure */
141 DllMain(HINSTANCE hinst, /* I - DLL module handle */
142 DWORD reason, /* I - Reason */
143 LPVOID reserved) /* I - Unused */
144 {
145 _cups_globals_t *cg; /* Global data */
146
147
148 (void)hinst;
149 (void)reserved;
150
151 switch (reason)
152 {
153 case DLL_PROCESS_ATTACH : /* Called on library initialization */
154 InitializeCriticalSection(&cups_global_mutex.m_criticalSection);
155
156 if ((cups_globals_key = TlsAlloc()) == TLS_OUT_OF_INDEXES)
157 return (FALSE);
158 break;
159
160 case DLL_THREAD_DETACH : /* Called when a thread terminates */
161 if ((cg = (_cups_globals_t *)TlsGetValue(cups_globals_key)) != NULL)
162 cups_globals_free(cg);
163 break;
164
165 case DLL_PROCESS_DETACH : /* Called when library is unloaded */
166 if ((cg = (_cups_globals_t *)TlsGetValue(cups_globals_key)) != NULL)
167 cups_globals_free(cg);
168
169 TlsFree(cups_globals_key);
170 DeleteCriticalSection(&cups_global_mutex.m_criticalSection);
171 break;
172
173 default:
174 break;
175 }
176
177 return (TRUE);
178 }
179 #endif /* WIN32 */
180
181
182 /*
183 * 'cups_globals_alloc()' - Allocate and initialize global data.
184 */
185
186 static _cups_globals_t * /* O - Pointer to global data */
187 cups_globals_alloc(void)
188 {
189 _cups_globals_t *cg = malloc(sizeof(_cups_globals_t));
190 /* Pointer to global data */
191 #ifdef WIN32
192 HKEY key; /* Registry key */
193 DWORD size; /* Size of string */
194 static char installdir[1024] = "", /* Install directory */
195 confdir[1024] = "", /* Server root directory */
196 localedir[1024] = ""; /* Locale directory */
197 #endif /* WIN32 */
198
199
200 if (!cg)
201 return (NULL);
202
203 /*
204 * Clear the global storage and set the default encryption and password
205 * callback values...
206 */
207
208 memset(cg, 0, sizeof(_cups_globals_t));
209 cg->encryption = (http_encryption_t)-1;
210 cg->password_cb = (cups_password_cb2_t)_cupsGetPassword;
211 cg->any_root = 1;
212 cg->expired_certs = 1;
213 cg->expired_root = 1;
214
215 /*
216 * Then set directories as appropriate...
217 */
218
219 #ifdef WIN32
220 if (!installdir[0])
221 {
222 /*
223 * Open the registry...
224 */
225
226 strcpy(installdir, "C:/Program Files/cups.org");
227
228 if (!RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SOFTWARE\\cups.org", 0, KEY_READ,
229 &key))
230 {
231 /*
232 * Grab the installation directory...
233 */
234
235 char *ptr; /* Pointer into installdir */
236
237 size = sizeof(installdir);
238 RegQueryValueEx(key, "installdir", NULL, NULL, installdir, &size);
239 RegCloseKey(key);
240
241 for (ptr = installdir; *ptr;)
242 {
243 if (*ptr == '\\')
244 {
245 if (ptr[1])
246 *ptr++ = '/';
247 else
248 *ptr = '\0'; /* Strip trailing \ */
249 }
250 else if (*ptr == '/' && !ptr[1])
251 *ptr = '\0'; /* Strip trailing / */
252 else
253 ptr ++;
254 }
255 }
256
257 snprintf(confdir, sizeof(confdir), "%s/conf", installdir);
258 snprintf(localedir, sizeof(localedir), "%s/locale", installdir);
259 }
260
261 if ((cg->cups_datadir = getenv("CUPS_DATADIR")) == NULL)
262 cg->cups_datadir = installdir;
263
264 if ((cg->cups_serverbin = getenv("CUPS_SERVERBIN")) == NULL)
265 cg->cups_serverbin = installdir;
266
267 if ((cg->cups_serverroot = getenv("CUPS_SERVERROOT")) == NULL)
268 cg->cups_serverroot = confdir;
269
270 if ((cg->cups_statedir = getenv("CUPS_STATEDIR")) == NULL)
271 cg->cups_statedir = confdir;
272
273 if ((cg->localedir = getenv("LOCALEDIR")) == NULL)
274 cg->localedir = localedir;
275
276 #else
277 # ifdef HAVE_GETEUID
278 if ((geteuid() != getuid() && getuid()) || getegid() != getgid())
279 # else
280 if (!getuid())
281 # endif /* HAVE_GETEUID */
282 {
283 /*
284 * When running setuid/setgid, don't allow environment variables to override
285 * the directories...
286 */
287
288 cg->cups_datadir = CUPS_DATADIR;
289 cg->cups_serverbin = CUPS_SERVERBIN;
290 cg->cups_serverroot = CUPS_SERVERROOT;
291 cg->cups_statedir = CUPS_STATEDIR;
292 cg->localedir = CUPS_LOCALEDIR;
293 }
294 else
295 {
296 /*
297 * Allow directories to be overridden by environment variables.
298 */
299
300 if ((cg->cups_datadir = getenv("CUPS_DATADIR")) == NULL)
301 cg->cups_datadir = CUPS_DATADIR;
302
303 if ((cg->cups_serverbin = getenv("CUPS_SERVERBIN")) == NULL)
304 cg->cups_serverbin = CUPS_SERVERBIN;
305
306 if ((cg->cups_serverroot = getenv("CUPS_SERVERROOT")) == NULL)
307 cg->cups_serverroot = CUPS_SERVERROOT;
308
309 if ((cg->cups_statedir = getenv("CUPS_STATEDIR")) == NULL)
310 cg->cups_statedir = CUPS_STATEDIR;
311
312 if ((cg->localedir = getenv("LOCALEDIR")) == NULL)
313 cg->localedir = CUPS_LOCALEDIR;
314 }
315 #endif /* WIN32 */
316
317 return (cg);
318 }
319
320
321 /*
322 * 'cups_globals_free()' - Free global data.
323 */
324
325 static void
326 cups_globals_free(_cups_globals_t *cg) /* I - Pointer to global data */
327 {
328 _cups_buffer_t *buffer, /* Current read/write buffer */
329 *next; /* Next buffer */
330
331
332 if (cg->last_status_message)
333 _cupsStrFree(cg->last_status_message);
334
335 for (buffer = cg->cups_buffers; buffer; buffer = next)
336 {
337 next = buffer->next;
338 free(buffer);
339 }
340
341 cupsArrayDelete(cg->leg_size_lut);
342 cupsArrayDelete(cg->ppd_size_lut);
343 cupsArrayDelete(cg->pwg_size_lut);
344
345 httpClose(cg->http);
346
347 _httpFreeCredentials(cg->tls_credentials);
348
349 cupsFileClose(cg->stdio_files[0]);
350 cupsFileClose(cg->stdio_files[1]);
351 cupsFileClose(cg->stdio_files[2]);
352
353 cupsFreeOptions(cg->cupsd_num_settings, cg->cupsd_settings);
354
355 free(cg);
356 }
357
358
359 #ifdef HAVE_PTHREAD_H
360 /*
361 * 'cups_globals_init()' - Initialize environment variables.
362 */
363
364 static void
365 cups_globals_init(void)
366 {
367 /*
368 * Register the global data for this thread...
369 */
370
371 pthread_key_create(&cups_globals_key, (void (*)(void *))cups_globals_free);
372 }
373 #endif /* HAVE_PTHREAD_H */
374
375
376 /*
377 * End of "$Id: globals.c 7870 2008-08-27 18:14:10Z mike $".
378 */