pacsrv.h revision 275102c8f332323571d55370a705d4610d24f510
/*
SSSD
PAC Responder, header file
Copyright (C) Sumit Bose <sbose@redhat.com> 2011
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 <http://www.gnu.org/licenses/>.
*/
#ifndef __PACSRV_H__
#define __PACSRV_H__
#include <stdbool.h>
#include <util/data_blob.h>
#include <ndr.h>
#include <gen_ndr/ndr_krb5pac.h>
#include <stdint.h>
#include "config.h"
#include "talloc.h"
#include "tevent.h"
#include "ldb.h"
#include "sbus/sssd_dbus.h"
#include "responder/common/responder_packet.h"
#include "responder/common/responder.h"
#include "responder/common/responder_sbus.h"
#include "lib/idmap/sss_idmap.h"
#define PAC_PACKET_MAX_RECV_SIZE 1024
struct getent_ctx;
struct dom_sid;
struct pac_ctx {
struct sss_idmap_ctx *idmap_ctx;
struct dom_sid *my_dom_sid;
struct local_mapping_ranges *range_map;
};
struct range {
};
struct local_mapping_ranges {
struct range primary_rids;
struct range secondary_rids;
};
struct grp_info {
char *orig_dn;
};
struct pac_dom_grps {
struct sss_domain_info *grp_dom;
};
struct sss_cmd_table *get_pac_cmds(void);
const char *domain_name,
const char *dom_sid_str);
const char *domain_name,
struct sss_domain_info *dom,
struct local_mapping_ranges **_range_map);
struct local_mapping_ranges *range_map,
struct dom_sid *domain_sid,
struct PAC_LOGON_INFO *logon_info,
struct PAC_LOGON_INFO **_logon_info);
struct sss_domain_info *dom,
struct PAC_LOGON_INFO *logon_info,
struct sysdb_attrs **_attrs);
struct grp_info *cur_gid_list,
struct pac_dom_grps *new_gid_list,
struct pac_dom_grps **_add_gid_list,
struct grp_info ***_del_gid_list);
const char *id_str);
#endif /* __PACSRV_H__ */