Jump to content

Synthetic file system

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by RHaworth (talk | contribs) at 19:00, 7 March 2008 (moved Synthetic Filesystem to Synthetic file system). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Synthetic Filesystems are an model in Computer Sciences to provide an Filesystem interface to objects, which are not really in the classical manner.

This way, the well approved filesystem semantics can be reused for a universal and easy to implement approach to Interprocess communication. Clients just have to work with simple file operations and don't have to care about things like message encoding/passing and other aspects of protocol engineering. For most operations, common file utilities can be used, so even scripting is quite easy.

Examples

/proc filesystem

In the Unix-world, there is commonly an special filesystem mounted at /proc. This filesystem is implemented within the kernel and publishes a lot of information about running processes. For each running process, there's an directory (named by the process ID), containing detailed information about the process: status, open files, memory maps, mounts, etc.

Linux /sys filesystem

The /sys filesystem on Linux is a counterpart to /proc, which provides a lot of (non-process related) detailed information about the in-kernel status to userspace, eg. devices, busses and loaded modules.

ObexFS

This FUSE-based filesystem provides access to OBEX objects via an filesystem. So applications can work on remote objects via the OBEX protocol as they were simply (local) files.

Plan9 fileservers

On the Plan9 operating system family, the concept of synthetic filesystem is used as an generic IPC method. Contrary to most other operating systems, Plan9's design is heavily distributed: while in other OS worlds, there are many (and often large) libraries and frameworks for common things, Plan9 encapsulates them into fileservers. The most important benefit is that applications can much simpler and services run network and platform agnostic - they can reside on virtually any host and platform in the network, and virtually any kind of network, as long the fileserver can be mounted by the application.

Plan9 drives this concept very excessively: even most operating system services, eg. hardware access and networking stack are presented as fileservers. This way it's trivial to use these resources remotely (eg. one host directly accessing another host's block devices or network interfaces) without the need of additional protocols.

Embedded-Systems / System-On-Chip

Debugging Embedded Systems or even SoC devices is widely known to be a hard job. Several protocols have been implemented to provide direct access to in-chip devices, but they tend to be proprietary, complex and hard to handle.

Based on 9P, Plan9's network filesystem, studies suggest using synthetic filesystems as universal access scheme to those information. The major benefit is that 9P is very simple and so quite easy to implement in hardware and can be easily used and over virtually any kind of network (from an serial link up to the internet).

9forge project

The 9forge project develops service interfaces for many kind of common applications (eg. Browsers, Mail-Clients, Office suites) based on 9P-speaking synthetic filesystems and also ports some applications to use them.

One current point of work is the Mozilla suite, which shall do things like message storage and profile handling via fileservers. At time of writing this article, the project is still in an early stage.

Arguments for using synthetic filesystems

The major point might be flexibility and easy access to service oriented architectures. Once a noticable number of applications use this scheme, the overall overhead (code, resource consumption, maintenance work) can be reduced significantly

Many general arguments for SOAs also apply here.

Arguments against synthetic filesystems

Not everything fits well into filesystem schemes. For example complex RPCs with lots of parameters tend to be hard to map to filesystem schemes. Altough it should be doable most times, it often implies the need for major redesigns.