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.
Thanks for the feedback. I think you make valid arguments about organization of the configuration hierarchy. From a cursory study of the Qt documentation, I think groups can be used to solve issues 1-3. If all IDAPython configuration settings fall underneath one organization/application instance, then the QSettings API will allow enumeration and access of all keys and values. This should be easy to implement.
If we take this route, we should agree on how much each script's settings are namespaced. Providing arbitrary group-tree traversal (for a given plugin, settings can have children groups, grandchildren groups, etc.) sounds pretty confusing, with limited benefit. Perhaps each plugin is expected to have a unique name, and then gets a flat key-value store to work with? A separate initiative might define common settings locations for shared items, such as interface color schemes.
For #2, how would you imagine the multiple files split up?
Finally, #4. The simple solutions would be using msgpack, json, or pickle. Pickle sounds dangerous, since configurations may be shared without trust, and you can pickle code. msgpack is fast and small, but requires an external library. json is ubiquitous, and would probably work.
dumps()
on the way in, andloads()
on the way out. This would support strings, numbers, arrays, dicts. Thoughts?