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#include <linux/slab.h>
118#include <linux/file.h>
119#include <linux/smp_lock.h>
120#include <linux/init.h>
121#include <linux/capability.h>
122#include <linux/timer.h>
123#include <linux/time.h>
124#include <linux/fs.h>
125
126#include <asm/semaphore.h>
127#include <asm/uaccess.h>
128
129#define IS_POSIX(fl) (fl->fl_flags & FL_POSIX)
130#define IS_FLOCK(fl) (fl->fl_flags & FL_FLOCK)
131#define IS_LEASE(fl) (fl->fl_flags & FL_LEASE)
132
133int leases_enable = 1;
134int lease_break_time = 45;
135
136#define for_each_lock(inode, lockp) \
137 for (lockp = &inode->i_flock; *lockp != NULL; lockp = &(*lockp)->fl_next)
138
139LIST_HEAD(file_lock_list);
140static LIST_HEAD(blocked_list);
141
142static kmem_cache_t *filelock_cache;
143
144
145static struct file_lock *locks_alloc_lock(int account)
146{
147 struct file_lock *fl;
148 if (account && current->locks >= current->rlim[RLIMIT_LOCKS].rlim_cur)
149 return NULL;
150 fl = kmem_cache_alloc(filelock_cache, SLAB_KERNEL);
151 if (fl)
152 current->locks++;
153 return fl;
154}
155
156
157static inline void locks_free_lock(struct file_lock *fl)
158{
159 if (fl == NULL) {
160 BUG();
161 return;
162 }
163 current->locks--;
164 if (waitqueue_active(&fl->fl_wait))
165 panic("Attempting to free lock with active wait queue");
166
167 if (!list_empty(&fl->fl_block))
168 panic("Attempting to free lock with active block list");
169
170 if (!list_empty(&fl->fl_link))
171 panic("Attempting to free lock on active lock list");
172
173 kmem_cache_free(filelock_cache, fl);
174}
175
176void locks_init_lock(struct file_lock *fl)
177{
178 INIT_LIST_HEAD(&fl->fl_link);
179 INIT_LIST_HEAD(&fl->fl_block);
180 init_waitqueue_head(&fl->fl_wait);
181 fl->fl_next = NULL;
182 fl->fl_fasync = NULL;
183 fl->fl_owner = 0;
184 fl->fl_pid = 0;
185 fl->fl_file = NULL;
186 fl->fl_flags = 0;
187 fl->fl_type = 0;
188 fl->fl_start = fl->fl_end = 0;
189 fl->fl_notify = NULL;
190 fl->fl_insert = NULL;
191 fl->fl_remove = NULL;
192}
193
194
195
196
197
198static void init_once(void *foo, kmem_cache_t *cache, unsigned long flags)
199{
200 struct file_lock *lock = (struct file_lock *) foo;
201
202 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) !=
203 SLAB_CTOR_CONSTRUCTOR)
204 return;
205
206 locks_init_lock(lock);
207}
208
209
210
211
212void locks_copy_lock(struct file_lock *new, struct file_lock *fl)
213{
214 new->fl_owner = fl->fl_owner;
215 new->fl_pid = fl->fl_pid;
216 new->fl_file = fl->fl_file;
217 new->fl_flags = fl->fl_flags;
218 new->fl_type = fl->fl_type;
219 new->fl_start = fl->fl_start;
220 new->fl_end = fl->fl_end;
221 new->fl_notify = fl->fl_notify;
222 new->fl_insert = fl->fl_insert;
223 new->fl_remove = fl->fl_remove;
224 new->fl_u = fl->fl_u;
225}
226
227static inline int flock_translate_cmd(int cmd) {
228 if (cmd & LOCK_MAND)
229 return cmd & (LOCK_MAND | LOCK_RW);
230 switch (cmd &~ LOCK_NB) {
231 case LOCK_SH:
232 return F_RDLCK;
233 case LOCK_EX:
234 return F_WRLCK;
235 case LOCK_UN:
236 return F_UNLCK;
237 }
238 return -EINVAL;
239}
240
241
242static int flock_make_lock(struct file *filp,
243 struct file_lock **lock, unsigned int cmd)
244{
245 struct file_lock *fl;
246 int type = flock_translate_cmd(cmd);
247 if (type < 0)
248 return type;
249
250 fl = locks_alloc_lock(1);
251 if (fl == NULL)
252 return -ENOMEM;
253
254 fl->fl_file = filp;
255 fl->fl_pid = current->pid;
256 fl->fl_flags = FL_FLOCK;
257 fl->fl_type = type;
258 fl->fl_end = OFFSET_MAX;
259
260 *lock = fl;
261 return 0;
262}
263
264static int assign_type(struct file_lock *fl, int type)
265{
266 switch (type) {
267 case F_RDLCK:
268 case F_WRLCK:
269 case F_UNLCK:
270 fl->fl_type = type;
271 break;
272 default:
273 return -EINVAL;
274 }
275 return 0;
276}
277
278
279
280
281static int flock_to_posix_lock(struct file *filp, struct file_lock *fl,
282 struct flock *l)
283{
284 off_t start, end;
285
286 switch (l->l_whence) {
287 case 0:
288 start = 0;
289 break;
290 case 1:
291 start = filp->f_pos;
292 break;
293 case 2:
294 start = filp->f_dentry->d_inode->i_size;
295 break;
296 default:
297 return -EINVAL;
298 }
299
300 if (((start += l->l_start) < 0) || (l->l_len < 0))
301 return -EINVAL;
302 end = start + l->l_len - 1;
303 if (l->l_len > 0 && end < 0)
304 return -EOVERFLOW;
305 fl->fl_start = start;
306 fl->fl_end = end;
307 if (l->l_len == 0)
308 fl->fl_end = OFFSET_MAX;
309
310 fl->fl_owner = current->files;
311 fl->fl_pid = current->pid;
312 fl->fl_file = filp;
313 fl->fl_flags = FL_POSIX;
314 fl->fl_notify = NULL;
315 fl->fl_insert = NULL;
316 fl->fl_remove = NULL;
317
318 return assign_type(fl, l->l_type);
319}
320
321#if BITS_PER_LONG == 32
322static int flock64_to_posix_lock(struct file *filp, struct file_lock *fl,
323 struct flock64 *l)
324{
325 loff_t start;
326
327 switch (l->l_whence) {
328 case 0:
329 start = 0;
330 break;
331 case 1:
332 start = filp->f_pos;
333 break;
334 case 2:
335 start = filp->f_dentry->d_inode->i_size;
336 break;
337 default:
338 return -EINVAL;
339 }
340
341 if (((start += l->l_start) < 0) || (l->l_len < 0))
342 return -EINVAL;
343 fl->fl_end = start + l->l_len - 1;
344 if (l->l_len > 0 && fl->fl_end < 0)
345 return -EOVERFLOW;
346 fl->fl_start = start;
347 if (l->l_len == 0)
348 fl->fl_end = OFFSET_MAX;
349
350 fl->fl_owner = current->files;
351 fl->fl_pid = current->pid;
352 fl->fl_file = filp;
353 fl->fl_flags = FL_POSIX;
354 fl->fl_notify = NULL;
355 fl->fl_insert = NULL;
356 fl->fl_remove = NULL;
357
358 switch (l->l_type) {
359 case F_RDLCK:
360 case F_WRLCK:
361 case F_UNLCK:
362 fl->fl_type = l->l_type;
363 break;
364 default:
365 return -EINVAL;
366 }
367
368 return (0);
369}
370#endif
371
372
373static int lease_alloc(struct file *filp, int type, struct file_lock **flp)
374{
375 struct file_lock *fl = locks_alloc_lock(1);
376 if (fl == NULL)
377 return -ENOMEM;
378
379 fl->fl_owner = current->files;
380 fl->fl_pid = current->pid;
381
382 fl->fl_file = filp;
383 fl->fl_flags = FL_LEASE;
384 if (assign_type(fl, type) != 0) {
385 locks_free_lock(fl);
386 return -EINVAL;
387 }
388 fl->fl_start = 0;
389 fl->fl_end = OFFSET_MAX;
390 fl->fl_notify = NULL;
391 fl->fl_insert = NULL;
392 fl->fl_remove = NULL;
393
394 *flp = fl;
395 return 0;
396}
397
398
399
400static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2)
401{
402 return ((fl1->fl_end >= fl2->fl_start) &&
403 (fl2->fl_end >= fl1->fl_start));
404}
405
406
407
408
409
410static inline int
411posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
412{
413 return (fl1->fl_owner == fl2->fl_owner) &&
414 (fl1->fl_pid == fl2->fl_pid);
415}
416
417
418
419
420static void locks_delete_block(struct file_lock *waiter)
421{
422 list_del_init(&waiter->fl_block);
423 list_del_init(&waiter->fl_link);
424 waiter->fl_next = NULL;
425}
426
427
428
429
430
431
432static void locks_insert_block(struct file_lock *blocker,
433 struct file_lock *waiter)
434{
435 if (!list_empty(&waiter->fl_block)) {
436 printk(KERN_ERR "locks_insert_block: removing duplicated lock "
437 "(pid=%d %Ld-%Ld type=%d)\n", waiter->fl_pid,
438 waiter->fl_start, waiter->fl_end, waiter->fl_type);
439 locks_delete_block(waiter);
440 }
441 list_add_tail(&waiter->fl_block, &blocker->fl_block);
442 waiter->fl_next = blocker;
443 list_add(&waiter->fl_link, &blocked_list);
444}
445
446
447
448
449
450static void locks_wake_up_blocks(struct file_lock *blocker)
451{
452 while (!list_empty(&blocker->fl_block)) {
453 struct file_lock *waiter = list_entry(blocker->fl_block.next,
454 struct file_lock, fl_block);
455 locks_delete_block(waiter);
456 if (waiter->fl_notify)
457 waiter->fl_notify(waiter);
458 else
459 wake_up(&waiter->fl_wait);
460 }
461}
462
463
464
465
466static void locks_insert_lock(struct file_lock **pos, struct file_lock *fl)
467{
468 list_add(&fl->fl_link, &file_lock_list);
469
470
471 fl->fl_next = *pos;
472 *pos = fl;
473
474 if (fl->fl_insert)
475 fl->fl_insert(fl);
476}
477
478
479
480
481
482
483
484static void locks_delete_lock(struct file_lock **thisfl_p)
485{
486 struct file_lock *fl = *thisfl_p;
487
488 *thisfl_p = fl->fl_next;
489 fl->fl_next = NULL;
490 list_del_init(&fl->fl_link);
491
492 fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
493 if (fl->fl_fasync != NULL) {
494 printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
495 fl->fl_fasync = NULL;
496 }
497
498 if (fl->fl_remove)
499 fl->fl_remove(fl);
500
501 locks_wake_up_blocks(fl);
502 locks_free_lock(fl);
503}
504
505
506
507
508static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
509{
510 switch (caller_fl->fl_type) {
511 case F_RDLCK:
512 return (sys_fl->fl_type == F_WRLCK);
513
514 case F_WRLCK:
515 return (1);
516
517 default:
518 printk(KERN_ERR "locks_conflict(): impossible lock type - %d\n",
519 caller_fl->fl_type);
520 break;
521 }
522 return (0);
523}
524
525
526
527
528static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
529{
530
531
532
533 if (!IS_POSIX(sys_fl) || posix_same_owner(caller_fl, sys_fl))
534 return (0);
535
536
537 if (!locks_overlap(caller_fl, sys_fl))
538 return 0;
539
540 return (locks_conflict(caller_fl, sys_fl));
541}
542
543
544
545
546static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
547{
548
549
550
551 if (!IS_FLOCK(sys_fl) || (caller_fl->fl_file == sys_fl->fl_file))
552 return (0);
553 if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND))
554 return 0;
555
556 return (locks_conflict(caller_fl, sys_fl));
557}
558
559static int interruptible_sleep_on_locked(wait_queue_head_t *fl_wait, int timeout)
560{
561 int result = 0;
562 DECLARE_WAITQUEUE(wait, current);
563
564 current->state = TASK_INTERRUPTIBLE;
565 add_wait_queue(fl_wait, &wait);
566 if (timeout == 0)
567 schedule();
568 else
569 result = schedule_timeout(timeout);
570 if (signal_pending(current))
571 result = -ERESTARTSYS;
572 remove_wait_queue(fl_wait, &wait);
573 current->state = TASK_RUNNING;
574 return result;
575}
576
577static int locks_block_on_timeout(struct file_lock *blocker, struct file_lock *waiter, int time)
578{
579 int result;
580 locks_insert_block(blocker, waiter);
581 result = interruptible_sleep_on_locked(&waiter->fl_wait, time);
582 locks_delete_block(waiter);
583 return result;
584}
585
586struct file_lock *
587posix_test_lock(struct file *filp, struct file_lock *fl)
588{
589 struct file_lock *cfl;
590
591 lock_kernel();
592 for (cfl = filp->f_dentry->d_inode->i_flock; cfl; cfl = cfl->fl_next) {
593 if (!IS_POSIX(cfl))
594 continue;
595 if (posix_locks_conflict(cfl, fl))
596 break;
597 }
598 unlock_kernel();
599
600 return (cfl);
601}
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617int posix_locks_deadlock(struct file_lock *caller_fl,
618 struct file_lock *block_fl)
619{
620 struct list_head *tmp;
621 fl_owner_t caller_owner, blocked_owner;
622 unsigned int caller_pid, blocked_pid;
623
624 caller_owner = caller_fl->fl_owner;
625 caller_pid = caller_fl->fl_pid;
626 blocked_owner = block_fl->fl_owner;
627 blocked_pid = block_fl->fl_pid;
628
629next_task:
630 if (caller_owner == blocked_owner && caller_pid == blocked_pid)
631 return 1;
632 list_for_each(tmp, &blocked_list) {
633 struct file_lock *fl = list_entry(tmp, struct file_lock, fl_link);
634 if ((fl->fl_owner == blocked_owner)
635 && (fl->fl_pid == blocked_pid)) {
636 fl = fl->fl_next;
637 blocked_owner = fl->fl_owner;
638 blocked_pid = fl->fl_pid;
639 goto next_task;
640 }
641 }
642 return 0;
643}
644
645int locks_mandatory_locked(struct inode *inode)
646{
647 fl_owner_t owner = current->files;
648 struct file_lock *fl;
649
650
651
652
653 lock_kernel();
654 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
655 if (!IS_POSIX(fl))
656 continue;
657 if (fl->fl_owner != owner)
658 break;
659 }
660 unlock_kernel();
661 return fl ? -EAGAIN : 0;
662}
663
664int locks_mandatory_area(int read_write, struct inode *inode,
665 struct file *filp, loff_t offset,
666 size_t count)
667{
668 struct file_lock fl;
669 int error;
670
671 fl.fl_owner = current->files;
672 fl.fl_pid = current->pid;
673 fl.fl_file = filp;
674 fl.fl_flags = FL_POSIX | FL_ACCESS | FL_SLEEP;
675 fl.fl_type = (read_write == FLOCK_VERIFY_WRITE) ? F_WRLCK : F_RDLCK;
676 fl.fl_start = offset;
677 fl.fl_end = offset + count - 1;
678
679 for (;;) {
680 error = posix_lock_file(filp, &fl);
681 if (error != -EAGAIN)
682 break;
683 error = wait_event_interruptible(fl.fl_wait, !fl.fl_next);
684 if (!error) {
685
686
687
688
689 if ((inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID)
690 continue;
691 }
692
693 lock_kernel();
694 locks_delete_block(&fl);
695 unlock_kernel();
696 break;
697 }
698
699 return error;
700}
701
702
703
704
705
706static int flock_lock_file(struct file *filp, struct file_lock *new_fl)
707{
708 struct file_lock **before;
709 struct inode * inode = filp->f_dentry->d_inode;
710 int error = 0;
711 int found = 0;
712
713 lock_kernel();
714 for_each_lock(inode, before) {
715 struct file_lock *fl = *before;
716 if (IS_POSIX(fl))
717 break;
718 if (IS_LEASE(fl))
719 continue;
720 if (filp != fl->fl_file)
721 continue;
722 if (new_fl->fl_type == fl->fl_type)
723 goto out;
724 found = 1;
725 locks_delete_lock(before);
726 break;
727 }
728 unlock_kernel();
729
730 if (found)
731 yield();
732
733 if (new_fl->fl_type == F_UNLCK)
734 return 0;
735
736 lock_kernel();
737 for_each_lock(inode, before) {
738 struct file_lock *fl = *before;
739 if (IS_POSIX(fl))
740 break;
741 if (IS_LEASE(fl))
742 continue;
743 if (!flock_locks_conflict(new_fl, fl))
744 continue;
745 error = -EAGAIN;
746 if (new_fl->fl_flags & FL_SLEEP) {
747 locks_insert_block(fl, new_fl);
748 }
749 goto out;
750 }
751 locks_insert_lock(&inode->i_flock, new_fl);
752 error = 0;
753
754out:
755 unlock_kernel();
756 return error;
757}
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777int posix_lock_file(struct file *filp, struct file_lock *request)
778{
779 struct file_lock *fl;
780 struct file_lock *new_fl, *new_fl2;
781 struct file_lock *left = NULL;
782 struct file_lock *right = NULL;
783 struct file_lock **before;
784 struct inode * inode = filp->f_dentry->d_inode;
785 int error, added = 0;
786
787
788
789
790
791 new_fl = locks_alloc_lock(0);
792 new_fl2 = locks_alloc_lock(0);
793 error = -ENOLCK;
794 if (!(new_fl && new_fl2))
795 goto out_nolock;
796
797 lock_kernel();
798 if (request->fl_type != F_UNLCK) {
799 for_each_lock(inode, before) {
800 struct file_lock *fl = *before;
801 if (!IS_POSIX(fl))
802 continue;
803 if (!posix_locks_conflict(request, fl))
804 continue;
805 error = -EAGAIN;
806 if (!(request->fl_flags & FL_SLEEP))
807 goto out;
808 error = -EDEADLK;
809 if (posix_locks_deadlock(request, fl))
810 goto out;
811 error = -EAGAIN;
812 locks_insert_block(fl, request);
813 goto out;
814 }
815 }
816
817
818 if (request->fl_flags & FL_ACCESS)
819 goto out;
820
821
822
823
824
825
826
827
828 before = &inode->i_flock;
829
830
831 while ((fl = *before) && (!IS_POSIX(fl) ||
832 !posix_same_owner(request, fl))) {
833 before = &fl->fl_next;
834 }
835
836
837 while ((fl = *before) && posix_same_owner(request, fl)) {
838
839
840 if (request->fl_type == fl->fl_type) {
841 if (fl->fl_end < request->fl_start - 1)
842 goto next_lock;
843
844
845
846 if (fl->fl_start > request->fl_end + 1)
847 break;
848
849
850
851
852
853
854 if (fl->fl_start > request->fl_start)
855 fl->fl_start = request->fl_start;
856 else
857 request->fl_start = fl->fl_start;
858 if (fl->fl_end < request->fl_end)
859 fl->fl_end = request->fl_end;
860 else
861 request->fl_end = fl->fl_end;
862 if (added) {
863 locks_delete_lock(before);
864 continue;
865 }
866 request = fl;
867 added = 1;
868 }
869 else {
870
871
872
873 if (fl->fl_end < request->fl_start)
874 goto next_lock;
875 if (fl->fl_start > request->fl_end)
876 break;
877 if (request->fl_type == F_UNLCK)
878 added = 1;
879 if (fl->fl_start < request->fl_start)
880 left = fl;
881
882
883
884 if (fl->fl_end > request->fl_end) {
885 right = fl;
886 break;
887 }
888 if (fl->fl_start >= request->fl_start) {
889
890
891
892 if (added) {
893 locks_delete_lock(before);
894 continue;
895 }
896
897
898
899
900
901 locks_wake_up_blocks(fl);
902 fl->fl_start = request->fl_start;
903 fl->fl_end = request->fl_end;
904 fl->fl_type = request->fl_type;
905 fl->fl_u = request->fl_u;
906 request = fl;
907 added = 1;
908 }
909 }
910
911
912 next_lock:
913 before = &fl->fl_next;
914 }
915
916 error = 0;
917 if (!added) {
918 if (request->fl_type == F_UNLCK)
919 goto out;
920 locks_copy_lock(new_fl, request);
921 locks_insert_lock(before, new_fl);
922 new_fl = NULL;
923 }
924 if (right) {
925 if (left == right) {
926
927
928
929 left = new_fl2;
930 new_fl2 = NULL;
931 locks_copy_lock(left, right);
932 locks_insert_lock(before, left);
933 }
934 right->fl_start = request->fl_end + 1;
935 locks_wake_up_blocks(right);
936 }
937 if (left) {
938 left->fl_end = request->fl_start - 1;
939 locks_wake_up_blocks(left);
940 }
941out:
942 unlock_kernel();
943out_nolock:
944
945
946
947 if (new_fl)
948 locks_free_lock(new_fl);
949 if (new_fl2)
950 locks_free_lock(new_fl2);
951 return error;
952}
953
954
955static int lease_modify(struct file_lock **before, int arg)
956{
957 struct file_lock *fl = *before;
958 int error = assign_type(fl, arg);
959
960 if (error)
961 return error;
962 locks_wake_up_blocks(fl);
963 if (arg == F_UNLCK) {
964 struct file *filp = fl->fl_file;
965
966 f_delown(filp);
967 filp->f_owner.signum = 0;
968 locks_delete_lock(before);
969 }
970 return 0;
971}
972
973static void time_out_leases(struct inode *inode)
974{
975 struct file_lock **before;
976 struct file_lock *fl;
977
978 before = &inode->i_flock;
979 while ((fl = *before) && IS_LEASE(fl) && (fl->fl_type & F_INPROGRESS)) {
980 if ((fl->fl_break_time == 0)
981 || time_before(jiffies, fl->fl_break_time)) {
982 before = &fl->fl_next;
983 continue;
984 }
985 printk(KERN_INFO "lease broken - owner pid = %d\n", fl->fl_pid);
986 lease_modify(before, fl->fl_type & ~F_INPROGRESS);
987 if (fl == *before)
988 before = &fl->fl_next;
989 }
990}
991
992
993
994
995
996
997
998
999
1000
1001
1002int __get_lease(struct inode *inode, unsigned int mode)
1003{
1004 int error = 0, future;
1005 struct file_lock *new_fl, *flock;
1006 struct file_lock *fl;
1007 int alloc_err;
1008 unsigned long break_time;
1009 int i_have_this_lease = 0;
1010
1011 alloc_err = lease_alloc(NULL, mode & FMODE_WRITE ? F_WRLCK : F_RDLCK,
1012 &new_fl);
1013
1014 lock_kernel();
1015
1016 time_out_leases(inode);
1017
1018 flock = inode->i_flock;
1019 if ((flock == NULL) || !IS_LEASE(flock))
1020 goto out;
1021
1022 for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next)
1023 if (fl->fl_owner == current->files)
1024 i_have_this_lease = 1;
1025
1026 if (mode & FMODE_WRITE) {
1027
1028 future = F_UNLCK | F_INPROGRESS;
1029 } else if (flock->fl_type & F_INPROGRESS) {
1030
1031 future = flock->fl_type;
1032 } else if (flock->fl_type & F_WRLCK) {
1033
1034 future = F_RDLCK | F_INPROGRESS;
1035 } else {
1036
1037 goto out;
1038 }
1039
1040 if (alloc_err && !i_have_this_lease && ((mode & O_NONBLOCK) == 0)) {
1041 error = alloc_err;
1042 goto out;
1043 }
1044
1045 break_time = 0;
1046 if (lease_break_time > 0) {
1047 break_time = jiffies + lease_break_time * HZ;
1048 if (break_time == 0)
1049 break_time++;
1050 }
1051
1052 for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
1053 if (fl->fl_type != future) {
1054 fl->fl_type = future;
1055 fl->fl_break_time = break_time;
1056 kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG);
1057 }
1058 }
1059
1060 if (i_have_this_lease || (mode & O_NONBLOCK)) {
1061 error = -EWOULDBLOCK;
1062 goto out;
1063 }
1064
1065restart:
1066 break_time = flock->fl_break_time;
1067 if (break_time != 0) {
1068 break_time -= jiffies;
1069 if (break_time == 0)
1070 break_time++;
1071 }
1072 error = locks_block_on_timeout(flock, new_fl, break_time);
1073 if (error >= 0) {
1074 if (error == 0)
1075 time_out_leases(inode);
1076
1077 for (flock = inode->i_flock; flock && IS_LEASE(flock);
1078 flock = flock->fl_next) {
1079 if (flock->fl_type & F_INPROGRESS)
1080 goto restart;
1081 }
1082 error = 0;
1083 }
1084
1085out:
1086 unlock_kernel();
1087 if (!alloc_err)
1088 locks_free_lock(new_fl);
1089 return error;
1090}
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100time_t lease_get_mtime(struct inode *inode)
1101{
1102 struct file_lock *flock = inode->i_flock;
1103 if (flock && IS_LEASE(flock) && (flock->fl_type & F_WRLCK))
1104 return CURRENT_TIME;
1105 return inode->i_mtime;
1106}
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131int fcntl_getlease(struct file *filp)
1132{
1133 struct file_lock *fl;
1134 int type = F_UNLCK;
1135
1136 lock_kernel();
1137 time_out_leases(filp->f_dentry->d_inode);
1138 for (fl = filp->f_dentry->d_inode->i_flock; fl && IS_LEASE(fl);
1139 fl = fl->fl_next) {
1140 if (fl->fl_file == filp) {
1141 type = fl->fl_type & ~F_INPROGRESS;
1142 break;
1143 }
1144 }
1145 unlock_kernel();
1146 return type;
1147}
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159int fcntl_setlease(unsigned int fd, struct file *filp, long arg)
1160{
1161 struct file_lock *fl, **before, **my_before = NULL;
1162 struct dentry *dentry;
1163 struct inode *inode;
1164 int error, rdlease_count = 0, wrlease_count = 0;
1165
1166 dentry = filp->f_dentry;
1167 inode = dentry->d_inode;
1168
1169 if ((current->fsuid != inode->i_uid) && !capable(CAP_LEASE))
1170 return -EACCES;
1171 if (!S_ISREG(inode->i_mode))
1172 return -EINVAL;
1173 error = security_ops->file_lock(filp, arg);
1174 if (error)
1175 return error;
1176
1177 lock_kernel();
1178
1179 time_out_leases(inode);
1180
1181
1182
1183
1184 error = -EAGAIN;
1185 if ((arg == F_WRLCK)
1186 && ((atomic_read(&dentry->d_count) > 1)
1187 || (atomic_read(&inode->i_count) > 1)))
1188 goto out_unlock;
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198 for (before = &inode->i_flock;
1199 ((fl = *before) != NULL) && IS_LEASE(fl);
1200 before = &fl->fl_next) {
1201 if (fl->fl_file == filp)
1202 my_before = before;
1203 else if (fl->fl_type == (F_INPROGRESS | F_UNLCK))
1204
1205
1206
1207
1208
1209 wrlease_count++;
1210 else
1211 rdlease_count++;
1212 }
1213
1214 if ((arg == F_RDLCK && (wrlease_count > 0)) ||
1215 (arg == F_WRLCK && ((rdlease_count + wrlease_count) > 0)))
1216 goto out_unlock;
1217
1218 if (my_before != NULL) {
1219 error = lease_modify(my_before, arg);
1220 goto out_unlock;
1221 }
1222
1223 error = 0;
1224 if (arg == F_UNLCK)
1225 goto out_unlock;
1226
1227 error = -EINVAL;
1228 if (!leases_enable)
1229 goto out_unlock;
1230
1231 error = lease_alloc(filp, arg, &fl);
1232 if (error)
1233 goto out_unlock;
1234
1235 error = fasync_helper(fd, filp, 1, &fl->fl_fasync);
1236 if (error < 0) {
1237 locks_free_lock(fl);
1238 goto out_unlock;
1239 }
1240 fl->fl_next = *before;
1241 *before = fl;
1242 list_add(&fl->fl_link, &file_lock_list);
1243
1244 error = f_setown(filp, current->pid, 1);
1245out_unlock:
1246 unlock_kernel();
1247 return error;
1248}
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269asmlinkage long sys_flock(unsigned int fd, unsigned int cmd)
1270{
1271 struct file *filp;
1272 struct file_lock *lock;
1273 int error;
1274
1275 error = -EBADF;
1276 filp = fget(fd);
1277 if (!filp)
1278 goto out;
1279
1280 if ((cmd != LOCK_UN) && !(cmd & LOCK_MAND) && !(filp->f_mode & 3))
1281 goto out_putf;
1282
1283 error = flock_make_lock(filp, &lock, cmd);
1284 if (error)
1285 goto out_putf;
1286
1287 error = security_ops->file_lock(filp, cmd);
1288 if (error)
1289 goto out_free;
1290
1291 for (;;) {
1292 error = flock_lock_file(filp, lock);
1293 if ((error != -EAGAIN) || (cmd & LOCK_NB))
1294 break;
1295 error = wait_event_interruptible(lock->fl_wait, !lock->fl_next);
1296 if (!error)
1297 continue;
1298
1299 lock_kernel();
1300 locks_delete_block(lock);
1301 unlock_kernel();
1302 break;
1303 }
1304
1305 out_free:
1306 if (error) {
1307 locks_free_lock(lock);
1308 }
1309
1310 out_putf:
1311 fput(filp);
1312 out:
1313 return error;
1314}
1315
1316
1317
1318
1319int fcntl_getlk(struct file *filp, struct flock *l)
1320{
1321 struct file_lock *fl, file_lock;
1322 struct flock flock;
1323 int error;
1324
1325 error = -EFAULT;
1326 if (copy_from_user(&flock, l, sizeof(flock)))
1327 goto out;
1328 error = -EINVAL;
1329 if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
1330 goto out;
1331
1332 error = flock_to_posix_lock(filp, &file_lock, &flock);
1333 if (error)
1334 goto out;
1335
1336 if (filp->f_op && filp->f_op->lock) {
1337 error = filp->f_op->lock(filp, F_GETLK, &file_lock);
1338 if (error < 0)
1339 goto out;
1340 else if (error == LOCK_USE_CLNT)
1341
1342 fl = posix_test_lock(filp, &file_lock);
1343 else
1344 fl = (file_lock.fl_type == F_UNLCK ? NULL : &file_lock);
1345 } else {
1346 fl = posix_test_lock(filp, &file_lock);
1347 }
1348
1349 flock.l_type = F_UNLCK;
1350 if (fl != NULL) {
1351 flock.l_pid = fl->fl_pid;
1352#if BITS_PER_LONG == 32
1353
1354
1355
1356
1357 error = -EOVERFLOW;
1358 if (fl->fl_start > OFFT_OFFSET_MAX)
1359 goto out;
1360 if ((fl->fl_end != OFFSET_MAX)
1361 && (fl->fl_end > OFFT_OFFSET_MAX))
1362 goto out;
1363#endif
1364 flock.l_start = fl->fl_start;
1365 flock.l_len = fl->fl_end == OFFSET_MAX ? 0 :
1366 fl->fl_end - fl->fl_start + 1;
1367 flock.l_whence = 0;
1368 flock.l_type = fl->fl_type;
1369 }
1370 error = -EFAULT;
1371 if (!copy_to_user(l, &flock, sizeof(flock)))
1372 error = 0;
1373
1374out:
1375 return error;
1376}
1377
1378
1379
1380
1381int fcntl_setlk(struct file *filp, unsigned int cmd, struct flock *l)
1382{
1383 struct file_lock *file_lock = locks_alloc_lock(0);
1384 struct flock flock;
1385 struct inode *inode;
1386 int error;
1387
1388 if (file_lock == NULL)
1389 return -ENOLCK;
1390
1391
1392
1393
1394 error = -EFAULT;
1395 if (copy_from_user(&flock, l, sizeof(flock)))
1396 goto out;
1397
1398 inode = filp->f_dentry->d_inode;
1399
1400
1401
1402
1403 if (IS_MANDLOCK(inode) &&
1404 (inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID) {
1405 struct address_space *mapping = inode->i_mapping;
1406
1407 if (!list_empty(&mapping->i_mmap_shared)) {
1408 error = -EAGAIN;
1409 goto out;
1410 }
1411 }
1412
1413 error = flock_to_posix_lock(filp, file_lock, &flock);
1414 if (error)
1415 goto out;
1416 if (cmd == F_SETLKW) {
1417 file_lock->fl_flags |= FL_SLEEP;
1418 }
1419
1420 error = -EBADF;
1421 switch (flock.l_type) {
1422 case F_RDLCK:
1423 if (!(filp->f_mode & FMODE_READ))
1424 goto out;
1425 break;
1426 case F_WRLCK:
1427 if (!(filp->f_mode & FMODE_WRITE))
1428 goto out;
1429 break;
1430 case F_UNLCK:
1431 break;
1432 default:
1433 error = -EINVAL;
1434 goto out;
1435 }
1436
1437 error = security_ops->file_lock(filp, file_lock->fl_type);
1438 if (error)
1439 goto out;
1440
1441 if (filp->f_op && filp->f_op->lock != NULL) {
1442 error = filp->f_op->lock(filp, cmd, file_lock);
1443 if (error < 0)
1444 goto out;
1445 }
1446
1447 for (;;) {
1448 error = posix_lock_file(filp, file_lock);
1449 if ((error != -EAGAIN) || (cmd == F_SETLK))
1450 break;
1451 error = wait_event_interruptible(file_lock->fl_wait,
1452 !file_lock->fl_next);
1453 if (!error)
1454 continue;
1455
1456 lock_kernel();
1457 locks_delete_block(file_lock);
1458 unlock_kernel();
1459 break;
1460 }
1461
1462out:
1463 if (error) {
1464 locks_free_lock(file_lock);
1465 }
1466 return error;
1467}
1468
1469#if BITS_PER_LONG == 32
1470
1471
1472
1473int fcntl_getlk64(struct file *filp, struct flock64 *l)
1474{
1475 struct file_lock *fl, file_lock;
1476 struct flock64 flock;
1477 int error;
1478
1479 error = -EFAULT;
1480 if (copy_from_user(&flock, l, sizeof(flock)))
1481 goto out;
1482 error = -EINVAL;
1483 if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
1484 goto out;
1485
1486 error = flock64_to_posix_lock(filp, &file_lock, &flock);
1487 if (error)
1488 goto out;
1489
1490 if (filp->f_op && filp->f_op->lock) {
1491 error = filp->f_op->lock(filp, F_GETLK, &file_lock);
1492 if (error < 0)
1493 goto out;
1494 else if (error == LOCK_USE_CLNT)
1495
1496 fl = posix_test_lock(filp, &file_lock);
1497 else
1498 fl = (file_lock.fl_type == F_UNLCK ? NULL : &file_lock);
1499 } else {
1500 fl = posix_test_lock(filp, &file_lock);
1501 }
1502
1503 flock.l_type = F_UNLCK;
1504 if (fl != NULL) {
1505 flock.l_pid = fl->fl_pid;
1506 flock.l_start = fl->fl_start;
1507 flock.l_len = fl->fl_end == OFFSET_MAX ? 0 :
1508 fl->fl_end - fl->fl_start + 1;
1509 flock.l_whence = 0;
1510 flock.l_type = fl->fl_type;
1511 }
1512 error = -EFAULT;
1513 if (!copy_to_user(l, &flock, sizeof(flock)))
1514 error = 0;
1515
1516out:
1517 return error;
1518}
1519
1520
1521
1522
1523int fcntl_setlk64(struct file *filp, unsigned int cmd, struct flock64 *l)
1524{
1525 struct file_lock *file_lock = locks_alloc_lock(0);
1526 struct flock64 flock;
1527 struct inode *inode;
1528 int error;
1529
1530 if (file_lock == NULL)
1531 return -ENOLCK;
1532
1533
1534
1535
1536 error = -EFAULT;
1537 if (copy_from_user(&flock, l, sizeof(flock)))
1538 goto out;
1539
1540 inode = filp->f_dentry->d_inode;
1541
1542
1543
1544
1545 if (IS_MANDLOCK(inode) &&
1546 (inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID) {
1547 struct address_space *mapping = inode->i_mapping;
1548
1549 if (!list_empty(&mapping->i_mmap_shared)) {
1550 error = -EAGAIN;
1551 goto out;
1552 }
1553 }
1554
1555 error = flock64_to_posix_lock(filp, file_lock, &flock);
1556 if (error)
1557 goto out;
1558 if (cmd == F_SETLKW64) {
1559 file_lock->fl_flags |= FL_SLEEP;
1560 }
1561
1562 error = -EBADF;
1563 switch (flock.l_type) {
1564 case F_RDLCK:
1565 if (!(filp->f_mode & FMODE_READ))
1566 goto out;
1567 break;
1568 case F_WRLCK:
1569 if (!(filp->f_mode & FMODE_WRITE))
1570 goto out;
1571 break;
1572 case F_UNLCK:
1573 break;
1574 default:
1575 error = -EINVAL;
1576 goto out;
1577 }
1578
1579 error = security_ops->file_lock(filp, file_lock->fl_type);
1580 if (error)
1581 goto out;
1582
1583 if (filp->f_op && filp->f_op->lock != NULL) {
1584 error = filp->f_op->lock(filp, cmd, file_lock);
1585 if (error < 0)
1586 goto out;
1587 }
1588
1589 for (;;) {
1590 error = posix_lock_file(filp, file_lock);
1591 if ((error != -EAGAIN) || (cmd == F_SETLK64))
1592 break;
1593 error = wait_event_interruptible(file_lock->fl_wait,
1594 !file_lock->fl_next);
1595 if (!error)
1596 continue;
1597
1598 lock_kernel();
1599 locks_delete_block(file_lock);
1600 unlock_kernel();
1601 break;
1602 }
1603
1604
1605out:
1606 if (error) {
1607 locks_free_lock(file_lock);
1608 }
1609 return error;
1610}
1611#endif
1612
1613
1614
1615
1616
1617
1618void locks_remove_posix(struct file *filp, fl_owner_t owner)
1619{
1620 struct file_lock lock;
1621
1622
1623
1624
1625
1626
1627 if (!filp->f_dentry->d_inode->i_flock)
1628 return;
1629
1630 lock.fl_type = F_UNLCK;
1631 lock.fl_flags = FL_POSIX;
1632 lock.fl_start = 0;
1633 lock.fl_end = OFFSET_MAX;
1634 lock.fl_owner = owner;
1635 lock.fl_pid = current->pid;
1636 lock.fl_file = filp;
1637
1638 if (filp->f_op && filp->f_op->lock != NULL) {
1639 filp->f_op->lock(filp, F_SETLK, &lock);
1640
1641 }
1642
1643 posix_lock_file(filp, &lock);
1644}
1645
1646
1647
1648
1649void locks_remove_flock(struct file *filp)
1650{
1651 struct inode * inode = filp->f_dentry->d_inode;
1652 struct file_lock *fl;
1653 struct file_lock **before;
1654
1655 if (!inode->i_flock)
1656 return;
1657
1658 lock_kernel();
1659 before = &inode->i_flock;
1660
1661 while ((fl = *before) != NULL) {
1662 if (fl->fl_file == filp) {
1663 if (IS_FLOCK(fl)) {
1664 locks_delete_lock(before);
1665 continue;
1666 }
1667 if (IS_LEASE(fl)) {
1668 lease_modify(before, F_UNLCK);
1669 continue;
1670 }
1671 }
1672 before = &fl->fl_next;
1673 }
1674 unlock_kernel();
1675}
1676
1677
1678
1679
1680
1681
1682
1683
1684void
1685posix_block_lock(struct file_lock *blocker, struct file_lock *waiter)
1686{
1687 locks_insert_block(blocker, waiter);
1688}
1689
1690
1691
1692
1693
1694
1695
1696void
1697posix_unblock_lock(struct file *filp, struct file_lock *waiter)
1698{
1699
1700
1701
1702
1703 lock_kernel();
1704 if (waiter->fl_next) {
1705 locks_delete_block(waiter);
1706 unlock_kernel();
1707 } else {
1708 unlock_kernel();
1709 waiter->fl_type = F_UNLCK;
1710 posix_lock_file(filp, waiter);
1711 }
1712}
1713
1714static void lock_get_status(char* out, struct file_lock *fl, int id, char *pfx)
1715{
1716 struct inode *inode = NULL;
1717
1718 if (fl->fl_file != NULL)
1719 inode = fl->fl_file->f_dentry->d_inode;
1720
1721 out += sprintf(out, "%d:%s ", id, pfx);
1722 if (IS_POSIX(fl)) {
1723 out += sprintf(out, "%6s %s ",
1724 (fl->fl_flags & FL_ACCESS) ? "ACCESS" : "POSIX ",
1725 (inode == NULL) ? "*NOINODE*" :
1726 (IS_MANDLOCK(inode) &&
1727 (inode->i_mode & (S_IXGRP | S_ISGID)) == S_ISGID) ?
1728 "MANDATORY" : "ADVISORY ");
1729 } else if (IS_FLOCK(fl)) {
1730 if (fl->fl_type & LOCK_MAND) {
1731 out += sprintf(out, "FLOCK MSNFS ");
1732 } else {
1733 out += sprintf(out, "FLOCK ADVISORY ");
1734 }
1735 } else if (IS_LEASE(fl)) {
1736 out += sprintf(out, "LEASE ");
1737 if (fl->fl_type & F_INPROGRESS)
1738 out += sprintf(out, "BREAKING ");
1739 else if (fl->fl_file)
1740 out += sprintf(out, "ACTIVE ");
1741 else
1742 out += sprintf(out, "BREAKER ");
1743 } else {
1744 out += sprintf(out, "UNKNOWN UNKNOWN ");
1745 }
1746 if (fl->fl_type & LOCK_MAND) {
1747 out += sprintf(out, "%s ",
1748 (fl->fl_type & LOCK_READ)
1749 ? (fl->fl_type & LOCK_WRITE) ? "RW " : "READ "
1750 : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE ");
1751 } else {
1752 out += sprintf(out, "%s ",
1753 (fl->fl_type & F_INPROGRESS)
1754 ? (fl->fl_type & F_UNLCK) ? "UNLCK" : "READ "
1755 : (fl->fl_type & F_WRLCK) ? "WRITE" : "READ ");
1756 }
1757#if WE_CAN_BREAK_LSLK_NOW
1758 if (inode) {
1759 out += sprintf(out, "%d %s:%ld ", fl->fl_pid,
1760 inode->i_sb->s_id, inode->i_ino);
1761 } else {
1762 out += sprintf(out, "%d <none>:0 ", fl->fl_pid);
1763 }
1764#else
1765
1766 out += sprintf(out, "%d %s:%ld ", fl->fl_pid,
1767 inode ? kdevname(to_kdev_t(inode->i_dev)) : "<none>",
1768 inode ? inode->i_ino : 0);
1769#endif
1770 if (IS_POSIX(fl)) {
1771 if (fl->fl_end == OFFSET_MAX)
1772 out += sprintf(out, "%Ld EOF\n", fl->fl_start);
1773 else
1774 out += sprintf(out, "%Ld %Ld\n", fl->fl_start,
1775 fl->fl_end);
1776 } else {
1777 out += sprintf(out, "0 EOF\n");
1778 }
1779}
1780
1781static void move_lock_status(char **p, off_t* pos, off_t offset)
1782{
1783 int len;
1784 len = strlen(*p);
1785 if(*pos >= offset) {
1786
1787 *p += len;
1788 *pos += len;
1789 return;
1790 }
1791 if(*pos+len > offset) {
1792
1793 int i = offset-*pos;
1794 memmove(*p,*p+i,len-i);
1795 *p += len-i;
1796 *pos += len;
1797 return;
1798 }
1799
1800 *pos += len;
1801}
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811int get_locks_status(char *buffer, char **start, off_t offset, int length)
1812{
1813 struct list_head *tmp;
1814 char *q = buffer;
1815 off_t pos = 0;
1816 int i = 0;
1817
1818 lock_kernel();
1819 list_for_each(tmp, &file_lock_list) {
1820 struct list_head *btmp;
1821 struct file_lock *fl = list_entry(tmp, struct file_lock, fl_link);
1822 lock_get_status(q, fl, ++i, "");
1823 move_lock_status(&q, &pos, offset);
1824
1825 if(pos >= offset+length)
1826 goto done;
1827
1828 list_for_each(btmp, &fl->fl_block) {
1829 struct file_lock *bfl = list_entry(btmp,
1830 struct file_lock, fl_block);
1831 lock_get_status(q, bfl, i, " ->");
1832 move_lock_status(&q, &pos, offset);
1833
1834 if(pos >= offset+length)
1835 goto done;
1836 }
1837 }
1838done:
1839 unlock_kernel();
1840 *start = buffer;
1841 if(q-buffer < length)
1842 return (q-buffer);
1843 return length;
1844}
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859int lock_may_read(struct inode *inode, loff_t start, unsigned long len)
1860{
1861 struct file_lock *fl;
1862 int result = 1;
1863 lock_kernel();
1864 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
1865 if (IS_POSIX(fl)) {
1866 if (fl->fl_type == F_RDLCK)
1867 continue;
1868 if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
1869 continue;
1870 } else if (IS_FLOCK(fl)) {
1871 if (!(fl->fl_type & LOCK_MAND))
1872 continue;
1873 if (fl->fl_type & LOCK_READ)
1874 continue;
1875 } else
1876 continue;
1877 result = 0;
1878 break;
1879 }
1880 unlock_kernel();
1881 return result;
1882}
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897int lock_may_write(struct inode *inode, loff_t start, unsigned long len)
1898{
1899 struct file_lock *fl;
1900 int result = 1;
1901 lock_kernel();
1902 for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
1903 if (IS_POSIX(fl)) {
1904 if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
1905 continue;
1906 } else if (IS_FLOCK(fl)) {
1907 if (!(fl->fl_type & LOCK_MAND))
1908 continue;
1909 if (fl->fl_type & LOCK_WRITE)
1910 continue;
1911 } else
1912 continue;
1913 result = 0;
1914 break;
1915 }
1916 unlock_kernel();
1917 return result;
1918}
1919
1920static int __init filelock_init(void)
1921{
1922 filelock_cache = kmem_cache_create("file_lock_cache",
1923 sizeof(struct file_lock), 0, 0, init_once, NULL);
1924 if (!filelock_cache)
1925 panic("cannot create file lock slab cache");
1926 return 0;
1927}
1928
1929module_init(filelock_init)
1930