From nobody Thu Aug 12 23:54:04 2021 X-Original-To: doc@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id B87C6174B7D1 for ; Thu, 12 Aug 2021 23:54:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Gm3SD4bxXz4ThK for ; Thu, 12 Aug 2021 23:54:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8673A2C197 for ; Thu, 12 Aug 2021 23:54:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 17CNs4gp072834 for ; Thu, 12 Aug 2021 23:54:04 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 17CNs4fE072833 for doc@FreeBSD.org; Thu, 12 Aug 2021 23:54:04 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: doc@FreeBSD.org Subject: [Bug 257799] Missing OpenSSL man pages: rehash(1), config(5), crypto(7) Date: Thu, 12 Aug 2021 23:54:04 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Manual Pages X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: andrew.daugherity@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated List-Id: Documentation project List-Archive: https://lists.freebsd.org/archives/freebsd-doc List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-doc@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D257799 Bug ID: 257799 Summary: Missing OpenSSL man pages: rehash(1), config(5), crypto(7) Product: Documentation Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Many People Priority: --- Component: Manual Pages Assignee: bugs@FreeBSD.org Reporter: andrew.daugherity@gmail.com CC: doc@FreeBSD.org I recently discovered that the venerable c_rehash Perl script has been repl= aced by builtin openssl(1) commands, first by 'openssl certhash' in LibreSSL and then a different implementation known as 'openssl rehash' in OpenSSL 1.1+. FreeBSD 12.2 ships OpenSSL 1.1.1h but somehow lacks the man page for this command. openssl(1) mentions rehash(1) in its "SEE ALSO" list at the botto= m, but the only installed man page matching that is an alias to builtin(1). T= here is no openssl-rehash(1) installed, either. (The OpenSSL subcommands all ha= ve man page aliases of that form, e.g. openssl-req(1) and req(1).) It appears that the rehash man page *is* present in the source directory in= POD form. I wrote a quick shell script that found two other missing man pages: =3D=3D=3D=3D #!/bin/sh cd /usr/src/crypto/openssl/doc for sec in man*; do for f in $sec/*.pod; do if ! [ -f /usr/share/openssl/man/${f%.pod}.${sec#man}.gz ]; then echo "Missing man page ${f%.pod}!" fi done done =3D=3D=3D=3D Output on 12.2 is: Missing man page man1/rehash! Missing man page man5/config! Missing man page man7/crypto! It appears that 13.0 does have rehash(1) -- although due the shadowing by builtin(1) you have to search for openssl-rehash(1) -- but lacks config(5) [about the openssl.cnf file] and crypto(7). Note that while man pages do e= xist under those names, they cover unrelated topics. --=20 You are receiving this mail because: You are on the CC list for the bug.=