Development Guidelines: Difference between revisions

From flashprog
Jump to navigation Jump to search
Stefanct@flashrom.org/ (talk)
("Stefanct@flashrom.org/: *Empty MediaWiki Message*")
m (Correct numbering in `Push your patch')
 
(45 intermediate revisions by 4 users not shown)
Line 1: Line 1:
= Branches =
= Branches =


Till the release of flashrom 0.9.8 there was basically a single branch (trunk) where linear development happened.
=== Historical ===
Due to the lack of reviewing efforts proposed patches were not integrated in a timely manner which has not only led to shrinking participation over the years but also growing maintenance work to keep unintegrated patches from bitrotting.
This strategy was also responsible for numerous merge conflicts when said patches were rebased.


The upside was a very stable project in terms of bugs.
Till the release of flashrom 0.9.9 there was basically a single branch
While there were some mistakes that broke flashrom on some particular configurations, generally speaking one could just check out and use the newest development version of flashrom without problems.
(trunk) where linear development happened. After 0.9.9 it was decided
to switch to Git and a two branch model, a ''stable'' and a ''staging''
branch. This led to some confusion and as nobody who had access to the
''stable'' branch had the time to work on it, development continued
about one year after the 0.9.9 release on a ''staging'' branch at
coreboot.org. Despite its name, we strived to keep flashrom's quality
and hoped that everything would be merged to ''stable'' once work
continues there.


At the beginning of the 0.9.9 development cycle there were approximately 200 published unmerged patches.
The historical ''staging'' branch was eventually renamed to ''master''.
To increase our pace of adopting changes we will merge patches faster for 0.9.9 with less resources spent on reviewing.
Releases of flashrom were based on this branch from 1.0 to 1.3. However,
This will inevitably lead to some bugs crawling into the repository that might become a bad surprise for unprepared users.
as regressions in both functionality and maintainability became visible
To make this change more visible we will not merge patches to the previous trunk branch but a new development branch named ''staging''.
around flashrom 1.3, a "flashrom-stable" ''main'' branch was forked from
flashrom 1.2.


=== <tt>staging</tt> branch ===
=== Flashprog ''main'' Branch ===
Starting with 0.9.9 the main development of flashrom will happen in the ''<tt>staging</tt>'' branch.
Here the rough edges of flashrom will be softened over time.
Yet unmerged patches will be committed there as soon as anyone with commit rights deem it ready.


A patch is ready if it is believed to improve flashrom without any dramatic/foreseeable regressions in a maintainable way.
Our ''main'' branch is a direct descendant of flashrom-stable which was
In general a consensus should be reached among the community about this before committing a patch, ideally through the review process described below.
discontinued on ''flashrom.org''. It's where we currently focus all our
History has thought us that reaching consensus can be impossible if some parties do not participate in the required communication process (e.g. due to lack of time to do so).
development. The goal hasn't changed: Merge new commits and make them
For that reason there are no hard rules regarding the process of committing patches to ''staging'' apart from the ones stated in this chapter.
available to a broader audience for testing, whilst trying to keep the
Like commits to ''trunk'' every patch pushed to ''staging'' needs an <tt>Acked-by</tt> tag, but it will often be the one of the original author.
regression rate as low as possible.


Fixes for patches already committed to <tt>staging</tt> should be written in a way that allows to apply them to the original patch independently from possible other intermediate changes.
=== Release Branches (e.g. ''1.0.x'') ===
That way they can be merged to <tt>trunk</tt> in the proper state they should have been committed in the first place.
To support this the subject of the fixes should be kept equal to the original patch but prefixed with <tt>fixup!</tt> or <tt>squash!</tt> to facilitate git's <tt>rebase</tt> command as described in its [http://git-scm.com/docs/git-rebase manpage].
The merging of changes from <tt>staging</tt> to <tt>trunk</tt> should happen not earlier than 1 month after the last related commit to <tt>staging</tt> (i.e. a later fix will prolong this period).
To merge a patch an <tt>Acked-by</tt> tag by another person is required, optionally following a review process as described below.


=== <tt>trunk</tt> branch ===
Branching for a new release can happen at any point in time when a
The <tt>trunk</tt> branch shall remain the branch we recommend to users unless it is clear that they require changes that are only present in <tt>staging</tt>.
commit (branch point) on ''main'' seems to be in good shape and was
It is also the branch used to branch off and tag stable releases.
reasonably tested after previous invasive changes. Between the branch
point and the release, every fix pushed for ''main'' for a problem
that also persists on the release branch shall be backported. The same
also applies after the release for the latest release branch and,
optionally, for any earlier release branch that is still maintained
for other reasons (e.g. part of a long term distribution).


=== Stable release branches (e.g. <tt>0.9.7</tt>) ===
Whenever a release branch has no further unmerged commits in queue
Release branches are used for backporting important patches to specific releases.
and is not awaiting backported fixes, a release candidate (RC) can be
Point releases (e.g. <tt>0.9.7.1</tt>) are tagged "from" them.
tagged on that branch. This can also be the original branch point. The
RC shall undergo extensive build tests and be publicly advertised as
ready for testing. Not less than three days after the last RC that
included code changes, a release can be tagged if no regressions
showed up.


= Patch submission =
Release-branch names follow the pattern '''''<major>.<minor>.x'''''
(e.g. ''1.0.x''). The first release of a branch is tagged
'''''v<major>.<minor>''''', without a point-release number (e.g.
''v1.0''). Every following release from the same branch will have
a point-release number starting with '''''.1''''' (e.g. ''v1.0.1'')
and will only add backported fixes to the release.


Please send any patches to our [[Mailinglist|mailing list]] according to the rules and information in this section.
The branch point (i.e. last common commit of ''main'' and a release
branch) should be tagged as '''''p<major>.<minor>''''' (e.g. ''p1.0''),
to keep track where we are on the ''main'' branch.


Our guidelines heavily borrow  heavily from [http://www.coreboot.org/Development_Guidelines the coreboot development guidelines], and most of them apply to flashrom as well. The really important part is about the Signed-off-by procedure which is quoted [[#Sign-off Procedure|below]].
= Patch Submission =
 
== Coding Style ==
 
Flashprog generally follows the
[https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/coding-style.rst Linux kernel style].
 
The notable exception is line length limit. Our guidelines are:
* 80-columns soft limit for most code and comments. This is to encourage simple design and concise naming.
 
* 112-columns hard limit. Use this to reduce line breaks in cases where they harm grep-ability or overall readability, such as print statements and function signatures. Don't abuse this for long variable/function names or deep nesting.
 
* Tables are the only exception to the hard limit and may be as long as needed for practical purposes.
 
== Sending a Patch ==
 
'''Before submitting a patch for review, put your [[#Sign-off Procedure|Signed-off-by line]] in the commit message.'''
 
Currently there are two ways to submit patches:
 
1. Via [https://review.sourcearcade.org/q/project:flashprog Gerrit on sourcearcade.org],
i.e. ''git push origin HEAD:refs/for/main''
 
2. Via our [[Contact#Mailing_List|mailing list]]. When sending a patch via the mailing list, send it in-line instead of as an attachment so that reviewers can easily comment on specific parts of it.
 
Our guidelines borrow  heavily from the
[https://doc.coreboot.org/contributing/gerrit_guidelines.html coreboot development guidelines],
and most of them apply to flashprog as well. The really important part
is about the Signed-off-by procedure which is quoted [[#Sign-off Procedure|below]].


We try to '''reuse as much code as possible''' and create new files only if absolutely needed, so if you find a function somewhere in the tree which already does what you want (even if it is for a totally different chip), please use it. See also [[Random notes#Command_set_secrets|Command set secrets]].
We try to '''reuse as much code as possible''' and create new files only if absolutely needed, so if you find a function somewhere in the tree which already does what you want (even if it is for a totally different chip), please use it. See also [[Random notes#Command_set_secrets|Command set secrets]].
Line 48: Line 91:
The '''patch reviews''' may sound harsh, but please don't get discouraged. We try to merge simple patches after one or two iterations and complicated ones as soon as possible, but we have quite high standards regarding code quality.
The '''patch reviews''' may sound harsh, but please don't get discouraged. We try to merge simple patches after one or two iterations and complicated ones as soon as possible, but we have quite high standards regarding code quality.


If you introduce new features (not flash chips, but stuff like partial programming, support for new external programmers, voltage handling, etc) please '''discuss your plans''' on the [[Mailinglist|mailing list]] first. That way, we can avoid duplicated work and know about how flashrom internals need to be adjusted and you avoid frustration if there is some disagreement about the design.
If you introduce new features (not flash chips, but stuff like partial
programming, support for new external programmers, voltage handling,
etc) please '''discuss your plans''' on the
[[Contact#Mailing_List|mailing list]] first. That way, we can avoid
duplicated work and know about how flashprog internals need to be
adjusted and you avoid frustration if there is some disagreement about
the design.


For patches that modify convoluted tables like <tt>struct flashchip flashchips[]</tt> in flashchips.c it may make sense to increase the lines of '''context''' to include enough information directly in the patch for reviewers (for example to include the chip names when changing other parameters like .voltage). To do this with subversion use '''svn diff --diff-cmd diff -x -u5'''; or with git use '''git format-patch -U5''' where 5 is an example for the number of lines of context you want.
If you intend to send patches to the mailing list that modify convoluted tables like <tt>struct flashchip flashchips[]</tt> in flashchips.c, it makes sense to increase the lines of '''context''' to include enough information directly in the patch for reviewers (for example to include the chip names when changing other parameters like .voltage). To do this with git use '''git format-patch -U5''' where 5 is an example for the number of lines of context you want.


== Sign-off Procedure ==
=== Set up a Gerrit Account on review.sourcearcade.org ===


We employ a similar sign-off procedure [http://web.archive.org/web/20070306195036/http://osdlab.org/newsroom/press_releases/2004/2004_05_24_dco.html as the Linux kernel developers] do.
1. Go to https://review.sourcearcade.org/login and create an account.
Please add a note such as
Currently, locally stored on SourceArcade and GitHub credentials can be
used.
 
2. Edit your settings by clicking on the gear icon in the upper right corner.
 
3. Upload an SSH public key, or click the button to generate an HTTPS password.
 
=== Push your patch ===
 
1. Install Git hooks: ''make gitconfig''
 
2. If using SSH, update the push URL:
''git remote set-url --push origin
ssh://'''<gerrit_username>'''@review.sourcearcade.org:29418/flashprog''
 
3. Push to Gerrit: ''git push origin HEAD:refs/for/master%topic=my_wonderful_patch''.
 
* If using HTTPS you will be prompted for the username and password you set in the Gerrit UI.
 
* If successful, the Gerrit URL for your patch will be shown in the output.
 
== Commit message ==
 
Commit messages shall have the following format:
<component>: Short description (up to 72 characters)
This is a long description. Max width of each line in the description
is 72 characters. It is separated from the summary by a blank line. You
may skip the long description if the short description is sufficient,
for example "flashchips: Add FOO25Q128" to add FOO25Q128 chip support.
You may have multiple paragraphs in the long description, but please
do not write a novel here. For non-trivial changes you must explain
what your patch does, why, and how it was tested.
Finally, follow the [[#Sign-off Procedure]] to add your sign-off!
<span style="color:#cb4b16">Signed-off-by: Your Name <your@domain></span>
 
 
=== Sign-off Procedure ===
 
We employ a similar sign-off procedure
[http://web.archive.org/web/20070306195036/http://osdlab.org/newsroom/press_releases/2004/2004_05_24_dco.html as the Linux kernel developers] do.
Each gerrit commit requires a sign-off line saying that the contributed
code abides by the Developer’s certificate of origin, below.
  Signed-off-by: Random J Developer <random@developer.example.org>
  Signed-off-by: Random J Developer <random@developer.example.org>
to your email/patch if you agree with the following Developer's Certificate of Origin 1.1.


<span style="color:red">You have to use your real name in the Signed-off-by line and in any copyright notices you add.</span> Patches without an associated real name cannot be committed!
Using ''-s'' with ''git commit'' will automatically add a Signed-off-by line
to your commit message. Patches without a Signed-off-by should not be
pushed to Gerrit.
 
You must use a known identity in the Signed-off-by line. Anonymous
contributions cannot be committed! This can be anything sufficient to
identify and contact the source of a contribution, such as your name or
an established alias/nickname. Refer to this
[https://lkml.org/lkml/2004/5/23/10 LKML thread] and the
[https://en.wikipedia.org/wiki/SCO%E2%80%93Linux_disputes SCO-Linux disputes]
for the rationale behind the DCO.


'''Developer's Certificate of Origin 1.1:'''
'''Developer's Certificate of Origin 1.1:'''
Line 83: Line 186:
= Reviews =
= Reviews =


Contributors without commit rights should receive at least a preliminary review within one week of submission by some committer.
All patches finally have to go through Gerrit. Though, if the author
At minimum this should include a broad indication of acceptance or rejection of...
prefers, the actual reviewing process can also take place on the mailing
list.
 
All contributions should receive at least a preliminary review within
one week of submission by some flashprog developer (if that doesn't
happen in time, please be patient). At minimum this should include a
broad indication of acceptance or rejection of...
* the idea/rationale/motivation,
* the idea/rationale/motivation,
* the implementation
* the implementation
respectively.
respectively.


In general, reviews should focus on the architectural changes and things that affect flashrom as a whole.
In general, reviews should focus on the architectural changes and things
that affect flashprog as a whole.
This includes (but is by no means limited to) changes in APIs and types, safety, portability, extensibility, and maintainability.
This includes (but is by no means limited to) changes in APIs and types, safety, portability, extensibility, and maintainability.
The purpose of reviews is not to create perfect patches, but to steer development in the right direction and produce consensus within the community.
The purpose of reviews is not to create perfect patches, but to steer development in the right direction and produce consensus within the community.
Line 95: Line 205:
NB: New contributors may need more detailed advices and should be told about minor issues like formatting problems more precisely.
NB: New contributors may need more detailed advices and should be told about minor issues like formatting problems more precisely.
The result of a review should either be an accepted patch or a guideline how the existing code should be changed to be eventually accepted.
The result of a review should either be an accepted patch or a guideline how the existing code should be changed to be eventually accepted.
See also [Adding and Reviewing new flash chips].


== Acked-by ==
= Merging to Branches =
 
* Trivial stuff like...
** compile fixes (that are tested on all or at least some affected and some ''unaffected'' platforms),
** marking boards/chips/programmers as tested, and
** typo and whitespace fixes etc.
:do not need an Acked-by line from someone else than the author.
* If the patch is something like a board enable, new chip(set) support etc. (i.e. no refactoring, no architectural impact), you can get an ack from someone who is not an experienced developer after he/she has tested the patch, or ack yourself if proof exists that it worked.
* However, for more complicated patches you should get a review from someone who knows the code well if possible.
** If no one replies to the patch submission on the mailing list within 2 weeks, you may assume consent by the community and ack yourself.
** If, however, one of the known community members comments on your submission and requests changes or further information/a rationale etc., you need to come to some consensus with that member about the points complained about (only).
*** If your answer (e.g. in form of a new iteration of the patch including the requested changes or a mail containing the requested information) does not get any replies for three weeks, you may ack yourself.
*** When consensus in all points have been reached, but no explicit ack has been sent, then the submission falls under the same timeout rule again; i.e. if no one replies to your last e-mail within 2 weeks, you may ack yourself.
* Contributions from people without commit rights should not be treated much differently.
: Maintainers should merge them if there is no objection from the community within the timeframes and according to the rule set described above.
 
== Adding/reviewing a new flash chip ==
# Get the datasheet of the exact type of chip.
# Open <tt>flashchips.c</tt> and <tt>flashchips.h</tt>.
# First, find the best* IDs in the datasheet (*FIXME: this needs to be explained together with the probing somewhere else in detail) and check if the ID exists in <tt>flashchips.h</tt> already
#* If it does but is named after a different chip,
#*:then add a comment regarding the twin and continue by comparing the definition in <tt>flashchips.c</tt> with the datasheet of the twin/new chip as if you would add it but leave out the next step (see below). First you should change the <tt>.name</tt> to reflect the additional chip model (see other chips of naming examples). If you find significant* differences in the chips behavior you have found a so called evil twin (*judging the significance of a difference is quite hard and requires some understanding of flashrom behavior, examples of significant differences are: different sizes of blocks or different opcodes for operations). In that case copy the entry and continue to change that (don't forget to undo the previous changes before).
#* If it does and the name matches too,
#*:the chip is either already added or only the ID was added and you should use that define.
#* If it does not,
#*:then you should add it conforming to the standards/comments in the file.
#: Usually the chip IDs follow a simple scheme: They are all uppercase; first the manufacturer name (like for the manufacturer IDs on top of each paragraph in flashchips.h) followed by an underscore and then the chipname. The latter should in general equal the <tt>.name</tt>, with dots (and other disallowed characters) replaced by underscores. Shared chip IDs typically use the macro name that happened to be added first to flashrom (which is also probably the first one manufactured) and which usually matches the other chips of that series in flashchips.h.
# If possible copy an existing, similar entry in the giant array in <tt>flashchips.c</tt> or start a new one at the right position (according to the comment on top of the array)
# Add <tt>.vendor</tt>, <tt>.name</tt>, IDs selected as explained above and <tt>.total_size</tt>.
# <tt>.page_size</tt> is really hard. Please read this [http://www.flashrom.org/pipermail/flashrom/2013-April/010817.html long explanation], or ignore it for now and set it to <tt>256</tt>.
# We encode various features of flash chips in a bitmask named <tt>.feature_bits</tt>. The various possibilities can be found in <tt>flash.h</tt>.
# <tt>.tested</tt> is used to indicate if the code was tested to work with real hardware, its possible values are defined in <tt>flash.h</tt>. Without any tests it should be set to <tt>TEST_UNTESTED</tt>.
# <tt>.probe</tt> indicates which function is called to fetch IDs from the chip and to compare them with the ones in <tt>.manufacture_id</tt> and <tt>.model_id</tt>. This requires some knowledge or source reading. For most SPI flash chips <tt>probe_spi_rdid</tt> is the right one if the datasheets mentions <tt>0x9f</tt> as an identification/probing opcode.
# <tt>.probe_timing</tt> is only used for non-SPI chips. It indicates the delay after "enter/exit ID mode" commands in microseconds (see <tt>flash.h</tt> for special values).
# <tt>.block_erasers</tt> stores an array of pairs of erase functions (<tt>.block_erase</tt>) with their respective layout (<tt>.eraseblocks</tt>).
## <tt>.block_erase</tt> is similar to the probing function. You should at least check that the opcode named in the function name is matching the respective opcode in the datasheet.
## Two forms of <tt>.eraseblocks</tt> can be distinguished: symmetric and asymmetric layouts. Symmetric means that all blocks that can be erased by an opcode are sized equal. In that case a single range can define the whole layout (e.g. <tt>{4 * 1024, 256}</tt> means 256 blocks of 4 kB each). Asymmetric layouts on the other hand contain differently sized blocks, ordered by their base addresses (e.g. <tt>{{8 * 1024, 1}, {4 * 1024, 2}, {16 * 1024, 7}}</tt> describes a layout that starts with a single 8 kB block, followed by two 4 kB blocks and 7 16 kB blocks at the end).
# <tt>.printlock</tt> is a [http://www.flashrom.org/pipermail/flashrom/2011-May/006495.html misnomer to some extent]. It is misused not only to print (write) protected address ranges of the chip, but also to pretty print the values of the status register(s) - especially true for SPI chips. There are a lot of existing functions for that already and you should reuse one if possible. Comparing the description of the status register in the datasheet of an already supported chip with that of your chip can help to determine if you can reuse a printlock function.
# <tt>.unlock</tt> is called before flashrom wants to modify the chip's contents to disable possible write protections. It is tightly related to the <tt>.printlock</tt> function as it tries to change some of the bits displayed by <tt>.printlock</tt>.
# <tt>.write</tt> and <tt>.read</tt> are function pointers with the obvious meaning. Currently flashrom does only support a single function each. The one that is best supported by existing programmers should be used for now, but others should be noted in a comment if available.
# <tt>.voltage</tt> defines the upper and lower bounds of the supply voltage of the chip. If there are multiple chip models with different allowed voltage ranges, the [http://en.wikipedia.org/wiki/Intersection_(set_theory) intersection] should be used and an appropriate comment added.
# The write [http://www.flashrom.org/pipermail/flashrom/2013-April/010817.html granularity] can be expressed by the <tt>.gran</tt> field. If you think you need something else than the default (<tt>write_gran_256bytes</tt>) then you should definitely ask one of the regular flashrom hackers first. Possible values can be found in <tt>flash.h</tt>.
 
= Committing =


Those with commit rights to the (currently subversion-based) source repository should follow the following rules.
Merging to branches is limited to the flashprog maintainers. The
following rules apply, some are already enforced by Gerrit:


* Reviews
* Every commit has to be reviewed and needs at least one +2.
** Changes should generally be discussed and reviewed before committing, see [[Development_Guidelines#Reviews|above]]
* A maintainer is allowed to raise a +1 to a +2 if they trust the reviewer. If not, they should have a closer look before giving a +2.
* The commit log
* Before merging, a maintainer should have a final look that the patch moves things into the right direction.
** Should start with a short sentence summing up the changes of the patch.
* Merging should not take place within less than 24 hours after the patch was sent to review.
** Optionally this should be prefixed with a topic or file name if the changes are targeting one area only.
* Finally, before hitting ''Submit'', one is reponsible to check that all comments have been addressed, especially if there was a negative review (-1).
** End the sentence with a full stop followed by an empty line.
** The body of the commit log should be short, but descriptive: If anyone involved in flashrom reads your comment in a year, she/he shall still be able to understand what your commit is about, without analyzing the code (what was the motivation for the change? what are the differences to the previous behavior?).
** At the end it has to list Signed-off-by lines of all authors and at least one Acked-by line.
** Optionally one can add Tested-by lines to give credit to testers.
* Committing
** Who actually pushes/commits to the repository depends on who is actually allowed to:
*** If you ack something and the sender has commit rights, let him commit unless he asks you to commit. Ask the sender when there is no commit for a few days after the ack - sometimes things are forgotten.
*** If the sender does not have commit rights, note in the mail with the ack that you intend to commit the change to give him/her an opportunity to add final refinements or comments. Wait for at least 24 hours before you commit.
** After committing please reply to the mailing thread that contains the patch with at least the revision in the body to notify anyone involved of the commit and document it for references in the future and in patchwork or similar facilities. Also, mark the patch as accepted on patchwork if you can.
* Don't share your login(s)/password(s) (should be obvious, but sadly it is not for everyone :)

Latest revision as of 09:03, 3 May 2024

Branches

Historical

Till the release of flashrom 0.9.9 there was basically a single branch (trunk) where linear development happened. After 0.9.9 it was decided to switch to Git and a two branch model, a stable and a staging branch. This led to some confusion and as nobody who had access to the stable branch had the time to work on it, development continued about one year after the 0.9.9 release on a staging branch at coreboot.org. Despite its name, we strived to keep flashrom's quality and hoped that everything would be merged to stable once work continues there.

The historical staging branch was eventually renamed to master. Releases of flashrom were based on this branch from 1.0 to 1.3. However, as regressions in both functionality and maintainability became visible around flashrom 1.3, a "flashrom-stable" main branch was forked from flashrom 1.2.

Flashprog main Branch

Our main branch is a direct descendant of flashrom-stable which was discontinued on flashrom.org. It's where we currently focus all our development. The goal hasn't changed: Merge new commits and make them available to a broader audience for testing, whilst trying to keep the regression rate as low as possible.

Release Branches (e.g. 1.0.x)

Branching for a new release can happen at any point in time when a commit (branch point) on main seems to be in good shape and was reasonably tested after previous invasive changes. Between the branch point and the release, every fix pushed for main for a problem that also persists on the release branch shall be backported. The same also applies after the release for the latest release branch and, optionally, for any earlier release branch that is still maintained for other reasons (e.g. part of a long term distribution).

Whenever a release branch has no further unmerged commits in queue and is not awaiting backported fixes, a release candidate (RC) can be tagged on that branch. This can also be the original branch point. The RC shall undergo extensive build tests and be publicly advertised as ready for testing. Not less than three days after the last RC that included code changes, a release can be tagged if no regressions showed up.

Release-branch names follow the pattern <major>.<minor>.x (e.g. 1.0.x). The first release of a branch is tagged v<major>.<minor>, without a point-release number (e.g. v1.0). Every following release from the same branch will have a point-release number starting with .1 (e.g. v1.0.1) and will only add backported fixes to the release.

The branch point (i.e. last common commit of main and a release branch) should be tagged as p<major>.<minor> (e.g. p1.0), to keep track where we are on the main branch.

Patch Submission

Coding Style

Flashprog generally follows the Linux kernel style.

The notable exception is line length limit. Our guidelines are:

  • 80-columns soft limit for most code and comments. This is to encourage simple design and concise naming.
  • 112-columns hard limit. Use this to reduce line breaks in cases where they harm grep-ability or overall readability, such as print statements and function signatures. Don't abuse this for long variable/function names or deep nesting.
  • Tables are the only exception to the hard limit and may be as long as needed for practical purposes.

Sending a Patch

Before submitting a patch for review, put your Signed-off-by line in the commit message.

Currently there are two ways to submit patches:

1. Via Gerrit on sourcearcade.org, i.e. git push origin HEAD:refs/for/main

2. Via our mailing list. When sending a patch via the mailing list, send it in-line instead of as an attachment so that reviewers can easily comment on specific parts of it.

Our guidelines borrow heavily from the coreboot development guidelines, and most of them apply to flashprog as well. The really important part is about the Signed-off-by procedure which is quoted below.

We try to reuse as much code as possible and create new files only if absolutely needed, so if you find a function somewhere in the tree which already does what you want (even if it is for a totally different chip), please use it. See also Command set secrets.

The patch reviews may sound harsh, but please don't get discouraged. We try to merge simple patches after one or two iterations and complicated ones as soon as possible, but we have quite high standards regarding code quality.

If you introduce new features (not flash chips, but stuff like partial programming, support for new external programmers, voltage handling, etc) please discuss your plans on the mailing list first. That way, we can avoid duplicated work and know about how flashprog internals need to be adjusted and you avoid frustration if there is some disagreement about the design.

If you intend to send patches to the mailing list that modify convoluted tables like struct flashchip flashchips[] in flashchips.c, it makes sense to increase the lines of context to include enough information directly in the patch for reviewers (for example to include the chip names when changing other parameters like .voltage). To do this with git use git format-patch -U5 where 5 is an example for the number of lines of context you want.

Set up a Gerrit Account on review.sourcearcade.org

1. Go to https://review.sourcearcade.org/login and create an account. Currently, locally stored on SourceArcade and GitHub credentials can be used.

2. Edit your settings by clicking on the gear icon in the upper right corner.

3. Upload an SSH public key, or click the button to generate an HTTPS password.

Push your patch

1. Install Git hooks: make gitconfig

2. If using SSH, update the push URL: git remote set-url --push origin ssh://<gerrit_username>@review.sourcearcade.org:29418/flashprog

3. Push to Gerrit: git push origin HEAD:refs/for/master%topic=my_wonderful_patch.

  • If using HTTPS you will be prompted for the username and password you set in the Gerrit UI.
  • If successful, the Gerrit URL for your patch will be shown in the output.

Commit message

Commit messages shall have the following format:

<component>: Short description (up to 72 characters)

This is a long description. Max width of each line in the description
is 72 characters. It is separated from the summary by a blank line. You
may skip the long description if the short description is sufficient,
for example "flashchips: Add FOO25Q128" to add FOO25Q128 chip support.

You may have multiple paragraphs in the long description, but please
do not write a novel here. For non-trivial changes you must explain
what your patch does, why, and how it was tested.

Finally, follow the #Sign-off Procedure to add your sign-off!

Signed-off-by: Your Name <your@domain>


Sign-off Procedure

We employ a similar sign-off procedure as the Linux kernel developers do. Each gerrit commit requires a sign-off line saying that the contributed code abides by the Developer’s certificate of origin, below.

Signed-off-by: Random J Developer <random@developer.example.org>

Using -s with git commit will automatically add a Signed-off-by line to your commit message. Patches without a Signed-off-by should not be pushed to Gerrit.

You must use a known identity in the Signed-off-by line. Anonymous contributions cannot be committed! This can be anything sufficient to identify and contact the source of a contribution, such as your name or an established alias/nickname. Refer to this LKML thread and the SCO-Linux disputes for the rationale behind the DCO.

Developer's Certificate of Origin 1.1:

By making a contribution to this project, I certify that:
(a) The contribution was created in whole or in part by me and I have the right to submit it under the open source license indicated in the file; or
(b) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate open source license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same open source license (unless I am permitted to submit under a different license), as indicated in the file; or
(c) The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it; and
(d) In the case of each of (a), (b), or (c), I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the open source license indicated in the file.

Note: The Developer's Certificate of Origin 1.1 is licensed under the terms of the Creative Commons Attribution-ShareAlike 2.5 License.

Reviews

All patches finally have to go through Gerrit. Though, if the author prefers, the actual reviewing process can also take place on the mailing list.

All contributions should receive at least a preliminary review within one week of submission by some flashprog developer (if that doesn't happen in time, please be patient). At minimum this should include a broad indication of acceptance or rejection of...

  • the idea/rationale/motivation,
  • the implementation

respectively.

In general, reviews should focus on the architectural changes and things that affect flashprog as a whole. This includes (but is by no means limited to) changes in APIs and types, safety, portability, extensibility, and maintainability. The purpose of reviews is not to create perfect patches, but to steer development in the right direction and produce consensus within the community. The goal of each patch should be to improve the state of the project - it does not need to fix all problems of the respective field perfectly. NB: New contributors may need more detailed advices and should be told about minor issues like formatting problems more precisely. The result of a review should either be an accepted patch or a guideline how the existing code should be changed to be eventually accepted. See also [Adding and Reviewing new flash chips].

Merging to Branches

Merging to branches is limited to the flashprog maintainers. The following rules apply, some are already enforced by Gerrit:

  • Every commit has to be reviewed and needs at least one +2.
  • A maintainer is allowed to raise a +1 to a +2 if they trust the reviewer. If not, they should have a closer look before giving a +2.
  • Before merging, a maintainer should have a final look that the patch moves things into the right direction.
  • Merging should not take place within less than 24 hours after the patch was sent to review.
  • Finally, before hitting Submit, one is reponsible to check that all comments have been addressed, especially if there was a negative review (-1).