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 * bsg_destroy_job - routine to teardown/delete a bsg job
33 * @job: bsg_job that is to be torn down
35 static void bsg_destroy_job(struct kref
*kref
)
37 struct bsg_job
*job
= container_of(kref
, struct bsg_job
, kref
);
38 struct request
*rq
= job
->req
;
40 blk_end_request_all(rq
, BLK_STS_OK
);
42 put_device(job
->dev
); /* release reference for the request */
44 kfree(job
->request_payload
.sg_list
);
45 kfree(job
->reply_payload
.sg_list
);
49 void bsg_job_put(struct bsg_job
*job
)
51 kref_put(&job
->kref
, bsg_destroy_job
);
53 EXPORT_SYMBOL_GPL(bsg_job_put
);
55 int bsg_job_get(struct bsg_job
*job
)
57 return kref_get_unless_zero(&job
->kref
);
59 EXPORT_SYMBOL_GPL(bsg_job_get
);
62 * bsg_job_done - completion routine for bsg requests
63 * @job: bsg_job that is complete
64 * @result: job reply result
65 * @reply_payload_rcv_len: length of payload recvd
67 * The LLD should call this when the bsg job has completed.
69 void bsg_job_done(struct bsg_job
*job
, int result
,
70 unsigned int reply_payload_rcv_len
)
72 struct request
*req
= job
->req
;
73 struct request
*rsp
= req
->next_rq
;
74 struct scsi_request
*rq
= scsi_req(req
);
77 err
= scsi_req(job
->req
)->result
= result
;
79 /* we're only returning the result field in the reply */
80 rq
->sense_len
= sizeof(u32
);
82 rq
->sense_len
= job
->reply_len
;
83 /* we assume all request payload was transferred, residual == 0 */
87 WARN_ON(reply_payload_rcv_len
> scsi_req(rsp
)->resid_len
);
89 /* set reply (bidi) residual */
90 scsi_req(rsp
)->resid_len
-=
91 min(reply_payload_rcv_len
, scsi_req(rsp
)->resid_len
);
93 blk_complete_request(req
);
95 EXPORT_SYMBOL_GPL(bsg_job_done
);
98 * bsg_softirq_done - softirq done routine for destroying the bsg requests
99 * @rq: BSG request that holds the job to be destroyed
101 static void bsg_softirq_done(struct request
*rq
)
103 struct bsg_job
*job
= rq
->special
;
108 static int bsg_map_buffer(struct bsg_buffer
*buf
, struct request
*req
)
110 size_t sz
= (sizeof(struct scatterlist
) * req
->nr_phys_segments
);
112 BUG_ON(!req
->nr_phys_segments
);
114 buf
->sg_list
= kzalloc(sz
, GFP_KERNEL
);
117 sg_init_table(buf
->sg_list
, req
->nr_phys_segments
);
118 scsi_req(req
)->resid_len
= blk_rq_bytes(req
);
119 buf
->sg_cnt
= blk_rq_map_sg(req
->q
, req
, buf
->sg_list
);
120 buf
->payload_len
= blk_rq_bytes(req
);
125 * bsg_create_job - create the bsg_job structure for the bsg request
126 * @dev: device that is being sent the bsg request
127 * @req: BSG request that needs a job structure
129 static int bsg_create_job(struct device
*dev
, struct request
*req
)
131 struct request
*rsp
= req
->next_rq
;
132 struct request_queue
*q
= req
->q
;
133 struct scsi_request
*rq
= scsi_req(req
);
137 BUG_ON(req
->special
);
139 job
= kzalloc(sizeof(struct bsg_job
) + q
->bsg_job_size
, GFP_KERNEL
);
146 job
->dd_data
= (void *)&job
[1];
147 job
->request
= rq
->cmd
;
148 job
->request_len
= rq
->cmd_len
;
149 job
->reply
= rq
->sense
;
150 job
->reply_len
= SCSI_SENSE_BUFFERSIZE
; /* Size of sense buffer
153 ret
= bsg_map_buffer(&job
->request_payload
, req
);
155 goto failjob_rls_job
;
157 if (rsp
&& rsp
->bio
) {
158 ret
= bsg_map_buffer(&job
->reply_payload
, rsp
);
160 goto failjob_rls_rqst_payload
;
163 /* take a reference for the request */
164 get_device(job
->dev
);
165 kref_init(&job
->kref
);
168 failjob_rls_rqst_payload
:
169 kfree(job
->request_payload
.sg_list
);
176 * bsg_request_fn - generic handler for bsg requests
177 * @q: request queue to manage
179 * On error the create_bsg_job function should return a -Exyz error value
180 * that will be set to ->result.
182 * Drivers/subsys should pass this to the queue init function.
184 static void bsg_request_fn(struct request_queue
*q
)
185 __releases(q
->queue_lock
)
186 __acquires(q
->queue_lock
)
188 struct device
*dev
= q
->queuedata
;
193 if (!get_device(dev
))
197 req
= blk_fetch_request(q
);
200 spin_unlock_irq(q
->queue_lock
);
202 ret
= bsg_create_job(dev
, req
);
204 scsi_req(req
)->result
= ret
;
205 blk_end_request_all(req
, BLK_STS_OK
);
206 spin_lock_irq(q
->queue_lock
);
211 ret
= q
->bsg_job_fn(job
);
212 spin_lock_irq(q
->queue_lock
);
217 spin_unlock_irq(q
->queue_lock
);
219 spin_lock_irq(q
->queue_lock
);
223 * bsg_setup_queue - Create and add the bsg hooks so we can receive requests
224 * @dev: device to attach bsg device to
225 * @name: device to give bsg device
226 * @job_fn: bsg job handler
227 * @dd_job_size: size of LLD data needed for each job
229 struct request_queue
*bsg_setup_queue(struct device
*dev
, char *name
,
230 bsg_job_fn
*job_fn
, int dd_job_size
)
232 struct request_queue
*q
;
235 q
= blk_alloc_queue(GFP_KERNEL
);
237 return ERR_PTR(-ENOMEM
);
238 q
->cmd_size
= sizeof(struct scsi_request
);
239 q
->request_fn
= bsg_request_fn
;
241 ret
= blk_init_allocated_queue(q
);
243 goto out_cleanup_queue
;
246 q
->bsg_job_size
= dd_job_size
;
247 q
->bsg_job_fn
= job_fn
;
248 queue_flag_set_unlocked(QUEUE_FLAG_BIDI
, q
);
249 queue_flag_set_unlocked(QUEUE_FLAG_SCSI_PASSTHROUGH
, q
);
250 blk_queue_softirq_done(q
, bsg_softirq_done
);
251 blk_queue_rq_timeout(q
, BLK_DEFAULT_SG_TIMEOUT
);
253 ret
= bsg_register_queue(q
, dev
, name
, NULL
);
255 printk(KERN_ERR
"%s: bsg interface failed to "
256 "initialize - register queue\n", dev
->kobj
.name
);
257 goto out_cleanup_queue
;
262 blk_cleanup_queue(q
);
265 EXPORT_SYMBOL_GPL(bsg_setup_queue
);