]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/log.c
Fix build errors on Linux for new journald logging.
[thirdparty/cups.git] / scheduler / log.c
CommitLineData
ef416fc2 1/*
f2d18633 2 * "$Id$"
ef416fc2 3 *
996acce8 4 * Log file routines for the CUPS scheduler.
ef416fc2 5 *
0dc4a6bf 6 * Copyright 2007-2015 by Apple Inc.
996acce8 7 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
ef416fc2 8 *
996acce8
MS
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/".
ef416fc2 14 */
15
16/*
17 * Include necessary headers...
18 */
19
20#include "cupsd.h"
21#include <stdarg.h>
0dc4a6bf
MS
22#ifdef HAVE_ASL_H
23# include <asl.h>
24#elif defined(HAVE_SYSTEMD_SD_JOURNAL_H)
25# define SD_JOURNAL_SUPPRESS_LOCATION
26# include <systemd/sd-journal.h>
27#endif /* HAVE_ASL_H */
b423cd4c 28#include <syslog.h>
ef416fc2 29
30
0dc4a6bf
MS
31/*
32 * Constants for log keys from PWG 5110.3 (PWG Common Log Format)...
33 */
34
35#define PWG_DeviceUUID "DUU"
36#define PWG_Event "E"
37#define PWG_LogNaturalLanguage "NL"
38#define PWG_Status "S"
39#define PWG_ServiceURI "URI"
40#define PWG_UserHost "UH"
41#define PWG_UserName "UN"
42#define PWG_UserURI "UU"
43#define PWG_ServiceIsAcceptingJobs "IAJ"
44#define PWG_ServiceState "ST"
45#define PWG_ServiceStateReasons "SR"
46#define PWG_ServiceUUID "SUU"
47#define PWG_JobID "JID"
48#define PWG_JobUUID "JUU"
49#define PWG_JobImagesCompleted "JIM"
50#define PWG_JobImpressionsCompleted "JIC"
51#define PWG_JobDestinationURI "JD"
52#define PWG_JobState "JS"
53#define PWG_JobStateReasons "JR"
54#define PWG_JobAccountingID "JA"
55#define PWG_JobAcountingUserName "JAUN"
56#define PWG_JobAccountingUserURI "JAUU"
57
58
75bd9771
MS
59/*
60 * Local globals...
61 */
62
28a463e0
MS
63static _cups_mutex_t log_mutex = _CUPS_MUTEX_INITIALIZER;
64 /* Mutex for logging */
7e86f2f6 65static size_t log_linesize = 0; /* Size of line for output file */
75bd9771
MS
66static char *log_line = NULL; /* Line for output file */
67
0dc4a6bf
MS
68#ifdef HAVE_ASL_H
69static const int log_levels[] = /* ASL levels... */
70 {
71 ASL_LEVEL_EMERG,
72 ASL_LEVEL_EMERG,
73 ASL_LEVEL_ALERT,
74 ASL_LEVEL_CRIT,
75 ASL_LEVEL_ERR,
76 ASL_LEVEL_WARNING,
77 ASL_LEVEL_NOTICE,
78 ASL_LEVEL_INFO,
79 ASL_LEVEL_DEBUG,
80 ASL_LEVEL_DEBUG
81 };
82#elif defined(HAVE_VSYSLOG) || defined(HAVE_SYSTEMD_SD_JOURNAL_H)
83static const int log_levels[] = /* SYSLOG levels... */
cb7f98ee
MS
84 {
85 0,
86 LOG_EMERG,
87 LOG_ALERT,
88 LOG_CRIT,
89 LOG_ERR,
90 LOG_WARNING,
91 LOG_NOTICE,
92 LOG_INFO,
93 LOG_DEBUG,
94 LOG_DEBUG
95 };
0dc4a6bf 96#endif /* HAVE_ASL_H */
cb7f98ee 97
75bd9771 98
ef416fc2 99/*
100 * Local functions...
101 */
102
005dd1eb 103static int format_log_line(const char *message, va_list ap);
ef416fc2 104
105
22c9029b
MS
106/*
107 * 'cupsdCheckLogFile()' - Open/rotate a log file if it needs it.
108 */
109
110int /* O - 1 if log file open */
111cupsdCheckLogFile(cups_file_t **lf, /* IO - Log file */
112 const char *logname) /* I - Log filename */
113{
114 char backname[1024], /* Backup log filename */
115 filename[1024], /* Formatted log filename */
116 *ptr; /* Pointer into filename */
117 const char *logptr; /* Pointer into log filename */
118
119
120 /*
121 * See if we have a log file to check...
122 */
123
124 if (!lf || !logname || !logname[0])
125 return (1);
126
a1797929
MS
127 /*
128 * Handle logging to stderr...
129 */
130
131 if (!strcmp(logname, "stderr"))
132 {
133 *lf = LogStderr;
134 return (1);
135 }
136
22c9029b
MS
137 /*
138 * Format the filename as needed...
139 */
140
141 if (!*lf ||
142 (strncmp(logname, "/dev/", 5) && cupsFileTell(*lf) > MaxLogSize &&
143 MaxLogSize > 0))
144 {
145 /*
146 * Handle format strings...
147 */
148
149 filename[sizeof(filename) - 1] = '\0';
150
151 if (logname[0] != '/')
152 {
153 strlcpy(filename, ServerRoot, sizeof(filename));
154 strlcat(filename, "/", sizeof(filename));
155 }
156 else
157 filename[0] = '\0';
158
159 for (logptr = logname, ptr = filename + strlen(filename);
160 *logptr && ptr < (filename + sizeof(filename) - 1);
161 logptr ++)
162 if (*logptr == '%')
163 {
164 /*
165 * Format spec...
166 */
167
168 logptr ++;
169 if (*logptr == 's')
170 {
171 /*
172 * Insert the server name...
173 */
174
7e86f2f6 175 strlcpy(ptr, ServerName, sizeof(filename) - (size_t)(ptr - filename));
22c9029b
MS
176 ptr += strlen(ptr);
177 }
178 else
179 {
180 /*
181 * Otherwise just insert the character...
182 */
183
184 *ptr++ = *logptr;
185 }
186 }
187 else
188 *ptr++ = *logptr;
189
190 *ptr = '\0';
191 }
192
193 /*
194 * See if the log file is open...
195 */
196
197 if (!*lf)
198 {
199 /*
200 * Nope, open the log file...
201 */
202
203 if ((*lf = cupsFileOpen(filename, "a")) == NULL)
204 {
205 /*
206 * If the file is in CUPS_LOGDIR then try to create a missing directory...
207 */
208
209 if (!strncmp(filename, CUPS_LOGDIR, strlen(CUPS_LOGDIR)))
210 {
211 /*
212 * Try updating the permissions of the containing log directory, using
213 * the log file permissions as a basis...
214 */
215
7e86f2f6 216 mode_t log_dir_perm = (mode_t)(0300 | LogFilePerm);
22c9029b
MS
217 /* LogFilePerm + owner write/search */
218 if (log_dir_perm & 0040)
219 log_dir_perm |= 0010; /* Add group search */
220 if (log_dir_perm & 0004)
221 log_dir_perm |= 0001; /* Add other search */
222
7e86f2f6 223 cupsdCheckPermissions(CUPS_LOGDIR, NULL, log_dir_perm, RunUser, Group, 1, -1);
22c9029b
MS
224
225 *lf = cupsFileOpen(filename, "a");
226 }
227
228 if (*lf == NULL)
229 {
0dc4a6bf
MS
230#ifdef HAVE_ASL_H
231 asl_object_t m; /* Log message */
232
233 m = asl_new(ASL_TYPE_MSG);
234 asl_set(m, ASL_KEY_FACILITY, "org.cups.cupsd");
235 asl_log(NULL, m, ASL_LEVEL_ERR, "Unable to open log file \"%s\" - %s", filename, strerror(errno));
236 asl_release(m);
237
238#elif defined(HAVE_SYSTEMD_SD_JOURNAL_H)
239 sd_journal_print(LOG_ERR, "Unable to open log file \"%s\" - %s", filename, strerror(errno));
240
241#else
242 syslog(LOG_ERR, "Unable to open log file \"%s\" - %s", filename, strerror(errno));
243#endif /* HAVE_ASL_H */
22c9029b
MS
244
245 if (FatalErrors & CUPSD_FATAL_LOG)
246 cupsdEndProcess(getpid(), 0);
247
248 return (0);
249 }
250 }
251
252 if (strncmp(filename, "/dev/", 5))
253 {
254 /*
255 * Change ownership and permissions of non-device logs...
256 */
257
258 fchown(cupsFileNumber(*lf), RunUser, Group);
259 fchmod(cupsFileNumber(*lf), LogFilePerm);
260 }
261 }
262
263 /*
264 * Do we need to rotate the log?
265 */
266
267 if (strncmp(logname, "/dev/", 5) && cupsFileTell(*lf) > MaxLogSize &&
268 MaxLogSize > 0)
269 {
270 /*
271 * Rotate log file...
272 */
273
274 cupsFileClose(*lf);
275
5a9febac 276 strlcpy(backname, filename, sizeof(backname));
22c9029b
MS
277 strlcat(backname, ".O", sizeof(backname));
278
279 unlink(backname);
280 rename(filename, backname);
281
282 if ((*lf = cupsFileOpen(filename, "a")) == NULL)
283 {
0dc4a6bf
MS
284#ifdef HAVE_ASL_H
285 asl_object_t m; /* Log message */
286
287 m = asl_new(ASL_TYPE_MSG);
288 asl_set(m, ASL_KEY_FACILITY, "org.cups.cupsd");
289 asl_log(NULL, m, ASL_LEVEL_ERR, "Unable to open log file \"%s\" - %s", filename, strerror(errno));
290 asl_release(m);
291
292#elif defined(HAVE_SYSTEMD_SD_JOURNAL_H)
293 sd_journal_print(LOG_ERR, "Unable to open log file \"%s\" - %s", filename, strerror(errno));
294
295#else
296 syslog(LOG_ERR, "Unable to open log file \"%s\" - %s", filename, strerror(errno));
297#endif /* HAVE_ASL_H */
22c9029b
MS
298
299 if (FatalErrors & CUPSD_FATAL_LOG)
300 cupsdEndProcess(getpid(), 0);
301
302 return (0);
303 }
304
305 /*
306 * Change ownership and permissions of non-device logs...
307 */
308
309 fchown(cupsFileNumber(*lf), RunUser, Group);
310 fchmod(cupsFileNumber(*lf), LogFilePerm);
311 }
312
313 return (1);
314}
315
316
ef416fc2 317/*
318 * 'cupsdGetDateTime()' - Returns a pointer to a date/time string.
319 */
320
321char * /* O - Date/time string */
dfd5680b
MS
322cupsdGetDateTime(struct timeval *t, /* I - Time value or NULL for current */
323 cupsd_time_t format) /* I - Format to use */
ef416fc2 324{
dfd5680b
MS
325 struct timeval curtime; /* Current time value */
326 struct tm *date; /* Date/time value */
327 static struct timeval last_time = { 0, 0 };
328 /* Last time we formatted */
329 static char s[1024]; /* Date/time string */
ef416fc2 330 static const char * const months[12] =/* Months */
331 {
332 "Jan",
333 "Feb",
334 "Mar",
335 "Apr",
336 "May",
337 "Jun",
338 "Jul",
339 "Aug",
340 "Sep",
341 "Oct",
342 "Nov",
343 "Dec"
344 };
345
346
839a51c8
MS
347 /*
348 * Make sure we have a valid time...
349 */
350
351 if (!t)
dfd5680b
MS
352 {
353 gettimeofday(&curtime, NULL);
354 t = &curtime;
355 }
839a51c8 356
dfd5680b
MS
357 if (t->tv_sec != last_time.tv_sec ||
358 (LogTimeFormat == CUPSD_TIME_USECS && t->tv_usec != last_time.tv_usec))
ef416fc2 359 {
dfd5680b 360 last_time = *t;
ef416fc2 361
362 /*
363 * Get the date and time from the UNIX time value, and then format it
364 * into a string. Note that we *can't* use the strftime() function since
365 * it is localized and will seriously confuse automatic programs if the
366 * month names are in the wrong language!
367 *
368 * Also, we use the "timezone" variable that contains the current timezone
369 * offset from GMT in seconds so that we are reporting local time in the
370 * log files. If you want GMT, set the TZ environment variable accordingly
371 * before starting the scheduler.
372 *
373 * (*BSD and Darwin store the timezone offset in the tm structure)
374 */
375
dfd5680b 376 date = localtime(&(t->tv_sec));
ef416fc2 377
dfd5680b
MS
378 if (format == CUPSD_TIME_STANDARD)
379 snprintf(s, sizeof(s), "[%02d/%s/%04d:%02d:%02d:%02d %+03ld%02ld]",
380 date->tm_mday, months[date->tm_mon], 1900 + date->tm_year,
381 date->tm_hour, date->tm_min, date->tm_sec,
382#ifdef HAVE_TM_GMTOFF
383 date->tm_gmtoff / 3600, (date->tm_gmtoff / 60) % 60);
384#else
385 timezone / 3600, (timezone / 60) % 60);
386#endif /* HAVE_TM_GMTOFF */
387 else
388 snprintf(s, sizeof(s), "[%02d/%s/%04d:%02d:%02d:%02d.%06d %+03ld%02ld]",
389 date->tm_mday, months[date->tm_mon], 1900 + date->tm_year,
bf3816c7 390 date->tm_hour, date->tm_min, date->tm_sec, (int)t->tv_usec,
ef416fc2 391#ifdef HAVE_TM_GMTOFF
dfd5680b 392 date->tm_gmtoff / 3600, (date->tm_gmtoff / 60) % 60);
ef416fc2 393#else
dfd5680b 394 timezone / 3600, (timezone / 60) % 60);
ef416fc2 395#endif /* HAVE_TM_GMTOFF */
396 }
397
398 return (s);
399}
400
401
22c9029b
MS
402/*
403 * 'cupsdLogFCMessage()' - Log a file checking message.
404 */
405
406void
407cupsdLogFCMessage(
408 void *context, /* I - Printer (if any) */
409 _cups_fc_result_t result, /* I - Check result */
410 const char *message) /* I - Message to log */
411{
412 cupsd_printer_t *p = (cupsd_printer_t *)context;
413 /* Printer */
414 cupsd_loglevel_t level; /* Log level */
415
416
417 if (result == _CUPS_FILE_CHECK_OK)
418 level = CUPSD_LOG_DEBUG2;
419 else
420 level = CUPSD_LOG_ERROR;
421
422 if (p)
423 {
424 cupsdLogMessage(level, "%s: %s", p->name, message);
425
426 if (result == _CUPS_FILE_CHECK_MISSING ||
427 result == _CUPS_FILE_CHECK_WRONG_TYPE)
428 {
429 strlcpy(p->state_message, message, sizeof(p->state_message));
430
431 if (cupsdSetPrinterReasons(p, "+cups-missing-filter-warning"))
432 cupsdAddEvent(CUPSD_EVENT_PRINTER_STATE, p, NULL, "%s", message);
433 }
88f9aafc
MS
434 else if (result == _CUPS_FILE_CHECK_PERMISSIONS ||
435 result == _CUPS_FILE_CHECK_RELATIVE_PATH)
22c9029b
MS
436 {
437 strlcpy(p->state_message, message, sizeof(p->state_message));
438
439 if (cupsdSetPrinterReasons(p, "+cups-insecure-filter-warning"))
440 cupsdAddEvent(CUPSD_EVENT_PRINTER_STATE, p, NULL, "%s", message);
441 }
442 }
443 else
444 cupsdLogMessage(level, "%s", message);
445}
446
447
f7deaa1a 448#ifdef HAVE_GSSAPI
449/*
450 * 'cupsdLogGSSMessage()' - Log a GSSAPI error...
451 */
452
453int /* O - 1 on success, 0 on error */
454cupsdLogGSSMessage(
455 int level, /* I - Log level */
7e86f2f6
MS
456 OM_uint32 major_status, /* I - Major GSSAPI status */
457 OM_uint32 minor_status, /* I - Minor GSSAPI status */
f7deaa1a 458 const char *message, /* I - printf-style message string */
459 ...) /* I - Additional args as needed */
460{
461 OM_uint32 err_major_status, /* Major status code for display */
462 err_minor_status; /* Minor status code for display */
463 OM_uint32 msg_ctx; /* Message context */
464 gss_buffer_desc major_status_string = GSS_C_EMPTY_BUFFER,
465 /* Major status message */
466 minor_status_string = GSS_C_EMPTY_BUFFER;
467 /* Minor status message */
468 int ret; /* Return value */
dcb445bc 469 char buffer[8192]; /* Buffer for vsnprintf */
f7deaa1a 470
471
dcb445bc
MS
472 if (strchr(message, '%'))
473 {
474 /*
475 * Format the message string...
476 */
477
478 va_list ap; /* Pointer to arguments */
479
480 va_start(ap, message);
481 vsnprintf(buffer, sizeof(buffer), message, ap);
482 va_end(ap);
483
484 message = buffer;
485 }
486
f7deaa1a 487 msg_ctx = 0;
488 err_major_status = gss_display_status(&err_minor_status,
489 major_status,
490 GSS_C_GSS_CODE,
491 GSS_C_NO_OID,
492 &msg_ctx,
493 &major_status_string);
494
495 if (!GSS_ERROR(err_major_status))
1f0275e3
MS
496 gss_display_status(&err_minor_status, minor_status, GSS_C_MECH_CODE,
497 GSS_C_NULL_OID, &msg_ctx, &minor_status_string);
f7deaa1a 498
499 ret = cupsdLogMessage(level, "%s: %s, %s", message,
500 (char *)major_status_string.value,
501 (char *)minor_status_string.value);
502 gss_release_buffer(&err_minor_status, &major_status_string);
503 gss_release_buffer(&err_minor_status, &minor_status_string);
504
505 return (ret);
506}
507#endif /* HAVE_GSSAPI */
508
509
996acce8
MS
510/*
511 * 'cupsdLogClient()' - Log a client message.
512 */
513
514int /* O - 1 on success, 0 on error */
515cupsdLogClient(cupsd_client_t *con, /* I - Client connection */
516 int level, /* I - Log level */
517 const char *message, /* I - Printf-style message string */
518 ...) /* I - Additional arguments as needed */
519{
520 va_list ap, ap2; /* Argument pointers */
521 char clientmsg[1024];/* Format string for client message */
522 int status; /* Formatting status */
523
524
525 /*
526 * See if we want to log this message...
527 */
528
529 if (TestConfigFile || !ErrorLog)
530 return (1);
531
532 if (level > LogLevel)
533 return (1);
534
535 /*
536 * Format and write the log message...
537 */
538
539 if (con)
540 snprintf(clientmsg, sizeof(clientmsg), "[Client %d] %s", con->number,
541 message);
542 else
543 strlcpy(clientmsg, message, sizeof(clientmsg));
544
545 va_start(ap, message);
546
547 do
548 {
549 va_copy(ap2, ap);
550 status = format_log_line(clientmsg, ap2);
551 va_end(ap2);
552 }
553 while (status == 0);
554
555 va_end(ap);
556
557 if (status > 0)
558 return (cupsdWriteErrorLog(level, log_line));
559 else
560 return (cupsdWriteErrorLog(CUPSD_LOG_ERROR,
561 "Unable to allocate memory for log line."));
562}
563
564
ef416fc2 565/*
75bd9771 566 * 'cupsdLogJob()' - Log a job message.
ef416fc2 567 */
568
569int /* O - 1 on success, 0 on error */
75bd9771
MS
570cupsdLogJob(cupsd_job_t *job, /* I - Job */
571 int level, /* I - Log level */
572 const char *message, /* I - Printf-style message string */
573 ...) /* I - Additional arguments as needed */
ef416fc2 574{
dcb445bc 575 va_list ap, ap2; /* Argument pointers */
005dd1eb
MS
576 char jobmsg[1024]; /* Format string for job message */
577 int status; /* Formatting status */
ef416fc2 578
579
580 /*
581 * See if we want to log this message...
582 */
583
94da7e34
MS
584 if (TestConfigFile || !ErrorLog)
585 return (1);
586
178cb736
MS
587 if ((level > LogLevel ||
588 (level == CUPSD_LOG_INFO && LogLevel < CUPSD_LOG_DEBUG)) &&
589 LogDebugHistory <= 0)
2e4ff8af 590 return (1);
2e4ff8af 591
0dc4a6bf
MS
592#ifdef HAVE_ASL_H
593 if (!strcmp(ErrorLog, "syslog"))
594 {
595 asl_object_t m; /* Log message */
596 char job_id[32], /* job-id string */
597 completed[32]; /* job-impressions-completed string */
598 static const char * const job_states[] =
599 { /* job-state strings */
600 "Pending",
601 "PendingHeld",
602 "Processing",
603 "ProcessingStopped",
604 "Canceled",
605 "Aborted",
606 "Completed"
607 };
608
609 snprintf(job_id, sizeof(job_id), "%d", job->id);
610
611 m = asl_new(ASL_TYPE_MSG);
612 asl_set(m, ASL_KEY_FACILITY, "org.cups.cupsd");
613 asl_set(m, PWG_Event, "JobStateChanged");
614 asl_set(m, PWG_ServiceURI, job->printer->uri);
615 asl_set(m, PWG_JobID, job_id);
616 asl_set(m, PWG_JobState, job_states[job->state_value - IPP_JSTATE_PENDING]);
617
618 if (job->impressions)
619 {
620 snprintf(completed, sizeof(completed), "%d", ippGetInteger(job->impressions, 0));
621 asl_set(m, PWG_JobImpressionsCompleted, completed);
622 }
623
624 va_start(ap, message);
625 asl_vlog(NULL, m, log_levels[level], message, ap);
626 va_end(ap);
627
628 asl_release(m);
629 return (1);
630 }
631
632#elif defined(HAVE_SYSTEMD_SD_JOURNAL_H)
633 if (!strcmp(ErrorLog, "syslog"))
634 {
0dc4a6bf
MS
635 static const char * const job_states[] =
636 { /* job-state strings */
637 "Pending",
638 "PendingHeld",
639 "Processing",
640 "ProcessingStopped",
641 "Canceled",
642 "Aborted",
643 "Completed"
644 };
645
646 va_start(ap, message);
647
648 do
649 {
650 va_copy(ap2, ap);
651 status = format_log_line(message, ap2);
652 va_end(ap2);
653 }
654 while (status == 0);
655
656 va_end(ap);
657
658 sd_journal_send("MESSAGE=%s", log_line,
659 "PRIORITY=%i", log_levels[level],
660 PWG_Event"=JobStateChanged",
661 PWG_ServiceURI"=%s", job->printer->uri,
662 PWG_JobID"=%d", job->id,
663 PWG_JobState"=%s", job_states[job->state_value - IPP_JSTATE_PENDING],
664 PWG_JobImpressionsCompleted"=%d", ippGetInteger(job->impressions, 0),
665 NULL);
666 return (1);
667 }
668
669#endif /* HAVE_ASL_H */
670
ef416fc2 671 /*
75bd9771 672 * Format and write the log message...
ef416fc2 673 */
674
dcb445bc
MS
675 if (job)
676 snprintf(jobmsg, sizeof(jobmsg), "[Job %d] %s", job->id, message);
677 else
678 strlcpy(jobmsg, message, sizeof(jobmsg));
679
680 va_start(ap, message);
ef416fc2 681
005dd1eb
MS
682 do
683 {
dcb445bc
MS
684 va_copy(ap2, ap);
685 status = format_log_line(jobmsg, ap2);
686 va_end(ap2);
005dd1eb
MS
687 }
688 while (status == 0);
771bd8cb 689
dcb445bc
MS
690 va_end(ap);
691
005dd1eb 692 if (status > 0)
178cb736 693 {
dcb445bc
MS
694 if (job &&
695 (level > LogLevel ||
178cb736
MS
696 (level == CUPSD_LOG_INFO && LogLevel < CUPSD_LOG_DEBUG)) &&
697 LogDebugHistory > 0)
698 {
699 /*
700 * Add message to the job history...
701 */
702
703 cupsd_joblog_t *temp; /* Copy of log message */
ff2b08f9
MS
704 size_t log_len = strlen(log_line);
705 /* Length of log message */
178cb736 706
ff2b08f9 707 if ((temp = malloc(sizeof(cupsd_joblog_t) + log_len)) != NULL)
178cb736
MS
708 {
709 temp->time = time(NULL);
ff2b08f9 710 memcpy(temp->message, log_line, log_len + 1);
178cb736
MS
711 }
712
713 if (!job->history)
714 job->history = cupsArrayNew(NULL, NULL);
715
716 if (job->history && temp)
717 {
718 cupsArrayAdd(job->history, temp);
719
720 if (cupsArrayCount(job->history) > LogDebugHistory)
721 {
722 /*
723 * Remove excess messages...
724 */
725
726 temp = cupsArrayFirst(job->history);
727 cupsArrayRemove(job->history, temp);
728 free(temp);
729 }
730 }
731 else if (temp)
732 free(temp);
733
734 return (1);
735 }
736 else if (level <= LogLevel &&
737 (level != CUPSD_LOG_INFO || LogLevel >= CUPSD_LOG_DEBUG))
738 return (cupsdWriteErrorLog(level, log_line));
739 else
740 return (1);
741 }
75bd9771
MS
742 else
743 return (cupsdWriteErrorLog(CUPSD_LOG_ERROR,
996acce8 744 "Unable to allocate memory for log line."));
75bd9771 745}
ef416fc2 746
ef416fc2 747
75bd9771
MS
748/*
749 * 'cupsdLogMessage()' - Log a message to the error log file.
750 */
ef416fc2 751
75bd9771
MS
752int /* O - 1 on success, 0 on error */
753cupsdLogMessage(int level, /* I - Log level */
754 const char *message, /* I - printf-style message string */
755 ...) /* I - Additional args as needed */
756{
dcb445bc 757 va_list ap, ap2; /* Argument pointers */
005dd1eb 758 int status; /* Formatting status */
ef416fc2 759
ef416fc2 760
761 /*
75bd9771 762 * See if we want to log this message...
ef416fc2 763 */
764
85dda01c 765 if ((TestConfigFile || !ErrorLog) && level <= CUPSD_LOG_WARN)
ef416fc2 766 {
a4845881 767 va_start(ap, message);
0dc4a6bf
MS
768
769#ifdef HAVE_ASL_H
770 asl_object_t m; /* Log message */
771
772 m = asl_new(ASL_TYPE_MSG);
773 asl_set(m, ASL_KEY_FACILITY, "org.cups.cupsd");
774 asl_vlog(NULL, m, log_levels[level], message, ap);
775 asl_release(m);
776
777#elif defined(HAVE_SYSTEMD_SD_JOURNAL_H)
778 sd_journal_printv(log_levels[level], message, ap);
779
780#elif defined(HAVE_VSYSLOG)
781 vsyslog(LOG_LPR | log_levels[level], message, ap);
782
cb7f98ee 783#else
a4845881
MS
784 vfprintf(stderr, message, ap);
785 putc('\n', stderr);
cb7f98ee 786#endif /* HAVE_VSYSLOG */
0dc4a6bf 787
a4845881 788 va_end(ap);
ef416fc2 789
75bd9771 790 return (1);
ef416fc2 791 }
792
75bd9771
MS
793 if (level > LogLevel || !ErrorLog)
794 return (1);
ef416fc2 795
0dc4a6bf
MS
796#ifdef HAVE_ASL_H
797 if (!strcmp(ErrorLog, "syslog"))
798 {
799 asl_object_t m; /* Log message */
800
801 m = asl_new(ASL_TYPE_MSG);
802 asl_set(m, ASL_KEY_FACILITY, "org.cups.cupsd");
803
804 va_start(ap, message);
805 asl_vlog(NULL, m, log_levels[level], message, ap);
806 va_end(ap);
807
808 asl_release(m);
809 return (1);
810 }
811
812#elif defined(HAVE_SYSTEMD_SD_JOURNAL_H)
a990ad13
MS
813 if (!strcmp(ErrorLog, "syslog"))
814 {
815 sd_journal_printv(log_levels[level], message, ap);
816 return (1);
817 }
0dc4a6bf
MS
818#endif /* HAVE_ASL_H */
819
ef416fc2 820 /*
75bd9771 821 * Format and write the log message...
ef416fc2 822 */
823
dcb445bc
MS
824 va_start(ap, message);
825
005dd1eb
MS
826 do
827 {
dcb445bc
MS
828 va_copy(ap2, ap);
829 status = format_log_line(message, ap2);
830 va_end(ap2);
005dd1eb
MS
831 }
832 while (status == 0);
ef416fc2 833
dcb445bc
MS
834 va_end(ap);
835
005dd1eb
MS
836 if (status > 0)
837 return (cupsdWriteErrorLog(level, log_line));
75bd9771
MS
838 else
839 return (cupsdWriteErrorLog(CUPSD_LOG_ERROR,
840 "Unable to allocate memory for log line!"));
ef416fc2 841}
842
843
844/*
845 * 'cupsdLogPage()' - Log a page to the page log file.
846 */
847
848int /* O - 1 on success, 0 on error */
849cupsdLogPage(cupsd_job_t *job, /* I - Job being printed */
850 const char *page) /* I - Page being printed */
851{
01ce6322
MS
852 int i; /* Looping var */
853 char buffer[2048], /* Buffer for page log */
854 *bufptr, /* Pointer into buffer */
855 name[256]; /* Attribute name */
856 const char *format, /* Pointer into PageLogFormat */
857 *nameend; /* End of attribute name */
858 ipp_attribute_t *attr; /* Current attribute */
771bd8cb
MS
859 char number[256]; /* Page number */
860 int copies; /* Number of copies */
ef416fc2 861
862
01ce6322
MS
863 /*
864 * Format the line going into the page log...
865 */
866
867 if (!PageLogFormat)
868 return (1);
869
5a9febac 870 strlcpy(number, "1", sizeof(number));
771bd8cb
MS
871 copies = 1;
872 sscanf(page, "%255s%d", number, &copies);
01ce6322
MS
873
874 for (format = PageLogFormat, bufptr = buffer; *format; format ++)
875 {
876 if (*format == '%')
877 {
878 format ++;
879
880 switch (*format)
881 {
882 case '%' : /* Literal % */
883 if (bufptr < (buffer + sizeof(buffer) - 1))
884 *bufptr++ = '%';
885 break;
886
887 case 'p' : /* Printer name */
7e86f2f6 888 strlcpy(bufptr, job->printer->name, sizeof(buffer) - (size_t)(bufptr - buffer));
01ce6322
MS
889 bufptr += strlen(bufptr);
890 break;
891
892 case 'j' : /* Job ID */
7e86f2f6 893 snprintf(bufptr, sizeof(buffer) - (size_t)(bufptr - buffer), "%d", job->id);
01ce6322
MS
894 bufptr += strlen(bufptr);
895 break;
896
897 case 'u' : /* Username */
7e86f2f6 898 strlcpy(bufptr, job->username ? job->username : "-", sizeof(buffer) - (size_t)(bufptr - buffer));
01ce6322
MS
899 bufptr += strlen(bufptr);
900 break;
901
902 case 'T' : /* Date and time */
7e86f2f6 903 strlcpy(bufptr, cupsdGetDateTime(NULL, LogTimeFormat), sizeof(buffer) - (size_t)(bufptr - buffer));
01ce6322
MS
904 bufptr += strlen(bufptr);
905 break;
906
907 case 'P' : /* Page number */
7e86f2f6 908 strlcpy(bufptr, number, sizeof(buffer) - (size_t)(bufptr - buffer));
01ce6322
MS
909 bufptr += strlen(bufptr);
910 break;
911
912 case 'C' : /* Number of copies */
7e86f2f6 913 snprintf(bufptr, sizeof(buffer) - (size_t)(bufptr - buffer), "%d", copies);
01ce6322
MS
914 bufptr += strlen(bufptr);
915 break;
916
917 case '{' : /* {attribute} */
7e86f2f6 918 if ((nameend = strchr(format, '}')) != NULL && (size_t)(nameend - format - 2) < (sizeof(name) - 1))
01ce6322
MS
919 {
920 /*
921 * Pull the name from inside the brackets...
922 */
923
07623986 924 memcpy(name, format + 1, (size_t)(nameend - format - 1));
75bd9771
MS
925 name[nameend - format - 1] = '\0';
926
927 format = nameend;
01ce6322 928
bf1bc4c6
MS
929 attr = ippFindAttribute(job->attrs, name, IPP_TAG_ZERO);
930 if (!attr && !strcmp(name, "job-billing"))
931 {
932 /*
933 * Handle alias "job-account-id" (which was standardized after
934 * "job-billing" was defined for CUPS...
935 */
936
937 attr = ippFindAttribute(job->attrs, "job-account-id", IPP_TAG_ZERO);
938 }
939 else if (!attr && !strcmp(name, "media"))
940 {
941 /*
942 * Handle alias "media-col" which uses dimensions instead of
943 * names...
944 */
945
946 attr = ippFindAttribute(job->attrs, "media-col/media-size", IPP_TAG_BEGIN_COLLECTION);
947 }
948
949 if (attr)
01ce6322
MS
950 {
951 /*
952 * Add the attribute value...
953 */
954
01ce6322
MS
955 for (i = 0;
956 i < attr->num_values &&
957 bufptr < (buffer + sizeof(buffer) - 1);
958 i ++)
959 {
960 if (i)
961 *bufptr++ = ',';
962
963 switch (attr->value_tag)
964 {
965 case IPP_TAG_INTEGER :
966 case IPP_TAG_ENUM :
7e86f2f6 967 snprintf(bufptr, sizeof(buffer) - (size_t)(bufptr - buffer), "%d", attr->values[i].integer);
01ce6322
MS
968 bufptr += strlen(bufptr);
969 break;
970
971 case IPP_TAG_BOOLEAN :
7e86f2f6 972 snprintf(bufptr, sizeof(buffer) - (size_t)(bufptr - buffer), "%d", attr->values[i].boolean);
01ce6322
MS
973 bufptr += strlen(bufptr);
974 break;
975
976 case IPP_TAG_TEXTLANG :
977 case IPP_TAG_NAMELANG :
978 case IPP_TAG_TEXT :
979 case IPP_TAG_NAME :
980 case IPP_TAG_KEYWORD :
981 case IPP_TAG_URI :
982 case IPP_TAG_URISCHEME :
983 case IPP_TAG_CHARSET :
984 case IPP_TAG_LANGUAGE :
985 case IPP_TAG_MIMETYPE :
7e86f2f6 986 strlcpy(bufptr, attr->values[i].string.text, sizeof(buffer) - (size_t)(bufptr - buffer));
01ce6322
MS
987 bufptr += strlen(bufptr);
988 break;
989
bf1bc4c6
MS
990 case IPP_TAG_BEGIN_COLLECTION :
991 if (!strcmp(attr->name, "media-size"))
992 {
993 ipp_attribute_t *x_dimension = ippFindAttribute(ippGetCollection(attr, 0), "x-dimension", IPP_TAG_INTEGER);
994 ipp_attribute_t *y_dimension = ippFindAttribute(ippGetCollection(attr, 0), "y-dimension", IPP_TAG_INTEGER);
995 /* Media dimensions */
996
997 if (x_dimension && y_dimension)
998 {
999 pwg_media_t *pwg = pwgMediaForSize(ippGetInteger(x_dimension, 0), ippGetInteger(y_dimension, 0));
1000 /* PWG media name */
1001 strlcpy(bufptr, pwg->pwg, sizeof(buffer) - (size_t)(bufptr - buffer));
1002 break;
1003 }
1004 }
1005
01ce6322 1006 default :
7e86f2f6 1007 strlcpy(bufptr, "???", sizeof(buffer) - (size_t)(bufptr - buffer));
01ce6322
MS
1008 bufptr += strlen(bufptr);
1009 break;
1010 }
1011 }
1012 }
1013 else if (bufptr < (buffer + sizeof(buffer) - 1))
1014 *bufptr++ = '-';
1015 break;
1016 }
1017
1018 default :
1019 if (bufptr < (buffer + sizeof(buffer) - 2))
1020 {
1021 *bufptr++ = '%';
1022 *bufptr++ = *format;
1023 }
1024 break;
1025 }
1026 }
1027 else if (bufptr < (buffer + sizeof(buffer) - 1))
1028 *bufptr++ = *format;
1029 }
ef416fc2 1030
01ce6322 1031 *bufptr = '\0';
771bd8cb 1032
0dc4a6bf
MS
1033#ifdef HAVE_ASL_H
1034 if (!strcmp(ErrorLog, "syslog"))
1035 {
1036 asl_object_t m; /* Log message */
1037 char job_id[32], /* job-id string */
1038 completed[32]; /* job-impressions-completed string */
1039 static const char * const job_states[] =
1040 { /* job-state strings */
1041 "Pending",
1042 "PendingHeld",
1043 "Processing",
1044 "ProcessingStopped",
1045 "Canceled",
1046 "Aborted",
1047 "Completed"
1048 };
1049
1050 snprintf(job_id, sizeof(job_id), "%d", job->id);
1051
1052 m = asl_new(ASL_TYPE_MSG);
1053 asl_set(m, ASL_KEY_FACILITY, "org.cups.cupsd");
1054 asl_set(m, PWG_Event, "JobStateChanged");
1055 asl_set(m, PWG_ServiceURI, job->printer->uri);
1056 asl_set(m, PWG_JobID, job_id);
1057 asl_set(m, PWG_JobState, job_states[job->state_value - IPP_JSTATE_PENDING]);
1058
1059 if (job->impressions)
1060 {
1061 snprintf(completed, sizeof(completed), "%d", ippGetInteger(job->impressions, 0));
1062 asl_set(m, PWG_JobImpressionsCompleted, completed);
1063 }
1064
1065 asl_log(NULL, m, ASL_LEVEL_INFO, "%s", buffer);
1066
1067 asl_release(m);
1068 return (1);
1069 }
1070
1071#elif defined(HAVE_SYSTEMD_SD_JOURNAL_H)
1072 if (!strcmp(ErrorLog, "syslog"))
1073 {
0dc4a6bf
MS
1074 static const char * const job_states[] =
1075 { /* job-state strings */
1076 "Pending",
1077 "PendingHeld",
1078 "Processing",
1079 "ProcessingStopped",
1080 "Canceled",
1081 "Aborted",
1082 "Completed"
1083 };
1084
a990ad13
MS
1085 sd_journal_send("MESSAGE=%s", buffer,
1086 "PRIORITY=%i", LOG_INFO,
0dc4a6bf
MS
1087 PWG_Event"=JobStateChanged",
1088 PWG_ServiceURI"=%s", job->printer->uri,
1089 PWG_JobID"=%d", job->id,
1090 PWG_JobState"=%s", job_states[job->state_value - IPP_JSTATE_PENDING],
1091 PWG_JobImpressionsCompleted"=%d", ippGetInteger(job->impressions, 0),
1092 NULL);
1093 return (1);
1094 }
1095
1096#elif defined(HAVE_VSYSLOG)
ef416fc2 1097 /*
1098 * See if we are logging pages via syslog...
1099 */
1100
1101 if (!strcmp(PageLog, "syslog"))
1102 {
01ce6322 1103 syslog(LOG_INFO, "%s", buffer);
ef416fc2 1104
1105 return (1);
1106 }
0dc4a6bf 1107#endif /* HAVE_ASL_H */
ef416fc2 1108
1109 /*
1110 * Not using syslog; check the log file...
1111 */
1112
22c9029b 1113 if (!cupsdCheckLogFile(&PageFile, PageLog))
ef416fc2 1114 return (0);
1115
1116 /*
1117 * Print a page log entry of the form:
1118 *
ac884b6a 1119 * printer user job-id [DD/MON/YYYY:HH:MM:SS +TTTT] page num-copies \
ef416fc2 1120 * billing hostname
1121 */
1122
01ce6322 1123 cupsFilePrintf(PageFile, "%s\n", buffer);
ef416fc2 1124 cupsFileFlush(PageFile);
1125
1126 return (1);
1127}
1128
1129
1130/*
1131 * 'cupsdLogRequest()' - Log an HTTP request in Common Log Format.
1132 */
1133
1134int /* O - 1 on success, 0 on error */
1135cupsdLogRequest(cupsd_client_t *con, /* I - Request to log */
1136 http_status_t code) /* I - Response code */
1137{
839a51c8 1138 char temp[2048]; /* Temporary string for URI */
ef416fc2 1139 static const char * const states[] = /* HTTP client states... */
1140 {
1141 "WAITING",
1142 "OPTIONS",
1143 "GET",
1144 "GET",
1145 "HEAD",
1146 "POST",
1147 "POST",
1148 "POST",
1149 "PUT",
1150 "PUT",
1151 "DELETE",
1152 "TRACE",
1153 "CLOSE",
1154 "STATUS"
1155 };
1156
1157
1f0275e3
MS
1158 /*
1159 * Filter requests as needed...
1160 */
1161
c9dcc485
MS
1162 if (AccessLogLevel == CUPSD_ACCESSLOG_NONE)
1163 return (1);
1164 else if (AccessLogLevel < CUPSD_ACCESSLOG_ALL)
1f0275e3
MS
1165 {
1166 /*
ba55dc12 1167 * Eliminate simple GET, POST, and PUT requests...
1f0275e3
MS
1168 */
1169
1170 if ((con->operation == HTTP_GET &&
1171 strncmp(con->uri, "/admin/conf", 11) &&
1172 strncmp(con->uri, "/admin/log", 10)) ||
1173 (con->operation == HTTP_POST && !con->request &&
1174 strncmp(con->uri, "/admin", 6)) ||
ba55dc12
MS
1175 (con->operation != HTTP_GET && con->operation != HTTP_POST &&
1176 con->operation != HTTP_PUT))
1f0275e3
MS
1177 return (1);
1178
1179 if (con->request && con->response &&
e07d4801
MS
1180 (con->response->request.status.status_code < IPP_REDIRECTION_OTHER_SITE ||
1181 con->response->request.status.status_code == IPP_NOT_FOUND))
1f0275e3
MS
1182 {
1183 /*
1184 * Check successful requests...
1185 */
1186
1187 ipp_op_t op = con->request->request.op.operation_id;
1188 static cupsd_accesslog_t standard_ops[] =
1189 {
1190 CUPSD_ACCESSLOG_ALL, /* reserved */
1191 CUPSD_ACCESSLOG_ALL, /* reserved */
1192 CUPSD_ACCESSLOG_ACTIONS,/* Print-Job */
1193 CUPSD_ACCESSLOG_ACTIONS,/* Print-URI */
1194 CUPSD_ACCESSLOG_ACTIONS,/* Validate-Job */
1195 CUPSD_ACCESSLOG_ACTIONS,/* Create-Job */
1196 CUPSD_ACCESSLOG_ACTIONS,/* Send-Document */
1197 CUPSD_ACCESSLOG_ACTIONS,/* Send-URI */
1198 CUPSD_ACCESSLOG_ACTIONS,/* Cancel-Job */
1199 CUPSD_ACCESSLOG_ALL, /* Get-Job-Attributes */
1200 CUPSD_ACCESSLOG_ALL, /* Get-Jobs */
1201 CUPSD_ACCESSLOG_ALL, /* Get-Printer-Attributes */
1202 CUPSD_ACCESSLOG_ACTIONS,/* Hold-Job */
1203 CUPSD_ACCESSLOG_ACTIONS,/* Release-Job */
1204 CUPSD_ACCESSLOG_ACTIONS,/* Restart-Job */
1205 CUPSD_ACCESSLOG_ALL, /* reserved */
1206 CUPSD_ACCESSLOG_CONFIG, /* Pause-Printer */
1207 CUPSD_ACCESSLOG_CONFIG, /* Resume-Printer */
1208 CUPSD_ACCESSLOG_CONFIG, /* Purge-Jobs */
1209 CUPSD_ACCESSLOG_CONFIG, /* Set-Printer-Attributes */
1210 CUPSD_ACCESSLOG_ACTIONS,/* Set-Job-Attributes */
1211 CUPSD_ACCESSLOG_CONFIG, /* Get-Printer-Supported-Values */
1212 CUPSD_ACCESSLOG_ACTIONS,/* Create-Printer-Subscription */
1213 CUPSD_ACCESSLOG_ACTIONS,/* Create-Job-Subscription */
1214 CUPSD_ACCESSLOG_ALL, /* Get-Subscription-Attributes */
1215 CUPSD_ACCESSLOG_ALL, /* Get-Subscriptions */
1216 CUPSD_ACCESSLOG_ACTIONS,/* Renew-Subscription */
1217 CUPSD_ACCESSLOG_ACTIONS,/* Cancel-Subscription */
1218 CUPSD_ACCESSLOG_ALL, /* Get-Notifications */
1219 CUPSD_ACCESSLOG_ACTIONS,/* Send-Notifications */
1220 CUPSD_ACCESSLOG_ALL, /* reserved */
1221 CUPSD_ACCESSLOG_ALL, /* reserved */
1222 CUPSD_ACCESSLOG_ALL, /* reserved */
1223 CUPSD_ACCESSLOG_ALL, /* Get-Print-Support-Files */
1224 CUPSD_ACCESSLOG_CONFIG, /* Enable-Printer */
1225 CUPSD_ACCESSLOG_CONFIG, /* Disable-Printer */
1226 CUPSD_ACCESSLOG_CONFIG, /* Pause-Printer-After-Current-Job */
1227 CUPSD_ACCESSLOG_ACTIONS,/* Hold-New-Jobs */
1228 CUPSD_ACCESSLOG_ACTIONS,/* Release-Held-New-Jobs */
1229 CUPSD_ACCESSLOG_CONFIG, /* Deactivate-Printer */
1230 CUPSD_ACCESSLOG_CONFIG, /* Activate-Printer */
1231 CUPSD_ACCESSLOG_CONFIG, /* Restart-Printer */
1232 CUPSD_ACCESSLOG_CONFIG, /* Shutdown-Printer */
1233 CUPSD_ACCESSLOG_CONFIG, /* Startup-Printer */
1234 CUPSD_ACCESSLOG_ACTIONS,/* Reprocess-Job */
1235 CUPSD_ACCESSLOG_ACTIONS,/* Cancel-Current-Job */
1236 CUPSD_ACCESSLOG_ACTIONS,/* Suspend-Current-Job */
1237 CUPSD_ACCESSLOG_ACTIONS,/* Resume-Job */
1238 CUPSD_ACCESSLOG_ACTIONS,/* Promote-Job */
1239 CUPSD_ACCESSLOG_ACTIONS /* Schedule-Job-After */
1240 };
1241 static cupsd_accesslog_t cups_ops[] =
1242 {
1243 CUPSD_ACCESSLOG_ALL, /* CUPS-Get-Default */
1244 CUPSD_ACCESSLOG_ALL, /* CUPS-Get-Printers */
1245 CUPSD_ACCESSLOG_CONFIG, /* CUPS-Add-Modify-Printer */
1246 CUPSD_ACCESSLOG_CONFIG, /* CUPS-Delete-Printer */
1247 CUPSD_ACCESSLOG_ALL, /* CUPS-Get-Classes */
1248 CUPSD_ACCESSLOG_CONFIG, /* CUPS-Add-Modify-Class */
1249 CUPSD_ACCESSLOG_CONFIG, /* CUPS-Delete-Class */
1250 CUPSD_ACCESSLOG_CONFIG, /* CUPS-Accept-Jobs */
1251 CUPSD_ACCESSLOG_CONFIG, /* CUPS-Reject-Jobs */
1252 CUPSD_ACCESSLOG_CONFIG, /* CUPS-Set-Default */
1253 CUPSD_ACCESSLOG_CONFIG, /* CUPS-Get-Devices */
1254 CUPSD_ACCESSLOG_CONFIG, /* CUPS-Get-PPDs */
1255 CUPSD_ACCESSLOG_ACTIONS,/* CUPS-Move-Job */
1256 CUPSD_ACCESSLOG_ACTIONS,/* CUPS-Authenticate-Job */
1257 CUPSD_ACCESSLOG_ALL /* CUPS-Get-PPD */
1258 };
771bd8cb 1259
1f0275e3
MS
1260
1261 if ((op <= IPP_SCHEDULE_JOB_AFTER && standard_ops[op] > AccessLogLevel) ||
1262 (op >= CUPS_GET_DEFAULT && op <= CUPS_GET_PPD &&
1263 cups_ops[op - CUPS_GET_DEFAULT] > AccessLogLevel))
1264 return (1);
1265 }
1266 }
1267
0dc4a6bf
MS
1268#ifdef HAVE_ASL_H
1269 if (!strcmp(ErrorLog, "syslog"))
1270 {
1271 asl_object_t m; /* Log message */
1272
1273 m = asl_new(ASL_TYPE_MSG);
1274 asl_set(m, ASL_KEY_FACILITY, "org.cups.cupsd");
1275
1276 asl_log(NULL, m, ASL_LEVEL_INFO, "REQUEST %s - %s \"%s %s HTTP/%d.%d\" %d " CUPS_LLFMT " %s %s\n",
1277 con->http->hostname, con->username[0] != '\0' ? con->username : "-",
1278 states[con->operation], _httpEncodeURI(temp, con->uri, sizeof(temp)),
1279 con->http->version / 100, con->http->version % 100,
1280 code, CUPS_LLCAST con->bytes,
1281 con->request ?
1282 ippOpString(con->request->request.op.operation_id) : "-",
1283 con->response ?
1284 ippErrorString(con->response->request.status.status_code) : "-");
1285
1286 asl_release(m);
1287 return (1);
1288 }
1289
1290#elif defined(HAVE_SYSTEMD_SD_JOURNAL_H)
a990ad13
MS
1291 if (!strcmp(ErrorLog, "syslog"))
1292 {
1293 sd_journal_print(LOG_INFO, "REQUEST %s - %s \"%s %s HTTP/%d.%d\" %d " CUPS_LLFMT " %s %s", con->http->hostname, con->username[0] != '\0' ? con->username : "-", states[con->operation], _httpEncodeURI(temp, con->uri, sizeof(temp)), con->http->version / 100, con->http->version % 100, code, CUPS_LLCAST con->bytes, con->request ? ippOpString(con->request->request.op.operation_id) : "-", con->response ? ippErrorString(con->response->request.status.status_code) : "-");
1294 return (1);
1295 }
0dc4a6bf
MS
1296
1297#elif defined(HAVE_VSYSLOG)
ef416fc2 1298 /*
1299 * See if we are logging accesses via syslog...
1300 */
1301
1302 if (!strcmp(AccessLog, "syslog"))
1303 {
2abf387c 1304 syslog(LOG_INFO,
1305 "REQUEST %s - %s \"%s %s HTTP/%d.%d\" %d " CUPS_LLFMT " %s %s\n",
996acce8 1306 con->http->hostname, con->username[0] != '\0' ? con->username : "-",
839a51c8 1307 states[con->operation], _httpEncodeURI(temp, con->uri, sizeof(temp)),
996acce8 1308 con->http->version / 100, con->http->version % 100,
2abf387c 1309 code, CUPS_LLCAST con->bytes,
1310 con->request ?
1311 ippOpString(con->request->request.op.operation_id) : "-",
1312 con->response ?
1313 ippErrorString(con->response->request.status.status_code) : "-");
ef416fc2 1314
1315 return (1);
1316 }
0dc4a6bf 1317#endif /* HAVE_ASL_H */
ef416fc2 1318
1319 /*
1320 * Not using syslog; check the log file...
1321 */
1322
22c9029b 1323 if (!cupsdCheckLogFile(&AccessFile, AccessLog))
ef416fc2 1324 return (0);
1325
1326 /*
1327 * Write a log of the request in "common log format"...
1328 */
1329
1330 cupsFilePrintf(AccessFile,
1331 "%s - %s %s \"%s %s HTTP/%d.%d\" %d " CUPS_LLFMT " %s %s\n",
996acce8 1332 con->http->hostname,
c8fef167 1333 con->username[0] != '\0' ? con->username : "-",
dfd5680b
MS
1334 cupsdGetDateTime(&(con->start), LogTimeFormat),
1335 states[con->operation],
839a51c8 1336 _httpEncodeURI(temp, con->uri, sizeof(temp)),
996acce8 1337 con->http->version / 100, con->http->version % 100,
ef416fc2 1338 code, CUPS_LLCAST con->bytes,
1339 con->request ?
1340 ippOpString(con->request->request.op.operation_id) : "-",
1341 con->response ?
1342 ippErrorString(con->response->request.status.status_code) :
1343 "-");
1344
1345 cupsFileFlush(AccessFile);
1346
1347 return (1);
1348}
1349
1350
75bd9771
MS
1351/*
1352 * 'cupsdWriteErrorLog()' - Write a line to the ErrorLog.
1353 */
1354
1355int /* O - 1 on success, 0 on failure */
1356cupsdWriteErrorLog(int level, /* I - Log level */
1357 const char *message) /* I - Message string */
1358{
28a463e0 1359 int ret = 1; /* Return value */
75bd9771
MS
1360 static const char levels[] = /* Log levels... */
1361 {
1362 ' ',
1363 'X',
1364 'A',
1365 'C',
1366 'E',
1367 'W',
1368 'N',
1369 'I',
1370 'D',
1371 'd'
1372 };
75bd9771
MS
1373
1374
0dc4a6bf
MS
1375#ifdef HAVE_ASL_H
1376 if (!strcmp(ErrorLog, "syslog"))
1377 {
1378 asl_object_t m; /* Log message */
1379
1380 m = asl_new(ASL_TYPE_MSG);
1381 asl_set(m, ASL_KEY_FACILITY, "org.cups.cupsd");
1382 asl_log(NULL, m, ASL_LEVEL_INFO, "%s", message);
1383
1384 asl_release(m);
1385 return (1);
1386 }
1387
1388#elif defined(HAVE_SYSTEMD_SD_JOURNAL_H)
a990ad13
MS
1389 if (!strcmp(ErrorLog, "syslog"))
1390 {
1391 sd_journal_print(log_levels[level], "%s", message);
1392 return (1);
1393 }
0dc4a6bf
MS
1394
1395#elif defined(HAVE_VSYSLOG)
75bd9771
MS
1396 /*
1397 * See if we are logging errors via syslog...
1398 */
1399
1400 if (!strcmp(ErrorLog, "syslog"))
1401 {
0dc4a6bf 1402 syslog(log_levels[level], "%s", message);
75bd9771
MS
1403 return (1);
1404 }
0dc4a6bf 1405#endif /* HAVE_ASL_H */
75bd9771
MS
1406
1407 /*
1408 * Not using syslog; check the log file...
1409 */
1410
28a463e0
MS
1411 _cupsMutexLock(&log_mutex);
1412
22c9029b 1413 if (!cupsdCheckLogFile(&ErrorFile, ErrorLog))
28a463e0
MS
1414 {
1415 ret = 0;
1416 }
1417 else
1418 {
1419 /*
1420 * Write the log message...
1421 */
75bd9771 1422
28a463e0
MS
1423 cupsFilePrintf(ErrorFile, "%c %s %s\n", levels[level],
1424 cupsdGetDateTime(NULL, LogTimeFormat), message);
1425 cupsFileFlush(ErrorFile);
1426 }
75bd9771 1427
28a463e0 1428 _cupsMutexUnlock(&log_mutex);
75bd9771 1429
28a463e0 1430 return (ret);
75bd9771
MS
1431}
1432
1433
ef416fc2 1434/*
75bd9771
MS
1435 * 'format_log_line()' - Format a line for a log file.
1436 *
1437 * This function resizes a global string buffer as needed. Each call returns
1438 * a pointer to this buffer, so the contents are only good until the next call
1439 * to format_log_line()...
1440 */
1441
005dd1eb 1442static int /* O - -1 for fatal, 0 for retry, 1 for success */
75bd9771
MS
1443format_log_line(const char *message, /* I - Printf-style format string */
1444 va_list ap) /* I - Argument list */
1445{
7e86f2f6 1446 ssize_t len; /* Length of formatted line */
75bd9771
MS
1447
1448
1449 /*
1450 * Allocate the line buffer as needed...
1451 */
1452
1453 if (!log_linesize)
1454 {
1455 log_linesize = 8192;
1456 log_line = malloc(log_linesize);
1457
1458 if (!log_line)
005dd1eb 1459 return (-1);
75bd9771
MS
1460 }
1461
1462 /*
1463 * Format the log message...
1464 */
1465
1466 len = vsnprintf(log_line, log_linesize, message, ap);
1467
1468 /*
1469 * Resize the buffer as needed...
1470 */
1471
7e86f2f6 1472 if ((size_t)len >= log_linesize && log_linesize < 65536)
75bd9771
MS
1473 {
1474 char *temp; /* Temporary string pointer */
1475
1476
1477 len ++;
1478
1479 if (len < 8192)
1480 len = 8192;
1481 else if (len > 65536)
1482 len = 65536;
1483
7e86f2f6 1484 temp = realloc(log_line, (size_t)len);
75bd9771
MS
1485
1486 if (temp)
1487 {
1488 log_line = temp;
7e86f2f6 1489 log_linesize = (size_t)len;
75bd9771 1490
005dd1eb
MS
1491 return (0);
1492 }
75bd9771
MS
1493 }
1494
005dd1eb 1495 return (1);
75bd9771
MS
1496}
1497
1498
1499/*
f2d18633 1500 * End of "$Id$".
ef416fc2 1501 */