summaryrefslogtreecommitdiff
path: root/python/pluginmanager.py
blob: 3796211436f21077d4dc8c1f122c1d5a83143da6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
# Copyright (c) 2015-2016 Vector 35 LLC
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.

import ctypes

# Binary Ninja components
import _binaryninjacore as core
from .enums import PluginType, PluginUpdateStatus
import startup


class RepoPlugin(object):
	"""
	``RepoPlugin` is mostly read-only, however you can install/uninstall enable/disable plugins. RepoPlugins are
	created by parsing the plugins.json in a plugin repository.
	"""
	def __init__(self, handle):
		self.handle = core.handle_of_type(handle, core.BNRepoPlugin)

	def __del__(self):
		core.BNFreePlugin(self.handle)

	def __repr__(self):
		return "<{} {}/{}>".format(self.path, "installed" if self.installed else "not-installed", "enabled" if self.enabled else "disabled")

	@property
	def path(self):
		"""Relative path from the base of the repository to the actual plugin"""
		return core.BNPluginGetPath(self.handle)

	@property
	def installed(self):
		"""Boolean True if the plugin is installed, False otherwise"""
		return core.BNPluginIsInstalled(self.handle)

	@installed.setter
	def installed(self, state):
		if state:
			return core.BNPluginInstall(self.handle)
		else:
			return core.BNPluginUninstall(self.handle)

	@property
	def enabled(self):
		"""Boolean True if the plugin is currently enabled, False otherwise"""
		return core.BNPluginIsEnabled(self.handle)

	@enabled.setter
	def enabled(self, state):
		if state:
			return core.BNPluginEnable(self.handle)
		else:
			return core.BNPluginDisable(self.handle)

	@property
	def api(self):
		"""string indicating the api used by the plugin"""
		return core.BNPluginGetApi(self.handle)

	@property
	def description(self):
		"""String short description of the plugin"""
		return core.BNPluginGetDescription(self.handle)

	@property
	def license(self):
		"""String short license description (ie MIT, BSD, GPLv2, etc)"""
		return core.BNPluginGetLicense(self.handle)

	@property
	def license_text(self):
		"""String complete license text for the given plugin"""
		return core.BNPluginGetLicenseText(self.handle)

	@property
	def long_description(self):
		"""String long description of the plugin"""
		return core.BNPluginGetLongdescription(self.handle)

	@property
	def minimum_version(self):
		"""String minimum version the plugin was tested on"""
		return core.BNPluginGetMinimimVersions(self.handle)

	@property
	def name(self):
		"""String name of the plugin"""
		return core.BNPluginGetName(self.handle)

	@property
	def plugin_types(self):
		"""List of PluginType enumeration objects indicating the plugin type(s)"""
		result = []
		count = ctypes.c_ulonglong(0)
		plugintypes = core.BNPluginGetPluginTypes(self.handle, count)
		for i in xrange(count.value):
			result.append(PluginType(plugintypes[i]))
		core.BNFreePluginTypes(plugintypes)
		return result

	@property
	def url(self):
		"""String url of the plugin's git repository"""
		return core.BNPluginGetUrl(self.handle)

	@property
	def version(self):
		"""String version of the plugin"""
		return core.BNPluginGetVersion(self.handle)

	@property
	def update_status(self):
		"""PluginUpdateStatus enumeration indicating if the plugin is up to date or not"""
		return PluginUpdateStatus(core.BNPluginGetPluginUpdateStatus(self.handle))


class Repository(object):
	"""
	``Repository`` is a read-only class. Use RepositoryManager to Enable/Disable/Install/Uninstall plugins.
	"""
	def __init__(self, handle):
		self.handle = core.handle_of_type(handle, core.BNRepository)

	def __del__(self):
		core.BNFreeRepository(self.handle)

	def __repr__(self):
		return "<{} - {}/{}>".format(self.path, self.remote_reference, self.local_reference)

	@property
	def url(self):
		"""String url of the git repository where the plugin repository's are stored"""
		return core.BNRepositoryGetUrl(self.handle)

	@property
	def path(self):
		"""String local path to store the given plugin repository"""
		return core.BNRepositoryGetRepoPath(self.handle)

	@property
	def local_reference(self):
		"""String for the local git reference (ie 'master')"""
		return core.BNRepositoryGetLocalReference(self.handle)

	@property
	def remote_reference(self):
		"""String for the remote git reference (ie 'origin')"""
		return core.BNRepositoryGetRemoteReference(self.handle)

	@property
	def plugins(self):
		"""List of RepoPlugin objects contained within this repository"""
		pluginlist = []
		count = ctypes.c_ulonglong(0)
		result = core.BNRepositoryGetPlugins(self.handle, count)
		for i in xrange(count.value):
			pluginlist.append(RepoPlugin(handle=result[i]))
		core.BNFreeRepositoryPluginList(result, count.value)
		del result
		return pluginlist

	@property
	def initialized(self):
		"""Boolean True when the repository has been initialized"""
		return core.BNRepositoryIsInitialized(self.handle)


class RepositoryManager(object):
	"""
	``RepositoryManager`` Keeps track of all the repositories and keeps the enabled_plugins.json file coherent with
	the plugins that are installed/unstalled enabled/disabled
	"""
	def __init__(self, handle=None):
		self.handle = core.BNGetRepositoryManager()

	def check_for_updates(self):
		"""Check for updates for all managed Repository objects"""
		return core.BNRepositoryManagerCheckForUpdates(self.handle)

	@property
	def repositories(self):
		"""List of Repository objects being managed"""
		result = []
		count = ctypes.c_ulonglong(0)
		repos = core.BNRepositoryManagerGetRepositories(self.handle, count)
		for i in xrange(count.value):
			result.append(Repository(handle=repos[i]))
		core.BNFreeRepositoryManagerRepositoriesList(repos)
		return result

	@property
	def plugins(self):
		"""List of all RepoPlugins in each repository"""
		plgs = {}
		for repo in self.repositories:
			plgs[repo.path] = repo.plugins
		return plgs

	@property
	def default_repository(self):
		"""Gets the default Repository"""
		startup._init_plugins()
		return Repository(handle=core.BNRepositoryManagerGetDefaultRepository(self.handle))

	def enable_plugin(self, plugin, install=True, repo=None):
		"""
		``enable_plugin`` Enables the installed plugin 'plugin', optionally installing the plugin if `install` is set to
		True (default), and optionally using the non-default repository.

		:param str name: Name of the plugin to enable
		:param Boolean install: Optionally install the repo, defaults to True.
		:param str repo: Optional, specify a repository other than the default repository.
		:return: Boolean value True if the plugin was successfully enabled, False otherwise
		:rtype: Boolean
		:Example:

			>>> mgr = RepositoryManager()
			>>> mgr.enable_plugin('binaryninja-bookmarks')
			True
			>>>
		"""
		if install:
			if not self.install_plugin(plugin, repo):
				return False

		if repo is None:
			repo = self.default_repository
		repopath = repo
		pluginpath = plugin
		if not isinstance(repo, str):
			repopath = repo.path
		if not isinstance(plugin, str):
			pluginpath = plugin.path
		return core.BNRepositoryManagerEnablePlugin(self.handle, repopath, pluginpath)

	def disable_plugin(self, plugin, repo=None):
		"""
		``disable_plugin`` Disable the specified plugin, pluginpath

		:param Repository or str repo: Repository containing the plugin to disable
		:param RepoPlugin or str plugin: RepoPlugin to disable
		:return: Boolean value True if the plugin was successfully disabled, False otherwise
		:rtype: Boolean
		:Example:

			>>> mgr = RepositoryManager()
			>>> mgr.disable_plugin('binaryninja-bookmarks')
			True
			>>>
		"""
		if repo is None:
			repo = self.default_repository
		repopath = repo
		pluginpath = plugin
		if not isinstance(repo, str):
			repopath = repo.path
		if not isinstance(plugin, str):
			pluginpath = plugin.path
		return core.BNRepositoryManagerDisablePlugin(self.handle, repopath, pluginpath)

	def install_plugin(self, plugin, repo=None):
		"""
		``install_plugin`` install the specified plugin, pluginpath

		:param Repository or str repo: Repository containing the plugin to install
		:param RepoPlugin or str plugin: RepoPlugin to install
		:return: Boolean value True if the plugin was successfully installed, False otherwise
		:rtype: Boolean
		:Example:

			>>> mgr = RepositoryManager()
			>>> mgr.install_plugin('binaryninja-bookmarks')
			True
			>>>
		"""
		if repo is None:
			repo = self.default_repository
		repopath = repo
		pluginpath = plugin
		if not isinstance(repo, str):
			repopath = repo.path
		if not isinstance(plugin, str):
			pluginpath = plugin.path
		return core.BNRepositoryManagerInstallPlugin(self.handle, repopath, pluginpath)

	def uninstall_plugin(self, plugin, repo=None):
		"""
		``uninstall_plugin`` uninstall the specified plugin, pluginpath

		:param Repository or str repo: Repository containing the plugin to uninstall
		:param RepoPlugin or str plugin: RepoPlugin to uninstall
		:return: Boolean value True if the plugin was successfully uninstalled, False otherwise
		:rtype: Boolean
		:Example:

			>>> mgr = RepositoryManager()
			>>> mgr.uninstall_plugin('binaryninja-bookmarks')
			True
			>>>
		"""
		if repo is None:
			repo = self.default_repository
		repopath = repo
		pluginpath = plugin
		if not isinstance(repo, str):
			repopath = repo.path
		if not isinstance(plugin, str):
			pluginpath = plugin.path
		return core.BNRepositoryManagerUninstallPlugin(self.handle, repopath, pluginpath)

	def update_plugin(self, plugin, repo=None):
		"""
		``update_plugin`` update the specified plugin, pluginpath

		:param Repository or str repo: Repository containing the plugin to update
		:param RepoPlugin or str plugin: RepoPlugin to update
		:return: Boolean value True if the plugin was successfully updated, False otherwise
		:rtype: Boolean
		:Example:

			>>> mgr = RepositoryManager()
			>>> mgr.update_plugin('binaryninja-bookmarks')
			True
			>>>
		"""
		if repo is None:
			repo = self.default_repository
		repopath = repo
		pluginpath = plugin
		if not isinstance(repo, str):
			repopath = repo.path
		if not isinstance(plugin, str):
			pluginpath = plugin.path
		return core.BNRepositoryManagerUpdatePlugin(self.handle, repopath, pluginpath)

	def add_repository(self, url=None, repopath=None, localreference="master", remotereference="origin"):
		"""
		``add_repository`` adds a new plugin repository for the manager to track.

		:param str url: Url to the git repository where the plugins are stored.
		:param str repopath: path to where the repository will be stored on disk locally
		:param str localreference: Optional reference to the local tracking branch typically "master"
		:param str remotereference: Optional reference to the remote tracking branch typically "origin"
		:return: Boolean value True if the repository was successfully added, False otherwise.
		:rtype: Boolean
		:Example:

			>>> mgr = RepositoryManager()
			>>> mgr.add_repository(url="https://github.com/vector35/community-plugins.git",
			                       repopath="myrepo",
			                       repomanifest="plugins",
			                       localreference="master", remotereference="origin")
			True
			>>>
		"""
		if not (isinstance(url, str) and isinstance(repopath, str) and
			isinstance(localreference, str) and isinstance(remotereference, str)):
			raise ValueError("Parameter is incorrect type")

		return core.BNRepositoryManagerAddRepository(self.handle, url, repopath, localreference, remotereference)