[NTOSKRNL] Add ASSERTs to make sure, we never use an uninitialized variable
[reactos.git] / CONTRIBUTING.md
1 # How To Contribute
2
3 There are several ways to contribute to the development of ReactOS. The most often encountered problem is not knowing where to begin or what to do. If you are able to program or understand the technical information that is pertinent to this project, helping the development can be easy.
4
5 - [What To Do?](#what-to-do?)
6 - [How To Contribute?](#how-to-contribute?)
7 - [Where To Start?](#where-to-start?)
8
9 ## What To Do?
10
11 ### Fix bugs
12
13 You can try to fix a few bugs that are already listed in [JIRA]. Squashing bugs is not a simple task. It requires a lot more skill than simply searching for them, and can be time consuming; however, by doing that you greatly help ReactOS become a stable system.
14
15 _NOTE: patches related to 3rd party code such as Wine or BtrFS should be sent to upstream of the said projects. See [3rd Party Files.txt], [README.WINE] and [README.FSD] in [media/doc](media/doc) for details._
16
17 ### Fix tests
18
19 Tests are used to check the functionality and correctness of APIs on ReactOS compared to Windows implementations. There are some unit tests that you could help ReactOS pass, which can be found [in the Web Test Manager][testman] and some that are broken or yet to be written.
20
21 ### Fix Coverity scans
22
23 [Coverity] is enhanced static analysis that uncovers leaks, buffer overflows, security issues and other. We do such scans on ReactOS codebase pretty often. You can [request][request-coverity] to see Coverity 'defects' and help to fix them.
24
25 ### Test ReactOS
26
27 By localizing bugs, developers can identify what causes the bug and which part it affects. There are a variety of methods to [debug] ReactOS while testing it. After identifying a bug, check if it is already known about by searching on JIRA and adding any additional information to the report. If you think that it is an unidentified bug, consider [filing a bug report].
28
29 ### Implement new things
30
31 Considering ReactOS is alpha quality software, there is a lot of [missing functionality] that Windows operating systems have. Before starting a project to implement something, find out whether another person is working on the same thing. If you find that someone is already working on it, ask if any assistance is needed for what specifically is being worked on or a related project. More often than not, someone will start to implement something and move onto something else before it's complete. Make sure you stay committed to what you are going to implement, and do not be afraid to ask for assistance if you need help with something.
32
33 ### Write documentation
34
35 There are some important points if you would like to help document ReactOS:
36
37 1. Make sure the documentation does not exist yet (if it does, help improve it).
38 2. Respect [clean room reverse engineering] practices.
39 3. Add your knowledge to a place where the other developers can find it.
40
41 ## How To Contribute?
42
43 Your contribution can be of numerous forms. We currently accept two ways to contribute - Pull Requests and Patches.
44
45 ### Pull Requests
46
47 Since our [migration to GitHub] we gladly accept __[Pull Requests]__. Pull requests let you tell others about changes you have pushed to a repository on GitHub. Once a pull request is opened, you can discuss and review the potential changes with collaborators and add follow-up commits before the changes are merged into the repository. __Pull request is a prefered way to submit your work__ - it makes reviewing and merging your contribution much easier.
48
49 ### Patches
50
51 A __[patch]__ is a set of changes to existing source code. The changes in a patch can be merged into existing source code. This process is referred to as applying a patch (to source code). Which changes a patch contains and the way the patch is structured can have significant impact on the consequences that can happen from applying the patch.
52
53 See [Submitting Patches] for details.
54
55 ### Rules and Recommendations
56
57 - *Use your __real name__ and __real email__.* We do not accept anonymous contributions!
58 - *Ensure your contribution is properly described.* Include the relevant issue number if applicable.
59 - *Put only related changes.* It will make reviewing easier as the reviewer needs to recall less information about the existing source code that is changed.
60 - *Search for similar pull requests/patches before submitting.* It may be that a similar pull request or issue was opened previously. Comment and review on that one instead.
61 - *Keep your contribution small and focused on the topic.* It can be tempting to fix existing issues as you come across them while reading the source code. Resist the temptation and put in a note in the source code instead, or (even better) put the issue in the issue tracking system.
62 - *Respect our __[Coding Style]__ and __[Programming Guidelines]__.*
63 - *Do not be afraid to ask questions.* Ask our developers on JIRA or [IRC] channel.
64
65 ## Where To Start?
66
67 Finding a good project to start with can be a challenge, because when starting out you are (usually) not aware of all the possibilities. To help you find a project, here are some ideas to try:
68
69 - Find a test that fails, and try to make it succeed: <https://www.reactos.org/testman/>
70 - Look around in JIRA, and if you have problems finding nice projects to start with, there is a label for this: <https://jira.reactos.org/issues/?jql=labels%20%3D%20starter-project>
71 - Ask for help on [IRC]
72 - Additionally, there are some tests that cause crashes/hangs, but these might be slightly harder: <https://jira.reactos.org/browse/ROSTESTS-125>
73
74 [clean room reverse engineering]: https://en.wikipedia.org/wiki/Clean_room_design
75 [debug]: https://reactos.org/wiki/Debugging
76 [JIRA]: https://jira.reactos.org/
77 [filing a bug report]: https://reactos.org/wiki/File_Bugs
78 [testman]: https://www.reactos.org/testman/
79 [migration to GitHub]: https://www.reactos.org/project-news/reactos-repository-migrated-github
80 [humans are terrible at tracking large amount of information]: https://www.eurekalert.org/pub_releases/2005-03/aps-hmc030805.php
81 [Pull requests]: https://help.github.com/articles/about-pull-requests/
82 [tips for reviewing patches]: https://drupal.org/patch/review
83 [missing functionality]: https://reactos.org/wiki/Missing_ReactOS_Functionality
84 [patch]: https://git-scm.com/docs/git-format-patch
85 [Submitting Patches]: https://reactos.org/wiki/Submitting_Patches
86 [Coding Style]: https://reactos.org/wiki/Coding_Style
87 [IRC]: https://reactos.org/wiki/Connect_to_the_ReactOS_IRC_Channels
88 [Programming Guidelines]: https://reactos.org/wiki/Programming_Guidelines
89 [3rd Party Files.txt]: /media/doc/3rd_Party_Files.txt
90 [README.WINE]: /media/doc/README.WINE
91 [README.FSD]: /media/doc/README.FSD
92 [Coverity]: https://scan.coverity.com/projects/reactos
93 [request-coverity]: https://scan.coverity.com/memberships/new?project_id=reactos