Add NetBSD support
authorMiklos Szeredi <mszeredi@suse.cz>
Fri, 27 Aug 2010 15:16:54 +0000 (17:16 +0200)
committerMiklos Szeredi <mszeredi@suse.cz>
Fri, 27 Aug 2010 15:16:54 +0000 (17:16 +0200)
The bulk of it is just about adding ifdef __NetBSD__ where there is
already an ifdef __FreeBSD__

Add a arch=netbsd to deal with NetBSD specifics. I suggests that
arch=bsd could be renamed to arch=freebsd

NetBSD specific linking with -lperfuse

NetBSD patches to lib/mount.c. It turned to be less itrusive to patch
mount;c than mount_bsd.c. I suggest mount_bsd.c could be renamed to
mount_freebsd.c

Patch from Emmanuel Dreyfus

ChangeLog
configure.in
include/fuse_compat.h
include/fuse_lowlevel_compat.h
lib/Makefile.am
lib/fuse.c
lib/fuse_lowlevel.c
lib/helper.c
lib/mount.c
lib/mount_util.c

index 8c399e7eada79dd86894ed92e7c43108b5f1ca71..5c6e74e301e6e128c0476d7acbab5b9869198c70 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-08-27  Miklos Szeredi <miklos@szeredi.hu>
+
+       * Add NetBSD support.  Patch from Emmanuel Dreyfus
+
 2010-07-12  Miklos Szeredi <miklos@szeredi.hu>
 
        * libfuse: add buffer interface.  Add a generic buffer interface
index 1664204078d80ef7d1e3b4090e177497a21fce33..9d13f33a7aa5f83eb27092c5940526144d8ed201 100644 (file)
@@ -16,6 +16,7 @@ fi
 
 case $target_os in
      *linux*)  arch=linux;;
+     *netbsd*)  arch=netbsd;;
      *bsd*)    arch=bsd;;
      *)                arch=unknown;;
 esac
@@ -91,6 +92,7 @@ AC_SUBST(INIT_D_PATH)
 AC_SUBST(subdirs2)
 
 AM_CONDITIONAL(LINUX, test "$arch" = linux)
+AM_CONDITIONAL(NETBSD, test "$arch" = netbsd)
 AM_CONDITIONAL(BSD, test "$arch" = bsd)
 
 AC_CONFIG_FILES([fuse.pc Makefile lib/Makefile util/Makefile example/Makefile include/Makefile])
index 225276f5cf84104c6e0626b51bc3aceb3b659bfd..e7497a9e01bf494b60bb7be6fe0ddcac92219dd1 100644 (file)
@@ -65,7 +65,7 @@ struct fuse *fuse_setup_compat25(int argc, char *argv[],
 
 void fuse_teardown_compat22(struct fuse *fuse, int fd, char *mountpoint);
 
-#ifndef __FreeBSD__
+#if !defined(__FreeBSD__) && !defined(__NetBSD__)
 #include <sys/statfs.h>
 
 struct fuse_operations_compat22 {
@@ -198,4 +198,4 @@ struct fuse *fuse_new_compat1(int fd, int flags,
 void fuse_main_compat1(int argc, char *argv[],
                       const struct fuse_operations_compat1 *op);
 
-#endif /* __FreeBSD__ */
+#endif /* __FreeBSD__ || __NetBSD__ */
index aba45e6aa704900f1a9e380729cb898f5add5db8..8de220b912feeeafc179b3d8632d78ba6df0e29f 100644 (file)
@@ -72,7 +72,7 @@ size_t fuse_dirent_size(size_t namelen);
 char *fuse_add_dirent(char *buf, const char *name, const struct stat *stbuf,
                      off_t off);
 
-#ifndef __FreeBSD__
+#if !defined(__FreeBSD__) && !defined(__NetBSD__)
 
 #include <sys/statfs.h>
 
@@ -139,7 +139,7 @@ struct fuse_session *fuse_lowlevel_new_compat(const char *opts,
                                const struct fuse_lowlevel_ops_compat *op,
                                size_t op_size, void *userdata);
 
-#endif /* __FreeBSD__ */
+#endif /* __FreeBSD__ || __NetBSD__ */
 
 struct fuse_chan_ops_compat24 {
        int (*receive)(struct fuse_chan *ch, char *buf, size_t size);
index 22075b21239e4aea4d8cc45e88d4027879b385ec..fe011cb69cdae1595e03d97bd490c678cba791e2 100644 (file)
@@ -39,6 +39,10 @@ libfuse_la_SOURCES =                 \
 libfuse_la_LDFLAGS = @libfuse_libs@ -version-number 2:8:4 \
        -Wl,--version-script,$(srcdir)/fuse_versionscript
 
+if NETBSD
+libfuse_la_LIBADD = -lperfuse -lpuffs
+endif
+
 libulockmgr_la_SOURCES = ulockmgr.c
 libulockmgr_la_LDFLAGS = -pthread -version-number 1:0:1
 
index 6af4be32317fea6f65f7c352a4b7ca93bf7d5bcf..c64e59611cec9503536944b2e5a65edef6fcec54 100644 (file)
@@ -960,7 +960,7 @@ static inline void fuse_prepare_interrupt(struct fuse *f, fuse_req_t req,
                fuse_do_prepare_interrupt(req, d);
 }
 
-#ifndef __FreeBSD__
+#if !defined(__FreeBSD__) && !defined(__NetBSD__)
 
 static int fuse_compat_open(struct fuse_fs *fs, const char *path,
                            struct fuse_file_info *fi)
@@ -1055,7 +1055,7 @@ static int fuse_compat_statfs(struct fuse_fs *fs, const char *path,
        return err;
 }
 
-#else /* __FreeBSD__ */
+#else /* __FreeBSD__ || __NetBSD__ */
 
 static inline int fuse_compat_open(struct fuse_fs *fs, char *path,
                                   struct fuse_file_info *fi)
@@ -1081,7 +1081,7 @@ static inline int fuse_compat_statfs(struct fuse_fs *fs, const char *path,
        return fs->op.statfs(fs->compat == 25 ? "/" : path, buf);
 }
 
-#endif /* __FreeBSD__ */
+#endif /* __FreeBSD__ || __NetBSD__ */
 
 int fuse_fs_getattr(struct fuse_fs *fs, const char *path, struct stat *buf)
 {
@@ -3763,7 +3763,7 @@ struct fuse *fuse_new_common(struct fuse_chan *ch, struct fuse_args *args,
        if (!f->conf.ac_attr_timeout_set)
                f->conf.ac_attr_timeout = f->conf.attr_timeout;
 
-#ifdef __FreeBSD__
+#if defined(__FreeBSD__) || defined(__NetBSD__)
        /*
         * In FreeBSD, we always use these settings as inode numbers
         * are needed to make getcwd(3) work.
@@ -3941,7 +3941,7 @@ void fuse_register_module(struct fuse_module *mod)
        fuse_modules = mod;
 }
 
-#ifndef __FreeBSD__
+#if !defined(__FreeBSD__) && !defined(__NetBSD__)
 
 static struct fuse *fuse_new_common_compat(int fd, const char *opts,
                                           const struct fuse_operations *op,
@@ -3998,7 +3998,7 @@ FUSE_SYMVER(".symver fuse_set_getcontext_func,__fuse_set_getcontext_func@");
 FUSE_SYMVER(".symver fuse_new_compat2,fuse_new@");
 FUSE_SYMVER(".symver fuse_new_compat22,fuse_new@FUSE_2.2");
 
-#endif /* __FreeBSD__ */
+#endif /* __FreeBSD__ || __NetBSD__  */
 
 struct fuse *fuse_new_compat25(int fd, struct fuse_args *args,
                               const struct fuse_operations_compat25 *op,
index 388ab044d28dc8ea46b8a276b120a30c2a9be39f..50c47155192c2b41de868f6f0f64a9b661a3ce10 100644 (file)
@@ -1732,7 +1732,9 @@ const struct fuse_ctx *fuse_req_ctx_compat24(fuse_req_t req)
 {
        return fuse_req_ctx(req);
 }
+#ifndef __NetBSD__
 FUSE_SYMVER(".symver fuse_req_ctx_compat24,fuse_req_ctx@FUSE_2.4");
+#endif
 
 
 void fuse_req_interrupt_func(fuse_req_t req, fuse_interrupt_func_t func,
@@ -2130,7 +2132,7 @@ int fuse_req_getgroups(fuse_req_t req, int size, gid_t list[])
 }
 #endif
 
-#ifndef __FreeBSD__
+#if !defined(__FreeBSD__) && !defined(__NetBSD__)
 
 static void fill_open_compat(struct fuse_open_out *arg,
                             const struct fuse_file_info_compat *f)
@@ -2232,7 +2234,7 @@ FUSE_SYMVER(".symver fuse_reply_statfs_compat,fuse_reply_statfs@FUSE_2.4");
 FUSE_SYMVER(".symver fuse_reply_open_compat,fuse_reply_open@FUSE_2.4");
 FUSE_SYMVER(".symver fuse_lowlevel_new_compat,fuse_lowlevel_new@FUSE_2.4");
 
-#else /* __FreeBSD__ */
+#else /* __FreeBSD__ || __NetBSD__ */
 
 int fuse_sync_compat_args(struct fuse_args *args)
 {
@@ -2240,7 +2242,7 @@ int fuse_sync_compat_args(struct fuse_args *args)
        return 0;
 }
 
-#endif /* __FreeBSD__ */
+#endif /* __FreeBSD__ || __NetBSD__ */
 
 struct fuse_session *fuse_lowlevel_new_compat25(struct fuse_args *args,
                                const struct fuse_lowlevel_ops_compat25 *op,
index 3d0db4a1f090fc2bcda621d45c2615ea10732e04..81eedec08493682c4f9c57df82cc005334802194 100644 (file)
@@ -357,7 +357,7 @@ int fuse_version(void)
 
 #include "fuse_compat.h"
 
-#ifndef __FreeBSD__
+#if !defined(__FreeBSD__) && !defined(__NetBSD__)
 
 struct fuse *fuse_setup_compat22(int argc, char *argv[],
                                 const struct fuse_operations_compat22 *op,
@@ -415,7 +415,7 @@ FUSE_SYMVER(".symver fuse_teardown,__fuse_teardown@");
 FUSE_SYMVER(".symver fuse_main_compat2,fuse_main@");
 FUSE_SYMVER(".symver fuse_main_real_compat22,fuse_main_real@FUSE_2.2");
 
-#endif /* __FreeBSD__ */
+#endif /* __FreeBSD__ || __NetBSD__ */
 
 
 struct fuse *fuse_setup_compat25(int argc, char *argv[],
index c3b16a4f32b60a58d4de9a855a831962c72f7dad..b525da5c285bca8cd68c876b20d95ddfeda03351 100644 (file)
@@ -17,6 +17,7 @@
 #include <stdlib.h>
 #include <unistd.h>
 #include <stddef.h>
+#include <string.h>
 #include <fcntl.h>
 #include <errno.h>
 #include <sys/poll.h>
 #include <sys/wait.h>
 #include <sys/mount.h>
 
+#ifdef __NetBSD__
+#include <perfuse.h>
+
+#define MS_RDONLY      MNT_RDONLY
+#define MS_NOSUID      MNT_NOSUID
+#define MS_NODEV       MNT_NODEV
+#define MS_NOEXEC      MNT_NOEXEC
+#define MS_SYNCHRONOUS         MNT_SYNCHRONOUS
+#define MS_NOATIME     MNT_NOATIME
+
+#define umount2(mnt, flags) unmount(mnt, (flags == 2) ? MNT_FORCE : 0)
+#endif
+
 #define FUSERMOUNT_PROG                "fusermount"
 #define FUSE_COMMFD_ENV                "_FUSE_COMMFD"
 
@@ -155,7 +169,9 @@ static struct mount_flags mount_flags[] = {
        {"sync",    MS_SYNCHRONOUS, 1},
        {"atime",   MS_NOATIME,     0},
        {"noatime", MS_NOATIME,     1},
+#ifndef __NetBSD__
        {"dirsync", MS_DIRSYNC,     1},
+#endif
        {NULL,      0,              0}
 };
 
@@ -484,6 +500,7 @@ static int fuse_mount_sys(const char *mnt, struct mount_opts *mo,
                goto out_close;
        }
 
+#ifndef __NetBSD__
        if (geteuid() == 0) {
                char *newmnt = fuse_mnt_resolve_path("fuse", mnt);
                res = -1;
@@ -496,6 +513,7 @@ static int fuse_mount_sys(const char *mnt, struct mount_opts *mo,
                if (res == -1)
                        goto out_umount;
        }
+#endif /* __NetBSD__ */
        free(type);
        free(source);
 
index 33e66979cc651424ad4fde7beb8436b254a5c2e7..9926fe8fd501bdfa8101abfad1cf6ee0601345c7 100644 (file)
 #include <unistd.h>
 #include <stdlib.h>
 #include <string.h>
+#include <signal.h>
 #include <dirent.h>
 #include <errno.h>
 #include <fcntl.h>
 #include <limits.h>
+#ifndef __NetBSD__
 #include <mntent.h>
+#endif
 #include <sys/stat.h>
 #include <sys/wait.h>
 #include <sys/mount.h>
 #include <sys/param.h>
 
+#ifdef __NetBSD__
+#define umount2(mnt, flags) unmount(mnt, (flags == 2) ? MNT_FORCE : 0)
+#define mtab_needs_update(mnt) 0
+#else
 static int mtab_needs_update(const char *mnt)
 {
        int res;
@@ -53,6 +60,7 @@ static int mtab_needs_update(const char *mnt)
 
        return 1;
 }
+#endif /* __NetBSD__ */
 
 static int add_mount_legacy(const char *progname, const char *fsname,
                            const char *mnt, const char *type, const char *opts)