Zheng Da

Email: zhengda1936 at gmail dot com


Project: Porting DDE to Hurd.

The goal:

porting DDE developed by DROPS to the Hurd, and it will still run in the user space.

Introduction

The introduction of DDE/DDEKit can be found in here and more information can be found here. DDE/DDEKit is a library, and it should be compiled with the code of Linux or FreeBSD drivers. DDE Linux26 is still under development and it can now support network and block devices (but doesn't support SCSI).

My work

I separate DDE Linux26 to 2 parts: libddekit and libdde_linux26. I also provide a library called libmachdev on the top of the Linux code to provide the Mach device interface, so it is easy for the user to compile a Linux driver and run it in the Hurd. The latest code can be found in the dde branch of the incubator repository.

The current status: the pcnet32 driver can work very well in DDE Linux26 now. I hope someone can try other NIC drivers. Please run DDE with GNUMach in the master-user_level_drivers branch.

There is a minor problem when we compile a Linux driver. Linux drivers use jiffies to measure time. Unfortunately, Mach doesn't provide it, so whenever we need it, we need to calculate it by ourselves. I decide to provide a macro to calculate it for the sake of performance and the cost is that the source code of Linux drivers has to include ddekit/timer.h.

Build and run DDE drivers

To build a Linux driver with DDE Linux, the easiest way is to use dde_pcnet32 (also in the dde branch) as a template. The directory of dde_pcnet32 has Makefile, Makeconf.local, default.ld, pcnet32.c and main.c. If we need to build a new driver file, we only need to replace pcnet32.c with the new file and change Makefile accordingly.

To run a DDE NIC driver:

settrans -acfg pcnet32 hurd/dde_pcnet32/dde_pcnet32 settrans -acfg /dev/eth0 hurd/devnode/devnode eth0 -M pcnet32 settrans -acfg /servers/socket/2 hurd/pfinet/pfinet -i /dev/eth0 -a 172.16.172.10 -g 172.16.172.2 -m 255.255.255.0


Project: Network virtualization for subhurds etc.

The code. The howto shows the instructions of setting up the virtual network in hurd and subhurd.

The design and the implementation

The requirements:

The possible approach is to use the multiplexer and the filter.

The multiplexer's roles are:

  1. to create some virtual network interface, so pfinet can send packets to it.
  2. to receive the packet from pfinet, and forward the packet to other pfinets in hurd
  3. or forward the packet to the real network device in the kernel and send it to the network.

A filter translator is needed to enforce the policies between the interface and the pfinet server. For example, the filter can control which packets can be delivered to the pfinet server, and which packets can be sent to the network interface. The filter can also guard the network traffic and drop illegal packets (forged by some malicious users) from pfinet or some other programs.

To create a virtual network interface:

The routing inside the multiplexer:

The implementation of the filter translator:

TODO

Coding

Completed tasks

Coding

The patch of glibc (pfinet server overriding) is here.

The patch of pfinet (open the virtual network interface) is here.

The patch of pfinet (fix pfinet to use the proper filter rule) is here.

The patch of pfinet (set the mach device in the promiscuous mode) is here.

The patch of boot (open the virtual network interface) is here.

The patch of gnumach (set the network device into the promiscuous mode) is here.

the multiplexer:

the filter translator:

the proxy of the proc server:

the devnode translator:

Documentation Read