4 * Copyright (C) 2008 James Smart, Emulex Corporation
5 * Copyright (C) 2011 Red Hat, Inc. All rights reserved.
6 * Copyright (C) 2011 Mike Christie
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/slab.h>
24 #include <linux/blkdev.h>
25 #include <linux/delay.h>
26 #include <linux/scatterlist.h>
27 #include <linux/bsg-lib.h>
28 #include <linux/export.h>
29 #include <scsi/scsi_cmnd.h>
32 #define uptr64(val) ((void __user *)(uintptr_t)(val))
34 static int bsg_transport_check_proto(struct sg_io_v4
*hdr
)
36 if (hdr
->protocol
!= BSG_PROTOCOL_SCSI
||
37 hdr
->subprotocol
!= BSG_SUB_PROTOCOL_SCSI_TRANSPORT
)
39 if (!capable(CAP_SYS_RAWIO
))
44 static int bsg_transport_fill_hdr(struct request
*rq
, struct sg_io_v4
*hdr
,
47 struct bsg_job
*job
= blk_mq_rq_to_pdu(rq
);
49 job
->request_len
= hdr
->request_len
;
50 job
->request
= memdup_user(uptr64(hdr
->request
), hdr
->request_len
);
52 return PTR_ERR_OR_ZERO(job
->request
);
55 static int bsg_transport_complete_rq(struct request
*rq
, struct sg_io_v4
*hdr
)
57 struct bsg_job
*job
= blk_mq_rq_to_pdu(rq
);
61 * The assignments below don't make much sense, but are kept for
62 * bug by bug backwards compatibility:
64 hdr
->device_status
= job
->result
& 0xff;
65 hdr
->transport_status
= host_byte(job
->result
);
66 hdr
->driver_status
= driver_byte(job
->result
);
68 if (hdr
->device_status
|| hdr
->transport_status
|| hdr
->driver_status
)
69 hdr
->info
|= SG_INFO_CHECK
;
70 hdr
->response_len
= 0;
72 if (job
->result
< 0) {
73 /* we're only returning the result field in the reply */
74 job
->reply_len
= sizeof(u32
);
78 if (job
->reply_len
&& hdr
->response
) {
79 int len
= min(hdr
->max_response_len
, job
->reply_len
);
81 if (copy_to_user(uptr64(hdr
->response
), job
->reply
, len
))
84 hdr
->response_len
= len
;
87 /* we assume all request payload was transferred, residual == 0 */
91 unsigned int rsp_len
= job
->reply_payload
.payload_len
;
93 if (WARN_ON(job
->reply_payload_rcv_len
> rsp_len
))
96 hdr
->din_resid
= rsp_len
- job
->reply_payload_rcv_len
;
104 static void bsg_transport_free_rq(struct request
*rq
)
106 struct bsg_job
*job
= blk_mq_rq_to_pdu(rq
);
111 static const struct bsg_ops bsg_transport_ops
= {
112 .check_proto
= bsg_transport_check_proto
,
113 .fill_hdr
= bsg_transport_fill_hdr
,
114 .complete_rq
= bsg_transport_complete_rq
,
115 .free_rq
= bsg_transport_free_rq
,
119 * bsg_teardown_job - routine to teardown a bsg job
120 * @kref: kref inside bsg_job that is to be torn down
122 static void bsg_teardown_job(struct kref
*kref
)
124 struct bsg_job
*job
= container_of(kref
, struct bsg_job
, kref
);
125 struct request
*rq
= blk_mq_rq_from_pdu(job
);
127 put_device(job
->dev
); /* release reference for the request */
129 kfree(job
->request_payload
.sg_list
);
130 kfree(job
->reply_payload
.sg_list
);
132 blk_end_request_all(rq
, BLK_STS_OK
);
135 void bsg_job_put(struct bsg_job
*job
)
137 kref_put(&job
->kref
, bsg_teardown_job
);
139 EXPORT_SYMBOL_GPL(bsg_job_put
);
141 int bsg_job_get(struct bsg_job
*job
)
143 return kref_get_unless_zero(&job
->kref
);
145 EXPORT_SYMBOL_GPL(bsg_job_get
);
148 * bsg_job_done - completion routine for bsg requests
149 * @job: bsg_job that is complete
150 * @result: job reply result
151 * @reply_payload_rcv_len: length of payload recvd
153 * The LLD should call this when the bsg job has completed.
155 void bsg_job_done(struct bsg_job
*job
, int result
,
156 unsigned int reply_payload_rcv_len
)
158 job
->result
= result
;
159 job
->reply_payload_rcv_len
= reply_payload_rcv_len
;
160 blk_complete_request(blk_mq_rq_from_pdu(job
));
162 EXPORT_SYMBOL_GPL(bsg_job_done
);
165 * bsg_softirq_done - softirq done routine for destroying the bsg requests
166 * @rq: BSG request that holds the job to be destroyed
168 static void bsg_softirq_done(struct request
*rq
)
170 struct bsg_job
*job
= blk_mq_rq_to_pdu(rq
);
175 static int bsg_map_buffer(struct bsg_buffer
*buf
, struct request
*req
)
177 size_t sz
= (sizeof(struct scatterlist
) * req
->nr_phys_segments
);
179 BUG_ON(!req
->nr_phys_segments
);
181 buf
->sg_list
= kzalloc(sz
, GFP_KERNEL
);
184 sg_init_table(buf
->sg_list
, req
->nr_phys_segments
);
185 buf
->sg_cnt
= blk_rq_map_sg(req
->q
, req
, buf
->sg_list
);
186 buf
->payload_len
= blk_rq_bytes(req
);
191 * bsg_prepare_job - create the bsg_job structure for the bsg request
192 * @dev: device that is being sent the bsg request
193 * @req: BSG request that needs a job structure
195 static bool bsg_prepare_job(struct device
*dev
, struct request
*req
)
197 struct request
*rsp
= req
->next_rq
;
198 struct bsg_job
*job
= blk_mq_rq_to_pdu(req
);
201 job
->timeout
= req
->timeout
;
204 ret
= bsg_map_buffer(&job
->request_payload
, req
);
206 goto failjob_rls_job
;
208 if (rsp
&& rsp
->bio
) {
209 ret
= bsg_map_buffer(&job
->reply_payload
, rsp
);
211 goto failjob_rls_rqst_payload
;
214 /* take a reference for the request */
215 get_device(job
->dev
);
216 kref_init(&job
->kref
);
219 failjob_rls_rqst_payload
:
220 kfree(job
->request_payload
.sg_list
);
222 job
->result
= -ENOMEM
;
227 * bsg_request_fn - generic handler for bsg requests
228 * @q: request queue to manage
230 * On error the create_bsg_job function should return a -Exyz error value
231 * that will be set to ->result.
233 * Drivers/subsys should pass this to the queue init function.
235 static void bsg_request_fn(struct request_queue
*q
)
236 __releases(q
->queue_lock
)
237 __acquires(q
->queue_lock
)
239 struct device
*dev
= q
->queuedata
;
243 if (!get_device(dev
))
247 req
= blk_fetch_request(q
);
250 spin_unlock_irq(q
->queue_lock
);
252 if (!bsg_prepare_job(dev
, req
)) {
253 blk_end_request_all(req
, BLK_STS_OK
);
254 spin_lock_irq(q
->queue_lock
);
258 ret
= q
->bsg_job_fn(blk_mq_rq_to_pdu(req
));
259 spin_lock_irq(q
->queue_lock
);
264 spin_unlock_irq(q
->queue_lock
);
266 spin_lock_irq(q
->queue_lock
);
269 /* called right after the request is allocated for the request_queue */
270 static int bsg_init_rq(struct request_queue
*q
, struct request
*req
, gfp_t gfp
)
272 struct bsg_job
*job
= blk_mq_rq_to_pdu(req
);
274 job
->reply
= kzalloc(SCSI_SENSE_BUFFERSIZE
, gfp
);
280 /* called right before the request is given to the request_queue user */
281 static void bsg_initialize_rq(struct request
*req
)
283 struct bsg_job
*job
= blk_mq_rq_to_pdu(req
);
284 void *reply
= job
->reply
;
286 memset(job
, 0, sizeof(*job
));
288 job
->reply_len
= SCSI_SENSE_BUFFERSIZE
;
289 job
->dd_data
= job
+ 1;
292 static void bsg_exit_rq(struct request_queue
*q
, struct request
*req
)
294 struct bsg_job
*job
= blk_mq_rq_to_pdu(req
);
300 * bsg_setup_queue - Create and add the bsg hooks so we can receive requests
301 * @dev: device to attach bsg device to
302 * @name: device to give bsg device
303 * @job_fn: bsg job handler
304 * @dd_job_size: size of LLD data needed for each job
306 struct request_queue
*bsg_setup_queue(struct device
*dev
, const char *name
,
307 bsg_job_fn
*job_fn
, int dd_job_size
)
309 struct request_queue
*q
;
312 q
= blk_alloc_queue(GFP_KERNEL
);
314 return ERR_PTR(-ENOMEM
);
315 q
->cmd_size
= sizeof(struct bsg_job
) + dd_job_size
;
316 q
->init_rq_fn
= bsg_init_rq
;
317 q
->exit_rq_fn
= bsg_exit_rq
;
318 q
->initialize_rq_fn
= bsg_initialize_rq
;
319 q
->request_fn
= bsg_request_fn
;
321 ret
= blk_init_allocated_queue(q
);
323 goto out_cleanup_queue
;
326 q
->bsg_job_fn
= job_fn
;
327 blk_queue_flag_set(QUEUE_FLAG_BIDI
, q
);
328 blk_queue_softirq_done(q
, bsg_softirq_done
);
329 blk_queue_rq_timeout(q
, BLK_DEFAULT_SG_TIMEOUT
);
331 ret
= bsg_register_queue(q
, dev
, name
, &bsg_transport_ops
);
333 printk(KERN_ERR
"%s: bsg interface failed to "
334 "initialize - register queue\n", dev
->kobj
.name
);
335 goto out_cleanup_queue
;
340 blk_cleanup_queue(q
);
343 EXPORT_SYMBOL_GPL(bsg_setup_queue
);