olm/README.md

326 lines
9.7 KiB
Markdown
Raw Normal View History

# Olm
2016-07-16 21:56:29 +02:00
An implementation of the Double Ratchet cryptographic ratchet described by
https://whispersystems.org/docs/specifications/doubleratchet/, written in C and
C++11 and exposed as a C API.
The specification of the Olm ratchet can be found in [docs/olm.md](docs/olm.md).
2016-10-19 20:14:18 +02:00
This library also includes an implementation of the Megolm cryptographic
ratchet, as specified in [docs/megolm.md](docs/megolm.md).
2015-10-03 00:57:46 +02:00
## Installing
### Linux and other Unix-like systems
Your distribution may have pre-compiled packages available. If not, or if you
need a newer version, you will need to compile from source. See the "Building"
section below for more details.
### macOS
The easiest way to install on macOS is via Homebrew. If you do not have
Homebrew installed, follow the instructions at https://brew.sh/ to install it.
You can then install libolm by running
```bash
brew install libolm
```
If you also need the Python packages, you can run
```bash
pip3 install python-olm --global-option="build_ext" --global-option="--include-dirs="`brew --prefix libolm`"/include" --global-option="--library-dirs="`brew --prefix libolm`"/lib"
```
Note that this will install an older version of the Python bindings, which may
be missing some functions. If you need the latest version, you will need to
build from source.
### Windows
You will need to build from source. See the "Building" section below for more
details.
### Bindings
#### JavaScript
You can use pre-built npm packages, available at
<https://gitlab.matrix.org/matrix-org/olm/-/packages?type=npm>.
#### Python
Pre-built packages for Python are available for certain architectures at
<https://gitlab.matrix.org/matrix-org/olm/-/packages?type=PyPI>. They can be
installed by running
```bash
pip install python-olm --extra-index-url https://gitlab.matrix.org/api/v4/projects/27/packages/pypi/simple
```
Currently, we try to provide packages for all supported versions of Python on
x86-64, i686, and aarch64, but we cannot guarantee that packages for all
versions will be available on all architectures.
#### Android
Pre-built Android bindings are available at
<https://gitlab.matrix.org/matrix-org/olm/-/packages?type=Maven>.
## Building
2021-11-02 21:16:07 +01:00
To build olm as a shared library run:
```bash
cmake . -Bbuild
cmake --build build
```
2021-11-02 21:16:07 +01:00
To run the tests, run:
```bash
2021-11-02 21:16:07 +01:00
cd build/tests
ctest .
```
2021-11-02 21:16:07 +01:00
To build olm as a static library (which still needs libstdc++ dynamically) run:
```bash
2021-11-02 21:16:07 +01:00
cmake . -Bbuild -DBUILD_SHARED_LIBS=NO
cmake --build build
```
2021-11-02 21:16:07 +01:00
The library can also be used as a dependency with CMake using:
```cmake
find_package(Olm::Olm REQUIRED)
target_link_libraries(my_exe Olm::Olm)
```
2021-11-02 21:16:07 +01:00
### Bindings
#### JavaScript
The recommended way to build the JavaScript bindings is using
[Nix](https://nixos.org/). With Nix, you can run
```bash
nix build .\#javascript
```
to build the bindings.
If you do not have Nix you can, install emscripten from https://emscripten.org/
and then run:
```bash
make js
```
2017-01-17 10:58:13 +01:00
Emscripten can also be run via Docker, in which case, you need to pass through
the EMCC_CLOSURE_ARGS environment variable.
#### Android
2016-12-20 10:42:06 +01:00
To build the android project for Android bindings, run:
```bash
cd android
2022-05-30 19:55:10 +02:00
./gradlew clean build
```
#### Objective-C
To build the Xcode workspace for Objective-C bindings, run:
```bash
cd xcode
pod install
open OLMKit.xcworkspace
```
#### Python
To build the Python 3 bindings, first build olm as a library as above, and
then run:
```bash
cd python
make
```
2021-11-02 21:16:07 +01:00
### Using make instead of cmake
**WARNING:** Using cmake is the preferred method for building the olm library;
the Makefile may be removed in the future or have functionality removed. In
addition, the Makefile may make certain assumptions about your system and is
not as well tested.
To build olm as a dynamic library, run:
```bash
2021-11-02 21:16:07 +01:00
make
```
2021-11-02 21:16:07 +01:00
To run the tests, run:
```bash
2021-11-02 21:16:07 +01:00
make test
```
2021-11-02 21:16:07 +01:00
To build olm as a static library, run:
2021-11-02 21:16:07 +01:00
```bash
make static
```
2020-06-11 17:25:52 +02:00
## Bindings
libolm can be used in different environments using bindings. In addition to the
JavaScript, Python, Java (Android), and Objective-C bindings included in this
repository, some bindings are (in alphabetical order):
2021-03-02 22:13:39 +01:00
- [cl-megolm](https://github.com/K1D77A/cl-megolm) (MIT) Common Lisp bindings
2021-06-17 16:19:38 +02:00
- [dart-olm](https://gitlab.com/famedly/company/frontend/libraries/dart-olm) (AGPLv3) Dart bindings
2020-06-11 17:25:52 +02:00
- [Dhole/go-olm](https://github.com/Dhole/go-olm) (Apache-2.0) Go bindings
2021-08-26 03:50:33 +02:00
- [jOlm](https://github.com/brevilo/jolm) (Apache-2.0) Java bindings
2020-06-11 17:25:52 +02:00
- [libQtOlm](https://gitlab.com/b0/libqtolm/) (GPLv3) Qt bindings
- [matrix-kt](https://github.com/Dominaezzz/matrix-kt) (Apache-2.0) Kotlin
library for Matrix, including Olm methods
- [maunium.net/go/mautrix/crypto/olm](https://github.com/tulir/mautrix-go/tree/master/crypto/olm)
(Apache-2.0) fork of Dhole/go-olm
2021-12-13 14:42:14 +01:00
- [nim-olm](https://codeberg.org/BarrOff/nim-olm) (MIT) Nim bindings
2020-06-11 17:25:52 +02:00
- [olm-sys](https://gitlab.gnome.org/BrainBlasted/olm-sys) (Apache-2.0) Rust
bindings
2022-09-12 15:14:01 +02:00
- [Trixnity](https://gitlab.com/trixnity/trixnity) (Apache-2.0) Kotlin SDK for
2022-02-17 16:08:01 +01:00
Matrix, including Olm bindings
2020-06-11 17:25:52 +02:00
2021-03-02 22:13:39 +01:00
Note that bindings may have a different license from libolm, and are *not*
endorsed by the Matrix.org Foundation C.I.C.
2020-06-11 17:25:52 +02:00
## Release process
2015-12-03 19:10:43 +01:00
First: bump version numbers in ``common.mk``, ``CMakeLists.txt``,
``javascript/package.json``, ``python/olm/__version__.py``, ``OLMKit.podspec``,
``Package.swift``, and ``android/gradle.properties``.
2016-12-22 16:02:43 +01:00
2020-10-06 20:47:43 +02:00
Also, ensure the changelog is up to date, and that everything is committed to
2016-12-22 16:02:43 +01:00
git.
2016-09-14 12:48:15 +02:00
2016-12-22 16:02:43 +01:00
It's probably sensible to do the above on a release branch (``release-vx.y.z``
by convention), and merge back to master once the release is complete.
```bash
make clean
2017-01-17 11:03:13 +01:00
# build and test C library
make test
2016-12-22 16:02:43 +01:00
# build and test JS wrapper
make js
2021-05-04 23:54:05 +02:00
(cd javascript && \
npm run test && \
sha256sum olm.js olm_legacy.js olm.wasm > checksums.txt && \
gpg -b -a -u F75FDC22C1DE8453 checksums.txt && \
npm publish)
2016-12-22 16:02:43 +01:00
VERSION=x.y.z
git tag $VERSION -s
git push --tags
2016-12-22 16:02:43 +01:00
# OLMKit CocoaPod release
# Make sure the version OLMKit.podspec is the same as the git tag
# (this must be checked before git tagging)
pod spec lint OLMKit.podspec --use-libraries --allow-warnings
pod trunk push OLMKit.podspec --use-libraries --allow-warnings
# Check the pod has been successully published with:
pod search OLMKit
```
2016-07-11 15:51:04 +02:00
2021-05-04 23:54:05 +02:00
Python and JavaScript packages are published to the registry at
<https://gitlab.matrix.org/matrix-org/olm/-/packages>. The GitLab
documentation contains instructions on how to set up twine (Python) and npm
(JavaScript) to upload to the registry.
To publish the Android library to MavenCentral (you will need some secrets), in the /android folder:
- Run the command `./gradlew clean build publish --no-daemon --no-parallel --stacktrace`. The generated AAR must be approx 500 kb.
- Connect to https://s01.oss.sonatype.org
- Click on Staging Repositories and check the the files have been uploaded
- Click on close
- Wait (check Activity tab until step "Repository closed" is displayed)
- Click on release. The staging repository will disappear
2022-01-07 19:55:53 +01:00
- Check that the release is available in https://repo1.maven.org/maven2/org/matrix/android/olm-sdk/ (it can take a few minutes)
2021-05-04 23:54:05 +02:00
## Design
Olm is designed to be easy port to different platforms and to be easy
to write bindings for.
It was originally implemented in C++, with a plain-C layer providing the public
API. As development has progressed, it has become clear that C++ gives little
advantage, and new functionality is being added in C, with C++ parts being
rewritten as the need ariases.
### Error Handling
All C functions in the API for olm return ``olm_error()`` on error.
This makes it easy to check for error conditions within the language bindings.
### Random Numbers
Olm doesn't generate random numbers itself. Instead the caller must
provide the random data. This makes it easier to port the library to different
platforms since the caller can use whatever cryptographic random number
generator their platform provides.
### Memory
Olm avoids calling malloc or allocating memory on the heap itself.
Instead the library calculates how much memory will be needed to hold the
output and the caller supplies a buffer of the appropriate size.
### Output Encoding
Binary output is encoded as base64 so that languages that prefer unicode
strings will find it easier to handle the output.
### Dependencies
Olm uses pure C implementations of the cryptographic primitives used by
the ratchet. While this decreases the performance it makes it much easier
to compile the library for different architectures.
## Contributing
2017-01-17 11:07:45 +01:00
Please see [CONTRIBUTING.md](CONTRIBUTING.md) when making contributions to the library.
## Security assessment
2017-05-08 12:35:50 +02:00
Olm 1.3.0 was independently assessed by NCC Group's Cryptography Services
Practive in September 2016 to check for security issues: you can read all
about it at
https://www.nccgroup.com/globalassets/our-research/us/public-reports/2016/november/ncc_group_olm_cryptogrpahic_review_2016_11_01.pdf
2017-05-08 12:35:50 +02:00
and https://matrix.org/blog/2016/11/21/matrixs-olm-end-to-end-encryption-security-assessment-released-and-implemented-cross-platform-on-riot-at-last/
## Security issues
If you think you found a security issue in libolm, any of its bindings or the Olm/Megolm protocols, please follow our [Security Disclosure Policy](https://matrix.org/security-disclosure-policy/) to report.
## Bug reports
For non-sensitive bugs, please file bug reports at https://github.com/matrix-org/olm/issues.
2017-03-13 12:55:33 +01:00
## What's an olm?
It's a really cool species of European troglodytic salamander.
2016-05-13 13:54:30 +02:00
http://www.postojnska-jama.eu/en/come-and-visit-us/vivarium-proteus/
2015-10-05 15:21:08 +02:00
## Legal Notice
2015-10-05 15:21:08 +02:00
The software may be subject to the U.S. export control laws and regulations
and by downloading the software the user certifies that he/she/it is
authorized to do so in accordance with those export control laws and
regulations.