Difference between revisions of "New stack"

From KolibriOS wiki
Jump to navigation Jump to search
Line 58: Line 58:
  
 
== Programs ==
 
== Programs ==
 +
 +
=== FTPc ===
 +
CLI FTP client.
  
 
=== FTPd ===
 
=== FTPd ===

Revision as of 08:13, 15 July 2013

This page describes the development of the new network stack for KolibriOS
Since SVN #3556, the code has been merged in trunk and is now available in the english, russian spanish and italian builds of kolibrios!
You can find the latest source code on svn://kolibrios.org/kernel/trunk (websvn)
You can download an image file with pre-compiled library, applications, kernel and drivers on the builds page
All bugs may be reported to KolibriOS bug tracker

Kernel

The old kernel functions 52 and 53 have been removed and the New_network_api has been created.
Internally, the stack has been completely rewritten (mostly from scratch)

  • Working
    • Attaching multiple network drivers/devices to the kernel
    • Sending and receiving Ethernet/IPv4/UDP/ICMP/ARP/TCP packets
    • Queuing of packets when nescessary
    • UDP/TCP/RAW(ICMP/IP..) sockets (POSIX compatible)
    • Blocking sockets (needs testing)
    • IPC/local sockets (needs testing)
  • Under construction
    • Simple routing
    • PPP (the kernel part)
  • TODO
    • TCP: reassembly queue, testing (timestamps, rtt, PAWS, ...), ...

Drivers

In net-branch, the network drivers are external drivers, as described in Writing_drivers_for_KolibriOS.

The specifications of the new network drivers can be found in the article Writing_network_drivers_for_KolibriOS.

Working (more or less)

  • 3c90x/3c59x
  • DEC21x4x
  • i8254x (Intel eepro 1000)
  • MTD80x
  • PCnet32
  • r6040
  • rhine (VIA)
  • RTL8029
  • RTL8139
  • RTL8169
  • SIS900

[known bugs in network drivers]

Work In Progress

  • i8255x (Intel eepro 100)
  • forcedeth

Planned for future

  • marvell yukon (88e80xx)
  • broadcom netXtreme (bcm57xx)

Unsupported PCI card?

If you have a PCI ethernet card wich is not listed above, and would like to acces internet in KolibriOS, send me the card, and I'll send you one that is supported already.

Programs

FTPc

CLI FTP client.

FTPd

Full fledged FTP daemon. Fully configureable through ini files. Status: Basic commands work. Program is not stable yet. uses libini.obj, libio.obj and console.obj

IRCC

New IRC client. Under construction. uses network.obj, libini.obj and box_lib.obj

NetCFG

This program is used to load the network drivers.
You can run it with parameter 'F' to silently load first detected card, or parameter 'A' to load all cards.
No parameters will load the GUI.

Netstat

This program allows you to read the status of ethernet, ipv4, icmp, arp udp and tcp.

nslookup

Commandline DNS client.
This program uses network.obj and console.obj

ping (formerly called ICMP)

A program to ping a remote host
Only fixed packet size for now
uses network.obj, libini.obj and console.obj

SynergyC

Software KM-switch, (Synergy - client) for windows/unix/.. versions, see http://synergy-foss.org
This version is compatible with version 1.3.1
Only mouse events are accepted in the current version.
There is a bug in the loading of libraries wich might cause program to crash on loading
uses network.obj, libini.obj and console.obj

Telnet

A simple telnet client
This program uses network.obj and console.obj

TFTPc

A TFTP client with a GUI.
uses libio.obj, network.obj and box_lib.obj

VNCclient

Under construction

Zeroconf

This program reads settings from network.ini and configures the tcp/ip stack accordingly
You may choose for a manual setup, or dhcp / link-local.

NetSurf

Sourcerer is working on a Netsurf port for KolibriOS, hopefully it will work hand in hand with the new network stack, somewhere in the near future!

SocketDBG

Program that can be used for printing socket variables, usefull for debugging.

PPPoE

PPPoE dialer - unfinished

TCPserv

TCP server demo program, this program can be used with iperf client to measure performance of the stack.

Libraries

network_lib

The network library for KolibriOS, written by Clevermouse.

Applications, old vs new

old new remarks
airc ircc IRC client (rewritten from scratch)
arpstat netstat ARP configuration utility (rewritten)
chess / may be ported
dhcp / replaced by zeroconf
dnsr nslookup Name service lookup (DNS resolver)
downloader downloader ported
ethstat / N/A
ftps ftpd FTP daemon (server)
https / may be ported, better to rewrite
icq / may be ported
ipc / may be ported
local / may be ported
mp3s / may be ported
netsendc / may be ported
netsends / may be ported
nntpc / may be ported
popc / may be ported (or replaced with liza?)
ppp / N/A (a new utility should be made)
rccc / may be ported
rccs / may be ported
remote / may be ported
smtps / may be ported
stackcfg netstat not possible to manually set ip yet (and may need better name)
telnet telnet rewritten from scratch
terminal / N/A
tftpa / may be ported
tftpc tftpc Trivial File Transer Protocol Client
VNCclient vncc ported
ym / may be ported
zeroconf zeroconf ported

I need your help!

If you think you can help the further development of this branch in any way, please post on the forum or join the IRC channel.