/* * Copyright (c) 2006-2007, XenSource Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include "xen_internal.h" #include #include #include #include #include #include XEN_FREE(xen_vif) XEN_SET_ALLOC_FREE(xen_vif) XEN_ALLOC(xen_vif_record) XEN_SET_ALLOC_FREE(xen_vif_record) XEN_ALLOC(xen_vif_record_opt) XEN_RECORD_OPT_FREE(xen_vif) XEN_SET_ALLOC_FREE(xen_vif_record_opt) static const struct_member xen_vif_record_struct_members[] = { { .key = "uuid", .type = &abstract_type_string, .offset = offsetof(xen_vif_record, uuid) }, { .key = "device", .type = &abstract_type_string, .offset = offsetof(xen_vif_record, device) }, { .key = "network", .type = &abstract_type_ref, .offset = offsetof(xen_vif_record, network) }, { .key = "VM", .type = &abstract_type_ref, .offset = offsetof(xen_vif_record, vm) }, { .key = "MAC", .type = &abstract_type_string, .offset = offsetof(xen_vif_record, mac) }, { .key = "MTU", .type = &abstract_type_int, .offset = offsetof(xen_vif_record, mtu) }, { .key = "currently_attached", .type = &abstract_type_bool, .offset = offsetof(xen_vif_record, currently_attached) }, { .key = "status_code", .type = &abstract_type_int, .offset = offsetof(xen_vif_record, status_code) }, { .key = "status_detail", .type = &abstract_type_string, .offset = offsetof(xen_vif_record, status_detail) }, { .key = "runtime_properties", .type = &abstract_type_string_string_map, .offset = offsetof(xen_vif_record, runtime_properties) }, { .key = "qos_algorithm_type", .type = &abstract_type_string, .offset = offsetof(xen_vif_record, qos_algorithm_type) }, { .key = "qos_algorithm_params", .type = &abstract_type_string_string_map, .offset = offsetof(xen_vif_record, qos_algorithm_params) }, { .key = "qos_supported_algorithms", .type = &abstract_type_string_set, .offset = offsetof(xen_vif_record, qos_supported_algorithms) }, { .key = "metrics", .type = &abstract_type_ref, .offset = offsetof(xen_vif_record, metrics) } }; const abstract_type xen_vif_record_abstract_type_ = { .typename = STRUCT, .struct_size = sizeof(xen_vif_record), .member_count = sizeof(xen_vif_record_struct_members) / sizeof(struct_member), .members = xen_vif_record_struct_members }; void xen_vif_record_free(xen_vif_record *record) { if (record == NULL) { return; } free(record->handle); free(record->uuid); free(record->device); xen_network_record_opt_free(record->network); xen_vm_record_opt_free(record->vm); free(record->mac); free(record->status_detail); xen_string_string_map_free(record->runtime_properties); free(record->qos_algorithm_type); xen_string_string_map_free(record->qos_algorithm_params); xen_string_set_free(record->qos_supported_algorithms); xen_vif_metrics_record_opt_free(record->metrics); free(record); } bool xen_vif_get_record(xen_session *session, xen_vif_record **result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = xen_vif_record_abstract_type_; *result = NULL; XEN_CALL_("VIF.get_record"); if (session->ok) { (*result)->handle = xen_strdup_((*result)->uuid); } return session->ok; } bool xen_vif_get_by_uuid(xen_session *session, xen_vif *result, char *uuid) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = uuid } }; abstract_type result_type = abstract_type_string; *result = NULL; XEN_CALL_("VIF.get_by_uuid"); return session->ok; } bool xen_vif_create(xen_session *session, xen_vif *result, xen_vif_record *record) { abstract_value param_values[] = { { .type = &xen_vif_record_abstract_type_, .u.struct_val = record } }; abstract_type result_type = abstract_type_string; *result = NULL; XEN_CALL_("VIF.create"); return session->ok; } bool xen_vif_destroy(xen_session *session, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; xen_call_(session, "VIF.destroy", param_values, 1, NULL, NULL); return session->ok; } bool xen_vif_get_device(xen_session *session, char **result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = abstract_type_string; *result = NULL; XEN_CALL_("VIF.get_device"); return session->ok; } bool xen_vif_get_network(xen_session *session, xen_network *result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = abstract_type_string; *result = NULL; XEN_CALL_("VIF.get_network"); return session->ok; } bool xen_vif_get_vm(xen_session *session, xen_vm *result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = abstract_type_string; *result = NULL; XEN_CALL_("VIF.get_VM"); return session->ok; } bool xen_vif_get_mac(xen_session *session, char **result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = abstract_type_string; *result = NULL; XEN_CALL_("VIF.get_MAC"); return session->ok; } bool xen_vif_get_mtu(xen_session *session, int64_t *result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = abstract_type_int; XEN_CALL_("VIF.get_MTU"); return session->ok; } bool xen_vif_get_currently_attached(xen_session *session, bool *result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = abstract_type_bool; XEN_CALL_("VIF.get_currently_attached"); return session->ok; } bool xen_vif_get_status_code(xen_session *session, int64_t *result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = abstract_type_int; XEN_CALL_("VIF.get_status_code"); return session->ok; } bool xen_vif_get_status_detail(xen_session *session, char **result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = abstract_type_string; *result = NULL; XEN_CALL_("VIF.get_status_detail"); return session->ok; } bool xen_vif_get_runtime_properties(xen_session *session, xen_string_string_map **result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = abstract_type_string_string_map; *result = NULL; XEN_CALL_("VIF.get_runtime_properties"); return session->ok; } bool xen_vif_get_qos_algorithm_type(xen_session *session, char **result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = abstract_type_string; *result = NULL; XEN_CALL_("VIF.get_qos_algorithm_type"); return session->ok; } bool xen_vif_get_qos_algorithm_params(xen_session *session, xen_string_string_map **result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = abstract_type_string_string_map; *result = NULL; XEN_CALL_("VIF.get_qos_algorithm_params"); return session->ok; } bool xen_vif_get_qos_supported_algorithms(xen_session *session, struct xen_string_set **result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = abstract_type_string_set; *result = NULL; XEN_CALL_("VIF.get_qos_supported_algorithms"); return session->ok; } bool xen_vif_get_metrics(xen_session *session, xen_vif_metrics *result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = abstract_type_string; *result = NULL; XEN_CALL_("VIF.get_metrics"); return session->ok; } bool xen_vif_set_device(xen_session *session, xen_vif vif, char *device) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif }, { .type = &abstract_type_string, .u.string_val = device } }; xen_call_(session, "VIF.set_device", param_values, 2, NULL, NULL); return session->ok; } bool xen_vif_set_mac(xen_session *session, xen_vif vif, char *mac) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif }, { .type = &abstract_type_string, .u.string_val = mac } }; xen_call_(session, "VIF.set_MAC", param_values, 2, NULL, NULL); return session->ok; } bool xen_vif_set_mtu(xen_session *session, xen_vif vif, int64_t mtu) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif }, { .type = &abstract_type_int, .u.int_val = mtu } }; xen_call_(session, "VIF.set_MTU", param_values, 2, NULL, NULL); return session->ok; } bool xen_vif_set_qos_algorithm_type(xen_session *session, xen_vif vif, char *algorithm_type) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif }, { .type = &abstract_type_string, .u.string_val = algorithm_type } }; xen_call_(session, "VIF.set_qos_algorithm_type", param_values, 2, NULL, NULL); return session->ok; } bool xen_vif_set_qos_algorithm_params(xen_session *session, xen_vif vif, xen_string_string_map *algorithm_params) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif }, { .type = &abstract_type_string_string_map, .u.set_val = (arbitrary_set *)algorithm_params } }; xen_call_(session, "VIF.set_qos_algorithm_params", param_values, 2, NULL, NULL); return session->ok; } bool xen_vif_add_to_qos_algorithm_params(xen_session *session, xen_vif vif, char *key, char *value) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif }, { .type = &abstract_type_string, .u.string_val = key }, { .type = &abstract_type_string, .u.string_val = value } }; xen_call_(session, "VIF.add_to_qos_algorithm_params", param_values, 3, NULL, NULL); return session->ok; } bool xen_vif_remove_from_qos_algorithm_params(xen_session *session, xen_vif vif, char *key) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif }, { .type = &abstract_type_string, .u.string_val = key } }; xen_call_(session, "VIF.remove_from_qos_algorithm_params", param_values, 2, NULL, NULL); return session->ok; } bool xen_vif_plug(xen_session *session, xen_vif self) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = self } }; xen_call_(session, "VIF.plug", param_values, 1, NULL, NULL); return session->ok; } bool xen_vif_unplug(xen_session *session, xen_vif self) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = self } }; xen_call_(session, "VIF.unplug", param_values, 1, NULL, NULL); return session->ok; } bool xen_vif_get_all(xen_session *session, struct xen_vif_set **result) { abstract_type result_type = abstract_type_string_set; *result = NULL; xen_call_(session, "VIF.get_all", NULL, 0, &result_type, result); return session->ok; } bool xen_vif_get_uuid(xen_session *session, char **result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif } }; abstract_type result_type = abstract_type_string; *result = NULL; XEN_CALL_("VIF.get_uuid"); return session->ok; } bool xen_vif_set_security_label(xen_session *session, int64_t *result, xen_vif vif, char *label, char *oldlabel) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif }, { .type = &abstract_type_string, .u.string_val = label }, { .type = &abstract_type_string, .u.string_val = oldlabel }, }; abstract_type result_type = abstract_type_int; *result = 0; XEN_CALL_("VIF.set_security_label"); return session->ok; } bool xen_vif_get_security_label(xen_session *session, char **result, xen_vif vif) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif }, }; abstract_type result_type = abstract_type_string; *result = NULL; XEN_CALL_("VIF.get_security_label"); return session->ok; }