Merge branch 'kmemtrace-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[sfrench/cifs-2.6.git] / drivers / scsi / osd / osd_initiator.c
1 /*
2  * osd_initiator - Main body of the osd initiator library.
3  *
4  * Note: The file does not contain the advanced security functionality which
5  * is only needed by the security_manager's initiators.
6  *
7  * Copyright (C) 2008 Panasas Inc.  All rights reserved.
8  *
9  * Authors:
10  *   Boaz Harrosh <bharrosh@panasas.com>
11  *   Benny Halevy <bhalevy@panasas.com>
12  *
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
15  *
16  * Redistribution and use in source and binary forms, with or without
17  * modification, are permitted provided that the following conditions
18  * are met:
19  *
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.
28  *
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.
40  */
41
42 #include <scsi/osd_initiator.h>
43 #include <scsi/osd_sec.h>
44 #include <scsi/osd_attributes.h>
45 #include <scsi/osd_sense.h>
46
47 #include <scsi/scsi_device.h>
48
49 #include "osd_debug.h"
50
51 #ifndef __unused
52 #    define __unused                    __attribute__((unused))
53 #endif
54
55 enum { OSD_REQ_RETRIES = 1 };
56
57 MODULE_AUTHOR("Boaz Harrosh <bharrosh@panasas.com>");
58 MODULE_DESCRIPTION("open-osd initiator library libosd.ko");
59 MODULE_LICENSE("GPL");
60
61 static inline void build_test(void)
62 {
63         /* structures were not packed */
64         BUILD_BUG_ON(sizeof(struct osd_capability) != OSD_CAP_LEN);
65         BUILD_BUG_ON(sizeof(struct osdv2_cdb) != OSD_TOTAL_CDB_LEN);
66         BUILD_BUG_ON(sizeof(struct osdv1_cdb) != OSDv1_TOTAL_CDB_LEN);
67 }
68
69 static const char *_osd_ver_desc(struct osd_request *or)
70 {
71         return osd_req_is_ver1(or) ? "OSD1" : "OSD2";
72 }
73
74 #define ATTR_DEF_RI(id, len) ATTR_DEF(OSD_APAGE_ROOT_INFORMATION, id, len)
75
76 static int _osd_print_system_info(struct osd_dev *od, void *caps)
77 {
78         struct osd_request *or;
79         struct osd_attr get_attrs[] = {
80                 ATTR_DEF_RI(OSD_ATTR_RI_VENDOR_IDENTIFICATION, 8),
81                 ATTR_DEF_RI(OSD_ATTR_RI_PRODUCT_IDENTIFICATION, 16),
82                 ATTR_DEF_RI(OSD_ATTR_RI_PRODUCT_MODEL, 32),
83                 ATTR_DEF_RI(OSD_ATTR_RI_PRODUCT_REVISION_LEVEL, 4),
84                 ATTR_DEF_RI(OSD_ATTR_RI_PRODUCT_SERIAL_NUMBER, 64 /*variable*/),
85                 ATTR_DEF_RI(OSD_ATTR_RI_OSD_NAME, 64 /*variable*/),
86                 ATTR_DEF_RI(OSD_ATTR_RI_TOTAL_CAPACITY, 8),
87                 ATTR_DEF_RI(OSD_ATTR_RI_USED_CAPACITY, 8),
88                 ATTR_DEF_RI(OSD_ATTR_RI_NUMBER_OF_PARTITIONS, 8),
89                 ATTR_DEF_RI(OSD_ATTR_RI_CLOCK, 6),
90                 /* IBM-OSD-SIM Has a bug with this one put it last */
91                 ATTR_DEF_RI(OSD_ATTR_RI_OSD_SYSTEM_ID, 20),
92         };
93         void *iter = NULL, *pFirst;
94         int nelem = ARRAY_SIZE(get_attrs), a = 0;
95         int ret;
96
97         or = osd_start_request(od, GFP_KERNEL);
98         if (!or)
99                 return -ENOMEM;
100
101         /* get attrs */
102         osd_req_get_attributes(or, &osd_root_object);
103         osd_req_add_get_attr_list(or, get_attrs, ARRAY_SIZE(get_attrs));
104
105         ret = osd_finalize_request(or, 0, caps, NULL);
106         if (ret)
107                 goto out;
108
109         ret = osd_execute_request(or);
110         if (ret) {
111                 OSD_ERR("Failed to detect %s => %d\n", _osd_ver_desc(or), ret);
112                 goto out;
113         }
114
115         osd_req_decode_get_attr_list(or, get_attrs, &nelem, &iter);
116
117         OSD_INFO("Detected %s device\n",
118                 _osd_ver_desc(or));
119
120         pFirst = get_attrs[a++].val_ptr;
121         OSD_INFO("OSD_ATTR_RI_VENDOR_IDENTIFICATION [%s]\n",
122                 (char *)pFirst);
123
124         pFirst = get_attrs[a++].val_ptr;
125         OSD_INFO("OSD_ATTR_RI_PRODUCT_IDENTIFICATION [%s]\n",
126                 (char *)pFirst);
127
128         pFirst = get_attrs[a++].val_ptr;
129         OSD_INFO("OSD_ATTR_RI_PRODUCT_MODEL [%s]\n",
130                 (char *)pFirst);
131
132         pFirst = get_attrs[a++].val_ptr;
133         OSD_INFO("OSD_ATTR_RI_PRODUCT_REVISION_LEVEL [%u]\n",
134                 pFirst ? get_unaligned_be32(pFirst) : ~0U);
135
136         pFirst = get_attrs[a++].val_ptr;
137         OSD_INFO("OSD_ATTR_RI_PRODUCT_SERIAL_NUMBER [%s]\n",
138                 (char *)pFirst);
139
140         pFirst = get_attrs[a].val_ptr;
141         OSD_INFO("OSD_ATTR_RI_OSD_NAME [%s]\n", (char *)pFirst);
142         a++;
143
144         pFirst = get_attrs[a++].val_ptr;
145         OSD_INFO("OSD_ATTR_RI_TOTAL_CAPACITY [0x%llx]\n",
146                 pFirst ? _LLU(get_unaligned_be64(pFirst)) : ~0ULL);
147
148         pFirst = get_attrs[a++].val_ptr;
149         OSD_INFO("OSD_ATTR_RI_USED_CAPACITY [0x%llx]\n",
150                 pFirst ? _LLU(get_unaligned_be64(pFirst)) : ~0ULL);
151
152         pFirst = get_attrs[a++].val_ptr;
153         OSD_INFO("OSD_ATTR_RI_NUMBER_OF_PARTITIONS [%llu]\n",
154                 pFirst ? _LLU(get_unaligned_be64(pFirst)) : ~0ULL);
155
156         if (a >= nelem)
157                 goto out;
158
159         /* FIXME: Where are the time utilities */
160         pFirst = get_attrs[a++].val_ptr;
161         OSD_INFO("OSD_ATTR_RI_CLOCK [0x%02x%02x%02x%02x%02x%02x]\n",
162                 ((char *)pFirst)[0], ((char *)pFirst)[1],
163                 ((char *)pFirst)[2], ((char *)pFirst)[3],
164                 ((char *)pFirst)[4], ((char *)pFirst)[5]);
165
166         if (a < nelem) { /* IBM-OSD-SIM bug, Might not have it */
167                 unsigned len = get_attrs[a].len;
168                 char sid_dump[32*4 + 2]; /* 2nibbles+space+ASCII */
169
170                 hex_dump_to_buffer(get_attrs[a].val_ptr, len, 32, 1,
171                                    sid_dump, sizeof(sid_dump), true);
172                 OSD_INFO("OSD_ATTR_RI_OSD_SYSTEM_ID(%d) [%s]\n", len, sid_dump);
173                 a++;
174         }
175 out:
176         osd_end_request(or);
177         return ret;
178 }
179
180 int osd_auto_detect_ver(struct osd_dev *od, void *caps)
181 {
182         int ret;
183
184         /* Auto-detect the osd version */
185         ret = _osd_print_system_info(od, caps);
186         if (ret) {
187                 osd_dev_set_ver(od, OSD_VER1);
188                 OSD_DEBUG("converting to OSD1\n");
189                 ret = _osd_print_system_info(od, caps);
190         }
191
192         return ret;
193 }
194 EXPORT_SYMBOL(osd_auto_detect_ver);
195
196 static unsigned _osd_req_cdb_len(struct osd_request *or)
197 {
198         return osd_req_is_ver1(or) ? OSDv1_TOTAL_CDB_LEN : OSD_TOTAL_CDB_LEN;
199 }
200
201 static unsigned _osd_req_alist_elem_size(struct osd_request *or, unsigned len)
202 {
203         return osd_req_is_ver1(or) ?
204                 osdv1_attr_list_elem_size(len) :
205                 osdv2_attr_list_elem_size(len);
206 }
207
208 static unsigned _osd_req_alist_size(struct osd_request *or, void *list_head)
209 {
210         return osd_req_is_ver1(or) ?
211                 osdv1_list_size(list_head) :
212                 osdv2_list_size(list_head);
213 }
214
215 static unsigned _osd_req_sizeof_alist_header(struct osd_request *or)
216 {
217         return osd_req_is_ver1(or) ?
218                 sizeof(struct osdv1_attributes_list_header) :
219                 sizeof(struct osdv2_attributes_list_header);
220 }
221
222 static void _osd_req_set_alist_type(struct osd_request *or,
223         void *list, int list_type)
224 {
225         if (osd_req_is_ver1(or)) {
226                 struct osdv1_attributes_list_header *attr_list = list;
227
228                 memset(attr_list, 0, sizeof(*attr_list));
229                 attr_list->type = list_type;
230         } else {
231                 struct osdv2_attributes_list_header *attr_list = list;
232
233                 memset(attr_list, 0, sizeof(*attr_list));
234                 attr_list->type = list_type;
235         }
236 }
237
238 static bool _osd_req_is_alist_type(struct osd_request *or,
239         void *list, int list_type)
240 {
241         if (!list)
242                 return false;
243
244         if (osd_req_is_ver1(or)) {
245                 struct osdv1_attributes_list_header *attr_list = list;
246
247                 return attr_list->type == list_type;
248         } else {
249                 struct osdv2_attributes_list_header *attr_list = list;
250
251                 return attr_list->type == list_type;
252         }
253 }
254
255 /* This is for List-objects not Attributes-Lists */
256 static void _osd_req_encode_olist(struct osd_request *or,
257         struct osd_obj_id_list *list)
258 {
259         struct osd_cdb_head *cdbh = osd_cdb_head(&or->cdb);
260
261         if (osd_req_is_ver1(or)) {
262                 cdbh->v1.list_identifier = list->list_identifier;
263                 cdbh->v1.start_address = list->continuation_id;
264         } else {
265                 cdbh->v2.list_identifier = list->list_identifier;
266                 cdbh->v2.start_address = list->continuation_id;
267         }
268 }
269
270 static osd_cdb_offset osd_req_encode_offset(struct osd_request *or,
271         u64 offset, unsigned *padding)
272 {
273         return __osd_encode_offset(offset, padding,
274                         osd_req_is_ver1(or) ?
275                                 OSDv1_OFFSET_MIN_SHIFT : OSD_OFFSET_MIN_SHIFT,
276                         OSD_OFFSET_MAX_SHIFT);
277 }
278
279 static struct osd_security_parameters *
280 _osd_req_sec_params(struct osd_request *or)
281 {
282         struct osd_cdb *ocdb = &or->cdb;
283
284         if (osd_req_is_ver1(or))
285                 return &ocdb->v1.sec_params;
286         else
287                 return &ocdb->v2.sec_params;
288 }
289
290 void osd_dev_init(struct osd_dev *osdd, struct scsi_device *scsi_device)
291 {
292         memset(osdd, 0, sizeof(*osdd));
293         osdd->scsi_device = scsi_device;
294         osdd->def_timeout = BLK_DEFAULT_SG_TIMEOUT;
295 #ifdef OSD_VER1_SUPPORT
296         osdd->version = OSD_VER2;
297 #endif
298         /* TODO: Allocate pools for osd_request attributes ... */
299 }
300 EXPORT_SYMBOL(osd_dev_init);
301
302 void osd_dev_fini(struct osd_dev *osdd)
303 {
304         /* TODO: De-allocate pools */
305
306         osdd->scsi_device = NULL;
307 }
308 EXPORT_SYMBOL(osd_dev_fini);
309
310 static struct osd_request *_osd_request_alloc(gfp_t gfp)
311 {
312         struct osd_request *or;
313
314         /* TODO: Use mempool with one saved request */
315         or = kzalloc(sizeof(*or), gfp);
316         return or;
317 }
318
319 static void _osd_request_free(struct osd_request *or)
320 {
321         kfree(or);
322 }
323
324 struct osd_request *osd_start_request(struct osd_dev *dev, gfp_t gfp)
325 {
326         struct osd_request *or;
327
328         or = _osd_request_alloc(gfp);
329         if (!or)
330                 return NULL;
331
332         or->osd_dev = dev;
333         or->alloc_flags = gfp;
334         or->timeout = dev->def_timeout;
335         or->retries = OSD_REQ_RETRIES;
336
337         return or;
338 }
339 EXPORT_SYMBOL(osd_start_request);
340
341 static void _osd_free_seg(struct osd_request *or __unused,
342         struct _osd_req_data_segment *seg)
343 {
344         if (!seg->buff || !seg->alloc_size)
345                 return;
346
347         kfree(seg->buff);
348         seg->buff = NULL;
349         seg->alloc_size = 0;
350 }
351
352 static void _put_request(struct request *rq , bool is_async)
353 {
354         if (is_async) {
355                 WARN_ON(rq->bio);
356                 __blk_put_request(rq->q, rq);
357         } else {
358                 /*
359                  * If osd_finalize_request() was called but the request was not
360                  * executed through the block layer, then we must release BIOs.
361                  * TODO: Keep error code in or->async_error. Need to audit all
362                  *       code paths.
363                  */
364                 if (unlikely(rq->bio))
365                         blk_end_request(rq, -ENOMEM, blk_rq_bytes(rq));
366                 else
367                         blk_put_request(rq);
368         }
369 }
370
371 void osd_end_request(struct osd_request *or)
372 {
373         struct request *rq = or->request;
374         /* IMPORTANT: make sure this agrees with osd_execute_request_async */
375         bool is_async = (or->request->end_io_data == or);
376
377         _osd_free_seg(or, &or->set_attr);
378         _osd_free_seg(or, &or->enc_get_attr);
379         _osd_free_seg(or, &or->get_attr);
380
381         if (rq) {
382                 if (rq->next_rq) {
383                         _put_request(rq->next_rq, is_async);
384                         rq->next_rq = NULL;
385                 }
386
387                 _put_request(rq, is_async);
388         }
389         _osd_request_free(or);
390 }
391 EXPORT_SYMBOL(osd_end_request);
392
393 int osd_execute_request(struct osd_request *or)
394 {
395         return blk_execute_rq(or->request->q, NULL, or->request, 0);
396 }
397 EXPORT_SYMBOL(osd_execute_request);
398
399 static void osd_request_async_done(struct request *req, int error)
400 {
401         struct osd_request *or = req->end_io_data;
402
403         or->async_error = error;
404
405         if (error)
406                 OSD_DEBUG("osd_request_async_done error recieved %d\n", error);
407
408         if (or->async_done)
409                 or->async_done(or, or->async_private);
410         else
411                 osd_end_request(or);
412 }
413
414 int osd_execute_request_async(struct osd_request *or,
415         osd_req_done_fn *done, void *private)
416 {
417         or->request->end_io_data = or;
418         or->async_private = private;
419         or->async_done = done;
420
421         blk_execute_rq_nowait(or->request->q, NULL, or->request, 0,
422                               osd_request_async_done);
423         return 0;
424 }
425 EXPORT_SYMBOL(osd_execute_request_async);
426
427 u8 sg_out_pad_buffer[1 << OSDv1_OFFSET_MIN_SHIFT];
428 u8 sg_in_pad_buffer[1 << OSDv1_OFFSET_MIN_SHIFT];
429
430 static int _osd_realloc_seg(struct osd_request *or,
431         struct _osd_req_data_segment *seg, unsigned max_bytes)
432 {
433         void *buff;
434
435         if (seg->alloc_size >= max_bytes)
436                 return 0;
437
438         buff = krealloc(seg->buff, max_bytes, or->alloc_flags);
439         if (!buff) {
440                 OSD_ERR("Failed to Realloc %d-bytes was-%d\n", max_bytes,
441                         seg->alloc_size);
442                 return -ENOMEM;
443         }
444
445         memset(buff + seg->alloc_size, 0, max_bytes - seg->alloc_size);
446         seg->buff = buff;
447         seg->alloc_size = max_bytes;
448         return 0;
449 }
450
451 static int _alloc_set_attr_list(struct osd_request *or,
452         const struct osd_attr *oa, unsigned nelem, unsigned add_bytes)
453 {
454         unsigned total_bytes = add_bytes;
455
456         for (; nelem; --nelem, ++oa)
457                 total_bytes += _osd_req_alist_elem_size(or, oa->len);
458
459         OSD_DEBUG("total_bytes=%d\n", total_bytes);
460         return _osd_realloc_seg(or, &or->set_attr, total_bytes);
461 }
462
463 static int _alloc_get_attr_desc(struct osd_request *or, unsigned max_bytes)
464 {
465         OSD_DEBUG("total_bytes=%d\n", max_bytes);
466         return _osd_realloc_seg(or, &or->enc_get_attr, max_bytes);
467 }
468
469 static int _alloc_get_attr_list(struct osd_request *or)
470 {
471         OSD_DEBUG("total_bytes=%d\n", or->get_attr.total_bytes);
472         return _osd_realloc_seg(or, &or->get_attr, or->get_attr.total_bytes);
473 }
474
475 /*
476  * Common to all OSD commands
477  */
478
479 static void _osdv1_req_encode_common(struct osd_request *or,
480         __be16 act, const struct osd_obj_id *obj, u64 offset, u64 len)
481 {
482         struct osdv1_cdb *ocdb = &or->cdb.v1;
483
484         /*
485          * For speed, the commands
486          *      OSD_ACT_PERFORM_SCSI_COMMAND    , V1 0x8F7E, V2 0x8F7C
487          *      OSD_ACT_SCSI_TASK_MANAGEMENT    , V1 0x8F7F, V2 0x8F7D
488          * are not supported here. Should pass zero and set after the call
489          */
490         act &= cpu_to_be16(~0x0080); /* V1 action code */
491
492         OSD_DEBUG("OSDv1 execute opcode 0x%x\n", be16_to_cpu(act));
493
494         ocdb->h.varlen_cdb.opcode = VARIABLE_LENGTH_CMD;
495         ocdb->h.varlen_cdb.additional_cdb_length = OSD_ADDITIONAL_CDB_LENGTH;
496         ocdb->h.varlen_cdb.service_action = act;
497
498         ocdb->h.partition = cpu_to_be64(obj->partition);
499         ocdb->h.object = cpu_to_be64(obj->id);
500         ocdb->h.v1.length = cpu_to_be64(len);
501         ocdb->h.v1.start_address = cpu_to_be64(offset);
502 }
503
504 static void _osdv2_req_encode_common(struct osd_request *or,
505          __be16 act, const struct osd_obj_id *obj, u64 offset, u64 len)
506 {
507         struct osdv2_cdb *ocdb = &or->cdb.v2;
508
509         OSD_DEBUG("OSDv2 execute opcode 0x%x\n", be16_to_cpu(act));
510
511         ocdb->h.varlen_cdb.opcode = VARIABLE_LENGTH_CMD;
512         ocdb->h.varlen_cdb.additional_cdb_length = OSD_ADDITIONAL_CDB_LENGTH;
513         ocdb->h.varlen_cdb.service_action = act;
514
515         ocdb->h.partition = cpu_to_be64(obj->partition);
516         ocdb->h.object = cpu_to_be64(obj->id);
517         ocdb->h.v2.length = cpu_to_be64(len);
518         ocdb->h.v2.start_address = cpu_to_be64(offset);
519 }
520
521 static void _osd_req_encode_common(struct osd_request *or,
522         __be16 act, const struct osd_obj_id *obj, u64 offset, u64 len)
523 {
524         if (osd_req_is_ver1(or))
525                 _osdv1_req_encode_common(or, act, obj, offset, len);
526         else
527                 _osdv2_req_encode_common(or, act, obj, offset, len);
528 }
529
530 /*
531  * Device commands
532  */
533 /*TODO: void osd_req_set_master_seed_xchg(struct osd_request *, ...); */
534 /*TODO: void osd_req_set_master_key(struct osd_request *, ...); */
535
536 void osd_req_format(struct osd_request *or, u64 tot_capacity)
537 {
538         _osd_req_encode_common(or, OSD_ACT_FORMAT_OSD, &osd_root_object, 0,
539                                 tot_capacity);
540 }
541 EXPORT_SYMBOL(osd_req_format);
542
543 int osd_req_list_dev_partitions(struct osd_request *or,
544         osd_id initial_id, struct osd_obj_id_list *list, unsigned nelem)
545 {
546         return osd_req_list_partition_objects(or, 0, initial_id, list, nelem);
547 }
548 EXPORT_SYMBOL(osd_req_list_dev_partitions);
549
550 static void _osd_req_encode_flush(struct osd_request *or,
551         enum osd_options_flush_scope_values op)
552 {
553         struct osd_cdb_head *ocdb = osd_cdb_head(&or->cdb);
554
555         ocdb->command_specific_options = op;
556 }
557
558 void osd_req_flush_obsd(struct osd_request *or,
559         enum osd_options_flush_scope_values op)
560 {
561         _osd_req_encode_common(or, OSD_ACT_FLUSH_OSD, &osd_root_object, 0, 0);
562         _osd_req_encode_flush(or, op);
563 }
564 EXPORT_SYMBOL(osd_req_flush_obsd);
565
566 /*TODO: void osd_req_perform_scsi_command(struct osd_request *,
567         const u8 *cdb, ...); */
568 /*TODO: void osd_req_task_management(struct osd_request *, ...); */
569
570 /*
571  * Partition commands
572  */
573 static void _osd_req_encode_partition(struct osd_request *or,
574         __be16 act, osd_id partition)
575 {
576         struct osd_obj_id par = {
577                 .partition = partition,
578                 .id = 0,
579         };
580
581         _osd_req_encode_common(or, act, &par, 0, 0);
582 }
583
584 void osd_req_create_partition(struct osd_request *or, osd_id partition)
585 {
586         _osd_req_encode_partition(or, OSD_ACT_CREATE_PARTITION, partition);
587 }
588 EXPORT_SYMBOL(osd_req_create_partition);
589
590 void osd_req_remove_partition(struct osd_request *or, osd_id partition)
591 {
592         _osd_req_encode_partition(or, OSD_ACT_REMOVE_PARTITION, partition);
593 }
594 EXPORT_SYMBOL(osd_req_remove_partition);
595
596 /*TODO: void osd_req_set_partition_key(struct osd_request *,
597         osd_id partition, u8 new_key_id[OSD_CRYPTO_KEYID_SIZE],
598         u8 seed[OSD_CRYPTO_SEED_SIZE]); */
599
600 static int _osd_req_list_objects(struct osd_request *or,
601         __be16 action, const struct osd_obj_id *obj, osd_id initial_id,
602         struct osd_obj_id_list *list, unsigned nelem)
603 {
604         struct request_queue *q = or->osd_dev->scsi_device->request_queue;
605         u64 len = nelem * sizeof(osd_id) + sizeof(*list);
606         struct bio *bio;
607
608         _osd_req_encode_common(or, action, obj, (u64)initial_id, len);
609
610         if (list->list_identifier)
611                 _osd_req_encode_olist(or, list);
612
613         WARN_ON(or->in.bio);
614         bio = bio_map_kern(q, list, len, or->alloc_flags);
615         if (!bio) {
616                 OSD_ERR("!!! Failed to allocate list_objects BIO\n");
617                 return -ENOMEM;
618         }
619
620         bio->bi_rw &= ~(1 << BIO_RW);
621         or->in.bio = bio;
622         or->in.total_bytes = bio->bi_size;
623         return 0;
624 }
625
626 int osd_req_list_partition_collections(struct osd_request *or,
627         osd_id partition, osd_id initial_id, struct osd_obj_id_list *list,
628         unsigned nelem)
629 {
630         struct osd_obj_id par = {
631                 .partition = partition,
632                 .id = 0,
633         };
634
635         return osd_req_list_collection_objects(or, &par, initial_id, list,
636                                                nelem);
637 }
638 EXPORT_SYMBOL(osd_req_list_partition_collections);
639
640 int osd_req_list_partition_objects(struct osd_request *or,
641         osd_id partition, osd_id initial_id, struct osd_obj_id_list *list,
642         unsigned nelem)
643 {
644         struct osd_obj_id par = {
645                 .partition = partition,
646                 .id = 0,
647         };
648
649         return _osd_req_list_objects(or, OSD_ACT_LIST, &par, initial_id, list,
650                                      nelem);
651 }
652 EXPORT_SYMBOL(osd_req_list_partition_objects);
653
654 void osd_req_flush_partition(struct osd_request *or,
655         osd_id partition, enum osd_options_flush_scope_values op)
656 {
657         _osd_req_encode_partition(or, OSD_ACT_FLUSH_PARTITION, partition);
658         _osd_req_encode_flush(or, op);
659 }
660 EXPORT_SYMBOL(osd_req_flush_partition);
661
662 /*
663  * Collection commands
664  */
665 /*TODO: void osd_req_create_collection(struct osd_request *,
666         const struct osd_obj_id *); */
667 /*TODO: void osd_req_remove_collection(struct osd_request *,
668         const struct osd_obj_id *); */
669
670 int osd_req_list_collection_objects(struct osd_request *or,
671         const struct osd_obj_id *obj, osd_id initial_id,
672         struct osd_obj_id_list *list, unsigned nelem)
673 {
674         return _osd_req_list_objects(or, OSD_ACT_LIST_COLLECTION, obj,
675                                      initial_id, list, nelem);
676 }
677 EXPORT_SYMBOL(osd_req_list_collection_objects);
678
679 /*TODO: void query(struct osd_request *, ...); V2 */
680
681 void osd_req_flush_collection(struct osd_request *or,
682         const struct osd_obj_id *obj, enum osd_options_flush_scope_values op)
683 {
684         _osd_req_encode_common(or, OSD_ACT_FLUSH_PARTITION, obj, 0, 0);
685         _osd_req_encode_flush(or, op);
686 }
687 EXPORT_SYMBOL(osd_req_flush_collection);
688
689 /*TODO: void get_member_attrs(struct osd_request *, ...); V2 */
690 /*TODO: void set_member_attrs(struct osd_request *, ...); V2 */
691
692 /*
693  * Object commands
694  */
695 void osd_req_create_object(struct osd_request *or, struct osd_obj_id *obj)
696 {
697         _osd_req_encode_common(or, OSD_ACT_CREATE, obj, 0, 0);
698 }
699 EXPORT_SYMBOL(osd_req_create_object);
700
701 void osd_req_remove_object(struct osd_request *or, struct osd_obj_id *obj)
702 {
703         _osd_req_encode_common(or, OSD_ACT_REMOVE, obj, 0, 0);
704 }
705 EXPORT_SYMBOL(osd_req_remove_object);
706
707
708 /*TODO: void osd_req_create_multi(struct osd_request *or,
709         struct osd_obj_id *first, struct osd_obj_id_list *list, unsigned nelem);
710 */
711
712 void osd_req_write(struct osd_request *or,
713         const struct osd_obj_id *obj, struct bio *bio, u64 offset)
714 {
715         _osd_req_encode_common(or, OSD_ACT_WRITE, obj, offset, bio->bi_size);
716         WARN_ON(or->out.bio || or->out.total_bytes);
717         bio->bi_rw |= (1 << BIO_RW);
718         or->out.bio = bio;
719         or->out.total_bytes = bio->bi_size;
720 }
721 EXPORT_SYMBOL(osd_req_write);
722
723 /*TODO: void osd_req_append(struct osd_request *,
724         const struct osd_obj_id *, struct bio *data_out); */
725 /*TODO: void osd_req_create_write(struct osd_request *,
726         const struct osd_obj_id *, struct bio *data_out, u64 offset); */
727 /*TODO: void osd_req_clear(struct osd_request *,
728         const struct osd_obj_id *, u64 offset, u64 len); */
729 /*TODO: void osd_req_punch(struct osd_request *,
730         const struct osd_obj_id *, u64 offset, u64 len); V2 */
731
732 void osd_req_flush_object(struct osd_request *or,
733         const struct osd_obj_id *obj, enum osd_options_flush_scope_values op,
734         /*V2*/ u64 offset, /*V2*/ u64 len)
735 {
736         if (unlikely(osd_req_is_ver1(or) && (offset || len))) {
737                 OSD_DEBUG("OSD Ver1 flush on specific range ignored\n");
738                 offset = 0;
739                 len = 0;
740         }
741
742         _osd_req_encode_common(or, OSD_ACT_FLUSH, obj, offset, len);
743         _osd_req_encode_flush(or, op);
744 }
745 EXPORT_SYMBOL(osd_req_flush_object);
746
747 void osd_req_read(struct osd_request *or,
748         const struct osd_obj_id *obj, struct bio *bio, u64 offset)
749 {
750         _osd_req_encode_common(or, OSD_ACT_READ, obj, offset, bio->bi_size);
751         WARN_ON(or->in.bio || or->in.total_bytes);
752         bio->bi_rw &= ~(1 << BIO_RW);
753         or->in.bio = bio;
754         or->in.total_bytes = bio->bi_size;
755 }
756 EXPORT_SYMBOL(osd_req_read);
757
758 void osd_req_get_attributes(struct osd_request *or,
759         const struct osd_obj_id *obj)
760 {
761         _osd_req_encode_common(or, OSD_ACT_GET_ATTRIBUTES, obj, 0, 0);
762 }
763 EXPORT_SYMBOL(osd_req_get_attributes);
764
765 void osd_req_set_attributes(struct osd_request *or,
766         const struct osd_obj_id *obj)
767 {
768         _osd_req_encode_common(or, OSD_ACT_SET_ATTRIBUTES, obj, 0, 0);
769 }
770 EXPORT_SYMBOL(osd_req_set_attributes);
771
772 /*
773  * Attributes List-mode
774  */
775
776 int osd_req_add_set_attr_list(struct osd_request *or,
777         const struct osd_attr *oa, unsigned nelem)
778 {
779         unsigned total_bytes = or->set_attr.total_bytes;
780         void *attr_last;
781         int ret;
782
783         if (or->attributes_mode &&
784             or->attributes_mode != OSD_CDB_GET_SET_ATTR_LISTS) {
785                 WARN_ON(1);
786                 return -EINVAL;
787         }
788         or->attributes_mode = OSD_CDB_GET_SET_ATTR_LISTS;
789
790         if (!total_bytes) { /* first-time: allocate and put list header */
791                 total_bytes = _osd_req_sizeof_alist_header(or);
792                 ret = _alloc_set_attr_list(or, oa, nelem, total_bytes);
793                 if (ret)
794                         return ret;
795                 _osd_req_set_alist_type(or, or->set_attr.buff,
796                                         OSD_ATTR_LIST_SET_RETRIEVE);
797         }
798         attr_last = or->set_attr.buff + total_bytes;
799
800         for (; nelem; --nelem) {
801                 struct osd_attributes_list_element *attr;
802                 unsigned elem_size = _osd_req_alist_elem_size(or, oa->len);
803
804                 total_bytes += elem_size;
805                 if (unlikely(or->set_attr.alloc_size < total_bytes)) {
806                         or->set_attr.total_bytes = total_bytes - elem_size;
807                         ret = _alloc_set_attr_list(or, oa, nelem, total_bytes);
808                         if (ret)
809                                 return ret;
810                         attr_last =
811                                 or->set_attr.buff + or->set_attr.total_bytes;
812                 }
813
814                 attr = attr_last;
815                 attr->attr_page = cpu_to_be32(oa->attr_page);
816                 attr->attr_id = cpu_to_be32(oa->attr_id);
817                 attr->attr_bytes = cpu_to_be16(oa->len);
818                 memcpy(attr->attr_val, oa->val_ptr, oa->len);
819
820                 attr_last += elem_size;
821                 ++oa;
822         }
823
824         or->set_attr.total_bytes = total_bytes;
825         return 0;
826 }
827 EXPORT_SYMBOL(osd_req_add_set_attr_list);
828
829 static int _append_map_kern(struct request *req,
830         void *buff, unsigned len, gfp_t flags)
831 {
832         struct bio *bio;
833         int ret;
834
835         bio = bio_map_kern(req->q, buff, len, flags);
836         if (IS_ERR(bio)) {
837                 OSD_ERR("Failed bio_map_kern(%p, %d) => %ld\n", buff, len,
838                         PTR_ERR(bio));
839                 return PTR_ERR(bio);
840         }
841         ret = blk_rq_append_bio(req->q, req, bio);
842         if (ret) {
843                 OSD_ERR("Failed blk_rq_append_bio(%p) => %d\n", bio, ret);
844                 bio_put(bio);
845         }
846         return ret;
847 }
848
849 static int _req_append_segment(struct osd_request *or,
850         unsigned padding, struct _osd_req_data_segment *seg,
851         struct _osd_req_data_segment *last_seg, struct _osd_io_info *io)
852 {
853         void *pad_buff;
854         int ret;
855
856         if (padding) {
857                 /* check if we can just add it to last buffer */
858                 if (last_seg &&
859                     (padding <= last_seg->alloc_size - last_seg->total_bytes))
860                         pad_buff = last_seg->buff + last_seg->total_bytes;
861                 else
862                         pad_buff = io->pad_buff;
863
864                 ret = _append_map_kern(io->req, pad_buff, padding,
865                                        or->alloc_flags);
866                 if (ret)
867                         return ret;
868                 io->total_bytes += padding;
869         }
870
871         ret = _append_map_kern(io->req, seg->buff, seg->total_bytes,
872                                or->alloc_flags);
873         if (ret)
874                 return ret;
875
876         io->total_bytes += seg->total_bytes;
877         OSD_DEBUG("padding=%d buff=%p total_bytes=%d\n", padding, seg->buff,
878                   seg->total_bytes);
879         return 0;
880 }
881
882 static int _osd_req_finalize_set_attr_list(struct osd_request *or)
883 {
884         struct osd_cdb_head *cdbh = osd_cdb_head(&or->cdb);
885         unsigned padding;
886         int ret;
887
888         if (!or->set_attr.total_bytes) {
889                 cdbh->attrs_list.set_attr_offset = OSD_OFFSET_UNUSED;
890                 return 0;
891         }
892
893         cdbh->attrs_list.set_attr_bytes = cpu_to_be32(or->set_attr.total_bytes);
894         cdbh->attrs_list.set_attr_offset =
895                 osd_req_encode_offset(or, or->out.total_bytes, &padding);
896
897         ret = _req_append_segment(or, padding, &or->set_attr,
898                                   or->out.last_seg, &or->out);
899         if (ret)
900                 return ret;
901
902         or->out.last_seg = &or->set_attr;
903         return 0;
904 }
905
906 int osd_req_add_get_attr_list(struct osd_request *or,
907         const struct osd_attr *oa, unsigned nelem)
908 {
909         unsigned total_bytes = or->enc_get_attr.total_bytes;
910         void *attr_last;
911         int ret;
912
913         if (or->attributes_mode &&
914             or->attributes_mode != OSD_CDB_GET_SET_ATTR_LISTS) {
915                 WARN_ON(1);
916                 return -EINVAL;
917         }
918         or->attributes_mode = OSD_CDB_GET_SET_ATTR_LISTS;
919
920         /* first time calc data-in list header size */
921         if (!or->get_attr.total_bytes)
922                 or->get_attr.total_bytes = _osd_req_sizeof_alist_header(or);
923
924         /* calc data-out info */
925         if (!total_bytes) { /* first-time: allocate and put list header */
926                 unsigned max_bytes;
927
928                 total_bytes = _osd_req_sizeof_alist_header(or);
929                 max_bytes = total_bytes +
930                         nelem * sizeof(struct osd_attributes_list_attrid);
931                 ret = _alloc_get_attr_desc(or, max_bytes);
932                 if (ret)
933                         return ret;
934
935                 _osd_req_set_alist_type(or, or->enc_get_attr.buff,
936                                         OSD_ATTR_LIST_GET);
937         }
938         attr_last = or->enc_get_attr.buff + total_bytes;
939
940         for (; nelem; --nelem) {
941                 struct osd_attributes_list_attrid *attrid;
942                 const unsigned cur_size = sizeof(*attrid);
943
944                 total_bytes += cur_size;
945                 if (unlikely(or->enc_get_attr.alloc_size < total_bytes)) {
946                         or->enc_get_attr.total_bytes = total_bytes - cur_size;
947                         ret = _alloc_get_attr_desc(or,
948                                         total_bytes + nelem * sizeof(*attrid));
949                         if (ret)
950                                 return ret;
951                         attr_last = or->enc_get_attr.buff +
952                                 or->enc_get_attr.total_bytes;
953                 }
954
955                 attrid = attr_last;
956                 attrid->attr_page = cpu_to_be32(oa->attr_page);
957                 attrid->attr_id = cpu_to_be32(oa->attr_id);
958
959                 attr_last += cur_size;
960
961                 /* calc data-in size */
962                 or->get_attr.total_bytes +=
963                         _osd_req_alist_elem_size(or, oa->len);
964                 ++oa;
965         }
966
967         or->enc_get_attr.total_bytes = total_bytes;
968
969         OSD_DEBUG(
970                "get_attr.total_bytes=%u(%u) enc_get_attr.total_bytes=%u(%Zu)\n",
971                or->get_attr.total_bytes,
972                or->get_attr.total_bytes - _osd_req_sizeof_alist_header(or),
973                or->enc_get_attr.total_bytes,
974                (or->enc_get_attr.total_bytes - _osd_req_sizeof_alist_header(or))
975                         / sizeof(struct osd_attributes_list_attrid));
976
977         return 0;
978 }
979 EXPORT_SYMBOL(osd_req_add_get_attr_list);
980
981 static int _osd_req_finalize_get_attr_list(struct osd_request *or)
982 {
983         struct osd_cdb_head *cdbh = osd_cdb_head(&or->cdb);
984         unsigned out_padding;
985         unsigned in_padding;
986         int ret;
987
988         if (!or->enc_get_attr.total_bytes) {
989                 cdbh->attrs_list.get_attr_desc_offset = OSD_OFFSET_UNUSED;
990                 cdbh->attrs_list.get_attr_offset = OSD_OFFSET_UNUSED;
991                 return 0;
992         }
993
994         ret = _alloc_get_attr_list(or);
995         if (ret)
996                 return ret;
997
998         /* The out-going buffer info update */
999         OSD_DEBUG("out-going\n");
1000         cdbh->attrs_list.get_attr_desc_bytes =
1001                 cpu_to_be32(or->enc_get_attr.total_bytes);
1002
1003         cdbh->attrs_list.get_attr_desc_offset =
1004                 osd_req_encode_offset(or, or->out.total_bytes, &out_padding);
1005
1006         ret = _req_append_segment(or, out_padding, &or->enc_get_attr,
1007                                   or->out.last_seg, &or->out);
1008         if (ret)
1009                 return ret;
1010         or->out.last_seg = &or->enc_get_attr;
1011
1012         /* The incoming buffer info update */
1013         OSD_DEBUG("in-coming\n");
1014         cdbh->attrs_list.get_attr_alloc_length =
1015                 cpu_to_be32(or->get_attr.total_bytes);
1016
1017         cdbh->attrs_list.get_attr_offset =
1018                 osd_req_encode_offset(or, or->in.total_bytes, &in_padding);
1019
1020         ret = _req_append_segment(or, in_padding, &or->get_attr, NULL,
1021                                   &or->in);
1022         if (ret)
1023                 return ret;
1024         or->in.last_seg = &or->get_attr;
1025
1026         return 0;
1027 }
1028
1029 int osd_req_decode_get_attr_list(struct osd_request *or,
1030         struct osd_attr *oa, int *nelem, void **iterator)
1031 {
1032         unsigned cur_bytes, returned_bytes;
1033         int n;
1034         const unsigned sizeof_attr_list = _osd_req_sizeof_alist_header(or);
1035         void *cur_p;
1036
1037         if (!_osd_req_is_alist_type(or, or->get_attr.buff,
1038                                     OSD_ATTR_LIST_SET_RETRIEVE)) {
1039                 oa->attr_page = 0;
1040                 oa->attr_id = 0;
1041                 oa->val_ptr = NULL;
1042                 oa->len = 0;
1043                 *iterator = NULL;
1044                 return 0;
1045         }
1046
1047         if (*iterator) {
1048                 BUG_ON((*iterator < or->get_attr.buff) ||
1049                      (or->get_attr.buff + or->get_attr.alloc_size < *iterator));
1050                 cur_p = *iterator;
1051                 cur_bytes = (*iterator - or->get_attr.buff) - sizeof_attr_list;
1052                 returned_bytes = or->get_attr.total_bytes;
1053         } else { /* first time decode the list header */
1054                 cur_bytes = sizeof_attr_list;
1055                 returned_bytes = _osd_req_alist_size(or, or->get_attr.buff) +
1056                                         sizeof_attr_list;
1057
1058                 cur_p = or->get_attr.buff + sizeof_attr_list;
1059
1060                 if (returned_bytes > or->get_attr.alloc_size) {
1061                         OSD_DEBUG("target report: space was not big enough! "
1062                                   "Allocate=%u Needed=%u\n",
1063                                   or->get_attr.alloc_size,
1064                                   returned_bytes + sizeof_attr_list);
1065
1066                         returned_bytes =
1067                                 or->get_attr.alloc_size - sizeof_attr_list;
1068                 }
1069                 or->get_attr.total_bytes = returned_bytes;
1070         }
1071
1072         for (n = 0; (n < *nelem) && (cur_bytes < returned_bytes); ++n) {
1073                 struct osd_attributes_list_element *attr = cur_p;
1074                 unsigned inc;
1075
1076                 oa->len = be16_to_cpu(attr->attr_bytes);
1077                 inc = _osd_req_alist_elem_size(or, oa->len);
1078                 OSD_DEBUG("oa->len=%d inc=%d cur_bytes=%d\n",
1079                           oa->len, inc, cur_bytes);
1080                 cur_bytes += inc;
1081                 if (cur_bytes > returned_bytes) {
1082                         OSD_ERR("BAD FOOD from target. list not valid!"
1083                                 "c=%d r=%d n=%d\n",
1084                                 cur_bytes, returned_bytes, n);
1085                         oa->val_ptr = NULL;
1086                         break;
1087                 }
1088
1089                 oa->attr_page = be32_to_cpu(attr->attr_page);
1090                 oa->attr_id = be32_to_cpu(attr->attr_id);
1091                 oa->val_ptr = attr->attr_val;
1092
1093                 cur_p += inc;
1094                 ++oa;
1095         }
1096
1097         *iterator = (returned_bytes - cur_bytes) ? cur_p : NULL;
1098         *nelem = n;
1099         return returned_bytes - cur_bytes;
1100 }
1101 EXPORT_SYMBOL(osd_req_decode_get_attr_list);
1102
1103 /*
1104  * Attributes Page-mode
1105  */
1106
1107 int osd_req_add_get_attr_page(struct osd_request *or,
1108         u32 page_id, void *attar_page, unsigned max_page_len,
1109         const struct osd_attr *set_one_attr)
1110 {
1111         struct osd_cdb_head *cdbh = osd_cdb_head(&or->cdb);
1112
1113         if (or->attributes_mode &&
1114             or->attributes_mode != OSD_CDB_GET_ATTR_PAGE_SET_ONE) {
1115                 WARN_ON(1);
1116                 return -EINVAL;
1117         }
1118         or->attributes_mode = OSD_CDB_GET_ATTR_PAGE_SET_ONE;
1119
1120         or->get_attr.buff = attar_page;
1121         or->get_attr.total_bytes = max_page_len;
1122
1123         or->set_attr.buff = set_one_attr->val_ptr;
1124         or->set_attr.total_bytes = set_one_attr->len;
1125
1126         cdbh->attrs_page.get_attr_page = cpu_to_be32(page_id);
1127         cdbh->attrs_page.get_attr_alloc_length = cpu_to_be32(max_page_len);
1128         /* ocdb->attrs_page.get_attr_offset; */
1129
1130         cdbh->attrs_page.set_attr_page = cpu_to_be32(set_one_attr->attr_page);
1131         cdbh->attrs_page.set_attr_id = cpu_to_be32(set_one_attr->attr_id);
1132         cdbh->attrs_page.set_attr_length = cpu_to_be32(set_one_attr->len);
1133         /* ocdb->attrs_page.set_attr_offset; */
1134         return 0;
1135 }
1136 EXPORT_SYMBOL(osd_req_add_get_attr_page);
1137
1138 static int _osd_req_finalize_attr_page(struct osd_request *or)
1139 {
1140         struct osd_cdb_head *cdbh = osd_cdb_head(&or->cdb);
1141         unsigned in_padding, out_padding;
1142         int ret;
1143
1144         /* returned page */
1145         cdbh->attrs_page.get_attr_offset =
1146                 osd_req_encode_offset(or, or->in.total_bytes, &in_padding);
1147
1148         ret = _req_append_segment(or, in_padding, &or->get_attr, NULL,
1149                                   &or->in);
1150         if (ret)
1151                 return ret;
1152
1153         /* set one value */
1154         cdbh->attrs_page.set_attr_offset =
1155                 osd_req_encode_offset(or, or->out.total_bytes, &out_padding);
1156
1157         ret = _req_append_segment(or, out_padding, &or->enc_get_attr, NULL,
1158                                   &or->out);
1159         return ret;
1160 }
1161
1162 static int _osd_req_finalize_data_integrity(struct osd_request *or,
1163         bool has_in, bool has_out, const u8 *cap_key)
1164 {
1165         struct osd_security_parameters *sec_parms = _osd_req_sec_params(or);
1166         int ret;
1167
1168         if (!osd_is_sec_alldata(sec_parms))
1169                 return 0;
1170
1171         if (has_out) {
1172                 struct _osd_req_data_segment seg = {
1173                         .buff = &or->out_data_integ,
1174                         .total_bytes = sizeof(or->out_data_integ),
1175                 };
1176                 unsigned pad;
1177
1178                 or->out_data_integ.data_bytes = cpu_to_be64(
1179                         or->out.bio ? or->out.bio->bi_size : 0);
1180                 or->out_data_integ.set_attributes_bytes = cpu_to_be64(
1181                         or->set_attr.total_bytes);
1182                 or->out_data_integ.get_attributes_bytes = cpu_to_be64(
1183                         or->enc_get_attr.total_bytes);
1184
1185                 sec_parms->data_out_integrity_check_offset =
1186                         osd_req_encode_offset(or, or->out.total_bytes, &pad);
1187
1188                 ret = _req_append_segment(or, pad, &seg, or->out.last_seg,
1189                                           &or->out);
1190                 if (ret)
1191                         return ret;
1192                 or->out.last_seg = NULL;
1193
1194                 /* they are now all chained to request sign them all together */
1195                 osd_sec_sign_data(&or->out_data_integ, or->out.req->bio,
1196                                   cap_key);
1197         }
1198
1199         if (has_in) {
1200                 struct _osd_req_data_segment seg = {
1201                         .buff = &or->in_data_integ,
1202                         .total_bytes = sizeof(or->in_data_integ),
1203                 };
1204                 unsigned pad;
1205
1206                 sec_parms->data_in_integrity_check_offset =
1207                         osd_req_encode_offset(or, or->in.total_bytes, &pad);
1208
1209                 ret = _req_append_segment(or, pad, &seg, or->in.last_seg,
1210                                           &or->in);
1211                 if (ret)
1212                         return ret;
1213
1214                 or->in.last_seg = NULL;
1215         }
1216
1217         return 0;
1218 }
1219
1220 /*
1221  * osd_finalize_request and helpers
1222  */
1223
1224 static int _init_blk_request(struct osd_request *or,
1225         bool has_in, bool has_out)
1226 {
1227         gfp_t flags = or->alloc_flags;
1228         struct scsi_device *scsi_device = or->osd_dev->scsi_device;
1229         struct request_queue *q = scsi_device->request_queue;
1230         struct request *req;
1231         int ret = -ENOMEM;
1232
1233         req = blk_get_request(q, has_out, flags);
1234         if (!req)
1235                 goto out;
1236
1237         or->request = req;
1238         req->cmd_type = REQ_TYPE_BLOCK_PC;
1239         req->timeout = or->timeout;
1240         req->retries = or->retries;
1241         req->sense = or->sense;
1242         req->sense_len = 0;
1243
1244         if (has_out) {
1245                 or->out.req = req;
1246                 if (has_in) {
1247                         /* allocate bidi request */
1248                         req = blk_get_request(q, READ, flags);
1249                         if (!req) {
1250                                 OSD_DEBUG("blk_get_request for bidi failed\n");
1251                                 goto out;
1252                         }
1253                         req->cmd_type = REQ_TYPE_BLOCK_PC;
1254                         or->in.req = or->request->next_rq = req;
1255                 }
1256         } else if (has_in)
1257                 or->in.req = req;
1258
1259         ret = 0;
1260 out:
1261         OSD_DEBUG("or=%p has_in=%d has_out=%d => %d, %p\n",
1262                         or, has_in, has_out, ret, or->request);
1263         return ret;
1264 }
1265
1266 int osd_finalize_request(struct osd_request *or,
1267         u8 options, const void *cap, const u8 *cap_key)
1268 {
1269         struct osd_cdb_head *cdbh = osd_cdb_head(&or->cdb);
1270         bool has_in, has_out;
1271         int ret;
1272
1273         if (options & OSD_REQ_FUA)
1274                 cdbh->options |= OSD_CDB_FUA;
1275
1276         if (options & OSD_REQ_DPO)
1277                 cdbh->options |= OSD_CDB_DPO;
1278
1279         if (options & OSD_REQ_BYPASS_TIMESTAMPS)
1280                 cdbh->timestamp_control = OSD_CDB_BYPASS_TIMESTAMPS;
1281
1282         osd_set_caps(&or->cdb, cap);
1283
1284         has_in = or->in.bio || or->get_attr.total_bytes;
1285         has_out = or->out.bio || or->set_attr.total_bytes ||
1286                 or->enc_get_attr.total_bytes;
1287
1288         ret = _init_blk_request(or, has_in, has_out);
1289         if (ret) {
1290                 OSD_DEBUG("_init_blk_request failed\n");
1291                 return ret;
1292         }
1293
1294         if (or->out.bio) {
1295                 ret = blk_rq_append_bio(or->request->q, or->out.req,
1296                                         or->out.bio);
1297                 if (ret) {
1298                         OSD_DEBUG("blk_rq_append_bio out failed\n");
1299                         return ret;
1300                 }
1301                 OSD_DEBUG("out bytes=%llu (bytes_req=%u)\n",
1302                         _LLU(or->out.total_bytes), or->out.req->data_len);
1303         }
1304         if (or->in.bio) {
1305                 ret = blk_rq_append_bio(or->request->q, or->in.req, or->in.bio);
1306                 if (ret) {
1307                         OSD_DEBUG("blk_rq_append_bio in failed\n");
1308                         return ret;
1309                 }
1310                 OSD_DEBUG("in bytes=%llu (bytes_req=%u)\n",
1311                         _LLU(or->in.total_bytes), or->in.req->data_len);
1312         }
1313
1314         or->out.pad_buff = sg_out_pad_buffer;
1315         or->in.pad_buff = sg_in_pad_buffer;
1316
1317         if (!or->attributes_mode)
1318                 or->attributes_mode = OSD_CDB_GET_SET_ATTR_LISTS;
1319         cdbh->command_specific_options |= or->attributes_mode;
1320         if (or->attributes_mode == OSD_CDB_GET_ATTR_PAGE_SET_ONE) {
1321                 ret = _osd_req_finalize_attr_page(or);
1322         } else {
1323                 /* TODO: I think that for the GET_ATTR command these 2 should
1324                  * be reversed to keep them in execution order (for embeded
1325                  * targets with low memory footprint)
1326                  */
1327                 ret = _osd_req_finalize_set_attr_list(or);
1328                 if (ret) {
1329                         OSD_DEBUG("_osd_req_finalize_set_attr_list failed\n");
1330                         return ret;
1331                 }
1332
1333                 ret = _osd_req_finalize_get_attr_list(or);
1334                 if (ret) {
1335                         OSD_DEBUG("_osd_req_finalize_get_attr_list failed\n");
1336                         return ret;
1337                 }
1338         }
1339
1340         ret = _osd_req_finalize_data_integrity(or, has_in, has_out, cap_key);
1341         if (ret)
1342                 return ret;
1343
1344         osd_sec_sign_cdb(&or->cdb, cap_key);
1345
1346         or->request->cmd = or->cdb.buff;
1347         or->request->cmd_len = _osd_req_cdb_len(or);
1348
1349         return 0;
1350 }
1351 EXPORT_SYMBOL(osd_finalize_request);
1352
1353 #define OSD_SENSE_PRINT1(fmt, a...) \
1354         do { \
1355                 if (__cur_sense_need_output) \
1356                         OSD_ERR(fmt, ##a); \
1357         } while (0)
1358
1359 #define OSD_SENSE_PRINT2(fmt, a...) OSD_SENSE_PRINT1("    " fmt, ##a)
1360
1361 int osd_req_decode_sense_full(struct osd_request *or,
1362         struct osd_sense_info *osi, bool silent,
1363         struct osd_obj_id *bad_obj_list __unused, int max_obj __unused,
1364         struct osd_attr *bad_attr_list, int max_attr)
1365 {
1366         int sense_len, original_sense_len;
1367         struct osd_sense_info local_osi;
1368         struct scsi_sense_descriptor_based *ssdb;
1369         void *cur_descriptor;
1370 #if (CONFIG_SCSI_OSD_DPRINT_SENSE == 0)
1371         const bool __cur_sense_need_output = false;
1372 #else
1373         bool __cur_sense_need_output = !silent;
1374 #endif
1375
1376         if (!or->request->errors)
1377                 return 0;
1378
1379         ssdb = or->request->sense;
1380         sense_len = or->request->sense_len;
1381         if ((sense_len < (int)sizeof(*ssdb) || !ssdb->sense_key)) {
1382                 OSD_ERR("Block-layer returned error(0x%x) but "
1383                         "sense_len(%u) || key(%d) is empty\n",
1384                         or->request->errors, sense_len, ssdb->sense_key);
1385                 return -EIO;
1386         }
1387
1388         if ((ssdb->response_code != 0x72) && (ssdb->response_code != 0x73)) {
1389                 OSD_ERR("Unrecognized scsi sense: rcode=%x length=%d\n",
1390                         ssdb->response_code, sense_len);
1391                 return -EIO;
1392         }
1393
1394         osi = osi ? : &local_osi;
1395         memset(osi, 0, sizeof(*osi));
1396         osi->key = ssdb->sense_key;
1397         osi->additional_code = be16_to_cpu(ssdb->additional_sense_code);
1398         original_sense_len = ssdb->additional_sense_length + 8;
1399
1400 #if (CONFIG_SCSI_OSD_DPRINT_SENSE == 1)
1401         if (__cur_sense_need_output)
1402                 __cur_sense_need_output = (osi->key > scsi_sk_recovered_error);
1403 #endif
1404         OSD_SENSE_PRINT1("Main Sense information key=0x%x length(%d, %d) "
1405                         "additional_code=0x%x\n",
1406                         osi->key, original_sense_len, sense_len,
1407                         osi->additional_code);
1408
1409         if (original_sense_len < sense_len)
1410                 sense_len = original_sense_len;
1411
1412         cur_descriptor = ssdb->ssd;
1413         sense_len -= sizeof(*ssdb);
1414         while (sense_len > 0) {
1415                 struct scsi_sense_descriptor *ssd = cur_descriptor;
1416                 int cur_len = ssd->additional_length + 2;
1417
1418                 sense_len -= cur_len;
1419
1420                 if (sense_len < 0)
1421                         break; /* sense was truncated */
1422
1423                 switch (ssd->descriptor_type) {
1424                 case scsi_sense_information:
1425                 case scsi_sense_command_specific_information:
1426                 {
1427                         struct scsi_sense_command_specific_data_descriptor
1428                                 *sscd = cur_descriptor;
1429
1430                         osi->command_info =
1431                                 get_unaligned_be64(&sscd->information) ;
1432                         OSD_SENSE_PRINT2(
1433                                 "command_specific_information 0x%llx \n",
1434                                 _LLU(osi->command_info));
1435                         break;
1436                 }
1437                 case scsi_sense_key_specific:
1438                 {
1439                         struct scsi_sense_key_specific_data_descriptor
1440                                 *ssks = cur_descriptor;
1441
1442                         osi->sense_info = get_unaligned_be16(&ssks->value);
1443                         OSD_SENSE_PRINT2(
1444                                 "sense_key_specific_information %u"
1445                                 "sksv_cd_bpv_bp (0x%x)\n",
1446                                 osi->sense_info, ssks->sksv_cd_bpv_bp);
1447                         break;
1448                 }
1449                 case osd_sense_object_identification:
1450                 { /*FIXME: Keep first not last, Store in array*/
1451                         struct osd_sense_identification_data_descriptor
1452                                 *osidd = cur_descriptor;
1453
1454                         osi->not_initiated_command_functions =
1455                                 le32_to_cpu(osidd->not_initiated_functions);
1456                         osi->completed_command_functions =
1457                                 le32_to_cpu(osidd->completed_functions);
1458                         osi->obj.partition = be64_to_cpu(osidd->partition_id);
1459                         osi->obj.id = be64_to_cpu(osidd->object_id);
1460                         OSD_SENSE_PRINT2(
1461                                 "object_identification pid=0x%llx oid=0x%llx\n",
1462                                 _LLU(osi->obj.partition), _LLU(osi->obj.id));
1463                         OSD_SENSE_PRINT2(
1464                                 "not_initiated_bits(%x) "
1465                                 "completed_command_bits(%x)\n",
1466                                 osi->not_initiated_command_functions,
1467                                 osi->completed_command_functions);
1468                         break;
1469                 }
1470                 case osd_sense_response_integrity_check:
1471                 {
1472                         struct osd_sense_response_integrity_check_descriptor
1473                                 *osricd = cur_descriptor;
1474                         const unsigned len =
1475                                           sizeof(osricd->integrity_check_value);
1476                         char key_dump[len*4 + 2]; /* 2nibbles+space+ASCII */
1477
1478                         hex_dump_to_buffer(osricd->integrity_check_value, len,
1479                                        32, 1, key_dump, sizeof(key_dump), true);
1480                         OSD_SENSE_PRINT2("response_integrity [%s]\n", key_dump);
1481                 }
1482                 case osd_sense_attribute_identification:
1483                 {
1484                         struct osd_sense_attributes_data_descriptor
1485                                 *osadd = cur_descriptor;
1486                         int len = min(cur_len, sense_len);
1487                         int i = 0;
1488                         struct osd_sense_attr *pattr = osadd->sense_attrs;
1489
1490                         while (len < 0) {
1491                                 u32 attr_page = be32_to_cpu(pattr->attr_page);
1492                                 u32 attr_id = be32_to_cpu(pattr->attr_id);
1493
1494                                 if (i++ == 0) {
1495                                         osi->attr.attr_page = attr_page;
1496                                         osi->attr.attr_id = attr_id;
1497                                 }
1498
1499                                 if (bad_attr_list && max_attr) {
1500                                         bad_attr_list->attr_page = attr_page;
1501                                         bad_attr_list->attr_id = attr_id;
1502                                         bad_attr_list++;
1503                                         max_attr--;
1504                                 }
1505                                 OSD_SENSE_PRINT2(
1506                                         "osd_sense_attribute_identification"
1507                                         "attr_page=0x%x attr_id=0x%x\n",
1508                                         attr_page, attr_id);
1509                         }
1510                 }
1511                 /*These are not legal for OSD*/
1512                 case scsi_sense_field_replaceable_unit:
1513                         OSD_SENSE_PRINT2("scsi_sense_field_replaceable_unit\n");
1514                         break;
1515                 case scsi_sense_stream_commands:
1516                         OSD_SENSE_PRINT2("scsi_sense_stream_commands\n");
1517                         break;
1518                 case scsi_sense_block_commands:
1519                         OSD_SENSE_PRINT2("scsi_sense_block_commands\n");
1520                         break;
1521                 case scsi_sense_ata_return:
1522                         OSD_SENSE_PRINT2("scsi_sense_ata_return\n");
1523                         break;
1524                 default:
1525                         if (ssd->descriptor_type <= scsi_sense_Reserved_last)
1526                                 OSD_SENSE_PRINT2(
1527                                         "scsi_sense Reserved descriptor (0x%x)",
1528                                         ssd->descriptor_type);
1529                         else
1530                                 OSD_SENSE_PRINT2(
1531                                         "scsi_sense Vendor descriptor (0x%x)",
1532                                         ssd->descriptor_type);
1533                 }
1534
1535                 cur_descriptor += cur_len;
1536         }
1537
1538         return (osi->key > scsi_sk_recovered_error) ? -EIO : 0;
1539 }
1540 EXPORT_SYMBOL(osd_req_decode_sense_full);
1541
1542 /*
1543  * Implementation of osd_sec.h API
1544  * TODO: Move to a separate osd_sec.c file at a later stage.
1545  */
1546
1547 enum { OSD_SEC_CAP_V1_ALL_CAPS =
1548         OSD_SEC_CAP_APPEND | OSD_SEC_CAP_OBJ_MGMT | OSD_SEC_CAP_REMOVE   |
1549         OSD_SEC_CAP_CREATE | OSD_SEC_CAP_SET_ATTR | OSD_SEC_CAP_GET_ATTR |
1550         OSD_SEC_CAP_WRITE  | OSD_SEC_CAP_READ     | OSD_SEC_CAP_POL_SEC  |
1551         OSD_SEC_CAP_GLOBAL | OSD_SEC_CAP_DEV_MGMT
1552 };
1553
1554 enum { OSD_SEC_CAP_V2_ALL_CAPS =
1555         OSD_SEC_CAP_V1_ALL_CAPS | OSD_SEC_CAP_QUERY | OSD_SEC_CAP_M_OBJECT
1556 };
1557
1558 void osd_sec_init_nosec_doall_caps(void *caps,
1559         const struct osd_obj_id *obj, bool is_collection, const bool is_v1)
1560 {
1561         struct osd_capability *cap = caps;
1562         u8 type;
1563         u8 descriptor_type;
1564
1565         if (likely(obj->id)) {
1566                 if (unlikely(is_collection)) {
1567                         type = OSD_SEC_OBJ_COLLECTION;
1568                         descriptor_type = is_v1 ? OSD_SEC_OBJ_DESC_OBJ :
1569                                                   OSD_SEC_OBJ_DESC_COL;
1570                 } else {
1571                         type = OSD_SEC_OBJ_USER;
1572                         descriptor_type = OSD_SEC_OBJ_DESC_OBJ;
1573                 }
1574                 WARN_ON(!obj->partition);
1575         } else {
1576                 type = obj->partition ? OSD_SEC_OBJ_PARTITION :
1577                                         OSD_SEC_OBJ_ROOT;
1578                 descriptor_type = OSD_SEC_OBJ_DESC_PAR;
1579         }
1580
1581         memset(cap, 0, sizeof(*cap));
1582
1583         cap->h.format = OSD_SEC_CAP_FORMAT_VER1;
1584         cap->h.integrity_algorithm__key_version = 0; /* MAKE_BYTE(0, 0); */
1585         cap->h.security_method = OSD_SEC_NOSEC;
1586 /*      cap->expiration_time;
1587         cap->AUDIT[30-10];
1588         cap->discriminator[42-30];
1589         cap->object_created_time; */
1590         cap->h.object_type = type;
1591         osd_sec_set_caps(&cap->h, OSD_SEC_CAP_V1_ALL_CAPS);
1592         cap->h.object_descriptor_type = descriptor_type;
1593         cap->od.obj_desc.policy_access_tag = 0;
1594         cap->od.obj_desc.allowed_partition_id = cpu_to_be64(obj->partition);
1595         cap->od.obj_desc.allowed_object_id = cpu_to_be64(obj->id);
1596 }
1597 EXPORT_SYMBOL(osd_sec_init_nosec_doall_caps);
1598
1599 /* FIXME: Extract version from caps pointer.
1600  *        Also Pete's target only supports caps from OSDv1 for now
1601  */
1602 void osd_set_caps(struct osd_cdb *cdb, const void *caps)
1603 {
1604         bool is_ver1 = true;
1605         /* NOTE: They start at same address */
1606         memcpy(&cdb->v1.caps, caps, is_ver1 ? OSDv1_CAP_LEN : OSD_CAP_LEN);
1607 }
1608
1609 bool osd_is_sec_alldata(struct osd_security_parameters *sec_parms __unused)
1610 {
1611         return false;
1612 }
1613
1614 void osd_sec_sign_cdb(struct osd_cdb *ocdb __unused, const u8 *cap_key __unused)
1615 {
1616 }
1617
1618 void osd_sec_sign_data(void *data_integ __unused,
1619                        struct bio *bio __unused, const u8 *cap_key __unused)
1620 {
1621 }
1622
1623 /*
1624  * Declared in osd_protocol.h
1625  * 4.12.5 Data-In and Data-Out buffer offsets
1626  * byte offset = mantissa * (2^(exponent+8))
1627  * Returns the smallest allowed encoded offset that contains given @offset
1628  * The actual encoded offset returned is @offset + *@padding.
1629  */
1630 osd_cdb_offset __osd_encode_offset(
1631         u64 offset, unsigned *padding, int min_shift, int max_shift)
1632 {
1633         u64 try_offset = -1, mod, align;
1634         osd_cdb_offset be32_offset;
1635         int shift;
1636
1637         *padding = 0;
1638         if (!offset)
1639                 return 0;
1640
1641         for (shift = min_shift; shift < max_shift; ++shift) {
1642                 try_offset = offset >> shift;
1643                 if (try_offset < (1 << OSD_OFFSET_MAX_BITS))
1644                         break;
1645         }
1646
1647         BUG_ON(shift == max_shift);
1648
1649         align = 1 << shift;
1650         mod = offset & (align - 1);
1651         if (mod) {
1652                 *padding = align - mod;
1653                 try_offset += 1;
1654         }
1655
1656         try_offset |= ((shift - 8) & 0xf) << 28;
1657         be32_offset = cpu_to_be32((u32)try_offset);
1658
1659         OSD_DEBUG("offset=%llu mantissa=%llu exp=%d encoded=%x pad=%d\n",
1660                  _LLU(offset), _LLU(try_offset & 0x0FFFFFFF), shift,
1661                  be32_offset, *padding);
1662         return be32_offset;
1663 }