tim2CF
Is it possible to decompile BEAM files with :debug_info chunk to actual Elixir source code? This data is from :debug_info
iex(2)> Secret |> :code.which |> :beam_lib.chunks([:debug_info]) |> elem(1) |> elem(1) |> Keyword.get(:debug_info) |> elem(2) |> elem(1) |> Map.get(:definitions)
[{{:hello, 0}, :def, [line: 26], [{[line: 26], [], [], :world}]}]
And this is actual Elixir AST
iex(3)> quote do
...(3)> defmodule Secret do
...(3)> def hello, do: :world
...(3)> end
...(3)> end
{:defmodule, [context: Elixir, import: Kernel],
[
{:__aliases__, [alias: false], [:Secret]},
[
do: {:def, [context: Elixir, import: Kernel],
[{:hello, [context: Elixir], Elixir}, [do: :world]]}
]
]}
If it’s possible to transform :debug_info to AST - please write how, thanks!
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
idi527
What would the use case for this? Maybe there is a simpler way to achieve what you want?
kokolegorille
You might find this helpful
tim2CF
The idea is to create a analysis tool that will work with AST of Elixir program
cdegroot
The problem is that the transformation from Elixir to BEAM bytecode loses information. A simple example:
will result in bytecode somewhat like
Because rebinding variables isn’t possible in bytecode, so Elixir fakes it. There are plenty of such examples. Decompiling BEAM bytecode to Erlang is fairly straightforward and precise, but getting back to the original Elixir AST is, I think, almost impossible. The simpler solution would be to just stash the AST in a BEAM segment (the format is pretty extensible so while I’m not sure whether this is already happening somewhere, I’m sure it is not too hard to do this).
Exadra37
At the time you wrote this it seems that was already possible with
Dbgichunk, that you can see the pull request for it here, and get some more background from this 2017 Jose video:But I may be misunderstanding something, because compilers and AST’s are not my thing
olafura
My project works with a lot of code but not all code:
Marcus
I have also done some experiments with the BEAM file. See the little beam_file project.
With
BeamFileyou can create byte, erl, and elixir-code (with the limitation discussed here) from the beam file.Example:
huylong9999
Hello dear friends. hope you can help me.
I have some .beam files I want to decompile into .erl files (source code)
How can I do this. Please help me, I will thank you.
olafura
It depends on if the beam file includes the AST or not. Try this:
I believe there are some mechanisms in the compiler to turn the beam bytecode into Core Erlang if you just want to deduce the logic similar to an decompiler
olafura