2 * osd_initiator - Main body of the osd initiator library.
4 * Note: The file does not contain the advanced security functionality which
5 * is only needed by the security_manager's initiators.
7 * Copyright (C) 2008 Panasas Inc. All rights reserved.
10 * Boaz Harrosh <ooo@electrozaur.com>
11 * Benny Halevy <bhalevy@panasas.com>
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 * 3. Neither the name of the Panasas company nor the names of its
26 * contributors may be used to endorse or promote products derived
27 * from this software without specific prior written permission.
29 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
30 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
31 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
32 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
34 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
35 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
36 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
37 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
38 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
39 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42 #include <linux/slab.h>
43 #include <linux/module.h>
45 #include <scsi/osd_initiator.h>
46 #include <scsi/osd_sec.h>
47 #include <scsi/osd_attributes.h>
48 #include <scsi/osd_sense.h>
50 #include <scsi/scsi_device.h>
51 #include <scsi/scsi_request.h>
53 #include "osd_debug.h"
56 # define __unused __attribute__((unused))
59 enum { OSD_REQ_RETRIES
= 1 };
61 MODULE_AUTHOR("Boaz Harrosh <ooo@electrozaur.com>");
62 MODULE_DESCRIPTION("open-osd initiator library libosd.ko");
63 MODULE_LICENSE("GPL");
65 static inline void build_test(void)
67 /* structures were not packed */
68 BUILD_BUG_ON(sizeof(struct osd_capability
) != OSD_CAP_LEN
);
69 BUILD_BUG_ON(sizeof(struct osdv2_cdb
) != OSD_TOTAL_CDB_LEN
);
70 BUILD_BUG_ON(sizeof(struct osdv1_cdb
) != OSDv1_TOTAL_CDB_LEN
);
73 static const char *_osd_ver_desc(struct osd_request
*or)
75 return osd_req_is_ver1(or) ? "OSD1" : "OSD2";
78 #define ATTR_DEF_RI(id, len) ATTR_DEF(OSD_APAGE_ROOT_INFORMATION, id, len)
80 static int _osd_get_print_system_info(struct osd_dev
*od
,
81 void *caps
, struct osd_dev_info
*odi
)
83 struct osd_request
*or;
84 struct osd_attr get_attrs
[] = {
85 ATTR_DEF_RI(OSD_ATTR_RI_VENDOR_IDENTIFICATION
, 8),
86 ATTR_DEF_RI(OSD_ATTR_RI_PRODUCT_IDENTIFICATION
, 16),
87 ATTR_DEF_RI(OSD_ATTR_RI_PRODUCT_MODEL
, 32),
88 ATTR_DEF_RI(OSD_ATTR_RI_PRODUCT_REVISION_LEVEL
, 4),
89 ATTR_DEF_RI(OSD_ATTR_RI_PRODUCT_SERIAL_NUMBER
, 64 /*variable*/),
90 ATTR_DEF_RI(OSD_ATTR_RI_OSD_NAME
, 64 /*variable*/),
91 ATTR_DEF_RI(OSD_ATTR_RI_TOTAL_CAPACITY
, 8),
92 ATTR_DEF_RI(OSD_ATTR_RI_USED_CAPACITY
, 8),
93 ATTR_DEF_RI(OSD_ATTR_RI_NUMBER_OF_PARTITIONS
, 8),
94 ATTR_DEF_RI(OSD_ATTR_RI_CLOCK
, 6),
95 /* IBM-OSD-SIM Has a bug with this one put it last */
96 ATTR_DEF_RI(OSD_ATTR_RI_OSD_SYSTEM_ID
, 20),
98 void *iter
= NULL
, *pFirst
;
99 int nelem
= ARRAY_SIZE(get_attrs
), a
= 0;
102 or = osd_start_request(od
);
107 osd_req_get_attributes(or, &osd_root_object
);
108 osd_req_add_get_attr_list(or, get_attrs
, ARRAY_SIZE(get_attrs
));
110 ret
= osd_finalize_request(or, 0, caps
, NULL
);
114 ret
= osd_execute_request(or);
116 OSD_ERR("Failed to detect %s => %d\n", _osd_ver_desc(or), ret
);
120 osd_req_decode_get_attr_list(or, get_attrs
, &nelem
, &iter
);
122 OSD_INFO("Detected %s device\n",
125 pFirst
= get_attrs
[a
++].val_ptr
;
126 OSD_INFO("VENDOR_IDENTIFICATION [%s]\n",
129 pFirst
= get_attrs
[a
++].val_ptr
;
130 OSD_INFO("PRODUCT_IDENTIFICATION [%s]\n",
133 pFirst
= get_attrs
[a
++].val_ptr
;
134 OSD_INFO("PRODUCT_MODEL [%s]\n",
137 pFirst
= get_attrs
[a
++].val_ptr
;
138 OSD_INFO("PRODUCT_REVISION_LEVEL [%u]\n",
139 pFirst
? get_unaligned_be32(pFirst
) : ~0U);
141 pFirst
= get_attrs
[a
++].val_ptr
;
142 OSD_INFO("PRODUCT_SERIAL_NUMBER [%s]\n",
145 odi
->osdname_len
= get_attrs
[a
].len
;
146 /* Avoid NULL for memcmp optimization 0-length is good enough */
147 odi
->osdname
= kzalloc(odi
->osdname_len
+ 1, GFP_KERNEL
);
152 if (odi
->osdname_len
)
153 memcpy(odi
->osdname
, get_attrs
[a
].val_ptr
, odi
->osdname_len
);
154 OSD_INFO("OSD_NAME [%s]\n", odi
->osdname
);
157 pFirst
= get_attrs
[a
++].val_ptr
;
158 OSD_INFO("TOTAL_CAPACITY [0x%llx]\n",
159 pFirst
? _LLU(get_unaligned_be64(pFirst
)) : ~0ULL);
161 pFirst
= get_attrs
[a
++].val_ptr
;
162 OSD_INFO("USED_CAPACITY [0x%llx]\n",
163 pFirst
? _LLU(get_unaligned_be64(pFirst
)) : ~0ULL);
165 pFirst
= get_attrs
[a
++].val_ptr
;
166 OSD_INFO("NUMBER_OF_PARTITIONS [%llu]\n",
167 pFirst
? _LLU(get_unaligned_be64(pFirst
)) : ~0ULL);
172 /* FIXME: Where are the time utilities */
173 pFirst
= get_attrs
[a
++].val_ptr
;
174 OSD_INFO("CLOCK [0x%6phN]\n", pFirst
);
176 if (a
< nelem
) { /* IBM-OSD-SIM bug, Might not have it */
177 unsigned len
= get_attrs
[a
].len
;
178 char sid_dump
[32*4 + 2]; /* 2nibbles+space+ASCII */
180 hex_dump_to_buffer(get_attrs
[a
].val_ptr
, len
, 32, 1,
181 sid_dump
, sizeof(sid_dump
), true);
182 OSD_INFO("OSD_SYSTEM_ID(%d)\n"
183 " [%s]\n", len
, sid_dump
);
185 if (unlikely(len
> sizeof(odi
->systemid
))) {
186 OSD_ERR("OSD Target error: OSD_SYSTEM_ID too long(%d). "
187 "device identification might not work\n", len
);
188 len
= sizeof(odi
->systemid
);
190 odi
->systemid_len
= len
;
191 memcpy(odi
->systemid
, get_attrs
[a
].val_ptr
, len
);
199 int osd_auto_detect_ver(struct osd_dev
*od
,
200 void *caps
, struct osd_dev_info
*odi
)
204 /* Auto-detect the osd version */
205 ret
= _osd_get_print_system_info(od
, caps
, odi
);
207 osd_dev_set_ver(od
, OSD_VER1
);
208 OSD_DEBUG("converting to OSD1\n");
209 ret
= _osd_get_print_system_info(od
, caps
, odi
);
214 EXPORT_SYMBOL(osd_auto_detect_ver
);
216 static unsigned _osd_req_cdb_len(struct osd_request
*or)
218 return osd_req_is_ver1(or) ? OSDv1_TOTAL_CDB_LEN
: OSD_TOTAL_CDB_LEN
;
221 static unsigned _osd_req_alist_elem_size(struct osd_request
*or, unsigned len
)
223 return osd_req_is_ver1(or) ?
224 osdv1_attr_list_elem_size(len
) :
225 osdv2_attr_list_elem_size(len
);
228 static void _osd_req_alist_elem_encode(struct osd_request
*or,
229 void *attr_last
, const struct osd_attr
*oa
)
231 if (osd_req_is_ver1(or)) {
232 struct osdv1_attributes_list_element
*attr
= attr_last
;
234 attr
->attr_page
= cpu_to_be32(oa
->attr_page
);
235 attr
->attr_id
= cpu_to_be32(oa
->attr_id
);
236 attr
->attr_bytes
= cpu_to_be16(oa
->len
);
237 memcpy(attr
->attr_val
, oa
->val_ptr
, oa
->len
);
239 struct osdv2_attributes_list_element
*attr
= attr_last
;
241 attr
->attr_page
= cpu_to_be32(oa
->attr_page
);
242 attr
->attr_id
= cpu_to_be32(oa
->attr_id
);
243 attr
->attr_bytes
= cpu_to_be16(oa
->len
);
244 memcpy(attr
->attr_val
, oa
->val_ptr
, oa
->len
);
248 static int _osd_req_alist_elem_decode(struct osd_request
*or,
249 void *cur_p
, struct osd_attr
*oa
, unsigned max_bytes
)
252 if (osd_req_is_ver1(or)) {
253 struct osdv1_attributes_list_element
*attr
= cur_p
;
255 if (max_bytes
< sizeof(*attr
))
258 oa
->len
= be16_to_cpu(attr
->attr_bytes
);
259 inc
= _osd_req_alist_elem_size(or, oa
->len
);
263 oa
->attr_page
= be32_to_cpu(attr
->attr_page
);
264 oa
->attr_id
= be32_to_cpu(attr
->attr_id
);
266 /* OSD1: On empty attributes we return a pointer to 2 bytes
267 * of zeros. This keeps similar behaviour with OSD2.
270 oa
->val_ptr
= likely(oa
->len
) ? attr
->attr_val
:
271 (u8
*)&attr
->attr_bytes
;
273 struct osdv2_attributes_list_element
*attr
= cur_p
;
275 if (max_bytes
< sizeof(*attr
))
278 oa
->len
= be16_to_cpu(attr
->attr_bytes
);
279 inc
= _osd_req_alist_elem_size(or, oa
->len
);
283 oa
->attr_page
= be32_to_cpu(attr
->attr_page
);
284 oa
->attr_id
= be32_to_cpu(attr
->attr_id
);
286 /* OSD2: For convenience, on empty attributes, we return 8 bytes
287 * of zeros here. This keeps the same behaviour with OSD2r04,
288 * and is nice with null terminating ASCII fields.
289 * oa->val_ptr == NULL marks the end-of-list, or error.
291 oa
->val_ptr
= likely(oa
->len
) ? attr
->attr_val
: attr
->reserved
;
296 static unsigned _osd_req_alist_size(struct osd_request
*or, void *list_head
)
298 return osd_req_is_ver1(or) ?
299 osdv1_list_size(list_head
) :
300 osdv2_list_size(list_head
);
303 static unsigned _osd_req_sizeof_alist_header(struct osd_request
*or)
305 return osd_req_is_ver1(or) ?
306 sizeof(struct osdv1_attributes_list_header
) :
307 sizeof(struct osdv2_attributes_list_header
);
310 static void _osd_req_set_alist_type(struct osd_request
*or,
311 void *list
, int list_type
)
313 if (osd_req_is_ver1(or)) {
314 struct osdv1_attributes_list_header
*attr_list
= list
;
316 memset(attr_list
, 0, sizeof(*attr_list
));
317 attr_list
->type
= list_type
;
319 struct osdv2_attributes_list_header
*attr_list
= list
;
321 memset(attr_list
, 0, sizeof(*attr_list
));
322 attr_list
->type
= list_type
;
326 static bool _osd_req_is_alist_type(struct osd_request
*or,
327 void *list
, int list_type
)
332 if (osd_req_is_ver1(or)) {
333 struct osdv1_attributes_list_header
*attr_list
= list
;
335 return attr_list
->type
== list_type
;
337 struct osdv2_attributes_list_header
*attr_list
= list
;
339 return attr_list
->type
== list_type
;
343 /* This is for List-objects not Attributes-Lists */
344 static void _osd_req_encode_olist(struct osd_request
*or,
345 struct osd_obj_id_list
*list
)
347 struct osd_cdb_head
*cdbh
= osd_cdb_head(&or->cdb
);
349 if (osd_req_is_ver1(or)) {
350 cdbh
->v1
.list_identifier
= list
->list_identifier
;
351 cdbh
->v1
.start_address
= list
->continuation_id
;
353 cdbh
->v2
.list_identifier
= list
->list_identifier
;
354 cdbh
->v2
.start_address
= list
->continuation_id
;
358 static osd_cdb_offset
osd_req_encode_offset(struct osd_request
*or,
359 u64 offset
, unsigned *padding
)
361 return __osd_encode_offset(offset
, padding
,
362 osd_req_is_ver1(or) ?
363 OSDv1_OFFSET_MIN_SHIFT
: OSD_OFFSET_MIN_SHIFT
,
364 OSD_OFFSET_MAX_SHIFT
);
367 static struct osd_security_parameters
*
368 _osd_req_sec_params(struct osd_request
*or)
370 struct osd_cdb
*ocdb
= &or->cdb
;
372 if (osd_req_is_ver1(or))
373 return (struct osd_security_parameters
*)&ocdb
->v1
.sec_params
;
375 return (struct osd_security_parameters
*)&ocdb
->v2
.sec_params
;
378 void osd_dev_init(struct osd_dev
*osdd
, struct scsi_device
*scsi_device
)
380 memset(osdd
, 0, sizeof(*osdd
));
381 osdd
->scsi_device
= scsi_device
;
382 osdd
->def_timeout
= BLK_DEFAULT_SG_TIMEOUT
;
383 #ifdef OSD_VER1_SUPPORT
384 osdd
->version
= OSD_VER2
;
386 /* TODO: Allocate pools for osd_request attributes ... */
388 EXPORT_SYMBOL(osd_dev_init
);
390 void osd_dev_fini(struct osd_dev
*osdd
)
392 /* TODO: De-allocate pools */
394 osdd
->scsi_device
= NULL
;
396 EXPORT_SYMBOL(osd_dev_fini
);
398 static struct osd_request
*_osd_request_alloc(gfp_t gfp
)
400 struct osd_request
*or;
402 /* TODO: Use mempool with one saved request */
403 or = kzalloc(sizeof(*or), gfp
);
407 static void _osd_request_free(struct osd_request
*or)
412 struct osd_request
*osd_start_request(struct osd_dev
*dev
)
414 struct osd_request
*or;
416 or = _osd_request_alloc(GFP_KERNEL
);
421 or->timeout
= dev
->def_timeout
;
422 or->retries
= OSD_REQ_RETRIES
;
426 EXPORT_SYMBOL(osd_start_request
);
428 static void _osd_free_seg(struct osd_request
*or __unused
,
429 struct _osd_req_data_segment
*seg
)
431 if (!seg
->buff
|| !seg
->alloc_size
)
439 static void _put_request(struct request
*rq
)
442 * If osd_finalize_request() was called but the request was not
443 * executed through the block layer, then we must release BIOs.
444 * TODO: Keep error code in or->async_error. Need to audit all
447 if (unlikely(rq
->bio
))
448 blk_mq_end_request(rq
, BLK_STS_IOERR
);
453 void osd_end_request(struct osd_request
*or)
455 struct request
*rq
= or->request
;
459 _put_request(rq
->next_rq
);
466 _osd_free_seg(or, &or->get_attr
);
467 _osd_free_seg(or, &or->enc_get_attr
);
468 _osd_free_seg(or, &or->set_attr
);
469 _osd_free_seg(or, &or->cdb_cont
);
471 _osd_request_free(or);
473 EXPORT_SYMBOL(osd_end_request
);
475 static void _set_error_resid(struct osd_request
*or, struct request
*req
,
478 or->async_error
= error
;
479 or->req_errors
= scsi_req(req
)->result
;
480 or->sense_len
= scsi_req(req
)->sense_len
;
482 memcpy(or->sense
, scsi_req(req
)->sense
, or->sense_len
);
484 or->out
.residual
= scsi_req(or->out
.req
)->resid_len
;
486 or->in
.residual
= scsi_req(or->in
.req
)->resid_len
;
489 int osd_execute_request(struct osd_request
*or)
491 blk_execute_rq(or->request
->q
, NULL
, or->request
, 0);
493 if (scsi_req(or->request
)->result
) {
494 _set_error_resid(or, or->request
, BLK_STS_IOERR
);
498 _set_error_resid(or, or->request
, BLK_STS_OK
);
501 EXPORT_SYMBOL(osd_execute_request
);
503 static void osd_request_async_done(struct request
*req
, blk_status_t error
)
505 struct osd_request
*or = req
->end_io_data
;
507 _set_error_resid(or, req
, error
);
509 blk_put_request(req
->next_rq
);
513 blk_put_request(req
);
519 or->async_done(or, or->async_private
);
524 int osd_execute_request_async(struct osd_request
*or,
525 osd_req_done_fn
*done
, void *private)
527 or->request
->end_io_data
= or;
528 or->async_private
= private;
529 or->async_done
= done
;
531 blk_execute_rq_nowait(or->request
->q
, NULL
, or->request
, 0,
532 osd_request_async_done
);
535 EXPORT_SYMBOL(osd_execute_request_async
);
537 u8 sg_out_pad_buffer
[1 << OSDv1_OFFSET_MIN_SHIFT
];
538 u8 sg_in_pad_buffer
[1 << OSDv1_OFFSET_MIN_SHIFT
];
540 static int _osd_realloc_seg(struct osd_request
*or,
541 struct _osd_req_data_segment
*seg
, unsigned max_bytes
)
545 if (seg
->alloc_size
>= max_bytes
)
548 buff
= krealloc(seg
->buff
, max_bytes
, GFP_KERNEL
);
550 OSD_ERR("Failed to Realloc %d-bytes was-%d\n", max_bytes
,
555 memset(buff
+ seg
->alloc_size
, 0, max_bytes
- seg
->alloc_size
);
557 seg
->alloc_size
= max_bytes
;
561 static int _alloc_cdb_cont(struct osd_request
*or, unsigned total_bytes
)
563 OSD_DEBUG("total_bytes=%d\n", total_bytes
);
564 return _osd_realloc_seg(or, &or->cdb_cont
, total_bytes
);
567 static int _alloc_set_attr_list(struct osd_request
*or,
568 const struct osd_attr
*oa
, unsigned nelem
, unsigned add_bytes
)
570 unsigned total_bytes
= add_bytes
;
572 for (; nelem
; --nelem
, ++oa
)
573 total_bytes
+= _osd_req_alist_elem_size(or, oa
->len
);
575 OSD_DEBUG("total_bytes=%d\n", total_bytes
);
576 return _osd_realloc_seg(or, &or->set_attr
, total_bytes
);
579 static int _alloc_get_attr_desc(struct osd_request
*or, unsigned max_bytes
)
581 OSD_DEBUG("total_bytes=%d\n", max_bytes
);
582 return _osd_realloc_seg(or, &or->enc_get_attr
, max_bytes
);
585 static int _alloc_get_attr_list(struct osd_request
*or)
587 OSD_DEBUG("total_bytes=%d\n", or->get_attr
.total_bytes
);
588 return _osd_realloc_seg(or, &or->get_attr
, or->get_attr
.total_bytes
);
592 * Common to all OSD commands
595 static void _osdv1_req_encode_common(struct osd_request
*or,
596 __be16 act
, const struct osd_obj_id
*obj
, u64 offset
, u64 len
)
598 struct osdv1_cdb
*ocdb
= &or->cdb
.v1
;
601 * For speed, the commands
602 * OSD_ACT_PERFORM_SCSI_COMMAND , V1 0x8F7E, V2 0x8F7C
603 * OSD_ACT_SCSI_TASK_MANAGEMENT , V1 0x8F7F, V2 0x8F7D
604 * are not supported here. Should pass zero and set after the call
606 act
&= cpu_to_be16(~0x0080); /* V1 action code */
608 OSD_DEBUG("OSDv1 execute opcode 0x%x\n", be16_to_cpu(act
));
610 ocdb
->h
.varlen_cdb
.opcode
= VARIABLE_LENGTH_CMD
;
611 ocdb
->h
.varlen_cdb
.additional_cdb_length
= OSD_ADDITIONAL_CDB_LENGTH
;
612 ocdb
->h
.varlen_cdb
.service_action
= act
;
614 ocdb
->h
.partition
= cpu_to_be64(obj
->partition
);
615 ocdb
->h
.object
= cpu_to_be64(obj
->id
);
616 ocdb
->h
.v1
.length
= cpu_to_be64(len
);
617 ocdb
->h
.v1
.start_address
= cpu_to_be64(offset
);
620 static void _osdv2_req_encode_common(struct osd_request
*or,
621 __be16 act
, const struct osd_obj_id
*obj
, u64 offset
, u64 len
)
623 struct osdv2_cdb
*ocdb
= &or->cdb
.v2
;
625 OSD_DEBUG("OSDv2 execute opcode 0x%x\n", be16_to_cpu(act
));
627 ocdb
->h
.varlen_cdb
.opcode
= VARIABLE_LENGTH_CMD
;
628 ocdb
->h
.varlen_cdb
.additional_cdb_length
= OSD_ADDITIONAL_CDB_LENGTH
;
629 ocdb
->h
.varlen_cdb
.service_action
= act
;
631 ocdb
->h
.partition
= cpu_to_be64(obj
->partition
);
632 ocdb
->h
.object
= cpu_to_be64(obj
->id
);
633 ocdb
->h
.v2
.length
= cpu_to_be64(len
);
634 ocdb
->h
.v2
.start_address
= cpu_to_be64(offset
);
637 static void _osd_req_encode_common(struct osd_request
*or,
638 __be16 act
, const struct osd_obj_id
*obj
, u64 offset
, u64 len
)
640 if (osd_req_is_ver1(or))
641 _osdv1_req_encode_common(or, act
, obj
, offset
, len
);
643 _osdv2_req_encode_common(or, act
, obj
, offset
, len
);
649 /*TODO: void osd_req_set_master_seed_xchg(struct osd_request *, ...); */
650 /*TODO: void osd_req_set_master_key(struct osd_request *, ...); */
652 void osd_req_format(struct osd_request
*or, u64 tot_capacity
)
654 _osd_req_encode_common(or, OSD_ACT_FORMAT_OSD
, &osd_root_object
, 0,
657 EXPORT_SYMBOL(osd_req_format
);
659 int osd_req_list_dev_partitions(struct osd_request
*or,
660 osd_id initial_id
, struct osd_obj_id_list
*list
, unsigned nelem
)
662 return osd_req_list_partition_objects(or, 0, initial_id
, list
, nelem
);
664 EXPORT_SYMBOL(osd_req_list_dev_partitions
);
666 static void _osd_req_encode_flush(struct osd_request
*or,
667 enum osd_options_flush_scope_values op
)
669 struct osd_cdb_head
*ocdb
= osd_cdb_head(&or->cdb
);
671 ocdb
->command_specific_options
= op
;
674 void osd_req_flush_obsd(struct osd_request
*or,
675 enum osd_options_flush_scope_values op
)
677 _osd_req_encode_common(or, OSD_ACT_FLUSH_OSD
, &osd_root_object
, 0, 0);
678 _osd_req_encode_flush(or, op
);
680 EXPORT_SYMBOL(osd_req_flush_obsd
);
682 /*TODO: void osd_req_perform_scsi_command(struct osd_request *,
683 const u8 *cdb, ...); */
684 /*TODO: void osd_req_task_management(struct osd_request *, ...); */
689 static void _osd_req_encode_partition(struct osd_request
*or,
690 __be16 act
, osd_id partition
)
692 struct osd_obj_id par
= {
693 .partition
= partition
,
697 _osd_req_encode_common(or, act
, &par
, 0, 0);
700 void osd_req_create_partition(struct osd_request
*or, osd_id partition
)
702 _osd_req_encode_partition(or, OSD_ACT_CREATE_PARTITION
, partition
);
704 EXPORT_SYMBOL(osd_req_create_partition
);
706 void osd_req_remove_partition(struct osd_request
*or, osd_id partition
)
708 _osd_req_encode_partition(or, OSD_ACT_REMOVE_PARTITION
, partition
);
710 EXPORT_SYMBOL(osd_req_remove_partition
);
712 /*TODO: void osd_req_set_partition_key(struct osd_request *,
713 osd_id partition, u8 new_key_id[OSD_CRYPTO_KEYID_SIZE],
714 u8 seed[OSD_CRYPTO_SEED_SIZE]); */
716 static int _osd_req_list_objects(struct osd_request
*or,
717 __be16 action
, const struct osd_obj_id
*obj
, osd_id initial_id
,
718 struct osd_obj_id_list
*list
, unsigned nelem
)
720 struct request_queue
*q
= osd_request_queue(or->osd_dev
);
721 u64 len
= nelem
* sizeof(osd_id
) + sizeof(*list
);
724 _osd_req_encode_common(or, action
, obj
, (u64
)initial_id
, len
);
726 if (list
->list_identifier
)
727 _osd_req_encode_olist(or, list
);
730 bio
= bio_map_kern(q
, list
, len
, GFP_KERNEL
);
732 OSD_ERR("!!! Failed to allocate list_objects BIO\n");
736 bio_set_op_attrs(bio
, REQ_OP_READ
, 0);
738 or->in
.total_bytes
= bio
->bi_iter
.bi_size
;
742 int osd_req_list_partition_collections(struct osd_request
*or,
743 osd_id partition
, osd_id initial_id
, struct osd_obj_id_list
*list
,
746 struct osd_obj_id par
= {
747 .partition
= partition
,
751 return osd_req_list_collection_objects(or, &par
, initial_id
, list
,
754 EXPORT_SYMBOL(osd_req_list_partition_collections
);
756 int osd_req_list_partition_objects(struct osd_request
*or,
757 osd_id partition
, osd_id initial_id
, struct osd_obj_id_list
*list
,
760 struct osd_obj_id par
= {
761 .partition
= partition
,
765 return _osd_req_list_objects(or, OSD_ACT_LIST
, &par
, initial_id
, list
,
768 EXPORT_SYMBOL(osd_req_list_partition_objects
);
770 void osd_req_flush_partition(struct osd_request
*or,
771 osd_id partition
, enum osd_options_flush_scope_values op
)
773 _osd_req_encode_partition(or, OSD_ACT_FLUSH_PARTITION
, partition
);
774 _osd_req_encode_flush(or, op
);
776 EXPORT_SYMBOL(osd_req_flush_partition
);
779 * Collection commands
781 /*TODO: void osd_req_create_collection(struct osd_request *,
782 const struct osd_obj_id *); */
783 /*TODO: void osd_req_remove_collection(struct osd_request *,
784 const struct osd_obj_id *); */
786 int osd_req_list_collection_objects(struct osd_request
*or,
787 const struct osd_obj_id
*obj
, osd_id initial_id
,
788 struct osd_obj_id_list
*list
, unsigned nelem
)
790 return _osd_req_list_objects(or, OSD_ACT_LIST_COLLECTION
, obj
,
791 initial_id
, list
, nelem
);
793 EXPORT_SYMBOL(osd_req_list_collection_objects
);
795 /*TODO: void query(struct osd_request *, ...); V2 */
797 void osd_req_flush_collection(struct osd_request
*or,
798 const struct osd_obj_id
*obj
, enum osd_options_flush_scope_values op
)
800 _osd_req_encode_common(or, OSD_ACT_FLUSH_PARTITION
, obj
, 0, 0);
801 _osd_req_encode_flush(or, op
);
803 EXPORT_SYMBOL(osd_req_flush_collection
);
805 /*TODO: void get_member_attrs(struct osd_request *, ...); V2 */
806 /*TODO: void set_member_attrs(struct osd_request *, ...); V2 */
811 void osd_req_create_object(struct osd_request
*or, struct osd_obj_id
*obj
)
813 _osd_req_encode_common(or, OSD_ACT_CREATE
, obj
, 0, 0);
815 EXPORT_SYMBOL(osd_req_create_object
);
817 void osd_req_remove_object(struct osd_request
*or, struct osd_obj_id
*obj
)
819 _osd_req_encode_common(or, OSD_ACT_REMOVE
, obj
, 0, 0);
821 EXPORT_SYMBOL(osd_req_remove_object
);
824 /*TODO: void osd_req_create_multi(struct osd_request *or,
825 struct osd_obj_id *first, struct osd_obj_id_list *list, unsigned nelem);
828 void osd_req_write(struct osd_request
*or,
829 const struct osd_obj_id
*obj
, u64 offset
,
830 struct bio
*bio
, u64 len
)
832 _osd_req_encode_common(or, OSD_ACT_WRITE
, obj
, offset
, len
);
833 WARN_ON(or->out
.bio
|| or->out
.total_bytes
);
834 WARN_ON(!op_is_write(bio_op(bio
)));
836 or->out
.total_bytes
= len
;
838 EXPORT_SYMBOL(osd_req_write
);
840 int osd_req_write_kern(struct osd_request
*or,
841 const struct osd_obj_id
*obj
, u64 offset
, void* buff
, u64 len
)
843 struct request_queue
*req_q
= osd_request_queue(or->osd_dev
);
844 struct bio
*bio
= bio_map_kern(req_q
, buff
, len
, GFP_KERNEL
);
849 bio_set_op_attrs(bio
, REQ_OP_WRITE
, 0);
850 osd_req_write(or, obj
, offset
, bio
, len
);
853 EXPORT_SYMBOL(osd_req_write_kern
);
855 /*TODO: void osd_req_append(struct osd_request *,
856 const struct osd_obj_id *, struct bio *data_out); */
857 /*TODO: void osd_req_create_write(struct osd_request *,
858 const struct osd_obj_id *, struct bio *data_out, u64 offset); */
859 /*TODO: void osd_req_clear(struct osd_request *,
860 const struct osd_obj_id *, u64 offset, u64 len); */
861 /*TODO: void osd_req_punch(struct osd_request *,
862 const struct osd_obj_id *, u64 offset, u64 len); V2 */
864 void osd_req_flush_object(struct osd_request
*or,
865 const struct osd_obj_id
*obj
, enum osd_options_flush_scope_values op
,
866 /*V2*/ u64 offset
, /*V2*/ u64 len
)
868 if (unlikely(osd_req_is_ver1(or) && (offset
|| len
))) {
869 OSD_DEBUG("OSD Ver1 flush on specific range ignored\n");
874 _osd_req_encode_common(or, OSD_ACT_FLUSH
, obj
, offset
, len
);
875 _osd_req_encode_flush(or, op
);
877 EXPORT_SYMBOL(osd_req_flush_object
);
879 void osd_req_read(struct osd_request
*or,
880 const struct osd_obj_id
*obj
, u64 offset
,
881 struct bio
*bio
, u64 len
)
883 _osd_req_encode_common(or, OSD_ACT_READ
, obj
, offset
, len
);
884 WARN_ON(or->in
.bio
|| or->in
.total_bytes
);
885 WARN_ON(op_is_write(bio_op(bio
)));
887 or->in
.total_bytes
= len
;
889 EXPORT_SYMBOL(osd_req_read
);
891 int osd_req_read_kern(struct osd_request
*or,
892 const struct osd_obj_id
*obj
, u64 offset
, void* buff
, u64 len
)
894 struct request_queue
*req_q
= osd_request_queue(or->osd_dev
);
895 struct bio
*bio
= bio_map_kern(req_q
, buff
, len
, GFP_KERNEL
);
900 osd_req_read(or, obj
, offset
, bio
, len
);
903 EXPORT_SYMBOL(osd_req_read_kern
);
905 static int _add_sg_continuation_descriptor(struct osd_request
*or,
906 const struct osd_sg_entry
*sglist
, unsigned numentries
, u64
*len
)
908 struct osd_sg_continuation_descriptor
*oscd
;
913 oscd_size
= sizeof(*oscd
) + numentries
* sizeof(oscd
->entries
[0]);
915 if (!or->cdb_cont
.total_bytes
) {
916 /* First time, jump over the header, we will write to:
917 * cdb_cont.buff + cdb_cont.total_bytes
919 or->cdb_cont
.total_bytes
=
920 sizeof(struct osd_continuation_segment_header
);
923 ret
= _alloc_cdb_cont(or, or->cdb_cont
.total_bytes
+ oscd_size
);
927 oscd
= or->cdb_cont
.buff
+ or->cdb_cont
.total_bytes
;
928 oscd
->hdr
.type
= cpu_to_be16(SCATTER_GATHER_LIST
);
929 oscd
->hdr
.pad_length
= 0;
930 oscd
->hdr
.length
= cpu_to_be32(oscd_size
- sizeof(*oscd
));
933 /* copy the sg entries and convert to network byte order */
934 for (i
= 0; i
< numentries
; i
++) {
935 oscd
->entries
[i
].offset
= cpu_to_be64(sglist
[i
].offset
);
936 oscd
->entries
[i
].len
= cpu_to_be64(sglist
[i
].len
);
937 *len
+= sglist
[i
].len
;
940 or->cdb_cont
.total_bytes
+= oscd_size
;
941 OSD_DEBUG("total_bytes=%d oscd_size=%d numentries=%d\n",
942 or->cdb_cont
.total_bytes
, oscd_size
, numentries
);
946 static int _osd_req_finalize_cdb_cont(struct osd_request
*or, const u8
*cap_key
)
948 struct request_queue
*req_q
= osd_request_queue(or->osd_dev
);
950 struct osd_cdb_head
*cdbh
= osd_cdb_head(&or->cdb
);
951 struct osd_continuation_segment_header
*cont_seg_hdr
;
953 if (!or->cdb_cont
.total_bytes
)
956 cont_seg_hdr
= or->cdb_cont
.buff
;
957 cont_seg_hdr
->format
= CDB_CONTINUATION_FORMAT_V2
;
958 cont_seg_hdr
->service_action
= cdbh
->varlen_cdb
.service_action
;
960 /* create a bio for continuation segment */
961 bio
= bio_map_kern(req_q
, or->cdb_cont
.buff
, or->cdb_cont
.total_bytes
,
966 bio_set_op_attrs(bio
, REQ_OP_WRITE
, 0);
968 /* integrity check the continuation before the bio is linked
969 * with the other data segments since the continuation
970 * integrity is separate from the other data segments.
972 osd_sec_sign_data(cont_seg_hdr
->integrity_check
, bio
, cap_key
);
974 cdbh
->v2
.cdb_continuation_length
= cpu_to_be32(or->cdb_cont
.total_bytes
);
976 /* we can't use _req_append_segment, because we need to link in the
977 * continuation bio to the head of the bio list - the
978 * continuation segment (if it exists) is always the first segment in
979 * the out data buffer.
981 bio
->bi_next
= or->out
.bio
;
983 or->out
.total_bytes
+= or->cdb_cont
.total_bytes
;
988 /* osd_req_write_sg: Takes a @bio that points to the data out buffer and an
989 * @sglist that has the scatter gather entries. Scatter-gather enables a write
990 * of multiple none-contiguous areas of an object, in a single call. The extents
991 * may overlap and/or be in any order. The only constrain is that:
992 * total_bytes(sglist) >= total_bytes(bio)
994 int osd_req_write_sg(struct osd_request
*or,
995 const struct osd_obj_id
*obj
, struct bio
*bio
,
996 const struct osd_sg_entry
*sglist
, unsigned numentries
)
999 int ret
= _add_sg_continuation_descriptor(or, sglist
, numentries
, &len
);
1003 osd_req_write(or, obj
, 0, bio
, len
);
1007 EXPORT_SYMBOL(osd_req_write_sg
);
1009 /* osd_req_read_sg: Read multiple extents of an object into @bio
1010 * See osd_req_write_sg
1012 int osd_req_read_sg(struct osd_request
*or,
1013 const struct osd_obj_id
*obj
, struct bio
*bio
,
1014 const struct osd_sg_entry
*sglist
, unsigned numentries
)
1020 if (numentries
> 1) {
1022 ret
= _add_sg_continuation_descriptor(or, sglist
, numentries
,
1027 /* Optimize the case of single segment, read_sg is a
1031 off
= sglist
->offset
;
1033 osd_req_read(or, obj
, off
, bio
, len
);
1037 EXPORT_SYMBOL(osd_req_read_sg
);
1039 /* SG-list write/read Kern API
1041 * osd_req_{write,read}_sg_kern takes an array of @buff pointers and an array
1042 * of sg_entries. @numentries indicates how many pointers and sg_entries there
1043 * are. By requiring an array of buff pointers. This allows a caller to do a
1044 * single write/read and scatter into multiple buffers.
1045 * NOTE: Each buffer + len should not cross a page boundary.
1047 static struct bio
*_create_sg_bios(struct osd_request
*or,
1048 void **buff
, const struct osd_sg_entry
*sglist
, unsigned numentries
)
1050 struct request_queue
*q
= osd_request_queue(or->osd_dev
);
1054 bio
= bio_kmalloc(GFP_KERNEL
, numentries
);
1055 if (unlikely(!bio
)) {
1056 OSD_DEBUG("Failed to allocate BIO size=%u\n", numentries
);
1057 return ERR_PTR(-ENOMEM
);
1060 for (i
= 0; i
< numentries
; i
++) {
1061 unsigned offset
= offset_in_page(buff
[i
]);
1062 struct page
*page
= virt_to_page(buff
[i
]);
1063 unsigned len
= sglist
[i
].len
;
1066 BUG_ON(offset
+ len
> PAGE_SIZE
);
1067 added_len
= bio_add_pc_page(q
, bio
, page
, len
, offset
);
1068 if (unlikely(len
!= added_len
)) {
1069 OSD_DEBUG("bio_add_pc_page len(%d) != added_len(%d)\n",
1072 return ERR_PTR(-ENOMEM
);
1079 int osd_req_write_sg_kern(struct osd_request
*or,
1080 const struct osd_obj_id
*obj
, void **buff
,
1081 const struct osd_sg_entry
*sglist
, unsigned numentries
)
1083 struct bio
*bio
= _create_sg_bios(or, buff
, sglist
, numentries
);
1085 return PTR_ERR(bio
);
1087 bio_set_op_attrs(bio
, REQ_OP_WRITE
, 0);
1088 osd_req_write_sg(or, obj
, bio
, sglist
, numentries
);
1092 EXPORT_SYMBOL(osd_req_write_sg_kern
);
1094 int osd_req_read_sg_kern(struct osd_request
*or,
1095 const struct osd_obj_id
*obj
, void **buff
,
1096 const struct osd_sg_entry
*sglist
, unsigned numentries
)
1098 struct bio
*bio
= _create_sg_bios(or, buff
, sglist
, numentries
);
1100 return PTR_ERR(bio
);
1102 osd_req_read_sg(or, obj
, bio
, sglist
, numentries
);
1106 EXPORT_SYMBOL(osd_req_read_sg_kern
);
1110 void osd_req_get_attributes(struct osd_request
*or,
1111 const struct osd_obj_id
*obj
)
1113 _osd_req_encode_common(or, OSD_ACT_GET_ATTRIBUTES
, obj
, 0, 0);
1115 EXPORT_SYMBOL(osd_req_get_attributes
);
1117 void osd_req_set_attributes(struct osd_request
*or,
1118 const struct osd_obj_id
*obj
)
1120 _osd_req_encode_common(or, OSD_ACT_SET_ATTRIBUTES
, obj
, 0, 0);
1122 EXPORT_SYMBOL(osd_req_set_attributes
);
1125 * Attributes List-mode
1128 int osd_req_add_set_attr_list(struct osd_request
*or,
1129 const struct osd_attr
*oa
, unsigned nelem
)
1131 unsigned total_bytes
= or->set_attr
.total_bytes
;
1135 if (or->attributes_mode
&&
1136 or->attributes_mode
!= OSD_CDB_GET_SET_ATTR_LISTS
) {
1140 or->attributes_mode
= OSD_CDB_GET_SET_ATTR_LISTS
;
1142 if (!total_bytes
) { /* first-time: allocate and put list header */
1143 total_bytes
= _osd_req_sizeof_alist_header(or);
1144 ret
= _alloc_set_attr_list(or, oa
, nelem
, total_bytes
);
1147 _osd_req_set_alist_type(or, or->set_attr
.buff
,
1148 OSD_ATTR_LIST_SET_RETRIEVE
);
1150 attr_last
= or->set_attr
.buff
+ total_bytes
;
1152 for (; nelem
; --nelem
) {
1153 unsigned elem_size
= _osd_req_alist_elem_size(or, oa
->len
);
1155 total_bytes
+= elem_size
;
1156 if (unlikely(or->set_attr
.alloc_size
< total_bytes
)) {
1157 or->set_attr
.total_bytes
= total_bytes
- elem_size
;
1158 ret
= _alloc_set_attr_list(or, oa
, nelem
, total_bytes
);
1162 or->set_attr
.buff
+ or->set_attr
.total_bytes
;
1165 _osd_req_alist_elem_encode(or, attr_last
, oa
);
1167 attr_last
+= elem_size
;
1171 or->set_attr
.total_bytes
= total_bytes
;
1174 EXPORT_SYMBOL(osd_req_add_set_attr_list
);
1176 static int _req_append_segment(struct osd_request
*or,
1177 unsigned padding
, struct _osd_req_data_segment
*seg
,
1178 struct _osd_req_data_segment
*last_seg
, struct _osd_io_info
*io
)
1184 /* check if we can just add it to last buffer */
1186 (padding
<= last_seg
->alloc_size
- last_seg
->total_bytes
))
1187 pad_buff
= last_seg
->buff
+ last_seg
->total_bytes
;
1189 pad_buff
= io
->pad_buff
;
1191 ret
= blk_rq_map_kern(io
->req
->q
, io
->req
, pad_buff
, padding
,
1195 io
->total_bytes
+= padding
;
1198 ret
= blk_rq_map_kern(io
->req
->q
, io
->req
, seg
->buff
, seg
->total_bytes
,
1203 io
->total_bytes
+= seg
->total_bytes
;
1204 OSD_DEBUG("padding=%d buff=%p total_bytes=%d\n", padding
, seg
->buff
,
1209 static int _osd_req_finalize_set_attr_list(struct osd_request
*or)
1211 struct osd_cdb_head
*cdbh
= osd_cdb_head(&or->cdb
);
1215 if (!or->set_attr
.total_bytes
) {
1216 cdbh
->attrs_list
.set_attr_offset
= OSD_OFFSET_UNUSED
;
1220 cdbh
->attrs_list
.set_attr_bytes
= cpu_to_be32(or->set_attr
.total_bytes
);
1221 cdbh
->attrs_list
.set_attr_offset
=
1222 osd_req_encode_offset(or, or->out
.total_bytes
, &padding
);
1224 ret
= _req_append_segment(or, padding
, &or->set_attr
,
1225 or->out
.last_seg
, &or->out
);
1229 or->out
.last_seg
= &or->set_attr
;
1233 int osd_req_add_get_attr_list(struct osd_request
*or,
1234 const struct osd_attr
*oa
, unsigned nelem
)
1236 unsigned total_bytes
= or->enc_get_attr
.total_bytes
;
1240 if (or->attributes_mode
&&
1241 or->attributes_mode
!= OSD_CDB_GET_SET_ATTR_LISTS
) {
1245 or->attributes_mode
= OSD_CDB_GET_SET_ATTR_LISTS
;
1247 /* first time calc data-in list header size */
1248 if (!or->get_attr
.total_bytes
)
1249 or->get_attr
.total_bytes
= _osd_req_sizeof_alist_header(or);
1251 /* calc data-out info */
1252 if (!total_bytes
) { /* first-time: allocate and put list header */
1255 total_bytes
= _osd_req_sizeof_alist_header(or);
1256 max_bytes
= total_bytes
+
1257 nelem
* sizeof(struct osd_attributes_list_attrid
);
1258 ret
= _alloc_get_attr_desc(or, max_bytes
);
1262 _osd_req_set_alist_type(or, or->enc_get_attr
.buff
,
1265 attr_last
= or->enc_get_attr
.buff
+ total_bytes
;
1267 for (; nelem
; --nelem
) {
1268 struct osd_attributes_list_attrid
*attrid
;
1269 const unsigned cur_size
= sizeof(*attrid
);
1271 total_bytes
+= cur_size
;
1272 if (unlikely(or->enc_get_attr
.alloc_size
< total_bytes
)) {
1273 or->enc_get_attr
.total_bytes
= total_bytes
- cur_size
;
1274 ret
= _alloc_get_attr_desc(or,
1275 total_bytes
+ nelem
* sizeof(*attrid
));
1278 attr_last
= or->enc_get_attr
.buff
+
1279 or->enc_get_attr
.total_bytes
;
1283 attrid
->attr_page
= cpu_to_be32(oa
->attr_page
);
1284 attrid
->attr_id
= cpu_to_be32(oa
->attr_id
);
1286 attr_last
+= cur_size
;
1288 /* calc data-in size */
1289 or->get_attr
.total_bytes
+=
1290 _osd_req_alist_elem_size(or, oa
->len
);
1294 or->enc_get_attr
.total_bytes
= total_bytes
;
1297 "get_attr.total_bytes=%u(%u) enc_get_attr.total_bytes=%u(%zu)\n",
1298 or->get_attr
.total_bytes
,
1299 or->get_attr
.total_bytes
- _osd_req_sizeof_alist_header(or),
1300 or->enc_get_attr
.total_bytes
,
1301 (or->enc_get_attr
.total_bytes
- _osd_req_sizeof_alist_header(or))
1302 / sizeof(struct osd_attributes_list_attrid
));
1306 EXPORT_SYMBOL(osd_req_add_get_attr_list
);
1308 static int _osd_req_finalize_get_attr_list(struct osd_request
*or)
1310 struct osd_cdb_head
*cdbh
= osd_cdb_head(&or->cdb
);
1311 unsigned out_padding
;
1312 unsigned in_padding
;
1315 if (!or->enc_get_attr
.total_bytes
) {
1316 cdbh
->attrs_list
.get_attr_desc_offset
= OSD_OFFSET_UNUSED
;
1317 cdbh
->attrs_list
.get_attr_offset
= OSD_OFFSET_UNUSED
;
1321 ret
= _alloc_get_attr_list(or);
1325 /* The out-going buffer info update */
1326 OSD_DEBUG("out-going\n");
1327 cdbh
->attrs_list
.get_attr_desc_bytes
=
1328 cpu_to_be32(or->enc_get_attr
.total_bytes
);
1330 cdbh
->attrs_list
.get_attr_desc_offset
=
1331 osd_req_encode_offset(or, or->out
.total_bytes
, &out_padding
);
1333 ret
= _req_append_segment(or, out_padding
, &or->enc_get_attr
,
1334 or->out
.last_seg
, &or->out
);
1337 or->out
.last_seg
= &or->enc_get_attr
;
1339 /* The incoming buffer info update */
1340 OSD_DEBUG("in-coming\n");
1341 cdbh
->attrs_list
.get_attr_alloc_length
=
1342 cpu_to_be32(or->get_attr
.total_bytes
);
1344 cdbh
->attrs_list
.get_attr_offset
=
1345 osd_req_encode_offset(or, or->in
.total_bytes
, &in_padding
);
1347 ret
= _req_append_segment(or, in_padding
, &or->get_attr
, NULL
,
1351 or->in
.last_seg
= &or->get_attr
;
1356 int osd_req_decode_get_attr_list(struct osd_request
*or,
1357 struct osd_attr
*oa
, int *nelem
, void **iterator
)
1359 unsigned cur_bytes
, returned_bytes
;
1361 const unsigned sizeof_attr_list
= _osd_req_sizeof_alist_header(or);
1364 if (!_osd_req_is_alist_type(or, or->get_attr
.buff
,
1365 OSD_ATTR_LIST_SET_RETRIEVE
)) {
1375 BUG_ON((*iterator
< or->get_attr
.buff
) ||
1376 (or->get_attr
.buff
+ or->get_attr
.alloc_size
< *iterator
));
1378 cur_bytes
= (*iterator
- or->get_attr
.buff
) - sizeof_attr_list
;
1379 returned_bytes
= or->get_attr
.total_bytes
;
1380 } else { /* first time decode the list header */
1381 cur_bytes
= sizeof_attr_list
;
1382 returned_bytes
= _osd_req_alist_size(or, or->get_attr
.buff
) +
1385 cur_p
= or->get_attr
.buff
+ sizeof_attr_list
;
1387 if (returned_bytes
> or->get_attr
.alloc_size
) {
1388 OSD_DEBUG("target report: space was not big enough! "
1389 "Allocate=%u Needed=%u\n",
1390 or->get_attr
.alloc_size
,
1391 returned_bytes
+ sizeof_attr_list
);
1394 or->get_attr
.alloc_size
- sizeof_attr_list
;
1396 or->get_attr
.total_bytes
= returned_bytes
;
1399 for (n
= 0; (n
< *nelem
) && (cur_bytes
< returned_bytes
); ++n
) {
1400 int inc
= _osd_req_alist_elem_decode(or, cur_p
, oa
,
1401 returned_bytes
- cur_bytes
);
1404 OSD_ERR("BAD FOOD from target. list not valid!"
1406 cur_bytes
, returned_bytes
, n
);
1408 cur_bytes
= returned_bytes
; /* break the caller loop */
1417 *iterator
= (returned_bytes
- cur_bytes
) ? cur_p
: NULL
;
1419 return returned_bytes
- cur_bytes
;
1421 EXPORT_SYMBOL(osd_req_decode_get_attr_list
);
1424 * Attributes Page-mode
1427 int osd_req_add_get_attr_page(struct osd_request
*or,
1428 u32 page_id
, void *attar_page
, unsigned max_page_len
,
1429 const struct osd_attr
*set_one_attr
)
1431 struct osd_cdb_head
*cdbh
= osd_cdb_head(&or->cdb
);
1433 if (or->attributes_mode
&&
1434 or->attributes_mode
!= OSD_CDB_GET_ATTR_PAGE_SET_ONE
) {
1438 or->attributes_mode
= OSD_CDB_GET_ATTR_PAGE_SET_ONE
;
1440 or->get_attr
.buff
= attar_page
;
1441 or->get_attr
.total_bytes
= max_page_len
;
1443 cdbh
->attrs_page
.get_attr_page
= cpu_to_be32(page_id
);
1444 cdbh
->attrs_page
.get_attr_alloc_length
= cpu_to_be32(max_page_len
);
1446 if (!set_one_attr
|| !set_one_attr
->attr_page
)
1447 return 0; /* The set is optional */
1449 or->set_attr
.buff
= set_one_attr
->val_ptr
;
1450 or->set_attr
.total_bytes
= set_one_attr
->len
;
1452 cdbh
->attrs_page
.set_attr_page
= cpu_to_be32(set_one_attr
->attr_page
);
1453 cdbh
->attrs_page
.set_attr_id
= cpu_to_be32(set_one_attr
->attr_id
);
1454 cdbh
->attrs_page
.set_attr_length
= cpu_to_be32(set_one_attr
->len
);
1457 EXPORT_SYMBOL(osd_req_add_get_attr_page
);
1459 static int _osd_req_finalize_attr_page(struct osd_request
*or)
1461 struct osd_cdb_head
*cdbh
= osd_cdb_head(&or->cdb
);
1462 unsigned in_padding
, out_padding
;
1466 cdbh
->attrs_page
.get_attr_offset
=
1467 osd_req_encode_offset(or, or->in
.total_bytes
, &in_padding
);
1469 ret
= _req_append_segment(or, in_padding
, &or->get_attr
, NULL
,
1474 if (or->set_attr
.total_bytes
== 0)
1478 cdbh
->attrs_page
.set_attr_offset
=
1479 osd_req_encode_offset(or, or->out
.total_bytes
, &out_padding
);
1481 ret
= _req_append_segment(or, out_padding
, &or->set_attr
, NULL
,
1486 static inline void osd_sec_parms_set_out_offset(bool is_v1
,
1487 struct osd_security_parameters
*sec_parms
, osd_cdb_offset offset
)
1490 sec_parms
->v1
.data_out_integrity_check_offset
= offset
;
1492 sec_parms
->v2
.data_out_integrity_check_offset
= offset
;
1495 static inline void osd_sec_parms_set_in_offset(bool is_v1
,
1496 struct osd_security_parameters
*sec_parms
, osd_cdb_offset offset
)
1499 sec_parms
->v1
.data_in_integrity_check_offset
= offset
;
1501 sec_parms
->v2
.data_in_integrity_check_offset
= offset
;
1504 static int _osd_req_finalize_data_integrity(struct osd_request
*or,
1505 bool has_in
, bool has_out
, struct bio
*out_data_bio
, u64 out_data_bytes
,
1508 struct osd_security_parameters
*sec_parms
= _osd_req_sec_params(or);
1511 if (!osd_is_sec_alldata(sec_parms
))
1515 struct _osd_req_data_segment seg
= {
1516 .buff
= &or->out_data_integ
,
1517 .total_bytes
= sizeof(or->out_data_integ
),
1521 or->out_data_integ
.data_bytes
= cpu_to_be64(out_data_bytes
);
1522 or->out_data_integ
.set_attributes_bytes
= cpu_to_be64(
1523 or->set_attr
.total_bytes
);
1524 or->out_data_integ
.get_attributes_bytes
= cpu_to_be64(
1525 or->enc_get_attr
.total_bytes
);
1527 osd_sec_parms_set_out_offset(osd_req_is_ver1(or), sec_parms
,
1528 osd_req_encode_offset(or, or->out
.total_bytes
, &pad
));
1530 ret
= _req_append_segment(or, pad
, &seg
, or->out
.last_seg
,
1534 or->out
.last_seg
= NULL
;
1536 /* they are now all chained to request sign them all together */
1537 osd_sec_sign_data(&or->out_data_integ
, out_data_bio
,
1542 struct _osd_req_data_segment seg
= {
1543 .buff
= &or->in_data_integ
,
1544 .total_bytes
= sizeof(or->in_data_integ
),
1548 osd_sec_parms_set_in_offset(osd_req_is_ver1(or), sec_parms
,
1549 osd_req_encode_offset(or, or->in
.total_bytes
, &pad
));
1551 ret
= _req_append_segment(or, pad
, &seg
, or->in
.last_seg
,
1556 or->in
.last_seg
= NULL
;
1563 * osd_finalize_request and helpers
1565 static struct request
*_make_request(struct request_queue
*q
, bool has_write
,
1566 struct _osd_io_info
*oii
)
1568 struct request
*req
;
1569 struct bio
*bio
= oii
->bio
;
1572 req
= blk_get_request(q
, has_write
? REQ_OP_SCSI_OUT
: REQ_OP_SCSI_IN
,
1578 struct bio
*bounce_bio
= bio
;
1580 ret
= blk_rq_append_bio(req
, &bounce_bio
);
1582 return ERR_PTR(ret
);
1588 static int _init_blk_request(struct osd_request
*or,
1589 bool has_in
, bool has_out
)
1591 struct scsi_device
*scsi_device
= or->osd_dev
->scsi_device
;
1592 struct request_queue
*q
= scsi_device
->request_queue
;
1593 struct request
*req
;
1596 req
= _make_request(q
, has_out
, has_out
? &or->out
: &or->in
);
1603 req
->rq_flags
|= RQF_QUIET
;
1605 req
->timeout
= or->timeout
;
1606 scsi_req(req
)->retries
= or->retries
;
1611 /* allocate bidi request */
1612 req
= _make_request(q
, false, &or->in
);
1614 OSD_DEBUG("blk_get_request for bidi failed\n");
1618 or->in
.req
= or->request
->next_rq
= req
;
1625 OSD_DEBUG("or=%p has_in=%d has_out=%d => %d, %p\n",
1626 or, has_in
, has_out
, ret
, or->request
);
1630 int osd_finalize_request(struct osd_request
*or,
1631 u8 options
, const void *cap
, const u8
*cap_key
)
1633 struct osd_cdb_head
*cdbh
= osd_cdb_head(&or->cdb
);
1634 bool has_in
, has_out
;
1635 /* Save for data_integrity without the cdb_continuation */
1636 struct bio
*out_data_bio
= or->out
.bio
;
1637 u64 out_data_bytes
= or->out
.total_bytes
;
1640 if (options
& OSD_REQ_FUA
)
1641 cdbh
->options
|= OSD_CDB_FUA
;
1643 if (options
& OSD_REQ_DPO
)
1644 cdbh
->options
|= OSD_CDB_DPO
;
1646 if (options
& OSD_REQ_BYPASS_TIMESTAMPS
)
1647 cdbh
->timestamp_control
= OSD_CDB_BYPASS_TIMESTAMPS
;
1649 osd_set_caps(&or->cdb
, cap
);
1651 has_in
= or->in
.bio
|| or->get_attr
.total_bytes
;
1652 has_out
= or->out
.bio
|| or->cdb_cont
.total_bytes
||
1653 or->set_attr
.total_bytes
|| or->enc_get_attr
.total_bytes
;
1655 ret
= _osd_req_finalize_cdb_cont(or, cap_key
);
1657 OSD_DEBUG("_osd_req_finalize_cdb_cont failed\n");
1660 ret
= _init_blk_request(or, has_in
, has_out
);
1662 OSD_DEBUG("_init_blk_request failed\n");
1666 or->out
.pad_buff
= sg_out_pad_buffer
;
1667 or->in
.pad_buff
= sg_in_pad_buffer
;
1669 if (!or->attributes_mode
)
1670 or->attributes_mode
= OSD_CDB_GET_SET_ATTR_LISTS
;
1671 cdbh
->command_specific_options
|= or->attributes_mode
;
1672 if (or->attributes_mode
== OSD_CDB_GET_ATTR_PAGE_SET_ONE
) {
1673 ret
= _osd_req_finalize_attr_page(or);
1675 OSD_DEBUG("_osd_req_finalize_attr_page failed\n");
1679 /* TODO: I think that for the GET_ATTR command these 2 should
1680 * be reversed to keep them in execution order (for embedded
1681 * targets with low memory footprint)
1683 ret
= _osd_req_finalize_set_attr_list(or);
1685 OSD_DEBUG("_osd_req_finalize_set_attr_list failed\n");
1689 ret
= _osd_req_finalize_get_attr_list(or);
1691 OSD_DEBUG("_osd_req_finalize_get_attr_list failed\n");
1696 ret
= _osd_req_finalize_data_integrity(or, has_in
, has_out
,
1697 out_data_bio
, out_data_bytes
,
1702 osd_sec_sign_cdb(&or->cdb
, cap_key
);
1704 scsi_req(or->request
)->cmd
= or->cdb
.buff
;
1705 scsi_req(or->request
)->cmd_len
= _osd_req_cdb_len(or);
1709 EXPORT_SYMBOL(osd_finalize_request
);
1711 static bool _is_osd_security_code(int code
)
1713 return (code
== osd_security_audit_value_frozen
) ||
1714 (code
== osd_security_working_key_frozen
) ||
1715 (code
== osd_nonce_not_unique
) ||
1716 (code
== osd_nonce_timestamp_out_of_range
) ||
1717 (code
== osd_invalid_dataout_buffer_integrity_check_value
);
1720 #define OSD_SENSE_PRINT1(fmt, a...) \
1722 if (__cur_sense_need_output) \
1723 OSD_ERR(fmt, ##a); \
1726 #define OSD_SENSE_PRINT2(fmt, a...) OSD_SENSE_PRINT1(" " fmt, ##a)
1728 int osd_req_decode_sense_full(struct osd_request
*or,
1729 struct osd_sense_info
*osi
, bool silent
,
1730 struct osd_obj_id
*bad_obj_list __unused
, int max_obj __unused
,
1731 struct osd_attr
*bad_attr_list
, int max_attr
)
1733 int sense_len
, original_sense_len
;
1734 struct osd_sense_info local_osi
;
1735 struct scsi_sense_descriptor_based
*ssdb
;
1736 void *cur_descriptor
;
1737 #if (CONFIG_SCSI_OSD_DPRINT_SENSE == 0)
1738 const bool __cur_sense_need_output
= false;
1740 bool __cur_sense_need_output
= !silent
;
1744 if (likely(!or->req_errors
))
1747 osi
= osi
? : &local_osi
;
1748 memset(osi
, 0, sizeof(*osi
));
1750 ssdb
= (typeof(ssdb
))or->sense
;
1751 sense_len
= or->sense_len
;
1752 if ((sense_len
< (int)sizeof(*ssdb
) || !ssdb
->sense_key
)) {
1753 OSD_ERR("Block-layer returned error(0x%x) but "
1754 "sense_len(%u) || key(%d) is empty\n",
1755 or->req_errors
, sense_len
, ssdb
->sense_key
);
1759 if ((ssdb
->response_code
!= 0x72) && (ssdb
->response_code
!= 0x73)) {
1760 OSD_ERR("Unrecognized scsi sense: rcode=%x length=%d\n",
1761 ssdb
->response_code
, sense_len
);
1765 osi
->key
= ssdb
->sense_key
;
1766 osi
->additional_code
= be16_to_cpu(ssdb
->additional_sense_code
);
1767 original_sense_len
= ssdb
->additional_sense_length
+ 8;
1769 #if (CONFIG_SCSI_OSD_DPRINT_SENSE == 1)
1770 if (__cur_sense_need_output
)
1771 __cur_sense_need_output
= (osi
->key
> scsi_sk_recovered_error
);
1773 OSD_SENSE_PRINT1("Main Sense information key=0x%x length(%d, %d) "
1774 "additional_code=0x%x async_error=%d errors=0x%x\n",
1775 osi
->key
, original_sense_len
, sense_len
,
1776 osi
->additional_code
, or->async_error
,
1779 if (original_sense_len
< sense_len
)
1780 sense_len
= original_sense_len
;
1782 cur_descriptor
= ssdb
->ssd
;
1783 sense_len
-= sizeof(*ssdb
);
1784 while (sense_len
> 0) {
1785 struct scsi_sense_descriptor
*ssd
= cur_descriptor
;
1786 int cur_len
= ssd
->additional_length
+ 2;
1788 sense_len
-= cur_len
;
1791 break; /* sense was truncated */
1793 switch (ssd
->descriptor_type
) {
1794 case scsi_sense_information
:
1795 case scsi_sense_command_specific_information
:
1797 struct scsi_sense_command_specific_data_descriptor
1798 *sscd
= cur_descriptor
;
1801 get_unaligned_be64(&sscd
->information
) ;
1803 "command_specific_information 0x%llx \n",
1804 _LLU(osi
->command_info
));
1807 case scsi_sense_key_specific
:
1809 struct scsi_sense_key_specific_data_descriptor
1810 *ssks
= cur_descriptor
;
1812 osi
->sense_info
= get_unaligned_be16(&ssks
->value
);
1814 "sense_key_specific_information %u"
1815 "sksv_cd_bpv_bp (0x%x)\n",
1816 osi
->sense_info
, ssks
->sksv_cd_bpv_bp
);
1819 case osd_sense_object_identification
:
1820 { /*FIXME: Keep first not last, Store in array*/
1821 struct osd_sense_identification_data_descriptor
1822 *osidd
= cur_descriptor
;
1824 osi
->not_initiated_command_functions
=
1825 le32_to_cpu(osidd
->not_initiated_functions
);
1826 osi
->completed_command_functions
=
1827 le32_to_cpu(osidd
->completed_functions
);
1828 osi
->obj
.partition
= be64_to_cpu(osidd
->partition_id
);
1829 osi
->obj
.id
= be64_to_cpu(osidd
->object_id
);
1831 "object_identification pid=0x%llx oid=0x%llx\n",
1832 _LLU(osi
->obj
.partition
), _LLU(osi
->obj
.id
));
1834 "not_initiated_bits(%x) "
1835 "completed_command_bits(%x)\n",
1836 osi
->not_initiated_command_functions
,
1837 osi
->completed_command_functions
);
1840 case osd_sense_response_integrity_check
:
1842 struct osd_sense_response_integrity_check_descriptor
1843 *d
= cur_descriptor
;
1844 /* 2nibbles+space+ASCII */
1845 char dump
[sizeof(d
->integrity_check_value
) * 4 + 2];
1847 hex_dump_to_buffer(d
->integrity_check_value
,
1848 sizeof(d
->integrity_check_value
),
1849 32, 1, dump
, sizeof(dump
), true);
1850 OSD_SENSE_PRINT2("response_integrity [%s]\n", dump
);
1852 case osd_sense_attribute_identification
:
1854 struct osd_sense_attributes_data_descriptor
1855 *osadd
= cur_descriptor
;
1856 unsigned len
= min(cur_len
, sense_len
);
1857 struct osd_sense_attr
*pattr
= osadd
->sense_attrs
;
1859 while (len
>= sizeof(*pattr
)) {
1860 u32 attr_page
= be32_to_cpu(pattr
->attr_page
);
1861 u32 attr_id
= be32_to_cpu(pattr
->attr_id
);
1863 if (!osi
->attr
.attr_page
) {
1864 osi
->attr
.attr_page
= attr_page
;
1865 osi
->attr
.attr_id
= attr_id
;
1868 if (bad_attr_list
&& max_attr
) {
1869 bad_attr_list
->attr_page
= attr_page
;
1870 bad_attr_list
->attr_id
= attr_id
;
1875 len
-= sizeof(*pattr
);
1877 "osd_sense_attribute_identification"
1878 "attr_page=0x%x attr_id=0x%x\n",
1879 attr_page
, attr_id
);
1882 /*These are not legal for OSD*/
1883 case scsi_sense_field_replaceable_unit
:
1884 OSD_SENSE_PRINT2("scsi_sense_field_replaceable_unit\n");
1886 case scsi_sense_stream_commands
:
1887 OSD_SENSE_PRINT2("scsi_sense_stream_commands\n");
1889 case scsi_sense_block_commands
:
1890 OSD_SENSE_PRINT2("scsi_sense_block_commands\n");
1892 case scsi_sense_ata_return
:
1893 OSD_SENSE_PRINT2("scsi_sense_ata_return\n");
1896 if (ssd
->descriptor_type
<= scsi_sense_Reserved_last
)
1898 "scsi_sense Reserved descriptor (0x%x)",
1899 ssd
->descriptor_type
);
1902 "scsi_sense Vendor descriptor (0x%x)",
1903 ssd
->descriptor_type
);
1906 cur_descriptor
+= cur_len
;
1911 /* scsi sense is Empty, the request was never issued to target
1912 * linux return code might tell us what happened.
1914 if (or->async_error
== BLK_STS_RESOURCE
)
1915 osi
->osd_err_pri
= OSD_ERR_PRI_RESOURCE
;
1917 osi
->osd_err_pri
= OSD_ERR_PRI_UNREACHABLE
;
1918 ret
= or->async_error
;
1919 } else if (osi
->key
<= scsi_sk_recovered_error
) {
1920 osi
->osd_err_pri
= 0;
1922 } else if (osi
->additional_code
== scsi_invalid_field_in_cdb
) {
1923 if (osi
->cdb_field_offset
== OSD_CFO_STARTING_BYTE
) {
1924 osi
->osd_err_pri
= OSD_ERR_PRI_CLEAR_PAGES
;
1925 ret
= -EFAULT
; /* caller should recover from this */
1926 } else if (osi
->cdb_field_offset
== OSD_CFO_OBJECT_ID
) {
1927 osi
->osd_err_pri
= OSD_ERR_PRI_NOT_FOUND
;
1929 } else if (osi
->cdb_field_offset
== OSD_CFO_PERMISSIONS
) {
1930 osi
->osd_err_pri
= OSD_ERR_PRI_NO_ACCESS
;
1933 osi
->osd_err_pri
= OSD_ERR_PRI_BAD_CRED
;
1936 } else if (osi
->additional_code
== osd_quota_error
) {
1937 osi
->osd_err_pri
= OSD_ERR_PRI_NO_SPACE
;
1939 } else if (_is_osd_security_code(osi
->additional_code
)) {
1940 osi
->osd_err_pri
= OSD_ERR_PRI_BAD_CRED
;
1943 osi
->osd_err_pri
= OSD_ERR_PRI_EIO
;
1947 if (!or->out
.residual
)
1948 or->out
.residual
= or->out
.total_bytes
;
1949 if (!or->in
.residual
)
1950 or->in
.residual
= or->in
.total_bytes
;
1954 EXPORT_SYMBOL(osd_req_decode_sense_full
);
1957 * Implementation of osd_sec.h API
1958 * TODO: Move to a separate osd_sec.c file at a later stage.
1961 enum { OSD_SEC_CAP_V1_ALL_CAPS
=
1962 OSD_SEC_CAP_APPEND
| OSD_SEC_CAP_OBJ_MGMT
| OSD_SEC_CAP_REMOVE
|
1963 OSD_SEC_CAP_CREATE
| OSD_SEC_CAP_SET_ATTR
| OSD_SEC_CAP_GET_ATTR
|
1964 OSD_SEC_CAP_WRITE
| OSD_SEC_CAP_READ
| OSD_SEC_CAP_POL_SEC
|
1965 OSD_SEC_CAP_GLOBAL
| OSD_SEC_CAP_DEV_MGMT
1968 enum { OSD_SEC_CAP_V2_ALL_CAPS
=
1969 OSD_SEC_CAP_V1_ALL_CAPS
| OSD_SEC_CAP_QUERY
| OSD_SEC_CAP_M_OBJECT
1972 void osd_sec_init_nosec_doall_caps(void *caps
,
1973 const struct osd_obj_id
*obj
, bool is_collection
, const bool is_v1
)
1975 struct osd_capability
*cap
= caps
;
1979 if (likely(obj
->id
)) {
1980 if (unlikely(is_collection
)) {
1981 type
= OSD_SEC_OBJ_COLLECTION
;
1982 descriptor_type
= is_v1
? OSD_SEC_OBJ_DESC_OBJ
:
1983 OSD_SEC_OBJ_DESC_COL
;
1985 type
= OSD_SEC_OBJ_USER
;
1986 descriptor_type
= OSD_SEC_OBJ_DESC_OBJ
;
1988 WARN_ON(!obj
->partition
);
1990 type
= obj
->partition
? OSD_SEC_OBJ_PARTITION
:
1992 descriptor_type
= OSD_SEC_OBJ_DESC_PAR
;
1995 memset(cap
, 0, sizeof(*cap
));
1997 cap
->h
.format
= OSD_SEC_CAP_FORMAT_VER1
;
1998 cap
->h
.integrity_algorithm__key_version
= 0; /* MAKE_BYTE(0, 0); */
1999 cap
->h
.security_method
= OSD_SEC_NOSEC
;
2000 /* cap->expiration_time;
2002 cap->discriminator[42-30];
2003 cap->object_created_time; */
2004 cap
->h
.object_type
= type
;
2005 osd_sec_set_caps(&cap
->h
, OSD_SEC_CAP_V1_ALL_CAPS
);
2006 cap
->h
.object_descriptor_type
= descriptor_type
;
2007 cap
->od
.obj_desc
.policy_access_tag
= 0;
2008 cap
->od
.obj_desc
.allowed_partition_id
= cpu_to_be64(obj
->partition
);
2009 cap
->od
.obj_desc
.allowed_object_id
= cpu_to_be64(obj
->id
);
2011 EXPORT_SYMBOL(osd_sec_init_nosec_doall_caps
);
2013 /* FIXME: Extract version from caps pointer.
2014 * Also Pete's target only supports caps from OSDv1 for now
2016 void osd_set_caps(struct osd_cdb
*cdb
, const void *caps
)
2018 /* NOTE: They start at same address */
2019 memcpy(&cdb
->v1
.caps
, caps
, OSDv1_CAP_LEN
);
2022 bool osd_is_sec_alldata(struct osd_security_parameters
*sec_parms __unused
)
2027 void osd_sec_sign_cdb(struct osd_cdb
*ocdb __unused
, const u8
*cap_key __unused
)
2031 void osd_sec_sign_data(void *data_integ __unused
,
2032 struct bio
*bio __unused
, const u8
*cap_key __unused
)
2037 * Declared in osd_protocol.h
2038 * 4.12.5 Data-In and Data-Out buffer offsets
2039 * byte offset = mantissa * (2^(exponent+8))
2040 * Returns the smallest allowed encoded offset that contains given @offset
2041 * The actual encoded offset returned is @offset + *@padding.
2043 osd_cdb_offset
__osd_encode_offset(
2044 u64 offset
, unsigned *padding
, int min_shift
, int max_shift
)
2046 u64 try_offset
= -1, mod
, align
;
2047 osd_cdb_offset be32_offset
;
2054 for (shift
= min_shift
; shift
< max_shift
; ++shift
) {
2055 try_offset
= offset
>> shift
;
2056 if (try_offset
< (1 << OSD_OFFSET_MAX_BITS
))
2060 BUG_ON(shift
== max_shift
);
2063 mod
= offset
& (align
- 1);
2065 *padding
= align
- mod
;
2069 try_offset
|= ((shift
- 8) & 0xf) << 28;
2070 be32_offset
= cpu_to_be32((u32
)try_offset
);
2072 OSD_DEBUG("offset=%llu mantissa=%llu exp=%d encoded=%x pad=%d\n",
2073 _LLU(offset
), _LLU(try_offset
& 0x0FFFFFFF), shift
,
2074 be32_offset
, *padding
);