diff options
author | Richard Levitte <levitte@openssl.org> | 2017-06-27 13:34:17 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2017-06-27 14:49:06 +0200 |
commit | 4b2799c13cd94f5bbe26cf848f51e2a45bdb0103 (patch) | |
tree | 2f54177699f7f37400deb969581206510556f258 /CHANGES | |
parent | Rename static global "lock" to "obj_lock" (diff) | |
download | openssl-4b2799c13cd94f5bbe26cf848f51e2a45bdb0103.tar.xz openssl-4b2799c13cd94f5bbe26cf848f51e2a45bdb0103.zip |
util/mkerr.pl: allow module names prefixed with OSSL_ or OPENSSL_
To make sure that our symbols don't clash with other libraries, we
claim the namespaces OSSL and OPENSSL. Because C doesn't provide
namespaces, the only solution is to have them as prefixes on symbols,
thus we allow OSSL_ and OPENSSL_ as prefixes.
These namespace prefixes are optional for the foreseeable future, and
will only be used for new modules as needed on a case by case basis,
until further notice.
For extra safety, there's an added requirement that module names -
apart from the namespace prefix - be at least 2 characters long.
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3781)
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -9,6 +9,17 @@ Changes between 1.1.0f and 1.1.1 [xx XXX xxxx] + *) Module names can prefixed with OSSL_ or OPENSSL_. This affects + util/mkerr.pl, which is adapted to allow those prefixes, leading to + error code calls like this: + + OSSL_FOOerr(OSSL_FOO_F_SOMETHING, OSSL_FOO_R_WHATEVER); + + With this change, we claim the namespaces OSSL and OPENSSL in a manner + that can be encoded in C. For the foreseeable future, this will only + affect new modules. + [Richard Levitte and Tim Hudson] + *) Removed BSD cryptodev engine. [Rich Salz] |