1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
|
/*
* Environment management routines for the CUPS scheduler.
*
* Copyright © 2020-2024 by OpenPrinting.
* Copyright © 2007-2016 by Apple Inc.
* Copyright © 1997-2006 by Easy Software Products, all rights reserved.
*
* Licensed under Apache License v2.0. See the file "LICENSE" for more
* information.
*/
/*
* Include necessary headers...
*/
#include "cupsd.h"
/*
* Local globals...
*/
static int num_common_env = 0; /* Number of common env vars */
static char *common_env[MAX_ENV]; /* Common env vars */
/*
* Local functions...
*/
static void clear_env(void);
static int find_env(const char *name);
/*
* 'cupsdInitEnv()' - Initialize the current environment with standard variables.
*/
void
cupsdInitEnv(void)
{
/*
* Clear existing environment variables...
*/
clear_env();
#if defined(__APPLE__)
/*
* Add special voodoo magic for macOS - this allows macOS
* programs to access their bundle resources properly...
*
* This string is replaced in cupsdStartProcess()...
*/
cupsdSetString(common_env, "<CFProcessPath>");
num_common_env = 1;
#endif /* __APPLE__ */
}
/*
* 'cupsdLoadEnv()' - Copy common environment variables into an array.
*/
int /* O - Number of environment variables */
cupsdLoadEnv(char *envp[], /* I - Environment array */
int envmax) /* I - Maximum number of elements */
{
int i; /* Looping var */
/*
* Leave room for a NULL pointer at the end...
*/
envmax --;
/*
* Copy pointers to the environment...
*/
for (i = 0; i < num_common_env && i < envmax; i ++)
envp[i] = common_env[i];
/*
* NULL terminate the environment array and return the number of
* elements we added...
*/
envp[i] = NULL;
return (i);
}
/*
* 'cupsdSetEnv()' - Set a common environment variable.
*/
void
cupsdSetEnv(const char *name, /* I - Name of variable */
const char *value) /* I - Value of variable */
{
int i; /* Index into environment array */
/*
* If "value" is NULL, try getting value from current environment...
*/
if (!value)
value = getenv(name);
if (!value)
return;
/*
* Do not allow dynamic linker variables when running as root outside a Snap...
*/
#if !CUPS_SNAP
if (!RunUser && (!strncmp(name, "DYLD_", 5) || !strncmp(name, "LD_", 3)))
return;
#endif /* !CUPS_SNAP */
/*
* See if this variable has already been defined...
*/
if ((i = find_env(name)) < 0)
{
/*
* Check for room...
*/
if (num_common_env >= (int)(sizeof(common_env) / sizeof(common_env[0])))
{
cupsdLogMessage(CUPSD_LOG_ERROR,
"cupsdSetEnv: Too many environment variables set!");
return;
}
i = num_common_env;
num_common_env ++;
}
/*
* Set the new environment variable...
*/
cupsdSetStringf(common_env + i, "%s=%s", name, value);
cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdSetEnv: %s", common_env[i]);
}
/*
* 'cupsdSetEnvf()' - Set a formatted common environment variable.
*/
void
cupsdSetEnvf(const char *name, /* I - Name of variable */
const char *value, /* I - Printf-style value of variable */
...) /* I - Additional args as needed */
{
char v[4096]; /* Formatting string value */
va_list ap; /* Argument pointer */
/*
* Format the value string...
*/
va_start(ap, value);
vsnprintf(v, sizeof(v), value, ap);
va_end(ap);
/*
* Set the env variable...
*/
cupsdSetEnv(name, v);
}
/*
* 'cupsdUpdateEnv()' - Update the environment for the configured directories.
*/
void
cupsdUpdateEnv(void)
{
/*
* Set common variables...
*/
#define set_if_undefined(name,value) if (find_env(name) < 0) cupsdSetEnv(name,value)
set_if_undefined("CUPS_CACHEDIR", CacheDir);
set_if_undefined("CUPS_DATADIR", DataDir);
set_if_undefined("CUPS_DOCROOT", DocumentRoot);
set_if_undefined("CUPS_REQUESTROOT", RequestRoot);
set_if_undefined("CUPS_SERVERBIN", ServerBin);
set_if_undefined("CUPS_SERVERROOT", ServerRoot);
set_if_undefined("CUPS_STATEDIR", StateDir);
set_if_undefined("DYLD_INSERT_LIBRARIES", NULL);
set_if_undefined("DYLD_LIBRARY_PATH", NULL);
set_if_undefined("HOME", TempDir);
set_if_undefined("LD_ASSUME_KERNEL", NULL);
set_if_undefined("LD_LIBRARY_PATH", NULL);
set_if_undefined("LD_PRELOAD", NULL);
set_if_undefined("NLSPATH", NULL);
if (find_env("PATH") < 0)
{
#if CUPS_SNAP
const char *path; // PATH environment variable
if ((path = getenv("PATH")) != NULL)
cupsdSetEnvf("PATH", "%s/filter:%s", ServerBin, path);
else
#endif /* CUPS_SNAP */
cupsdSetEnvf("PATH", "%s/filter:" CUPS_BINDIR ":" CUPS_SBINDIR ":/bin:/usr/bin", ServerBin);
}
set_if_undefined("SERVER_ADMIN", ServerAdmin);
set_if_undefined("SHLIB_PATH", NULL);
set_if_undefined("SOFTWARE", CUPS_MINIMAL);
set_if_undefined("TMPDIR", TempDir);
set_if_undefined("TZ", NULL);
set_if_undefined("USER", "root");
set_if_undefined("VG_ARGS", NULL);
cupsdSetEnvf("CUPS_MAX_MESSAGE", "%d", CUPSD_SB_BUFFER_SIZE - 1);
}
/*
* 'clear_env()' - Clear common environment variables.
*/
static void
clear_env(void)
{
int i; /* Looping var */
for (i = 0; i < num_common_env; i ++)
cupsdClearString(common_env + i);
num_common_env = 0;
}
/*
* 'find_env()' - Find a common environment variable.
*/
static int /* O - Index or -1 if not found */
find_env(const char *name) /* I - Variable name */
{
int i; /* Looping var */
size_t namelen; /* Length of name */
for (i = 0, namelen = strlen(name); i < num_common_env; i ++)
if (!strncmp(common_env[i], name, namelen) && common_env[i][namelen] == '=')
return (i);
return (-1);
}
|