Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / fs / fuse / inode.c
1 /*
2   FUSE: Filesystem in Userspace
3   Copyright (C) 2001-2006  Miklos Szeredi <miklos@szeredi.hu>
4
5   This program can be distributed under the terms of the GNU GPL.
6   See the file COPYING.
7 */
8
9 #include "fuse_i.h"
10
11 #include <linux/pagemap.h>
12 #include <linux/slab.h>
13 #include <linux/file.h>
14 #include <linux/seq_file.h>
15 #include <linux/init.h>
16 #include <linux/module.h>
17 #include <linux/parser.h>
18 #include <linux/statfs.h>
19 #include <linux/random.h>
20
21 MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
22 MODULE_DESCRIPTION("Filesystem in Userspace");
23 MODULE_LICENSE("GPL");
24
25 static kmem_cache_t *fuse_inode_cachep;
26 struct list_head fuse_conn_list;
27 DEFINE_MUTEX(fuse_mutex);
28
29 #define FUSE_SUPER_MAGIC 0x65735546
30
31 struct fuse_mount_data {
32         int fd;
33         unsigned rootmode;
34         unsigned user_id;
35         unsigned group_id;
36         unsigned fd_present : 1;
37         unsigned rootmode_present : 1;
38         unsigned user_id_present : 1;
39         unsigned group_id_present : 1;
40         unsigned flags;
41         unsigned max_read;
42 };
43
44 static struct inode *fuse_alloc_inode(struct super_block *sb)
45 {
46         struct inode *inode;
47         struct fuse_inode *fi;
48
49         inode = kmem_cache_alloc(fuse_inode_cachep, SLAB_KERNEL);
50         if (!inode)
51                 return NULL;
52
53         fi = get_fuse_inode(inode);
54         fi->i_time = 0;
55         fi->nodeid = 0;
56         fi->nlookup = 0;
57         fi->forget_req = fuse_request_alloc();
58         if (!fi->forget_req) {
59                 kmem_cache_free(fuse_inode_cachep, inode);
60                 return NULL;
61         }
62
63         return inode;
64 }
65
66 static void fuse_destroy_inode(struct inode *inode)
67 {
68         struct fuse_inode *fi = get_fuse_inode(inode);
69         if (fi->forget_req)
70                 fuse_request_free(fi->forget_req);
71         kmem_cache_free(fuse_inode_cachep, inode);
72 }
73
74 static void fuse_read_inode(struct inode *inode)
75 {
76         /* No op */
77 }
78
79 void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req,
80                       unsigned long nodeid, u64 nlookup)
81 {
82         struct fuse_forget_in *inarg = &req->misc.forget_in;
83         inarg->nlookup = nlookup;
84         req->in.h.opcode = FUSE_FORGET;
85         req->in.h.nodeid = nodeid;
86         req->in.numargs = 1;
87         req->in.args[0].size = sizeof(struct fuse_forget_in);
88         req->in.args[0].value = inarg;
89         request_send_noreply(fc, req);
90 }
91
92 static void fuse_clear_inode(struct inode *inode)
93 {
94         if (inode->i_sb->s_flags & MS_ACTIVE) {
95                 struct fuse_conn *fc = get_fuse_conn(inode);
96                 struct fuse_inode *fi = get_fuse_inode(inode);
97                 fuse_send_forget(fc, fi->forget_req, fi->nodeid, fi->nlookup);
98                 fi->forget_req = NULL;
99         }
100 }
101
102 static int fuse_remount_fs(struct super_block *sb, int *flags, char *data)
103 {
104         if (*flags & MS_MANDLOCK)
105                 return -EINVAL;
106
107         return 0;
108 }
109
110 void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr)
111 {
112         struct fuse_conn *fc = get_fuse_conn(inode);
113         if (S_ISREG(inode->i_mode) && i_size_read(inode) != attr->size)
114                 invalidate_inode_pages(inode->i_mapping);
115
116         inode->i_ino     = attr->ino;
117         inode->i_mode    = (inode->i_mode & S_IFMT) + (attr->mode & 07777);
118         inode->i_nlink   = attr->nlink;
119         inode->i_uid     = attr->uid;
120         inode->i_gid     = attr->gid;
121         spin_lock(&fc->lock);
122         i_size_write(inode, attr->size);
123         spin_unlock(&fc->lock);
124         inode->i_blocks  = attr->blocks;
125         inode->i_atime.tv_sec   = attr->atime;
126         inode->i_atime.tv_nsec  = attr->atimensec;
127         inode->i_mtime.tv_sec   = attr->mtime;
128         inode->i_mtime.tv_nsec  = attr->mtimensec;
129         inode->i_ctime.tv_sec   = attr->ctime;
130         inode->i_ctime.tv_nsec  = attr->ctimensec;
131 }
132
133 static void fuse_init_inode(struct inode *inode, struct fuse_attr *attr)
134 {
135         inode->i_mode = attr->mode & S_IFMT;
136         inode->i_size = attr->size;
137         if (S_ISREG(inode->i_mode)) {
138                 fuse_init_common(inode);
139                 fuse_init_file_inode(inode);
140         } else if (S_ISDIR(inode->i_mode))
141                 fuse_init_dir(inode);
142         else if (S_ISLNK(inode->i_mode))
143                 fuse_init_symlink(inode);
144         else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
145                  S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
146                 fuse_init_common(inode);
147                 init_special_inode(inode, inode->i_mode,
148                                    new_decode_dev(attr->rdev));
149         } else
150                 BUG();
151 }
152
153 static int fuse_inode_eq(struct inode *inode, void *_nodeidp)
154 {
155         unsigned long nodeid = *(unsigned long *) _nodeidp;
156         if (get_node_id(inode) == nodeid)
157                 return 1;
158         else
159                 return 0;
160 }
161
162 static int fuse_inode_set(struct inode *inode, void *_nodeidp)
163 {
164         unsigned long nodeid = *(unsigned long *) _nodeidp;
165         get_fuse_inode(inode)->nodeid = nodeid;
166         return 0;
167 }
168
169 struct inode *fuse_iget(struct super_block *sb, unsigned long nodeid,
170                         int generation, struct fuse_attr *attr)
171 {
172         struct inode *inode;
173         struct fuse_inode *fi;
174         struct fuse_conn *fc = get_fuse_conn_super(sb);
175         int retried = 0;
176
177  retry:
178         inode = iget5_locked(sb, nodeid, fuse_inode_eq, fuse_inode_set, &nodeid);
179         if (!inode)
180                 return NULL;
181
182         if ((inode->i_state & I_NEW)) {
183                 inode->i_flags |= S_NOATIME|S_NOCMTIME;
184                 inode->i_generation = generation;
185                 inode->i_data.backing_dev_info = &fc->bdi;
186                 fuse_init_inode(inode, attr);
187                 unlock_new_inode(inode);
188         } else if ((inode->i_mode ^ attr->mode) & S_IFMT) {
189                 BUG_ON(retried);
190                 /* Inode has changed type, any I/O on the old should fail */
191                 make_bad_inode(inode);
192                 iput(inode);
193                 retried = 1;
194                 goto retry;
195         }
196
197         fi = get_fuse_inode(inode);
198         fi->nlookup ++;
199         fuse_change_attributes(inode, attr);
200         return inode;
201 }
202
203 static void fuse_umount_begin(struct vfsmount *vfsmnt, int flags)
204 {
205         if (flags & MNT_FORCE)
206                 fuse_abort_conn(get_fuse_conn_super(vfsmnt->mnt_sb));
207 }
208
209 static void fuse_put_super(struct super_block *sb)
210 {
211         struct fuse_conn *fc = get_fuse_conn_super(sb);
212
213         spin_lock(&fc->lock);
214         fc->connected = 0;
215         fc->blocked = 0;
216         spin_unlock(&fc->lock);
217         /* Flush all readers on this fs */
218         kill_fasync(&fc->fasync, SIGIO, POLL_IN);
219         wake_up_all(&fc->waitq);
220         wake_up_all(&fc->blocked_waitq);
221         mutex_lock(&fuse_mutex);
222         list_del(&fc->entry);
223         fuse_ctl_remove_conn(fc);
224         mutex_unlock(&fuse_mutex);
225         fuse_conn_put(fc);
226 }
227
228 static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr)
229 {
230         stbuf->f_type    = FUSE_SUPER_MAGIC;
231         stbuf->f_bsize   = attr->bsize;
232         stbuf->f_frsize  = attr->frsize;
233         stbuf->f_blocks  = attr->blocks;
234         stbuf->f_bfree   = attr->bfree;
235         stbuf->f_bavail  = attr->bavail;
236         stbuf->f_files   = attr->files;
237         stbuf->f_ffree   = attr->ffree;
238         stbuf->f_namelen = attr->namelen;
239         /* fsid is left zero */
240 }
241
242 static int fuse_statfs(struct dentry *dentry, struct kstatfs *buf)
243 {
244         struct super_block *sb = dentry->d_sb;
245         struct fuse_conn *fc = get_fuse_conn_super(sb);
246         struct fuse_req *req;
247         struct fuse_statfs_out outarg;
248         int err;
249
250         req = fuse_get_req(fc);
251         if (IS_ERR(req))
252                 return PTR_ERR(req);
253
254         memset(&outarg, 0, sizeof(outarg));
255         req->in.numargs = 0;
256         req->in.h.opcode = FUSE_STATFS;
257         req->out.numargs = 1;
258         req->out.args[0].size =
259                 fc->minor < 4 ? FUSE_COMPAT_STATFS_SIZE : sizeof(outarg);
260         req->out.args[0].value = &outarg;
261         request_send(fc, req);
262         err = req->out.h.error;
263         if (!err)
264                 convert_fuse_statfs(buf, &outarg.st);
265         fuse_put_request(fc, req);
266         return err;
267 }
268
269 enum {
270         OPT_FD,
271         OPT_ROOTMODE,
272         OPT_USER_ID,
273         OPT_GROUP_ID,
274         OPT_DEFAULT_PERMISSIONS,
275         OPT_ALLOW_OTHER,
276         OPT_MAX_READ,
277         OPT_ERR
278 };
279
280 static match_table_t tokens = {
281         {OPT_FD,                        "fd=%u"},
282         {OPT_ROOTMODE,                  "rootmode=%o"},
283         {OPT_USER_ID,                   "user_id=%u"},
284         {OPT_GROUP_ID,                  "group_id=%u"},
285         {OPT_DEFAULT_PERMISSIONS,       "default_permissions"},
286         {OPT_ALLOW_OTHER,               "allow_other"},
287         {OPT_MAX_READ,                  "max_read=%u"},
288         {OPT_ERR,                       NULL}
289 };
290
291 static int parse_fuse_opt(char *opt, struct fuse_mount_data *d)
292 {
293         char *p;
294         memset(d, 0, sizeof(struct fuse_mount_data));
295         d->max_read = ~0;
296
297         while ((p = strsep(&opt, ",")) != NULL) {
298                 int token;
299                 int value;
300                 substring_t args[MAX_OPT_ARGS];
301                 if (!*p)
302                         continue;
303
304                 token = match_token(p, tokens, args);
305                 switch (token) {
306                 case OPT_FD:
307                         if (match_int(&args[0], &value))
308                                 return 0;
309                         d->fd = value;
310                         d->fd_present = 1;
311                         break;
312
313                 case OPT_ROOTMODE:
314                         if (match_octal(&args[0], &value))
315                                 return 0;
316                         d->rootmode = value;
317                         d->rootmode_present = 1;
318                         break;
319
320                 case OPT_USER_ID:
321                         if (match_int(&args[0], &value))
322                                 return 0;
323                         d->user_id = value;
324                         d->user_id_present = 1;
325                         break;
326
327                 case OPT_GROUP_ID:
328                         if (match_int(&args[0], &value))
329                                 return 0;
330                         d->group_id = value;
331                         d->group_id_present = 1;
332                         break;
333
334                 case OPT_DEFAULT_PERMISSIONS:
335                         d->flags |= FUSE_DEFAULT_PERMISSIONS;
336                         break;
337
338                 case OPT_ALLOW_OTHER:
339                         d->flags |= FUSE_ALLOW_OTHER;
340                         break;
341
342                 case OPT_MAX_READ:
343                         if (match_int(&args[0], &value))
344                                 return 0;
345                         d->max_read = value;
346                         break;
347
348                 default:
349                         return 0;
350                 }
351         }
352
353         if (!d->fd_present || !d->rootmode_present ||
354             !d->user_id_present || !d->group_id_present)
355                 return 0;
356
357         return 1;
358 }
359
360 static int fuse_show_options(struct seq_file *m, struct vfsmount *mnt)
361 {
362         struct fuse_conn *fc = get_fuse_conn_super(mnt->mnt_sb);
363
364         seq_printf(m, ",user_id=%u", fc->user_id);
365         seq_printf(m, ",group_id=%u", fc->group_id);
366         if (fc->flags & FUSE_DEFAULT_PERMISSIONS)
367                 seq_puts(m, ",default_permissions");
368         if (fc->flags & FUSE_ALLOW_OTHER)
369                 seq_puts(m, ",allow_other");
370         if (fc->max_read != ~0)
371                 seq_printf(m, ",max_read=%u", fc->max_read);
372         return 0;
373 }
374
375 static struct fuse_conn *new_conn(void)
376 {
377         struct fuse_conn *fc;
378
379         fc = kzalloc(sizeof(*fc), GFP_KERNEL);
380         if (fc) {
381                 spin_lock_init(&fc->lock);
382                 atomic_set(&fc->count, 1);
383                 init_waitqueue_head(&fc->waitq);
384                 init_waitqueue_head(&fc->blocked_waitq);
385                 INIT_LIST_HEAD(&fc->pending);
386                 INIT_LIST_HEAD(&fc->processing);
387                 INIT_LIST_HEAD(&fc->io);
388                 INIT_LIST_HEAD(&fc->interrupts);
389                 atomic_set(&fc->num_waiting, 0);
390                 fc->bdi.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
391                 fc->bdi.unplug_io_fn = default_unplug_io_fn;
392                 fc->reqctr = 0;
393                 fc->blocked = 1;
394                 get_random_bytes(&fc->scramble_key, sizeof(fc->scramble_key));
395         }
396         return fc;
397 }
398
399 void fuse_conn_put(struct fuse_conn *fc)
400 {
401         if (atomic_dec_and_test(&fc->count))
402                 kfree(fc);
403 }
404
405 struct fuse_conn *fuse_conn_get(struct fuse_conn *fc)
406 {
407         atomic_inc(&fc->count);
408         return fc;
409 }
410
411 static struct inode *get_root_inode(struct super_block *sb, unsigned mode)
412 {
413         struct fuse_attr attr;
414         memset(&attr, 0, sizeof(attr));
415
416         attr.mode = mode;
417         attr.ino = FUSE_ROOT_ID;
418         return fuse_iget(sb, 1, 0, &attr);
419 }
420
421 static struct super_operations fuse_super_operations = {
422         .alloc_inode    = fuse_alloc_inode,
423         .destroy_inode  = fuse_destroy_inode,
424         .read_inode     = fuse_read_inode,
425         .clear_inode    = fuse_clear_inode,
426         .remount_fs     = fuse_remount_fs,
427         .put_super      = fuse_put_super,
428         .umount_begin   = fuse_umount_begin,
429         .statfs         = fuse_statfs,
430         .show_options   = fuse_show_options,
431 };
432
433 static void process_init_reply(struct fuse_conn *fc, struct fuse_req *req)
434 {
435         struct fuse_init_out *arg = &req->misc.init_out;
436
437         if (req->out.h.error || arg->major != FUSE_KERNEL_VERSION)
438                 fc->conn_error = 1;
439         else {
440                 unsigned long ra_pages;
441
442                 if (arg->minor >= 6) {
443                         ra_pages = arg->max_readahead / PAGE_CACHE_SIZE;
444                         if (arg->flags & FUSE_ASYNC_READ)
445                                 fc->async_read = 1;
446                         if (!(arg->flags & FUSE_POSIX_LOCKS))
447                                 fc->no_lock = 1;
448                 } else {
449                         ra_pages = fc->max_read / PAGE_CACHE_SIZE;
450                         fc->no_lock = 1;
451                 }
452
453                 fc->bdi.ra_pages = min(fc->bdi.ra_pages, ra_pages);
454                 fc->minor = arg->minor;
455                 fc->max_write = arg->minor < 5 ? 4096 : arg->max_write;
456         }
457         fuse_put_request(fc, req);
458         fc->blocked = 0;
459         wake_up_all(&fc->blocked_waitq);
460 }
461
462 static void fuse_send_init(struct fuse_conn *fc, struct fuse_req *req)
463 {
464         struct fuse_init_in *arg = &req->misc.init_in;
465
466         arg->major = FUSE_KERNEL_VERSION;
467         arg->minor = FUSE_KERNEL_MINOR_VERSION;
468         arg->max_readahead = fc->bdi.ra_pages * PAGE_CACHE_SIZE;
469         arg->flags |= FUSE_ASYNC_READ | FUSE_POSIX_LOCKS;
470         req->in.h.opcode = FUSE_INIT;
471         req->in.numargs = 1;
472         req->in.args[0].size = sizeof(*arg);
473         req->in.args[0].value = arg;
474         req->out.numargs = 1;
475         /* Variable length arguement used for backward compatibility
476            with interface version < 7.5.  Rest of init_out is zeroed
477            by do_get_request(), so a short reply is not a problem */
478         req->out.argvar = 1;
479         req->out.args[0].size = sizeof(struct fuse_init_out);
480         req->out.args[0].value = &req->misc.init_out;
481         req->end = process_init_reply;
482         request_send_background(fc, req);
483 }
484
485 static u64 conn_id(void)
486 {
487         static u64 ctr = 1;
488         return ctr++;
489 }
490
491 static int fuse_fill_super(struct super_block *sb, void *data, int silent)
492 {
493         struct fuse_conn *fc;
494         struct inode *root;
495         struct fuse_mount_data d;
496         struct file *file;
497         struct dentry *root_dentry;
498         struct fuse_req *init_req;
499         int err;
500
501         if (sb->s_flags & MS_MANDLOCK)
502                 return -EINVAL;
503
504         if (!parse_fuse_opt((char *) data, &d))
505                 return -EINVAL;
506
507         sb->s_blocksize = PAGE_CACHE_SIZE;
508         sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
509         sb->s_magic = FUSE_SUPER_MAGIC;
510         sb->s_op = &fuse_super_operations;
511         sb->s_maxbytes = MAX_LFS_FILESIZE;
512
513         file = fget(d.fd);
514         if (!file)
515                 return -EINVAL;
516
517         if (file->f_op != &fuse_dev_operations)
518                 return -EINVAL;
519
520         fc = new_conn();
521         if (!fc)
522                 return -ENOMEM;
523
524         fc->flags = d.flags;
525         fc->user_id = d.user_id;
526         fc->group_id = d.group_id;
527         fc->max_read = d.max_read;
528
529         /* Used by get_root_inode() */
530         sb->s_fs_info = fc;
531
532         err = -ENOMEM;
533         root = get_root_inode(sb, d.rootmode);
534         if (!root)
535                 goto err;
536
537         root_dentry = d_alloc_root(root);
538         if (!root_dentry) {
539                 iput(root);
540                 goto err;
541         }
542
543         init_req = fuse_request_alloc();
544         if (!init_req)
545                 goto err_put_root;
546
547         mutex_lock(&fuse_mutex);
548         err = -EINVAL;
549         if (file->private_data)
550                 goto err_unlock;
551
552         fc->id = conn_id();
553         err = fuse_ctl_add_conn(fc);
554         if (err)
555                 goto err_unlock;
556
557         list_add_tail(&fc->entry, &fuse_conn_list);
558         sb->s_root = root_dentry;
559         fc->connected = 1;
560         file->private_data = fuse_conn_get(fc);
561         mutex_unlock(&fuse_mutex);
562         /*
563          * atomic_dec_and_test() in fput() provides the necessary
564          * memory barrier for file->private_data to be visible on all
565          * CPUs after this
566          */
567         fput(file);
568
569         fuse_send_init(fc, init_req);
570
571         return 0;
572
573  err_unlock:
574         mutex_unlock(&fuse_mutex);
575         fuse_request_free(init_req);
576  err_put_root:
577         dput(root_dentry);
578  err:
579         fput(file);
580         fuse_conn_put(fc);
581         return err;
582 }
583
584 static int fuse_get_sb(struct file_system_type *fs_type,
585                        int flags, const char *dev_name,
586                        void *raw_data, struct vfsmount *mnt)
587 {
588         return get_sb_nodev(fs_type, flags, raw_data, fuse_fill_super, mnt);
589 }
590
591 static struct file_system_type fuse_fs_type = {
592         .owner          = THIS_MODULE,
593         .name           = "fuse",
594         .get_sb         = fuse_get_sb,
595         .kill_sb        = kill_anon_super,
596 };
597
598 static decl_subsys(fuse, NULL, NULL);
599 static decl_subsys(connections, NULL, NULL);
600
601 static void fuse_inode_init_once(void *foo, kmem_cache_t *cachep,
602                                  unsigned long flags)
603 {
604         struct inode * inode = foo;
605
606         if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
607             SLAB_CTOR_CONSTRUCTOR)
608                 inode_init_once(inode);
609 }
610
611 static int __init fuse_fs_init(void)
612 {
613         int err;
614
615         err = register_filesystem(&fuse_fs_type);
616         if (err)
617                 printk("fuse: failed to register filesystem\n");
618         else {
619                 fuse_inode_cachep = kmem_cache_create("fuse_inode",
620                                                       sizeof(struct fuse_inode),
621                                                       0, SLAB_HWCACHE_ALIGN,
622                                                       fuse_inode_init_once, NULL);
623                 if (!fuse_inode_cachep) {
624                         unregister_filesystem(&fuse_fs_type);
625                         err = -ENOMEM;
626                 }
627         }
628
629         return err;
630 }
631
632 static void fuse_fs_cleanup(void)
633 {
634         unregister_filesystem(&fuse_fs_type);
635         kmem_cache_destroy(fuse_inode_cachep);
636 }
637
638 static int fuse_sysfs_init(void)
639 {
640         int err;
641
642         kset_set_kset_s(&fuse_subsys, fs_subsys);
643         err = subsystem_register(&fuse_subsys);
644         if (err)
645                 goto out_err;
646
647         kset_set_kset_s(&connections_subsys, fuse_subsys);
648         err = subsystem_register(&connections_subsys);
649         if (err)
650                 goto out_fuse_unregister;
651
652         return 0;
653
654  out_fuse_unregister:
655         subsystem_unregister(&fuse_subsys);
656  out_err:
657         return err;
658 }
659
660 static void fuse_sysfs_cleanup(void)
661 {
662         subsystem_unregister(&connections_subsys);
663         subsystem_unregister(&fuse_subsys);
664 }
665
666 static int __init fuse_init(void)
667 {
668         int res;
669
670         printk("fuse init (API version %i.%i)\n",
671                FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
672
673         INIT_LIST_HEAD(&fuse_conn_list);
674         res = fuse_fs_init();
675         if (res)
676                 goto err;
677
678         res = fuse_dev_init();
679         if (res)
680                 goto err_fs_cleanup;
681
682         res = fuse_sysfs_init();
683         if (res)
684                 goto err_dev_cleanup;
685
686         res = fuse_ctl_init();
687         if (res)
688                 goto err_sysfs_cleanup;
689
690         return 0;
691
692  err_sysfs_cleanup:
693         fuse_sysfs_cleanup();
694  err_dev_cleanup:
695         fuse_dev_cleanup();
696  err_fs_cleanup:
697         fuse_fs_cleanup();
698  err:
699         return res;
700 }
701
702 static void __exit fuse_exit(void)
703 {
704         printk(KERN_DEBUG "fuse exit\n");
705
706         fuse_ctl_cleanup();
707         fuse_sysfs_cleanup();
708         fuse_fs_cleanup();
709         fuse_dev_cleanup();
710 }
711
712 module_init(fuse_init);
713 module_exit(fuse_exit);