b53f35a809
A bunch of MTU-related cleanups in the network code. First, there is the addition of the notion of a maximally-sized packet, which is the MTU plus headers. This is used to size the skb that will receive a packet. This allows ether_adjust_skb to go away, as it was used to resize the skb after it was allocated. Since the skb passed into the low-level read routine is no longer resized, and possibly reallocated, there, they (and the write routines) don't need to get an sk_buff **. They just need the sk_buff * now. The callers of ether_adjust_skb still need to do the skb_put, so that's now inlined. The MAX_PACKET definitions in most of the drivers are gone. The set_mtu methods were all the same and did nothing, so they can be removed. The ethertap driver had a typo which doubled the size of the packet rather than adding two bytes to it. It also wasn't defining its setup_size, causing a zero-byte kmalloc and crash when the invalid pointer returned from kmalloc was dereferenced. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
97 lines
2.1 KiB
C
97 lines
2.1 KiB
C
/*
|
|
* Copyright (C) 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
|
* Licensed under the GPL.
|
|
*/
|
|
|
|
#include <linux/if_arp.h>
|
|
#include <linux/init.h>
|
|
#include <linux/netdevice.h>
|
|
#include "net_kern.h"
|
|
#include "slip.h"
|
|
|
|
struct slip_init {
|
|
char *gate_addr;
|
|
};
|
|
|
|
void slip_init(struct net_device *dev, void *data)
|
|
{
|
|
struct uml_net_private *private;
|
|
struct slip_data *spri;
|
|
struct slip_init *init = data;
|
|
|
|
private = dev->priv;
|
|
spri = (struct slip_data *) private->user;
|
|
|
|
memset(spri->name, 0, sizeof(spri->name));
|
|
spri->addr = NULL;
|
|
spri->gate_addr = init->gate_addr;
|
|
spri->slave = -1;
|
|
spri->dev = dev;
|
|
|
|
slip_proto_init(&spri->slip);
|
|
|
|
dev->init = NULL;
|
|
dev->header_cache_update = NULL;
|
|
dev->hard_header_cache = NULL;
|
|
dev->hard_header = NULL;
|
|
dev->hard_header_len = 0;
|
|
dev->addr_len = 0;
|
|
dev->type = ARPHRD_SLIP;
|
|
dev->tx_queue_len = 256;
|
|
dev->flags = IFF_NOARP;
|
|
printk("SLIP backend - SLIP IP = %s\n", spri->gate_addr);
|
|
}
|
|
|
|
static unsigned short slip_protocol(struct sk_buff *skbuff)
|
|
{
|
|
return htons(ETH_P_IP);
|
|
}
|
|
|
|
static int slip_read(int fd, struct sk_buff *skb, struct uml_net_private *lp)
|
|
{
|
|
return slip_user_read(fd, skb_mac_header(skb), skb->dev->mtu,
|
|
(struct slip_data *) &lp->user);
|
|
}
|
|
|
|
static int slip_write(int fd, struct sk_buff *skb, struct uml_net_private *lp)
|
|
{
|
|
return slip_user_write(fd, skb->data, skb->len,
|
|
(struct slip_data *) &lp->user);
|
|
}
|
|
|
|
const struct net_kern_info slip_kern_info = {
|
|
.init = slip_init,
|
|
.protocol = slip_protocol,
|
|
.read = slip_read,
|
|
.write = slip_write,
|
|
};
|
|
|
|
static int slip_setup(char *str, char **mac_out, void *data)
|
|
{
|
|
struct slip_init *init = data;
|
|
|
|
*init = ((struct slip_init) { .gate_addr = NULL });
|
|
|
|
if (str[0] != '\0')
|
|
init->gate_addr = str;
|
|
return 1;
|
|
}
|
|
|
|
static struct transport slip_transport = {
|
|
.list = LIST_HEAD_INIT(slip_transport.list),
|
|
.name = "slip",
|
|
.setup = slip_setup,
|
|
.user = &slip_user_info,
|
|
.kern = &slip_kern_info,
|
|
.private_size = sizeof(struct slip_data),
|
|
.setup_size = sizeof(struct slip_init),
|
|
};
|
|
|
|
static int register_slip(void)
|
|
{
|
|
register_transport(&slip_transport);
|
|
return 0;
|
|
}
|
|
|
|
late_initcall(register_slip);
|