Release 4.18 net/netfilter/ipvs/ip_vs_ftp.c
/*
* ip_vs_ftp.c: IPVS ftp application module
*
* Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
*
* Changes:
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version
* 2 of the License, or (at your option) any later version.
*
* Most code here is taken from ip_masq_ftp.c in kernel 2.2. The difference
* is that ip_vs_ftp module handles the reverse direction to ip_masq_ftp.
*
* IP_MASQ_FTP ftp masquerading module
*
* Version: @(#)ip_masq_ftp.c 0.04 02/05/96
*
* Author: Wouter Gadeyne
*
*/
#define KMSG_COMPONENT "IPVS"
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
#include <linux/skbuff.h>
#include <linux/ctype.h>
#include <linux/inet.h>
#include <linux/in.h>
#include <linux/ip.h>
#include <linux/netfilter.h>
#include <net/netfilter/nf_conntrack.h>
#include <net/netfilter/nf_conntrack_expect.h>
#include <net/netfilter/nf_nat.h>
#include <net/netfilter/nf_nat_helper.h>
#include <linux/gfp.h>
#include <net/protocol.h>
#include <net/tcp.h>
#include <asm/unaligned.h>
#include <net/ip_vs.h>
#define SERVER_STRING_PASV "227 "
#define CLIENT_STRING_PORT "PORT"
#define SERVER_STRING_EPSV "229 "
#define CLIENT_STRING_EPRT "EPRT"
enum {
IP_VS_FTP_ACTIVE = 0,
IP_VS_FTP_PORT = 0,
IP_VS_FTP_PASV,
IP_VS_FTP_EPRT,
IP_VS_FTP_EPSV,
};
/*
* List of ports (up to IP_VS_APP_MAX_PORTS) to be handled by helper
* First port is set to the default port.
*/
static unsigned int ports_count = 1;
static unsigned short ports[IP_VS_APP_MAX_PORTS] = {21, 0};
module_param_array(ports, ushort, &ports_count, 0444);
MODULE_PARM_DESC(ports, "Ports to monitor for FTP control commands");
static char *ip_vs_ftp_data_ptr(struct sk_buff *skb, struct ip_vs_iphdr *ipvsh)
{
struct tcphdr *th = (struct tcphdr *)((char *)skb->data + ipvsh->len);
if ((th->doff << 2) < sizeof(struct tcphdr))
return NULL;
return (char *)th + (th->doff << 2);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Julian Anastasov | 73 | 97.33% | 1 | 50.00% |
| Wensong Zhang | 2 | 2.67% | 1 | 50.00% |
| Total | 75 | 100.00% | 2 | 100.00% |
static int
ip_vs_ftp_init_conn(struct ip_vs_app *app, struct ip_vs_conn *cp)
{
/* We use connection tracking for the command connection */
cp->flags |= IP_VS_CONN_F_NFCT;
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Wensong Zhang | 19 | 73.08% | 1 | 50.00% |
| Julian Anastasov | 7 | 26.92% | 1 | 50.00% |
| Total | 26 | 100.00% | 2 | 100.00% |
static int
ip_vs_ftp_done_conn(struct ip_vs_app *app, struct ip_vs_conn *cp)
{
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Wensong Zhang | 19 | 100.00% | 1 | 100.00% |
| Total | 19 | 100.00% | 1 | 100.00% |
/* Get <addr,port> from the string "xxx.xxx.xxx.xxx,ppp,ppp", started
* with the "pattern". <addr,port> is in network order.
* Parse extended format depending on ext. In this case addr can be pre-set.
*/
static int ip_vs_ftp_get_addrport(char *data, char *data_limit,
const char *pattern, size_t plen,
char skip, bool ext, int mode,
union nf_inet_addr *addr, __be16 *port,
__u16 af, char **start, char **end)
{
char *s, c;
unsigned char p[6];
char edelim;
__u16 hport;
int i = 0;
if (data_limit - data < plen) {
/* check if there is partial match */
if (strncasecmp(data, pattern, data_limit - data) == 0)
return -1;
else
return 0;
}
if (strncasecmp(data, pattern, plen) != 0) {
return 0;
}
s = data + plen;
if (skip) {
int found = 0;
for (;; s++) {
if (s == data_limit)
return -1;
if (!found) {
/* "(" is optional for non-extended format,
* so catch the start of IPv4 address
*/
if (!ext && isdigit(*s))
break;
if (*s == skip)
found = 1;
} else if (*s != skip) {
break;
}
}
}
/* Old IPv4-only format? */
if (!ext) {
p[0] = 0;
for (data = s; ; data++) {
if (data == data_limit)
return -1;
c = *data;
if (isdigit(c)) {
p[i] = p[i]*10 + c - '0';
} else if (c == ',' && i < 5) {
i++;
p[i] = 0;
} else {
/* unexpected character or terminator */
break;
}
}
if (i != 5)
return -1;
*start = s;
*end = data;
addr->ip = get_unaligned((__be32 *) p);
*port = get_unaligned((__be16 *) (p + 4));
return 1;
}
if (s == data_limit)
return -1;
*start = s;
edelim = *s++;
if (edelim < 33 || edelim > 126)
return -1;
if (s == data_limit)
return -1;
if (*s == edelim) {
/* Address family is usually missing for EPSV response */
if (mode != IP_VS_FTP_EPSV)
return -1;
s++;
if (s == data_limit)
return -1;
/* Then address should be missing too */
if (*s != edelim)
return -1;
/* Caller can pre-set addr, if needed */
s++;
} else {
const char *ep;
/* We allow address only from same family */
if (af == AF_INET6 && *s != '2')
return -1;
if (af == AF_INET && *s != '1')
return -1;
s++;
if (s == data_limit)
return -1;
if (*s != edelim)
return -1;
s++;
if (s == data_limit)
return -1;
if (af == AF_INET6) {
if (in6_pton(s, data_limit - s, (u8 *)addr, edelim,
&ep) <= 0)
return -1;
} else {
if (in4_pton(s, data_limit - s, (u8 *)addr, edelim,
&ep) <= 0)
return -1;
}
s = (char *) ep;
if (s == data_limit)
return -1;
if (*s != edelim)
return -1;
s++;
}
for (hport = 0; ; s++)
{
if (s == data_limit)
return -1;
if (!isdigit(*s))
break;
hport = hport * 10 + *s - '0';
}
if (s == data_limit || !hport || *s != edelim)
return -1;
s++;
*end = s;
*port = htons(hport);
return 1;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Julian Anastasov | 546 | 77.67% | 3 | 42.86% |
| Hannes Eder | 77 | 10.95% | 1 | 14.29% |
| Wensong Zhang | 77 | 10.95% | 1 | 14.29% |
| Rasmus Villemoes | 2 | 0.28% | 1 | 14.29% |
| Al Viro | 1 | 0.14% | 1 | 14.29% |
| Total | 703 | 100.00% | 7 | 100.00% |
/* Look at outgoing ftp packets to catch the response to a PASV/EPSV command
* from the server (inside-to-outside).
* When we see one, we build a connection entry with the client address,
* client port 0 (unknown at the moment), the server address and the
* server port. Mark the current connection entry as a control channel
* of the new entry. All this work is just to make the data connection
* can be scheduled to the right server later.
*
* The outgoing packet should be something like
* "227 Entering Passive Mode (xxx,xxx,xxx,xxx,ppp,ppp)".
* xxx,xxx,xxx,xxx is the server address, ppp,ppp is the server port number.
* The extended format for EPSV response provides usually only port:
* "229 Entering Extended Passive Mode (|||ppp|)"
*/
static int ip_vs_ftp_out(struct ip_vs_app *app, struct ip_vs_conn *cp,
struct sk_buff *skb, int *diff,
struct ip_vs_iphdr *ipvsh)
{
char *data, *data_limit;
char *start, *end;
union nf_inet_addr from;
__be16 port;
struct ip_vs_conn *n_cp;
char buf[24]; /* xxx.xxx.xxx.xxx,ppp,ppp\000 */
unsigned int buf_len;
int ret = 0;
enum ip_conntrack_info ctinfo;
struct nf_conn *ct;
*diff = 0;
/* Only useful for established sessions */
if (cp->state != IP_VS_TCP_S_ESTABLISHED)
return 1;
/* Linear packets are much easier to deal with. */
if (!skb_make_writable(skb, skb->len))
return 0;
if (cp->app_data == (void *) IP_VS_FTP_PASV) {
data = ip_vs_ftp_data_ptr(skb, ipvsh);
data_limit = skb_tail_pointer(skb);
if (!data || data >= data_limit)
return 1;
if (ip_vs_ftp_get_addrport(data, data_limit,
SERVER_STRING_PASV,
sizeof(SERVER_STRING_PASV)-1,
'(', false, IP_VS_FTP_PASV,
&from, &port, cp->af,
&start, &end) != 1)
return 1;
IP_VS_DBG(7, "PASV response (%pI4:%u) -> %pI4:%u detected\n",
&from.ip, ntohs(port), &cp->caddr.ip, 0);
} else if (cp->app_data == (void *) IP_VS_FTP_EPSV) {
data = ip_vs_ftp_data_ptr(skb, ipvsh);
data_limit = skb_tail_pointer(skb);
if (!data || data >= data_limit)
return 1;
/* Usually, data address is not specified but
* we support different address, so pre-set it.
*/
from = cp->daddr;
if (ip_vs_ftp_get_addrport(data, data_limit,
SERVER_STRING_EPSV,
sizeof(SERVER_STRING_EPSV)-1,
'(', true, IP_VS_FTP_EPSV,
&from, &port, cp->af,
&start, &end) != 1)
return 1;
IP_VS_DBG_BUF(7, "EPSV response (%s:%u) -> %s:%u detected\n",
IP_VS_DBG_ADDR(cp->af, &from), ntohs(port),
IP_VS_DBG_ADDR(cp->af, &cp->caddr), 0);
} else {
return 1;
}
/* Now update or create a connection entry for it */
{
struct ip_vs_conn_param p;
ip_vs_conn_fill_param(cp->ipvs, cp->af,
ipvsh->protocol, &from, port,
&cp->caddr, 0, &p);
n_cp = ip_vs_conn_out_get(&p);
}
if (!n_cp) {
struct ip_vs_conn_param p;
ip_vs_conn_fill_param(cp->ipvs,
cp->af, ipvsh->protocol, &cp->caddr,
0, &cp->vaddr, port, &p);
n_cp = ip_vs_conn_new(&p, cp->af, &from, port,
IP_VS_CONN_F_NO_CPORT |
IP_VS_CONN_F_NFCT,
cp->dest, skb->mark);
if (!n_cp)
return 0;
/* add its controller */
ip_vs_control_add(n_cp, cp);
}
/* Replace the old passive address with the new one */
if (cp->app_data == (void *) IP_VS_FTP_PASV) {
from.ip = n_cp->vaddr.ip;
port = n_cp->vport;
snprintf(buf, sizeof(buf), "%u,%u,%u,%u,%u,%u",
((unsigned char *)&from.ip)[0],
((unsigned char *)&from.ip)[1],
((unsigned char *)&from.ip)[2],
((unsigned char *)&from.ip)[3],
ntohs(port) >> 8,
ntohs(port) & 0xFF);
} else if (cp->app_data == (void *) IP_VS_FTP_EPSV) {
from = n_cp->vaddr;
port = n_cp->vport;
/* Only port, client will use VIP for the data connection */
snprintf(buf, sizeof(buf), "|||%u|",
ntohs(port));
} else {
*buf = 0;
}
buf_len = strlen(buf);
ct = nf_ct_get(skb, &ctinfo);
if (ct) {
bool mangled;
/* If mangling fails this function will return 0
* which will cause the packet to be dropped.
* Mangling can only fail under memory pressure,
* hopefully it will succeed on the retransmitted
* packet.
*/
mangled = nf_nat_mangle_tcp_packet(skb, ct, ctinfo,
ipvsh->len,
start - data,
end - start,
buf, buf_len);
if (mangled) {
ip_vs_nfct_expect_related(skb, ct, n_cp,
ipvsh->protocol, 0, 0);
if (skb->ip_summed == CHECKSUM_COMPLETE)
skb->ip_summed = CHECKSUM_UNNECESSARY;
/* csum is updated */
ret = 1;
}
}
/* Not setting 'diff' is intentional, otherwise the sequence
* would be adjusted twice.
*/
cp->app_data = (void *) IP_VS_FTP_ACTIVE;
ip_vs_tcp_conn_listen(n_cp);
ip_vs_conn_put(n_cp);
return ret;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Julian Anastasov | 345 | 43.84% | 6 | 21.43% |
| Wensong Zhang | 241 | 30.62% | 1 | 3.57% |
| Joe Perches | 63 | 8.01% | 2 | 7.14% |
| Hannes Eder | 42 | 5.34% | 1 | 3.57% |
| Simon Horman | 35 | 4.45% | 2 | 7.14% |
| Julius Volz | 15 | 1.91% | 2 | 7.14% |
| Hans Schillstrom | 8 | 1.02% | 2 | 7.14% |
| Al Viro | 7 | 0.89% | 1 | 3.57% |
| Herbert Xu | 6 | 0.76% | 2 | 7.14% |
| Dan Carpenter | 5 | 0.64% | 1 | 3.57% |
| Arnaldo Carvalho de Melo | 5 | 0.64% | 2 | 7.14% |
| Gao Feng | 5 | 0.64% | 1 | 3.57% |
| Eric W. Biedermann | 4 | 0.51% | 1 | 3.57% |
| Harvey Harrison | 2 | 0.25% | 1 | 3.57% |
| Patrick McHardy | 2 | 0.25% | 1 | 3.57% |
| Alex Gartrell | 1 | 0.13% | 1 | 3.57% |
| Eric Dumazet | 1 | 0.13% | 1 | 3.57% |
| Total | 787 | 100.00% | 28 | 100.00% |
/* Look at incoming ftp packets to catch the PASV/PORT/EPRT/EPSV command
* (outside-to-inside).
*
* The incoming packet having the PORT command should be something like
* "PORT xxx,xxx,xxx,xxx,ppp,ppp\n".
* xxx,xxx,xxx,xxx is the client address, ppp,ppp is the client port number.
* In this case, we create a connection entry using the client address and
* port, so that the active ftp data connection from the server can reach
* the client.
* Extended format:
* "EPSV\r\n" when client requests server address from same family
* "EPSV 1\r\n" when client requests IPv4 server address
* "EPSV 2\r\n" when client requests IPv6 server address
* "EPSV ALL\r\n" - not supported
* EPRT with specified delimiter (ASCII 33..126), "|" by default:
* "EPRT |1|IPv4ADDR|PORT|\r\n" when client provides IPv4 addrport
* "EPRT |2|IPv6ADDR|PORT|\r\n" when client provides IPv6 addrport
*/
static int ip_vs_ftp_in(struct ip_vs_app *app, struct ip_vs_conn *cp,
struct sk_buff *skb, int *diff,
struct ip_vs_iphdr *ipvsh)
{
char *data, *data_start, *data_limit;
char *start, *end;
union nf_inet_addr to;
__be16 port;
struct ip_vs_conn *n_cp;
/* no diff required for incoming packets */
*diff = 0;
/* Only useful for established sessions */
if (cp->state != IP_VS_TCP_S_ESTABLISHED)
return 1;
/* Linear packets are much easier to deal with. */
if (!skb_make_writable(skb, skb->len))
return 0;
data = data_start = ip_vs_ftp_data_ptr(skb, ipvsh);
data_limit = skb_tail_pointer(skb);
if (!data || data >= data_limit)
return 1;
while (data <= data_limit - 6) {
if (cp->af == AF_INET &&
strncasecmp(data, "PASV\r\n", 6) == 0) {
/* Passive mode on */
IP_VS_DBG(7, "got PASV at %td of %td\n",
data - data_start,
data_limit - data_start);
cp->app_data = (void *) IP_VS_FTP_PASV;
return 1;
}
/* EPSV or EPSV<space><net-prt> */
if (strncasecmp(data, "EPSV", 4) == 0 &&
(data[4] == ' ' || data[4] == '\r')) {
if (data[4] == ' ') {
char proto = data[5];
if (data > data_limit - 7 || data[6] != '\r')
return 1;
#ifdef CONFIG_IP_VS_IPV6
if (cp->af == AF_INET6 && proto == '2') {
} else
#endif
if (cp->af == AF_INET && proto == '1') {
} else {
return 1;
}
}
/* Extended Passive mode on */
IP_VS_DBG(7, "got EPSV at %td of %td\n",
data - data_start,
data_limit - data_start);
cp->app_data = (void *) IP_VS_FTP_EPSV;
return 1;
}
data++;
}
/*
* To support virtual FTP server, the scenerio is as follows:
* FTP client ----> Load Balancer ----> FTP server
* First detect the port number in the application data,
* then create a new connection entry for the coming data
* connection.
*/
if (cp->af == AF_INET &&
ip_vs_ftp_get_addrport(data_start, data_limit,
CLIENT_STRING_PORT,
sizeof(CLIENT_STRING_PORT)-1,
' ', false, IP_VS_FTP_PORT,
&to, &port, cp->af,
&start, &end) == 1) {
IP_VS_DBG(7, "PORT %pI4:%u detected\n", &to.ip, ntohs(port));
/* Now update or create a connection entry for it */
IP_VS_DBG(7, "protocol %s %pI4:%u %pI4:%u\n",
ip_vs_proto_name(ipvsh->protocol),
&to.ip, ntohs(port), &cp->vaddr.ip,
ntohs(cp->vport)-1);
} else if (ip_vs_ftp_get_addrport(data_start, data_limit,
CLIENT_STRING_EPRT,
sizeof(CLIENT_STRING_EPRT)-1,
' ', true, IP_VS_FTP_EPRT,
&to, &port, cp->af,
&start, &end) == 1) {
IP_VS_DBG_BUF(7, "EPRT %s:%u detected\n",
IP_VS_DBG_ADDR(cp->af, &to), ntohs(port));
/* Now update or create a connection entry for it */
IP_VS_DBG_BUF(7, "protocol %s %s:%u %s:%u\n",
ip_vs_proto_name(ipvsh->protocol),
IP_VS_DBG_ADDR(cp->af, &to), ntohs(port),
IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
ntohs(cp->vport)-1);
} else {
return 1;
}
/* Passive mode off */
cp->app_data = (void *) IP_VS_FTP_ACTIVE;
{
struct ip_vs_conn_param p;
ip_vs_conn_fill_param(cp->ipvs, cp->af,
ipvsh->protocol, &to, port, &cp->vaddr,
htons(ntohs(cp->vport)-1), &p);
n_cp = ip_vs_conn_in_get(&p);
if (!n_cp) {
n_cp = ip_vs_conn_new(&p, cp->af, &cp->daddr,
htons(ntohs(cp->dport)-1),
IP_VS_CONN_F_NFCT, cp->dest,
skb->mark);
if (!n_cp)
return 0;
/* add its controller */
ip_vs_control_add(n_cp, cp);
}
}
/*
* Move tunnel to listen state
*/
ip_vs_tcp_conn_listen(n_cp);
ip_vs_conn_put(n_cp);
return 1;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Julian Anastasov | 385 | 55.32% | 4 | 21.05% |
| Wensong Zhang | 250 | 35.92% | 1 | 5.26% |
| Simon Horman | 22 | 3.16% | 2 | 10.53% |
| Julius Volz | 13 | 1.87% | 2 | 10.53% |
| Hans Schillstrom | 6 | 0.86% | 2 | 10.53% |
| Dan Carpenter | 6 | 0.86% | 1 | 5.26% |
| Herbert Xu | 5 | 0.72% | 2 | 10.53% |
| Harvey Harrison | 3 | 0.43% | 1 | 5.26% |
| Eric W. Biedermann | 2 | 0.29% | 1 | 5.26% |
| Arnaldo Carvalho de Melo | 2 | 0.29% | 1 | 5.26% |
| Alex Gartrell | 1 | 0.14% | 1 | 5.26% |
| Al Viro | 1 | 0.14% | 1 | 5.26% |
| Total | 696 | 100.00% | 19 | 100.00% |
static struct ip_vs_app ip_vs_ftp = {
.name = "ftp",
.type = IP_VS_APP_TYPE_FTP,
.protocol = IPPROTO_TCP,
.module = THIS_MODULE,
.incs_list = LIST_HEAD_INIT(ip_vs_ftp.incs_list),
.init_conn = ip_vs_ftp_init_conn,
.done_conn = ip_vs_ftp_done_conn,
.bind_conn = NULL,
.unbind_conn = NULL,
.pkt_out = ip_vs_ftp_out,
.pkt_in = ip_vs_ftp_in,
};
/*
* per netns ip_vs_ftp initialization
*/
static int __net_init __ip_vs_ftp_init(struct net *net)
{
int i, ret;
struct ip_vs_app *app;
struct netns_ipvs *ipvs = net_ipvs(net);
if (!ipvs)
return -ENOENT;
app = register_ip_vs_app(ipvs, &ip_vs_ftp);
if (IS_ERR(app))
return PTR_ERR(app);
for (i = 0; i < ports_count; i++) {
if (!ports[i])
continue;
ret = register_ip_vs_app_inc(ipvs, app, app->protocol, ports[i]);
if (ret)
goto err_unreg;
pr_info("%s: loaded support on port[%d] = %u\n",
app->name, i, ports[i]);
}
return 0;
err_unreg:
unregister_ip_vs_app(ipvs, &ip_vs_ftp);
return ret;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Wensong Zhang | 83 | 57.24% | 1 | 9.09% |
| Hans Schillstrom | 38 | 26.21% | 3 | 27.27% |
| Julian Anastasov | 19 | 13.10% | 3 | 27.27% |
| Eric W. Biedermann | 3 | 2.07% | 2 | 18.18% |
| Hannes Eder | 1 | 0.69% | 1 | 9.09% |
| Krzysztof Wilczynski | 1 | 0.69% | 1 | 9.09% |
| Total | 145 | 100.00% | 11 | 100.00% |
/*
* netns exit
*/
static void __ip_vs_ftp_exit(struct net *net)
{
struct netns_ipvs *ipvs = net_ipvs(net);
if (!ipvs)
return;
unregister_ip_vs_app(ipvs, &ip_vs_ftp);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Eric W. Biedermann | 17 | 48.57% | 1 | 25.00% |
| Hans Schillstrom | 16 | 45.71% | 2 | 50.00% |
| Julian Anastasov | 2 | 5.71% | 1 | 25.00% |
| Total | 35 | 100.00% | 4 | 100.00% |
static struct pernet_operations ip_vs_ftp_ops = {
.init = __ip_vs_ftp_init,
.exit = __ip_vs_ftp_exit,
};
static int __init ip_vs_ftp_init(void)
{
/* rcu_barrier() is called by netns on error */
return register_pernet_subsys(&ip_vs_ftp_ops);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Hans Schillstrom | 14 | 82.35% | 1 | 33.33% |
| Arushi Singhal | 2 | 11.76% | 1 | 33.33% |
| H Hartley Sweeten | 1 | 5.88% | 1 | 33.33% |
| Total | 17 | 100.00% | 3 | 100.00% |
/*
* ip_vs_ftp finish.
*/
static void __exit ip_vs_ftp_exit(void)
{
unregister_pernet_subsys(&ip_vs_ftp_ops);
/* rcu_barrier() is called by netns */
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Wensong Zhang | 13 | 81.25% | 1 | 33.33% |
| Hans Schillstrom | 2 | 12.50% | 1 | 33.33% |
| Julian Anastasov | 1 | 6.25% | 1 | 33.33% |
| Total | 16 | 100.00% | 3 | 100.00% |
module_init(ip_vs_ftp_init);
module_exit(ip_vs_ftp_exit);
MODULE_LICENSE("GPL");
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Julian Anastasov | 1420 | 51.37% | 10 | 20.83% |
| Wensong Zhang | 828 | 29.96% | 1 | 2.08% |
| Hannes Eder | 140 | 5.07% | 3 | 6.25% |
| Hans Schillstrom | 103 | 3.73% | 5 | 10.42% |
| Simon Horman | 67 | 2.42% | 4 | 8.33% |
| Joe Perches | 63 | 2.28% | 2 | 4.17% |
| Julius Volz | 28 | 1.01% | 2 | 4.17% |
| Eric W. Biedermann | 26 | 0.94% | 3 | 6.25% |
| Herbert Xu | 14 | 0.51% | 2 | 4.17% |
| Al Viro | 12 | 0.43% | 2 | 4.17% |
| Stephen Hemminger | 11 | 0.40% | 1 | 2.08% |
| Krzysztof Wilczynski | 11 | 0.40% | 1 | 2.08% |
| Dan Carpenter | 11 | 0.40% | 1 | 2.08% |
| Arnaldo Carvalho de Melo | 7 | 0.25% | 2 | 4.17% |
| Gao Feng | 5 | 0.18% | 1 | 2.08% |
| Harvey Harrison | 5 | 0.18% | 1 | 2.08% |
| Tejun Heo | 3 | 0.11% | 1 | 2.08% |
| Rasmus Villemoes | 2 | 0.07% | 1 | 2.08% |
| Patrick McHardy | 2 | 0.07% | 1 | 2.08% |
| Alex Gartrell | 2 | 0.07% | 1 | 2.08% |
| Arushi Singhal | 2 | 0.07% | 1 | 2.08% |
| Eric Dumazet | 1 | 0.04% | 1 | 2.08% |
| H Hartley Sweeten | 1 | 0.04% | 1 | 2.08% |
| Total | 2764 | 100.00% | 48 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.