2 * Copyright (c) 2000-2016 Apple, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_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. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
28 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
30 * Copyright (c) 1982, 1986, 1993
31 * The Regents of the University of California. All rights reserved.
33 * Redistribution and use in source and binary forms, with or without
34 * modification, are permitted provided that the following conditions
36 * 1. Redistributions of source code must retain the above copyright
37 * notice, this list of conditions and the following disclaimer.
38 * 2. Redistributions in binary form must reproduce the above copyright
39 * notice, this list of conditions and the following disclaimer in the
40 * documentation and/or other materials provided with the distribution.
41 * 3. All advertising materials mentioning features or use of this software
42 * must display the following acknowledgement:
43 * This product includes software developed by the University of
44 * California, Berkeley and its contributors.
45 * 4. Neither the name of the University nor the names of its contributors
46 * may be used to endorse or promote products derived from this software
47 * without specific prior written permission.
49 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
50 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
51 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
52 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
53 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
54 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
55 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
58 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
61 * @(#)subr_log.c 8.3 (Berkeley) 2/14/95
65 * Error log buffer for kernel printf's.
68 #include <sys/param.h>
69 #include <sys/systm.h>
70 #include <sys/proc_internal.h>
71 #include <sys/vnode.h>
73 #include <firehose/tracepoint_private.h>
74 #include <firehose/chunk_private.h>
75 #include <firehose/ioctl_private.h>
76 #include <os/firehose_buffer_private.h>
78 #include <os/log_private.h>
79 #include <sys/ioctl.h>
80 #include <sys/msgbuf.h>
81 #include <sys/file_internal.h>
82 #include <sys/errno.h>
83 #include <sys/select.h>
84 #include <sys/kernel.h>
85 #include <kern/thread.h>
86 #include <kern/sched_prim.h>
87 #include <kern/simple_lock.h>
89 #include <sys/signalvar.h>
91 #include <sys/sysctl.h>
92 #include <sys/queue.h>
93 #include <kern/kalloc.h>
94 #include <pexpert/pexpert.h>
95 #include <mach/mach_port.h>
96 #include <mach/mach_vm.h>
97 #include <mach/vm_map.h>
98 #include <vm/vm_kern.h>
99 #include <kern/task.h>
100 #include <kern/locks.h>
102 /* XXX should be in a common header somewhere */
103 extern void logwakeup(struct msgbuf
*);
104 extern void oslogwakeup(void);
105 extern void oslog_streamwakeup(void);
106 static void oslog_streamwakeup_locked(void);
107 vm_offset_t kernel_firehose_addr
= 0;
109 /* log message counters for streaming mode */
110 uint32_t oslog_s_streamed_msgcount
= 0;
111 uint32_t oslog_s_dropped_msgcount
= 0;
112 extern uint32_t oslog_s_error_count
;
114 #define LOG_RDPRI (PZERO + 1)
116 #define LOG_NBIO 0x02
117 #define LOG_ASYNC 0x04
118 #define LOG_RDWAIT 0x08
120 /* All globals should be accessed under LOG_LOCK() */
122 static char amsg_bufc
[1024];
123 static struct msgbuf aslbuf
= {MSG_MAGIC
, sizeof(amsg_bufc
), 0, 0, amsg_bufc
};
124 struct msgbuf
*aslbufp
__attribute__((used
)) = &aslbuf
;
126 /* logsoftc only valid while log_open=1 */
128 int sc_state
; /* see above for possibilities */
129 struct selinfo sc_selp
; /* thread waiting for select */
130 int sc_pgid
; /* process/group for async I/O */
131 struct msgbuf
*sc_mbp
;
135 char smsg_bufc
[CONFIG_MSG_BSIZE
]; /* static buffer */
136 char oslog_stream_bufc
[FIREHOSE_CHUNK_SIZE
]; /* static buffer */
137 struct firehose_chunk_s oslog_boot_buf
= {
139 .fcp_next_entry_offs
= offsetof(struct firehose_chunk_s
, fc_data
),
140 .fcp_private_offs
= FIREHOSE_CHUNK_SIZE
,
141 .fcp_refcnt
= 1, // indicate that there is a writer to this chunk
142 .fcp_stream
= firehose_stream_persist
,
143 .fcp_flag_io
= 1, // for now, lets assume this is coming from the io bank
145 }; /* static buffer */
146 firehose_chunk_t firehose_boot_chunk
= &oslog_boot_buf
;
147 struct msgbuf msgbuf
= {MSG_MAGIC
, sizeof(smsg_bufc
), 0, 0, smsg_bufc
};
148 struct msgbuf oslog_stream_buf
= {MSG_MAGIC
, 0, 0, 0, NULL
};
149 struct msgbuf
*msgbufp
__attribute__((used
)) = &msgbuf
;
150 struct msgbuf
*oslog_streambufp
__attribute__((used
)) = &oslog_stream_buf
;
152 // List entries for keeping track of the streaming buffer
153 static oslog_stream_buf_entry_t oslog_stream_buf_entries
;
155 #define OSLOG_NUM_STREAM_ENTRIES 64
156 #define OSLOG_STREAM_BUF_SIZE 4096
159 int os_log_wakeup
= 0;
160 int oslog_stream_open
= 0;
161 int oslog_stream_buf_bytesavail
= 0;
162 int oslog_stream_buf_size
= OSLOG_STREAM_BUF_SIZE
;
163 int oslog_stream_num_entries
= OSLOG_NUM_STREAM_ENTRIES
;
165 uint8_t __firehose_buffer_kernel_chunk_count
= FIREHOSE_BUFFER_KERNEL_DEFAULT_CHUNK_COUNT
;
166 uint8_t __firehose_num_kernel_io_pages
= FIREHOSE_BUFFER_KERNEL_DEFAULT_IO_PAGES
;
168 /* oslogsoftc only valid while oslog_open=1 */
170 int sc_state
; /* see above for possibilities */
171 struct selinfo sc_selp
; /* thread waiting for select */
172 int sc_pgid
; /* process/group for async I/O */
175 struct oslog_streamsoftc
{
176 int sc_state
; /* see above for possibilities */
177 struct selinfo sc_selp
; /* thread waiting for select */
178 int sc_pgid
; /* process/group for async I/O */
181 STAILQ_HEAD(, oslog_stream_buf_entry_s
) oslog_stream_free_head
=
182 STAILQ_HEAD_INITIALIZER(oslog_stream_free_head
);
183 STAILQ_HEAD(, oslog_stream_buf_entry_s
) oslog_stream_buf_head
=
184 STAILQ_HEAD_INITIALIZER(oslog_stream_buf_head
);
186 /* defined in osfmk/kern/printf.c */
187 extern void oslog_lock_init(void);
188 extern void bsd_log_lock(void);
189 extern void bsd_log_unlock(void);
191 /* defined for osfmk/kern/printf.c */
192 void bsd_log_init(void);
195 * Ideally this file would define this lock, but bsd doesn't have the definition
198 decl_lck_spin_data(extern, oslog_stream_lock
)
199 #define stream_lock() lck_spin_lock(&oslog_stream_lock)
200 #define stream_unlock() lck_spin_unlock(&oslog_stream_lock)
202 /* XXX wants a linker set so these can be static */
203 extern d_open_t logopen
;
204 extern d_close_t logclose
;
205 extern d_read_t logread
;
206 extern d_ioctl_t logioctl
;
207 extern d_select_t logselect
;
209 /* XXX wants a linker set so these can be static */
210 extern d_open_t oslogopen
;
211 extern d_close_t oslogclose
;
212 extern d_select_t oslogselect
;
213 extern d_ioctl_t oslogioctl
;
215 /* XXX wants a linker set so these can be static */
216 extern d_open_t oslog_streamopen
;
217 extern d_close_t oslog_streamclose
;
218 extern d_read_t oslog_streamread
;
219 extern d_ioctl_t oslog_streamioctl
;
220 extern d_select_t oslog_streamselect
;
222 void oslog_init(void);
223 void oslog_setsize(int size
);
224 void oslog_streamwrite_locked(firehose_tracepoint_id_u ftid
,
225 uint64_t stamp
, const void *pubdata
, size_t publen
);
226 void oslog_streamwrite_metadata_locked(oslog_stream_buf_entry_t m_entry
);
227 static oslog_stream_buf_entry_t
oslog_stream_find_free_buf_entry_locked(void);
228 static void oslog_streamwrite_append_bytes(const char *buffer
, int buflen
);
231 * Serialize log access. Note that the log can be written at interrupt level,
232 * so any log manipulations that can be done from, or affect, another processor
233 * at interrupt level must be guarded with a spin lock.
236 #define LOG_LOCK() bsd_log_lock()
237 #define LOG_UNLOCK() bsd_log_unlock()
240 #define LOG_SETSIZE_DEBUG(x...) kprintf(x)
242 #define LOG_SETSIZE_DEBUG(x...) do { } while(0)
245 static int sysctl_kern_msgbuf(struct sysctl_oid
*oidp
,
246 void *arg1
, int arg2
, struct sysctl_req
*req
);
250 logopen(__unused dev_t dev
, __unused
int flags
, __unused
int mode
, struct proc
*p
)
257 if (atm_get_diagnostic_config() & ATM_ENABLE_LEGACY_LOGGING
) {
258 logsoftc
.sc_mbp
= msgbufp
;
261 * Support for messagetracer (kern_asl_msg())
262 * In this mode, /dev/klog exports only ASL-formatted messages
263 * written into aslbufp via vaddlog().
265 logsoftc
.sc_mbp
= aslbufp
;
267 logsoftc
.sc_pgid
= p
->p_pid
; /* signal process only */
277 logclose(__unused dev_t dev
, __unused
int flag
, __unused
int devtype
, __unused
struct proc
*p
)
280 logsoftc
.sc_state
&= ~(LOG_NBIO
| LOG_ASYNC
);
281 selwakeup(&logsoftc
.sc_selp
);
282 selthreadclear(&logsoftc
.sc_selp
);
290 oslogopen(__unused dev_t dev
, __unused
int flags
, __unused
int mode
, struct proc
*p
)
297 oslogsoftc
.sc_pgid
= p
->p_pid
; /* signal process only */
305 oslogclose(__unused dev_t dev
, __unused
int flag
, __unused
int devtype
, __unused
struct proc
*p
)
308 oslogsoftc
.sc_state
&= ~(LOG_NBIO
| LOG_ASYNC
);
309 selwakeup(&oslogsoftc
.sc_selp
);
310 selthreadclear(&oslogsoftc
.sc_selp
);
317 oslog_streamopen(__unused dev_t dev
, __unused
int flags
, __unused
int mode
, struct proc
*p
)
319 char *oslog_stream_msg_bufc
= NULL
;
320 oslog_stream_buf_entry_t entries
= NULL
;
323 if (oslog_stream_open
) {
329 // Allocate the stream buffer
330 oslog_stream_msg_bufc
= kalloc(oslog_stream_buf_size
);
331 if (!oslog_stream_msg_bufc
) {
335 /* entries to support kernel logging in stream mode */
336 entries
= kalloc(oslog_stream_num_entries
* sizeof(struct oslog_stream_buf_entry_s
));
338 kfree(oslog_stream_msg_bufc
, oslog_stream_buf_size
);
343 if (oslog_stream_open
) {
345 kfree(oslog_stream_msg_bufc
, oslog_stream_buf_size
);
346 kfree(entries
, oslog_stream_num_entries
* sizeof(struct oslog_stream_buf_entry_s
));
350 assert(oslog_streambufp
->msg_bufc
== NULL
);
351 oslog_streambufp
->msg_bufc
= oslog_stream_msg_bufc
;
352 oslog_streambufp
->msg_size
= oslog_stream_buf_size
;
354 oslog_stream_buf_entries
= entries
;
356 STAILQ_INIT(&oslog_stream_free_head
);
357 STAILQ_INIT(&oslog_stream_buf_head
);
359 for (int i
= 0; i
< oslog_stream_num_entries
; i
++) {
360 oslog_stream_buf_entries
[i
].type
= oslog_stream_link_type_log
;
361 oslog_stream_buf_entries
[i
].offset
= 0;
362 oslog_stream_buf_entries
[i
].size
= 0;
363 oslog_stream_buf_entries
[i
].timestamp
= 0;
364 STAILQ_INSERT_TAIL(&oslog_stream_free_head
, &oslog_stream_buf_entries
[i
], buf_entries
);
367 /* there should be no pending entries in the stream */
368 assert(STAILQ_EMPTY(&oslog_stream_buf_head
));
369 assert(oslog_streambufp
->msg_bufx
== 0);
370 assert(oslog_streambufp
->msg_bufr
== 0);
372 oslog_streambufp
->msg_bufx
= 0;
373 oslog_streambufp
->msg_bufr
= 0;
374 oslog_streamsoftc
.sc_pgid
= p
->p_pid
; /* signal process only */
375 oslog_stream_open
= 1;
376 oslog_stream_buf_bytesavail
= oslog_stream_buf_size
;
383 oslog_streamclose(__unused dev_t dev
, __unused
int flag
, __unused
int devtype
, __unused
struct proc
*p
)
385 oslog_stream_buf_entry_t next_entry
= NULL
;
386 char *oslog_stream_msg_bufc
= NULL
;
387 oslog_stream_buf_entry_t entries
= NULL
;
391 if (oslog_stream_open
== 0) {
396 // Consume all log lines
397 while (!STAILQ_EMPTY(&oslog_stream_buf_head
)) {
398 next_entry
= STAILQ_FIRST(&oslog_stream_buf_head
);
399 STAILQ_REMOVE_HEAD(&oslog_stream_buf_head
, buf_entries
);
401 oslog_streamwakeup_locked();
402 oslog_streamsoftc
.sc_state
&= ~(LOG_NBIO
| LOG_ASYNC
);
403 selwakeup(&oslog_streamsoftc
.sc_selp
);
404 selthreadclear(&oslog_streamsoftc
.sc_selp
);
405 oslog_stream_open
= 0;
406 oslog_streambufp
->msg_bufr
= 0;
407 oslog_streambufp
->msg_bufx
= 0;
408 oslog_stream_msg_bufc
= oslog_streambufp
->msg_bufc
;
409 oslog_streambufp
->msg_bufc
= NULL
;
410 entries
= oslog_stream_buf_entries
;
411 oslog_stream_buf_entries
= NULL
;
412 oslog_streambufp
->msg_size
= 0;
416 // Free the stream buffer
417 kfree(oslog_stream_msg_bufc
, oslog_stream_buf_size
);
418 // Free the list entries
419 kfree(entries
, oslog_stream_num_entries
* sizeof(struct oslog_stream_buf_entry_s
));
426 logread(__unused dev_t dev
, struct uio
*uio
, int flag
)
430 struct msgbuf
*mbp
= logsoftc
.sc_mbp
;
433 while (mbp
->msg_bufr
== mbp
->msg_bufx
) {
434 if (flag
& IO_NDELAY
) {
438 if (logsoftc
.sc_state
& LOG_NBIO
) {
442 logsoftc
.sc_state
|= LOG_RDWAIT
;
445 * If the wakeup is missed
446 * then wait for 5 sec and reevaluate
448 if ((error
= tsleep((caddr_t
)mbp
, LOG_RDPRI
| PCATCH
,
449 "klog", 5 * hz
)) != 0) {
450 /* if it times out; ignore */
451 if (error
!= EWOULDBLOCK
) {
457 logsoftc
.sc_state
&= ~LOG_RDWAIT
;
459 while (uio_resid(uio
) > 0) {
462 l
= mbp
->msg_bufx
- mbp
->msg_bufr
;
464 l
= mbp
->msg_size
- mbp
->msg_bufr
;
466 l
= min(l
, uio_resid(uio
));
471 readpos
= mbp
->msg_bufr
;
473 error
= uiomove((caddr_t
)&mbp
->msg_bufc
[readpos
], l
, uio
);
478 mbp
->msg_bufr
= readpos
+ l
;
479 if (mbp
->msg_bufr
>= mbp
->msg_size
) {
490 oslog_streamread(__unused dev_t dev
, struct uio
*uio
, int flag
)
494 static char logline
[FIREHOSE_CHUNK_SIZE
];
498 if (!oslog_stream_open
) {
503 while (STAILQ_EMPTY(&oslog_stream_buf_head
)) {
504 assert(oslog_stream_buf_bytesavail
== oslog_stream_buf_size
);
506 if (flag
& IO_NDELAY
|| oslog_streamsoftc
.sc_state
& LOG_NBIO
) {
511 oslog_streamsoftc
.sc_state
|= LOG_RDWAIT
;
512 wait_result_t wr
= assert_wait((event_t
)oslog_streambufp
,
513 THREAD_INTERRUPTIBLE
);
514 if (wr
== THREAD_WAITING
) {
516 wr
= thread_block(THREAD_CONTINUE_NULL
);
521 case THREAD_AWAKENED
:
522 case THREAD_TIMED_OUT
:
530 if (!oslog_stream_open
) {
536 oslog_stream_buf_entry_t read_entry
= NULL
;
539 read_entry
= STAILQ_FIRST(&oslog_stream_buf_head
);
540 assert(read_entry
!= NULL
);
541 STAILQ_REMOVE_HEAD(&oslog_stream_buf_head
, buf_entries
);
543 // Copy the timestamp first
544 memcpy(logline
+ logpos
, &read_entry
->timestamp
, sizeof(uint64_t));
545 logpos
+= sizeof(uint64_t);
547 switch (read_entry
->type
) {
548 /* Handle metadata messages */
549 case oslog_stream_link_type_metadata
:
551 memcpy(logline
+ logpos
,
552 (read_entry
->metadata
), read_entry
->size
);
553 logpos
+= read_entry
->size
;
557 // Free the list entry
558 kfree(read_entry
, (sizeof(struct oslog_stream_buf_entry_s
) + read_entry
->size
));
561 /* Handle log messages */
562 case oslog_stream_link_type_log
:
564 /* ensure that the correct read entry was dequeued */
565 assert(read_entry
->offset
== oslog_streambufp
->msg_bufr
);
566 rec_length
= read_entry
->size
;
568 // If the next log line is contiguous in the buffer, copy it out.
569 if (read_entry
->offset
+ rec_length
<= oslog_streambufp
->msg_size
) {
570 memcpy(logline
+ logpos
,
571 oslog_streambufp
->msg_bufc
+ read_entry
->offset
, rec_length
);
573 oslog_streambufp
->msg_bufr
+= rec_length
;
574 if (oslog_streambufp
->msg_bufr
== oslog_streambufp
->msg_size
) {
575 oslog_streambufp
->msg_bufr
= 0;
577 logpos
+= rec_length
;
579 // Otherwise, copy until the end of the buffer, and
580 // copy the remaining bytes starting at index 0.
581 int bytes_left
= oslog_streambufp
->msg_size
- read_entry
->offset
;
582 memcpy(logline
+ logpos
,
583 oslog_streambufp
->msg_bufc
+ read_entry
->offset
, bytes_left
);
584 logpos
+= bytes_left
;
585 rec_length
-= bytes_left
;
587 memcpy(logline
+ logpos
, (const void *)oslog_streambufp
->msg_bufc
,
589 oslog_streambufp
->msg_bufr
= rec_length
;
590 logpos
+= rec_length
;
593 oslog_stream_buf_bytesavail
+= read_entry
->size
;
594 assert(oslog_stream_buf_bytesavail
<= oslog_stream_buf_size
);
596 assert(oslog_streambufp
->msg_bufr
< oslog_streambufp
->msg_size
);
597 STAILQ_INSERT_TAIL(&oslog_stream_free_head
, read_entry
, buf_entries
);
604 panic("Got unexpected log entry type: %hhu\n", read_entry
->type
);
608 copy_size
= min(logpos
, uio_resid(uio
));
609 if (copy_size
!= 0) {
610 error
= uiomove((caddr_t
)logline
, copy_size
, uio
);
612 (void)hw_atomic_add(&oslog_s_streamed_msgcount
, 1);
619 logselect(__unused dev_t dev
, int rw
, void * wql
, struct proc
*p
)
621 const struct msgbuf
*mbp
= logsoftc
.sc_mbp
;
626 if (mbp
->msg_bufr
!= mbp
->msg_bufx
) {
630 selrecord(p
, &logsoftc
.sc_selp
, wql
);
638 oslogselect(__unused dev_t dev
, int rw
, void * wql
, struct proc
*p
)
647 selrecord(p
, &oslogsoftc
.sc_selp
, wql
);
655 oslog_streamselect(__unused dev_t dev
, int rw
, void * wql
, struct proc
*p
)
663 if (STAILQ_EMPTY(&oslog_stream_buf_head
)) {
664 selrecord(p
, &oslog_streamsoftc
.sc_selp
, wql
);
676 logwakeup(struct msgbuf
*mbp
)
678 /* cf. r24974766 & r25201228*/
679 if (oslog_is_safe() == FALSE
) {
689 mbp
= logsoftc
.sc_mbp
;
691 if (mbp
!= logsoftc
.sc_mbp
) {
694 selwakeup(&logsoftc
.sc_selp
);
695 if (logsoftc
.sc_state
& LOG_ASYNC
) {
696 int pgid
= logsoftc
.sc_pgid
;
699 gsignal(-pgid
, SIGIO
);
701 proc_signal(pgid
, SIGIO
);
705 if (logsoftc
.sc_state
& LOG_RDWAIT
) {
706 wakeup((caddr_t
)mbp
);
707 logsoftc
.sc_state
&= ~LOG_RDWAIT
;
721 selwakeup(&oslogsoftc
.sc_selp
);
727 oslog_streamwakeup_locked(void)
729 LCK_SPIN_ASSERT(&oslog_stream_lock
, LCK_ASSERT_OWNED
);
730 if (!oslog_stream_open
) {
733 selwakeup(&oslog_streamsoftc
.sc_selp
);
734 if (oslog_streamsoftc
.sc_state
& LOG_RDWAIT
) {
735 wakeup((caddr_t
)oslog_streambufp
);
736 oslog_streamsoftc
.sc_state
&= ~LOG_RDWAIT
;
741 oslog_streamwakeup(void)
743 /* cf. r24974766 & r25201228*/
744 if (oslog_is_safe() == FALSE
) {
749 oslog_streamwakeup_locked();
755 logioctl(__unused dev_t dev
, u_long com
, caddr_t data
, __unused
int flag
, __unused
struct proc
*p
)
758 const struct msgbuf
*mbp
= logsoftc
.sc_mbp
;
762 /* return number of characters immediately available */
764 l
= mbp
->msg_bufx
- mbp
->msg_bufr
;
773 logsoftc
.sc_state
|= LOG_NBIO
;
775 logsoftc
.sc_state
&= ~LOG_NBIO
;
781 logsoftc
.sc_state
|= LOG_ASYNC
;
783 logsoftc
.sc_state
&= ~LOG_ASYNC
;
788 logsoftc
.sc_pgid
= *(int *)data
;
792 *(int *)data
= logsoftc
.sc_pgid
;
805 oslogioctl(__unused dev_t dev
, u_long com
, caddr_t data
, __unused
int flag
, __unused
struct proc
*p
)
808 mach_vm_size_t buffer_size
= (__firehose_buffer_kernel_chunk_count
* FIREHOSE_CHUNK_SIZE
);
809 firehose_buffer_map_info_t map_info
= {0, 0};
810 firehose_buffer_t kernel_firehose_buffer
= NULL
;
811 mach_vm_address_t user_addr
= 0;
812 mach_port_t mem_entry_ptr
= MACH_PORT_NULL
;
815 /* return number of characters immediately available */
818 kernel_firehose_buffer
= (firehose_buffer_t
)kernel_firehose_addr
;
820 ret
= mach_make_memory_entry_64(kernel_map
,
822 (mach_vm_offset_t
) kernel_firehose_buffer
,
823 (MAP_MEM_VM_SHARE
| VM_PROT_READ
),
826 if (ret
== KERN_SUCCESS
) {
827 ret
= mach_vm_map_kernel(get_task_map(current_task()),
832 VM_MAP_KERNEL_FLAGS_NONE
,
842 if (ret
== KERN_SUCCESS
) {
843 map_info
.fbmi_addr
= (uint64_t) (user_addr
);
844 map_info
.fbmi_size
= buffer_size
;
845 bcopy(&map_info
, data
, sizeof(firehose_buffer_map_info_t
));
852 __firehose_merge_updates(*(firehose_push_reply_t
*)(data
));
862 oslog_streamioctl(__unused dev_t dev
, u_long com
, caddr_t data
, __unused
int flag
, __unused
struct proc
*p
)
870 if (data
&& *(int *)data
) {
871 oslog_streamsoftc
.sc_state
|= LOG_NBIO
;
873 oslog_streamsoftc
.sc_state
&= ~LOG_NBIO
;
877 if (data
&& *(int *)data
) {
878 oslog_streamsoftc
.sc_state
|= LOG_ASYNC
;
880 oslog_streamsoftc
.sc_state
&= ~LOG_ASYNC
;
895 /* After this point, we must be ready to accept characters */
902 if (!PE_parse_boot_argn("firehose_chunk_count", &__firehose_buffer_kernel_chunk_count
, sizeof(__firehose_buffer_kernel_chunk_count
))) {
903 __firehose_buffer_kernel_chunk_count
= FIREHOSE_BUFFER_KERNEL_DEFAULT_CHUNK_COUNT
;
905 if (!PE_parse_boot_argn("firehose_io_pages", &__firehose_num_kernel_io_pages
, sizeof(__firehose_num_kernel_io_pages
))) {
906 __firehose_num_kernel_io_pages
= FIREHOSE_BUFFER_KERNEL_DEFAULT_IO_PAGES
;
908 if (!__firehose_kernel_configuration_valid(__firehose_buffer_kernel_chunk_count
, __firehose_num_kernel_io_pages
)) {
909 printf("illegal firehose configuration %u/%u, using defaults\n", __firehose_buffer_kernel_chunk_count
, __firehose_num_kernel_io_pages
);
910 __firehose_buffer_kernel_chunk_count
= FIREHOSE_BUFFER_KERNEL_DEFAULT_CHUNK_COUNT
;
911 __firehose_num_kernel_io_pages
= FIREHOSE_BUFFER_KERNEL_DEFAULT_IO_PAGES
;
913 vm_size_t size
= __firehose_buffer_kernel_chunk_count
* FIREHOSE_CHUNK_SIZE
;
917 kr
= kmem_alloc_flags(kernel_map
, &kernel_firehose_addr
,
918 size
+ (2 * PAGE_SIZE
), VM_KERN_MEMORY_LOG
,
919 KMA_GUARD_FIRST
| KMA_GUARD_LAST
);
920 if (kr
!= KERN_SUCCESS
) {
921 panic("Failed to allocate memory for firehose logging buffer");
923 kernel_firehose_addr
+= PAGE_SIZE
;
924 bzero((void *)kernel_firehose_addr
, size
);
925 /* register buffer with firehose */
926 kernel_firehose_addr
= (vm_offset_t
)__firehose_buffer_create((size_t *) &size
);
928 printf("oslog_init completed, %u chunks, %u io pages\n", __firehose_buffer_kernel_chunk_count
, __firehose_num_kernel_io_pages
);
934 * Decription: Output a character to the log; assumes the LOG_LOCK() is held
937 * Parameters: c Character to output
941 * Notes: This functions is used for multibyte output to the log; it
942 * should be used preferrentially where possible to ensure that
943 * log entries do not end up interspersed due to preemption or
947 log_putc_locked(struct msgbuf
*mbp
, char c
)
949 mbp
->msg_bufc
[mbp
->msg_bufx
++] = c
;
950 if (mbp
->msg_bufx
>= mbp
->msg_size
) {
955 static oslog_stream_buf_entry_t
956 oslog_stream_find_free_buf_entry_locked(void)
959 oslog_stream_buf_entry_t buf_entry
= NULL
;
961 LCK_SPIN_ASSERT(&oslog_stream_lock
, LCK_ASSERT_OWNED
);
963 mbp
= oslog_streambufp
;
965 buf_entry
= STAILQ_FIRST(&oslog_stream_free_head
);
967 STAILQ_REMOVE_HEAD(&oslog_stream_free_head
, buf_entries
);
969 // If no list elements are available in the free-list,
970 // consume the next log line so we can free up its list element
971 oslog_stream_buf_entry_t prev_entry
= NULL
;
973 buf_entry
= STAILQ_FIRST(&oslog_stream_buf_head
);
974 while (buf_entry
->type
== oslog_stream_link_type_metadata
) {
975 prev_entry
= buf_entry
;
976 buf_entry
= STAILQ_NEXT(buf_entry
, buf_entries
);
979 if (prev_entry
== NULL
) {
980 STAILQ_REMOVE_HEAD(&oslog_stream_buf_head
, buf_entries
);
982 STAILQ_REMOVE_AFTER(&oslog_stream_buf_head
, prev_entry
, buf_entries
);
985 mbp
->msg_bufr
+= buf_entry
->size
;
986 oslog_s_dropped_msgcount
++;
987 if (mbp
->msg_bufr
>= mbp
->msg_size
) {
988 mbp
->msg_bufr
= (mbp
->msg_bufr
% mbp
->msg_size
);
996 oslog_streamwrite_metadata_locked(oslog_stream_buf_entry_t m_entry
)
998 LCK_SPIN_ASSERT(&oslog_stream_lock
, LCK_ASSERT_OWNED
);
999 STAILQ_INSERT_TAIL(&oslog_stream_buf_head
, m_entry
, buf_entries
);
1005 oslog_streamwrite_append_bytes(const char *buffer
, int buflen
)
1009 LCK_SPIN_ASSERT(&oslog_stream_lock
, LCK_ASSERT_OWNED
);
1011 assert(oslog_stream_buf_bytesavail
>= buflen
);
1012 oslog_stream_buf_bytesavail
-= buflen
;
1013 assert(oslog_stream_buf_bytesavail
>= 0);
1015 mbp
= oslog_streambufp
;
1016 if (mbp
->msg_bufx
+ buflen
<= mbp
->msg_size
) {
1018 * If this will fit without needing to be split across the end
1019 * of the buffer, copy it directly in one go.
1021 memcpy((void *)(mbp
->msg_bufc
+ mbp
->msg_bufx
), buffer
, buflen
);
1023 mbp
->msg_bufx
+= buflen
;
1024 if (mbp
->msg_bufx
== mbp
->msg_size
) {
1029 * Copy up to the end of the stream buffer, and then put what remains
1032 int bytes_left
= mbp
->msg_size
- mbp
->msg_bufx
;
1033 memcpy((void *)(mbp
->msg_bufc
+ mbp
->msg_bufx
), buffer
, bytes_left
);
1035 buflen
-= bytes_left
;
1036 buffer
+= bytes_left
;
1038 // Copy the remainder of the data from the beginning of stream
1039 memcpy((void *)mbp
->msg_bufc
, buffer
, buflen
);
1040 mbp
->msg_bufx
= buflen
;
1046 oslog_streamwrite_locked(firehose_tracepoint_id_u ftid
,
1047 uint64_t stamp
, const void *pubdata
, size_t publen
)
1050 oslog_stream_buf_entry_t buf_entry
= NULL
;
1051 oslog_stream_buf_entry_t next_entry
= NULL
;
1053 uint16_t ft_size
= offsetof(struct firehose_tracepoint_s
, ft_data
);
1054 int ft_length
= ft_size
+ publen
;
1056 LCK_SPIN_ASSERT(&oslog_stream_lock
, LCK_ASSERT_OWNED
);
1058 mbp
= oslog_streambufp
;
1059 if (ft_length
> mbp
->msg_size
) {
1060 (void)hw_atomic_add(&oslog_s_error_count
, 1);
1064 // Ensure that we have a list element for this record
1065 buf_entry
= oslog_stream_find_free_buf_entry_locked();
1067 assert(buf_entry
!= NULL
);
1069 while (ft_length
> oslog_stream_buf_bytesavail
) {
1070 oslog_stream_buf_entry_t prev_entry
= NULL
;
1072 next_entry
= STAILQ_FIRST(&oslog_stream_buf_head
);
1073 assert(next_entry
!= NULL
);
1074 while (next_entry
->type
== oslog_stream_link_type_metadata
) {
1075 prev_entry
= next_entry
;
1076 next_entry
= STAILQ_NEXT(next_entry
, buf_entries
);
1079 if (prev_entry
== NULL
) {
1080 STAILQ_REMOVE_HEAD(&oslog_stream_buf_head
, buf_entries
);
1082 STAILQ_REMOVE_AFTER(&oslog_stream_buf_head
, prev_entry
, buf_entries
);
1085 mbp
->msg_bufr
+= next_entry
->size
;
1086 if (mbp
->msg_bufr
>= mbp
->msg_size
) {
1087 mbp
->msg_bufr
= (mbp
->msg_bufr
% mbp
->msg_size
);
1090 oslog_s_dropped_msgcount
++;
1091 oslog_stream_buf_bytesavail
+= next_entry
->size
;
1092 assert(oslog_stream_buf_bytesavail
<= oslog_stream_buf_size
);
1094 STAILQ_INSERT_TAIL(&oslog_stream_free_head
, next_entry
, buf_entries
);
1097 assert(ft_length
<= oslog_stream_buf_bytesavail
);
1099 // Write the log line and update the list entry for this record
1100 buf_entry
->offset
= mbp
->msg_bufx
;
1101 buf_entry
->size
= ft_length
;
1102 buf_entry
->timestamp
= stamp
;
1103 buf_entry
->type
= oslog_stream_link_type_log
;
1105 // Construct a tracepoint
1106 struct firehose_tracepoint_s fs
= {
1107 .ft_thread
= thread_tid(current_thread()),
1108 .ft_id
.ftid_value
= ftid
.ftid_value
,
1112 oslog_streamwrite_append_bytes((char *)&fs
, sizeof(fs
));
1113 oslog_streamwrite_append_bytes(pubdata
, publen
);
1115 assert(mbp
->msg_bufr
< mbp
->msg_size
);
1116 // Insert the element to the buffer data list
1117 STAILQ_INSERT_TAIL(&oslog_stream_buf_head
, buf_entry
, buf_entries
);
1127 * Decription: Output a character to the log; assumes the LOG_LOCK() is NOT
1128 * held by the caller.
1130 * Parameters: c Character to output
1134 * Notes: This function is used for single byte output to the log. It
1135 * primarily exists to maintain binary backward compatibility.
1140 int unread_count
= 0;
1142 log_putc_locked(msgbufp
, c
);
1143 unread_count
= msgbufp
->msg_bufx
- msgbufp
->msg_bufr
;
1146 if (unread_count
< 0) {
1147 unread_count
= 0 - unread_count
;
1149 if (c
== '\n' || unread_count
>= (msgbufp
->msg_size
/ 2)) {
1156 * it is possible to increase the kernel log buffer size by adding
1158 * to the kernel command line, and to read the current size using
1159 * sysctl kern.msgbuf
1160 * If there is no parameter on the kernel command line, the buffer is
1161 * allocated statically and is CONFIG_MSG_BSIZE characters in size, otherwise
1162 * memory is dynamically allocated. Memory management must already be up.
1165 log_setsize(int size
)
1168 int new_logsize
, new_bufr
, new_bufx
;
1170 int old_logsize
, old_bufr
, old_bufx
;
1174 if (size
> MAX_MSG_BSIZE
) {
1183 if (!(new_logdata
= (char*)kalloc(size
))) {
1184 printf("log_setsize: unable to allocate memory\n");
1187 bzero(new_logdata
, new_logsize
);
1191 old_logsize
= msgbufp
->msg_size
;
1192 old_logdata
= msgbufp
->msg_bufc
;
1193 old_bufr
= msgbufp
->msg_bufr
;
1194 old_bufx
= msgbufp
->msg_bufx
;
1196 LOG_SETSIZE_DEBUG("log_setsize(%d): old_logdata %p old_logsize %d old_bufr %d old_bufx %d\n",
1197 size
, old_logdata
, old_logsize
, old_bufr
, old_bufx
);
1199 /* start "new_logsize" bytes before the write pointer */
1200 if (new_logsize
<= old_bufx
) {
1201 count
= new_logsize
;
1202 p
= old_logdata
+ old_bufx
- count
;
1205 * if new buffer is bigger, copy what we have and let the
1206 * bzero above handle the difference
1208 count
= MIN(new_logsize
, old_logsize
);
1209 p
= old_logdata
+ old_logsize
- (count
- old_bufx
);
1211 for (i
= 0; i
< count
; i
++) {
1212 if (p
>= old_logdata
+ old_logsize
) {
1217 new_logdata
[i
] = ch
;
1221 if (new_bufx
>= new_logsize
) {
1224 msgbufp
->msg_bufx
= new_bufx
;
1226 new_bufr
= old_bufx
- old_bufr
; /* how much were we trailing bufx by? */
1228 new_bufr
+= old_logsize
;
1230 new_bufr
= new_bufx
- new_bufr
; /* now relative to oldest data in new buffer */
1232 new_bufr
+= new_logsize
;
1234 msgbufp
->msg_bufr
= new_bufr
;
1236 msgbufp
->msg_size
= new_logsize
;
1237 msgbufp
->msg_bufc
= new_logdata
;
1239 LOG_SETSIZE_DEBUG("log_setsize(%d): new_logdata %p new_logsize %d new_bufr %d new_bufx %d\n",
1240 size
, new_logdata
, new_logsize
, new_bufr
, new_bufx
);
1244 /* this memory is now dead - clear it so that it compresses better
1245 * in case of suspend to disk etc. */
1246 bzero(old_logdata
, old_logsize
);
1247 if (old_logdata
!= smsg_bufc
) {
1248 /* dynamic memory that must be freed */
1249 kfree(old_logdata
, old_logsize
);
1252 printf("set system log size to %d bytes\n", new_logsize
);
1258 oslog_setsize(int size
)
1261 // If the size is less than the default stream buffer
1263 if (size
<= OSLOG_STREAM_BUF_SIZE
) {
1267 scale
= (uint16_t) (size
/ OSLOG_STREAM_BUF_SIZE
);
1269 oslog_stream_buf_size
= size
;
1270 oslog_stream_num_entries
= scale
* OSLOG_NUM_STREAM_ENTRIES
;
1271 printf("oslog_setsize: new buffer size = %d, new num entries= %d\n", oslog_stream_buf_size
, oslog_stream_num_entries
);
1274 SYSCTL_PROC(_kern
, OID_AUTO
, msgbuf
,
1275 CTLTYPE_INT
| CTLFLAG_RW
| CTLFLAG_LOCKED
, 0, 0,
1276 sysctl_kern_msgbuf
, "I", "");
1279 sysctl_kern_msgbuf(struct sysctl_oid
*oidp __unused
,
1280 void *arg1 __unused
, int arg2 __unused
, struct sysctl_req
*req
)
1282 int old_bufsize
, bufsize
;
1286 old_bufsize
= bufsize
= msgbufp
->msg_size
;
1289 error
= sysctl_io_number(req
, bufsize
, sizeof(bufsize
), &bufsize
, NULL
);
1294 if (bufsize
!= old_bufsize
) {
1295 error
= log_setsize(bufsize
);
1303 * This should be called by /sbin/dmesg only via libproc.
1304 * It returns as much data still in the buffer as possible.
1307 log_dmesg(user_addr_t buffer
, uint32_t buffersize
, int32_t * retval
)
1310 uint32_t localbuff_size
;
1311 int error
= 0, newl
, skip
;
1312 char *localbuff
, *p
, *copystart
, ch
;
1316 localbuff_size
= (msgbufp
->msg_size
+ 2); /* + '\n' + '\0' */
1319 /* Allocate a temporary non-circular buffer for copyout */
1320 if (!(localbuff
= (char *)kalloc(localbuff_size
))) {
1321 printf("log_dmesg: unable to allocate memory\n");
1325 /* in between here, the log could become bigger, but that's fine */
1329 * The message buffer is circular; start at the write pointer, and
1330 * make one loop up to write pointer - 1.
1332 p
= msgbufp
->msg_bufc
+ msgbufp
->msg_bufx
;
1333 for (i
= newl
= skip
= 0; p
!= msgbufp
->msg_bufc
+ msgbufp
->msg_bufx
- 1; ++p
) {
1334 if (p
>= msgbufp
->msg_bufc
+ msgbufp
->msg_size
) {
1335 p
= msgbufp
->msg_bufc
;
1338 /* Skip "\n<.*>" syslog sequences. */
1345 if (newl
&& ch
== '<') {
1352 newl
= (ch
== '\n');
1353 localbuff
[i
++] = ch
;
1354 /* The original version of this routine contained a buffer
1355 * overflow. At the time, a "small" targeted fix was desired
1356 * so the change below to check the buffer bounds was made.
1357 * TODO: rewrite this needlessly convoluted routine.
1359 if (i
== (localbuff_size
- 2)) {
1364 localbuff
[i
++] = '\n';
1368 if (buffersize
>= i
) {
1369 copystart
= localbuff
;
1372 copystart
= localbuff
+ i
- buffersize
;
1373 copysize
= buffersize
;
1378 error
= copyout(copystart
, buffer
, copysize
);
1383 kfree(localbuff
, localbuff_size
);
1387 #ifdef CONFIG_XNUPOST
1389 uint32_t find_pattern_in_buffer(char * pattern
, uint32_t len
, int expected_count
);
1392 * returns count of pattern found in systemlog buffer.
1393 * stops searching further if count reaches expected_count.
1396 find_pattern_in_buffer(char * pattern
, uint32_t len
, int expected_count
)
1398 int match_count
= 0;
1405 if (pattern
== NULL
|| len
== 0 || expected_count
== 0) {
1409 for (i
= 0; i
< msgbufp
->msg_size
; i
++) {
1411 for (j
= 0; j
< (int)len
; j
++) {
1412 pos
= (msgbufp
->msg_bufx
+ i
+ j
) % msgbufp
->msg_size
;
1413 ch
= msgbufp
->msg_bufc
[pos
];
1414 if (ch
!= pattern
[j
]) {
1419 if (no_match
== 0) {
1421 if (match_count
>= expected_count
) {