2 * Copyright (C) 2005, 2006
3 * Avishay Traeger (avishay@gmail.com) (avishay@il.ibm.com)
4 * Copyright (C) 2005, 2006
5 * International Business Machines
6 * Copyright (C) 2008, 2009
7 * Boaz Harrosh <bharrosh@panasas.com>
9 * This file is part of exofs.
11 * exofs is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation. Since it is based on ext2, and the only
14 * valid version of GPL for the Linux kernel is version 2, the only valid
15 * version of GPL for exofs is version 2.
17 * exofs is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with exofs; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27 #include <scsi/scsi_device.h>
28 #include <scsi/osd_sense.h>
32 int exofs_check_ok_resid(struct osd_request
*or, u64
*in_resid
, u64
*out_resid
)
34 struct osd_sense_info osi
;
35 int ret
= osd_req_decode_sense(or, &osi
);
37 if (ret
) { /* translate to Linux codes */
38 if (osi
.additional_code
== scsi_invalid_field_in_cdb
) {
39 if (osi
.cdb_field_offset
== OSD_CFO_STARTING_BYTE
)
41 if (osi
.cdb_field_offset
== OSD_CFO_OBJECT_ID
)
45 } else if (osi
.additional_code
== osd_quota_error
)
51 /* FIXME: should be include in osd_sense_info */
53 *in_resid
= or->in
.req
? or->in
.req
->data_len
: 0;
56 *out_resid
= or->out
.req
? or->out
.req
->data_len
: 0;
61 void exofs_make_credential(u8 cred_a
[OSD_CAP_LEN
], const struct osd_obj_id
*obj
)
63 osd_sec_init_nosec_doall_caps(cred_a
, obj
, false, true);
67 * Perform a synchronous OSD operation.
69 int exofs_sync_op(struct osd_request
*or, int timeout
, uint8_t *credential
)
73 or->timeout
= timeout
;
74 ret
= osd_finalize_request(or, 0, credential
, NULL
);
76 EXOFS_DBGMSG("Faild to osd_finalize_request() => %d\n", ret
);
80 ret
= osd_execute_request(or);
83 EXOFS_DBGMSG("osd_execute_request() => %d\n", ret
);
84 /* osd_req_decode_sense(or, ret); */
89 * Perform an asynchronous OSD operation.
91 int exofs_async_op(struct osd_request
*or, osd_req_done_fn
*async_done
,
92 void *caller_context
, u8
*cred
)
96 ret
= osd_finalize_request(or, 0, cred
, NULL
);
98 EXOFS_DBGMSG("Faild to osd_finalize_request() => %d\n", ret
);
102 ret
= osd_execute_request_async(or, async_done
, caller_context
);
105 EXOFS_DBGMSG("osd_execute_request_async() => %d\n", ret
);
109 int extract_attr_from_req(struct osd_request
*or, struct osd_attr
*attr
)
111 struct osd_attr cur_attr
= {.attr_page
= 0}; /* start with zeros */
117 osd_req_decode_get_attr_list(or, &cur_attr
, &nelem
, &iter
);
118 if ((cur_attr
.attr_page
== attr
->attr_page
) &&
119 (cur_attr
.attr_id
== attr
->attr_id
)) {
120 attr
->len
= cur_attr
.len
;
121 attr
->val_ptr
= cur_attr
.val_ptr
;
129 int osd_req_read_kern(struct osd_request
*or,
130 const struct osd_obj_id
*obj
, u64 offset
, void* buff
, u64 len
)
132 struct request_queue
*req_q
= or->osd_dev
->scsi_device
->request_queue
;
133 struct bio
*bio
= bio_map_kern(req_q
, buff
, len
, GFP_KERNEL
);
138 osd_req_read(or, obj
, bio
, offset
);
142 int osd_req_write_kern(struct osd_request
*or,
143 const struct osd_obj_id
*obj
, u64 offset
, void* buff
, u64 len
)
145 struct request_queue
*req_q
= or->osd_dev
->scsi_device
->request_queue
;
146 struct bio
*bio
= bio_map_kern(req_q
, buff
, len
, GFP_KERNEL
);
151 osd_req_write(or, obj
, bio
, offset
);