File: volume.c

package info (click to toggle)
iscsitarget 1.4.20.2-10.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,352 kB
  • sloc: ansic: 12,724; makefile: 476; sh: 313
file content (424 lines) | stat: -rw-r--r-- 8,671 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/*
 * Volume manager
 * (C) 2004 - 2005 FUJITA Tomonori <tomof@acm.org>
 * This code is licenced under the GPL.
 */

#include <linux/types.h>
#include <linux/parser.h>
#include <linux/blkdev.h>

#include "iscsi.h"
#include "iscsi_dbg.h"
#include "iotype.h"

struct iet_volume *volume_lookup(struct iscsi_target *target, u32 lun)
{
	struct iet_volume *volume;

	list_for_each_entry(volume, &target->volumes, list) {
		if (volume->lun == lun)
			return volume;
	}
	return NULL;
}

enum {
	opt_type,
	opt_iomode,
	opt_scsiid,
	opt_scsisn,
	opt_blk_size,
	opt_err,
};

static match_table_t tokens = {
	{opt_type, "type=%s"},
	{opt_iomode, "iomode=%s"},
	{opt_scsiid, "scsiid=%s"},
	{opt_scsisn, "scsisn=%s"},
	{opt_blk_size, "blocksize=%u"},
	{opt_err, NULL},
};

static int set_scsiid(struct iet_volume *volume, const char *id)
{
	size_t len;

	if ((len = strlen(id)) > SCSI_ID_LEN) {
		eprintk("SCSI ID too long, %zd provided, %u max\n", len,
								SCSI_ID_LEN);
		return -EINVAL;
	}

	memcpy(volume->scsi_id, id, len);

	return 0;
}

static int set_scsisn(struct iet_volume *volume, const char *sn)
{
	size_t len;
	int i;

	if ((len = strlen(sn)) > SCSI_SN_LEN) {
		eprintk("SCSI SN too long, %zd provided, %u max\n", len,
								SCSI_SN_LEN);
		return -EINVAL;
	}

	for (i = 0; i < len; i++) {
		if (!isascii(*(sn + i)) || !isprint(*(sn + i))) {
			eprintk("invalid characters in SCSI SN, %s\n",
				"only printable ascii characters allowed!");
			return -EINVAL;
		}
	}

	memcpy(volume->scsi_sn, sn, len);

	return 0;
}

/* Generate a MD5 hash of the target IQN and LUN number */
static void gen_scsiid(struct iet_volume *volume)
{
	struct hash_desc hash;

	hash.tfm = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
	hash.flags = 0;

	if (!IS_ERR(hash.tfm)) {
		struct scatterlist sg[2];
		unsigned int nbytes = 0;

		sg_init_table(sg, 2);

		sg_set_buf(&sg[0], volume->target->name,
					strlen(volume->target->name));
		nbytes += strlen(volume->target->name);

		sg_set_buf(&sg[1], &volume->lun, sizeof(volume->lun));
		nbytes += sizeof(volume->lun);

		crypto_hash_init(&hash);
		crypto_hash_update(&hash, sg, nbytes);
		crypto_hash_final(&hash, volume->scsi_id);

		crypto_free_hash(hash.tfm);
	} else {
		/* If no MD5 available set ID to TID and LUN */
		memcpy(volume->scsi_id, &volume->target->tid,
						sizeof(volume->target->tid));
		memcpy(volume->scsi_id + sizeof(volume->target->tid),
					&volume->lun, sizeof(volume->lun));
	}
}

static int parse_volume_params(struct iet_volume *volume, char *params)
{
	int err = 0;
	unsigned blk_sz;
	substring_t args[MAX_OPT_ARGS];
	char *p, *argp = NULL, *bp, *buf = (char *) get_zeroed_page(GFP_USER);

	if (!buf)
		return -ENOMEM;
	else
		bp = buf;

	strncpy(buf, params, PAGE_CACHE_SIZE);

	while ((p = strsep(&buf, ",")) != NULL) {
		int token;

		if (!*p)
			continue;
		iet_strtolower(p);
		token = match_token(p, tokens, args);
		switch (token) {
		case opt_type:
			argp = match_strdup(&args[0]);
			if (!argp) {
				err = -ENOMEM;
				break;
			}
			if (!(volume->iotype = get_iotype(argp)))
				err = -ENOENT;
			kfree(argp);
			break;
		case opt_iomode:
			argp = match_strdup(&args[0]);
			if (!argp) {
				err = -ENOMEM;
				break;
			}
			if (!strcmp(argp, "ro"))
				SetLUReadonly(volume);
			else if (!strcmp(argp, "wb"))
				SetLUWCache(volume);
			else if (strcmp(argp, "wt"))
				err = -EINVAL;
			kfree(argp);
			break;
		case opt_scsiid:
			argp = match_strdup(&args[0]);
			if (!argp) {
				err = -ENOMEM;
				break;
			}
			err = set_scsiid(volume, argp);
			kfree(argp);
			break;
		case opt_scsisn:
			argp = match_strdup(&args[0]);
			if (!argp) {
				err = -ENOMEM;
				break;
			}
			err = set_scsisn(volume, argp);
			kfree(argp);
			break;
		case opt_blk_size:
			argp = match_strdup(&args[0]);
			if (!argp) {
				err = -ENOMEM;
				break;
			}
			blk_sz = simple_strtoull(argp, NULL, 10);
			if (is_power_of_2(blk_sz) &&
			    512 <= blk_sz && blk_sz <= IET_MAX_BLOCK_SIZE)
				volume->blk_shift = blksize_bits(blk_sz);
			else {
				eprintk("invalid BlockSize=%u\n", blk_sz);
				err = -EINVAL;
			}
			kfree(argp);
			break;
		default:
			break;
		}
	}

	if (!err && !volume->iotype && !(volume->iotype = get_iotype("fileio"))) {
		eprintk("%s\n", "Cannot find fileio");
		err = -EINVAL;
	}

	free_page((unsigned long) bp);

	return err;
}

int volume_add(struct iscsi_target *target, struct volume_info *info)
{
	int ret;
	struct iet_volume *volume;
	char *args;

	volume = volume_lookup(target, info->lun);
	if (volume)
		return -EEXIST;

	if (info->lun > 0x3fff)
		return -EINVAL;

	volume = kzalloc(sizeof(*volume), GFP_KERNEL);
	if (!volume)
		return -ENOMEM;

	volume->target = target;
	volume->lun = info->lun;

	args = kzalloc(info->args_len + 1, GFP_KERNEL);
	if (!args) {
		ret = -ENOMEM;
		goto free_volume;
	}

	ret = copy_from_user(args, (void *)(unsigned long)info->args_ptr,
			     info->args_len);
	if (ret) {
		ret = -EFAULT;
		goto free_args;
	}

	ret = parse_volume_params(volume, args);
	if (ret < 0)
		goto free_args;

	ret = volume->iotype->attach(volume, args);
	if (ret < 0)
		goto free_args;

	if (!volume->scsi_id[0])
		gen_scsiid(volume);

	if (!volume->scsi_sn[0]) {
		int i;

		for (i = 0; i < SCSI_ID_LEN; i++)
			snprintf(volume->scsi_sn + (i * 2), 3, "%02x",
							volume->scsi_id[i]);
	}

	INIT_LIST_HEAD(&volume->queue.wait_list);
	spin_lock_init(&volume->queue.queue_lock);
	spin_lock_init(&volume->reserve_lock);

	volume->l_state = IDEV_RUNNING;
	atomic_set(&volume->l_count, 0);

	list_add_tail(&volume->list, &target->volumes);
	atomic_inc(&target->nr_volumes);

	kfree(args);

	return 0;
free_args:
	kfree(args);
free_volume:
	put_iotype(volume->iotype);
	kfree(volume);

	return ret;
}

void iscsi_volume_destroy(struct iet_volume *volume)
{
	assert(volume->l_state == IDEV_DEL);
	assert(!atomic_read(&volume->l_count));

	volume->iotype->detach(volume);
	put_iotype(volume->iotype);
	list_del(&volume->list);
	kfree(volume);
}

int iscsi_volume_del(struct iscsi_target *target, struct volume_info *info)
{
	struct iet_volume *volume;

	eprintk("%x %x\n", target->tid, info->lun);
	if (!(volume = volume_lookup(target, info->lun)))
		return -ENOENT;

	volume->l_state = IDEV_DEL;
	atomic_dec(&target->nr_volumes);
	if (!atomic_read(&volume->l_count))
		iscsi_volume_destroy(volume);

	return 0;
}

struct iet_volume *volume_get(struct iscsi_target *target, u32 lun)
{
	struct iet_volume *volume;

	if ((volume = volume_lookup(target, lun))) {
		if (volume->l_state == IDEV_RUNNING)
			atomic_inc(&volume->l_count);
		else
			volume = NULL;
	}
	return volume;
}

void volume_put(struct iet_volume *volume)
{
	if (atomic_dec_and_test(&volume->l_count) && volume->l_state == IDEV_DEL)
		iscsi_volume_destroy(volume);
}

int volume_reserve(struct iet_volume *volume, u64 sid)
{
	int err = 0;

	if (!volume)
		return -ENOENT;

	spin_lock(&volume->reserve_lock);
	if (volume->reserve_sid && volume->reserve_sid != sid)
		err = -EBUSY;
	else
		volume->reserve_sid = sid;

	spin_unlock(&volume->reserve_lock);
	return err;
}

int is_volume_reserved(struct iet_volume *volume, u64 sid)
{
	int err = 0;

	if (!volume)
		return -ENOENT;

	spin_lock(&volume->reserve_lock);
	if (!volume->reserve_sid || volume->reserve_sid == sid)
		err = 0;
	else
		err = -EBUSY;

	spin_unlock(&volume->reserve_lock);
	return err;
}

int volume_release(struct iet_volume *volume, u64 sid, int force)
{
	int err = 0;

	if (!volume)
		return -ENOENT;

	spin_lock(&volume->reserve_lock);

	if (force || volume->reserve_sid == sid)
		volume->reserve_sid = 0;
	else
		err = -EBUSY;

	spin_unlock(&volume->reserve_lock);
	return err;
}

static void iet_volume_info_show(struct seq_file *seq, struct iscsi_target *target)
{
	struct iet_volume *volume;

	list_for_each_entry(volume, &target->volumes, list) {
		seq_printf(seq, "\tlun:%u state:%x iotype:%s",
			   volume->lun, volume->l_state, volume->iotype->name);
		if (LUReadonly(volume))
			seq_printf(seq, " iomode:ro");
		else if (LUWCache(volume))
			seq_printf(seq, " iomode:wb");
		else
			seq_printf(seq, " iomode:wt");

		seq_printf(seq, " blocks:%llu blocksize:%u",
			volume->blk_cnt, 1 << volume->blk_shift);
		if (volume->iotype->show)
			volume->iotype->show(volume, seq);
		else
			seq_printf(seq, "\n");
	}
}

static int iet_volume_seq_open(struct inode *inode, struct file *file)
{
	int res;
	res = seq_open(file, &iet_seq_op);
	if (!res)
		((struct seq_file *)file->private_data)->private =
			iet_volume_info_show;
	return res;
}

struct file_operations volume_seq_fops = {
	.owner		= THIS_MODULE,
	.open		= iet_volume_seq_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= seq_release,
};