blob: 66fe5f1af0f1f72dadbc5b37e80d18bd2ea5d8de [file] [log] [blame] [view]
Ron Eldorea24d752017-08-31 17:02:01 +03001Contributing
2============
Ron Eldorb5e6a772017-08-16 11:23:31 +03003We gratefully accept bug reports and contributions from the community. There are some requirements we need to fulfill in order to be able to integrate contributions:
4
Ron Eldor7f888982017-08-16 16:05:52 +03005 - As with any open source project, contributions will be reviewed by the project team and community and may need some modifications to be accepted.
6 - The contribution should not break API or ABI, unless there is a real justification for that. If there is an API change, the contribution, if accepted, will be merged only when there will be a major release.
7
Ron Eldorea24d752017-08-31 17:02:01 +03008Coding Standards
9----------------
Dave Rodgman7c195162022-10-12 16:27:14 +010010- We would ask that contributions conform to [our coding standards](https://mbed-tls.readthedocs.io/en/latest/kb/development/mbedtls-coding-standards/), and that contributions are fully tested before submission, as mentioned in the [Tests](#tests) and [Continuous Integration](#continuous-integration-tests) sections.
Ron Eldor7f888982017-08-16 16:05:52 +030011- The code should be written in a clean and readable style.
12- The code should be written in a portable generic way, that will benefit the whole community, and not only your own needs.
Ron Eldorea24d752017-08-31 17:02:01 +030013- The code should be secure, and will be reviewed from a security point of view as well.
Ron Eldorb5e6a772017-08-16 11:23:31 +030014
Ron Eldorea24d752017-08-31 17:02:01 +030015Making a Contribution
16---------------------
Dave Rodgman017a1992022-03-31 14:07:01 +0100171. [Check for open issues](https://github.com/Mbed-TLS/mbedtls/issues) or [start a discussion](https://lists.trustedfirmware.org/mailman3/lists/mbed-tls.lists.trustedfirmware.org) around a feature idea or a bug.
181. Fork the [Mbed TLS repository on GitHub](https://github.com/Mbed-TLS/mbedtls) to start making your changes. As a general rule, you should use the ["development" branch](https://github.com/Mbed-TLS/mbedtls/tree/development) as a basis.
Ron Eldorea24d752017-08-31 17:02:01 +0300191. Write a test which shows that the bug was fixed or that the feature works as expected.
Ron Eldorb2231fc2017-09-10 17:32:05 +0300201. Send a pull request (PR) and work with us until it gets merged and published. Contributions may need some modifications, so a few rounds of review and fixing may be necessary. We will include your name in the ChangeLog :)
Ron Eldorea24d752017-08-31 17:02:01 +0300211. For quick merging, the contribution should be short, and concentrated on a single feature or topic. The larger the contribution is, the longer it would take to review it and merge it.
Ron Eldorb5e6a772017-08-16 11:23:31 +030022
Manuel Pégourié-Gonnard80c02af2021-02-25 12:34:58 +010023Backwards Compatibility
24-----------------------
25
26The project aims to minimise the impact on users upgrading to newer versions of the library and it should not be necessary for a user to make any changes to their own code to work with a newer version of the library. Unless the user has made an active decision to use newer features, a newer generation of the library or a change has been necessary due to a security issue or other significant software defect, no modifications to their own code should be necessary. To achieve this, API compatibility is maintained between different versions of Mbed TLS on the main development branch and in LTS (Long Term Support) branches, as described in [BRANCHES.md](BRANCHES.md).
Simon Butcher7870ec12018-07-20 19:39:10 +010027
Simon Butcher10f96632018-07-23 16:10:36 +010028To minimise such disruption to users, where a change to the interface is required, all changes to the ABI or API, even on the main development branch where new features are added, need to be justifiable by either being a significant enhancement, new feature or bug fix which is best resolved by an interface change.
Simon Butcher7870ec12018-07-20 19:39:10 +010029
Simon Butcher10f96632018-07-23 16:10:36 +010030Where changes to an existing interface are necessary, functions in the public interface which need to be changed, are marked as 'deprecated'. This is done with the preprocessor symbols `MBEDTLS_DEPRECATED_WARNING` and `MBEDTLS_DEPRECATED_REMOVED`. Then, a new function with a new name but similar if not identical behaviour to the original function containing the necessary changes should be created alongside the existing deprecated function.
Simon Butcher7870ec12018-07-20 19:39:10 +010031
Simon Butcher10f96632018-07-23 16:10:36 +010032When a build is made with the deprecation preprocessor symbols defined, a compiler warning will be generated to warn a user that the function will be removed at some point in the future, notifying users that they should change from the older deprecated function to the newer function at their own convenience.
Simon Butcher7870ec12018-07-20 19:39:10 +010033
Simon Butcher10f96632018-07-23 16:10:36 +010034Therefore, no changes are permitted to the definition of functions in the public interface which will change the API. Instead the interface can only be changed by its extension. As described above, if a function needs to be changed, a new function needs to be created alongside it, with a new name, and whatever change is necessary, such as a new parameter or the addition of a return value.
Simon Butcher7870ec12018-07-20 19:39:10 +010035
Simon Butcher10f96632018-07-23 16:10:36 +010036Periodically, the library will remove deprecated functions from the library which will be a breaking change in the API, but such changes will be made only in a planned, structured way that gives sufficient notice to users of the library.
Simon Butcher7870ec12018-07-20 19:39:10 +010037
Simon Butcherd50f7862018-07-03 16:11:44 +010038Long Term Support Branches
39--------------------------
Simon Butcher7870ec12018-07-20 19:39:10 +010040Mbed TLS maintains several LTS (Long Term Support) branches, which are maintained continuously for a given period. The LTS branches are provided to allow users of the library to have a maintained, stable version of the library which contains only security fixes and fixes for other defects, without encountering additional features or API extensions which may introduce issues or change the code size or RAM usage, which can be significant considerations on some platforms. To allow users to take advantage of the LTS branches, these branches maintain backwards compatibility for both the public API and ABI.
Ron Eldorb5e6a772017-08-16 11:23:31 +030041
Simon Butcherd50f7862018-07-03 16:11:44 +010042When backporting to these branches please observe the following rules:
43
Dan Handley16a98852020-02-18 18:00:05 +0000441. Any change to the library which changes the API or ABI cannot be backported.
451. All bug fixes that correct a defect that is also present in an LTS branch must be backported to that LTS branch. If a bug fix introduces a change to the API such as a new function, the fix should be reworked to avoid the API change. API changes without very strong justification are unlikely to be accepted.
461. If a contribution is a new feature or enhancement, no backporting is required. Exceptions to this may be additional test cases or quality improvements such as changes to build or test scripts.
Simon Butcher7870ec12018-07-20 19:39:10 +010047
Dave Rodgman017a1992022-03-31 14:07:01 +010048It would be highly appreciated if contributions are backported to LTS branches in addition to the [development branch](https://github.com/Mbed-TLS/mbedtls/tree/development) by contributors.
Simon Butcherd50f7862018-07-03 16:11:44 +010049
Manuel Pégourié-Gonnard80c02af2021-02-25 12:34:58 +010050The list of maintained branches can be found in the [Current Branches section
51of BRANCHES.md](BRANCHES.md#current-branches).
52
Ron Eldorea24d752017-08-31 17:02:01 +030053Tests
54-----
Simon Butcher7870ec12018-07-20 19:39:10 +010055As mentioned, tests that show the correctness of the feature or bug fix should be added to the pull request, if no such tests exist.
56
57Mbed TLS includes a comprehensive set of test suites in the `tests/` directory that are dynamically generated to produce the actual test source files (e.g. `test_suite_mpi.c`). These files are generated from a `function file` (e.g. `suites/test_suite_mpi.function`) and a `data file` (e.g. `suites/test_suite_mpi.data`). The function file contains the test functions. The data file contains the test cases, specified as parameters that will be passed to the test function.
58
Dave Rodgman7c195162022-10-12 16:27:14 +010059[A Knowledge Base article describing how to add additional tests is available on the Mbed TLS website](https://mbed-tls.readthedocs.io/en/latest/kb/development/test_suites/).
Simon Butcher5a5d03f2018-07-23 16:16:04 +010060
Simon Butcher269e9992018-07-24 14:41:02 +010061A test script `tests/scripts/basic-build-test.sh` is available to show test coverage of the library. New code contributions should provide a similar level of code coverage to that which already exists for the library.
Ron Eldorb5e6a772017-08-16 11:23:31 +030062
Ron Eldor7f888982017-08-16 16:05:52 +030063Sample applications, if needed, should be modified as well.
64
Ron Eldorea24d752017-08-31 17:02:01 +030065Continuous Integration Tests
66----------------------------
Simon Butcher7870ec12018-07-20 19:39:10 +010067Once a PR has been made, the Continuous Integration (CI) tests are triggered and run. You should follow the result of the CI tests, and fix failures.
68
Dave Rodgman017a1992022-03-31 14:07:01 +010069It is advised to enable the [githooks scripts](https://github.com/Mbed-TLS/mbedtls/tree/development/tests/git-scripts) prior to pushing your changes, for catching some of the issues as early as possible.
Ron Eldor7f888982017-08-16 16:05:52 +030070
Ron Eldorea24d752017-08-31 17:02:01 +030071Documentation
72-------------
Simon Butcher10f96632018-07-23 16:10:36 +010073Mbed TLS is well documented, but if you think documentation is needed, speak out!
Ron Eldor7f888982017-08-16 16:05:52 +030074
751. All interfaces should be documented through Doxygen. New APIs should introduce Doxygen documentation.
Dan Handley16a98852020-02-18 18:00:05 +0000761. Complex parts in the code should include comments.
771. If needed, a Readme file is advised.
Dave Rodgman7c195162022-10-12 16:27:14 +0100781. If a [Knowledge Base (KB)](https://mbed-tls.readthedocs.io/en/latest/kb/) article should be added, write this as a comment in the PR description.
Dave Rodgman017a1992022-03-31 14:07:01 +0100791. A [ChangeLog](https://github.com/Mbed-TLS/mbedtls/blob/development/ChangeLog.d/00README.md) entry should be added for this contribution.
Dave Rodgmanf1846252022-09-15 11:52:44 +010080
81License and Copyright
82---------------------
83
84All new files should include the [Apache-2.0](https://spdx.org/licenses/Apache-2.0.html) standard license header where possible. For licensing details, please see the [License section of the README](README.md#License).
85
86The copyright on contributions is retained by the original authors of the code. Where possible for new files, this should be noted in a comment at the top of the file in the form: "Copyright The Mbed TLS Contributors".
87
88When contributing code to us, the committer and all authors are required to make the submission under the terms of the [Developer Certificate of Origin](dco.txt), confirming that the code submitted can (legally) become part of the project, and be subject to the same Apache 2.0 license. This is done by including the standard Git `Signed-off-by:` line in every commit message. If more than one person contributed to the commit, they should also add their own `Signed-off-by:` line.