15572901bSJohn Birrell /*-
24d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
38a36da99SPedro F. Giffuni *
45572901bSJohn Birrell * Copyright 2006-2008 John Birrell <jb@FreeBSD.org>
55572901bSJohn Birrell *
65572901bSJohn Birrell * Redistribution and use in source and binary forms, with or without
75572901bSJohn Birrell * modification, are permitted provided that the following conditions
85572901bSJohn Birrell * are met:
95572901bSJohn Birrell * 1. Redistributions of source code must retain the above copyright
105572901bSJohn Birrell * notice, this list of conditions and the following disclaimer.
115572901bSJohn Birrell * 2. Redistributions in binary form must reproduce the above copyright
125572901bSJohn Birrell * notice, this list of conditions and the following disclaimer in the
135572901bSJohn Birrell * documentation and/or other materials provided with the distribution.
145572901bSJohn Birrell *
155572901bSJohn Birrell * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
165572901bSJohn Birrell * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
175572901bSJohn Birrell * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
185572901bSJohn Birrell * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
195572901bSJohn Birrell * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
205572901bSJohn Birrell * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
215572901bSJohn Birrell * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
225572901bSJohn Birrell * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
235572901bSJohn Birrell * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
245572901bSJohn Birrell * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
255572901bSJohn Birrell * SUCH DAMAGE.
265572901bSJohn Birrell */
275572901bSJohn Birrell
285572901bSJohn Birrell #include <sys/param.h>
295572901bSJohn Birrell #include <sys/systm.h>
309e9ea737SMark Johnston #include <sys/kdb.h>
31*70c712a8SMark Johnston #include <sys/proc.h>
325572901bSJohn Birrell #include <sys/sdt.h>
335572901bSJohn Birrell
34a776a1c1SAndriy Gapon SDT_PROVIDER_DEFINE(sdt);
35a776a1c1SAndriy Gapon
365572901bSJohn Birrell /*
378776669bSMark Johnston * Hook for the DTrace probe function. The SDT provider will set this to
388776669bSMark Johnston * dtrace_probe() when it loads.
395572901bSJohn Birrell */
405572901bSJohn Birrell sdt_probe_func_t sdt_probe_func = sdt_probe_stub;
415a17c552SMateusz Guzik volatile bool __read_frequently sdt_probes_enabled;
425572901bSJohn Birrell
435572901bSJohn Birrell /*
445572901bSJohn Birrell * This is a stub for probe calls in case kernel DTrace support isn't
458776669bSMark Johnston * enabled. It should never get called because there is no DTrace support
468776669bSMark Johnston * to enable it.
475572901bSJohn Birrell */
485572901bSJohn Birrell void
sdt_probe_stub(uint32_t id __unused,uintptr_t arg0 __unused,uintptr_t arg1 __unused,uintptr_t arg2 __unused,uintptr_t arg3 __unused,uintptr_t arg4 __unused,uintptr_t arg5 __unused)49ddf0ed09SMark Johnston sdt_probe_stub(uint32_t id __unused, uintptr_t arg0 __unused,
50ddf0ed09SMark Johnston uintptr_t arg1 __unused, uintptr_t arg2 __unused, uintptr_t arg3 __unused,
51*70c712a8SMark Johnston uintptr_t arg4 __unused, uintptr_t arg5 __unused)
525572901bSJohn Birrell {
539e9ea737SMark Johnston printf("sdt_probe_stub: unexpectedly called\n");
549e9ea737SMark Johnston kdb_backtrace();
555572901bSJohn Birrell }
56ddf0ed09SMark Johnston
57ddf0ed09SMark Johnston void
sdt_probe(uint32_t id,uintptr_t arg0,uintptr_t arg1,uintptr_t arg2,uintptr_t arg3,uintptr_t arg4)58ddf0ed09SMark Johnston sdt_probe(uint32_t id, uintptr_t arg0, uintptr_t arg1,
59ddf0ed09SMark Johnston uintptr_t arg2, uintptr_t arg3, uintptr_t arg4)
60ddf0ed09SMark Johnston {
61*70c712a8SMark Johnston sdt_probe_func(id, arg0, arg1, arg2, arg3, arg4, 0);
62ddf0ed09SMark Johnston }
63ddf0ed09SMark Johnston
64ddf0ed09SMark Johnston void
sdt_probe6(uint32_t id,uintptr_t arg0,uintptr_t arg1,uintptr_t arg2,uintptr_t arg3,uintptr_t arg4,uintptr_t arg5)65ddf0ed09SMark Johnston sdt_probe6(uint32_t id, uintptr_t arg0, uintptr_t arg1,
66ddf0ed09SMark Johnston uintptr_t arg2, uintptr_t arg3, uintptr_t arg4, uintptr_t arg5)
67ddf0ed09SMark Johnston {
68*70c712a8SMark Johnston sdt_probe_func(id, arg0, arg1, arg2, arg3, arg4, arg5);
69ddf0ed09SMark Johnston }
70