Skip to main content
Version: 0.10

Serialization

The messages that drasyl nodes send to each other are JVM objects. Message passing between nodes living on the same JVM is straightforward: It is done via reference passing. However, messages that must leave the JVM to reach a node running on a different host must go through some form of serialization (i.e., the objects must be converted to and from byte arrays).

The serialization mechanism in drasyl allows you to write custom serializers and to define which serializer should be used for what.

Configuration​

In order for drasyl to know which serializer to use for what, you need to edit your configuration:

In the drasyl.serialization.serializers-section, bind names to implementations of Serializer you want to use, like this:

drasyl {
serialization {
serializers {
java = "org.drasyl.node.handler.serialization.JavaSerializer"
jackson-json = "org.drasyl.node.handler.serialization.JacksonJsonSerializer"
proto = "org.drasyl.node.handler.serialization.ProtobufSerializer"
myown = "docs.serialization.MyOwnSerializer"
}
}
}

After you’ve bound names to different implementations of Serializer you need to wire which classes should be serialized using which serializer. This is done in the drasyl.serialization.bindings.inbound-section for inbound messages and drasyl.serialization.bindings.outbound-section for outbound messages:

drasyl {
serialization {
serializers {
java = "org.drasyl.node.handler.serialization.JavaSerializer"
jackson-json = "org.drasyl.node.handler.serialization.JacksonJsonSerializer"
proto = "org.drasyl.node.handler.serialization.ProtobufSerializer"
myown = "docs.serialization.MyOwnSerializer"
}

bindings {
inbound {
"[Ljava.lang.String;" = java
"docs.serialization.JsonSerializable" = jackson-json
"com.google.protobuf.Message" = proto
"docs.serialization.MyOwnSerializable" = myown
}

outbound {
"[Ljava.lang.String;" = java
"docs.serialization.JsonSerializable" = jackson-json
"com.google.protobuf.Message" = proto
"docs.serialization.MyOwnSerializable" = myown
}
}
}
}

You only need to specify the name of an interface or abstract base class of the messages.

Build-in serializers​

drasyl ships some build-in serializers for the most common object types. Serializers are already defined and bound for the most common message types (Java primives, their wrapper classes, strings, and byte arrays). On the other hand, some serializers have to be bound manually to the desired classes.

Enabled and bound to the serializable classes​

NameClassSerializable Classes
primitive-booleanBooleanSerializerBoolean, boolean
primitive-byteByteSerializerByte, byte
primitive-charCharacterSerializerCharacter, char
primitive-floatFloatSerializerFloat, float
primitive-intIntegerSerializerInteger, int
primitive-longLongSerializerLong, long
primitive-shortShortSerializerShort, short
bytesByteArraySerializerbyte[]
stringStringSerializerString

So if you only send object types that are included in this table, you don't need to configure anything!

Enabled and must be manually bound​

NameClassSerializable Classes
javaJavaSerializerSerializable
jackson-jsonJacksonJsonSerializerall Jackson-compatible classes
protoProtobufSerializerProtobuf Message
  • Serialization with Jackson is a good choice in many cases and our recommendation if you don’t have other preferences.
  • Google Protocol Buffers is good if you want more control over the schema evolution of your messages, but it requires more work to develop and maintain the mapping between serialized representation and domain representation.

Before binding arbitrary classes to a Serializer, please read the security notes below.

Security notes​

With this configuration, a developer guarantees that all classes are secure and cannot be misused as a deserialization gadget in the context of the Serializer. A reckless implementation of a permitted class can leave the entire application and all executing machines vulnerable to remote code execution.

caution

An attacker is in general interested in all "non-pure" methods, which have promising side effects. A method is "pure" if:

  • The execution of the function has no side effects, and
  • the return value of the function depends only on the input parameters passed to the function.

For example, a vulnerability could be a setter or getter that connects to a database. A vulnerable class is for example the ch.qos.logback.core.db.DriverManagerConnectionSource. An attacker can choose the URL arbitrarily. By calling getConnection, Server Side Request Forgery (SSRF) and DOS attacks can occur.

You can find more about this in the following literature: