summaryrefslogtreecommitdiff
path: root/source4/librpc/idl/dssetup.idl
blob: 25045c587959e32482c8133fc1143f8ebed32020 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#include "idl_types.h"

/*
  dssetup interface definition
*/

[
	uuid("3919286a-b10c-11d0-9ba8-00c04fd92ef5"),
	version(0.0),
	endpoint("ncacn_np:[\\pipe\\lsarpc]","ncacn_np:[\\pipe\\lsass]"),
	pointer_default(unique),
	helpstring("Active Directory Setup")
] interface dssetup
{
	/**********************************************/
	/* Function 0x00                              */

	typedef enum {
		DS_ROLE_STANDALONE_WORKSTATION = 0,
		DS_ROLE_MEMBER_WORKSTATION     = 1,
		DS_ROLE_STANDALONE_SERVER      = 2,
		DS_ROLE_MEMBER_SERVER          = 3,
		DS_ROLE_BACKUP_DC              = 4,
		DS_ROLE_PRIMARY_DC             = 5
	} ds_Role;

	typedef struct {
		uint16    role;
		uint32    flags;
		unistr    *domain;
		unistr    *dns_domain;
		unistr    *forest;
		GUID domain_guid;
	} ds_DomainBasicInformation;

	typedef enum {
		DS_NOT_UPGRADING = 0,
		DS_UPGRADING     = 1
	} ds_UpgradeStatus;

	typedef enum {
		DS_PREVIOUS_UNKNOWN = 0,
		DS_PREVIOUS_PRIMARY = 1,
		DS_PREVIOUS_BACKUP  = 2
	} ds_PreviousStatus;

	typedef struct {
		uint32 upgrading;
		uint16 previous_role;
	} ds_DomainUpgradeStatus;

	typedef enum {
		DS_STATUS_IDLE         = 0,
		DS_STATUS_ACTIVE       = 1,
		DS_STATUS_NEEDS_REBOOT = 2
	} ds_Status;

	typedef struct {
		uint16 status;
	} ds_RoleOpStatus;
	
	typedef enum {
		DS_BASIC_INFORMATION = 1,
		DS_UPGRADE_STATUS    = 2,
		DS_ROLE_OP_STATUS    = 3
	} ds_InformationLevel;

	typedef union {
		[case(DS_BASIC_INFORMATION)] ds_DomainBasicInformation basic;
		[case(DS_UPGRADE_STATUS)]    ds_DomainUpgradeStatus    upgrade;
		[case(DS_ROLE_OP_STATUS)]    ds_RoleOpStatus           status;
	} ds_DomainInformation;

	WERROR ds_RolerGetPrimaryDomainInformation(
		[in] uint16 level,
		[out,switch_is(level)] ds_DomainInformation *info
		);

	/*
	  w2k3 has removed all the calls below from their implementation.
	  These stubs are left here only as a way of documenting the names
	  of the calls in case they ever turn up on the wire.
	*/
	WERROR ds_RolerDnsNameToFlatName();
	WERROR ds_RolerDcAsDc();
	WERROR ds_RolerDcAsReplica();
	WERROR ds_RolerDemoteDc();
	WERROR ds_RolerGetDcOperationProgress();
	WERROR ds_RolerGetDcOperationResults();
	WERROR ds_RolerCancel();
	WERROR ds_RolerServerSaveStateForUpgrade();
	WERROR ds_RolerUpgradeDownlevelServer();
	WERROR ds_RolerAbortDownlevelServerUpgrade();
}