summaryrefslogtreecommitdiffstats
path: root/sys/kern/uipc_jumbo.c
diff options
context:
space:
mode:
authorken <ken@FreeBSD.org>2002-06-26 03:37:47 +0000
committerken <ken@FreeBSD.org>2002-06-26 03:37:47 +0000
commit0d3a835f3f94caa05448371062a46d2485185ee1 (patch)
tree7892f78801d63bbf532093be61b62d33e321b8b8 /sys/kern/uipc_jumbo.c
parent371cb8c6de82e6b4b072b7d9b306a9c419c41175 (diff)
downloadFreeBSD-src-0d3a835f3f94caa05448371062a46d2485185ee1.zip
FreeBSD-src-0d3a835f3f94caa05448371062a46d2485185ee1.tar.gz
At long last, commit the zero copy sockets code.
MAKEDEV: Add MAKEDEV glue for the ti(4) device nodes. ti.4: Update the ti(4) man page to include information on the TI_JUMBO_HDRSPLIT and TI_PRIVATE_JUMBOS kernel options, and also include information about the new character device interface and the associated ioctls. man9/Makefile: Add jumbo.9 and zero_copy.9 man pages and associated links. jumbo.9: New man page describing the jumbo buffer allocator interface and operation. zero_copy.9: New man page describing the general characteristics of the zero copy send and receive code, and what an application author should do to take advantage of the zero copy functionality. NOTES: Add entries for ZERO_COPY_SOCKETS, TI_PRIVATE_JUMBOS, TI_JUMBO_HDRSPLIT, MSIZE, and MCLSHIFT. conf/files: Add uipc_jumbo.c and uipc_cow.c. conf/options: Add the 5 options mentioned above. kern_subr.c: Receive side zero copy implementation. This takes "disposable" pages attached to an mbuf, gives them to a user process, and then recycles the user's page. This is only active when ZERO_COPY_SOCKETS is turned on and the kern.ipc.zero_copy.receive sysctl variable is set to 1. uipc_cow.c: Send side zero copy functions. Takes a page written by the user and maps it copy on write and assigns it kernel virtual address space. Removes copy on write mapping once the buffer has been freed by the network stack. uipc_jumbo.c: Jumbo disposable page allocator code. This allocates (optionally) disposable pages for network drivers that want to give the user the option of doing zero copy receive. uipc_socket.c: Add kern.ipc.zero_copy.{send,receive} sysctls that are enabled if ZERO_COPY_SOCKETS is turned on. Add zero copy send support to sosend() -- pages get mapped into the kernel instead of getting copied if they meet size and alignment restrictions. uipc_syscalls.c:Un-staticize some of the sf* functions so that they can be used elsewhere. (uipc_cow.c) if_media.c: In the SIOCGIFMEDIA ioctl in ifmedia_ioctl(), avoid calling malloc() with M_WAITOK. Return an error if the M_NOWAIT malloc fails. The ti(4) driver and the wi(4) driver, at least, call this with a mutex held. This causes witness warnings for 'ifconfig -a' with a wi(4) or ti(4) board in the system. (I've only verified for ti(4)). ip_output.c: Fragment large datagrams so that each segment contains a multiple of PAGE_SIZE amount of data plus headers. This allows the receiver to potentially do page flipping on receives. if_ti.c: Add zero copy receive support to the ti(4) driver. If TI_PRIVATE_JUMBOS is not defined, it now uses the jumbo(9) buffer allocator for jumbo receive buffers. Add a new character device interface for the ti(4) driver for the new debugging interface. This allows (a patched version of) gdb to talk to the Tigon board and debug the firmware. There are also a few additional debugging ioctls available through this interface. Add header splitting support to the ti(4) driver. Tweak some of the default interrupt coalescing parameters to more useful defaults. Add hooks for supporting transmit flow control, but leave it turned off with a comment describing why it is turned off. if_tireg.h: Change the firmware rev to 12.4.11, since we're really at 12.4.11 plus fixes from 12.4.13. Add defines needed for debugging. Remove the ti_stats structure, it is now defined in sys/tiio.h. ti_fw.h: 12.4.11 firmware. ti_fw2.h: 12.4.11 firmware, plus selected fixes from 12.4.13, and my header splitting patches. Revision 12.4.13 doesn't handle 10/100 negotiation properly. (This firmware is the same as what was in the tree previously, with the addition of header splitting support.) sys/jumbo.h: Jumbo buffer allocator interface. sys/mbuf.h: Add a new external mbuf type, EXT_DISPOSABLE, to indicate that the payload buffer can be thrown away / flipped to a userland process. socketvar.h: Add prototype for socow_setup. tiio.h: ioctl interface to the character portion of the ti(4) driver, plus associated structure/type definitions. uio.h: Change prototype for uiomoveco() so that we'll know whether the source page is disposable. ufs_readwrite.c:Update for new prototype of uiomoveco(). vm_fault.c: In vm_fault(), check to see whether we need to do a page based copy on write fault. vm_object.c: Add a new function, vm_object_allocate_wait(). This does the same thing that vm_object allocate does, except that it gives the caller the opportunity to specify whether it should wait on the uma_zalloc() of the object structre. This allows vm objects to be allocated while holding a mutex. (Without generating WITNESS warnings.) vm_object_allocate() is implemented as a call to vm_object_allocate_wait() with the malloc flag set to M_WAITOK. vm_object.h: Add prototype for vm_object_allocate_wait(). vm_page.c: Add page-based copy on write setup, clear and fault routines. vm_page.h: Add page based COW function prototypes and variable in the vm_page structure. Many thanks to Drew Gallatin, who wrote the zero copy send and receive code, and to all the other folks who have tested and reviewed this code over the years.
Diffstat (limited to 'sys/kern/uipc_jumbo.c')
-rw-r--r--sys/kern/uipc_jumbo.c252
1 files changed, 252 insertions, 0 deletions
diff --git a/sys/kern/uipc_jumbo.c b/sys/kern/uipc_jumbo.c
new file mode 100644
index 0000000..4625752
--- /dev/null
+++ b/sys/kern/uipc_jumbo.c
@@ -0,0 +1,252 @@
+/*-
+ * Copyright (c) 1997, Duke University
+ * All rights reserved.
+ *
+ * Author:
+ * Andrew Gallatin <gallatin@cs.duke.edu>
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgements:
+ * This product includes software developed by Duke University
+ * 4. The name of Duke University may not be used to endorse or promote
+ * products derived from this software without specific prior written
+ * permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY DUKE UNIVERSITY ``AS IS'' AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DUKE UNIVERSITY BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITSOR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
+ * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+ * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * $FreeBSD$
+ */
+/*
+ * This is a set of routines for allocating large-sized mbuf payload
+ * areas, and is primarily intended for use in receive side mbuf
+ * allocation.
+ */
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/types.h>
+#include <sys/sockio.h>
+#include <sys/uio.h>
+#include <sys/lock.h>
+#include <sys/kernel.h>
+#include <sys/mutex.h>
+#include <sys/malloc.h>
+#include <vm/vm.h>
+#include <vm/pmap.h>
+#include <vm/vm_extern.h>
+#include <vm/pmap.h>
+#include <vm/vm_map.h>
+#include <vm/vm_map.h>
+#include <vm/vm_param.h>
+#include <vm/vm_pageout.h>
+#include <sys/vmmeter.h>
+#include <vm/vm_page.h>
+#include <vm/vm_object.h>
+#include <vm/vm_kern.h>
+#include <sys/proc.h>
+#include <sys/jumbo.h>
+
+/*
+ * XXX this may be too high or too low.
+ */
+#define JUMBO_MAX_PAGES 3072
+
+struct jumbo_kmap {
+ vm_offset_t kva;
+ SLIST_ENTRY(jumbo_kmap) entries; /* Singly-linked List. */
+};
+
+static SLIST_HEAD(jumbo_kmap_head, jumbo_kmap) jumbo_kmap_free,
+ jumbo_kmap_inuse;
+
+static struct mtx jumbo_mutex;
+MTX_SYSINIT(jumbo_lock, &jumbo_mutex, "jumbo mutex", MTX_DEF);
+
+static struct vm_object *jumbo_vm_object;
+static unsigned long jumbo_vmuiomove_pgs_freed = 0;
+#if 0
+static int jumbo_vm_wakeup_wanted = 0;
+#endif
+vm_offset_t jumbo_basekva;
+
+int
+jumbo_vm_init(void)
+{
+ int i;
+ struct jumbo_kmap *entry;
+
+ mtx_lock(&jumbo_mutex);
+
+ if (jumbo_vm_object != NULL) {
+ mtx_unlock(&jumbo_mutex);
+ return (1);
+ }
+
+ /* allocate our object */
+ jumbo_vm_object = vm_object_allocate_wait(OBJT_DEFAULT, JUMBO_MAX_PAGES,
+ M_NOWAIT);
+
+ if (jumbo_vm_object == NULL) {
+ mtx_unlock(&jumbo_mutex);
+ return (0);
+ }
+
+ SLIST_INIT(&jumbo_kmap_free);
+ SLIST_INIT(&jumbo_kmap_inuse);
+
+ /* grab some kernel virtual address space */
+ jumbo_basekva = kmem_alloc_pageable(kernel_map,
+ PAGE_SIZE * JUMBO_MAX_PAGES);
+ if (jumbo_basekva == 0) {
+ vm_object_deallocate(jumbo_vm_object);
+ jumbo_vm_object = NULL;
+ mtx_unlock(&jumbo_mutex);
+ return 0;
+ }
+ for (i = 0; i < JUMBO_MAX_PAGES; i++) {
+ entry = malloc(sizeof(struct jumbo_kmap), M_TEMP, M_NOWAIT);
+ if (!entry && !i) {
+ mtx_unlock(&jumbo_mutex);
+ panic("jumbo_vm_init: unable to allocated kvas");
+ } else if (!entry) {
+ printf("warning: jumbo_vm_init allocated only %d kva\n",
+ i);
+ mtx_unlock(&jumbo_mutex);
+ return 1;
+ }
+ entry->kva = jumbo_basekva + (vm_offset_t)i * PAGE_SIZE;
+ SLIST_INSERT_HEAD(&jumbo_kmap_free, entry, entries);
+ }
+ mtx_unlock(&jumbo_mutex);
+ return 1;
+}
+
+void
+jumbo_freem(caddr_t addr, void *args)
+{
+ vm_page_t frame;
+
+ frame = PHYS_TO_VM_PAGE(pmap_kextract((vm_offset_t)addr));
+
+ /*
+ * Need giant for looking at the hold count below. Convert this
+ * to the vm mutex once the VM code has been moved out from under
+ * giant.
+ */
+ GIANT_REQUIRED;
+
+ if (frame->hold_count == 0)
+ jumbo_pg_free((vm_offset_t)addr);
+ else
+ printf("jumbo_freem: hold count for %p is %d!!??\n",
+ frame, frame->hold_count);
+}
+
+void
+jumbo_pg_steal(vm_page_t pg)
+{
+ vm_offset_t addr;
+ struct jumbo_kmap *entry;
+
+ addr = ptoa(pg->pindex) + jumbo_basekva;
+
+ if (pg->object != jumbo_vm_object)
+ panic("stealing a non jumbo_vm_object page");
+ vm_page_remove(pg);
+
+ mtx_lock(&jumbo_mutex);
+
+ pmap_qremove(addr,1);
+ entry = SLIST_FIRST(&jumbo_kmap_inuse);
+ entry->kva = addr;
+ SLIST_REMOVE_HEAD(&jumbo_kmap_inuse, entries);
+ SLIST_INSERT_HEAD(&jumbo_kmap_free, entry, entries);
+
+ mtx_unlock(&jumbo_mutex);
+
+#if 0
+ if (jumbo_vm_wakeup_wanted)
+ wakeup(jumbo_vm_object);
+#endif
+}
+
+
+vm_page_t
+jumbo_pg_alloc(void)
+{
+ vm_page_t pg;
+ vm_pindex_t pindex;
+ struct jumbo_kmap *entry;
+
+ pg = NULL;
+ mtx_lock(&jumbo_mutex);
+
+ entry = SLIST_FIRST(&jumbo_kmap_free);
+ if (entry != NULL){
+ pindex = atop(entry->kva - jumbo_basekva);
+ pg = vm_page_alloc(jumbo_vm_object, pindex, VM_ALLOC_INTERRUPT);
+ if (pg != NULL) {
+ SLIST_REMOVE_HEAD(&jumbo_kmap_free, entries);
+ SLIST_INSERT_HEAD(&jumbo_kmap_inuse, entry, entries);
+ pmap_qenter(entry->kva, &pg, 1);
+ }
+ }
+ mtx_unlock(&jumbo_mutex);
+ return(pg);
+}
+
+void
+jumbo_pg_free(vm_offset_t addr)
+{
+ struct jumbo_kmap *entry;
+ vm_offset_t paddr;
+ vm_page_t pg;
+
+ paddr = pmap_kextract((vm_offset_t)addr);
+ pg = PHYS_TO_VM_PAGE(paddr);
+
+ if (pg->object != jumbo_vm_object) {
+ jumbo_vmuiomove_pgs_freed++;
+/* if(vm_page_lookup(jumbo_vm_object, atop(addr - jumbo_basekva)))
+ panic("vm_page_rename didn't");
+ printf("freeing uiomoved pg:\t pindex = %d, padd = 0x%lx\n",
+ atop(addr - jumbo_basekva), paddr);
+*/
+ } else {
+ vm_page_busy(pg); /* vm_page_free wants pages to be busy*/
+ vm_page_free(pg);
+ }
+
+ mtx_lock(&jumbo_mutex);
+
+ pmap_qremove(addr,1);
+ entry = SLIST_FIRST(&jumbo_kmap_inuse);
+ entry->kva = addr;
+ SLIST_REMOVE_HEAD(&jumbo_kmap_inuse, entries);
+ SLIST_INSERT_HEAD(&jumbo_kmap_free, entry, entries);
+
+ mtx_unlock(&jumbo_mutex);
+
+#if 0
+ if (jumbo_vm_wakeup_wanted)
+ wakeup(jumbo_vm_object);
+#endif
+}
OpenPOWER on IntegriCloud