Google Summer of Code 2014 Ideas

From ReactOS Wiki
Jump to: navigation, search

This page lists all project ideas for our Google Summer of Code 2014 application. Students should also visit our general GSoC 2014 page for more information including a Student Guide.

Hardware Compatibility

Plug and Play (PnP) Storage Stack

Right now, PnP support in the storage stack is close to be there. mountmgr.sys has already been implemented, and recent tests show that plugging USB sticks work. However, "traditional" storage stack is not PnP-aware, meaning that hot-plugging SATA or SCSI device is not possible. Alleviating PnP support in scsiport would be the first task of this project. Then, turning uniata into a PnP-aware driver would permit SATA devices hot-plugging. Finally, PnP-aware "cdrom_new" and "disk_new" drivers can be activated.

References
Skills needed
  • Kernel-mode development experience.
  • SCSI Port APIs familiarity.

EFI Support

Support running and booting of ReactOS on EFI systems instead of BIOS systems. This would allow running ReactOS natively on newer computers that do not use BIOS. Support must be added to freeloader and the ReactOS HAL. Support for GPT is already present in the kernel but the disk.sys driver does not know how to handle it. Furthermore, freeloader is unable to boot from GPT partitions due to limitations in Arc name handling. Lack of the VGA BIOS must be addressed as the ReactOS boot process relies heavily on one being present for display during the boot process.

The installer must also be modified so that it can write the boot record in a place where UEFI can find it.

Benefits
Ability to boot natively on Intel Macs would provide ReactOS with a relatively stable hardware platform for testing purposes thanks to Apple's hardware design philosophy. It would also present Mac users with another alternative to running Windows applications.
References
Skills Needed
  • Kernel, driver development experience.
  • Experience writing UEFI applications.

Intel High Definition Audio Bus Driver

Implement support for the Intel High Definition Audio specification for sound cards. Modern audio cards use the Intel High Definition Audio specification, therefore they rely on a bus driver to communicate with the audio hardware. The goal is to write a bus driver which supports those new cards.

The HD Audio bus driver implements the HD Audio device driver interface which kernel-mode audio and modem drivers use to communicate with hardware codecs that are attached to the HD Audio controller. It exposes the HD Audio driver interface to its children which are instances of the audio and modem drivers that manage the codecs. The bus driver needs to work on a Microsoft NT system and with ReactOS.

Benefits
  • Given the ubiquity of the HDA codec in motherboard integrated sound cards, such a driver would bring sound support to ReactOS on a huge number of systems.
References
Skills Needed
  • Kernel driver programming experience
  • Bus driver programming experience
  • Familiarity with Intel HD Audio specification
  • Audio kernel streaming

Interface Driver Stack

Implement support for the protocols such as Bluetooth or Firewire to allow ReactOS to communicate with compatible devices. Requirements would be a working set of device drivers and providing the corresponding API, with potential supplemental work including development of control panel applets or applications to expose the new functionality.

Benefits

This would open up possibilities such as data transfer to/from mobile devices, internet-over-cellphone scenarios or alternative input devices.

References
Skills Needed
  • Familiarity with kernel development and Windows sockets

USB 3.0 Support

USB 3.0 (Also known as eXtensible Host Controller Interface or xHCI) is a computer interface specification that defines a register-level description of a Host Controller for Universal Serial bus (USB) which is capable of interfacing to USB 1.x, 2.0, and 3.0 compatible devices. It's increasingly present these days. Having a USB 3.0 stack would make ReactOS available to the newest external device interface among others.

References
Needed Skills
  • Kernel driver programming experience.
  • Bus driver programming experience.
  • Familiarity with USB 3.0 specification.

Networking

Internet Protocol Helper

Implement the Internet Protocol Helper API for manipulating network interfaces. The Internet Protocol Helper (IP Helper) API enables the retrieval and modification of network configuration settings for the local computer. It's applicable in any computing environment where programmatically manipulating network and TCP/IP configuration is useful. Typical features used by applications include IP routing protocols and Simple Network Management Protocol (SNMP) agents.

Benefits
The Internet Protocol Helper API provides much of the functionality used by network utilities and other programs to query and configure network devices. While ReactOS currently supports both wired and wireless network interface cards, the graphical utilities users tend to rely on for things like connecting to a wireless network or checking what their IP address is are lacking or outright absent. Implementing IPHAPI, or at least an appropriate subset, would provide the necessary infrastructure to support these utilities, making it easier to interact with network devices.
References
Skills Needed
  • Familiarity with Windows networking and TCP/IP networking.

SSH Service

Implement a native Windows service for accepting SSH connections and authenticating with Windows accounts to allow the user to interact with Windows through the command prompt should they not need access to the GUI shell. Once authenticated, any commands passed through SSH are executed using the user's credentials to prevent abuse of the service's privileges. And as the user is not technically logged in, there are no restrictions with respect to how many connections are permitted except as system resources allow.

Benefits
Besides cygwin, few options are available for users who wish to remote into a Windows machine for simple command line access. Cygwin is also horrendously intrusive on Windows systems. This implementation would provide a free SSH server implementation for Windows that was designed to integrate cleanly and present users with access to the Windows command shell, not try and lie to the user and pretend they are in a Unix environment. As a remote administration tool, this opens Windows systems to considerably more flexibility for connecting to and managing them. Administrators on Linux systems will also not need to relax security settings on Windows in order to use Linux RDP clients.
Skills Needed
  • Network development experience.
  • Knowledge/familiarity with SSH protocol.

Terminal Services

Implement support for terminal services, allowing inbound remote desktop connections to ReactOS. This encompasses implementation of input and video drivers to handle output over the network.

The terminal services system provides functionality for securely connecting remote clients and servers, for channeling communication between components of remote clients and servers, and for managing servers. It implements the Remote Desktop Protocol (RDP) which is a multi- channel protocol that allows users of a remote client to connect to a server over a network.

Benefits
Terminal services support would allow ReactOS to service as a terminal server/thin client server. Organizations that wish to provide a shared workstation with Windows would have a free alternative that does not have complex licensing terms covering multi-session usage. The display driver for terminal services can also be used to support fast user-switching and even possibly multi-monitor support.
References
Skills Needed
  • Network development experience.
  • Driver development experience.
  • Knowledge/familiarity with RDP protocol.

System Enhancements

Audio Mixer

Implement support for mixing of audio streams.

Benefits
Audio mixer is responsible for routing of multiple audio streams. This would be very beneficial to ReactOS as audio driver support has improved yet the use of these drivers is limited by the lack of an Audio Mixer. In the end of the project multiple audio streams should be able to be played at the same time.
References
Skills Needed
  • Windows Services familiarity
  • Basic Audio file format familiarity
  • Audio mixing algorithms / libraries familiarity
  • Basic kernel streaming familiarity

IFS Wrapper Driver

NT IFS drivers for alternate filesystems are relatively scarce, due partially to the complexity of the IFS interface and the lack of documentation for several years. A FUSE implementation for Windows is also not ideal compared to a genuine kernel mode IFS driver. A kernel mode wrapper IFS driver can however considerably ease development of filesystem drivers on Windows. A demonstration implementation using code derived from NTFS-3G would provide the foundation for future drivers for other non-Windows filesystems and also a testbench for ReactOS’ own filesystem library interface.

Benefits
  • Future efforts to allow Windows NT to read/write to other filesystems such as ZFS would be considerably eased with a wrapper driver.
References
Skills Needed
  • Driver development experience.
  • Filesystem development experience.

Performance Data Registry

Access to performance data on Windows is done primarily through the registry API, accessing something known as the performance data hive. This hive does not exist as a genuine file but is in reality a collection of data exported by various OS components, drivers, services, and even applications. Many of the performance values provided through the performance data registry is not available in any other form. The absence of support for performance counters renders many diagnostic utilities from Microsoft broken and is also an impediment to application compatibility. Condor is an example of a third party application that uses the performance data registry for process and resource usage tracking.

Benefits
Besides application compatibility, the performance data registry is one of the most difficult to use public interfaces in Windows. The layout of its data structures makes querying and accessing values a highly manual process. Documentation produced from this effort would provide better guidelines for third parties to access the performance data registry and better use the information published by the system and Microsoft's own applications such as the .NET runtime or the IIS service.
References
Skills Needed
  • Registry API familiarity.
  • Performance registry structure familiarity.
  • Performance counter familiarity.

Management Console

Implement Microsoft Management Console (MMC). The MMC provides an interface for various management tools, both from Microsoft and third parties, called snap-ins. These snap-ins are standalone programs dynamically loaded into an MMC console to perform a specific configuration task, such as configuring a network or managing disk drives.

Benefits
  • Easier snap-ins development.
  • Consistent user interface of management tools.
  • One configurable place to access key management and configuration apps.
References
Skills Needed
  • Basic Windows development experience.
  • Knowledge of COM.

NT "Wine audio" driver

Currently, ReactOS imports mmdevapi DLL from Wine, but it doesn't have a "driver" for it. In Wine, the driver is an implementation of various COM interfaces on top of libraries such as ALSA or OSS. However, it is perfectly possible to implement such a driver for Windows NT (preferably Vista+) using audio IOCTL to directly talk to the windows device.

Benefits
  • Vista+ compatible sound stack (our portcls.sys is already there)
  • Importing the latest Wine audio related libraries becomes possible (winmm, mmdevapi, dsound, etc.)
  • One place to rule them all: the only direct interface between user mode and driver.
References
Needed Skills
  • Windows Audio Stack knowledge
  • COM knowledge

UI Enhancement

Finish shell32 Implementation

The old explorer implementation is an aging C++ codebase which is more a combination of the explorer shell and the shell32 library. This project is to finish the new shell32 library to allow for use of explorer_new in ReactOS, a requirement for the 0.4.0 release (Roadmap). The project will consist of getting the new explorer running in ReactOS.

Skills Needed
  • COM knowledge
  • Shell32 knowledge
  • Win32 API familiarity

GUI 1st Stage Installer

To make ReactOS more user friendly for installation, a GUI installation instead of a rather limited text-mode installer is needed. This could be run off of the LiveCD and act as a frontend to the disk formatter and installer we already have implemented.

Benefits
Having a GUI installer would allow the project to merge the bootcd and LiveCD and ensure that the LiveCD gets more testing to make sure it is not broken and simply neglected. A GUI installer would also be less intimidating to new users, especially those used to Vista or 7's installer.
Skills Needed
  • Win32 API familiarity.
  • Partitioning and setup experience.

Win32 Subsystem

Implement metafile support

While wine has this part of GDI32 fully implemented, the code cannot easily be reused. The task would be to analyze the wine code and design a solution that makes use of existing wine code as much as reasonable and implement the missing parts.

Skills Needed
  • Basic knowledge of the win32 graphics interface (GDI)
  • Basic knowledge of (enhanced) metafiles at API level
  • Capabilities to analyze existing code and design architecturally complex solutions

Rewrite win32k line drawing functions

The low level line drawing functions in win32k are insufficient in features, not conforming to Windows requirements and lacking in code correctness aspects. The task is to write a new set of low level line drawing functions, with focus on graphical correctness, safety and performance where reasonable. The functionality is described in MSDN and in DDK sample source code. The latter can be used as reference and to a certain extent possibly as direct source of code (Windows XP DDK license allows reuse under GPL)

Skills Needed
  • Knowledge in basic graphics algorithms (Bresenham, ...)
  • Skills in developing algorithms
  • Basic knowledge of the win32 graphics interface (GDI)
  • Beneficial, but not required: knowledge of the windows display driver interface (DDI)

Layered Windows Support

Implement support for layered windows. Drawing operations to layered windows are redirected to a bitmap residing in memory. When a window needs to be repainted, the bitmap is copied onto the screen.

Benefits
  • Layered windows provide an efficient way to achieve complex effects like shadows. The stock menus provided to all applications use layered Windows to achieve the shadowing effect one sees. Many Windows applications rely on layered windows.
References
Skills Needed
  • Windows display driver development experience.

Multi-Monitor Support

The implementation of multi-monitor support is until now almost inexistent. Display Device Drivers exposes them thanks to the HwVidGetVideoChildDescriptor callback, which videoprt.sys uses to enumerate monitors attached to it to then pass the information to win32k.sys. It is then the role of win32k.sys to make the link between the two (or more) monitors, either cloning or extending the desktop and exposing the relevant features to client applications.

Benefits
  • Multi-monitor support would bring ReactOS into a serious player in professional desktop applications, given the increasing number of double-screen installations present in modern open-spaces. Document comparison, permanently visible e-mail reader or presentation applications are just a few benefits professionals get when using multiple monitor.l
  • Multi-Monitor support would also find its place in the casual computing experience. Writing e-mails while watching a movie, or chatting with friends about current football play is the things people do in XXIst century!
  • From a technical stance, properly supporting this feature would increase driver support, and WIN32 application compatibility regarding APIs such as EnumDisplaySettings.
References
Skills Needed
  • Experience with Windows display drivers.
  • Experience with WINAPI, especially gdi32/user32.: Experience with PNP, as this feature would require detection of connected monitors: Experience with EDID/VESA standards.

Wine-based Win32 subsystem (Arwinss)

There is a proof of concept done which shows the possibility to reuse majority of Wine code for implementing user32.dll, gdi32.dll and win32k.sys, which would be binary compatible enough to ultimately work even in native Windows. However, the Arwinss branch is based on an now old Wine architecture and old ReactOS GDI code. The goal of this task would be to "update" Arwinss branch to the newest Wine 1.7 architecture (including DIB engine and other changes), bring in changes from ReactOS win32k graphic code which happened after Arwinss was last updated, find the source and fix a well defined set of Arwinss-specific bugs, conduct a performance review and estimate performance improvements strategies (optional, if time allows).

Benefits
  • Greatly superior application compatibility level
  • Improved usability
References
Skills Needed
  • Good knowledge of C language
  • Familiarity with Win32 and GDI APIs
  • Generic knowledge of Windows NT architecture
  • Knowledge of core principles of Wine architecture

Durability

Kernel mode test suite

Improve our existing kernel mode test suite by adding comprehensive new tests in areas previously untouched by the test suite like the kernel caching APIs and PnP. The goal is to extensively test Native API functions exported by the kernel. Reference behavior could be checked by running the test suite on original Windows operating system.

Benefits
  • Improved system stability.
  • More information about undocumented behavior.
  • Improved compatibility with third party drivers.
Skills Needed
  • Native API knowledge
  • NT driver development skills

Win32k test suite

Right now we have basically no tests that cover the win32k module. As win32k is the cornerstone of the interface between the Win32 Subsystem and the display drivers, lack of tests leads to inconsistency, guess work and frustration when it comes to improving driver compatibility. A virtual display driver (à la kmtest.sys) allows us to test the functionality and behavior of win32k. If time permits, it would also be possible to add a mechanism to test videoprt.sys functionality, and the relationship between a display driver and its miniport counterpart.

References
Benefits
  • Improved stability.
  • More information about undocumented behavior.
  • Improved compatibility with third party drivers.
Needed skills
  • Display drivers development experience
  • Win32 API knowledge

Project Tools

Implement Configuration Reload in rosev_ircsystem

The ReactOS Project is backed by a non-profit organization called ReactOS Deutschland e.V. operating under German law. As such, it holds regular General Assemblies over IRC. An IRC Server System called "rosev_ircsystem" has been written from scratch, which is easy to set up and combines proper identification and voting to comply with all regulations for General Assemblies.

What's missing is a feature to reload the configuration after the server has already been started. Doing this properly includes subsequent tasks like kicking out old users/channels that aren't part of the new configuration anymore. It may require refactoring the existing code in several places.

References
Benefits
  • Improved usability of this IRC Server System
  • Also makes the software more attractive to other organizations operating under similar laws
Needed skills
  • C++ and Boost knowledge
  • Basic networking skills