/* Authors: Pavel Březina Copyright (C) 2015 Red Hat This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include #include "sbus/sssd_dbus.h" #include "responder/ifp/ifp_iface_generated.h" #include "responder/ifp/ifp_domains.h" #include "responder/ifp/ifp_components.h" struct iface_ifp iface_ifp = { { &iface_ifp_meta, 0 }, .Ping = ifp_ping, /* components */ .ListComponents = ifp_list_components, .ListResponders = ifp_list_responders, .ListBackends = ifp_list_backends, .FindMonitor = ifp_find_monitor, .FindResponderByName = ifp_find_responder_by_name, .FindBackendByName = ifp_find_backend_by_name, .GetUserAttr = ifp_user_get_attr, .GetUserGroups = ifp_user_get_groups, .ListDomains = ifp_list_domains, .FindDomainByName = ifp_find_domain_by_name, }; struct iface_ifp_components iface_ifp_components = { { &iface_ifp_components_meta, 0 }, .Enable = ifp_component_enable, .Disable = ifp_component_disable, .ChangeDebugLevel = ifp_component_change_debug_level, .ChangeDebugLevelTemporarily = ifp_component_change_debug_level_tmp, .get_name = ifp_component_get_name, .get_debug_level = ifp_component_get_debug_level, .get_enabled = ifp_component_get_enabled, .get_type = ifp_component_get_type, /* FIXME: This should be part of Components.Backends interface, onece * SSSD supports multiple interfaces per object path. */ .get_providers = ifp_backend_get_providers }; struct iface_ifp_domains iface_ifp_domains = { { &iface_ifp_domains_meta, 0 }, .get_name = ifp_dom_get_name, .get_provider = ifp_dom_get_provider, .get_primary_servers = ifp_dom_get_primary_servers, .get_backup_servers = ifp_dom_get_backup_servers, .get_min_id = ifp_dom_get_min_id, .get_max_id = ifp_dom_get_max_id, .get_realm = ifp_dom_get_realm, .get_forest = ifp_dom_get_forest, .get_login_format = ifp_dom_get_login_format, .get_fully_qualified_name_format = ifp_dom_get_fqdn_format, .get_enumerable = ifp_dom_get_enumerable, .get_use_fully_qualified_names = ifp_dom_get_use_fqdn, .get_subdomain = ifp_dom_get_subdomain, .get_parent_domain = ifp_dom_get_parent_domain }; struct iface_map { const char *path; struct sbus_vtable *vtable; }; static struct iface_map iface_map[] = { { IFP_PATH, &iface_ifp.vtable }, { IFP_PATH_DOMAINS_TREE, &iface_ifp_domains.vtable }, { IFP_PATH_COMPONENTS_TREE, &iface_ifp_components.vtable }, { NULL, NULL }, }; errno_t ifp_register_sbus_interface(struct sbus_connection *conn, void *pvt) { errno_t ret; int i; for (i = 0; iface_map[i].path != NULL; i++) { ret = sbus_conn_register_iface(conn, iface_map[i].vtable, iface_map[i].path, pvt); if (ret != EOK) { return ret; } } return EOK; }