2014-02-14

create page

New page

{{TOC R}}

{{:Google Summer of Code}}

== Web interface ==

; Improve the web interface generally: There is much to do to make it more user friendly. We will hopefully have a set of mock-up designs soon, but there are also many small things linked from [https://bugs.freenetproject.org/view.php?id=2585 this bug report]; many are not, please have a look around, also check the mailing list archives. A recent but not very detailed, professional mockup focusing on the homepage is here: [https://emu.freenetproject.org/freenet-ui-mockup-pupok-1.pdf]. An older [http://doc-fr.freenetproject.org/Fproxy_mockup detailed suggestion] might also be an inspiration. There was quite a bit of work on this in 2012 though the project didn't succeed; it's worth looking at the devl archives etc.

; Get the web-pushing mode working well: A previous Summer of Code student built the web-pushing ajax/comet/GWT system, which does things like showing progress on pages with lots of images to speed things up when browser connections are limited, and live updating of the downloads page etc. This is rather buggy especially on slow browsers, and tends to lock up, so fixing this, improving it and then extending it to other areas (e.g. Freetalk) would be interesting. Obviously rewriting the whole web interface with a different toolkit would need a different Comet solution, but we'd like to have something like this.

== Code infrastructure and API ==

For some projects in this section, the best solution would simply use an external library to do most/much of the work, and simply integrate it into the current freenet code. So you should do some research into existing solutions first. This principle applies to '''all projects''', but the ones where suitable libraries are most likely to actually exist, are tagged ''prefer-external''.

=== Use ECC for SSKs ===

SSKs currently use our own implementation of DSA. This is old, and the pubkeys are huge. We can switch to ECC, using the Java Cryptography Architecture.

* Make SSKs use ECC for signatures, via JCA (see below).

* Get NSS working semi-automatically. For ECC this is a big performance gain.

* Take advantage of the smaller size of ECC-based SSKs' pubkeys: optimise SSK requests and inserts (fewer packets etc).

* Take advantage of the smaller size of ECC-based SSKs' pubkeys: optimise datastore usage (single store for SSKs and pubkeys), and allow keys of ~ 800 bytes (fast, for e.g. IRC over Freenet) and ~ 2KB (slower, for e.g. forums). Automatic, safe migration, even if there are disk space issues, is one of the bigger problems here.

* Implement 32KB SSKs as well, if we're looking at the datastore.

* Possibly implement Programmable Subspace Keys. The basic principle is to allow to specify a set of rules (in a simple language) that determine whether or not a block is valid for a given key. The simplest application of this is a way to allow multiple posters to use a single SSK (greatly increasing the efficiency of a spam-proof freenet-based chat system), while still requiring them to sign their own posts, allowing the "moderator" to change the key to get rid of a spammer.

=== Review crypto and use JCA where possible ===

This project is about changing how we do cryptography in freenet. At the moment, we use our own-implementation of standards... This project is about switching to JCA and BouncyCastle.

JCA has cryptographic strength restrictions, and even for US users resolving this is nontrivial (the java auto-updater wipes out the unlimited strength policy files every time you update!), so we will need to implement some internal API that can wrap either our built-in crypto, Bouncycastle's lightweight API, or an accelerated JCA implementation. This is probably a good idea anyway, to make the code clearer and limit the possibilities for accidental abuse of cryptographic primitives. In particular, crypto setup in connection setup should be factored out into a separate class, and we should consider using third party libraries for parsing the connection setup packets (and possibly for parsing messages too, the same library could do both tasks).

Another problem is that native implementations are often slower, because of the overhead of calling C code through JNI. This may not be true on all hardware (e.g. ATOM, ARM), so we need to benchmark it on startup (this is partly implemented already). For security reasons it is preferable to use JCA, or at least Bouncycastle, where possible, if there is no performance issue.

The major goals of this project are:

* '''Review''' and '''question''' the usage of cryptography thorough the whole codebase

* Build an internal, high level crypto API, which wraps either Bouncycastle lightweight API or JCA.

* Use this instead of our own code, reducing the amount of crypto code we need to keep in fred.

* Benchmark or profile hot codepaths and propose enhancements

* Enable users to use crypto-accelerators where possible (for x86 systems this probably means asymmetric i.e. ECC; symmetric crypto appears to be slower even with AESNI because of the JNI overhead).

* Write unit tests to ensure some form of backward compatibility with the existing code (there are some already, more would be good)

In particular the packet-level encryption needs to be looked at seriously. It currently uses Rijndael with 256-bit keys and 256-bit block size, with an IV generated from the packet number, PCFB (identical to CFB in this case), and a truncated HMAC. It should use a 128-bit block size, a safer and more widely supported cipher mode, and probably include a proper IV. It might be worth looking into parallel processing of packets too.

=== Auto-update system ===

{{GSoC project metadata|mentors=infinity0|difficulty=5/10}}

The current updater makes some very specific assumptions as to the locations of the jars, and this method doesn't generalise to non-jar files. It also assumes wrapper.conf is in the current directory. This is at odds with attempts to package Freenet according to FHS. (There is already a debian package but currently this disables auto-update. Even though this is likely to remain the case due to Debian policy, we can use this package as an example to test out the enhanced auto-updater on.)

The auto-updater should be able to:

* update jars, freenet.jar and freenet-ext.jar, and the various 3rd-party dependency libraries. (Currently said libraries are packaged inside freenet-ext.jar, but the newer version separates them out. The current auto-updater can't handle this, so we can't yet deploy the newer freenet-ext.)

* update any native binaries/libraries (e.g. the wrapper files)

* the above probably means having some sort of manifest that lists which files are actually installed. If this is the case, all of our installers need to be change to include such a manifest too.

Update for 2013: The updater is somewhat more capable, in that we keep a manifest in the source and can update multiple jars. However we still can't update the wrapper files, which is crucial, and integration with e.g. local FHS standards may be useful. Having said that, packaged versions of Freenet probably shouldn't update themselves, so I'm doubtful about this project.

=== Events framework and API ===

{{GSoC project metadata|mentors=infinity0|difficulty=9/10|tags=prefer-external}}

freenet uses a custom-written framework for running callbacks and scheduled tasks, which is non-standard and lacks a lot of advanced functionality. Converting everything to use java.util.concurrent and/or com.google.common.util.concurrent would help this a lot. Ideally, the framework would be separated from the rest of freenet, possibly even to the point of being an external library, and provide a clean API for freenet and its plugins to use. This would also allow plugins to do much more advanced tasks (e.g. most of the things in the "plugins and applications" section further below) without having to implement their own framework.

The events framework should be able to, and provide a good API for plugins to:

* run tasks in the background, or according to a particular schedule

* define task+thread matching policies e.g. all database tasks must run in the "database" thread

* cancel running tasks, if the task defines that it's cancellable

* handle dependencies between tasks, so that e.g. if A depends on B and we cancel/complete B, A is automatically cancelled/completed.

* attach callbacks to events such as task completion/cancellation (e.g. using com.google.common.util.concurrent.ListenableFuture)

* group tasks into related categories so one group doesn't affect the other. (e.g. tasks for the group "Library/b-tree-write/index-<URL>" won't starve the resources of group "WoT/background-trust-calculation") (this is possibly logically equivalent to the "matching policies" point above but I haven't thought too much about it)

=== Config management ===

{{GSoC project metadata|mentors=infinity0|difficulty=6/10|tags=prefer-external}}

Currently, config management code is very untidy. Code for read/writing the config in embedded inside the classes they control, which is spread out over many files not related to config management. This creates lots of implicit dependencies, which is not directly apparent in the syntax/structure of the code nor the semantics of the language. (In other words, spaghetti code.)

Config code should be separated from the actual application. It would also be nice if there was an API to expose this to plugins.

The config system should be able to:

* support everything the current config system supports

* use "includes" to separate different sections into different files - e.g. keep vital system-specific settings in a separate read-only file

* read and write values, preserving comments in the file.

*: With regards to mutability, there are three types of values:

*:* immutable

*:* mutable (takes effect after a restart)

*:* mutable (effects the running daemon immediately)

*: Note that the actual code for doing the setting should be implemented outside of the config system.

Using the Google Guice framework would probably help this a lot as well.

== Plugins and applications ==

=== Integrating DVCS via [http://mercurial.selenic.com/wiki/Infocalypse Infocalypse] (Mercurial) with the Web of Trust ===

{{GSoC project metadata|mentors=ArneBab|difficulty=4/10}}

operhiem1 intends to address this for Google Summer of Code 2013.

Currently code sharing with infocalypse is still a bit inconvenient. Cloning and sharing a repository requires: `hg init; hg fn-pull --uri USK@…; hg up; (hack); hg fn-create --uri USK@/mycode.R1/ ; (share the public key somehow)`

This should be simplified to: `hg clone freenet:ID/reponame; cd repo; (hack); hg push freenet:ID/reponame`

The ID should be the name of a given WoT ID. If that name is not unique, any number of letters from its public key can be added. The URI scheme is an extension of what hg-git offers, so it is doable in finite time. The bigger task would be to add clean integration with the WoT.

Also infocalypse needs some additions to its USK handling, to ease discovery of new revisions.

Simplified URI schemes would be `hg clone freenet:reponame`: If an ID has the repo, get it, if multiple IDs have a repo of that name, ask which one to take.

The overall goal is turning freenet with infocalypse into a decentral, anonymous, community hacking platform by connecting it over the Web of Trust.

Deliverables:

* Clone, pull and push via the freenet:key/repo scheme.

* As key allow simple USK keys or WoT IDs.

* If a WoT ID is used, advertise the repo info in the WoT ID.

* Optionally provide additional convenience measures, like automatically creating freesites with information about the repository. See the hgsite site extension] for an example.

* Optionally add pull requests and anything else needed for a full fledged community hacking platform.

* Optionally: “find forks of my repo in freenet”. Infocalypse would have to register a WoT context, which contains the public key as well as the public key the repo was cloned from (if it was cloned from freenet). Then any plugin could connect the forks again. It could actually offer the option `hg path --add-forks`, which gets all public forks in freenet.

=== Further Ideas ===

; Improve Sone: Sone is a social-networking style system over Freenet. One way to improve it is to make it automatically insert bundles of posts periodically, to avoid having to download all the posts every time. Other problems relate to the question of scalability: When you can't follow everyone, what does that mean for the user interface? How do you do keyword searches? Etc. There have been ideas on this. Talk to Bombe...

; A good filesharing/file search system: This should tie in with the [[Web of Trust]], allowing users to publish indexes and search those of their anonymous friends, rate others' indexes, merge them into their own, set up long-term file searches, preload indexes for faster searches, and so on. It might also integrate with Freetalk to help with discussions on labelling or rating. The problems of spam/deliberately corrupt content are very similar on Freenet to on traditional p2p, although the solutions may be different, especially as it isn't possible to trace spammers; trusted community maintained indexes have developed as a working means of solving these problems on web-based filesharing. Note that we already have a scalable forkable on-freenet btree search system to use as a backend, but it is not yet used for anything, and it is not distributed or WoT-compatible.

: Another interesting area for filesharing is a distributed, WoT-based way to download data by conventional hashes rather than CHKs, which could tie in with other networks; this is also related to the wierd stuff (backups) at the bottom.

: Secure reinsert-on-demand filesharing, to improve the volume of content that is available. This is a lot harder than it sounds, but in any case we need searching first. (Reinserts using the same keys are seriously insecure, although getting the downloaders to do random inserts may help significantly)

; Keepalive plugin improvements: Some very small changes at the node layer will allow probing for whether a key is available from a random node. Users could then maintain a list of content that they care about; the plugin would download it all as a binary blob, regularly probe for reachability, and reinsert it when needed (possibly single random not fetchable blocks). For this to work really well we might need selective reinsert support in the client layer, but that's not necessary for a basic implementation. What is important is supporting both files and sites, and letting users publish their lists and subscribe to others. This could even evolve into a full blown distributed backup system, with configurable encryption for files and the ability to recognise which files are popular and avoid inserting them (might need fixing GetCHKOnly).

; A microblogging and/or real-time chat system: Both of these things would actually be implemented in a fairly similar way. Evan has done a fair amount of work on how to efficiently implement microblogging over Freenet. Sone does something like this but is fairly greedy with network resources. Flip does IRC.

; FCP libraries: Good FCP libraries in more languages.

; Easy-to-use tools for inserting freesites (freenet-hosted web sites) and files, and maintaining mirrors of web content: We already have a blogging tool, but it needs more work, and tools to make it easy to insert existing content etc would also be useful. This should support uploading files of any size, should avoid re-uploading larger files on every update, but should be configurable to do so on a schedule, should work from within the freenet web interface as a plugin, and may support [https://en.wikipedia.org/wiki/WebDAV WebDAV] uploads direct from authoring software. The ability to mirror stuff from the web would also be useful.

; Scalable fork-and-merge distributed revision control over Freenet: This would integrate the new scalable on-Freenet [[B-tree index|b-tree]]s from the new Library format by infinity0, in order to scale up to at least Wikipedia scales (to implement a [[wiki over Freenet]] using a [[fork-and-merge DSCM|fork-and-merge]] model). It would tie in closely with the [[Web of Trust]] (the trust network backing [[Freetalk]]), integrating with its identities and announcing forks, and allowing users to easily see changes in other forks and integrate them. The most obvious use for this is a wiki-over-freenet (note that because of spam and denial of service attacks, instant anonymous editing of a wiki on freenet is not possible), it might also be useful for distributing spidering Freenet, for source code (e.g. if we want to deploy a new build only after a certain number of people we trust have signed it, and then build it from source), or for anything that needs a forkable database over Freenet. You might also need to optimise the btrees' data persistence by e.g. including the top level metadata for each chunk in the next layer up. Scalable fork and merge databases are closely related to this. Infocalypse already provides a working plugin for efficient sharing of Mercurial repositories, but it needs integration with the Web of Trust, and added efficiency through btrees would be useful.

; Better freesite searching: Lots of work has been done on this, but more could be done: Using the new library format, rewriting the indexes on the fly after gathering a few hours' data rather than writing it from the database over a week, support for long-term searches, web of trust integration, better support for stop-words (maybe aggregating them with common before/after words), tokenisation for tricky languages (Chinese, Japanese), distributing spidering across multiple users (as scaling is getting to be a serious problem now), etc.

; Wiki over Freenet: A wiki over Freenet would be really awesome. In fact it could be a killer app. But it is not easy to implement, as there are several challenges. You can learn more [[Wiki over Freenet|there]]. There have been many attempts; some are hard to use and based on DSCMs, some are easier to use and not scalable.

; WebOfTrust optimization: Currently the Web of Trust plugin is quite slow. Optimizations on the database level and on synchronization strategies should offer the chance it much faster. A first step would be profiling to find the real performance bottlenecks. Care will be needed to ensure using scalable algorithms. There is an alternative Web of Trust implementation called LCWoT, but it is incomplete. Note the next item.

; Use PSKs (see the section on SSKs and ECC) to implement a much more scalable, but still spam-proof, chat forum system: This may or may not use WoT. Announcement should be per-context, that is, users should announce to a single forum, but should be visible to all users that watch the forum, rather than posting a message to a few users. Ways to do this, and to limit the problem of users filling in the same CAPTCHAs, have been posted on devl and in the bug tracker. Actual boards should be via PSKs: In the first instance, a moderator may expel a spammer by issuing a new key and signing the non-spamming users' pubkeys; in a more decentralised system, each user is a moderator, and we can detect when they abuse their powers by blocking non-spammers (here trivial spam isn't the problem, sustained DoS attacks are).

== Client layer ==

; More content filters: We have to "filter" HTML, images, etc to ensure that they are safe for the web browser, and won't give away the user's IP address via inline images, scripting etc. Finishing the SVG filter written for 2009, implementing support for SVG embedded in XHTML embedded in ATOM (we have an ATOM filter but it is not integrated yet), maybe an RSS filter, would be useful. More audio and video formats would be very helpful (particularly WebM and H.264), and with HTML5-based video playback support could make embedded video almost viable. Last year's SoC included the beginnings of a javascript player but it is far from what it could be: Making it really viable would require deeper changes related to fetching data in order, access to partially downloaded content, and possibly an applet to show which parts have been downloaded and maybe to display those formats that we support (likely ogg) in browsers that don't support them. See here for more on embedded video playback: [https://bugs.freenetproject.org/view.php?id=4038]. PDF would be very valuable but the spec is huge, however it is believed that minimal sufficient functionality is not *so* huge. ODF is similarly a possibility but again is gigantic. Javascript is an option for JS geniuses (create a safe API and then force the JS sent to the browser to only use that API; please talk to us in detail as there are many side-issues with any sort of "safe scripting", we have some ideas about safe APIs though, either based on only being able to access keys related to specific users which are manually approved, or fixing the fetch times).

== Low to mid level stuff ==

; More simulations: There is lots that can be simulated: Does swapping scale? Does the proposed fix for Pitch Black really work? Do darknet and opennet get on together? In particular, there are a range of attacks on requests that have been proposed, it would be great to quantify them. Load management is another huge area where simulations (and expertise!) would be helpful.

; Tunnels and so on: Somebody with some expertise in tunnels would be very useful. Freenet needs an optional mixnet layer for better security, especially on inserts (where it wouldn't cost us much performance because we go lots of hops anyway). We have some ideas (something based on Pisces perhaps?)... This is a more research-oriented project but we would like to have some sort of basic tunneling option available by the end of it.

; Much more transport layer stuff: The current transport layer has been improved significantly but leaves much room for improvement. Ideally we'd like to detect available bandwidth automatically. We have nothing remotely like Path MTU detection; we should automatically adapt to find the right packet size for the connection, both finding what will work at all, and what gives the best bandwidth/loss tradeoff. We tend to get transfer failures on slow connections (not low bandwidth limit, low bandwidth available on that specific connection). We probably should use something like cumulative acks, currently all packets are acked once, it should be possible to ack the same packet twice with 0 bandwidth cost in many cases using ranges. We may want to divide up blocks differently depending on how fast the connection is. We may want to make tradeoffs between fairness to all peers (the current policy) and allowing individual peers more bandwidth for a short period (e.g. because they have requested a bunch of fproxy pages), or have "idle priority" traffic which is only sent when *no* peer wants to send anything (e.g. bloom filter sharing), which may also impact on packet size. And so on. Generally, the transport layer needs to be more robust, especially on slow connections, and it needs to feed information into the load management layer more quickly so that we only accept requests that we can complete in a reasonable time, given the current state of the connection. There are various bugs about this on the bug tracker. Running as well as possible on fairly slow connections is particularly useful in some of the places where Freenet may be needed most.

; [[Transport plugins]]: Chetan's work in 2012 means we will soon have a general layer for packet-type transport plugins, but we won't have any actually working yet. We would like support for stream-based transport plugins, and a bunch of working transport plugins, for both making Freenet work behind nasty firewalls, and for steganography. Some, such as something that looks like Skype traffic, will impose particular transport-layer problems due to e.g. packet sizes.

; Bandwidth: Different bandwidth limits at different times of the day/week would help many users. We also need support for monthly transfer limits (separate from the existing peak per second limits), and autodetection of the connection's capacity, possibly with options for very latency sensitive behaviour for e.g. gamers (like some Bittorrent clients do). All this must be really easy to use.

== Friend to friend stuff ==

; Better darknet: Make it easier to invite people to Freenet, provide software bundles, provide a simple password-and-IP-address connect protocol, connect to friend-of-a-friends, make it easy to connect to mutual friends, etc. Lots of ideas about this on the bug tracker. Some of it has been implemented in a branch (foaf-connections).

; More F2F functionality: Make darknet more useful, apart from its obvious role in improving Freenet's security: Various forms of easy to use chat, possibly realtime, allowing conversations across nodes, both within the web interface using javascript/ajax and via external clients e.g. Jabber/XMPP, possibly with voice support; easy to use, reliable file transfers; labelling downloaded files and bookmarks so that they are visible to your friends of a particular trust level; searching these file lists and transferring the files; possibly automatically fetching files both from friends and freenet; virtual LAN (hamachi style) functionality; social networking style functionality, with very careful privacy protections - after all the friend-to-friend darknet is literally a social network, we should make it as useful as possible without jeopardising privacy.

== The Tahrir Project ==

Tahrir is a sister project to Freenet, incorporating some of the same ideas, although focussed more on "twitter"-like functionality (or, more generally, microblogging). Much of Tahrir's infrastructure is complete, including a powerful but easy to use low-level transport layer, together with crypto functionality, however the components need to be brought together into a working prototype. More information at [https://github.com/sanity/tahrir/wiki The Tahrir Project].

== How to sign up ==

You can sign up between April 22 and May 3 on [https://google-melange.appspot.com/ the Google Summer of Code page].

Show more