blob: f2c2d54a61b43b975bebe92fc09603bb166adb64 [file] [log] [blame]
Mike Christieaa387cc2011-07-31 22:05:09 +02001/*
2 * BSG helper library
3 *
4 * Copyright (C) 2008 James Smart, Emulex Corporation
5 * Copyright (C) 2011 Red Hat, Inc. All rights reserved.
6 * Copyright (C) 2011 Mike Christie
7 *
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.
12 *
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.
17 *
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
21 *
22 */
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>
Paul Gortmaker6adb1232011-09-28 18:26:05 -040028#include <linux/export.h>
Mike Christieaa387cc2011-07-31 22:05:09 +020029#include <scsi/scsi_cmnd.h>
30
31/**
Benjamin Block50b4d482017-08-24 01:57:56 +020032 * bsg_teardown_job - routine to teardown a bsg job
Bart Van Asscheaa981922018-01-09 10:11:00 -080033 * @kref: kref inside bsg_job that is to be torn down
Mike Christieaa387cc2011-07-31 22:05:09 +020034 */
Benjamin Block50b4d482017-08-24 01:57:56 +020035static void bsg_teardown_job(struct kref *kref)
Mike Christieaa387cc2011-07-31 22:05:09 +020036{
Johannes Thumshirnbf0f2d32016-11-17 10:31:18 +010037 struct bsg_job *job = container_of(kref, struct bsg_job, kref);
Christoph Hellwigef6fa642018-03-13 17:28:40 +010038 struct request *rq = blk_mq_rq_from_pdu(job);
Johannes Thumshirnc00da4c2016-11-17 10:31:20 +010039
Mike Christieaa387cc2011-07-31 22:05:09 +020040 put_device(job->dev); /* release reference for the request */
41
42 kfree(job->request_payload.sg_list);
43 kfree(job->reply_payload.sg_list);
Benjamin Block50b4d482017-08-24 01:57:56 +020044
45 blk_end_request_all(rq, BLK_STS_OK);
Mike Christieaa387cc2011-07-31 22:05:09 +020046}
47
Johannes Thumshirnfb6f7c82016-11-17 10:31:23 +010048void bsg_job_put(struct bsg_job *job)
49{
Benjamin Block50b4d482017-08-24 01:57:56 +020050 kref_put(&job->kref, bsg_teardown_job);
Johannes Thumshirnfb6f7c82016-11-17 10:31:23 +010051}
52EXPORT_SYMBOL_GPL(bsg_job_put);
53
54int bsg_job_get(struct bsg_job *job)
55{
56 return kref_get_unless_zero(&job->kref);
57}
58EXPORT_SYMBOL_GPL(bsg_job_get);
Mike Christieaa387cc2011-07-31 22:05:09 +020059
60/**
61 * bsg_job_done - completion routine for bsg requests
62 * @job: bsg_job that is complete
63 * @result: job reply result
64 * @reply_payload_rcv_len: length of payload recvd
65 *
66 * The LLD should call this when the bsg job has completed.
67 */
68void bsg_job_done(struct bsg_job *job, int result,
69 unsigned int reply_payload_rcv_len)
70{
Christoph Hellwigef6fa642018-03-13 17:28:40 +010071 struct request *req = blk_mq_rq_from_pdu(job);
Mike Christieaa387cc2011-07-31 22:05:09 +020072 struct request *rsp = req->next_rq;
73 int err;
74
Christoph Hellwigef6fa642018-03-13 17:28:40 +010075 err = job->sreq.result = result;
Mike Christieaa387cc2011-07-31 22:05:09 +020076 if (err < 0)
77 /* we're only returning the result field in the reply */
Christoph Hellwigef6fa642018-03-13 17:28:40 +010078 job->sreq.sense_len = sizeof(u32);
Mike Christieaa387cc2011-07-31 22:05:09 +020079 else
Christoph Hellwigef6fa642018-03-13 17:28:40 +010080 job->sreq.sense_len = job->reply_len;
Mike Christieaa387cc2011-07-31 22:05:09 +020081 /* we assume all request payload was transferred, residual == 0 */
Christoph Hellwigef6fa642018-03-13 17:28:40 +010082 job->sreq.resid_len = 0;
Mike Christieaa387cc2011-07-31 22:05:09 +020083
84 if (rsp) {
Christoph Hellwig82ed4db2017-01-27 09:46:29 +010085 WARN_ON(reply_payload_rcv_len > scsi_req(rsp)->resid_len);
Mike Christieaa387cc2011-07-31 22:05:09 +020086
87 /* set reply (bidi) residual */
Christoph Hellwig82ed4db2017-01-27 09:46:29 +010088 scsi_req(rsp)->resid_len -=
89 min(reply_payload_rcv_len, scsi_req(rsp)->resid_len);
Mike Christieaa387cc2011-07-31 22:05:09 +020090 }
91 blk_complete_request(req);
92}
93EXPORT_SYMBOL_GPL(bsg_job_done);
94
95/**
96 * bsg_softirq_done - softirq done routine for destroying the bsg requests
97 * @rq: BSG request that holds the job to be destroyed
98 */
99static void bsg_softirq_done(struct request *rq)
100{
Benjamin Block50b4d482017-08-24 01:57:56 +0200101 struct bsg_job *job = blk_mq_rq_to_pdu(rq);
Mike Christieaa387cc2011-07-31 22:05:09 +0200102
Johannes Thumshirnfb6f7c82016-11-17 10:31:23 +0100103 bsg_job_put(job);
Mike Christieaa387cc2011-07-31 22:05:09 +0200104}
105
106static int bsg_map_buffer(struct bsg_buffer *buf, struct request *req)
107{
108 size_t sz = (sizeof(struct scatterlist) * req->nr_phys_segments);
109
110 BUG_ON(!req->nr_phys_segments);
111
112 buf->sg_list = kzalloc(sz, GFP_KERNEL);
113 if (!buf->sg_list)
114 return -ENOMEM;
115 sg_init_table(buf->sg_list, req->nr_phys_segments);
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100116 scsi_req(req)->resid_len = blk_rq_bytes(req);
Mike Christieaa387cc2011-07-31 22:05:09 +0200117 buf->sg_cnt = blk_rq_map_sg(req->q, req, buf->sg_list);
118 buf->payload_len = blk_rq_bytes(req);
119 return 0;
120}
121
122/**
Benjamin Block50b4d482017-08-24 01:57:56 +0200123 * bsg_prepare_job - create the bsg_job structure for the bsg request
Mike Christieaa387cc2011-07-31 22:05:09 +0200124 * @dev: device that is being sent the bsg request
125 * @req: BSG request that needs a job structure
126 */
Benjamin Block50b4d482017-08-24 01:57:56 +0200127static int bsg_prepare_job(struct device *dev, struct request *req)
Mike Christieaa387cc2011-07-31 22:05:09 +0200128{
129 struct request *rsp = req->next_rq;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100130 struct scsi_request *rq = scsi_req(req);
Benjamin Block50b4d482017-08-24 01:57:56 +0200131 struct bsg_job *job = blk_mq_rq_to_pdu(req);
Mike Christieaa387cc2011-07-31 22:05:09 +0200132 int ret;
133
Christoph Hellwig31156ec2018-03-13 17:28:39 +0100134 job->timeout = req->timeout;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100135 job->request = rq->cmd;
136 job->request_len = rq->cmd_len;
Benjamin Block50b4d482017-08-24 01:57:56 +0200137
Mike Christieaa387cc2011-07-31 22:05:09 +0200138 if (req->bio) {
139 ret = bsg_map_buffer(&job->request_payload, req);
140 if (ret)
141 goto failjob_rls_job;
142 }
143 if (rsp && rsp->bio) {
144 ret = bsg_map_buffer(&job->reply_payload, rsp);
145 if (ret)
146 goto failjob_rls_rqst_payload;
147 }
148 job->dev = dev;
149 /* take a reference for the request */
150 get_device(job->dev);
Johannes Thumshirnbf0f2d32016-11-17 10:31:18 +0100151 kref_init(&job->kref);
Mike Christieaa387cc2011-07-31 22:05:09 +0200152 return 0;
153
154failjob_rls_rqst_payload:
155 kfree(job->request_payload.sg_list);
156failjob_rls_job:
Mike Christieaa387cc2011-07-31 22:05:09 +0200157 return -ENOMEM;
158}
159
Mike Christieaa387cc2011-07-31 22:05:09 +0200160/**
161 * bsg_request_fn - generic handler for bsg requests
162 * @q: request queue to manage
163 *
164 * On error the create_bsg_job function should return a -Exyz error value
Christoph Hellwig17d53632017-04-20 16:03:01 +0200165 * that will be set to ->result.
Mike Christieaa387cc2011-07-31 22:05:09 +0200166 *
167 * Drivers/subsys should pass this to the queue init function.
168 */
Christoph Hellwig8ae94eb2017-01-03 15:25:02 +0300169static void bsg_request_fn(struct request_queue *q)
Bart Van Asschedbb3ab02016-09-25 19:54:38 -0700170 __releases(q->queue_lock)
171 __acquires(q->queue_lock)
Mike Christieaa387cc2011-07-31 22:05:09 +0200172{
173 struct device *dev = q->queuedata;
174 struct request *req;
Mike Christieaa387cc2011-07-31 22:05:09 +0200175 int ret;
176
177 if (!get_device(dev))
178 return;
179
180 while (1) {
181 req = blk_fetch_request(q);
182 if (!req)
183 break;
184 spin_unlock_irq(q->queue_lock);
185
Benjamin Block50b4d482017-08-24 01:57:56 +0200186 ret = bsg_prepare_job(dev, req);
Mike Christieaa387cc2011-07-31 22:05:09 +0200187 if (ret) {
Christoph Hellwig17d53632017-04-20 16:03:01 +0200188 scsi_req(req)->result = ret;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200189 blk_end_request_all(req, BLK_STS_OK);
Mike Christieaa387cc2011-07-31 22:05:09 +0200190 spin_lock_irq(q->queue_lock);
191 continue;
192 }
193
Benjamin Block50b4d482017-08-24 01:57:56 +0200194 ret = q->bsg_job_fn(blk_mq_rq_to_pdu(req));
Mike Christieaa387cc2011-07-31 22:05:09 +0200195 spin_lock_irq(q->queue_lock);
196 if (ret)
197 break;
198 }
199
200 spin_unlock_irq(q->queue_lock);
201 put_device(dev);
202 spin_lock_irq(q->queue_lock);
203}
Mike Christieaa387cc2011-07-31 22:05:09 +0200204
Benjamin Block50b4d482017-08-24 01:57:56 +0200205static int bsg_init_rq(struct request_queue *q, struct request *req, gfp_t gfp)
206{
207 struct bsg_job *job = blk_mq_rq_to_pdu(req);
208 struct scsi_request *sreq = &job->sreq;
209
Benjamin Blockeab40cf2017-10-03 12:48:37 +0200210 /* called right after the request is allocated for the request_queue */
Benjamin Block50b4d482017-08-24 01:57:56 +0200211
Benjamin Blockeab40cf2017-10-03 12:48:37 +0200212 sreq->sense = kzalloc(SCSI_SENSE_BUFFERSIZE, gfp);
Benjamin Block50b4d482017-08-24 01:57:56 +0200213 if (!sreq->sense)
214 return -ENOMEM;
215
Benjamin Blockeab40cf2017-10-03 12:48:37 +0200216 return 0;
217}
218
219static void bsg_initialize_rq(struct request *req)
220{
221 struct bsg_job *job = blk_mq_rq_to_pdu(req);
222 struct scsi_request *sreq = &job->sreq;
223 void *sense = sreq->sense;
224
225 /* called right before the request is given to the request_queue user */
226
227 memset(job, 0, sizeof(*job));
228
229 scsi_req_init(sreq);
230
231 sreq->sense = sense;
232 sreq->sense_len = SCSI_SENSE_BUFFERSIZE;
233
Benjamin Blockeab40cf2017-10-03 12:48:37 +0200234 job->reply = sense;
Benjamin Block50b4d482017-08-24 01:57:56 +0200235 job->reply_len = sreq->sense_len;
236 job->dd_data = job + 1;
Benjamin Block50b4d482017-08-24 01:57:56 +0200237}
238
239static void bsg_exit_rq(struct request_queue *q, struct request *req)
240{
241 struct bsg_job *job = blk_mq_rq_to_pdu(req);
242 struct scsi_request *sreq = &job->sreq;
243
244 kfree(sreq->sense);
245}
246
Mike Christieaa387cc2011-07-31 22:05:09 +0200247/**
248 * bsg_setup_queue - Create and add the bsg hooks so we can receive requests
249 * @dev: device to attach bsg device to
Mike Christieaa387cc2011-07-31 22:05:09 +0200250 * @name: device to give bsg device
251 * @job_fn: bsg job handler
252 * @dd_job_size: size of LLD data needed for each job
Bart Van Asscheaa981922018-01-09 10:11:00 -0800253 * @release: @dev release function
Mike Christieaa387cc2011-07-31 22:05:09 +0200254 */
Christoph Hellwigc1225f02017-08-25 17:37:38 +0200255struct request_queue *bsg_setup_queue(struct device *dev, const char *name,
256 bsg_job_fn *job_fn, int dd_job_size,
257 void (*release)(struct device *))
Mike Christieaa387cc2011-07-31 22:05:09 +0200258{
Christoph Hellwig8ae94eb2017-01-03 15:25:02 +0300259 struct request_queue *q;
Mike Christieaa387cc2011-07-31 22:05:09 +0200260 int ret;
261
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100262 q = blk_alloc_queue(GFP_KERNEL);
Christoph Hellwig8ae94eb2017-01-03 15:25:02 +0300263 if (!q)
264 return ERR_PTR(-ENOMEM);
Benjamin Block50b4d482017-08-24 01:57:56 +0200265 q->cmd_size = sizeof(struct bsg_job) + dd_job_size;
266 q->init_rq_fn = bsg_init_rq;
267 q->exit_rq_fn = bsg_exit_rq;
Benjamin Blockeab40cf2017-10-03 12:48:37 +0200268 q->initialize_rq_fn = bsg_initialize_rq;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100269 q->request_fn = bsg_request_fn;
270
271 ret = blk_init_allocated_queue(q);
272 if (ret)
273 goto out_cleanup_queue;
Christoph Hellwig8ae94eb2017-01-03 15:25:02 +0300274
Mike Christieaa387cc2011-07-31 22:05:09 +0200275 q->queuedata = dev;
Mike Christieaa387cc2011-07-31 22:05:09 +0200276 q->bsg_job_fn = job_fn;
Bart Van Assche8b904b52018-03-07 17:10:10 -0800277 blk_queue_flag_set(QUEUE_FLAG_BIDI, q);
278 blk_queue_flag_set(QUEUE_FLAG_SCSI_PASSTHROUGH, q);
Mike Christieaa387cc2011-07-31 22:05:09 +0200279 blk_queue_softirq_done(q, bsg_softirq_done);
280 blk_queue_rq_timeout(q, BLK_DEFAULT_SG_TIMEOUT);
281
Christoph Hellwigc1225f02017-08-25 17:37:38 +0200282 ret = bsg_register_queue(q, dev, name, release);
Mike Christieaa387cc2011-07-31 22:05:09 +0200283 if (ret) {
284 printk(KERN_ERR "%s: bsg interface failed to "
285 "initialize - register queue\n", dev->kobj.name);
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100286 goto out_cleanup_queue;
Mike Christieaa387cc2011-07-31 22:05:09 +0200287 }
288
Christoph Hellwig8ae94eb2017-01-03 15:25:02 +0300289 return q;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100290out_cleanup_queue:
291 blk_cleanup_queue(q);
292 return ERR_PTR(ret);
Mike Christieaa387cc2011-07-31 22:05:09 +0200293}
294EXPORT_SYMBOL_GPL(bsg_setup_queue);