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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
|
/*
* Mini-daemon utility functions for CUPS.
*
* Copyright © 2020-2024 by OpenPrinting.
* Copyright 2007-2014 by Apple Inc.
* Copyright 1997-2005 by Easy Software Products.
*
* Licensed under Apache License v2.0. See the file "LICENSE" for more information.
*/
/*
* Include necessary headers...
*/
#include "util.h"
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
#ifdef __APPLE__
# include <libgen.h>
extern char **environ;
#endif /* __APPLE__ */
/*
* 'cupsdCompareNames()' - Compare two names.
*
* This function basically does a _cups_strcasecmp() of the two strings,
* but is also aware of numbers so that "a2" < "a100".
*/
int /* O - Result of comparison */
cupsdCompareNames(const char *s, /* I - First string */
const char *t) /* I - Second string */
{
int diff, /* Difference between digits */
digits; /* Number of digits */
/*
* Loop through both names, returning only when a difference is
* seen. Also, compare whole numbers rather than just characters, too!
*/
while (*s && *t)
{
if (isdigit(*s & 255) && isdigit(*t & 255))
{
/*
* Got a number; start by skipping leading 0's...
*/
while (*s == '0')
s ++;
while (*t == '0')
t ++;
/*
* Skip equal digits...
*/
while (isdigit(*s & 255) && *s == *t)
{
s ++;
t ++;
}
/*
* Bounce out if *s and *t aren't both digits...
*/
if (isdigit(*s & 255) && !isdigit(*t & 255))
return (1);
else if (!isdigit(*s & 255) && isdigit(*t & 255))
return (-1);
else if (!isdigit(*s & 255) || !isdigit(*t & 255))
continue;
if (*s < *t)
diff = -1;
else
diff = 1;
/*
* Figure out how many more digits there are...
*/
digits = 0;
s ++;
t ++;
while (isdigit(*s & 255))
{
digits ++;
s ++;
}
while (isdigit(*t & 255))
{
digits --;
t ++;
}
/*
* Return if the number or value of the digits is different...
*/
if (digits < 0)
return (-1);
else if (digits > 0)
return (1);
else
return (diff);
}
else if (tolower(*s) < tolower(*t))
return (-1);
else if (tolower(*s) > tolower(*t))
return (1);
else
{
s ++;
t ++;
}
}
/*
* Return the results of the final comparison...
*/
if (*s)
return (1);
else if (*t)
return (-1);
else
return (0);
}
/*
* 'cupsdCreateStringsArray()' - Create a CUPS array of strings.
*/
cups_array_t * /* O - CUPS array */
cupsdCreateStringsArray(const char *s) /* I - Comma-delimited strings */
{
if (s && *s)
return (_cupsArrayNewStrings(s, ','));
else
return (NULL);
}
/*
* 'cupsdExec()' - Run a program with the correct environment.
*
* On macOS, we need to update the CFProcessPath environment variable that
* is passed in the environment so the child can access its bundled resources.
*/
int /* O - exec() status */
cupsdExec(const char *command, /* I - Full path to program */
char **argv) /* I - Command-line arguments */
{
#ifdef __APPLE__
size_t i, j; /* Looping vars */
char *envp[500], /* Array of environment variables */
cfprocesspath[1024], /* CFProcessPath environment variable */
linkpath[1024]; /* Link path for symlinks... */
ssize_t linkbytes; /* Bytes for link path */
/*
* Some macOS programs are bundled and need the CFProcessPath environment
* variable defined. If the command is a symlink, resolve the link and point
* to the resolved location, otherwise, use the command path itself.
*/
if ((linkbytes = readlink(command, linkpath, sizeof(linkpath) - 1)) > 0)
{
/*
* Yes, this is a symlink to the actual program, nul-terminate and
* use it...
*/
linkpath[linkbytes] = '\0';
if (linkpath[0] == '/')
snprintf(cfprocesspath, sizeof(cfprocesspath), "CFProcessPath=%s",
linkpath);
else
snprintf(cfprocesspath, sizeof(cfprocesspath), "CFProcessPath=%s/%s",
dirname((char *)command), linkpath);
}
else
snprintf(cfprocesspath, sizeof(cfprocesspath), "CFProcessPath=%s", command);
envp[0] = cfprocesspath;
/*
* Copy the rest of the environment except for any CFProcessPath that may
* already be there...
*/
for (i = 1, j = 0;
environ[j] && i < (sizeof(envp) / sizeof(envp[0]) - 1);
j ++)
if (strncmp(environ[j], "CFProcessPath=", 14))
envp[i ++] = environ[j];
envp[i] = NULL;
/*
* Use execve() to run the program...
*/
return (execve(command, argv, envp));
#else
/*
* On other operating systems, just call execv() to use the same environment
* variables as the parent...
*/
return (execv(command, argv));
#endif /* __APPLE__ */
}
/*
* 'cupsdPipeCommand()' - Read output from a command.
*/
cups_file_t * /* O - CUPS file or NULL on error */
cupsdPipeCommand(int *pid, /* O - Process ID or 0 on error */
const char *command, /* I - Command to run */
char **argv, /* I - Arguments to pass to command */
uid_t user) /* I - User to run as or 0 for current */
{
int fd, /* Temporary file descriptor */
fds[2]; /* Pipe file descriptors */
/*
* First create the pipe...
*/
if (pipe(fds))
{
*pid = 0;
return (NULL);
}
/*
* Set the "close on exec" flag on each end of the pipe...
*/
if (fcntl(fds[0], F_SETFD, fcntl(fds[0], F_GETFD) | FD_CLOEXEC))
{
close(fds[0]);
close(fds[1]);
*pid = 0;
return (NULL);
}
if (fcntl(fds[1], F_SETFD, fcntl(fds[1], F_GETFD) | FD_CLOEXEC))
{
close(fds[0]);
close(fds[1]);
*pid = 0;
return (NULL);
}
/*
* Then run the command...
*/
if ((*pid = fork()) < 0)
{
/*
* Unable to fork!
*/
*pid = 0;
close(fds[0]);
close(fds[1]);
return (NULL);
}
else if (!*pid)
{
/*
* Child comes here...
*/
if (!getuid() && user)
setuid(user); /* Run as restricted user */
if ((fd = open("/dev/null", O_RDONLY)) > 0)
{
dup2(fd, 0); /* </dev/null */
close(fd);
}
dup2(fds[1], 1); /* >pipe */
close(fds[1]);
cupsdExec(command, argv);
exit(errno);
}
/*
* Parent comes here, open the input side of the pipe...
*/
close(fds[1]);
return (cupsFileOpenFd(fds[0], "r"));
}
/*
* 'cupsdSendIPPGroup()' - Send a group tag.
*/
void
cupsdSendIPPGroup(ipp_tag_t group_tag) /* I - Group tag */
{
/*
* Send IPP group tag (1 byte)...
*/
putchar(group_tag);
}
/*
* 'cupsdSendIPPHeader()' - Send the IPP response header.
*/
void
cupsdSendIPPHeader(
ipp_status_t status_code, /* I - Status code */
int request_id) /* I - Request ID */
{
/*
* Send IPP/1.1 response header: version number (2 bytes), status code
* (2 bytes), and request ID (4 bytes)...
*
* TODO: Add version number (IPP/2.x and IPP/1.0) support.
*/
putchar(1);
putchar(1);
putchar(status_code >> 8);
putchar(status_code);
putchar(request_id >> 24);
putchar(request_id >> 16);
putchar(request_id >> 8);
putchar(request_id);
}
/*
* 'cupsdSendIPPInteger()' - Send an integer attribute.
*/
void
cupsdSendIPPInteger(
ipp_tag_t value_tag, /* I - Value tag */
const char *name, /* I - Attribute name */
int value) /* I - Attribute value */
{
size_t len; /* Length of attribute name */
/*
* Send IPP integer value: value tag (1 byte), name length (2 bytes),
* name string (without nul), value length (2 bytes), and value (4 bytes)...
*/
putchar(value_tag);
len = strlen(name);
putchar((int)(len >> 8));
putchar((int)len);
fputs(name, stdout);
putchar(0);
putchar(4);
putchar(value >> 24);
putchar(value >> 16);
putchar(value >> 8);
putchar(value);
}
/*
* 'cupsdSendIPPString()' - Send a string attribute.
*/
void
cupsdSendIPPString(
ipp_tag_t value_tag, /* I - Value tag */
const char *name, /* I - Attribute name */
const char *value) /* I - Attribute value */
{
size_t len; /* Length of attribute name */
/*
* Send IPP string value: value tag (1 byte), name length (2 bytes),
* name string (without nul), value length (2 bytes), and value string
* (without nul)...
*/
putchar(value_tag);
len = strlen(name);
putchar((int)(len >> 8));
putchar((int)len);
fputs(name, stdout);
len = strlen(value);
putchar((int)(len >> 8));
putchar((int)len);
fputs(value, stdout);
}
/*
* 'cupsdSendIPPTrailer()' - Send the end-of-message tag.
*/
void
cupsdSendIPPTrailer(void)
{
putchar(IPP_TAG_END);
fflush(stdout);
}
|