f4f44a035a8c0bae5372c4aff5771ebead0ed5f6
[ikiwiki.git] / docs / developer / ProjectsPage.mdwn
1 # DragonFly Projects 
2
3 This page shall serve as a common place to look if you're in search of a DragonFly related project. It's also the place to check if someone else is already working on it (to prevent project collision) or should be contacted.
4
5 [[!toc levels=3 ]]
6
7 ## Website projects 
8
9 ### One-liners
10 * Add traffic report, especially to lists requests that cause 404s
11 * Add the mail archive to the search index
12 * Download link right on the main page.
13 * Fix [[RecentChanges]] page to have correct links back to git repo
14 * Fix RSS feed to have correct links
15 * Create layout for http://bugs.dragonflybsd.org that matches the main site.
16 * Create short list of tasks for a new DragonFly user 
17 * how to upgrade the operating system
18 * how to get to a working desktop
19 * and where and how to report issues.
20
21 ### Post papers in the proper locations on the website
22 * Format conversion may be necessary
23 * Aggelos's papers from [http://leaf.dragonflybsd.org/~aggelos/] (http://leaf.dragonflybsd.org/~aggelos/) (netmp-paper.pdf and netmp.pdf) to Presentations
24 * ["A Peek at the vKernel" article](http://cvsweb.dragonflybsd.org/cvsweb/site/data/docs/articles/vkernel/vkernel.shtml?rev=1.3&content-type=text/x-cvsweb-markup) from old site
25
26 ## Documentation projects 
27
28 ### One-liners
29 * Reorder `/usr/src/UPDATING` to put more relevant information at top; remove data no longer relevant.
30 * Help out in [http://bugs.dragonflybsd.org](http://bugs.dragonflybsd.org) (try to reproduce, diagnose, propose fixes ...)
31 * Organize, contribute to, and finish the C book project.
32
33 ### Handbook maintenance
34 * Check if the content applies to DragonFly.  If not, change it.
35 * Add new content and enhance the previous chapters
36 * Check for syntax error, typos and wiki errors.
37 * Add prev/next buttons to all pages.
38
39 ## Userland projects 
40
41 ### One-liners
42 * Update the [[contributed software|docs/user/ContribSoftware]] which is out-of-date.
43 * Remove `NOINET6` build option
44 * `WARN` corrections to utilities
45 * Bring in code from other *BSDs:
46 * smbfs changes from FreeBSD
47 * pf changes from OpenBSD
48 * Add extended slice support to `fdisk`
49 * Install Coverity and fix the FreeBSD bugs that were uncovered by Coverity, but do not just blindly pull over the FreeBSD patches. Make sure that you first understand what the patch does.
50 * C99 Standards Conformance. The todo list is on [[/docs/developer/StandardsConformanceProject]]
51 * Setup a regression testing machine/system to register and find problems and new improvements..
52 * Networking performance / scalability
53 * [[RegressionTest|/docs/developer/RegressionTest]]
54 * also check [[HowToStressTest|/docs/developer/HowToStressTest]]
55 * Add lwp support to ptrace/gdb/core dumps.
56 * [[/docs/developer/CheckpointFeatures]]
57 * Linuxulator update (FreeBSD did a lot of work in this area.  Look [here](http://wiki.freebsd.org/linux-kernel),
58 * Bringing in version 2.0 of the BSD Installer
59 * UTF8 support in the console
60
61 ### Scalability (algorithmic performance)
62 * [http://bulk.fefe.de/scalability/](http://bulk.fefe.de/scalability/)
63 * [http://bulk.fefe.de/lk2006/talk.pdf](http://bulk.fefe.de/lk2006/talk.pdf)
64
65 ### Write a tool to monitor changes in other code bases such as FreeBSD, NetBSD, OpenBSD.
66 * corecode is busy with this one (http://oly.corecode.ath.cx/~corecode/cgi-bin/crosscgi.py) (svn repository (https://fortunaty.net/svn/crossref/)).
67
68 ### Clean our code to make it [style(9)](http://leaf.dragonflybsd.org/cgi/web-man?command#style&sectionANY) compatible.
69 * Compile and test your changes.
70 * Verify that the checksum (sha(1)) of the unmodified object matches the checksum of the cleaned object.  Check also with strip(1)+sha(1)
71
72 ### Port BSD-licensed tools (ex: `grep`, `diff` and `sort`)
73 * The OpenBSD guys already did some work related to that.
74 * If you manage to bring the tools to DragonFly, check if everything works as expected (e.g. rc.d scripts, make world runs, ...).
75 * The new tools need to have at least all the features of the old GNU tools.
76
77 ### Randomize mmap() offsets
78 * [http://www.openbsd.org/papers/ven05-deraadt/index.html](http://www.openbsd.org/papers/ven05-deraadt/index.html)
79
80 ### GDB
81 * ptrace/gdb follow-fork-mode support and more (peek at linux)
82 * Change the build to create one libbfd for gdb and binutils
83 * Separate RPC code from NFS into separate library.
84
85 ### I/O diagnostic utilities
86 * A utility similar to top which displays I/O usage on a per-process basis
87 * Network, Disk
88
89 ## Kernel projects 
90
91 ### One-liners
92 * Port the BSDL OSS code to DragonFly
93 * Complete Path MTU Discovery by adding a host route to remember the Path MTU and setting a timer to expire old host routes. See netinet/if_ether.c for an example of this mechanism as used by ARP. Periodically increase MTU of hosts that have had its MTU decreased.
94 * Look for places in the kernel that can benefit from Solaris-style caching of preconstructed slab allocator objects. If we can find enough of these uses, we can add this functionality to the kernel memory allocator.
95 * Implement [`sem_open()`](http://www.opengroup.org/onlinepubs/000095399/functions/sem_open.html), [`sem_close()`](http://www.opengroup.org/onlinepubs/000095399/functions/sem_close.html), and [`sem_unlink()`](http://www.opengroup.org/onlinepubs/000095399/functions/sem_unlink.html).
96 * Clean our code to make it [style(9)](http://leaf.dragonflybsd.org/cgi/web-man?command#style&sectionANY) compatible.  Compile and test your changes.  Verify that the checksum (sha(1)) of the unmodified object matches the checksum of the cleaned object.  Check also with strip(1)+sha(1)
97 * Setup a regression testing machine/system to register and find problems and new improvements..
98 * Networking performance scalability
99 * fix `APIC_IO` on SMP
100 * Port or update drivers from other systems.
101 * Port NFSv4.  [This mail](http://leaf.dragonflybsd.org/mailarchive/kernel/2008-01/msg00065.html) is a good starting point.
102 * Import/Update DRM from the DRM git repository ([http://dri.freedesktop.org/wiki/DRM](http://dri.freedesktop.org/wiki/DRM)).
103 * clean up buildworld/kernel compilation warnings
104 * Port DragonFly over to Xen.
105 * Port DTrace
106 * Capriccio threads
107 * Xen support as domU and dom0 platform
108
109 ### Code to port/sync from FreeBSD
110 * PCI code (to take advantage of power saving features)
111 * cpufreq and powerd
112 * netgraph modules. Contact joerg.
113 * Bring in support for UFS2, just the changes to extend the width of some fields from 32 bits to 64 bits.
114 * hardware drivers.
115
116 ### Code to port/sync from OpenBSD
117 * Add support for the NoExecute bit as described in [http://www.openbsd.org/papers/auug04/index.html](http://www.openbsd.org/papers/auug04/index.html).
118 * After that, make user stacks and data heaps non-executable. (W^X)
119 * hardware drivers, specially wireless.
120
121 ### CPU scheduler
122 * A scheduler API supporting multiple scheduler implementations already exists
123 * Add a Solaris-like dispatcher framework that can handle more than one installed scheduling policy
124
125 ### I/O scheduler
126 * A pluggable kernel I/O scheduler already exists
127 * Implement additional disk scheduling policies
128
129 ### Work relating to LWKT (LightWeightKernelThreading)
130 * Implement lazy IPI cross-processor lwkt message passing.
131 * Add timeout functionality to lwkt_waitmsg().
132 * Write man pages for the lwkt message passing API.
133
134 ### Filesystem extended attributes
135 * Generic VFS attributes layer
136 * Emulate attributes ala Darwin
137 * Allow filesystems to define their own attribute vop ops
138 * QUESTIONS: Attributes or subfiles? The consensus is that subfiles are better?
139
140 ### Code generation hooks in the build system
141 * Well defined kernel build mechanisms for code generation
142 * This will require discussion
143
144 ### On-disk / Over-the-wire structure codegen
145 * Somewhat analogous to google protocol buffers / etc.
146 * Take a normalized definition of data, metadata, an operation and generate a structure, serialization routines and accessor routines for it/them
147 * Must be able to generate structs binary compatible with existing on-disk formats (including warts)
148 * Should magically create formats that are 32/64bit agnostic OR fixup serializers/unserializers
149 * Accessor routines and thread safety? Do we make you hang these objects somewhere that you store your synchronization objects or allow you to include them?
150 * Versioning?
151 * Potential uses: ... HAMMER, UFS, HAMMER mirror streams, message passing, ...
152 * QUESTIONS: Would people actually use them?
153
154 ### Asynchronous system call framework
155 * Probably best implemented as a message passing interface to kernel pass messages in, threads pick them up and execute, return through kevent notifications
156 * Would require a well-considered proposal
157
158 ### Hardware virtualization extensions
159 * Increase performance of virtual kernels
160 * Make use of hardware virtualization extensions, if supported, to manage vmspaces
161 * Make use of hardware IOMMU support if available
162
163 ### Kernel VIRTUAL MACHINE
164 * opcode vm in kernel for various purposes? What could be accomplished with this?