/usr/include/scsi/smp_lib.h is in smp-utils 0.98-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 | #ifndef SMP_LIB_H
#define SMP_LIB_H
/*
* Copyright (c) 2006-2013 Douglas Gilbert.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
/*
* Version: see version_str in smp_lib.c
*/
/* This header file contains defines and function declarations that may
* be useful to Linux applications that communicate with devices that
* use the Serial Attached SCSI (SAS) Management Protocol (SMP).
* Reference: SCSI: http://www.t10.org and the most recent SAS draft
* SAS-2 (revision 9).
* This header is organised into two parts: part 1 is operating system
* independent (i.e. may be useful to other OSes) and part 2 is Linux
* specific (or at least closely related).
*/
#ifdef __cplusplus
extern "C" {
#endif
/* SAS transport frame types associated with SMP */
#define SMP_FRAME_TYPE_REQ 0x40
#define SMP_FRAME_TYPE_RESP 0x41
/* SMP function codes */
#define SMP_FN_REPORT_GENERAL 0x0
#define SMP_FN_REPORT_MANUFACTURER 0x1
#define SMP_FN_READ_GPIO_REG 0x2
#define SMP_FN_REPORT_SELF_CONFIG 0x3
#define SMP_FN_REPORT_ZONE_PERMISSION_TBL 0x4
#define SMP_FN_REPORT_ZONE_MANAGER_PASS 0x5
#define SMP_FN_REPORT_BROADCAST 0x6
#define SMP_FN_READ_GPIO_REG_ENH 0x7
#define SMP_FN_DISCOVER 0x10
#define SMP_FN_REPORT_PHY_ERR_LOG 0x11
#define SMP_FN_REPORT_PHY_SATA 0x12
#define SMP_FN_REPORT_ROUTE_INFO 0x13
#define SMP_FN_REPORT_PHY_EVENT 0x14
/* #define SMP_FN_REPORT_PHY_BROADCAST 0x15 removed in sas2r13 */
#define SMP_FN_DISCOVER_LIST 0x20 /* was 0x16 in sas2r10 */
#define SMP_FN_REPORT_PHY_EVENT_LIST 0x21
#define SMP_FN_REPORT_EXP_ROUTE_TBL_LIST 0x22 /* was 0x17 in sas2r10 */
#define SMP_FN_CONFIG_GENERAL 0x80
#define SMP_FN_ENABLE_DISABLE_ZONING 0x81
#define SMP_FN_WRITE_GPIO_REG 0x82
#define SMP_FN_WRITE_GPIO_REG_ENH 0x83
#define SMP_FN_ZONED_BROADCAST 0x85
#define SMP_FN_ZONE_LOCK 0x86
#define SMP_FN_ZONE_ACTIVATE 0x87
#define SMP_FN_ZONE_UNLOCK 0x88
#define SMP_FN_CONFIG_ZONE_MANAGER_PASS 0x89
#define SMP_FN_CONFIG_ZONE_PHY_INFO 0x8a
#define SMP_FN_CONFIG_ZONE_PERMISSION_TBL 0x8b
#define SMP_FN_CONFIG_ROUTE_INFO 0x90
#define SMP_FN_PHY_CONTROL 0x91
#define SMP_FN_PHY_TEST_FUNCTION 0x92
#define SMP_FN_CONFIG_PHY_EVENT 0x93
/* SMP function result values */
#define SMP_FRES_FUNCTION_ACCEPTED 0x0
#define SMP_FRES_UNKNOWN_FUNCTION 0x1
#define SMP_FRES_FUNCTION_FAILED 0x2
#define SMP_FRES_INVALID_REQUEST_LEN 0x3
#define SMP_FRES_INVALID_EXP_CHANGE_COUNT 0x4
#define SMP_FRES_BUSY 0x5
#define SMP_FRES_INCOMPLETE_DESCRIPTOR_LIST 0x6
#define SMP_FRES_NO_PHY 0x10
#define SMP_FRES_NO_INDEX 0x11
#define SMP_FRES_NO_SATA_SUPPORT 0x12
#define SMP_FRES_UNKNOWN_PHY_OP 0x13
#define SMP_FRES_UNKNOWN_PHY_TEST_FN 0x14
#define SMP_FRES_PHY_TEST_IN_PROGRESS 0x15
#define SMP_FRES_PHY_VACANT 0x16
#define SMP_FRES_UNKNOWN_PHY_EVENT_SRC 0x17
#define SMP_FRES_UNKNOWN_DESCRIPTOR_TYPE 0x18
#define SMP_FRES_UNKNOWN_PHY_FILTER 0x19
#define SMP_FRES_AFFILIATION_VIOLATION 0x1a
#define SMP_FRES_SMP_ZONE_VIOLATION 0x20
#define SMP_FRES_NO_MANAGEMENT_ACCESS 0x21
#define SMP_FRES_UNKNOWN_EN_DIS_ZONING_VAL 0x22
#define SMP_FRES_ZONE_LOCK_VIOLATION 0x23
#define SMP_FRES_NOT_ACTIVATED 0x24
#define SMP_FRES_ZONE_GROUP_OUT_OF_RANGE 0x25
#define SMP_FRES_NO_PHYSICAL_PRESENCE 0x26
#define SMP_FRES_SAVING_NOT_SUPPORTED 0x27
#define SMP_FRES_SOURCE_ZONE_GROUP 0x28
#define SMP_FRES_DIS_PASSWORD_NOT_SUPPORTED 0x29
#define SMP_FRES_INVALID_FIELD_IN_REQUEST 0x2a
/* Utilities can use these process status values for syntax errors and
file (device node) problems (e.g. not found or permissions). Numbers
between 1 and 32 are reserved for SMP function result values */
#define SMP_LIB_SYNTAX_ERROR 91
#define SMP_LIB_FILE_ERROR 92
#define SMP_LIB_CAT_MALFORMED 97
#define SMP_LIB_CAT_OTHER 99
#define SMP_MAX_DEVICE_NAME 256
#ifdef SMP_UTILS_LINUX
#define SMP_SUBVALUE_SEPARATOR ','
#elif defined(SMP_UTILS_SOLARIS)
#define SMP_SUBVALUE_SEPARATOR '^'
#else
#define SMP_SUBVALUE_SEPARATOR ','
#endif
struct smp_target_obj {
char device_name[SMP_MAX_DEVICE_NAME];
int subvalue; /* adapter number (opt) */
unsigned char sas_addr[8]; /* target SMP (opt) */
int interface_selector;
int opened;
int fd;
void * vp; /* opaque for pass-through (e.g. CAM) */
};
/* SAS standards include a 4 byte CRC at the end of each SMP request
and response framesl. All current pass-throughs calculate and check
the CRC in the driver, but some pass-throughs want the space allocated.
*/
struct smp_req_resp {
int request_len; /* [i] in bytes, includes space for 4 byte
CRC */
unsigned char * request; /* [*i], includes space for CRC */
int max_response_len; /* [i] in bytes, includes space for CRC */
unsigned char * response; /* [*o] */
int act_response_len; /* [o] -1 implies don't know */
int transport_err; /* [o] 0 implies no error */
};
/* Open device_name (perhaps using associated subvalue, i_params, and sa
* fields) and if successful places context information in the object pointed
* to by tobj . Returns 0 on success, else -1 . */
extern int smp_initiator_open(const char * device_name, int subvalue,
const char * i_params, unsigned long long sa,
struct smp_target_obj * tobj, int verbose);
/* Send a SMP request to the SMP target referred to by tobj. The request
* and space for the response (including the CRC even if it is not sent
* or returned) are in the object pointed to by rresp. Returns 0 on
* success. */
extern int smp_send_req(const struct smp_target_obj * tobj,
struct smp_req_resp * rresp, int verbose);
/* Closes the context to the SMP target referred to by tobj. Returns 0
* on success, else -1 . */
extern int smp_initiator_close(struct smp_target_obj * tobj);
/* Given an SMP function response code in func_res, places the associated
* string (most likely an error if func_res > 0) in the area pointed to
* by buffer. That string will not exceed buff_len bytes. Returns buff
* as its result. */
extern char * smp_get_func_res_str(int func_res, int buff_len, char * buff);
/* Returns the request length in dwords associated with func_code in SAS-1.
* The dword count excludes the 4 byte header and the 4 byte CRC (i.e.
* eight bytes or two dwords). Returns -2 for no default (e.g. functions
* found in SAS-2 or later) and -3 for a different format (e.g. READ GPIO
* REGISTER). */
extern int smp_get_func_def_req_len(int func_code);
/* Returns the expected response length in dwords associated with func_code
* in SAS-1. The dword count excludes the 4 byte header and the 4 byte CRC.
* Returns -2 for no default and -3 for a different format (e.g. READ GPIO
* REGISTER). */
extern int smp_get_func_def_resp_len(int func_code);
/* SAS addresses are NAA-5 and should have 5 in their most significant
* nibbe. Returns 1 if NAA-5 format, else 0. */
extern int smp_is_naa5(unsigned long long addr);
extern const char * smp_lib_version();
struct smp_val_name {
int value;
const char * name;
};
/* <<< General purpose (i.e. not SMP specific) utility functions >>> */
/* Always returns valid string even if errnum is wild (or library problem).
If errnum is negative, flip its sign. */
extern char * safe_strerror(int errnum);
/* Print (to stdout) 'str' of bytes in hex, 16 bytes per line optionally
followed at the right hand side of the line with an ASCII interpretation.
Each line is prefixed with an address, starting at 0 for str[0]..str[15].
All output numbers are in hex. 'no_ascii' allows for 3 output types:
> 0 each line has address then up to 16 ASCII-hex bytes
= 0 in addition, the bytes are listed in ASCII to the right
< 0 only the ASCII-hex bytes are listed (i.e. without address)
*/
extern void dStrHex(const char* str, int len, int no_ascii);
/* If the number in 'buf' can not be decoded or the multiplier is unknown
then -1 is returned. Accepts a hex prefix (0x or 0X) or a 'h' (or 'H')
suffix. Otherwise a decimal multiplier suffix may be given. Recognised
multipliers: c C *1; w W *2; b B *512; k K KiB *1,024;
KB *1,000; m M MiB *1,048,576; MB *1,000,000; g G GiB *1,073,741,824;
GB *1,000,000,000 and <n>x<m> which multiplies <n> by <m> . */
extern int smp_get_num(const char * buf);
/* If the number in 'buf' can not be decoded or the multiplier is unknown
then -1LL is returned. Accepts a hex prefix (0x or 0X) or a 'h' (or 'H')
suffix. Otherwise a decimal multiplier suffix may be given. In addition
to supporting the multipliers of smp_get_num(), this function supports:
t T TiB *(2**40); TB *(10**12); p P PiB *(2**50); PB *(10**15) . */
extern long long smp_get_llnum(const char * buf);
/* If the non-negative number in 'buf' can be decoded in decimal (default)
* or hex then it is returned, else -1 is returned. Skips leading and
* trailing spaces, tabs and commas. Hex numbers are indicated by a "0x"
* or "0X" prefix, or by a 'h' or 'H' suffix. */
int
smp_get_dhnum(const char * buf);
#ifdef __cplusplus
}
#endif
#endif
|