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
|
/*
* beh ("Backend Error Handler") wrapper backend to extend the possibilities
* of handling errors of backends.
*
* Copyright 2015 by Till Kamppeter
*
* This is based on dnssd.c of CUPS
* dnssd.c copyright notice is follows:
*
* Copyright 2008-2015 by Apple Inc.
*
* These coded instructions, statements, and computer programs are the
* property of Apple Inc. and are protected by Federal copyright
* law. Distribution and use rights are outlined in the file "COPYING"
* which should have been included with this file.
*/
/*
* Include necessary headers.
*/
#include "backend-private.h"
#include <cups/array.h>
#include <ctype.h>
#include <sys/wait.h>
/*
* Local globals...
*/
static volatile int job_canceled = 0; /* Set to 1 on SIGTERM */
/*
* Local functions...
*/
static int call_backend(char *uri, int argc, char **argv,
char *tempfile);
static void sigterm_handler(int sig);
/*
* 'main()' - Browse for printers.
*/
int /* O - Exit status */
main(int argc, /* I - Number of command-line args */
char *argv[]) { /* I - Command-line arguments */
char *uri, *ptr, *filename;
char tmpfilename[1024], buf[8192];
int dd, att, delay, retval;
#if defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
struct sigaction action; /* Actions for POSIX signals */
#endif /* HAVE_SIGACTION && !HAVE_SIGSET */
/*
* Don't buffer stderr, and catch SIGTERM...
*/
setbuf(stderr, NULL);
#ifdef HAVE_SIGSET /* Use System V signals over POSIX to avoid bugs */
sigset(SIGTERM, sigterm_handler);
#elif defined(HAVE_SIGACTION)
memset(&action, 0, sizeof(action));
sigemptyset(&action.sa_mask);
action.sa_handler = sigterm_handler;
sigaction(SIGTERM, &action, NULL);
#else
signal(SIGTERM, sigterm_handler);
#endif /* HAVE_SIGSET */
/*
* Check command-line...
*/
if (argc == 1) {
if ((ptr = strrchr(argv[0], '/')) != NULL)
ptr ++;
else
ptr = argv[0];
printf("network %s \"Unknown\" \"Backend Error Handler\"\n",
ptr);
return (CUPS_BACKEND_OK);
} else if (argc < 6) {
fprintf(stderr,
"Usage: %s job-id user title copies options [file]\n",
argv[0]);
return (CUPS_BACKEND_FAILED);
}
/*
* Read out the parameters
*/
uri = getenv("DEVICE_URI");
if (!uri) {
fprintf(stderr,
"ERROR: No device URI supplied!");
return (CUPS_BACKEND_FAILED);
}
ptr = strstr(uri, ":/");
if (!ptr) goto bad_uri;
ptr += 2;
if (*ptr == '0')
dd = 0;
else if (*ptr == '1')
dd = 1;
else
goto bad_uri;
ptr ++;
if (*ptr != '/') goto bad_uri;
ptr ++;
att = 0;
while (isdigit(*ptr)) {
att = att * 10 + (int)(*ptr) - 48;
ptr ++;
}
if (*ptr != '/') goto bad_uri;
ptr ++;
delay = 0;
while (isdigit(*ptr)) {
delay = delay * 10 + (int)(*ptr) - 48;
ptr ++;
}
if (*ptr != '/') goto bad_uri;
ptr ++;
fprintf(stderr,
"DEBUG: beh: Don't disable: %d; Attempts: %d; Delay: %d; Destination URI: %s\n",
dd, att, delay, ptr);
/*
* If reading from stdin, write everything into a temporary file
*/
if (argc == 6) {
char *tmpdir;
int fd;
FILE *tmpfile;
size_t bytes;
tmpdir = getenv("TMPDIR");
if (!tmpdir)
tmpdir = "/tmp";
snprintf(tmpfilename, sizeof(tmpfilename), "%s/beh-XXXXXX", tmpdir);
fd = mkstemp(tmpfilename);
if (fd < 0) {
fprintf(stderr,
"ERROR: beh: Could not create temporary file: %s\n",
strerror(errno));
return (CUPS_BACKEND_FAILED);
}
tmpfile = fdopen(fd, "r+");
while ((bytes = fread(buf, 1, sizeof(buf), stdin)))
fwrite(buf, 1, bytes, tmpfile);
fclose(tmpfile);
filename = tmpfilename;
} else {
tmpfilename[0] = '\0';
filename = argv[6];
}
/*
* Do it!
*/
while ((retval = call_backend(ptr, argc, argv, filename)) !=
CUPS_BACKEND_OK &&
!job_canceled) {
if (att > 0) {
att --;
if (att == 0)
break;
}
if (delay > 0)
sleep (delay);
}
if (strlen(tmpfilename) > 0)
unlink(tmpfilename);
/*
* Return the exit value of the backend only if requested
*/
if (!dd)
return (retval);
else
return (CUPS_BACKEND_OK);
/*
* Error handling
*/
bad_uri:
fprintf(stderr,
"ERROR: URI must be \"beh:/<dd>/<att>/<delay>/<original uri>\"!\n");
return (CUPS_BACKEND_FAILED);
}
/*
* 'call_backend()' - Execute the command line of the destination backend
*/
static int
call_backend(char *uri, /* I - URI of final destination */
int argc, /* I - Number of command line
arguments */
char **argv, /* I - Command-line arguments */
char *filename) { /* I - File name of input data */
const char *cups_serverbin; /* Location of programs */
char *backend_argv[8]; /* Arguments for backend */
char scheme[1024], /* Scheme from URI */
*ptr, /* Pointer into scheme */
backend_path[2048]; /* Backend path */
int pid = 0, /* Process ID of backend */
wait_pid, /* Process ID from wait() */
wait_status, /* Status from child */
retval = 0;
int bytes;
/*
* Build the backend command line...
*/
scheme[0] = '\0';
strncat(scheme, uri, sizeof(scheme) - 1);
if ((ptr = strchr(scheme, ':')) != NULL)
*ptr = '\0';
else {
fprintf(stderr,
"ERROR: beh: Invalid URI, no colon (':') to mark end of scheme part.\n");
exit (CUPS_BACKEND_FAILED);
}
if (strchr(scheme, '/')) {
fprintf(stderr,
"ERROR: beh: Invalid URI, scheme contains a slash ('/').\n");
exit (CUPS_BACKEND_FAILED);
}
if (!strcmp(scheme, ".") || !strcmp(scheme, "..")) {
fprintf(stderr,
"ERROR: beh: Invalid URI, scheme (\"%s\") is a directory.\n",
scheme);
exit (CUPS_BACKEND_FAILED);
}
if ((cups_serverbin = getenv("CUPS_SERVERBIN")) == NULL)
cups_serverbin = CUPS_SERVERBIN;
if (!strncasecmp(uri, "file:", 5) || uri[0] == '/') {
fprintf(stderr,
"ERROR: beh: Direct output into a file not supported.\n");
exit (CUPS_BACKEND_FAILED);
}
backend_argv[0] = uri;
backend_argv[1] = argv[1];
backend_argv[2] = argv[2];
backend_argv[3] = argv[3];
/* Apply number of copies only if beh was called with a file name
and not with the print data in stdin, as backends should handle
copies only if they are called with a file name */
backend_argv[4] = (argc == 6 ? "1" : argv[4]);
backend_argv[5] = argv[5];
backend_argv[6] = filename;
backend_argv[7] = NULL;
bytes = snprintf(backend_path, sizeof(backend_path),
"%s/backend/%s", cups_serverbin, scheme);
if (bytes < 0 || bytes >= sizeof(backend_path))
{
fprintf(stderr,
"ERROR: beh: Invalid scheme (\"%s\"), could not determing backend path.\n",
scheme);
return (CUPS_BACKEND_FAILED);
}
/*
* Overwrite the device URI and run the actual backend...
*/
setenv("DEVICE_URI", uri, 1);
fprintf(stderr,
"DEBUG: beh: Executing backend command line \"%s '%s' '%s' '%s' '%s' '%s' %s\"...\n",
backend_path, backend_argv[1], backend_argv[2], backend_argv[3],
backend_argv[4], backend_argv[5], backend_argv[6]);
fprintf(stderr,
"DEBUG: beh: Using device URI: %s\n",
uri);
if ((pid = fork()) == 0) {
/*
* Child comes here...
*/
/* Run the backend */
execv(backend_path, backend_argv);
fprintf(stderr, "ERROR: Unable to execute backend command line: %s\n",
strerror(errno));
exit(1);
} else if (pid < 0) {
/*
* Unable to fork!
*/
return (CUPS_BACKEND_FAILED);
}
while ((wait_pid = wait(&wait_status)) < 0 && errno == EINTR);
if (wait_pid >= 0 && wait_status) {
if (WIFEXITED(wait_status))
retval = WEXITSTATUS(wait_status);
else if (WTERMSIG(wait_status) != SIGTERM)
retval = WTERMSIG(wait_status);
else
retval = 0;
}
return (retval);
}
/*
* 'sigterm_handler()' - Handle termination signals.
*/
static void
sigterm_handler(int sig) { /* I - Signal number (unused) */
(void)sig;
const char * const msg = "DEBUG: beh: Job canceled.\n";
/* The if() is to eliminate the return value and silence the warning
about an unused return value. */
if (write(2, msg, strlen(msg)));
if (job_canceled)
_exit(CUPS_BACKEND_OK);
else
job_canceled = 1;
}
|