/* [re-]enable all commands, except those explicitly blacklisted by user */ static void ga_enable_non_blacklisted(QmpCommand *cmd, void *opaque) { GList *blacklist = opaque; const char *name = qmp_command_name(cmd); if (g_list_find_custom(blacklist, name, ga_strcmp) == NULL && !qmp_command_is_enabled(cmd)) { g_debug("enabling command: %s", name); qmp_enable_command(&ga_commands, name); } }
static void qmp_command_info(QmpCommand *cmd, void *opaque) { GuestAgentInfo *info = opaque; GuestAgentCommandInfo *cmd_info; GuestAgentCommandInfoList *cmd_info_list; cmd_info = g_new0(GuestAgentCommandInfo, 1); cmd_info->name = g_strdup(qmp_command_name(cmd)); cmd_info->enabled = qmp_command_is_enabled(cmd); cmd_info->success_response = qmp_has_success_response(cmd); cmd_info_list = g_new0(GuestAgentCommandInfoList, 1); cmd_info_list->value = cmd_info; cmd_info_list->next = info->supported_commands; info->supported_commands = cmd_info_list; }
/* disable commands that aren't safe for fsfreeze */ static void ga_disable_non_whitelisted(QmpCommand *cmd, void *opaque) { bool whitelisted = false; int i = 0; const char *name = qmp_command_name(cmd); while (ga_freeze_whitelist[i] != NULL) { if (strcmp(name, ga_freeze_whitelist[i]) == 0) { whitelisted = true; } i++; } if (!whitelisted) { g_debug("disabling command: %s", name); qmp_disable_command(&ga_commands, name); } }
static void ga_print_cmd(QmpCommand *cmd, void *opaque) { printf("%s\n", qmp_command_name(cmd)); }