2N/A/*
2N/A * CDDL HEADER START
2N/A *
2N/A * The contents of this file are subject to the terms of the
2N/A * Common Development and Distribution License (the "License").
2N/A * You may not use this file except in compliance with the License.
2N/A *
2N/A * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2N/A * or http://www.opensolaris.org/os/licensing.
2N/A * See the License for the specific language governing permissions
2N/A * and limitations under the License.
2N/A *
2N/A * When distributing Covered Code, include this CDDL HEADER in each
2N/A * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2N/A * If applicable, add the following below this CDDL HEADER, with the
2N/A * fields enclosed by brackets "[]" replaced with your own identifying
2N/A * information: Portions Copyright [yyyy] [name of copyright owner]
2N/A *
2N/A * CDDL HEADER END
2N/A */
2N/A
2N/A/*
2N/A * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
2N/A */
2N/A
2N/A/*
2N/A * Although the following "dummy" structures and translators are not used they
2N/A * are necessary to prevent dtrace from error'ing out when generating
2N/A * kerberos_provider.h.
2N/A */
2N/Atypedef struct k5_trace {
2N/A int dummy;
2N/A} k5_trace_t;
2N/A
2N/Atypedef struct krbinfo {
2N/A int dummy;
2N/A} krbinfo_t;
2N/A
2N/Atypedef struct kticketinfo {
2N/A int dummy;
2N/A} kticketinfo_t;
2N/A
2N/Atypedef struct kauthenticatorinfo {
2N/A int dummy;
2N/A} kauthenticatorinfo_t;
2N/A
2N/Atypedef struct kconninfo {
2N/A int dummy;
2N/A} kconninfo_t;
2N/A
2N/Atypedef struct kerrorinfo {
2N/A int dummy;
2N/A} kerrorinfo_t;
2N/A
2N/Atypedef struct kdcreqinfo {
2N/A int dummy;
2N/A} kdcreqinfo_t;
2N/A
2N/Atypedef struct kdcrepinfo {
2N/A int dummy;
2N/A} kdcrepinfo_t;
2N/A
2N/Atypedef struct kapreqinfo {
2N/A int dummy;
2N/A} kapreqinfo_t;
2N/A
2N/Atypedef struct kaprepinfo {
2N/A int dummy;
2N/A} kaprepinfo_t;
2N/A
2N/Atypedef struct ksafeinfo {
2N/A int dummy;
2N/A} ksafeinfo_t;
2N/A
2N/Atypedef struct kprivinfo {
2N/A int dummy;
2N/A} kprivinfo_t;
2N/A
2N/Atypedef struct kcredinfo {
2N/A int dummy;
2N/A} kcredinfo_t;
2N/A
2N/Atranslator kconninfo_t < k5_trace_t *x > {
2N/A dummy = x->dummy;
2N/A};
2N/A
2N/Atranslator kerrorinfo_t < k5_trace_t *x > {
2N/A dummy = x->dummy;
2N/A};
2N/A
2N/Atranslator kdcreqinfo_t < k5_trace_t *x > {
2N/A dummy = x->dummy;
2N/A};
2N/A
2N/Atranslator kdcrepinfo_t < k5_trace_t *x > {
2N/A dummy = x->dummy;
2N/A};
2N/A
2N/Atranslator kapreqinfo_t < k5_trace_t *x > {
2N/A dummy = x->dummy;
2N/A};
2N/A
2N/Atranslator kaprepinfo_t < k5_trace_t *x > {
2N/A dummy = x->dummy;
2N/A};
2N/A
2N/Atranslator krbinfo_t < k5_trace_t *x > {
2N/A dummy = x->dummy;
2N/A};
2N/A
2N/Atranslator kticketinfo_t < k5_trace_t *x > {
2N/A dummy = x->dummy;
2N/A};
2N/A
2N/Atranslator kauthenticatorinfo_t < k5_trace_t *x > {
2N/A dummy = x->dummy;
2N/A};
2N/A
2N/Atranslator ksafeinfo_t < k5_trace_t *x > {
2N/A dummy = x->dummy;
2N/A};
2N/A
2N/Atranslator kprivinfo_t < k5_trace_t *x > {
2N/A dummy = x->dummy;
2N/A};
2N/A
2N/Atranslator kcredinfo_t < k5_trace_t *x > {
2N/A dummy = x->dummy;
2N/A};
2N/A
2N/Aprovider kerberos {
2N/A probe krb_message__send(k5_trace_t *x):
2N/A (krbinfo_t *x, kconninfo_t *x);
2N/A
2N/A probe krb_message__recv(k5_trace_t *x):
2N/A (krbinfo_t *x, kconninfo_t *x);
2N/A
2N/A probe krb_kdc_req__make(k5_trace_t *x):
2N/A (krbinfo_t *x, kdcreqinfo_t *x);
2N/A
2N/A probe krb_kdc_req__read(k5_trace_t *x):
2N/A (krbinfo_t *x, kdcreqinfo_t *x);
2N/A
2N/A probe krb_kdc_rep__make(k5_trace_t *x):
2N/A (krbinfo_t *x, kdcrepinfo_t *x, kticketinfo_t *x);
2N/A
2N/A probe krb_kdc_rep__read(k5_trace_t *x):
2N/A (krbinfo_t *x, kdcrepinfo_t *x, kticketinfo_t *x);
2N/A
2N/A probe krb_ap_req__make(k5_trace_t *x):
2N/A (krbinfo_t *x, kapreqinfo_t *x, kticketinfo_t *x,
2N/A kauthenticatorinfo_t *x);
2N/A
2N/A probe krb_ap_req__read(k5_trace_t *x):
2N/A (krbinfo_t *x, kapreqinfo_t *x, kticketinfo_t *x,
2N/A kauthenticatorinfo_t *x);
2N/A
2N/A probe krb_ap_rep__make(k5_trace_t *x):
2N/A (krbinfo_t *x, kaprepinfo_t *x);
2N/A
2N/A probe krb_ap_rep__read(k5_trace_t *x):
2N/A (krbinfo_t *x, kaprepinfo_t *x);
2N/A
2N/A probe krb_error__make(k5_trace_t *x):
2N/A (krbinfo_t *x, kerrorinfo_t *x);
2N/A
2N/A probe krb_error__read(k5_trace_t *x):
2N/A (krbinfo_t *x, kerrorinfo_t *x);
2N/A
2N/A probe krb_safe__make(k5_trace_t *x):
2N/A (krbinfo_t *x, ksafeinfo_t *x);
2N/A
2N/A probe krb_safe__read(k5_trace_t *x):
2N/A (krbinfo_t *x, ksafeinfo_t *x);
2N/A
2N/A probe krb_priv__make(k5_trace_t *x):
2N/A (krbinfo_t *x, kprivinfo_t *x);
2N/A
2N/A probe krb_priv__read(k5_trace_t *x):
2N/A (krbinfo_t *x, kprivinfo_t *x);
2N/A
2N/A probe krb_cred__make(k5_trace_t *x):
2N/A (krbinfo_t *x, kcredinfo_t *x);
2N/A
2N/A probe krb_cred__read(k5_trace_t *x):
2N/A (krbinfo_t *x, kcredinfo_t *x);
2N/A};
2N/A
2N/A#pragma D attributes Evolving/Evolving/Common provider kerberos provider
2N/A#pragma D attributes Private/Private/Unknown provider kerberos module
2N/A#pragma D attributes Private/Private/Unknown provider kerberos function
2N/A#pragma D attributes Evolving/Evolving/Common provider kerberos name
2N/A#pragma D attributes Unstable/Unstable/Common provider kerberos args