f8200e8f50e4ab5bfd552dcd31861def0c927939
[perl-fuse.git] / Fuse.pm
1 package Fuse;
2
3 use 5.006;
4 use strict;
5 use warnings;
6 use Errno;
7 use Carp;
8 use Config;
9
10 require Exporter;
11 require DynaLoader;
12 use AutoLoader;
13 use Data::Dumper;
14 our @ISA = qw(Exporter DynaLoader);
15
16 # Items to export into callers namespace by default. Note: do not export
17 # names by default without a very good reason. Use EXPORT_OK instead.
18 # Do not simply export all your public functions/methods/constants.
19
20 # This allows declaration       use Fuse ':all';
21 # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
22 # will save memory.
23 our %EXPORT_TAGS = (
24                     'all' => [ qw(XATTR_CREATE XATTR_REPLACE fuse_get_context fuse_version) ],
25                     'xattr' => [ qw(XATTR_CREATE XATTR_REPLACE) ]
26                     );
27
28 our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
29
30 our @EXPORT = ();
31 our $VERSION = '0.11';
32
33 sub AUTOLOAD {
34     # This AUTOLOAD is used to 'autoload' constants from the constant()
35     # XS function.  If a constant is not found then control is passed
36     # to the AUTOLOAD in AutoLoader.
37
38     my $constname;
39     our $AUTOLOAD;
40     ($constname = $AUTOLOAD) =~ s/.*:://;
41     croak "& not defined" if $constname eq 'constant';
42     my $val = constant($constname, @_ ? $_[0] : 0);
43     if ($! != 0) {
44         if ($!{EINVAL}) {
45             $AutoLoader::AUTOLOAD = $AUTOLOAD;
46             goto &AutoLoader::AUTOLOAD;
47         }
48         else {
49             croak "Your vendor has not defined Fuse macro $constname";
50         }
51     }
52     {
53         no strict 'refs';
54         # Fixed between 5.005_53 and 5.005_61
55         if ($] >= 5.00561) {
56             *$AUTOLOAD = sub () { $val };
57         }
58         else {
59             *$AUTOLOAD = sub { $val };
60         }
61     }
62     goto &$AUTOLOAD;
63 }
64
65 bootstrap Fuse $VERSION;
66
67 sub main {
68         my @names = qw(getattr readlink getdir mknod mkdir unlink rmdir symlink
69                         rename link chmod chown truncate utime open read write statfs
70                         flush release fsync setxattr getxattr listxattr removexattr);
71         my $fuse_version = fuse_version();
72         if ($fuse_version >= 2.3) {
73                 push(@names, qw/opendir readdir releasedir fsyncdir init destroy/);
74         }
75         if ($fuse_version >= 2.5) {
76                 push(@names, qw/access create ftruncate fgetattr/);
77         }
78         if ($fuse_version >= 2.6) {
79                 push(@names, qw/lock utimens bmap/);
80         }
81 #       if ($fuse_version >= 2.8) {
82 #               # junk doesn't contain a function pointer, and hopefully
83 #               # never will; it's a "dead" zone in the struct
84 #               # fuse_operations where a flag bit is declared. we don't
85 #               # need to concern ourselves with it, and it appears any
86 #               # arch with a 64 bit pointer will align everything to
87 #               # 8 bytes, making the question of pointer alignment for
88 #               # the last 2 wrapper functions no big thing.
89 #               push(@names, qw/junk ioctl poll/);
90 #       }
91         my @subs = map {undef} @names;
92         my $tmp = 0;
93         my %mapping = map { $_ => $tmp++ } @names;
94         my @otherargs = qw(debug threaded mountpoint mountopts nullpath_ok);
95         my %otherargs = (
96                           debug         => 0,
97                           threaded      => 0,
98                           mountpoint    => "",
99                           mountopts     => "",
100                           nullpath_ok   => 0,
101                         );
102         while(my $name = shift) {
103                 my ($subref) = shift;
104                 if(exists($otherargs{$name})) {
105                         $otherargs{$name} = $subref;
106                 } else {
107                         croak "There is no function $name" unless exists($mapping{$name});
108                         croak "Usage: Fuse::main(getattr => \"main::my_getattr\", ...)" unless $subref;
109                         $subs[$mapping{$name}] = $subref;
110                 }
111         }
112         if($otherargs{threaded}) {
113                 # make sure threads are both available, and loaded.
114                 if($Config{useithreads}) {
115                         if(exists($threads::{VERSION})) {
116                                 if(exists($threads::shared::{VERSION})) {
117                                         # threads will work.
118                                 } else {
119                                         carp("Thread support requires you to use threads::shared.\nThreads are disabled.\n");
120                                         $otherargs{threaded} = 0;
121                                 }
122                         } else {
123                                 carp("Thread support requires you to use threads and threads::shared.\nThreads are disabled.\n");
124                                 $otherargs{threaded} = 0;
125                         }
126                 } else {
127                         carp("Thread support was not compiled into this build of perl.\nThreads are disabled.\n");
128                         $otherargs{threaded} = 0;
129                 }
130         }
131         perl_fuse_main(@otherargs{@otherargs},@subs);
132 }
133
134 # Autoload methods go after =cut, and are processed by the autosplit program.
135
136 1;
137 __END__
138
139 =head1 NAME
140
141 Fuse - write filesystems in Perl using FUSE
142
143 =head1 SYNOPSIS
144
145   use Fuse;
146   my ($mountpoint) = "";
147   $mountpoint = shift(@ARGV) if @ARGV;
148   Fuse::main(mountpoint=>$mountpoint, getattr=>"main::my_getattr", getdir=>"main::my_getdir", ...);
149
150 =head1 DESCRIPTION
151
152 This lets you implement filesystems in perl, through the FUSE
153 (Filesystem in USErspace) kernel/lib interface.
154
155 FUSE expects you to implement callbacks for the various functions.
156
157 In the following definitions, "errno" can be 0 (for a success),
158 -EINVAL, -ENOENT, -EONFIRE, any integer less than 1 really.
159
160 You can import standard error constants by saying something like
161 "use POSIX qw(EDOTDOT ENOANO);".
162
163 Every constant you need (file types, open() flags, error values,
164 etc) can be imported either from POSIX or from Fcntl, often both.
165 See their respective documentations, for more information.
166
167 =head2 EXPORTED SYMBOLS
168
169 None by default.
170
171 You can request all exportable symbols by using the tag ":all".
172
173 You can request the extended attribute symbols by using the tag ":xattr".
174 This will export XATTR_CREATE and XATTR_REPLACE.
175
176 =head2 FUNCTIONS
177
178 =head3 Fuse::main
179
180 Takes arguments in the form of hash key=>value pairs.  There are
181 many valid keys.  Most of them correspond with names of callback
182 functions, as described in section 'FUNCTIONS YOUR FILESYSTEM MAY IMPLEMENT'.
183 A few special keys also exist:
184
185
186 debug => boolean
187
188 =over 1
189
190 This turns FUSE call tracing on and off.  Default is 0 (which means off).
191
192 =back
193
194 mountpoint => string
195
196 =over 1
197
198 The point at which to mount this filesystem.  There is no default, you must
199 specify this.  An example would be '/mnt'.
200
201 =back
202
203 mountopts => string
204
205 =over 1
206
207 This is a comma seperated list of mount options to pass to the FUSE kernel
208 module.
209
210 At present, it allows the specification of the allow_other
211 argument when mounting the new FUSE filesystem. To use this, you will also
212 need 'user_allow_other' in /etc/fuse.conf as per the FUSE documention
213
214   mountopts => "allow_other" or
215   mountopts => ""
216
217 =back
218
219 threaded => boolean
220
221 =over 1
222
223 This turns FUSE multithreading on and off.  The default is 0, meaning your FUSE
224 script will run in single-threaded mode.  Note that single-threaded mode also
225 means that you will not have to worry about reentrancy, though you will have to
226 worry about recursive lookups.  In single-threaded mode, FUSE holds a global
227 lock on your filesystem, and will wait for one callback to return before
228 calling another.  This can lead to deadlocks, if your script makes any attempt
229 to access files or directories in the filesystem it is providing.  (This
230 includes calling stat() on the mount-point, statfs() calls from the 'df'
231 command, and so on and so forth.)  It is worth paying a little attention and
232 being careful about this.
233
234 Enabling multithreading will cause FUSE to make multiple simultaneous calls
235 into the various callback functions of your perl script.  If you enable 
236 threaded mode, you can enjoy all the parallel execution and interactive
237 response benefits of threads, and you get to enjoy all the benefits of race
238 conditions and locking bugs, too.  Please also ensure any other perl modules
239 you're using are also thread-safe.
240
241 (If enabled, this option will cause a warning if your perl interpreter was not
242 built with USE_ITHREADS, or if you have failed to use threads or
243 threads::shared.)
244
245 =back
246
247 nullpath_ok => boolean
248
249 =over 1
250
251 This flag tells Fuse to not pass paths for functions that operate on file
252 or directory handles. This will yield empty path parameters for functions
253 including read, write, flush, release, fsync, readdir, releasedir,
254 fsyncdir, truncate, fgetattr and lock. If you use this, you must return
255 file/directory handles from open, opendir and create. Default is 0 (off).
256 Only effective on Fuse 2.8 and up; with earlier versions, this does nothing.
257
258 =back
259
260 =head3 Fuse::fuse_get_context
261  
262  use Fuse "fuse_get_context";
263  my $caller_uid = fuse_get_context()->{"uid"};
264  my $caller_gid = fuse_get_context()->{"gid"};
265  my $caller_pid = fuse_get_context()->{"pid"};
266  
267 Access context information about the current Fuse operation. 
268
269 =head3 Fuse::fuse_version
270
271 Indicates the Fuse version in use; more accurately, indicates the version
272 of the Fuse API in use at build time. Returned as a decimal value; i.e.,
273 for Fuse API v2.6, will return "2.6".
274
275 =head2 FUNCTIONS YOUR FILESYSTEM MAY IMPLEMENT
276
277 =head3 getattr
278
279 Arguments:  filename.
280 Returns a list, very similar to the 'stat' function (see
281 perlfunc).  On error, simply return a single numeric scalar
282 value (e.g. "return -ENOENT();").
283
284 FIXME: the "ino" field is currently ignored.  I tried setting it to 0
285 in an example script, which consistently caused segfaults.
286
287 Fields (the following was stolen from perlfunc(1) with apologies):
288
289 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
290         $atime,$mtime,$ctime,$blksize,$blocks)
291                          = getattr($filename);
292
293 Here are the meaning of the fields:
294
295  0 dev      device number of filesystem
296  1 ino      inode number
297  2 mode     file mode  (type and permissions)
298  3 nlink    number of (hard) links to the file
299  4 uid      numeric user ID of file's owner
300  5 gid      numeric group ID of file's owner
301  6 rdev     the device identifier (special files only)
302  7 size     total size of file, in bytes
303  8 atime    last access time in seconds since the epoch
304  9 mtime    last modify time in seconds since the epoch
305 10 ctime    inode change time (NOT creation time!) in seconds
306             since the epoch
307 11 blksize  preferred block size for file system I/O
308 12 blocks   actual number of blocks allocated
309
310 (The epoch was at 00:00 January 1, 1970 GMT.)
311
312 =head3 readlink
313
314 Arguments:  link pathname.
315 Returns a scalar: either a numeric constant, or a text string.
316
317 This is called when dereferencing symbolic links, to learn the target.
318
319 example rv: return "/proc/self/fd/stdin";
320
321 =head3 getdir
322
323 Arguments:  Containing directory name.
324 Returns a list: 0 or more text strings (the filenames), followed by a numeric errno (usually 0).
325
326 This is used to obtain directory listings.  It's opendir(), readdir(), filldir() and closedir() all in one call.
327
328 example rv: return ('.', 'a', 'b', 0);
329
330 =head3 readdir
331
332 Arguments: Directory name, offset
333 Returns: filename, offset to the next dirent, numeric errno 0 or -ENOENT()
334
335 =head3 mknod
336
337 Arguments:  Filename, numeric modes, numeric device
338 Returns an errno (0 upon success, as usual).
339
340 This function is called for all non-directory, non-symlink nodes,
341 not just devices.
342
343 =head3 mkdir
344
345 Arguments:  New directory pathname, numeric modes.
346 Returns an errno.
347
348 Called to create a directory.
349
350 =head3 unlink
351
352 Arguments:  Filename.
353 Returns an errno.
354
355 Called to remove a file, device, or symlink.
356
357 =head3 rmdir
358
359 Arguments:  Pathname.
360 Returns an errno.
361
362 Called to remove a directory.
363
364 =head3 symlink
365
366 Arguments:  Existing filename, symlink name.
367 Returns an errno.
368
369 Called to create a symbolic link.
370
371 =head3 rename
372
373 Arguments:  old filename, new filename.
374 Returns an errno.
375
376 Called to rename a file, and/or move a file from one directory to another.
377
378 =head3 link
379
380 Arguments:  Existing filename, hardlink name.
381 Returns an errno.
382
383 Called to create hard links.
384
385 =head3 chmod
386
387 Arguments:  Pathname, numeric modes.
388 Returns an errno.
389
390 Called to change permissions on a file/directory/device/symlink.
391
392 =head3 chown
393
394 Arguments:  Pathname, numeric uid, numeric gid.
395 Returns an errno.
396
397 Called to change ownership of a file/directory/device/symlink.
398
399 =head3 truncate
400
401 Arguments:  Pathname, numeric offset.
402 Returns an errno.
403
404 Called to truncate a file, at the given offset.
405
406 =head3 utime
407
408 Arguments:  Pathname, numeric actime, numeric modtime.
409 Returns an errno.
410
411 Called to change access/modification times for a file/directory/device/symlink.
412
413 =head3 open
414
415 Arguments:  Pathname, numeric flags (which is an OR-ing of stuff like O_RDONLY
416 and O_SYNC, constants you can import from POSIX), fileinfo hash reference.
417 Returns an errno, a file handle (optional).
418
419 No creation, or trunctation flags (O_CREAT, O_EXCL, O_TRUNC) will be passed to open().
420 The fileinfo hash reference contains flags from the Fuse open call which may be modified by the module. The only fields presently supported are:
421  direct_io (version 2.4 onwards)
422  keep_cache (version 2.4 onwards)
423  nonseekable (version 2.9 onwards)
424 Your open() method needs only check if the operation is permitted for the given flags, and return 0 for success.
425 Optionally a file handle may be returned, which will be passed to subsequent read, write, flush, fsync and release calls.
426
427 =head3 read
428
429 Arguments:  Pathname, numeric requested size, numeric offset, file handle
430 Returns a numeric errno, or a string scalar with up to $requestedsize bytes of data.
431
432 Called in an attempt to fetch a portion of the file.
433
434 =head3 write
435
436 Arguments:  Pathname, scalar buffer, numeric offset, file handle.  You can use length($buffer) to
437 find the buffersize.
438 Returns length($buffer) if successful (number of bytes written).
439
440 Called in an attempt to write (or overwrite) a portion of the file.  Be prepared because $buffer could contain random binary data with NULs and all sorts of other wonderful stuff.
441
442 =head3 statfs
443
444 Arguments:  none
445 Returns any of the following:
446
447 -ENOANO()
448
449 or
450
451 $namelen, $files, $files_free, $blocks, $blocks_avail, $blocksize
452
453 or
454
455 -ENOANO(), $namelen, $files, $files_free, $blocks, $blocks_avail, $blocksize
456
457 =head3 flush
458
459 Arguments: Pathname, file handle
460 Returns an errno or 0 on success.
461
462 Called to synchronise any cached data. This is called before the file
463 is closed. It may be called multiple times before a file is closed.
464
465 =head3 release
466
467 Arguments: Pathname, numeric flags passed to open, file handle
468 Returns an errno or 0 on success.
469
470 Called to indicate that there are no more references to the file. Called once
471 for every file with the same pathname and flags as were passed to open.
472
473 =head3 fsync
474
475 Arguments: Pathname, numeric flags
476 Returns an errno or 0 on success.
477
478 Called to synchronise the file's contents. If flags is non-zero,
479 only synchronise the user data. Otherwise synchronise the user and meta data.
480
481 =head3 setxattr
482
483 Arguments: Pathname, extended attribute's name, extended attribute's value, numeric flags (which is an OR-ing of XATTR_CREATE and XATTR_REPLACE 
484 Returns an errno or 0 on success.
485
486 Called to set the value of the named extended attribute.
487
488 If you wish to reject setting of a particular form of extended attribute name
489 (e.g.: regexps matching user\..* or security\..*), then return - EOPNOTSUPP.
490
491 If flags is set to XATTR_CREATE and the extended attribute already exists,
492 this should fail with - EEXIST. If flags is set to XATTR_REPLACE
493 and the extended attribute doesn't exist, this should fail with - ENOATTR.
494
495 XATTR_CREATE and XATTR_REPLACE are provided by this module, but not exported
496 by default. To import them:
497
498     use Fuse ':xattr';
499
500 or:
501
502     use Fuse ':all';
503
504 =head3 getxattr
505
506 Arguments: Pathname, extended attribute's name
507 Returns an errno, 0 if there was no value, or the extended attribute's value.
508
509 Called to get the value of the named extended attribute.
510
511 =head3 listxattr
512
513 Arguments: Pathname
514 Returns a list: 0 or more text strings (the extended attribute names), followed by a numeric errno (usually 0).
515
516 =head3 removexattr
517
518 Arguments: Pathname, extended attribute's name
519 Returns an errno or 0 on success.
520
521 =head3 opendir
522
523 Arguments: Pathname of a directory
524 Returns an errno, and a directory handle (optional)
525
526 Called when opening a directory for reading. If special handling is
527 required to open a directory, this operation can be implemented to handle
528 that.
529
530 =head3 readdir
531
532 Arguments: Pathname of a directory, numeric offset, (optional) directory handle
533 Returns a list of 0 or more entries, followed by a numeric errno (usually 0).
534 The entries can be simple strings (filenames), or arrays containing an
535 offset number, the filename, and optionally an array ref containing the
536 stat values (as would be returned from getattr()).
537
538 This is used to read entries from a directory. It can be used to return just
539 entry names like getdir(), or can get a segment of the available entries,
540 which requires using array refs and the 2- or 3-item form, with offset values
541 starting from 1. If you wish to return the parameters to fill each entry's
542 struct stat, but do not wish to do partial entry lists/entry counting, set
543 the first element of each array to 0 always.
544
545 Note that if this call is implemented, it overrides getdir() ALWAYS.
546
547 =head3 releasedir
548
549 Arguments: Pathname of a directory, (optional) directory handle
550 Returns an errno or 0 on success
551
552 Called when there are no more references to an opened directory. Called once
553 for each pathname or handle passed to opendir(). Similar to release(), but
554 for directories. Accepts a return value, but like release(), the response
555 code will not propagate to any corresponding closedir() calls.
556
557 =head3 fsyncdir
558
559 Arguments: Pathname of a directory, numeric flags, (optional) directory handle
560 Returns an errno or 0 on success.
561
562 Called to synchronize any changes to a directory's contents. If flag is
563 non-zero, only synchronize user data, otherwise synchronize user data and
564 metadata.
565
566 =head3 init
567
568 Arguments: None.
569 Returns (optionally) an SV to be passed as private_data via fuse_get_context().
570
571 =head3 destroy
572
573 Arguments: (optional) private data SV returned from init(), if any.
574 Returns nothing.
575
576 =head3 access
577
578 Arguments: Pathname, access mode flags
579 Returns an errno or 0 on success.
580
581 Determine if the user attempting to access the indicated file has access to
582 perform the requested actions. The user ID can be determined by calling
583 fuse_get_context(). See access(2) for more information.
584
585 =head3 create
586
587 Arguments: Pathname, create mask, open mode flags
588 Returns errno or 0 on success, and (optional) file handle.
589
590 Create a file with the path indicated, then open a handle for reading and/or
591 writing with the supplied mode flags. Can also return a file handle like
592 open() as part of the call.
593
594 =head3 ftruncate
595
596 Arguments: Pathname, numeric offset, (optional) file handle
597 Returns errno or 0 on success
598
599 Like truncate(), but on an opened file.
600
601 =head3 fgetattr
602
603 Arguments: Pathname, (optional) file handle
604 Returns a list, very similar to the 'stat' function (see
605 perlfunc).  On error, simply return a single numeric scalar
606 value (e.g. "return -ENOENT();").
607
608 Like getattr(), but on an opened file.
609
610 =head3 lock
611
612 Arguments: Pathname, numeric command code, hashref containing lock parameters, (optional) file handle
613 Returns errno or 0 on success
614
615 Used to lock or unlock regions of a file. Locking is handled locally, but this
616 allows (especially for networked file systems) for protocol-level locking
617 semantics to also be employed, if any are available.
618
619 See the Fuse documentation for more explanation of lock(). The needed symbols
620 for the lock constants can be obtained by importing Fcntl.
621
622 =head3 utimens
623
624 Arguments: Pathname, last accessed time, last modified time
625 Returns errno or 0 on success
626
627 Like utime(), but allows time resolution down to the nanosecond. Currently
628 times are passed as "numeric" (internally I believe these are represented
629 typically as "long double"), so the sub-second portion is represented as
630 fractions of a second.
631
632 Note that if this call is implemented, it overrides utime() ALWAYS.
633
634 =head3 bmap
635
636 Arguments: Pathname, numeric blocksize, numeric block number
637 Returns errno or 0 on success, and physical block number if successful
638
639 Used to map a block number offset in a file to the physical block offset
640 on the block device backing the file system. This is intended for
641 filesystems that are stored on an actual block device, with the 'blkdev'
642 option passed.
643
644 =head1 AUTHOR
645
646 Mark Glines, E<lt>mark@glines.orgE<gt>
647
648 =head1 SEE ALSO
649
650 L<perl>, the FUSE documentation.
651
652 =cut