[library] binser - Customizable Lua Serializer

Showcase your libraries, tools and other projects that help your fellow love users.
User avatar
bakpakin
Party member
Posts: 114
Joined: Sun Mar 15, 2015 9:29 am
Location: Boston

Re: [library] binser - Customizable Lua Serializer

Post by bakpakin »

Robin wrote:Because serializing functions is inherently unsafe, because the function could be malicious.
EDIT: After reading up more on loadstring, I realize that loadstring already does all of the below. All code is only compiled, not executed. You're completely right and I'm make something out of nothing. My bad, I'm wrong, mea culpa. Read and think before you post, people!

With my proposed method, one could deserialize the function without worrying about malicious code being called automatically. It would be then up to the user to make sure their data is what they expected. By naively calling loadstring on anything that claims to be a function during deserialization, evil code would execute without the user explicitly calling it. But any code within a function scope in lua is only compiled with loadstring, not executed. If the user decides to deserialize a function and execute it, you're right, there is no way to make it safe. I hope this makes sense.
((_((_CRAYOLA_((_((_> GitHub <_((_((_CRAYOLA_((_(()
User avatar
bakpakin
Party member
Posts: 114
Joined: Sun Mar 15, 2015 9:29 am
Location: Boston

Re: [library] binser - Customizable Lua Serializer

Post by bakpakin »

Just finished changing number serialization / deserialization to truly binary form. No more string.format for numbers. The implementation I modified was from lua-MessagePack, which I actually had to correct because it did not handle all numbers. Code is on github like usual.

It should work on Lua compiled with single precision numbers instead of double precision numbers, but I'm not sure.

This doesn't significantly change the benchmark numbers, because most numbers in the benchmarks are small numbers stored in single bytes. It does, however, make serialized data much more compact, especially anything with lots of numbers, like meshes or level data.
((_((_CRAYOLA_((_((_> GitHub <_((_((_CRAYOLA_((_(()
User avatar
bakpakin
Party member
Posts: 114
Joined: Sun Mar 15, 2015 9:29 am
Location: Boston

Re: [library] binser - Customizable Lua Serializer

Post by bakpakin »

Just an update, I've now added resources and function serialization to binser.
((_((_CRAYOLA_((_((_> GitHub <_((_((_CRAYOLA_((_(()
prixt
Prole
Posts: 26
Joined: Sat Sep 12, 2015 5:53 am

Re: [library] binser - Customizable Lua Serializer

Post by prixt »

Can binser serialize weak tables?
Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot] and 2 guests