mm-only debug patch...
[mmotm.git] / include / scsi / osd_initiator.h
blob7bda1091fb6e367e71030a9ed03efd3fe468462f
1 /*
2 * osd_initiator.h - OSD initiator API definition
4 * Copyright (C) 2008 Panasas Inc. All rights reserved.
6 * Authors:
7 * Boaz Harrosh <bharrosh@panasas.com>
8 * Benny Halevy <bhalevy@panasas.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2
14 #ifndef __OSD_INITIATOR_H__
15 #define __OSD_INITIATOR_H__
17 #include "osd_protocol.h"
18 #include "osd_types.h"
20 #include <linux/blkdev.h>
21 #include <scsi/scsi_device.h>
23 /* Note: "NI" in comments below means "Not Implemented yet" */
25 /* Configure of code:
26 * #undef if you *don't* want OSD v1 support in runtime.
27 * If #defined the initiator will dynamically configure to encode OSD v1
28 * CDB's if the target is detected to be OSD v1 only.
29 * OSD v2 only commands, options, and attributes will be ignored if target
30 * is v1 only.
31 * If #defined will result in bigger/slower code (OK Slower maybe not)
32 * Q: Should this be CONFIG_SCSI_OSD_VER1_SUPPORT and set from Kconfig?
34 #define OSD_VER1_SUPPORT y
36 enum osd_std_version {
37 OSD_VER_NONE = 0,
38 OSD_VER1 = 1,
39 OSD_VER2 = 2,
43 * Object-based Storage Device.
44 * This object represents an OSD device.
45 * It is not a full linux device in any way. It is only
46 * a place to hang resources associated with a Linux
47 * request Q and some default properties.
49 struct osd_dev {
50 struct scsi_device *scsi_device;
51 struct file *file;
52 unsigned def_timeout;
54 #ifdef OSD_VER1_SUPPORT
55 enum osd_std_version version;
56 #endif
59 /* Unique Identification of an OSD device */
60 struct osd_dev_info {
61 unsigned systemid_len;
62 u8 systemid[OSD_SYSTEMID_LEN];
63 unsigned osdname_len;
64 u8 *osdname;
67 /* Retrieve/return osd_dev(s) for use by Kernel clients
68 * Use IS_ERR/ERR_PTR on returned "osd_dev *".
70 struct osd_dev *osduld_path_lookup(const char *dev_name);
71 struct osd_dev *osduld_info_lookup(const struct osd_dev_info *odi);
72 void osduld_put_device(struct osd_dev *od);
74 const struct osd_dev_info *osduld_device_info(struct osd_dev *od);
76 /* Add/remove test ioctls from external modules */
77 typedef int (do_test_fn)(struct osd_dev *od, unsigned cmd, unsigned long arg);
78 int osduld_register_test(unsigned ioctl, do_test_fn *do_test);
79 void osduld_unregister_test(unsigned ioctl);
81 /* These are called by uld at probe time */
82 void osd_dev_init(struct osd_dev *od, struct scsi_device *scsi_device);
83 void osd_dev_fini(struct osd_dev *od);
85 /**
86 * osd_auto_detect_ver - Detect the OSD version, return Unique Identification
88 * @od: OSD target lun handle
89 * @caps: Capabilities authorizing OSD root read attributes access
90 * @odi: Retrieved information uniquely identifying the osd target lun
91 * Note: odi->osdname must be kfreed by caller.
93 * Auto detects the OSD version of the OSD target and sets the @od
94 * accordingly. Meanwhile also returns the "system id" and "osd name" root
95 * attributes which uniquely identify the OSD target. This member is usually
96 * called by the ULD. ULD users should call osduld_device_info().
97 * This rutine allocates osd requests and memory at GFP_KERNEL level and might
98 * sleep.
100 int osd_auto_detect_ver(struct osd_dev *od,
101 void *caps, struct osd_dev_info *odi);
103 static inline struct request_queue *osd_request_queue(struct osd_dev *od)
105 return od->scsi_device->request_queue;
108 /* we might want to use function vector in the future */
109 static inline void osd_dev_set_ver(struct osd_dev *od, enum osd_std_version v)
111 #ifdef OSD_VER1_SUPPORT
112 od->version = v;
113 #endif
116 static inline bool osd_dev_is_ver1(struct osd_dev *od)
118 #ifdef OSD_VER1_SUPPORT
119 return od->version == OSD_VER1;
120 #else
121 return false;
122 #endif
125 struct osd_request;
126 typedef void (osd_req_done_fn)(struct osd_request *or, void *private);
128 struct osd_request {
129 struct osd_cdb cdb;
130 struct osd_data_out_integrity_info out_data_integ;
131 struct osd_data_in_integrity_info in_data_integ;
133 struct osd_dev *osd_dev;
134 struct request *request;
136 struct _osd_req_data_segment {
137 void *buff;
138 unsigned alloc_size; /* 0 here means: don't call kfree */
139 unsigned total_bytes;
140 } set_attr, enc_get_attr, get_attr;
142 struct _osd_io_info {
143 struct bio *bio;
144 u64 total_bytes;
145 struct request *req;
146 struct _osd_req_data_segment *last_seg;
147 u8 *pad_buff;
148 } out, in;
150 gfp_t alloc_flags;
151 unsigned timeout;
152 unsigned retries;
153 u8 sense[OSD_MAX_SENSE_LEN];
154 enum osd_attributes_mode attributes_mode;
156 osd_req_done_fn *async_done;
157 void *async_private;
158 int async_error;
161 static inline bool osd_req_is_ver1(struct osd_request *or)
163 return osd_dev_is_ver1(or->osd_dev);
167 * How to use the osd library:
169 * osd_start_request
170 * Allocates a request.
172 * osd_req_*
173 * Call one of, to encode the desired operation.
175 * osd_add_{get,set}_attr
176 * Optionally add attributes to the CDB, list or page mode.
178 * osd_finalize_request
179 * Computes final data out/in offsets and signs the request,
180 * making it ready for execution.
182 * osd_execute_request
183 * May be called to execute it through the block layer. Other wise submit
184 * the associated block request in some other way.
186 * After execution:
187 * osd_req_decode_sense
188 * Decodes sense information to verify execution results.
190 * osd_req_decode_get_attr
191 * Retrieve osd_add_get_attr_list() values if used.
193 * osd_end_request
194 * Must be called to deallocate the request.
198 * osd_start_request - Allocate and initialize an osd_request
200 * @osd_dev: OSD device that holds the scsi-device and default values
201 * that the request is associated with.
202 * @gfp: The allocation flags to use for request allocation, and all
203 * subsequent allocations. This will be stored at
204 * osd_request->alloc_flags, can be changed by user later
206 * Allocate osd_request and initialize all members to the
207 * default/initial state.
209 struct osd_request *osd_start_request(struct osd_dev *od, gfp_t gfp);
211 enum osd_req_options {
212 OSD_REQ_FUA = 0x08, /* Force Unit Access */
213 OSD_REQ_DPO = 0x10, /* Disable Page Out */
215 OSD_REQ_BYPASS_TIMESTAMPS = 0x80,
219 * osd_finalize_request - Sign request and prepare request for execution
221 * @or: osd_request to prepare
222 * @options: combination of osd_req_options bit flags or 0.
223 * @cap: A Pointer to an OSD_CAP_LEN bytes buffer that is received from
224 * The security manager as capabilities for this cdb.
225 * @cap_key: The cryptographic key used to sign the cdb/data. Can be null
226 * if NOSEC is used.
228 * The actual request and bios are only allocated here, so are the get_attr
229 * buffers that will receive the returned attributes. Copy's @cap to cdb.
230 * Sign the cdb/data with @cap_key.
232 int osd_finalize_request(struct osd_request *or,
233 u8 options, const void *cap, const u8 *cap_key);
236 * osd_execute_request - Execute the request synchronously through block-layer
238 * @or: osd_request to Executed
240 * Calls blk_execute_rq to q the command and waits for completion.
242 int osd_execute_request(struct osd_request *or);
245 * osd_execute_request_async - Execute the request without waitting.
247 * @or: - osd_request to Executed
248 * @done: (Optional) - Called at end of execution
249 * @private: - Will be passed to @done function
251 * Calls blk_execute_rq_nowait to queue the command. When execution is done
252 * optionally calls @done with @private as parameter. @or->async_error will
253 * have the return code
255 int osd_execute_request_async(struct osd_request *or,
256 osd_req_done_fn *done, void *private);
259 * osd_req_decode_sense_full - Decode sense information after execution.
261 * @or: - osd_request to examine
262 * @osi - Recievs a more detailed error report information (optional).
263 * @silent - Do not print to dmsg (Even if enabled)
264 * @bad_obj_list - Some commands act on multiple objects. Failed objects will
265 * be recieved here (optional)
266 * @max_obj - Size of @bad_obj_list.
267 * @bad_attr_list - List of failing attributes (optional)
268 * @max_attr - Size of @bad_attr_list.
270 * After execution, sense + return code can be analyzed using this function. The
271 * return code is the final disposition on the error. So it is possible that a
272 * CHECK_CONDITION was returned from target but this will return NO_ERROR, for
273 * example on recovered errors. All parameters are optional if caller does
274 * not need any returned information.
275 * Note: This function will also dump the error to dmsg according to settings
276 * of the SCSI_OSD_DPRINT_SENSE Kconfig value. Set @silent if you know the
277 * command would routinely fail, to not spam the dmsg file.
279 struct osd_sense_info {
280 int key; /* one of enum scsi_sense_keys */
281 int additional_code ; /* enum osd_additional_sense_codes */
282 union { /* Sense specific information */
283 u16 sense_info;
284 u16 cdb_field_offset; /* scsi_invalid_field_in_cdb */
286 union { /* Command specific information */
287 u64 command_info;
290 u32 not_initiated_command_functions; /* osd_command_functions_bits */
291 u32 completed_command_functions; /* osd_command_functions_bits */
292 struct osd_obj_id obj;
293 struct osd_attr attr;
296 int osd_req_decode_sense_full(struct osd_request *or,
297 struct osd_sense_info *osi, bool silent,
298 struct osd_obj_id *bad_obj_list, int max_obj,
299 struct osd_attr *bad_attr_list, int max_attr);
301 static inline int osd_req_decode_sense(struct osd_request *or,
302 struct osd_sense_info *osi)
304 return osd_req_decode_sense_full(or, osi, false, NULL, 0, NULL, 0);
308 * osd_end_request - return osd_request to free store
310 * @or: osd_request to free
312 * Deallocate all osd_request resources (struct req's, BIOs, buffers, etc.)
314 void osd_end_request(struct osd_request *or);
317 * CDB Encoding
319 * Note: call only one of the following methods.
323 * Device commands
325 void osd_req_set_master_seed_xchg(struct osd_request *or, ...);/* NI */
326 void osd_req_set_master_key(struct osd_request *or, ...);/* NI */
328 void osd_req_format(struct osd_request *or, u64 tot_capacity);
330 /* list all partitions
331 * @list header must be initialized to zero on first run.
333 * Call osd_is_obj_list_done() to find if we got the complete list.
335 int osd_req_list_dev_partitions(struct osd_request *or,
336 osd_id initial_id, struct osd_obj_id_list *list, unsigned nelem);
338 void osd_req_flush_obsd(struct osd_request *or,
339 enum osd_options_flush_scope_values);
341 void osd_req_perform_scsi_command(struct osd_request *or,
342 const u8 *cdb, ...);/* NI */
343 void osd_req_task_management(struct osd_request *or, ...);/* NI */
346 * Partition commands
348 void osd_req_create_partition(struct osd_request *or, osd_id partition);
349 void osd_req_remove_partition(struct osd_request *or, osd_id partition);
351 void osd_req_set_partition_key(struct osd_request *or,
352 osd_id partition, u8 new_key_id[OSD_CRYPTO_KEYID_SIZE],
353 u8 seed[OSD_CRYPTO_SEED_SIZE]);/* NI */
355 /* list all collections in the partition
356 * @list header must be init to zero on first run.
358 * Call osd_is_obj_list_done() to find if we got the complete list.
360 int osd_req_list_partition_collections(struct osd_request *or,
361 osd_id partition, osd_id initial_id, struct osd_obj_id_list *list,
362 unsigned nelem);
364 /* list all objects in the partition
365 * @list header must be init to zero on first run.
367 * Call osd_is_obj_list_done() to find if we got the complete list.
369 int osd_req_list_partition_objects(struct osd_request *or,
370 osd_id partition, osd_id initial_id, struct osd_obj_id_list *list,
371 unsigned nelem);
373 void osd_req_flush_partition(struct osd_request *or,
374 osd_id partition, enum osd_options_flush_scope_values);
377 * Collection commands
379 void osd_req_create_collection(struct osd_request *or,
380 const struct osd_obj_id *);/* NI */
381 void osd_req_remove_collection(struct osd_request *or,
382 const struct osd_obj_id *);/* NI */
384 /* list all objects in the collection */
385 int osd_req_list_collection_objects(struct osd_request *or,
386 const struct osd_obj_id *, osd_id initial_id,
387 struct osd_obj_id_list *list, unsigned nelem);
389 /* V2 only filtered list of objects in the collection */
390 void osd_req_query(struct osd_request *or, ...);/* NI */
392 void osd_req_flush_collection(struct osd_request *or,
393 const struct osd_obj_id *, enum osd_options_flush_scope_values);
395 void osd_req_get_member_attrs(struct osd_request *or, ...);/* V2-only NI */
396 void osd_req_set_member_attrs(struct osd_request *or, ...);/* V2-only NI */
399 * Object commands
401 void osd_req_create_object(struct osd_request *or, struct osd_obj_id *);
402 void osd_req_remove_object(struct osd_request *or, struct osd_obj_id *);
404 void osd_req_write(struct osd_request *or,
405 const struct osd_obj_id *obj, u64 offset, struct bio *bio, u64 len);
406 int osd_req_write_kern(struct osd_request *or,
407 const struct osd_obj_id *obj, u64 offset, void *buff, u64 len);
408 void osd_req_append(struct osd_request *or,
409 const struct osd_obj_id *, struct bio *data_out);/* NI */
410 void osd_req_create_write(struct osd_request *or,
411 const struct osd_obj_id *, struct bio *data_out, u64 offset);/* NI */
412 void osd_req_clear(struct osd_request *or,
413 const struct osd_obj_id *, u64 offset, u64 len);/* NI */
414 void osd_req_punch(struct osd_request *or,
415 const struct osd_obj_id *, u64 offset, u64 len);/* V2-only NI */
417 void osd_req_flush_object(struct osd_request *or,
418 const struct osd_obj_id *, enum osd_options_flush_scope_values,
419 /*V2*/ u64 offset, /*V2*/ u64 len);
421 void osd_req_read(struct osd_request *or,
422 const struct osd_obj_id *obj, u64 offset, struct bio *bio, u64 len);
423 int osd_req_read_kern(struct osd_request *or,
424 const struct osd_obj_id *obj, u64 offset, void *buff, u64 len);
427 * Root/Partition/Collection/Object Attributes commands
430 /* get before set */
431 void osd_req_get_attributes(struct osd_request *or, const struct osd_obj_id *);
433 /* set before get */
434 void osd_req_set_attributes(struct osd_request *or, const struct osd_obj_id *);
437 * Attributes appended to most commands
440 /* Attributes List mode (or V2 CDB) */
442 * TODO: In ver2 if at finalize time only one attr was set and no gets,
443 * then the Attributes CDB mode is used automatically to save IO.
446 /* set a list of attributes. */
447 int osd_req_add_set_attr_list(struct osd_request *or,
448 const struct osd_attr *, unsigned nelem);
450 /* get a list of attributes */
451 int osd_req_add_get_attr_list(struct osd_request *or,
452 const struct osd_attr *, unsigned nelem);
455 * Attributes list decoding
456 * Must be called after osd_request.request was executed
457 * It is called in a loop to decode the returned get_attr
458 * (see osd_add_get_attr)
460 int osd_req_decode_get_attr_list(struct osd_request *or,
461 struct osd_attr *, int *nelem, void **iterator);
463 /* Attributes Page mode */
466 * Read an attribute page and optionally set one attribute
468 * Retrieves the attribute page directly to a user buffer.
469 * @attr_page_data shall stay valid until end of execution.
470 * See osd_attributes.h for common page structures
472 int osd_req_add_get_attr_page(struct osd_request *or,
473 u32 page_id, void *attr_page_data, unsigned max_page_len,
474 const struct osd_attr *set_one);
476 #endif /* __OSD_LIB_H__ */