Neil Horman
64e96ecf3c
Make find-doc-nits compatible accross git versions
...
We recently found that the addition of a git config command in
util/find-doc-nits is broken in some cases, sepecifically because git
around version 2.46 broke command line compatibility, replacing the
--regexp option with the --get-regexp option. So to maintain usage of
this specific command to parse the .gitconfig file, we would need to do
some extra version detection to construct the proper command line.
However, find-doc-nits already has a fallback condition, which does some
pure perl parsing of the gitconfig file, which works perfectly well.
Instead of trying to do version matching to construct the right form of
the git config command line, just remove it all, and rely on the perl
parrse to do this work for us, which works currently in all cases.
Fixes #29197
Reviewed-by: Tomas Mraz <tomas@openssl.org >
Reviewed-by: Paul Dale <paul.dale@oracle.com >
(Merged from https://github.com/openssl/openssl/pull/29304 )
2025-12-05 10:09:08 -05:00
Milan Broz
ad0d325689
Temporary disable ENGINE_* docs tests.
...
Signed-off-by: Milan Broz <gmazyland@gmail.com >
Reviewed-by: Neil Horman <nhorman@openssl.org >
Reviewed-by: Matt Caswell <matt@openssl.org >
Reviewed-by: Tomas Mraz <tomas@openssl.org >
Reviewed-by: Saša Nedvědický <sashan@openssl.org >
Reviewed-by: Eugene Syromiatnikov <esyr@openssl.org >
Reviewed-by: Norbert Pocs <norbertp@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/29305 )
2025-12-04 07:32:18 -05:00
Richard Levitte
4da42df5d3
Fix util/find-doc-nits' check_env_vars to look for files with 'git ls-files'
...
If that fails, it will fall back to finding the files with Find::file.
Reviewed-by: Neil Horman <nhorman@openssl.org >
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com >
(Merged from https://github.com/openssl/openssl/pull/28601 )
2025-10-30 08:12:06 -04:00
Richard Levitte
56d138ec3d
Fix util/find-doc-nits' check_env_vars to show where envvars were found
...
This displays the list of files with line number for each envvar.
Reviewed-by: Neil Horman <nhorman@openssl.org >
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com >
(Merged from https://github.com/openssl/openssl/pull/28601 )
2025-10-30 08:12:06 -04:00
Richard Levitte
29fa220a36
Fix util/find-doc-nits' environment variable check exceptions
...
Some files in @except_env_files are located in the build directory,
not the source directory.
Furthermore, because the files and directories in @except_dirs and
@except_env_files may look different than the elements in what find()
returns, realpath() must be used to ensure that file name comparison
matches when it should.
Reviewed-by: Neil Horman <nhorman@openssl.org >
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com >
(Merged from https://github.com/openssl/openssl/pull/28601 )
2025-10-30 08:12:06 -04:00
Eugene Syromiatnikov
876188d8a3
util/find-doc-nits: do not check files in submodules in check_env_vars
...
The reports about undocumented environment variables coming from files
in submodules are superfluous; get the list of directories
from .gitmodules and exclude them from processing.
Resolves: https://github.com/openssl/openssl/issues/28109
Signed-off-by: Eugene Syromiatnikov <esyr@openssl.org >
Reviewed-by: Richard Levitte <levitte@openssl.org >
Reviewed-by: Tomas Mraz <tomas@openssl.org >
Reviewed-by: Neil Horman <nhorman@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/28378 )
2025-09-09 09:47:11 -04:00
Matt Caswell
bc7db5e38e
Fix the doc-nits history check
...
Fix the script now that we are at version 4.0
Reviewed-by: Tim Hudson <tjh@openssl.org >
Reviewed-by: Tomas Mraz <tomas@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/28423 )
2025-09-04 10:40:04 +01:00
Norbert Pocs
ead653be8b
find-doc-nits: Check env var documentation
...
Check the code (source files and .in files) for undocumented ENV
variable names. The variable name should be documented in openssl-env or
in a designated man page in the "ENVIRONMENT" section.
Resolves: https://github.com/openssl/openssl/issues/28050
Signed-off-by: Norbert Pocs <norbertp@openssl.org >
Reviewed-by: Neil Horman <nhorman@openssl.org >
Reviewed-by: Tomas Mraz <tomas@openssl.org >
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com >
(Merged from https://github.com/openssl/openssl/pull/28025 )
2025-07-29 13:12:11 -04:00
Norbert Pocs
70d7194bf5
doc/man3: Document missing macro function history
...
By updating the `util/find-doc-nits` new missing history sections were
discovered. This commit adds the missing.
Signed-off-by: Norbert Pocs <norbertpocs0@gmail.com >
Reviewed-by: Paul Dale <ppzgs1@gmail.com >
Reviewed-by: Tomas Mraz <tomas@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/27488 )
2025-04-29 19:37:01 +02:00
Norbert Pocs
ef9c289996
util/find-doc-nits: Check function macros in history
...
Add a checker for function macros if they are present in the HISTORY
section of the man page.
Resolves : #26774
Signed-off-by: Norbert Pocs <norbertpocs0@gmail.com >
Reviewed-by: Paul Dale <ppzgs1@gmail.com >
Reviewed-by: Tomas Mraz <tomas@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/27488 )
2025-04-29 19:35:49 +02:00
Chase Killorin
2c8103e468
Removed duplicates in some man pages
...
Fixes openssl/openssl#11748
find-doc-nits: Check for duplicate options
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com >
Reviewed-by: Paul Yang <kaishen.yy@antfin.com >
Reviewed-by: Tomas Mraz <tomas@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/27088 )
2025-03-26 15:33:20 +01:00
openssl-machine
0c679f5566
Copyright year updates
...
Reviewed-by: Neil Horman <nhorman@openssl.org >
Reviewed-by: Matt Caswell <matt@openssl.org >
Release: yes
2025-03-12 13:35:59 +00:00
Viktor Dukhovni
92c242e8ac
Big and little-endian load and store support
...
These are needed in ML-KEM and ML-DSA, and are likely generally useful,
so public.
Reviewed-by: Tim Hudson <tjh@openssl.org >
Reviewed-by: Matt Caswell <matt@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/26385 )
2025-01-14 12:14:54 +00:00
Michael Baentsch
50ef944cd6
Fix missing HISTORY doc entries
...
Also add a check to find-doc-nits for HISTORY sections.
Reviewed-by: Matt Caswell <matt@openssl.org >
Reviewed-by: Tomas Mraz <tomas@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/26188 )
2024-12-18 17:23:57 +01:00
Matt Caswell
da1c088f59
Copyright year updates
...
Reviewed-by: Richard Levitte <levitte@openssl.org >
Release: yes
2023-09-07 09:59:15 +01:00
Matt Caswell
a2b6865be5
Allow man7 pages to not have a DESCRIPTION section
...
For tutorial type pages it doesn't make any sense to have a DESCRIPTION
section.
Reviewed-by: Viktor Dukhovni <viktor@openssl.org >
Reviewed-by: Paul Dale <pauli@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/21133 )
2023-06-14 13:08:37 +10:00
Matthias St. Pierre
0ef024a492
util/find-doc-nits: extend regex to match new OPT_INFORM A
...
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com >
Reviewed-by: Tomas Mraz <tomas@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/7320 )
2023-06-09 09:47:34 +02:00
Dr. David von Oheimb
9a2f78e14a
util/find-doc-nits: improve error diagnostics on missing man section numbers in links
...
Reviewed-by: Hugo Landau <hlandau@openssl.org >
Reviewed-by: Matt Caswell <matt@openssl.org >
Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com >
(Merged from https://github.com/openssl/openssl/pull/20369 )
2023-02-24 14:04:10 +01:00
Hugo Landau
5317b6ee1f
Add deprecation macro for 3.1 and deprecate OPENSSL_LH_stats
...
Reviewed-by: Paul Dale <pauli@openssl.org >
Reviewed-by: Tomas Mraz <tomas@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/17937 )
2022-06-22 09:36:14 +02:00
Pauli
f7a19d6402
doc-nits: support out of source execution
...
Reviewed-by: Tomas Mraz <tomas@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/15637 )
2021-06-08 18:55:32 +10:00
Pauli
4cedf30e99
utils: remove TODO
...
Reviewed-by: Tim Hudson <tjh@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/15539 )
2021-06-02 16:30:15 +10:00
Richard Levitte
0e7e3b9b9d
util/fix-doc-nits: Fix link detection in collectnames() to be kinder
...
The way the links were parsed out of the contents caused a regexp
recursion. The easiest way to deal with it is to find all markup
using $markup_re, and then parsing out the L markups and add them to
the links array.
Fixes #15449
Reviewed-by: Paul Dale <pauli@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/15450 )
2021-05-26 15:15:18 +02:00
Dr. David von Oheimb
14d3bb06c9
util/find-doc-nits: Improve helpstr pattern matching
...
Reviewed-by: Paul Dale <pauli@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/15299 )
2021-05-20 16:24:44 +02:00
Dr. David von Oheimb
9c1582807b
find-doc-nits: Check that man1 SYNOPSIS and OPTIONS contain same options
...
Reviewed-by: Paul Dale <pauli@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/15299 )
2021-05-20 16:24:43 +02:00
Dr. David von Oheimb
414823d2de
find-doc-nits: Add -m option allowing to select on which of man1,man3,man5,man7 to focus on
...
Reviewed-by: Paul Dale <pauli@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/15299 )
2021-05-20 16:24:43 +02:00
Dr. David von Oheimb
5be56c490e
find-doc-nits: Minor improvements of help and diagnostic output
...
Reviewed-by: Paul Dale <pauli@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/15299 )
2021-05-20 16:24:43 +02:00
Dr. David von Oheimb
ee56cec733
CMP test server: move apps/{,lib/}cmp_mock_srv.c and apps/{,include/}cmp_mock_srv.h
...
Reviewed-by: Paul Dale <pauli@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/15343 )
2021-05-20 16:23:27 +02:00
Dr. David von Oheimb
e34307b8ac
find-doc-nits -c: Fix handling in case expected helpstr is not found
...
Reviewed-by: Paul Dale <pauli@openssl.org >
Reviewed-by: Tomas Mraz <tomas@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/15329 )
2021-05-19 14:13:12 +02:00
Dr. David von Oheimb
5bac37cb14
unix-Makefile.tmpl and ci.yml: Merge cmd-nits into doc-nits
...
Reviewed-by: Paul Dale <pauli@openssl.org >
Reviewed-by: Tomas Mraz <tomas@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/15329 )
2021-05-19 14:13:12 +02:00
Rich Salz
47c88d453e
Remove "openssl ifdef" handling
...
Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com >
Reviewed-by: Paul Dale <pauli@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/15311 )
2021-05-19 10:36:01 +10:00
Dr. David von Oheimb
f2431fe7df
find-doc-nits: Make -c option (cmd-nits) independent of app build and execution
...
Reviewed-by: Paul Dale <pauli@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/15298 )
2021-05-18 13:02:23 +02:00
EasySec
de3379c941
find-doc-nits fix courtesy Rich Salz
...
Reviewed-by: Ben Kaduk <kaduk@mit.edu >
Reviewed-by: Tomas Mraz <tomas@openssl.org >
Reviewed-by: Paul Dale <pauli@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/11481 )
2021-05-12 14:50:15 +10:00
Richard Levitte
4333b89f50
Update copyright year
...
Reviewed-by: Tomas Mraz <tomas@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/13999 )
2021-01-28 13:54:57 +01:00
Michael Baentsch
52b0bb38f3
fall-back -> fallback find-doc-nit addition
...
Ensure the same term is used for fallback
Reviewed-by: Matt Caswell <matt@openssl.org >
Reviewed-by: Tomas Mraz <tomas@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/13862 )
2021-01-21 17:05:19 +01:00
Dr. David von Oheimb
bf973d0697
Add X509_NAME_hash_ex() to be able to check if it failed due to unsupported SHA1
...
Deprecate X509_NAME_hash()
Document X509_NAME_hash_ex(), X509_NAME_hash(), X509_{subject,issuer}_name_hash()
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org >
(Merged from https://github.com/openssl/openssl/pull/13762 )
2021-01-13 09:09:36 +01:00
Dr. David von Oheimb
6b480ee369
find-doc-nits: fix regexp and point out that CA.pl and tsget.pod are special
...
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org >
(Merged from https://github.com/openssl/openssl/pull/13315 )
2020-12-05 18:05:30 +01:00
Richard Levitte
bf57cab74b
util/find-doc-nits: check podchecker() return value
...
From the Pod::Checker manual:
> RETURN VALUE
> podchecker returns the number of POD syntax errors found or
> -1 if there were no POD commands at all found in the file.
Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com >
(Merged from https://github.com/openssl/openssl/pull/13416 )
2020-11-17 23:12:02 +01:00
Richard Levitte
3b1bfd2160
util/find-doc-nits: ignore OSSL_DEPRECATED*, alongside other reserved symbols
...
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org >
(Merged from https://github.com/openssl/openssl/pull/13240 )
2020-11-01 05:57:42 +01:00
Richard Levitte
b1415dc182
util/find-doc-nits: Add a regexp for C symbols and use it
...
Our matching of C symbols here was inconsistent and could therefore
give false negatives when the SYNOPSIS was parsed. Now we have
$C_symbol, which is a simple regexp that matches the common C symbol.
Reviewed-by: Shane Lontis <shane.lontis@oracle.com >
(Merged from https://github.com/openssl/openssl/pull/12873 )
2020-09-20 17:32:36 +02:00
Matt Caswell
282de1cc2d
Fix some doc-nits and make update errors
...
The new lhash changes have confused some of the perl scripts so we add
some fixes.
Reviewed-by: Richard Levitte <levitte@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/12860 )
2020-09-18 13:30:44 +01:00
Matt Caswell
89b46350a3
Don't complain about stack related macros
...
Reviewed-by: Richard Levitte <levitte@openssl.org >
Reviewed-by: Paul Dale <paul.dale@oracle.com >
(Merged from https://github.com/openssl/openssl/pull/12781 )
2020-09-13 11:11:57 +01:00
Gustaf Neumann
490c87110c
Align documentation with recommendations of Linux Documentation Project
...
This change applies the recommendation of the Linux Documentation Project
to the documentation files of OpenSSL. Additionally, util/find-doc-nits
was updated accordingly.
The change follows a suggestion of mspncp on https://github.com/openssl/openssl/pull/12370
and incoporates the requested changes on the pull request
Reviewed-by: Shane Lontis <shane.lontis@oracle.com >
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com >
(Merged from https://github.com/openssl/openssl/pull/12460 )
2020-07-22 09:15:00 +02:00
Richard Levitte
8eca461731
util/find-doc-nits: Relax check of function declarations in name_synopsis()
...
The relaxation allows spaces between function name and argument list,
to allow line breaks like this when there are very long names:
int (fantastically_long_name_breaks_80char_limit)
(fantastically_long_name_breaks_80char_limit *something);
This revealed some other intricaties, such as documented internal
structures with function pointers inside, so a check of open
structures was also added, and they are now simply skipped over.
Reviewed-by: Matt Caswell <matt@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/12494 )
2020-07-21 18:52:29 +02:00
Richard Levitte
93e32043cb
util/find-doc-nits: relax some SYNOPSIS checks
...
- The check that disallowed space before the argument list in a
function typedef is tentatively removed, allowing this kind of
construction:
typedef int (fantastically_long_name_breaks_80char_limit)
(fantastically_long_name_breaks_80char_limit *something);
- Accept the following style of function signature:
typedef TYPE (NAME)(args...)
- Accept space between '#' and 'defined' / 'undef'
- Accept other spaces than SPC in argument list comma check,
allowing declaration with line breaks.
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org >
Reviewed-by: Shane Lontis <shane.lontis@oracle.com >
(Merged from https://github.com/openssl/openssl/pull/12452 )
2020-07-19 18:45:30 +02:00
Richard Levitte
d3cb5904f3
util/find-doc-nits: read full declarations as one line in name_synopsis()
...
name_synopsis was reading physical SYNOPSIS lines. This changes it to
consider a declaration at a time, so we treat a C declaration that's
been broken up in several lines as one.
This makes it mandatory to end all C declarations in the SYNOPSIS with
a semicolon. Those can be detected in two ways:
1. Parsing an individual .pod file outputs this error:
doc/man3/SOMETHING.pod:1: Can't parse rest of synopsis:
int SOMETHING_status(SOMETHING *s)
int SOMETHING_start(SOMETHING *s)
(declarations not ending with a semicolon (;)?)
2. Errors like this:
doc/man3/SOMETHING.pod:1: SOMETHING_status missing from SYNOPSIS
doc/man3/SOMETHING.pod:1: SOMETHING_start missing from SYNOPSIS
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org >
Reviewed-by: Shane Lontis <shane.lontis@oracle.com >
(Merged from https://github.com/openssl/openssl/pull/12452 )
2020-07-19 18:45:30 +02:00
Gustaf Neumann
8c1cbc7210
Fix typos and repeated words
...
CLA: trivial
Reviewed-by: Shane Lontis <shane.lontis@oracle.com >
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com >
(Merged from https://github.com/openssl/openssl/pull/12320 )
2020-07-05 01:49:20 +02:00
Richard Levitte
c4de5d22aa
util/find-doc-nits: Modernise printem()
...
It wasn't up to date with the new variables used to track information
on what's documented, what's in the .num files and what's in the
"missing" files.
Fixes #12117
Reviewed-by: Matt Caswell <matt@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/12125 )
2020-06-22 23:47:11 +02:00
Richard Levitte
e3ce33b3b5
util/find-doc-nits: Do not read "missing" files when -u is given
...
Fixes #12117
Reviewed-by: Matt Caswell <matt@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/12125 )
2020-06-22 23:47:11 +02:00
haykam821
6f72b210b2
Remove whitespace from 'white space'
...
CLA: trivial
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com >
Reviewed-by: Richard Levitte <levitte@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/12161 )
2020-06-19 07:59:46 +02:00
Matt Caswell
33388b44b6
Update copyright year
...
Reviewed-by: Richard Levitte <levitte@openssl.org >
(Merged from https://github.com/openssl/openssl/pull/11616 )
2020-04-23 13:55:52 +01:00