When writing and using IDA plugins, configurations tend to be quite a mess. With each plugin having it's own:
- Color scheme
- Hotkeys
- Configuration file format
- Configuration location
(And that's when you have a seprtate configuration, and not some variables in the plugin itself).
In the current situation, each developer works as he sees fit, and the users usually end up with the unmodified defaults,
as well as a large number of .some-plugin-confuguration
files.
To solve this, we need to create standards for plugin configuration, as well as C and Python libraries that follow them.
- Configurations should be easily exportable and modifiable (a YAML file might be a good solution)
- Should allow user/project based heirarcy:
- Global configuration, stored in the IDA directory
- User configuration, in the user directory
- Per-directory config, stored in the same directory as the
.idb
itself - Per-IDB config, stored as net-nodes in the IDB itself.
- Should allow global-defaults, and per-plugin modifications (like default color schemes for highlighting).
If you feel this is relevant to you, please comment so that we can improve on those ideas before going ahead an implementing them.
I've updated the module to address issues #1-4.
You must now instantiate
IDASettings
instances with a single parameter that is the name of the plugin whose settings you'll fetch. All settings are placed in the sameQSettings
instance, under separate groups. This reduces the number of registry keys and config files created.You can now fetch the list of names of plugins that have settings using the class properties
IDASettings.system_plugin_names
,IDASettings.user_plugin_names
, etc. I don't think this is the most beautifully-named API, but it works. It allows you to enumerate all plugin settings instances, and from there, you can enumerate the settings key-value pairs themselves.Values are now transparently JSON encoded and decoded as they are stored and fetched from the backends. This allows for values of types like:
int
,float
,list
,dict
, etc. The netnode backend does not support values larger than 1024 bytes, so users are encouraged to store small values rather than large complex items.I recommend bringing up additional issues specific to the module as github issues, so we both receive notifications. This gist remains a great place to discuss the general concept, however.