Skip to content
Dirk Wetter edited this page Aug 8, 2019 · 11 revisions

Coding Style

(This is a short brain dump which is not complete)

PR

  • Please only one patch w/ one functional change per PR

  • Document your PR -- in the comment field and also comment your code. Somebody needs to maintain this, thus it's necessary also to understand in one+ year what your code does.

  • Test your PR

    • Check all changes you did in different scenarios
    • If it's an additional check confirm that it works with two bad and two good examples (maybe compare results e.g. with SSLlabs)
    • Write a unit test (see ~/t/20_baseline_ipv4_http.t as an example)

Binaries

  • This project is pretty much portable. It runs with a minimal set of well defined binaries across several operating systems. Even the flavor (BSD/GNU) of some binaries are being tested in testssl.sh before executed. Especially with sed you need to be careful as GNU sed is only 80% compatible with BSD sed (sed -i, \n, \t, etc.).

  • A Mac or BSD user might also have GNU tools installed. Thus please don't query the OS in an if-statement. Rather check whether the binary supports what you are looking for and set global vars (see HAS_* variable).

  • Don't use additional binaries: testssl.sh is portable and runs on almost every platform

    • if you really, really need to use an additional binary, first clarify with us
    • make sure in the code it's available on the system before calling it
  • Never use highly system depended binaries (rpm, ipconfig, ..) as it is not portable or requires lot's of if-statements and the code gets ugly.

  • If it's an openssl feature you want to use and it could be not available for older openssl versions testssl.sh needs to find out whether openssl has that feature. Best do this with openssl itself and not by checking the version as some vendors do backports. See the examples for HAS_SSL2 or proxy option check of openssl in check_proxy().

  • If a feature of openssl is not available you need to tell this by using pr_warning*() -- or accordingly with fatal() if a continuation of the program doesn't make sense anymore.

Programming Style

  • Global variables (CAPS)

    • use them only when necessary
    • initialize them
    • make use readonly if possible and indicate variable types (-i stands e.g. for integer)
    • if it's going to be a cmd line switch, there has to be also a global ENV variable which can be used without the switch (see e.g. SNEAKY or SSL_NATIVE)
  • Local variables (lower case)

    • declare them before usage
    • if unclear initialize them
    • indicate variable types (-i stands e.g. for integer)
  • For new functions/methods document the arguments passed and the return code / string.

  • Always use a return value for a function/method

  • Use "speaking variables" and method names but don't overdo it with the length

  • Make use of the short functions / methods (code starts from ###### helper function definitions) like

    • count_words() / count_lines() / count_ciphers()
    • strip_lf() / strip_spaces()
    • toupper()
    • newline_to_spaces()
    • is_number() / is_ipv4addr() / is_ipv6addr()
    • ...

bash

Clone this wiki locally