1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
|
# ClamFS
ClamFS - User-space fs with on-access antivirus scanning
## Description
ClamFS is a [FUSE-based user-space file system](https://en.wikipedia.org/wiki/Filesystem_in_Userspace)
for Linux and [BSD](https://www.freshports.org/security/clamfs/)
with on-access anti-virus file scanning through [clamd daemon](https://manpages.debian.org/testing/clamav-daemon/clamd.8.en.html)
(a file scanning service developed by [ClamAV Project](https://www.clamav.net/)).
### Features
* Scans files using ClamAV
* User-space file system (no kernel patches, modules, recompilations, etc.)
* Based on libFUSE version 3 (until version 1.1.0 on libFUSE v2)
* Implements all clamd scan modes: fname, fdpass and stream
* Supports remote clamd instances in stream mode over TCP/IP socket
* Caches scan results in a LRU cache with time-based and out-of-memory expiration
* Configuration stored in XML files
* Supports ulockmgr
* Sends mails to administrator when detects virus
## Table of contents
* [Description](#description)
* [Features](#features)
* [Getting Started](#getting-started)
* [Installing packages](#installing-packages)
* [Arch](#arch)
* [Debian, Ubuntu, etc.](#debian-ubuntu-etc)
* [Gentoo](#gentoo)
* [FreeBSD, DragonFly BSD](#freebsd-dragonfly-bsd)
* [Building from sources](#building-from-sources)
* [Prerequisites](#prerequisites)
* [Installing dependencies](#installing-dependencies)
* [Downloading](#downloading)
* [Building](#building)
* [Installing](#installing)
* [Usage](#usage)
* [Sample output](#sample-output)
* [Configuration](#configuration)
* [Different scan modes](#different-scan-modes)
* [Additional configuration steps for FreeBSD](#additional-configuration-steps-for-freebsd)
* [Mounting and unmounting ClamFS file systems](#mounting-and-unmounting-clamfs-file-systems)
* [Fine tuning](#fine-tuning)
* [Starting without clamd available](#starting-without-clamd-available)
* [Mounting file systems from /etc/fstab](#mounting-file-systems-from-etcfstab)
* [Using remote clamd instances](#using-remote-clamd-instances)
* [Read-only mounts](#read-only-mounts)
* [Program name reported as unknown when virus found](#program-name-reported-as-unknown-when-virus-found)
* [Using ClamFS with WINE](#using-clamfs-with-wine)
* [Installing FUSE v3 from sources](#installing-fuse-v3-from-sources)
* [License](#license)
* [Historical repositories at SourceForge](#historical-repositories-at-sourceforge)
## Getting Started
These instructions will get you a copy of the project up and running on your
local machine.
### Installing packages
#### Arch
[ClamFS package](https://aur.archlinux.org/packages/clamfs/)
is available from [AUR](https://aur.archlinux.org/) repository.
#### Debian, Ubuntu, etc.
[Debian GNU/Linux](https://packages.debian.org/clamfs),
[Ubuntu](https://packages.ubuntu.com/clamfs) and
[Devuan](https://pkginfo.devuan.org/cgi-bin/d1pkgweb-query?search=clamfs)
have `clamfs` package in their repositories.
```
sudo apt install clamfs clamav-daemon clamav-freshclam
```
#### Gentoo
Gentoo provides [sys-fs/clamfs package](https://packages.gentoo.org/packages/sys-fs/clamfs).
#### FreeBSD, DragonFly BSD
[FreeBSD](https://www.freshports.org/security/clamfs/) and [DragonFly BSD]() has `security/clamfs` in ports.
Install package...
```
pkg install clamfs
```
... or install from ports.
```
cd /usr/ports/security/clamfs ; make install clean
```
### Building from sources
#### Prerequisites
To build ClamFS on any GNU/Linux or *BSD you need:
* [FUSE](https://github.com/libfuse/libfuse) >= 3
* [POCO](https://pocoproject.org/) >= 1.2.9
* [Boost](https://www.boost.org/) >= 1.33
* [pkg-config](https://www.freedesktop.org/wiki/Software/pkg-config/),
[autoconf](https://www.gnu.org/software/autoconf/),
[automake](https://www.gnu.org/software/automake/),
[make](https://www.gnu.org/software/make/)...
To run ClamFS `clamd` service from [ClamAV project](https://www.clamav.net/)
is required.
Note 1: POCO versions up to 1.2.8 contain 4-BSDL licensed files and thus you
should avoid linking it against any GPL licensed code. I strongly advise using
version 1.2.9 or newer (as license issues has been fixed).
Note 2: ClamFS version up to 1.0.1 required also
[GNU CommonCPP](https://www.gnu.org/software/commoncpp/)
library. This dependency was dropped in version 1.1.0 (with commit 3bdb8ec).
#### Installing dependencies
##### Arch
Sync following packages to build ClamFS:
```
pacman -Syu base-devel fuse3 poco boost
```
##### Debian, Ubuntu, etc.
To build ClamFS on Debian GNU/Linux and Ubuntu install these packages:
* libfuse3-dev
* libpoco-dev
* libboost-dev
* pkg-config
As a run-time dependency install:
* clamav-daemon
* fuse
Run following command to install all dependencies.
```
sudo apt-get -y --no-install-recommends install \
build-essential pkg-config autoconf automake \
libfuse3-dev libpoco-dev libboost-dev \
clamav-daemon clamav-freshclam
```
##### Fedora
To build ClamFS on Fedora you need those packages:
* fuse3-devel
* poco-devel
* boost-devel
* pkg-config
As a run-time dependency install:
* clamd
Run following command to install all dependencies.
```
sudo dnf install automake boost-devel poco-devel fuse3-devel \
pkg-config clamd
```
##### FreeBSD, DragonFly BSD
To build ClamFS on FreeBSD and DragonFly BSD you need those ports:
* [sysutils/fusefs-libs3](https://www.freshports.org/sysutils/fusefs-libs3/)
* [devel/poco](https://www.freshports.org/devel/poco/)
* [devel/boost-libs](https://www.freshports.org/devel/boost-libs/)
* [devel/pkgconf](https://www.freshports.org/devel/pkgconf/)
* [devel/autoconf](https://www.freshports.org/devel/autoconf/)
* [devel/automake](https://www.freshports.org/devel/automake/)
As a run-time dependency you need:
* [security/clamav](https://www.freshports.org/security/clamav/)
Note: FreeBSD >= 6.0 & < 10.0 use `sysutils/fusefs-kmod` port. FreeBSD
>= 10.0 & < 12.1 use fuse kernel module. In FreeBSD >= 12.1 module
was renamed to fusefs for consistency with other filesystems.
#### Downloading
Just download the release package and extract it with `tar`.
```
tar xf clamfs-<version>.tar.gz
```
Or clone repository.
```
git clone https://github.com/burghardt/clamfs.git
```
#### Building
If using cloned repository rebuild autotools configuration with `autogen.sh`
script. If using release tarballs skip this step.
```
sh autogen.sh
```
Configure package with `configure` script.
```
sh configure
```
Finally build sources with `make`.
```
make -j
```
#### Installing
Run `make install` (as root) to install binaries.
```
sudo make install
```
### Usage
ClamFS requires only one argument - configuration file name. Configuration is
stored as XML document. Sample configuration is available in `doc` directory,
in file named [clamfs.xml](doc/clamfs.xml).
#### Sample output
```
17:11:44 (clamfs.cxx:993) ClamFS v1.1.0-snapshoot (git-7d4beda)
17:11:44 (clamfs.cxx:994) Copyright (c) 2007-2019 Krzysztof Burghardt <krzysztof@burghardt.pl>
17:11:44 (clamfs.cxx:995) https://github.com/burghardt/clamfs
17:11:44 (clamfs.cxx:1004) ClamFS need to be invoked with one parameter - location of configuration file
17:11:44 (clamfs.cxx:1005) Example: src/clamfs /etc/clamfs/home.xml
```
#### Configuration
Please refer to [clamfs.xml](doc/clamfs.xml) for comprehensive list of
configuration options. Only three options are mandatory:
* `<clamd socket="" />` to set path to `clamd` socket
* `<filesystem root="" />` to set place from ClamFS will read files
* `<filesystem mountpoint="" />` to set mount point where virtual filesystem
will be attached in directory tree
#### Different scan modes
ClamFS versions up to 1.1.0 use `fname` mode and pass only file name (with
`SCAN` command) to clamd.
In ClamFS versions after 1.1.0 three different modes are available to pass
files to clamd. Default method is `fdpass`.
##### mode="fname" - pass file name (with SCAN command)
This is the simplest mode. In this mode clamd opens and reads file by itself.
Permissions have to be set to allow clamd to access the file. Also this mode
works only when clamd and ClamFS are no the same machine and both have access
to files. Using this mode might require permissions or ACLs setup for clamd
user. Please note that attempts to run clamd as root to bypass permissions
is usually a bad idea.
##### mode="fdpass" - pass file descriptor (with FILDES command)
This is the default mode when BSD 4.4 / RFC2292 style fd passing is available
in the operating system. In this mode ClamFS opens file and passes file
descriptor to clamd over UNIX domain socket. Finally clamd reads file by
itself. This mode works only when clamd and ClamFS are no the same machine
and operating system supports file descriptor sharing.
##### mode="stream" - pass file stream (with INSTREAM command)
Last mode offers ability to use remote clamd instances. In this mode ClamFS
opens and reads file. Than sends it to clamd over the UNIX domain or TCP/IP
socket. This works for local and remote clamd instances, but for local clamd
instance `fdpass` is preferred scanning method.
#### Additional configuration steps for FreeBSD
FreeBSD's `fusefs` kernel module has to be loaded before starting ClamFS. This
can be done ad-hoc with `kldload fusefs` command.
To have it loaded at boot time, add the following line to `/boot/loader.conf`.
```sh
fusefs_load="YES"
```
Or append fuse module to `kld_list` in `/etc/rc.conf`.
```sh
kld_list="fusefs"
```
Note: before FreeBSD 12.1 `fusefs` module was named `fuse`.
Also configure ClamAV daemon and signature downloader service to start during
boot with following options appended to `/etc/rc.conf`.
```sh
clamav_clamd_enable="YES"
clamav_freshclam_enable="YES"
```
Finally start required services with following commands.
```sh
service kld start
service clamav-freshclam start
service clamav-clamd start
```
#### Mounting and unmounting ClamFS file systems
To mount ClamFS filesystem run ClamFS with configuration filename as a parameter.
```sh
clamfs /etc/clamfs/netshare.xml
```
To unmount ClamFS use `fusermount` with `-u` flag and
`<filesystem mountpoint="/net/share" />` value as a parameter.
```sh
sudo fusermount -u /net/share
```
## Fine tuning
### Starting without clamd available
A new “check” option was added to allow you to mount a ClamFS file system when
clamd is not available, such as during an early stage of the boot process.
To disable ClamAV Daemon (clamd) check on ClamFS startup set option check to
no:
```xml
<clamd socket="/var/run/clamav/clamd.ctl" check="no" />
```
### Mounting file systems from /etc/fstab
With `check=no` mounting ClamFS file systems form /etc/fstab is possible using
fuse mount helper (/sbin/mount.fuse). ClamFS will be started on boot with
configuration file defined here provided as its argument. Simple definition
of ClamFS mount point in /etc/fstab looks like:
```
clamfs#/etc/clamfs/share.xml /clamfs/share fuse defaults 0 0
```
### Using remote clamd instances
ClamFS can reach remote clamd instances using TCP/IP sockets. This type of
connection requires `mode="stream"` settings and use clamd's `INSTREAM`
command to scan files smaller than `StreamMaxLength` which defaults to 25 MiB.
```xml
<clamd socket="<IP>:<port>" mode="stream" />
```
Default clamd port is `3310`. For server running at address `192.168.1.101`
configuration is:
```xml
<clamd socket="192.168.1.101:3310" mode="stream" />
```
### Read-only mounts
The “readonly” option was added to the filesystem options allowing you to
create a read-only protected file system. Just extend filesystem definition
in config file with `readonly` option set to `yes`:
```xml
<filesystem root="/share" mountpoint="/clamfs/share" readonly="yes" />
```
### Program name reported as unknown when virus found
```
16:33:24 (clamav.cxx:152) (< unknown >:19690) (root:0) /tmp/eicar.com: Eicar-Test-Signature FOUND
```
To see program name instead of `< unknown >` in log messages on FreeBSD one
need to mount `/proc` filesystem. Add following line to `/etc/fstab`.
```
proc /proc procfs rw 0 0
```
And mount `/proc` with `mount /proc`.
Program name should be reported correctly with mounted `/proc`.
```
16:37:31 (clamav.cxx:152) (hexdump:19740) (root:0) /tmp/eicar.com: Eicar-Test-Signature FOUND
```
### Using ClamFS with WINE
Following steps setups on-access file scanning with ClamAV for WINE instance.
1. Install ClamFS runtime dependencies.
```sh
sudo apt install clamav-freshclam clamav-daemon
```
2. Move original `C:\` drive to new location.
```sh
mv ~/.wine/drive_c ~/.wine/raw_drive_c
mkdir ~/.wine/drive_c
```
3. Copy [clamfs.xml](doc/clamfs.xml) to `~/.wine/clamfs.xml`.
4. Set following options in `clamfs.xml`. Make sure `mode="fdpass"` and
`public="no"` are set.
```xml
<clamd socket="/var/run/clamav/clamd.ctl" mode="fdpass" check="yes" />
<filesystem root="/home/user/.wine/raw_drive_c" mountpoint="/home/user/.wine/drive_c" public="no" />
```
5. Mount ClamFS filesystem as normal user with this command.
```sh
clamfs ~/.wine/clamfs.xml
```
6. Run any WINE software and check logs with.
```sh
sudo tail -F /var/log/clamav/clamav.log /var/log/syslog
```
For legacy configuration without `mode=fdpass` enabled please refer to my blog
post [Wine with on-access ClamAV scanning](https://blog.burghardt.pl/2007/11/wine-with-on-access-clamav-scanning/)
if you are interested in running ClamFS version <= 1.1.0 to protect WINE
installation.
### Installing FUSE v3 from sources
If your operating system does not provide binary package for `libfuse3` (like
Ubuntu 18.04 LTS) installing `fuse3` from sources into `/usr/local` might be
simplest method to install this dependency. Following commands installs current
`master` branch from Github `libfuse` repository:
```sh
sudo apt-get -y --no-install-recommends install meson ninja-build
mkdir /tmp/fuse3 ; cd /tmp/fuse3
git clone --depth 1 https://github.com/libfuse/libfuse.git .
mkdir build ; cd build
meson ..
ninja
sudo ninja install
```
Please note that Debian 9 (codename "Stretch") is unable to build fuse3 as
meson version provided in stretch repository is too old (package version is
0.37.1, but fuse requires >= 0.42).
## License
This project is licensed under the GPLv2 License - see the
[COPYING](COPYING) file for details.
## Historical repositories at SourceForge
Long time ago [ClamFS](http://clamfs.sourceforge.net/) was developed on
[SourceForge](https://sourceforge.net/projects/clamfs/) and some CVS and
SVN repositories still resides there. Right now all development takes place
on GitHub.
|