2 * 2007+ Copyright (c) Evgeniy Polyakov <zbr@ioremap.net>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <linux/bio.h>
17 #include <linux/dst.h>
18 #include <linux/slab.h>
19 #include <linux/mempool.h>
22 * Transaction memory pool size.
24 static int dst_mempool_num = 32;
25 module_param(dst_mempool_num, int, 0644);
28 * Transaction tree management.
30 static inline int dst_trans_cmp(dst_gen_t gen, dst_gen_t new)
39 struct dst_trans *dst_trans_search(struct dst_node *node, dst_gen_t gen)
41 struct rb_root *root = &node->trans_root;
42 struct rb_node *n = root->rb_node;
43 struct dst_trans *t, *ret = NULL;
47 t = rb_entry(n, struct dst_trans, trans_entry);
49 cmp = dst_trans_cmp(t->gen, gen);
60 dprintk("%s: %s transaction: id: %llu.\n", __func__,
61 (ret)?"found":"not found", gen);
66 static int dst_trans_insert(struct dst_trans *new)
68 struct rb_root *root = &new->n->trans_root;
69 struct rb_node **n = &root->rb_node, *parent = NULL;
70 struct dst_trans *ret = NULL, *t;
76 t = rb_entry(parent, struct dst_trans, trans_entry);
78 cmp = dst_trans_cmp(t->gen, new->gen);
82 n = &parent->rb_right;
89 new->send_time = jiffies;
91 printk("%s: exist: old: gen: %llu, bio: %llu/%u, send_time: %lu, "
92 "new: gen: %llu, bio: %llu/%u, send_time: %lu.\n",
94 ret->gen, (u64)ret->bio->bi_sector,
95 ret->bio->bi_size, ret->send_time,
96 new->gen, (u64)new->bio->bi_sector,
97 new->bio->bi_size, new->send_time);
101 rb_link_node(&new->trans_entry, parent, n);
102 rb_insert_color(&new->trans_entry, root);
104 dprintk("%s: inserted: gen: %llu, bio: %llu/%u, send_time: %lu.\n",
105 __func__, new->gen, (u64)new->bio->bi_sector,
106 new->bio->bi_size, new->send_time);
111 int dst_trans_remove_nolock(struct dst_trans *t)
113 struct dst_node *n = t->n;
115 if (t->trans_entry.rb_parent_color) {
116 rb_erase(&t->trans_entry, &n->trans_root);
117 t->trans_entry.rb_parent_color = 0;
122 int dst_trans_remove(struct dst_trans *t)
125 struct dst_node *n = t->n;
127 mutex_lock(&n->trans_lock);
128 ret = dst_trans_remove_nolock(t);
129 mutex_unlock(&n->trans_lock);
135 * When transaction is completed and there are no more users,
136 * we complete appriate block IO request with given error status.
138 void dst_trans_put(struct dst_trans *t)
140 if (atomic_dec_and_test(&t->refcnt)) {
141 struct bio *bio = t->bio;
143 dprintk("%s: completed t: %p, gen: %llu, bio: %p.\n",
144 __func__, t, t->gen, bio);
146 bio_endio(bio, t->error);
150 mempool_free(t, t->n->trans_pool);
155 * Process given block IO request: allocate transaction, insert it into the tree
156 * and send/schedule crypto processing.
158 int dst_process_bio(struct dst_node *n, struct bio *bio)
163 t = mempool_alloc(n->trans_pool, GFP_NOFS);
167 t->n = dst_node_get(n);
171 atomic_set(&t->refcnt, 1);
172 t->gen = atomic_long_inc_return(&n->gen);
174 t->enc = bio_data_dir(bio);
175 dst_bio_to_cmd(bio, &t->cmd, DST_IO, t->gen);
177 mutex_lock(&n->trans_lock);
178 err = dst_trans_insert(t);
179 mutex_unlock(&n->trans_lock);
183 dprintk("%s: gen: %llu, bio: %llu/%u, dir/enc: %d, need_crypto: %d.\n",
184 __func__, t->gen, (u64)bio->bi_sector,
185 bio->bi_size, t->enc, dst_need_crypto(n));
187 if (dst_need_crypto(n) && t->enc)
196 mempool_free(t, n->trans_pool);
204 * Scan for timeout/stale transactions.
205 * Each transaction is being resent multiple times before error completion.
207 static void dst_trans_scan(struct work_struct *work)
209 struct dst_node *n = container_of(work, struct dst_node, trans_work.work);
210 struct rb_node *rb_node;
212 unsigned long timeout = n->trans_scan_timeout;
213 int num = 10 * n->trans_max_retries;
215 mutex_lock(&n->trans_lock);
217 for (rb_node = rb_first(&n->trans_root); rb_node; ) {
218 t = rb_entry(rb_node, struct dst_trans, trans_entry);
220 if (timeout && time_after(t->send_time + timeout, jiffies)
224 dprintk("%s: t: %p, gen: %llu, n: %s, retries: %u, max: %u.\n",
225 __func__, t, t->gen, n->name,
226 t->retries, n->trans_max_retries);
233 rb_node = rb_next(rb_node);
235 if (timeout && (++t->retries < n->trans_max_retries)) {
238 t->error = -ETIMEDOUT;
239 dst_trans_remove_nolock(t);
246 mutex_unlock(&n->trans_lock);
249 * If no timeout specified then system is in the middle of exiting process,
250 * so no need to reschedule scanning process again.
255 schedule_delayed_work(&n->trans_work, timeout);
260 * Flush all transactions and mark them as timed out.
261 * Destroy transaction pools.
263 void dst_node_trans_exit(struct dst_node *n)
266 struct rb_node *rb_node;
271 dprintk("%s: n: %p, cancelling the work.\n", __func__, n);
272 cancel_delayed_work_sync(&n->trans_work);
273 flush_scheduled_work();
274 dprintk("%s: n: %p, work has been cancelled.\n", __func__, n);
276 for (rb_node = rb_first(&n->trans_root); rb_node; ) {
277 t = rb_entry(rb_node, struct dst_trans, trans_entry);
279 dprintk("%s: t: %p, gen: %llu, n: %s.\n",
280 __func__, t, t->gen, n->name);
282 rb_node = rb_next(rb_node);
284 t->error = -ETIMEDOUT;
285 dst_trans_remove_nolock(t);
289 mempool_destroy(n->trans_pool);
290 kmem_cache_destroy(n->trans_cache);
294 * Initialize transaction storage for given node.
295 * Transaction stores not only control information,
296 * but also network command and crypto data (if needed)
297 * to reduce number of allocations. Thus transaction size
298 * differs from node to node.
300 int dst_node_trans_init(struct dst_node *n, unsigned int size)
303 * We need this, since node with given name can be dropped from the
304 * hash table, but be still alive, so subsequent creation of the node
305 * with the same name may collide with existing cache name.
308 snprintf(n->cache_name, sizeof(n->cache_name), "%s-%p", n->name, n);
310 n->trans_cache = kmem_cache_create(n->cache_name,
311 size + n->crypto.crypto_attached_size,
316 n->trans_pool = mempool_create_slab_pool(dst_mempool_num, n->trans_cache);
318 goto err_out_cache_destroy;
320 mutex_init(&n->trans_lock);
321 n->trans_root = RB_ROOT;
323 INIT_DELAYED_WORK(&n->trans_work, dst_trans_scan);
324 schedule_delayed_work(&n->trans_work, n->trans_scan_timeout);
326 dprintk("%s: n: %p, size: %u, crypto: %u.\n",
327 __func__, n, size, n->crypto.crypto_attached_size);
331 err_out_cache_destroy:
332 kmem_cache_destroy(n->trans_cache);