This repository contains a fork of a subset of the Go stdlib's crypto
package including patches to allow selecting AES hardware support
on Android devices. We documented why we need these patches at OONI in
the Making the OONI Probe Android app more resilient blog post.
To solve our issues with Android apps, we originally forked golang/go
itself at ooni/go. However, a full fork of
Go required us to compile this fork and build Android apps using it,
which was making building OONI excessively complicated. Hence, we later
chose to just fork the crypto
package and documented our efforts at
ooni/probe#2106. We
will continue to keep this fork up to date as long as it serves our goals.
You SHOULD use this package with the exact Go version from which we extracted the source, which is documented in the Update procedure section. The standard library is composed of tightly integrated packages, hence using this code with another Go version could cause subtle security issues.
The tls/stdlibwrapper.go file contains an API that allows
converting code using crypto/tls
to code using this package.
func NewClientConnStdlib(conn net.Conn, config *stdlibtls.Config) (*ConnStdlib, error)
The NewClientConnStdlib
creates a new client conn taking in input a
tls.Config
struct as exposed by the stdlib crypto/tls
package. The
function returns error if you passed in config fields that we don't
know (yet?) how to convert from their stdlib definition to the equivalent
definition of Config
implemented by this module.
The returned ConnStdlib
type implements the following interface, which
is equivalent to oohttp's TLSConn
:
import (
"context"
"crypto/tls"
)
type TLSConn interface {
net.Conn
HandshakeContext(ctx context.Context) error
ConnectionState() tls.ConnectionState
NetConn() net.Conn
}
These changes are sufficient for OONI to use this library instead
of using crypto/tls
as the underlying TLS library.
Each individual file from the crypto
fork maintains its original
copyright and license. Any
change to such files authored by us keeps the same 3-clause BSD license of
the original code. Because we anticipate integrating code under the GPL license
from Yawning/utls
we chose to license the repository using the GPL.
SPDX-License-Identifier: GPL-3.0-or-later
Please, report issues in the ooni/probe
repository. Make sure you mention oocrypto
in the issue title.
Commit 1137f34
merged go1.17.10 src/crypto
's subtree into this repository.
Subsequent commits
removed unused code and established a procedure to sync with upstream. As part
of these commits, we replaced internal/cpu
with golang.org/x/sys/cpu
.
Finally, we landed patches
to improve hardware capability detection on android/arm64
.
(Adapted from ooni/oohttp instructions.)
-
check whether hardware capability detection has been improved upstream by reading os_linux.go and update the link to
os_linux.go
based on the upstream version that we're tracking with this fork -
update UPSTREAM, commit the change, and then run the
./tools/merge.bash
script to merge from upstream; -
fix all the likely merge conflicts
-
delete all the new packages we can safely delete. We can safely delete a package if the package is not
tls
and:
-
either the package does not depend on
internal/cpu
-
or the documentation of the package does not explicitly state that the package is only secure depending on the CPU configuration, which currently only holds for
aes
(see aes/const.go)
- ensure that every forked package is never imported by using
the following checks (we could also use
go list
as followsGOOS=os GOARCH=arch go list --json ./...
):
-
git grep 'subtle"'
-
git grep 'tls"'
-
git grep 'aes"'
-
git grep 'alias"'
-
git grep 'boring"'
-
double check whether we need to add more checks to the list above (you can get a list of packages using
tree -d
) -
ensure that
stdlibwrapper.go
correctly fillstls.ConnectionState
in theConnStdlib.ConnectionState
method -
use
./tools/compare.bash
to make sure the changes with respect to upstream are reasonable -
go build -v ./...
must succeed -
go test -race ./...
must succeed -
run
go get -u -v ./... && go mod tidy
-
open a pull request using this check-list as its content and merge it preserving history