2 * Copyright (c) 2004-2012 Apple Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
24 #include <TargetConditionals.h>
25 #include <sys/types.h>
26 #include <sys/socket.h>
28 #include <sys/ucred.h>
33 #include <netinet/in.h>
34 #include <arpa/inet.h>
37 #include <sys/fslog.h>
39 #include <mach/mach.h>
40 #include <libkern/OSAtomic.h>
42 #include <uuid/uuid.h>
43 #include <asl_private.h>
44 #include <os/transaction_private.h>
47 #define LIST_SIZE_DELTA 256
48 #define STATS_TABLE_SIZE 256
50 #define forever for(;;)
52 #define ASL_MSG_TYPE_MASK 0x0000000f
53 #define ASL_TYPE_ERROR 2
55 #define ASL_KEY_FACILITY "Facility"
57 #define FACILITY_USER "user"
58 #define FACILITY_CONSOLE "com.apple.console"
59 #define SYSTEM_RESERVED "com.apple.system"
60 #define SYSTEM_RESERVED_LEN 16
62 #define VERIFY_STATUS_OK 0
63 #define VERIFY_STATUS_INVALID_MESSAGE 1
64 #define VERIFY_STATUS_EXCEEDED_QUOTA 2
66 extern void disaster_message(asl_msg_t
*m
);
67 extern int asl_action_reset(void);
68 extern int asl_action_control_set_param(const char *s
);
70 static char myname
[MAXHOSTNAMELEN
+ 1] = {0};
71 static int name_change_token
= -1;
73 static OSSpinLock count_lock
= 0;
75 #if !TARGET_OS_EMBEDDED
76 static os_transaction_t main_transaction
;
79 #define DEFAULT_MEMORY_MAX SYSLOGD_WORK_QUEUE_MEMORY
81 #define QUOTA_KERN_EXCEEDED_MESSAGE "*** kernel exceeded %d log message per second limit - remaining messages this second discarded ***"
83 #define DEFAULT_DB_FILE_MAX 25600000
84 #define DEFAULT_DB_MEMORY_MAX 256
85 #define DEFAULT_DB_MEMORY_STR_MAX 1024000
86 #define DEFAULT_MPS_LIMIT 500
87 #define DEFAULT_REMOTE_DELAY 5000
88 #define DEFAULT_BSD_MAX_DUP_SEC 30
89 #define DEFAULT_MARK_SEC 0
90 #define DEFAULT_UTMP_TTL_SEC 31622400
91 #define DEFAULT_STATS_INTERVAL 600
93 #define ASL_STATS_LEVEL 5
95 static time_t quota_time
= 0;
96 static int32_t kern_quota
;
97 static int32_t kern_level
;
99 static const char *kern_notify_key
[] =
101 "com.apple.system.log.kernel.emergency",
102 "com.apple.system.log.kernel.alert",
103 "com.apple.system.log.kernel.critical",
104 "com.apple.system.log.kernel.error",
105 "com.apple.system.log.kernel.warning",
106 "com.apple.system.log.kernel.notice",
107 "com.apple.system.log.kernel.info",
108 "com.apple.system.log.kernel.debug"
111 static int kern_notify_token
[8] = {-1, -1, -1, -1, -1, -1, -1, -1};
113 static stats_table_t
*
116 stats_table_t
*t
= (stats_table_t
*)malloc(sizeof(stats_table_t
));
117 if (t
== NULL
) return NULL
;
119 t
->bucket_count
= STATS_TABLE_SIZE
;
120 t
->bucket
= (sender_stats_t
**)calloc(t
->bucket_count
, sizeof(sender_stats_t
*));
121 if (t
->bucket
== NULL
)
134 stats_table_final(stats_table_t
*t
)
140 if (t
== NULL
) return NULL
;
142 msg
= asl_msg_new(ASL_TYPE_MSG
);
143 if (msg
== NULL
) return NULL
;
145 asl_msg_set_key_val(msg
, ASL_KEY_MSG
, "ASL Sender Statistics");
146 asl_msg_set_key_val(msg
, ASL_KEY_SENDER
, "syslogd");
147 asl_msg_set_key_val(msg
, ASL_KEY_FACILITY
, "com.apple.asl.statistics");
148 snprintf(val
, sizeof(val
), "%d", global
.pid
);
149 asl_msg_set_key_val(msg
, ASL_KEY_PID
, val
);
150 snprintf(val
, sizeof(val
), "%d", ASL_STATS_LEVEL
);
151 asl_msg_set_key_val(msg
, ASL_KEY_LEVEL
, val
);
152 snprintf(val
, sizeof(val
), "%u", t
->mcount
);
153 asl_msg_set_key_val(msg
, "MsgCount", val
);
154 snprintf(val
, sizeof(val
), "%u", t
->shim_count
);
155 asl_msg_set_key_val(msg
, "ShimCount", val
);
157 for (i
= 0; i
< t
->bucket_count
; i
++)
163 char val
[64], *key
= NULL
;
164 sender_stats_t
*n
= s
->next
;
166 snprintf(val
, sizeof(val
), "%llu %llu", s
->count
, s
->size
);
167 asprintf(&key
, "*%s", s
->sender
);
168 if (key
!= NULL
) asl_msg_set_key_val(msg
, key
, val
);
183 stats_table_update(stats_table_t
*t
, const char *sender
, uint64_t msg_size
)
189 if (t
== NULL
) return;
190 if (sender
== NULL
) return;
194 for (p
= (uint8_t *)sender
; *p
!= '\0'; p
++) i
= (i
<< 1) ^ (i
^ *p
);
195 i
%= STATS_TABLE_SIZE
;
197 for (s
= t
->bucket
[i
]; s
!= NULL
; s
= s
->next
)
199 if ((s
->sender
!= NULL
) && (strcmp(sender
, s
->sender
) == 0))
207 s
= (sender_stats_t
*)malloc(sizeof(sender_stats_t
));
208 s
->sender
= strdup(sender
);
209 if (s
->sender
== NULL
)
217 s
->next
= t
->bucket
[i
];
222 kern_quota_check(time_t now
, asl_msg_t
*msg
, uint32_t level
)
226 if (msg
== NULL
) return VERIFY_STATUS_INVALID_MESSAGE
;
227 if (global
.mps_limit
== 0) return VERIFY_STATUS_OK
;
229 if (quota_time
!= now
)
231 kern_quota
= global
.mps_limit
;
236 if (level
< kern_level
) kern_level
= level
;
237 if (kern_quota
> 0) kern_quota
--;
239 if (kern_quota
> 0) return VERIFY_STATUS_OK
;
240 if (kern_quota
< 0) return VERIFY_STATUS_EXCEEDED_QUOTA
;
245 asprintf(&str
, QUOTA_KERN_EXCEEDED_MESSAGE
, global
.mps_limit
);
248 asl_msg_set_key_val(msg
, ASL_KEY_MSG
, str
);
250 lstr
[0] = kern_level
+ '0';
252 asl_msg_set_key_val(msg
, ASL_KEY_LEVEL
, lstr
);
255 return VERIFY_STATUS_OK
;
259 stats_msg(const char *sender
, time_t now
, asl_msg_t
*msg
)
264 /* flush stats after N seconds */
265 if ((global
.stats_interval
!= 0) && ((now
- global
.stats_last
) >= global
.stats_interval
) && (global
.stats
!= NULL
))
267 asl_msg_t
*msg
= stats_table_final(global
.stats
);
268 process_message(msg
, SOURCE_INTERNAL
);
270 global
.stats_last
= now
;
273 if (global
.stats
== NULL
) global
.stats
= stats_table_new();
275 for (x
= msg
; x
!= NULL
; x
= x
->next
) msize
+= x
->mem_size
;
277 const char *shim_vers
= asl_msg_get_val_for_key(msg
, "ASLSHIM");
278 global
.stats
->mcount
++;
279 if (shim_vers
!= NULL
) global
.stats
->shim_count
++;
281 /* update count and total size - total and for this sender */
282 stats_table_update(global
.stats
, "*", msize
);
283 stats_table_update(global
.stats
, sender
, msize
);
289 static dispatch_once_t once
;
292 if (global
.hostname
!= NULL
) return global
.hostname
;
294 dispatch_once(&once
, ^{
295 snprintf(myname
, sizeof(myname
), "%s", "localhost");
296 notify_register_check(kNotifySCHostNameChange
, &name_change_token
);
302 if (name_change_token
>= 0) status
= notify_check(name_change_token
, &check
);
304 if ((status
== 0) && (check
== 0)) return (const char *)myname
;
306 if (gethostname(myname
, MAXHOSTNAMELEN
) < 0)
308 snprintf(myname
, sizeof(myname
), "%s", "localhost");
313 dot
= strchr(myname
, '.');
314 if (dot
!= NULL
) *dot
= '\0';
317 return (const char *)myname
;
321 asl_client_count_increment()
323 OSSpinLockLock(&count_lock
);
325 #if !TARGET_OS_EMBEDDED
326 if (global
.client_count
== 0) main_transaction
= os_transaction_create("com.apple.syslogd");
328 global
.client_count
++;
330 OSSpinLockUnlock(&count_lock
);
334 asl_client_count_decrement()
336 OSSpinLockLock(&count_lock
);
338 if (global
.client_count
> 0) global
.client_count
--;
339 #if !TARGET_OS_EMBEDDED
340 if (global
.client_count
== 0) os_release(main_transaction
);
343 OSSpinLockUnlock(&count_lock
);
347 * Checks message content and sets attributes as required
349 * SOURCE_INTERNAL log messages sent by syslogd itself
350 * SOURCE_ASL_SOCKET legacy asl(3) TCP socket
351 * SOURCE_BSD_SOCKET legacy syslog(3) UDP socket
352 * SOURCE_UDP_SOCKET from the network
353 * SOURCE_KERN from the kernel
354 * SOURCE_ASL_MESSAGE mach messages sent from Libc by asl(3) and syslog(3)
355 * SOURCE_LAUNCHD forwarded from launchd
359 aslmsg_verify(asl_msg_t
*msg
, uint32_t source
, int32_t *kern_post_level
, uid_t
*uid_out
)
361 const char *val
, *fac
, *ruval
, *rgval
, *sval
= NULL
;
366 uint32_t status
, level
, fnum
;
369 struct proc_uniqidentifierinfo pinfo
;
371 if (msg
== NULL
) return VERIFY_STATUS_INVALID_MESSAGE
;
376 if (kern_post_level
!= NULL
) *kern_post_level
= -1;
377 if (uid_out
!= NULL
) *uid_out
= -2;
382 val
= asl_msg_get_val_for_key(msg
, ASL_KEY_PID
);
383 if (val
== NULL
) asl_msg_set_key_val(msg
, ASL_KEY_PID
, "0");
384 else pid
= (pid_t
)atoi(val
);
386 /* if PID is 1 (launchd), use the RefPID and RefProc provided */
389 val
= asl_msg_get_val_for_key(msg
, ASL_KEY_REF_PID
);
390 if (val
!= NULL
) pid
= (pid_t
)atoi(val
);
392 sval
= asl_msg_get_val_for_key(msg
, ASL_KEY_REF_PROC
);
396 val
= asl_msg_get_val_for_key(msg
, ASL_KEY_LEVEL
);
397 level
= ASL_LEVEL_DEBUG
;
398 if (source
== SOURCE_KERN
) level
= ASL_LEVEL_NOTICE
;
400 if ((val
!= NULL
) && (val
[1] == '\0') && (val
[0] >= '0') && (val
[0] <= '7')) level
= val
[0] - '0';
401 snprintf(buf
, sizeof(buf
), "%d", level
);
402 asl_msg_set_key_val(msg
, ASL_KEY_LEVEL
, buf
);
405 /* check kernel quota if enabled and no processes are watching */
406 if ((pid
== 0) && (global
.mps_limit
> 0) && (global
.watchers_active
== 0))
408 status
= kern_quota_check(now
, msg
, level
);
409 if (status
!= VERIFY_STATUS_OK
) return status
;
414 /* set Sender_Mach_UUID */
415 uuid_clear(pinfo
.p_uuid
);
416 if (proc_pidinfo(pid
, PROC_PIDUNIQIDENTIFIERINFO
, 1, &pinfo
, sizeof(pinfo
)) == sizeof(pinfo
))
418 uuid_unparse(pinfo
.p_uuid
, ustr
);
419 asl_msg_set_key_val(msg
, ASL_KEY_SENDER_MACH_UUID
, ustr
);
424 val
= asl_msg_get_val_for_key(msg
, ASL_KEY_TIME
);
425 if (val
!= NULL
) tick
= asl_core_parse_time(val
, NULL
);
427 /* Set time to now if it is unset or from the future (not allowed!) */
428 if ((tick
== 0) || (tick
> now
)) tick
= now
;
430 /* Canonical form: seconds since the epoch */
431 snprintf(buf
, sizeof(buf
) - 1, "%llu", (unsigned long long) tick
);
432 asl_msg_set_key_val(msg
, ASL_KEY_TIME
, buf
);
435 val
= asl_msg_get_val_for_key(msg
, ASL_KEY_HOST
);
436 if (val
== NULL
) asl_msg_set_key_val(msg
, ASL_KEY_HOST
, whatsmyhostname());
440 val
= asl_msg_get_val_for_key(msg
, ASL_KEY_UID
);
443 asl_msg_set_key_val(msg
, ASL_KEY_UID
, "-2");
448 if ((uid
== 0) && strcmp(val
, "0"))
451 asl_msg_set_key_val(msg
, ASL_KEY_UID
, "-2");
456 val
= asl_msg_get_val_for_key(msg
, ASL_KEY_GID
);
459 asl_msg_set_key_val(msg
, ASL_KEY_GID
, "-2");
464 if ((gid
== 0) && strcmp(val
, "0"))
467 asl_msg_set_key_val(msg
, ASL_KEY_GID
, "-2");
474 case SOURCE_INTERNAL
:
477 asl_msg_set_key_val(msg
, ASL_KEY_UID
, "0");
480 asl_msg_set_key_val(msg
, ASL_KEY_GID
, "0");
484 case SOURCE_ASL_MESSAGE
:
491 /* do not trust the UID 0 or GID 0 or 80 in SOURCE_BSD_SOCKET or SOURCE_UNKNOWN */
495 asl_msg_set_key_val(msg
, ASL_KEY_UID
, "-2");
498 if ((gid
== 0) || (gid
== 80))
501 asl_msg_set_key_val(msg
, ASL_KEY_GID
, "-2");
506 if (uid_out
!= NULL
) *uid_out
= uid
;
509 if (sval
== NULL
) sval
= asl_msg_get_val_for_key(msg
, ASL_KEY_SENDER
);
517 asl_msg_set_key_val(msg
, ASL_KEY_SENDER
, sval
);
520 case SOURCE_INTERNAL
:
523 asl_msg_set_key_val(msg
, ASL_KEY_SENDER
, sval
);
528 asl_msg_set_key_val(msg
, ASL_KEY_SENDER
, "Unknown");
532 else if ((source
!= SOURCE_KERN
) && (uid
!= 0) && (!strcmp(sval
, "kernel")))
534 /* allow UID 0 to send messages with "Sender kernel", but nobody else */
535 asl_msg_set_key_val(msg
, ASL_KEY_SENDER
, "Unknown");
540 fac
= asl_msg_get_val_for_key(msg
, ASL_KEY_FACILITY
);
543 if (source
== SOURCE_KERN
) fac
= "kern";
545 asl_msg_set_key_val(msg
, ASL_KEY_FACILITY
, fac
);
547 else if (fac
[0] == '#')
550 if ((fac
[1] >= '0') && (fac
[1] <= '9'))
552 fnum
= atoi(fac
+ 1) << 3;
553 if ((fnum
== 0) && (strcmp(fac
+ 1, "0"))) fnum
= LOG_USER
;
556 fac
= asl_syslog_faciliy_num_to_name(fnum
);
557 asl_msg_set_key_val(msg
, ASL_KEY_FACILITY
, fac
);
559 else if (!strncmp(fac
, SYSTEM_RESERVED
, SYSTEM_RESERVED_LEN
))
561 /* only UID 0 may use "com.apple.system" */
562 if (uid
!= 0) asl_msg_set_key_val(msg
, ASL_KEY_FACILITY
, FACILITY_USER
);
566 * kernel messages are only readable by root and admin group.
567 * all other messages are admin-only readable unless they already
568 * have specific read access controls set.
570 if (source
== SOURCE_KERN
)
572 asl_msg_set_key_val(msg
, ASL_KEY_READ_UID
, "0");
573 asl_msg_set_key_val(msg
, ASL_KEY_READ_GID
, "80");
577 ruval
= asl_msg_get_val_for_key(msg
, ASL_KEY_READ_UID
);
578 rgval
= asl_msg_get_val_for_key(msg
, ASL_KEY_READ_GID
);
580 if ((ruval
== NULL
) && (rgval
== NULL
))
582 asl_msg_set_key_val(msg
, ASL_KEY_READ_GID
, "80");
586 /* Set DB Expire Time for com.apple.system.utmpx and lastlog */
587 if ((!strcmp(fac
, "com.apple.system.utmpx")) || (!strcmp(fac
, "com.apple.system.lastlog")))
589 snprintf(buf
, sizeof(buf
), "%llu", (unsigned long long) tick
+ global
.utmp_ttl
);
590 asl_msg_set_key_val(msg
, ASL_KEY_EXPIRE_TIME
, buf
);
594 * special case handling of kernel disaster messages
596 if ((source
== SOURCE_KERN
) && (level
<= KERN_DISASTER_LEVEL
))
598 if (kern_post_level
!= NULL
) *kern_post_level
= level
;
599 disaster_message(msg
);
603 * gather sender stats
605 if (source
!= SOURCE_INTERNAL
) stats_msg(sval
, now
, msg
);
607 return VERIFY_STATUS_OK
;
611 list_append_msg(asl_msg_list_t
*list
, asl_msg_t
*msg
)
613 if (list
== NULL
) return;
614 if (msg
== NULL
) return;
617 * NB: curr is the list size
618 * grow list if necessary
620 if (list
->count
== list
->curr
)
624 list
->msg
= (asl_msg_t
**)calloc(LIST_SIZE_DELTA
, sizeof(asl_msg_t
*));
628 list
->msg
= (asl_msg_t
**)reallocf(list
->msg
, (list
->curr
+ LIST_SIZE_DELTA
) * sizeof(asl_msg_t
*));
631 if (list
->msg
== NULL
)
638 list
->curr
+= LIST_SIZE_DELTA
;
641 list
->msg
[list
->count
] = (asl_msg_t
*)msg
;
650 OSSpinLockLock(&global
.lock
);
652 global
.pid
= getpid();
654 free(global
.debug_file
);
655 global
.debug_file
= NULL
;
656 global
.launchd_enabled
= 1;
658 #if TARGET_OS_EMBEDDED
659 global
.dbtype
= DB_TYPE_MEMORY
;
661 global
.dbtype
= DB_TYPE_FILE
;
663 global
.db_file_max
= DEFAULT_DB_FILE_MAX
;
664 global
.db_memory_max
= DEFAULT_DB_MEMORY_MAX
;
665 global
.db_memory_str_max
= DEFAULT_DB_MEMORY_STR_MAX
;
666 global
.mps_limit
= DEFAULT_MPS_LIMIT
;
667 global
.remote_delay_time
= DEFAULT_REMOTE_DELAY
;
668 global
.bsd_max_dup_time
= DEFAULT_BSD_MAX_DUP_SEC
;
669 global
.mark_time
= DEFAULT_MARK_SEC
;
670 global
.utmp_ttl
= DEFAULT_UTMP_TTL_SEC
;
671 global
.memory_max
= DEFAULT_MEMORY_MAX
;
672 global
.stats_interval
= DEFAULT_STATS_INTERVAL
;
674 global
.asl_out_module
= asl_out_module_init();
675 OSSpinLockUnlock(&global
.lock
);
677 if (global
.asl_out_module
!= NULL
)
679 for (r
= global
.asl_out_module
->ruleset
; r
!= NULL
; r
= r
->next
)
681 if ((r
->action
== ACTION_SET_PARAM
) && (r
->query
== NULL
) && (!strncmp(r
->options
, "debug", 5))) control_set_param(r
->options
, true);
687 * Used to set config parameters.
688 * Line format "= name value"
691 control_set_param(const char *s
, bool eval
)
694 uint32_t intval
, count
, v32a
, v32b
, v32c
;
696 if (s
== NULL
) return -1;
697 if (s
[0] == '\0') return 0;
699 /* skip '=' and whitespace */
701 while ((*s
== ' ') || (*s
== '\t')) s
++;
703 l
= explode(s
, " \t");
704 if (l
== NULL
) return -1;
706 for (count
= 0; l
[count
] != NULL
; count
++);
708 /* name is required */
715 /* Check variables that allow 0 or 1 / boolean */
716 if (!strcasecmp(l
[0], "debug"))
718 /* = debug [0|1] [file] */
721 intval
= (eval
) ? 1 : 0;
722 config_debug(intval
, NULL
);
724 else if (!strcmp(l
[1], "0"))
726 config_debug(0, l
[2]);
728 else if (!strcmp(l
[1], "1"))
730 config_debug(1, l
[2]);
734 intval
= (eval
) ? 1 : 0;
735 config_debug(intval
, l
[1]);
742 /* value is required */
749 if (!strcasecmp(l
[0], "hostname"))
751 /* = hostname name */
752 OSSpinLockLock(&global
.lock
);
755 global
.hostname
= strdup(l
[1]);
759 free(global
.hostname
);
760 global
.hostname
= NULL
;
762 OSSpinLockUnlock(&global
.lock
);
764 else if (!strcasecmp(l
[0], "mark_time"))
766 /* = mark_time seconds */
767 OSSpinLockLock(&global
.lock
);
768 if (eval
) global
.mark_time
= atoll(l
[1]);
769 else global
.mark_time
= 0;
770 OSSpinLockUnlock(&global
.lock
);
772 else if (!strcasecmp(l
[0], "dup_delay"))
774 /* = bsd_max_dup_time seconds */
775 OSSpinLockLock(&global
.lock
);
776 if (eval
) global
.bsd_max_dup_time
= atoll(l
[1]);
777 else global
.bsd_max_dup_time
= DEFAULT_BSD_MAX_DUP_SEC
;
778 OSSpinLockUnlock(&global
.lock
);
780 else if (!strcasecmp(l
[0], "remote_delay"))
782 /* = remote_delay microseconds */
783 OSSpinLockLock(&global
.lock
);
784 if (eval
) global
.remote_delay_time
= atol(l
[1]);
785 else global
.remote_delay_time
= DEFAULT_REMOTE_DELAY
;
786 OSSpinLockUnlock(&global
.lock
);
788 else if (!strcasecmp(l
[0], "utmp_ttl"))
790 /* = utmp_ttl seconds */
791 OSSpinLockLock(&global
.lock
);
792 if (eval
) global
.utmp_ttl
= (time_t)atoll(l
[1]);
793 else global
.utmp_ttl
= DEFAULT_UTMP_TTL_SEC
;
794 OSSpinLockUnlock(&global
.lock
);
796 else if (!strcasecmp(l
[0], "mps_limit"))
798 /* = mps_limit number */
799 OSSpinLockLock(&global
.lock
);
800 if (eval
) global
.mps_limit
= (uint32_t)atol(l
[1]);
801 else global
.mps_limit
= DEFAULT_MPS_LIMIT
;
802 OSSpinLockUnlock(&global
.lock
);
804 else if (!strcasecmp(l
[0], "memory_max"))
806 /* = memory_max number */
807 OSSpinLockLock(&global
.lock
);
808 if (eval
) global
.memory_max
= (int64_t)atoll(l
[1]);
809 else global
.memory_max
= DEFAULT_MEMORY_MAX
;
810 OSSpinLockUnlock(&global
.lock
);
812 else if (!strcasecmp(l
[0], "stats_interval"))
814 /* = stats_interval number */
815 OSSpinLockLock(&global
.lock
);
816 if (eval
) global
.stats_interval
= (time_t)atoll(l
[1]);
817 else global
.stats_interval
= DEFAULT_STATS_INTERVAL
;
818 OSSpinLockUnlock(&global
.lock
);
820 else if (!strcasecmp(l
[0], "max_file_size"))
822 /* = max_file_size bytes */
823 pthread_mutex_lock(global
.db_lock
);
825 if (global
.dbtype
& DB_TYPE_FILE
)
827 asl_store_close(global
.file_db
);
828 global
.file_db
= NULL
;
829 if (eval
) global
.db_file_max
= atoi(l
[1]);
830 else global
.db_file_max
= DEFAULT_DB_FILE_MAX
;
833 pthread_mutex_unlock(global
.db_lock
);
835 else if ((!strcasecmp(l
[0], "db")) || (!strcasecmp(l
[0], "database")) || (!strcasecmp(l
[0], "datastore")))
837 /* NB this is private / unpublished */
838 /* = db type [max]... */
845 if ((l
[1][0] >= '0') && (l
[1][0] <= '9'))
848 if ((count
>= 3) && (strcmp(l
[2], "-"))) v32a
= atoi(l
[2]);
849 if ((count
>= 4) && (strcmp(l
[3], "-"))) v32b
= atoi(l
[3]);
850 if ((count
>= 5) && (strcmp(l
[4], "-"))) v32c
= atoi(l
[4]);
852 else if (!strcasecmp(l
[1], "file"))
854 intval
= DB_TYPE_FILE
;
855 if ((count
>= 3) && (strcmp(l
[2], "-"))) v32a
= atoi(l
[2]);
857 else if (!strncasecmp(l
[1], "mem", 3))
859 intval
= DB_TYPE_MEMORY
;
860 if ((count
>= 3) && (strcmp(l
[2], "-"))) v32b
= atoi(l
[2]);
868 if (v32a
== 0) v32a
= global
.db_file_max
;
869 if (v32b
== 0) v32b
= global
.db_memory_max
;
870 if (v32c
== 0) v32c
= global
.db_memory_str_max
;
872 config_data_store(intval
, v32a
, v32b
, v32c
);
876 #if TARGET_OS_EMBEDDED
877 intval
= DB_TYPE_MEMORY
;
879 intval
= DB_TYPE_FILE
;
881 config_data_store(intval
, DEFAULT_DB_FILE_MAX
, DEFAULT_DB_MEMORY_MAX
, DEFAULT_DB_MEMORY_STR_MAX
);
890 control_message(asl_msg_t
*msg
)
892 const char *str
= asl_msg_get_val_for_key(msg
, ASL_KEY_MSG
);
894 if (str
== NULL
) return 0;
896 if (!strncmp(str
, "= reset", 7))
899 return asl_action_reset();
901 else if (!strncmp(str
, "= crash", 7))
905 else if (!strncmp(str
, "@ ", 2))
907 return asl_action_control_set_param(str
);
909 else if (!strncmp(str
, "= ", 2))
911 return control_set_param(str
, true);
918 process_message(asl_msg_t
*msg
, uint32_t source
)
921 static bool wq_draining
= false;
922 bool is_control
= false;
925 if (msg
== NULL
) return;
927 is_control
= asl_check_option(msg
, ASL_OPT_CONTROL
) != 0;
929 if ((!is_control
) && wq_draining
)
931 if (global
.memory_size
>= (global
.memory_max
/ 2))
933 asldebug("Work queue draining: dropped message.\n");
934 asl_msg_release(msg
);
939 asldebug("Work queue re-enabled at 1/2 max. size %lld max %lld\n", global
.memory_size
, global
.memory_max
);
944 os_transaction_t transaction
= os_transaction_create("com.apple.syslogd.message");
946 for (x
= msg
; x
!= NULL
; x
= x
->next
) msize
+= x
->mem_size
;
948 if ((global
.memory_size
+ msize
) >= global
.memory_max
)
953 asl_msg_release(msg
);
955 asldebug("Work queue disabled. msize %lld size %lld max %lld\n", msize
, global
.memory_size
+ msize
, global
.memory_max
);
956 snprintf(str
, sizeof(str
), "[Sender syslogd] [Level 2] [PID %u] [Message Internal memory size limit %lld exceeded - dropping messages] [UID 0] [UID 0] [Facility syslog]", global
.pid
, global
.memory_max
);
957 msg
= asl_msg_from_string(str
);
960 OSAtomicAdd64(msize
, &global
.memory_size
);
961 OSAtomicIncrement32(&global
.work_queue_count
);
963 dispatch_async(global
.work_queue
, ^{
971 status
= aslmsg_verify(msg
, source
, &kplevel
, &uid
);
972 if (status
== VERIFY_STATUS_OK
)
974 if ((source
== SOURCE_KERN
) && (kplevel
>= 0))
976 if (kplevel
> 7) kplevel
= 7;
977 if (kern_notify_token
[kplevel
] < 0)
979 status
= notify_register_plain(kern_notify_key
[kplevel
], &(kern_notify_token
[kplevel
]));
980 if (status
!= 0) asldebug("notify_register_plain(%s) failed status %u\n", status
);
983 notify_post(kern_notify_key
[kplevel
]);
986 if ((uid
== 0) && is_control
) control_message(msg
);
989 * Send message to output module chain (asl is first).
990 * The last module in the chain will decrement global.memory_size.
992 asl_out_message(msg
, msize
);
996 OSAtomicAdd64(-1ll * msize
, &global
.memory_size
);
999 asl_msg_release(msg
);
1001 OSAtomicDecrement32(&global
.work_queue_count
);
1002 os_release(transaction
);
1007 internal_log_message(const char *str
)
1011 if (str
== NULL
) return 1;
1013 msg
= asl_msg_from_string(str
);
1014 if (msg
== NULL
) return 1;
1016 process_message(msg
, SOURCE_INTERNAL
);
1022 asldebug(const char *str
, ...)
1027 if (global
.debug
== 0) return 0;
1029 if (global
.debug_file
== NULL
) dfp
= fopen(_PATH_SYSLOGD_LOG
, "a");
1030 else dfp
= fopen(global
.debug_file
, "a");
1031 if (dfp
== NULL
) return 0;
1034 fprintf(dfp
, "W %d %llu", global
.work_queue_count
, global
.memory_size
);
1035 if (global
.memory_db
!= NULL
) fprintf(dfp
, " M %u %u %lu", global
.memory_db
->record_count
, global
.memory_db
->string_count
, global
.memory_db
->curr_string_mem
);
1036 fprintf(dfp
, " ; ");
1037 vfprintf(dfp
, str
, v
);
1050 asprintf(&str
, "[Sender syslogd] [Level 6] [PID %u] [Message -- MARK --] [UID 0] [UID 0] [Facility syslog]", global
.pid
);
1051 internal_log_message(str
);
1056 asl_syslog_input_convert(const char *in
, int len
, char *rhost
, uint32_t source
)
1058 int pf
, pri
, index
, n
;
1059 char *p
, *colon
, *brace
, *space
, *tmp
, *tval
, *hval
, *sval
, *pval
, *mval
;
1066 if (in
== NULL
) return NULL
;
1067 if (len
<= 0) return NULL
;
1070 if (source
== SOURCE_KERN
) pri
= LOG_NOTICE
;
1082 /* skip leading whitespace */
1083 while ((index
< len
) && ((*p
== ' ') || (*p
== '\t')))
1089 if (index
>= len
) return NULL
;
1091 /* parse "<NN>" priority (level and facility) */
1097 n
= sscanf(p
, "%d", &pf
);
1101 if (pf
> 0x7) fval
= asl_syslog_faciliy_num_to_name(pf
& LOG_FACMASK
);
1104 while ((index
< len
) && (*p
!= '>'))
1117 snprintf(prival
, sizeof(prival
), "%d", pri
);
1119 /* check if a timestamp is included */
1120 if (((len
- index
) > 15) && (p
[9] == ':') && (p
[12] == ':') && (p
[15] == ' '))
1123 if (tmp
== NULL
) return NULL
;
1128 tick
= asl_core_parse_time(tmp
, NULL
);
1129 if (tick
== (time_t)-1)
1136 gmtime_r(&tick
, &time
);
1137 asprintf(&tval
, "%d.%02d.%02d %02d:%02d:%02d UTC", time
.tm_year
+ 1900, time
.tm_mon
+ 1, time
.tm_mday
, time
.tm_hour
, time
.tm_min
, time
.tm_sec
);
1144 /* stop here for kernel messages */
1145 if (source
== SOURCE_KERN
)
1147 msg
= asl_msg_new(ASL_TYPE_MSG
);
1148 if (msg
== NULL
) return NULL
;
1150 asl_msg_set_key_val(msg
, ASL_KEY_MSG
, p
);
1151 asl_msg_set_key_val(msg
, ASL_KEY_LEVEL
, prival
);
1152 asl_msg_set_key_val(msg
, ASL_KEY_PID
, "0");
1157 /* if message is from a network socket, hostname follows */
1158 if (source
== SOURCE_UDP_SOCKET
)
1160 space
= strchr(p
, ' ');
1164 hval
= malloc(n
+ 1);
1165 if (hval
== NULL
) return NULL
;
1175 colon
= strchr(p
, ':');
1176 brace
= strchr(p
, '[');
1178 /* check for "sender:" or sender[pid]:" */
1181 if ((brace
!= NULL
) && (brace
< colon
))
1184 sval
= malloc(n
+ 1);
1185 if (sval
== NULL
) return NULL
;
1190 n
= colon
- (brace
+ 1) - 1;
1191 pval
= malloc(n
+ 1);
1192 if (pval
== NULL
) return NULL
;
1194 memcpy(pval
, (brace
+ 1), n
);
1200 sval
= malloc(n
+ 1);
1201 if (sval
== NULL
) return NULL
;
1221 mval
= malloc(n
+ 1);
1222 if (mval
== NULL
) return NULL
;
1228 if (fval
== NULL
) fval
= asl_syslog_faciliy_num_to_name(LOG_USER
);
1230 msg
= asl_msg_new(ASL_TYPE_MSG
);
1231 if (msg
== NULL
) return NULL
;
1235 asl_msg_set_key_val(msg
, ASL_KEY_TIME
, tval
);
1239 if (fval
!= NULL
) asl_msg_set_key_val(msg
, "Facility", fval
);
1240 else asl_msg_set_key_val(msg
, "Facility", "user");
1244 asl_msg_set_key_val(msg
, ASL_KEY_SENDER
, sval
);
1250 asl_msg_set_key_val(msg
, ASL_KEY_PID
, pval
);
1255 asl_msg_set_key_val(msg
, ASL_KEY_PID
, "-1");
1260 asl_msg_set_key_val(msg
, ASL_KEY_MSG
, mval
);
1264 asl_msg_set_key_val(msg
, ASL_KEY_LEVEL
, prival
);
1265 asl_msg_set_key_val(msg
, ASL_KEY_UID
, "-2");
1266 asl_msg_set_key_val(msg
, ASL_KEY_GID
, "-2");
1270 asl_msg_set_key_val(msg
, ASL_KEY_HOST
, hval
);
1273 else if (rhost
!= NULL
)
1275 asl_msg_set_key_val(msg
, ASL_KEY_HOST
, rhost
);
1282 asl_input_parse(const char *in
, int len
, char *rhost
, uint32_t source
)
1285 int status
, x
, legacy
, off
;
1287 asldebug("asl_input_parse: %s\n", (in
== NULL
) ? "NULL" : in
);
1289 if (in
== NULL
) return NULL
;
1294 /* calculate length if not provided */
1295 if (len
== 0) len
= strlen(in
);
1298 * Determine if the input is "old" syslog format or new ASL format.
1299 * Old format lines should start with "<", but they can just be straight text.
1300 * ASL input may start with a length (10 bytes) followed by a space and a '['.
1301 * The length is optional, so ASL messages may also just start with '['.
1303 if ((in
[0] != '<') && (len
> 11))
1305 status
= sscanf(in
, "%d ", &x
);
1306 if ((status
== 1) && (in
[10] == ' ') && (in
[11] == '[')) legacy
= 0;
1309 if (legacy
== 1) return asl_syslog_input_convert(in
, len
, rhost
, source
);
1312 if (in
[0] == '[') off
= 0;
1314 msg
= asl_msg_from_string(in
+ off
);
1315 if (msg
== NULL
) return NULL
;
1317 if (rhost
!= NULL
) asl_msg_set_key_val(msg
, ASL_KEY_HOST
, rhost
);
1322 #if !TARGET_OS_SIMULATOR
1324 launchd_callback(struct timeval
*when
, pid_t from_pid
, pid_t about_pid
, uid_t sender_uid
, gid_t sender_gid
, int priority
, const char *from_name
, const char *about_name
, const char *session_name
, const char *msg
)
1330 if (global
.launchd_enabled
== 0) return;
1333 asldebug("launchd_callback Time %lu %lu PID %u RefPID %u UID %d GID %d PRI %d Sender %s Ref %s Session %s Message %s\n",
1334 when->tv_sec, when->tv_usec, from_pid, about_pid, sender_uid, sender_gid, priority, from_name, about_name, session_name, msg);
1337 m
= asl_msg_new(ASL_TYPE_MSG
);
1338 if (m
== NULL
) return;
1341 if (priority
< ASL_LEVEL_EMERG
) priority
= ASL_LEVEL_EMERG
;
1342 if (priority
> ASL_LEVEL_DEBUG
) priority
= ASL_LEVEL_DEBUG
;
1343 snprintf(str
, sizeof(str
), "%d", priority
);
1345 asl_msg_set_key_val(m
, ASL_KEY_LEVEL
, str
);
1350 snprintf(str
, sizeof(str
), "%llu", (unsigned long long) when
->tv_sec
);
1351 asl_msg_set_key_val(m
, ASL_KEY_TIME
, str
);
1353 snprintf(str
, sizeof(str
), "%lu", 1000 * (unsigned long int)when
->tv_usec
);
1354 asl_msg_set_key_val(m
, ASL_KEY_TIME_NSEC
, str
);
1359 snprintf(str
, sizeof(str
), "%llu", (unsigned long long) now
);
1360 asl_msg_set_key_val(m
, ASL_KEY_TIME
, str
);
1364 asl_msg_set_key_val(m
, ASL_KEY_FACILITY
, FACILITY_CONSOLE
);
1367 snprintf(str
, sizeof(str
), "%u", (unsigned int)sender_uid
);
1368 asl_msg_set_key_val(m
, ASL_KEY_UID
, str
);
1371 snprintf(str
, sizeof(str
), "%u", (unsigned int)sender_gid
);
1372 asl_msg_set_key_val(m
, ASL_KEY_GID
, str
);
1377 snprintf(str
, sizeof(str
), "%u", (unsigned int)from_pid
);
1378 asl_msg_set_key_val(m
, ASL_KEY_PID
, str
);
1382 if ((about_pid
> 0) && (about_pid
!= from_pid
))
1384 snprintf(str
, sizeof(str
), "%u", (unsigned int)about_pid
);
1385 asl_msg_set_key_val(m
, ASL_KEY_REF_PID
, str
);
1389 if (from_name
!= NULL
)
1391 asl_msg_set_key_val(m
, ASL_KEY_SENDER
, from_name
);
1395 if (sender_uid
!= 0)
1397 snprintf(str
, sizeof(str
), "%d", (int)sender_uid
);
1398 asl_msg_set_key_val(m
, ASL_KEY_READ_UID
, str
);
1401 /* Reference Process */
1402 if (about_name
!= NULL
)
1404 if ((from_name
!= NULL
) && (strcmp(from_name
, about_name
) != 0))
1406 asl_msg_set_key_val(m
, ASL_KEY_REF_PROC
, about_name
);
1411 if (session_name
!= NULL
)
1413 asl_msg_set_key_val(m
, ASL_KEY_SESSION
, session_name
);
1419 asl_msg_set_key_val(m
, ASL_KEY_MSG
, msg
);
1422 process_message(m
, SOURCE_LAUNCHD
);