1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
/*
* Oracle Linux DTrace.
* Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
* Licensed under the Universal Permissive License v 1.0 as shown at
* http://oss.oracle.com/licenses/upl.
*/
#pragma D depends_on library net.d
#pragma D depends_on library scsi.d
#pragma D depends_on module genunix
#pragma D depends_on module fct
/*
* FC port information.
*/
typedef struct fc_port_info {
string fcp_node_wwn; /* node WWN */
string fcp_sym_node_name; /* node symbolic name */
string fcp_sym_port_name; /* port symbolic name */
uint32_t fcp_port_hard_address; /* port hard address */
} fc_port_info_t;
/*
* FC transfer info (somewhat analogous to iscsiinfo_t)
* Represents data transfer details.
*/
typedef struct fc_xferinfo {
uint32_t fcx_len;
uint32_t fcx_offset;
uint16_t fcx_flags; /* db_flags as defined in sys/stmf.h */
} fc_xferinfo_t;
/*
* conninfo translators
*/
/*
* Translator for conninfo, translating from the local port.
*/
#pragma D binding "1.5" translator
translator conninfo_t < fct_local_port_t *P > {
ci_local = P->port_pwwn_str[0] ?
P->port_pwwn_str : "<unknown>";
ci_remote = "<unknown>";
ci_protocol = "fc";
};
/*
* Translator for conninfo, translating from the local port implementation.
*/
#pragma D binding "1.5" translator
translator conninfo_t < fct_i_local_port_t *P > {
ci_local = P->iport_port->port_pwwn_str[0] ?
P->iport_port->port_pwwn_str : "<unknown>";
ci_remote = "<unknown>";
ci_protocol = "fc";
};
/*
* Translator for conninfo, translating from fct cmd struct.
*/
#pragma D binding "1.5" translator
translator conninfo_t < fct_cmd_t *C > {
ci_local = (C->cmd_port ?
(C->cmd_port->port_pwwn_str[0] ?
C->cmd_port->port_pwwn_str : "<unknown>") :
"<unknown>");
ci_remote = (C->cmd_rp ?
(C->cmd_rp->rp_pwwn_str[0] ?
C->cmd_rp->rp_pwwn_str : "<unknown>") :
"<unknown>");
ci_protocol = "fc";
};
/*
* fc_port_info_t translators.
*/
/*
* Translator for fc_port_info_t, translating from the local port.
*/
#pragma D binding "1.5" translator
translator fc_port_info_t < fct_local_port_t *P > {
/* node WWN */
fcp_node_wwn = P->port_nwwn_str[0] ?
P->port_nwwn_str : "<unknown>";
/* node symbolic name */
fcp_sym_node_name = P->port_sym_node_name ?
P->port_sym_node_name : `utsname.nodename;
/* port symbolic name */
fcp_sym_port_name = P->port_sym_port_name ?
P->port_sym_port_name : "<unknown>";
/* port hard address */
fcp_port_hard_address = P->port_hard_address;
};
/*
* Translator for fc_port_info_t, translating from the local port impl.
*/
#pragma D binding "1.5" translator
translator fc_port_info_t < fct_i_local_port_t *P > {
/* node WWN */
fcp_node_wwn = (P->iport_port ?
(P->iport_port->port_nwwn_str[0] ?
P->iport_port->port_nwwn_str :
"<unknown>") :
"<bad iport_port ptr>");
fcp_sym_node_name =
(P->iport_port ?
(P->iport_port->port_sym_node_name ?
P->iport_port->port_sym_node_name : "<unknown>") :
"<bad iport_port ptr>");
fcp_sym_port_name =
(P->iport_port ?
(P->iport_port->port_sym_port_name ?
P->iport_port->port_sym_port_name : "<unknown>") :
"<bad iport_port ptr>");
fcp_port_hard_address =
(P->iport_port ?
P->iport_port->port_hard_address : 0);
};
/*
* Translator for fc_port_info, translating from the remote port impl
*/
#pragma D binding "1.5" translator
translator fc_port_info_t < fct_i_remote_port_t *P > {
/* node WWN */
fcp_node_wwn = P->irp_rp ?
(P->irp_rp->rp_nwwn_str[0] ?
P->irp_rp->rp_nwwn_str : "<unknown>") :
"<unknown>";
/* node symbolic name */
fcp_sym_node_name = P->irp_snn ? P->irp_snn : "<unknown>";
/* port symbolic name */
fcp_sym_port_name = P->irp_spn ? P->irp_spn : "<unknown>";
/* port hard address */
fcp_port_hard_address = P->irp_rp ? P->irp_rp->rp_id : 0;
};
/*
* Translator for fc_xferinfo, translating from stmf_data_buf_t.
*/
#pragma D binding "1.5" translator
translator fc_xferinfo_t < stmf_data_buf_t *B > {
fcx_len = B->db_data_size;
fcx_offset = B->db_relative_offset;
fcx_flags = B->db_flags;
};
|