1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #ifndef _IDMAP_CONFIG_H
27 #define	_IDMAP_CONFIG_H
28 
29 #pragma ident	"%Z%%M%	%I%	%E% SMI"
30 
31 #include "idmap.h"
32 #include <libscf.h>
33 #include <synch.h>
34 
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38 
39 #define	MAX_POLICY_SIZE 1023
40 
41 typedef struct idmap_scf_handles {
42 	scf_handle_t		*main;
43 	scf_instance_t		*instance;
44 	scf_service_t		*service;
45 	scf_propertygroup_t	*config_pg;
46 	scf_propertygroup_t	*general_pg;
47 } idmap_scf_handles_t;
48 
49 typedef struct idmap_pg_config {
50 	uint64_t	list_size_limit;
51 	char		*mapping_domain;	/* mapping dopmain */
52 	char		*machine_sid;		/* machine sid */
53 	char		*global_catalog;	/* global catalog host */
54 	char		*domain_controller;	/* domain controller host */
55 						/* for mapping domain */
56 } idmap_pg_config_t;
57 
58 typedef struct idmap_cfg {
59 	idmap_pg_config_t	pgcfg;
60 	idmap_scf_handles_t	handles;
61 } idmap_cfg_t;
62 
63 extern idmap_cfg_t	*idmap_cfg_init();
64 extern int		idmap_cfg_fini(idmap_cfg_t *);
65 extern int		idmap_cfg_load(idmap_cfg_t *);
66 
67 #ifdef __cplusplus
68 }
69 #endif
70 
71 #endif /* _IDMAP_CONFIG_H */
72