sg.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:16k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _SCSI_GENERIC_H
  2. #define _SCSI_GENERIC_H
  3. /*
  4.    History:
  5.     Started: Aug 9 by Lawrence Foard (entropy@world.std.com), to allow user
  6.      process control of SCSI devices.
  7.     Development Sponsored by Killy Corp. NY NY
  8. Original driver (sg.h):
  9. *       Copyright (C) 1992 Lawrence Foard
  10. Version 2 and 3 extensions to driver:
  11. *       Copyright (C) 1998 - 2002 Douglas Gilbert
  12.     Version: 3.1.24 (20020505)
  13.     This version is for 2.4 series kernels.
  14.     Changes since 3.1.23 (20020318)
  15. - off by one fix for last scatter gather element
  16. - zero buffer obtained for non-root users
  17.     Changes since 3.1.22 (20011208)
  18. - change EACCES to EPERM when O_RDONLY is insufficient
  19. - suppress newlines in host string ( /proc/scsi/sg/host_strs output)
  20. - fix xfer direction, old interface, short reply_len [Travers Carter]
  21.     Changes since 3.1.21 (20011029)
  22.      - add support for SG_FLAG_MMAP_IO [permit mmap() on sg devices]
  23.      - update documentation pointers in this header
  24.      - put KERNEL_VERSION macros around code that breaks early 2.4 series
  25.      - fix use count for multiple queued requests on closed fd
  26.      - switch back to alloc_kiovec()
  27.     Changes since 3.1.20 (20010814)
  28. - use alloc_kiovec_sz() to speed dio [set num_buffer_heads==0]
  29. - changes to cope with larger scatter gather element sizes
  30. - clean up some printk()s
  31. - add MODULE_LICENSE("GPL") [in a 3.1.20 subversion]
  32. - fix race around generic_unplug_device() [in a 3.1.20 subversion]
  33.     Changes since 3.1.19 (20010623)
  34. - add SG_GET_ACCESS_COUNT ioctl 
  35. - make open() increment and close() decrement access_count
  36. - only register first 256 devices, reject subsequent devices
  37.     Changes since 3.1.18 (20010505)
  38. - fix bug that caused long wait when large buffer requested
  39. - fix leak in error case of sg_new_read() [report: Eric Barton]
  40. - add 'online' column to /proc/scsi/sg/devices
  41.     Changes since 3.1.17 (20000921)
  42.      - add CAP_SYS_RAWIO capability for sensitive stuff
  43.      - compile in dio stuff, procfs 'allow_dio' defaulted off (0)
  44. - make premature close and detach more robust
  45. - lun masked into commands <= SCSI_2
  46. - poll() and async notification now yield POLL_HUP on detach
  47. - various 3rd party tweaks tracking lk 2.4 internal changes
  48. Map of SG verions to the Linux kernels in which they appear:
  49.        ----------        ----------------------------------
  50.        original          all kernels < 2.2.6
  51.        2.1.40            2.2.20
  52.        3.0.x             optional version 3 sg driver for 2.2 series
  53.        3.1.17++          2.4.0++
  54. Major new features in SG 3.x driver (cf SG 2.x drivers)
  55. - SG_IO ioctl() combines function if write() and read()
  56. - new interface (sg_io_hdr_t) but still supports old interface
  57. - scatter/gather in user space, direct IO, and mmap supported
  58.  The normal action of this driver is to use the adapter (HBA) driver to DMA
  59.  data into kernel buffers and then use the CPU to copy the data into the 
  60.  user space (vice versa for writes). That is called "indirect" IO due to 
  61.  the double handling of data. There are two methods offered to remove the
  62.  redundant copy: 1) direct IO which uses the kernel kiobuf mechanism and 
  63.  2) using the mmap() system call to map the reserve buffer (this driver has 
  64.  one reserve buffer per fd) into the user space. Both have their advantages.
  65.  In terms of absolute speed mmap() is faster. If speed is not a concern, 
  66.  indirect IO should be fine. Read the documentation for more information.
  67.  ** N.B. To use direct IO 'echo 1 > /proc/scsi/sg/allow_dio' may be
  68.          needed. That pseudo file's content is defaulted to 0. **
  69.  
  70.  Historical note: this SCSI pass-through driver has been known as "sg" for 
  71.  a decade. In broader kernel discussions "sg" is used to refer to scatter
  72.  gather techniques. The context should clarify which "sg" is referred to.
  73.  Documentation
  74.  =============
  75.  A web site for the SG device driver can be found at:
  76. http://www.torque.net/sg  [alternatively check the MAINTAINERS file]
  77.  The documentation for the sg version 3 driver can be found at:
  78.   http://www.torque.net/sg/p/sg_v3_ho.html
  79.  This is a rendering from DocBook source [change the extension to "sgml"
  80.  or "xml"]. There are renderings in "ps", "pdf", "rtf" and "txt" (soon).
  81.  The older, version 2 documents discuss the original sg interface in detail:
  82. http://www.torque.net/sg/p/scsi-generic.txt
  83. http://www.torque.net/sg/p/scsi-generic_long.txt
  84.  A version of this document (potentially out of date) may also be found in
  85.  the kernel source tree, probably at:
  86.         /usr/src/linux/Documentation/scsi-generic.txt .
  87.  Utility and test programs are available at the sg web site. They are 
  88.  bundled as sg_utils (for the lk 2.2 series) and sg3_utils (for the
  89.  lk 2.4 series).
  90.  There is a HOWTO on the Linux SCSI subsystem in the lk 2.4 series at:
  91.   http://www.linuxdoc.org/HOWTO/SCSI-2.4-HOWTO
  92. */
  93. /* New interface introduced in the 3.x SG drivers follows */
  94. typedef struct sg_iovec /* same structure as used by readv() Linux system */
  95. {                       /* call. It defines one scatter-gather element. */
  96.     void * iov_base;            /* Starting address  */
  97.     size_t iov_len;             /* Length in bytes  */
  98. } sg_iovec_t;
  99. typedef struct sg_io_hdr
  100. {
  101.     int interface_id;           /* [i] 'S' for SCSI generic (required) */
  102.     int dxfer_direction;        /* [i] data transfer direction  */
  103.     unsigned char cmd_len;      /* [i] SCSI command length ( <= 16 bytes) */
  104.     unsigned char mx_sb_len;    /* [i] max length to write to sbp */
  105.     unsigned short iovec_count; /* [i] 0 implies no scatter gather */
  106.     unsigned int dxfer_len;     /* [i] byte count of data transfer */
  107.     void * dxferp;              /* [i], [*io] points to data transfer memory
  108.       or scatter gather list */
  109.     unsigned char * cmdp;       /* [i], [*i] points to command to perform */
  110.     unsigned char * sbp;        /* [i], [*o] points to sense_buffer memory */
  111.     unsigned int timeout;       /* [i] MAX_UINT->no timeout (unit: millisec) */
  112.     unsigned int flags;         /* [i] 0 -> default, see SG_FLAG... */
  113.     int pack_id;                /* [i->o] unused internally (normally) */
  114.     void * usr_ptr;             /* [i->o] unused internally */
  115.     unsigned char status;       /* [o] scsi status */
  116.     unsigned char masked_status;/* [o] shifted, masked scsi status */
  117.     unsigned char msg_status;   /* [o] messaging level data (optional) */
  118.     unsigned char sb_len_wr;    /* [o] byte count actually written to sbp */
  119.     unsigned short host_status; /* [o] errors from host adapter */
  120.     unsigned short driver_status;/* [o] errors from software driver */
  121.     int resid;                  /* [o] dxfer_len - actual_transferred */
  122.     unsigned int duration;      /* [o] time taken by cmd (unit: millisec) */
  123.     unsigned int info;          /* [o] auxiliary information */
  124. } sg_io_hdr_t;  /* 64 bytes long (on i386) */
  125. /* Use negative values to flag difference from original sg_header structure */
  126. #define SG_DXFER_NONE (-1)      /* e.g. a SCSI Test Unit Ready command */
  127. #define SG_DXFER_TO_DEV (-2)    /* e.g. a SCSI WRITE command */
  128. #define SG_DXFER_FROM_DEV (-3)  /* e.g. a SCSI READ command */
  129. #define SG_DXFER_TO_FROM_DEV (-4) /* treated like SG_DXFER_FROM_DEV with the
  130.    additional property than during indirect
  131.    IO the user buffer is copied into the
  132.    kernel buffers before the transfer */
  133. #define SG_DXFER_UNKNOWN (-5)   /* Unknown data direction */
  134. /* following flag values can be "or"-ed together */
  135. #define SG_FLAG_DIRECT_IO 1     /* default is indirect IO */
  136. #define SG_FLAG_LUN_INHIBIT 2   /* default is overwrite lun in SCSI */
  137. /* command block (when <= SCSI_2) */
  138. #define SG_FLAG_MMAP_IO 4       /* request memory mapped IO */
  139. #define SG_FLAG_NO_DXFER 0x10000 /* no transfer of kernel buffers to/from */
  140. /* user space (debug indirect IO) */
  141. /* following 'info' values are "or"-ed together */
  142. #define SG_INFO_OK_MASK 0x1
  143. #define SG_INFO_OK 0x0          /* no sense, host nor driver "noise" */
  144. #define SG_INFO_CHECK 0x1       /* something abnormal happened */
  145. #define SG_INFO_DIRECT_IO_MASK 0x6
  146. #define SG_INFO_INDIRECT_IO 0x0 /* data xfer via kernel buffers (or no xfer) */
  147. #define SG_INFO_DIRECT_IO 0x2   /* direct IO requested and performed */
  148. #define SG_INFO_MIXED_IO 0x4    /* part direct, part indirect IO */
  149. typedef struct sg_scsi_id { /* used by SG_GET_SCSI_ID ioctl() */
  150.     int host_no;        /* as in "scsi<n>" where 'n' is one of 0, 1, 2 etc */
  151.     int channel;
  152.     int scsi_id;        /* scsi id of target device */
  153.     int lun;
  154.     int scsi_type;      /* TYPE_... defined in scsi/scsi.h */
  155.     short h_cmd_per_lun;/* host (adapter) maximum commands per lun */
  156.     short d_queue_depth;/* device (or adapter) maximum queue length */
  157.     int unused[2];      /* probably find a good use, set 0 for now */
  158. } sg_scsi_id_t; /* 32 bytes long on i386 */
  159. typedef struct sg_req_info { /* used by SG_GET_REQUEST_TABLE ioctl() */
  160.     char req_state;     /* 0 -> not used, 1 -> written, 2 -> ready to read */
  161.     char orphan;        /* 0 -> normal request, 1 -> from interruped SG_IO */
  162.     char sg_io_owned;   /* 0 -> complete with read(), 1 -> owned by SG_IO */
  163.     char problem;       /* 0 -> no problem detected, 1 -> error to report */
  164.     int pack_id;        /* pack_id associated with request */
  165.     void * usr_ptr;     /* user provided pointer (in new interface) */
  166.     unsigned int duration; /* millisecs elapsed since written (req_state==1)
  167.       or request duration (req_state==2) */
  168.     int unused;
  169. } sg_req_info_t; /* 20 bytes long on i386 */
  170. /* IOCTLs: Those ioctls that are relevant to the SG 3.x drivers follow.
  171.  [Those that only apply to the SG 2.x drivers are at the end of the file.]
  172.  (_GET_s yield result via 'int *' 3rd argument unless otherwise indicated) */
  173. #define SG_EMULATED_HOST 0x2203 /* true for emulated host adapter (ATAPI) */
  174. /* Used to configure SCSI command transformation layer for ATAPI devices */
  175. /* Only supported by the ide-scsi driver */
  176. #define SG_SET_TRANSFORM 0x2204 /* N.B. 3rd arg is not pointer but value: */
  177.       /* 3rd arg = 0 to disable transform, 1 to enable it */
  178. #define SG_GET_TRANSFORM 0x2205
  179. #define SG_SET_RESERVED_SIZE 0x2275  /* request a new reserved buffer size */
  180. #define SG_GET_RESERVED_SIZE 0x2272  /* actual size of reserved buffer */
  181. /* The following ioctl has a 'sg_scsi_id_t *' object as its 3rd argument. */
  182. #define SG_GET_SCSI_ID 0x2276   /* Yields fd's bus, chan, dev, lun + type */
  183. /* SCSI id information can also be obtained from SCSI_IOCTL_GET_IDLUN */
  184. /* Override host setting and always DMA using low memory ( <16MB on i386) */
  185. #define SG_SET_FORCE_LOW_DMA 0x2279  /* 0-> use adapter setting, 1-> force */
  186. #define SG_GET_LOW_DMA 0x227a   /* 0-> use all ram for dma; 1-> low dma ram */
  187. /* When SG_SET_FORCE_PACK_ID set to 1, pack_id is input to read() which
  188.    tries to fetch a packet with a matching pack_id, waits, or returns EAGAIN.
  189.    If pack_id is -1 then read oldest waiting. When ...FORCE_PACK_ID set to 0
  190.    then pack_id ignored by read() and oldest readable fetched. */
  191. #define SG_SET_FORCE_PACK_ID 0x227b
  192. #define SG_GET_PACK_ID 0x227c /* Yields oldest readable pack_id (or -1) */
  193. #define SG_GET_NUM_WAITING 0x227d /* Number of commands awaiting read() */
  194. /* Yields max scatter gather tablesize allowed by current host adapter */
  195. #define SG_GET_SG_TABLESIZE 0x227F  /* 0 implies can't do scatter gather */
  196. #define SG_GET_VERSION_NUM 0x2282 /* Example: version 2.1.34 yields 20134 */
  197. /* Returns -EBUSY if occupied. 3rd argument pointer to int (see next) */
  198. #define SG_SCSI_RESET 0x2284
  199. /* Associated values that can be given to SG_SCSI_RESET follow */
  200. #define SG_SCSI_RESET_NOTHING 0
  201. #define SG_SCSI_RESET_DEVICE 1
  202. #define SG_SCSI_RESET_BUS 2
  203. #define SG_SCSI_RESET_HOST 3
  204. /* synchronous SCSI command ioctl, (only in version 3 interface) */
  205. #define SG_IO 0x2285   /* similar effect as write() followed by read() */
  206. #define SG_GET_REQUEST_TABLE 0x2286   /* yields table of active requests */
  207. /* How to treat EINTR during SG_IO ioctl(), only in SG 3.x series */
  208. #define SG_SET_KEEP_ORPHAN 0x2287 /* 1 -> hold for read(), 0 -> drop (def) */
  209. #define SG_GET_KEEP_ORPHAN 0x2288
  210. /* yields scsi midlevel's access_count for this SCSI device */
  211. #define SG_GET_ACCESS_COUNT 0x2289  
  212. #define SG_SCATTER_SZ (8 * 4096)  /* PAGE_SIZE not available to user */
  213. /* Largest size (in bytes) a single scatter-gather list element can have.
  214.    The value must be a power of 2 and <= (PAGE_SIZE * 32) [131072 bytes on
  215.    i386]. The minimum value is PAGE_SIZE. If scatter-gather not supported
  216.    by adapter then this value is the largest data block that can be
  217.    read/written by a single scsi command. The user can find the value of
  218.    PAGE_SIZE by calling getpagesize() defined in unistd.h . */
  219. #define SG_DEFAULT_RETRIES 1
  220. /* Defaults, commented if they differ from original sg driver */
  221. #define SG_DEF_FORCE_LOW_DMA 0  /* was 1 -> memory below 16MB on i386 */
  222. #define SG_DEF_FORCE_PACK_ID 0
  223. #define SG_DEF_KEEP_ORPHAN 0
  224. #define SG_DEF_RESERVED_SIZE SG_SCATTER_SZ /* load time option */
  225. /* maximum outstanding requests, write() yields EDOM if exceeded */
  226. #define SG_MAX_QUEUE 16
  227. #define SG_BIG_BUFF SG_DEF_RESERVED_SIZE    /* for backward compatibility */
  228. /* Alternate style type names, "..._t" variants preferred */
  229. typedef struct sg_io_hdr Sg_io_hdr;
  230. typedef struct sg_io_vec Sg_io_vec;
  231. typedef struct sg_scsi_id Sg_scsi_id;
  232. typedef struct sg_req_info Sg_req_info;
  233. /* vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv */
  234. /*   The older SG interface based on the 'sg_header' structure follows.   */
  235. /* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
  236. #define SG_MAX_SENSE 16   /* this only applies to the sg_header interface */
  237. struct sg_header
  238. {
  239.     int pack_len;    /* [o] reply_len (ie useless), ignored as input */
  240.     int reply_len;   /* [i] max length of expected reply (inc. sg_header) */
  241.     int pack_id;     /* [io] id number of packet (use ints >= 0) */
  242.     int result;      /* [o] 0==ok, else (+ve) Unix errno (best ignored) */
  243.     unsigned int twelve_byte:1;
  244. /* [i] Force 12 byte command length for group 6 & 7 commands  */
  245.     unsigned int target_status:5;   /* [o] scsi status from target */
  246.     unsigned int host_status:8;     /* [o] host status (see "DID" codes) */
  247.     unsigned int driver_status:8;   /* [o] driver status+suggestion */
  248.     unsigned int other_flags:10;    /* unused */
  249.     unsigned char sense_buffer[SG_MAX_SENSE]; /* [o] Output in 3 cases:
  250.    when target_status is CHECK_CONDITION or
  251.    when target_status is COMMAND_TERMINATED or
  252.    when (driver_status & DRIVER_SENSE) is true. */
  253. };      /* This structure is 36 bytes long on i386 */
  254. /* IOCTLs: The following are not required (or ignored) when the sg_io_hdr_t
  255.    interface is used. They are kept for backward compatibility with
  256.    the original and version 2 drivers. */
  257. #define SG_SET_TIMEOUT 0x2201  /* unit: jiffies (10ms on i386) */
  258. #define SG_GET_TIMEOUT 0x2202  /* yield timeout as _return_ value */
  259. /* Get/set command queuing state per fd (default is SG_DEF_COMMAND_Q.
  260.    Each time a sg_io_hdr_t object is seen on this file descriptor, this
  261.    command queuing flag is set on (overriding the previous setting). */
  262. #define SG_GET_COMMAND_Q 0x2270   /* Yields 0 (queuing off) or 1 (on) */
  263. #define SG_SET_COMMAND_Q 0x2271   /* Change queuing state with 0 or 1 */
  264. /* Turn on/off error sense trace (1 and 0 respectively, default is off).
  265.    Try using: "# cat /proc/scsi/sg/debug" instead in the v3 driver */
  266. #define SG_SET_DEBUG 0x227e    /* 0 -> turn off debug */
  267. #define SG_NEXT_CMD_LEN 0x2283  /* override SCSI command length with given
  268.    number on the next write() on this file descriptor */
  269. /* Defaults, commented if they differ from original sg driver */
  270. #define SG_DEFAULT_TIMEOUT (60*HZ) /* HZ == 'jiffies in 1 second' */
  271. #define SG_DEF_COMMAND_Q 0     /* command queuing is always on when
  272.   the new interface is used */
  273. #define SG_DEF_UNDERRUN_FLAG 0
  274. #endif