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.
Finally had time to play with it for a bit. It looks really good. The API is intuitive, and the use
QSettings
does seem to make sense, making to code simpler.I do have some issues with it:
QSettings
to the plugins prompts the generation of many registry keys. Personally, I'd prefer having all plugin-settings in one place.If we do wish to allow this hierarchy, we can use groups (
organization/plugin
). They can be made seamless in the API, yet provide hierarchy in both the registry and the.ini
files..config.ini
file. This, too, can be solved by using the settings groups, but I am not sure if I prefer one file with all the settings in it, or multiple files.Other than those issues, I think the only requirement not addressed here is the global-defaults.