Newer
Older
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
/* Federico Vaga for CERN, 2011, GNU GPLv2 or later */
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/types.h>
#include <linux/slab.h>
#include <linux/fs.h>
#include <linux/cdev.h>
#include <linux/device.h>
#include <linux/spinlock.h>
#define __ZIO_INTERNAL__
#include <linux/zio.h>
#include <linux/zio-buffer.h>
#include <linux/zio-trigger.h>
const char zio_attr_names[ZATTR_STD_ATTR_NUM][ZIO_NAME_LEN] = {
[ZATTR_GAIN] = "gain_factor",
[ZATTR_OFFSET] = "offset",
[ZATTR_NBIT] = "resolution_bits",
[ZATTR_MAXRATE] = "max_sample_rate",
[ZATTR_VREFTYPE] = "vref_src",
};
EXPORT_SYMBOL(zio_attr_names);
/*
* @zattrs_to_attrs: extract a 'struct attribute **' from a
* 'struct zio_attribute *' and return it
*/
static struct attribute **zattrs_to_attrs(struct zio_attribute *zattr,
unsigned int n_attr)
{
int i;
struct attribute **attrs;
pr_debug("%s\n", __func__);
if (!zattr || !n_attr)
return NULL;
attrs = kzalloc(sizeof(struct attribute) * n_attr, GFP_KERNEL);
if (!attrs)
return NULL;
for (i = 0; i < n_attr; i++)
attrs[i] = &zattr[i].attr;
return attrs;
}
/*
* Top-level ZIO objects has a unique name.
* You can find a particular object by searching its name.
*/
static inline struct zio_obj_head *__find_by_name(
struct zio_object_list *zobj_list, char *name)
{
struct zio_object_list_item *cur;
list_for_each_entry(cur, &zobj_list->list, list) {
if (strcmp(cur->obj_head->name, name) == 0)
return cur->obj_head; /* object found */
}
pr_debug("%s:%d %s\n", __func__, __LINE__, name);
return NULL;
}
static struct zio_buffer_type *zbuf_find_by_name(char *name)
{
struct zio_obj_head *zbuf_head;
zbuf_head = __find_by_name(&zstat.all_buffer_types, name);
pr_debug("%s:%d %s\n", __func__, __LINE__, name);
if (!zbuf_head)
return NULL;
pr_debug("%s:%d %s\n", __func__, __LINE__, zbuf_head->name);
return container_of(zbuf_head, struct zio_buffer_type, head);
}
static struct zio_trigger_type *trig_find_by_name(char *name)
{
struct zio_obj_head *trig_head;
trig_head = __find_by_name(&zstat.all_trigger_types, name);
pr_debug("%s:%d %s\n", __func__, __LINE__, name);
if (!trig_head)
return NULL;
pr_debug("%s:%d %s\n", __func__, __LINE__, trig_head->name);
return container_of(trig_head, struct zio_trigger_type, head);
}
/*
* when a trigger fire, this function must be call
*/
int zio_fire_trigger(struct zio_ti *ti)
{
struct zio_buffer_type *zbuf;
struct zio_block *block;
struct zio_device *zdev;
struct zio_cset *cset;
struct zio_channel *chan;
struct zio_control *ctrl;
int err = 0;
pr_debug("%s:%d\n", __func__, __LINE__);
cset = ti->cset;
/* If the trigger runs too early, ti->cset is still NULL */
if (!cset)
return -EAGAIN;
zdev = cset->zdev;
zbuf = cset->zbuf;
/* copy the stamp (we are software driven anyways) */
ti->current_ctrl->tstamp.secs = ti->tstamp.tv_sec;
ti->current_ctrl->tstamp.ticks = ti->tstamp.tv_nsec;
ti->current_ctrl->tstamp.bins = ti->tstamp_extra;
/* and the sequence number too (first returned seq is 1) */
ti->current_ctrl->seq_num++;
cset_for_each(cset, chan) {
/* alloc the buffer for the incoming sample */
/* trigger know the size */
ctrl = NULL;
ctrl = zio_alloc_control(GFP_ATOMIC);
if (!ctrl){
/* FIXME: what do I do? */
return -ENOMEM;
}
memcpy(ctrl, ti->current_ctrl, ZIO_CONTROL_SIZE);
ctrl->chan_i = chan->index;
block = zbuf->b_op->alloc_block(chan->bi, ctrl,
ctrl->ssize * ctrl->nsamples,
GFP_ATOMIC);
if (IS_ERR(block)) {
err = PTR_ERR(block);
goto out_alloc;
}
/* TODO: condition to identify in or out */
/* get samples, and control block */
err = zdev->d_op->input_block(chan, block);
if (err) {
pr_err("%s: input_block(%s:%i:%i) error %d\n", __func__,
chan->cset->zdev->head.name,
chan->cset->index,
chan->index,
err);
zbuf->b_op->free_block(chan->bi, block);
err = zbuf->b_op->store_block(chan->bi, block);
if (err) {
/* no error message for common error */
zbuf->b_op->free_block(chan->bi, block);
}
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
}
return 0;
out_alloc:
return err;
}
EXPORT_SYMBOL(zio_fire_trigger);
static int __as_auto_index(char *s)
{
int i = 0;
for (i = 0; i < ZIO_NAME_LEN-1; i++) {
if (s[i] != '%')
continue;
i++;
if (s[i] == 'd')
return 1;
}
return 0;
}
static int __next_strlen(char *str)
{
int increment = 0, i;
for (i = strlen(str)-1; i > 0; i--) {
/* if is an ascii number */
if (str[i] >= '0' && str[i] <= '9') {
if (str[i] == '9')
continue;
else
break;
} else {
increment++;
break;
}
}
return strlen(str) + increment;
}
/*
* @zobj_unique_name: the zio device name be unique. If is not unique a busy
* error is returned. Developer must choose a unique name.
*/
static int zobj_unique_name(struct zio_object_list *zobj_list, char *name)
{
struct zio_object_list_item *cur;
struct zio_obj_head *tmp;
unsigned int counter = 0, again, len;
char name_to_check[ZIO_NAME_LEN];
int auto_index = __as_auto_index(name);
pr_debug("%s\n", __func__);
if (!name)
return -EINVAL;
len = strlen(name);
if (!len)
return -EINVAL;
strncpy(name_to_check, name, ZIO_NAME_LEN);
do {
again = 0;
if (auto_index) {
sprintf(name_to_check, name, counter++);
len = strlen(name_to_check);
}
list_for_each_entry(cur, &zobj_list->list, list) {
tmp = cur->obj_head;
if (strcmp(tmp->name, name_to_check))
continue; /* no conflict */
/* conflict found */
/* if not auto-assigned, then error */
if (!auto_index) {
pr_err("ZIO: name \"%s\" is already taken\n",
name);
return -EBUSY;
}
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
if (__next_strlen(name_to_check) > ZIO_NAME_LEN) {
pr_err("ZIO: invalid name \"%s\"\n", name);
return -EINVAL;
}
again = 1;
break;
}
} while (again);
strncpy(name, name_to_check, ZIO_NAME_LEN);
return 0;
}
static struct zio_attribute *__zattr_clone(const struct zio_attribute *src,
unsigned int n)
{
struct zio_attribute *dest = NULL;
unsigned int size;
if (!src)
return NULL;
size = n * sizeof(struct zio_attribute);
dest = kmalloc(size, GFP_KERNEL);
if (!dest)
return ERR_PTR(-ENOMEM);
dest = memcpy(dest, src, size);
return dest;
}
static int zattr_chan_pre_set(struct zio_channel *chan)
{
struct zio_cset *cset = chan->cset;
if (!(cset->flags & ZCSET_CHAN_ALLOC))
return 0; /* nothing to do */
/*
* if the channel has been allocated by ZIO, then attributes
* are cloned the template channel description within parent cset
*/
chan->zattr_set.std_zattr =
__zattr_clone(
cset->zattr_set_chan.std_zattr,
ZATTR_STD_ATTR_NUM);
if (IS_ERR(chan->zattr_set.std_zattr))
return PTR_ERR(chan->zattr_set.std_zattr);
chan->zattr_set.ext_zattr =
__zattr_clone(
cset->zattr_set.ext_zattr,
cset->zattr_set.n_ext_attr);
if (IS_ERR(chan->zattr_set.ext_zattr)) {
kfree(chan->zattr_set.std_zattr);
return PTR_ERR(chan->zattr_set.ext_zattr);
}
return 0;
}
static void zattr_chan_post_remove(struct zio_channel *chan)
{
if (chan->cset->flags & ZCSET_CHAN_ALLOC) {
kfree(chan->zattr_set.std_zattr);
kfree(chan->zattr_set.ext_zattr);
}
}
/* When touching attributes, we always get the spinlock for the hosting dev */
static spinlock_t *zdev_get_spinlock(struct zio_obj_head *head)
{
spinlock_t *lock;
switch (head->zobj_type) {
case ZDEV:
lock = &to_zio_dev(&head->kobj)->lock;
break;
case ZCSET:
lock = &to_zio_cset(&head->kobj)->zdev->lock;
break;
case ZCHAN:
lock = &to_zio_chan(&head->kobj)->cset->zdev->lock;
break;
case ZTI: /* we might not want to take a lock but... */
lock = &to_zio_ti(&head->kobj)->cset->zdev->lock;
break;
case ZBI:
lock = &to_zio_bi(&head->kobj)->cset->zdev->lock;
break;
default:
WARN(1, "ZIO: unknown zio object %i\n", head->zobj_type);
return NULL;
}
return lock;
}
static struct zio_attribute_set *__get_zattr_set(struct zio_obj_head *head)
{
struct zio_attribute_set *zattr_set;
switch (head->zobj_type) {
case ZDEV:
zattr_set = &to_zio_dev(&head->kobj)->zattr_set;
break;
case ZCSET:
zattr_set = &to_zio_cset(&head->kobj)->zattr_set;
break;
case ZCHAN:
zattr_set = &to_zio_chan(&head->kobj)->zattr_set;
break;
case ZTI:
zattr_set = &to_zio_ti(&head->kobj)->zattr_set;
break;
case ZBI:
zattr_set = &to_zio_bi(&head->kobj)->zattr_set;
break;
default:
WARN(1, "ZIO: unknown zio object %i\n", head->zobj_type);
return NULL;
}
return zattr_set;
}
/*
* Zio objects all handle uint32_t values. So the show and store
* are centralized here, and each device has its own get_info and set_conf
* which use binary 32-bit numbers. The zattr structure has a field
* those functions can use to identify the actual attribute involved
*/
static ssize_t zio_attr_show(struct kobject *kobj, struct attribute *attr,
char *buf)
{
int err = 0;
ssize_t len = 0;
spinlock_t *lock;
struct zio_attribute *zattr = to_zio_zattr(attr);
pr_debug("%s\n", __func__);
if (unlikely(strcmp(attr->name, "name") == 0)) {
/* print device name*/
return sprintf(buf, "%s\n", to_zio_head(kobj)->name);
}
if (zattr->d_op->info_get) {
lock = zdev_get_spinlock(to_zio_head(kobj));
spin_lock(lock);
err = zattr->d_op->info_get(kobj, zattr, &zattr->value);
spin_unlock(lock);
if (err)
return err;
}
len = sprintf(buf, "%i\n", zattr->value);
return len;
}
static ssize_t zio_attr_store(struct kobject *kobj, struct attribute *attr,
const char *buf, size_t size)
{
long val;
int err = 0;
struct zio_attribute *zattr = to_zio_zattr(attr);
spinlock_t *lock;
pr_debug("%s\n", __func__);
err = strict_strtol(buf, 10, &val);
if (err)
return -EINVAL;
if (zattr->d_op->conf_set) {
lock = zdev_get_spinlock(to_zio_head(kobj));
spin_lock(lock);
err = zattr->d_op->conf_set(kobj, zattr, val);
spin_unlock(lock);
}
return err == 0 ? size : err;
}
static const struct sysfs_ops zio_attribute_ktype_ops = {
.show = zio_attr_show,
.store = zio_attr_store,
};
struct attribute default_attrs[] = {
{
.name = "name",
.mode = 0444, /* read only */
},
};
struct attribute *def_attr_ptr[] = {
&default_attrs[0],
NULL, /* must be null ended */
};
struct kobj_type zdktype = { /* for standard and extended attribute */
.release = NULL,
.sysfs_ops = &zio_attribute_ktype_ops,
.default_attrs = def_attr_ptr,
};
static mode_t zattr_is_visible(struct kobject *kobj, struct attribute *attr,
int n)
{
unsigned int flag1, flag2, flag3;
mode_t mode = attr->mode;
/*
* TODO: for the future. If it's decided that activation
* is always the first bit then is faster doing:
* flag1 & flag2 & flag3 & 0x1
* to verify content
*/
switch (__zio_get_object_type(kobj)) {
case ZDEV:
flag1 = to_zio_dev(kobj)->flags;
if (flag1 & ZIO_DISABLED)
mode = 0;
break;
case ZCSET:
flag1 = to_zio_cset(kobj)->flags;
flag2 = to_zio_cset(kobj)->zdev->flags;
if ((flag1 | flag2) & ZIO_DISABLED)
mode = 0;
break;
case ZCHAN:
flag1 = to_zio_chan(kobj)->flags;
flag2 = to_zio_chan(kobj)->cset->flags;
flag3 = to_zio_chan(kobj)->cset->zdev->flags;
if ((flag1 | flag2 | flag3) & ZIO_DISABLED)
mode = 0;
break;
default:
WARN(1, "ZIO: unknown zio object %i\n",
__zio_get_object_type(kobj));
}
return mode;
}
static int zattr_create_group(struct kobject *kobj,
struct attribute_group *grp, unsigned int n_attr,
const struct zio_device_operations *d_op, int is_ext)
{
int i;
if (!grp->attrs)
return 0;
grp->is_visible = zattr_is_visible;
for (i = 0; i < n_attr; i++) {
/* assign show and store function */
to_zio_zattr(grp->attrs[i])->d_op = d_op;
if (!grp->attrs[i]->name) {
pr_warning("%s: can't create ext attributes. "
"%ith attribute has not a name", __func__, i);
return 0;
}
* only standard attributes need these lines to fill
* the empty hole in the array of attributes
*/
grp->attrs[i]->name = zio_attr_names[i];
grp->attrs[i]->mode = 0;
}
}
return sysfs_create_group(kobj, grp);
}
static int zattr_create_set(struct zio_obj_head *head,
const struct zio_device_operations *d_op)
{
int err = 0;
struct zio_attribute_set *zattr_set;
zattr_set = __get_zattr_set(head);
if (!zattr_set)
return -EINVAL; /* message already printed */
zattr_set->std_attr.attrs = zattrs_to_attrs(zattr_set->std_zattr,
ZATTR_STD_ATTR_NUM);
err = zattr_create_group(&head->kobj, &zattr_set->std_attr,
ZATTR_STD_ATTR_NUM, d_op, 0);
if (err)
goto out;
zattr_set->ext_attr.attrs = zattrs_to_attrs(zattr_set->ext_zattr,
zattr_set->n_ext_attr);
err = zattr_create_group(&head->kobj, &zattr_set->ext_attr,
zattr_set->n_ext_attr, d_op, 1);
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
if (err && zattr_set->std_attr.attrs)
sysfs_remove_group(&head->kobj, &zattr_set->std_attr);
out:
return err;
}
static void zattr_remove_set(struct zio_obj_head *head)
{
struct zio_attribute_set *zattr_set;
zattr_set = __get_zattr_set(head);
if (!zattr_set)
return;
if (zattr_set->std_attr.attrs) /*TODO is condition needed? */
sysfs_remove_group(&head->kobj, &zattr_set->std_attr);
if (zattr_set->ext_attr.attrs)
sysfs_remove_group(&head->kobj, &zattr_set->ext_attr);
}
static int __buffer_create_instance(struct zio_channel *chan)
{
struct zio_buffer_type *zbuf = chan->cset->zbuf;
struct zio_bi *bi;
int err;
/* create buffer */
bi = zbuf->b_op->create(zbuf, chan, FMODE_READ);
if (IS_ERR(bi))
return PTR_ERR(bi);
/* Now fill the trigger instance, ops, head, then the rest */
bi->b_op = zbuf->b_op;
bi->f_op = zbuf->f_op;
bi->head.zobj_type = ZBI;
err = kobject_init_and_add(&bi->head.kobj, &zdktype,
&chan->head.kobj, "buffer");
if (err)
goto out_kobj;
snprintf(bi->head.name, ZIO_NAME_LEN,"%s-%s-%d-%d",
zbuf->head.name,
chan->cset->zdev->head.name,
chan->cset->index,
chan->index);
err = zattr_create_set(&bi->head, chan->cset->zdev->d_op);
if (err)
goto out_sysfs;
init_waitqueue_head(&bi->q);
/* add to buffer instance list */
spin_lock(&zbuf->lock);
list_add(&bi->list, &zbuf->list);
spin_unlock(&zbuf->lock);
bi->cset = chan->cset;
chan->bi = bi;
/* done. This cset->ti marks everything is running (FIXME?) */
mb();
bi->chan = chan;
return 0;
out_sysfs:
kobject_del(&bi->head.kobj);
out_kobj:
kobject_put(&bi->head.kobj);
zbuf->b_op->destroy(bi);
return err;
}
static void __buffer_destroy_instance(struct zio_channel *chan)
{
struct zio_buffer_type *zbuf = chan->cset->zbuf;
struct zio_bi *bi = chan->bi;
chan->bi = NULL;
/* remove from buffer instance list */
spin_lock(&zbuf->lock);
list_del(&bi->list);
spin_unlock(&zbuf->lock);
zattr_remove_set(&bi->head);
kobject_del(&bi->head.kobj);
kobject_put(&bi->head.kobj);
zbuf->b_op->destroy(bi);
}
static int __trigger_create_instance(struct zio_cset *cset)
{
int err;
struct zio_control *ctrl;
struct zio_ti *ti;
pr_debug("%s:%d\n", __func__, __LINE__);
/* Allocate and fill current control as much as possible*/
ctrl = zio_alloc_control(GFP_KERNEL);
if (!ctrl)
return -ENOMEM;
ctrl->cset_i = cset->index;
strncpy(ctrl->devname, cset->zdev->head.name, ZIO_NAME_LEN);
strncpy(ctrl->triggername, cset->trig->head.name, ZIO_NAME_LEN);
ctrl->sbits = cset->ssize * 8; /* FIXME: retrieve from attribute */
ctrl->ssize = cset->ssize;
ti = cset->trig->t_op->create(cset->trig, cset, ctrl, 0/*FIXME*/);
if (IS_ERR(ti)) {
err = PTR_ERR(ti);
pr_err("%s: can't create trigger error %i\n", __func__, err);
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
goto out;
}
/* Now fill the trigger instance, ops, head, then the rest */
ti->t_op = cset->trig->t_op;
ti->f_op = cset->trig->f_op;
ti->head.zobj_type = ZTI;
err = kobject_init_and_add(&ti->head.kobj, &zdktype,
&cset->head.kobj, "trigger");
if (err)
goto out_kobj;
snprintf(ti->head.name, ZIO_NAME_LEN, "%s-%s-%d",
cset->trig->head.name,
cset->zdev->head.name,
cset->index);
err = zattr_create_set(&ti->head, cset->zdev->d_op);
if (err)
goto out_sysfs;
/* add to trigger instance list */
spin_lock(&cset->trig->lock);
list_add(&ti->list, &cset->trig->list);
spin_unlock(&cset->trig->lock);
cset->ti = ti;
/* done. This cset->ti marks everything is running (FIXME?) */
mb();
ti->cset = cset;
return 0;
out_sysfs:
kobject_del(&ti->head.kobj);
out_kobj:
kobject_put(&ti->head.kobj);
ti->t_op->destroy(ti);
out:
zio_free_control(ctrl);
return err;
}
static void __trigger_destroy_instance(struct zio_cset *cset)
{
struct zio_ti *ti = cset->ti;
struct zio_control *ctrl = ti->current_ctrl;
cset->ti = NULL;
/* remove from trigger instance list */
spin_lock(&cset->trig->lock);
list_del(&ti->list);
spin_unlock(&cset->trig->lock);
zattr_remove_set(&ti->head);
kobject_del(&ti->head.kobj);
kobject_put(&ti->head.kobj);
cset->trig->t_op->destroy(ti);
zio_free_control(ctrl);
}
/*
* chan_register register one channel, but it is important to register
* or unregister all the channels of a cset at the same time to prevent
* minors overlapping
*/
static int chan_register(struct zio_channel *chan)
{
int err;
pr_debug("%s:%d\n", __func__, __LINE__);
if (!chan)
return -EINVAL;
chan->head.zobj_type = ZCHAN;
err = kobject_init_and_add(&chan->head.kobj, &zdktype,
&chan->cset->head.kobj, "chan%i", chan->index);
if (err)
goto out_add;
err = zattr_chan_pre_set(chan);
if (err)
goto out_pre;
/* create sysfs channel attributes */
err = zattr_create_set(&chan->head, chan->cset->zdev->d_op);
if (err)
goto out_sysfs;
/* create buffer */
err = __buffer_create_instance(chan);
if (err)
goto out_buf;
/* create channel char devices*/
err = chan_create_device(chan);
if (err)
goto out_create;
/*
* if no name was assigned, ZIO assign it.
* cset name is set to the kobject name. kobject name has no
* length limit, so the cset name is set at maximum at the
* first ZIO_NAME_LEN character of kobject name. Is extremely rare
* and is not destructive a duplicated name for cset
*/
if (!strlen(chan->head.name))
strncpy(chan->head.name, chan->head.kobj.name, ZIO_NAME_LEN);
return 0;
/* ERRORS */
out_create:
__buffer_destroy_instance(chan);
out_buf:
zattr_remove_set(&chan->head);
out_sysfs:
zattr_chan_post_remove(chan);
out_pre:
kobject_del(&chan->head.kobj);
out_add:
/* we must _put even if it returned error */
kobject_put(&chan->head.kobj);
return err;
}
static void chan_unregister(struct zio_channel *chan)
{
pr_debug("%s:%d\n", __func__, __LINE__);
if (!chan)
return;
chan_destroy_device(chan);
__buffer_destroy_instance(chan);
zattr_remove_set(&chan->head);
zattr_chan_post_remove(chan);
kobject_del(&chan->head.kobj);
kobject_put(&chan->head.kobj);
}
/*
* @cset_alloc_chan: when low-level drivers do not allocate their channels,
* but set only how many exist, ZIO allocate them
* @cset_free_chan: if ZIO allocated channels, then it free them; otherwise
* it does nothing
*/
static struct zio_channel *cset_alloc_chan(struct zio_cset *cset)
{
pr_debug("%s:%d\n", __func__, __LINE__);
/*if no static channels, then ZIO must alloc them */
if (cset->chan)
return cset->chan;
/* initialize memory to zero to have correct flags and attrs */
cset->chan = kzalloc(sizeof(struct zio_channel) *
cset->n_chan, GFP_KERNEL);
if (!cset->chan)
return ERR_PTR(-ENOMEM);
cset->flags |= ZCSET_CHAN_ALLOC;
return cset->chan;
}
static inline void cset_free_chan(struct zio_cset *cset)
{
pr_debug("%s:%d\n", __func__, __LINE__);
/* only allocated channels need to be freed*/
if (cset->flags & ZCSET_CHAN_ALLOC) {
/* free allocated channel*/
kfree(cset->chan);
}
}
static int cset_register(struct zio_cset *cset)
{
int i, j, err = 0;
pr_debug("%s:%d\n", __func__, __LINE__);
if (!cset)
return -EINVAL;
if (!cset->n_chan) {
pr_err("ZIO: no channels in cset%i\n", cset->index);
return -EINVAL;
}
err = __zio_minorbase_get(cset);
if (err) {
pr_err("ZIO: no minors available\n");
return -EBUSY;
}
cset->head.zobj_type = ZCSET;
err = kobject_init_and_add(&cset->head.kobj, &zdktype,
&cset->zdev->head.kobj, "cset%i", cset->index);
if (err)
goto out_add;
err = zattr_create_set(&cset->head, cset->zdev->d_op);
if (err)
goto out_sysfs;
cset->chan = cset_alloc_chan(cset);
if (IS_ERR(cset->chan)) {
err = PTR_ERR(cset->chan);
goto out_alloc;
}
/*
* cset must have a buffer. If no buffer is associated to the
* cset, ZIO set the default one
*/
if (!cset->zbuf) {
cset->zbuf = zbuf_find_by_name(ZIO_DEFAULT_BUFFER);
if (!cset->zbuf) {
pr_err("ZIO: can't find buffer \"%s\"\n",
ZIO_DEFAULT_BUFFER);
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
err = -EBUSY;
goto out_buf;
}
}
/* register all child channels */
for (i = 0; i < cset->n_chan; i++) {
cset->chan[i].index = i;
cset->chan[i].cset = cset;
err = chan_register(&cset->chan[i]);
if (err)
goto out_reg;
}
/*
* if no name was assigned, ZIO assigns it.
* cset name is set to the kobject name. kobject name has no
* length limit, so the cset name is set as the
* first ZIO_NAME_LEN characters of kobject name. it is extremely rare
* and is not destructive a duplicated name for cset
*/
if (!strlen(cset->head.name))
strncpy(cset->head.name, cset->head.kobj.name, ZIO_NAME_LEN);
/*
* cset must have a trigger. If no trigger is provided, then
* ZIO apply the default one. Trigger assignment must be the last,
* because each channel and the cset itself must be ready for trigger
* fire.
*/
if (!cset->trig) {
cset->trig = trig_find_by_name(ZIO_DEFAULT_TRIGGER);
if (!cset->trig) {
pr_err("ZIO: can't find trigger \"%s\"\n",
ZIO_DEFAULT_TRIGGER);
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
err = -EBUSY;
goto out_reg;
}
err = __trigger_create_instance(cset);
if (err)
goto out_trig;
}
list_add(&cset->list_cset, &zstat.list_cset);
/* private initialization function */
if (cset->init) {
err = cset->init(cset);
if (err)
goto out_init;
}
return 0;
out_init:
cset->trig->t_op->destroy(cset->ti);
out_trig:
cset->trig = NULL;
out_reg:
for (j = i-1; j >= 0; j--)
chan_unregister(&cset->chan[i]);
out_buf:
cset_free_chan(cset);
out_alloc:
zattr_remove_set(&cset->head);
out_sysfs:
kobject_del(&cset->head.kobj);
out_add:
/* we must _put even if it returned error */
kobject_put(&cset->head.kobj);
return err;
}
static void cset_unregister(struct zio_cset *cset)
{
int i;
pr_debug("%s:%d\n", __func__, __LINE__);
if (!cset)
return;
/* private erase function */
if (cset->exit)
cset->exit(cset);
__trigger_destroy_instance(cset);
cset->trig = NULL;
/* unregister all child channels */
for (i = 0; i < cset->n_chan; i++)
chan_unregister(&cset->chan[i]);
cset->zbuf = NULL;
cset_free_chan(cset);
/* remove sysfs */
zattr_remove_set(&cset->head);
kobject_del(&cset->head.kobj);
kobject_put(&cset->head.kobj);
__zio_minorbase_put(cset);
}
static int zobj_register(struct zio_object_list *zlist,
struct zio_obj_head *head,
enum zio_object_type type,
struct module *owner,
const char *name)
{
int err;
struct zio_object_list_item *item;
pr_debug("%s:%d\n", __func__, __LINE__);
head->zobj_type = type;
if (strlen(name) > ZIO_NAME_OBJ)
pr_warning("ZIO: name too long, cut to %d characters\n",
ZIO_NAME_OBJ);
strncpy(head->name, name, ZIO_NAME_OBJ);
/* name must be unique */
err = zobj_unique_name(zlist, head->name);
if (err)
goto out;
err = kobject_init_and_add(&head->kobj, &zdktype, zlist->kobj,
head->name);
if (err)
goto out_kobj;
/* add to object list */
item = kmalloc(sizeof(struct zio_object_list_item), GFP_KERNEL);
if (!item) {
err = -ENOMEM;
goto out_km;
}
item->obj_head = head;
item->owner = owner;
spin_lock(&zstat.lock);
list_add(&item->list, &zlist->list);
spin_unlock(&zstat.lock);
return 0;
out_km:
kobject_del(&head->kobj);
out_kobj:
kobject_put(&head->kobj); /* we must _put even if it returned error */
out:
return err;
}
static void zobj_unregister(struct zio_object_list *zlist,
struct zio_obj_head *zobj)
{
struct zio_object_list_item *item;
pr_debug("%s:%d\n", __func__, __LINE__);
if (!zobj)
return;
list_for_each_entry(item, &zlist->list, list) {
if (item->obj_head == zobj) {
spin_lock(&zstat.lock);
list_del(&item->list);
spin_unlock(&zstat.lock);
break;
}
}
kobject_del(&zobj->kobj);
kobject_put(&zobj->kobj);
}
int zio_register_dev(struct zio_device *zdev, const char *name)
{
int err = 0, i, j;
if (!zdev || !name)