Skip to content

Commit ca654ae

Browse files
authored
Merge pull request #4495 from esl/update-openssl-related-docs
Update OpenSSL related docs
2 parents e6ae3d5 + 5431e68 commit ca654ae

File tree

7 files changed

+18
-9
lines changed

7 files changed

+18
-9
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@
3333
- Documentation improvements (#4476, #4487, #4488)
3434
- CI improvements (#4459)
3535

36-
## Known issues
36+
## Known issues and upgrade recommendations
3737
- If you are using MongooseIM 4.1.0 to 6.3.1 with SCRAM authentication and OpenSSL >=3.4.1, hashes for algorithms stronger than SHA-1 are calculated incorrectly.
3838
This issue is fixed in this release. See [SCRAM hashing issue](/doc/developers-guide/SCRAM-serialization.md#scram-hash-calculation-issue-in-mongooseim-410631) for details and required actions.
39+
- OpenSSL versions below 3.0 are no longer supported. If you are using OpenSSL 1.x or older, you must upgrade to OpenSSL 3.x before updating MongooseIM, as older versions will not work.
3940

4041
## Commits, merged PRs and closed issues
4142
- [List of merged PRs](https://github.com/esl/MongooseIM/pulls?q=is%3Apr+is%3Amerged+milestone%3A6.3.2)

doc/configuration/outgoing-connections.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ Password to the X509 PEM file with the private key.
414414
* **Default:** not set, all supported cipher suites are accepted
415415
* **Example:** `tls.ciphers = "ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384"`
416416

417-
Cipher suites to use. Please refer to the [OpenSSL documentation](http://www.openssl.org/docs/man1.0.2/apps/ciphers.html) for the cipher string format. For allowed values, see the [Erlang/OTP SSL documentation](https://erlang.org/doc/man/ssl.html#type-ciphers).
417+
Cipher suites to use. Please refer to the [OpenSSL documentation](https://docs.openssl.org/master/man1/openssl-ciphers/) for the cipher string format. For allowed values, see the [Erlang/OTP SSL documentation](https://erlang.org/doc/man/ssl.html#type-ciphers).
418418

419419
### `outgoing_pools.*.*.connection.tls.versions`
420420
* **Syntax:** list of strings

doc/configuration/s2s.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ This option defines IP addresses and port numbers for specific non-local XMPP do
8484
* **Example:** `ciphers = "TLSv1.2"`
8585

8686
Defines a list of accepted SSL ciphers for outgoing S2S connections.
87-
Please refer to the [OpenSSL documentation](http://www.openssl.org/docs/apps/ciphers.html) for the cipher string format.
87+
Please refer to the [OpenSSL documentation](https://docs.openssl.org/master/man1/openssl-ciphers/) for the cipher string format.
8888

8989
### `s2s.max_retry_delay`
9090
* **Syntax:** positive integer

doc/listeners/listen-c2s.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Path to the Diffie-Hellman parameter file.
136136
* **Default:** for `fast_tls` the default is`"TLSv1.2:TLSv1.3"`. For `just_tls` this option is not set by default - all supported suites are accepted.
137137
* **Example:** `tls.ciphers = "ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384"`
138138

139-
Cipher suites to use with StartTLS or TLS. Please refer to the [OpenSSL documentation](http://www.openssl.org/docs/man1.0.2/apps/ciphers.html) for the cipher string format. For `fast_tls`, this string can be used to specify versions as well. For `just_tls`, see the [Erlang/OTP SSL documentation](https://erlang.org/doc/man/ssl.html#type-ciphers) for allowed values.
139+
Cipher suites to use with StartTLS or TLS. Please refer to the [OpenSSL documentation](https://docs.openssl.org/master/man1/openssl-ciphers/) for the cipher string format. For `fast_tls`, this string can be used to specify versions as well. For `just_tls`, see the [Erlang/OTP SSL documentation](https://erlang.org/doc/man/ssl.html#type-ciphers) for allowed values.
140140

141141
### `listen.c2s.tls.protocol_options` - only for `fast_tls`
142142
* **Syntax:** array of strings

doc/migrations/6.3.1_6.3.2.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,11 @@ Migration scripts for CockroachDB, PostgreSQL, MySQL, and MS SQL are available i
8888

8989
System message translations are now handled by [`service_translations`](../configuration/Services.md#service_translations). Translations files can be found in [`priv/translations/`](https://github.com/esl/MongooseIM/tree/master/priv/translations/).
9090

91-
### SCRAM hashing fix
91+
## SCRAM hashing fix
9292

9393
In versions 6.3.1 and earlier, a bug caused incorrect hash calculations for SCRAM authentication when using algorithms stronger than SHA-1 with OpenSSL >=3.4.1.
9494
This release includes a fix for this issue. If you were affected, all users must reset their passwords after upgrading to ensure correct authentication.
9595
For more details, see [SCRAM hashing issue](../developers-guide/SCRAM-serialization.md#scram-hash-calculation-issue-in-mongooseim-410631).
96+
97+
## OpenSSL <3.0 no longer supported
98+
All OpenSSL versions below 3.0 are no longer supported. If your deployment relies on OpenSSL 1.x or older, you must upgrade to OpenSSL 3.x before updating MongooseIM, as older versions will not work.

doc/modules/mod_global_distrib.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ These options will be passed to the `fast_tls` driver.
235235
* **Default:** `"TLSv1.2:TLSv1.3"`
236236
* **Example:** `ciphers = "ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384"`
237237

238-
Cipher suites to use with StartTLS or TLS. Please refer to the [OpenSSL documentation](https://www.openssl.org/docs/man1.0.2/man1/ciphers.html) for the cipher string format.
238+
Cipher suites to use with StartTLS or TLS. Please refer to the [OpenSSL documentation](https://docs.openssl.org/master/man1/openssl-ciphers/) for the cipher string format.
239239

240240
#### `modules.mod_global_distrib.connections.tls.dhfile`
241241
* **Syntax:** string, path in the file system

doc/tutorials/How-to-build.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To compile MongooseIM you need:
2020
* Erlang/OTP 26.0 or higher:
2121
* `erlang` EPEL package, or,
2222
* install using [kerl](https://github.com/kerl/kerl),
23-
* OpenSSL 0.9.8 or higher, for STARTTLS, SASL and SSL encryption: `openssl` and `openssl-devel`,
23+
* OpenSSL 3.0.2 or higher, for STARTTLS, SASL and SSL encryption: `openssl` and `openssl-devel`,
2424
* ODBC library: `unixODBC-devel`,
2525
* Zlib 1.2.3 or higher: `zlib-devel`.
2626

@@ -31,7 +31,7 @@ To compile MongooseIM you need:
3131
* Erlang/OTP 24.0 or higher:
3232
* `erlang` package, or,
3333
* install using [kerl](https://github.com/kerl/kerl),
34-
* OpenSSL 0.9.8 or higher, for STARTTLS, SASL and SSL encryption: `olibssl-dev`,
34+
* OpenSSL 3.0.2 or higher, for STARTTLS, SASL and SSL encryption: `olibssl-dev`,
3535
* ODBC library: `unixodbc-dev`,
3636
* Zlib 1.2.3 or higher: `zlib1g-dev`.
3737

@@ -41,9 +41,14 @@ To compile MongooseIM you need:
4141
* Erlang/OTP 24.0 or higher:
4242
* [`erlang`](https://formulae.brew.sh/formula/erlang) from Homebrew,
4343
* install using [kerl](https://github.com/kerl/kerl),
44-
* OpenSSL 0.9.8 or higher, for STARTTLS, SASL and SSL encryption: [`openssl`](https://formulae.brew.sh/formula/openssl@1.1) from Homebrew
44+
* OpenSSL 3.0.2 or higher, for STARTTLS, SASL and SSL encryption: [`openssl`](https://formulae.brew.sh/formula/openssl@3.0) from Homebrew
4545
* ODBC library: [`unixodbc`](https://formulae.brew.sh/formula/unixodbc) from Homebrew.
4646

47+
### OpenSSL Version Compatibility
48+
49+
- MongooseIM 6.3.2+ requires OpenSSL 3.0 or newer to compile.
50+
- MongooseIM 6.3.1 and earlier support OpenSSL <3.0 but may have issues with SCRAM authentication when using OpenSSL 3.4.1+. See the [SCRAM hashing issue](../developers-guide/SCRAM-serialization.md#scram-hash-calculation-issue-in-mongooseim-410631) for details.
51+
4752
## Preparing the environment
4853

4954
=== "Rocky/Alma"

0 commit comments

Comments
 (0)