summaryrefslogtreecommitdiff
path: root/source3/rpc_server/srv_netlog.c
blob: ea9408a2cf3499484cd45fbaee9aa98b0a66802f (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/* 
 *  Unix SMB/CIFS implementation.
 *  RPC Pipe client / server routines
 *  Copyright (C) Andrew Tridgell              1992-1997,
 *  Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
 *  Copyright (C) Paul Ashton                       1997,
 *  Copyright (C) Jeremy Allison               1998-2001,
 *  Copyright (C) Jim McDonough <jmcd@us.ibm.com>   2003.
 *
 *  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 <http://www.gnu.org/licenses/>.
 */

/* This is the interface to the netlogon pipe. */

#include "includes.h"

#undef DBGC_CLASS
#define DBGC_CLASS DBGC_RPC_SRV

/*******************************************************************
 ********************************************************************/

static bool proxy_netr_call(pipes_struct *p, uint8 opnum)
{
	struct api_struct *fns;
	int n_fns;

	netlogon_get_pipe_fns(&fns, &n_fns);

	if (opnum >= n_fns) {
		return false;
	}

	if (fns[opnum].opnum != opnum) {
		smb_panic("NETLOGON function table not sorted");
	}

	return fns[opnum].fn(p);
}

/*************************************************************************
 api_net_req_chal:
 *************************************************************************/

static bool api_net_req_chal(pipes_struct *p)
{
	return proxy_netr_call(p, NDR_NETR_SERVERREQCHALLENGE);
}

/*************************************************************************
 api_net_auth:
 *************************************************************************/

static bool api_net_auth(pipes_struct *p)
{
	return proxy_netr_call(p, NDR_NETR_SERVERAUTHENTICATE);
}

/*************************************************************************
 api_net_auth_2:
 *************************************************************************/

static bool api_net_auth_2(pipes_struct *p)
{
	return proxy_netr_call(p, NDR_NETR_SERVERAUTHENTICATE2);
}

/*************************************************************************
 api_net_srv_pwset:
 *************************************************************************/

static bool api_net_srv_pwset(pipes_struct *p)
{
	return proxy_netr_call(p, NDR_NETR_SERVERPASSWORDSET);
}

/*************************************************************************
 api_net_sam_logoff:
 *************************************************************************/

static bool api_net_sam_logoff(pipes_struct *p)
{
	return proxy_netr_call(p, NDR_NETR_LOGONSAMLOGOFF);
}

/*************************************************************************
 api_net_sam_logon:
 *************************************************************************/

static bool api_net_sam_logon(pipes_struct *p)
{
	return proxy_netr_call(p, NDR_NETR_LOGONSAMLOGON);
}

/*************************************************************************
 api_net_trust_dom_list:
 *************************************************************************/

static bool api_net_trust_dom_list(pipes_struct *p)
{
	return proxy_netr_call(p, NDR_NETR_NETRENUMERATETRUSTEDDOMAINS);
}

/*************************************************************************
 api_net_logon_ctrl2:
 *************************************************************************/

static bool api_net_logon_ctrl2(pipes_struct *p)
{
	return proxy_netr_call(p, NDR_NETR_LOGONCONTROL2);
}

/*************************************************************************
 api_net_logon_ctrl:
 *************************************************************************/

static bool api_net_logon_ctrl(pipes_struct *p)
{
	return proxy_netr_call(p, NDR_NETR_LOGONCONTROL);
}

/*************************************************************************
 api_net_sam_logon_ex:
 *************************************************************************/

static bool api_net_sam_logon_ex(pipes_struct *p)
{
	return proxy_netr_call(p, NDR_NETR_LOGONSAMLOGONEX);
}

/*******************************************************************
 array of \PIPE\NETLOGON operations
 ********************************************************************/
static struct api_struct api_net_cmds [] =
    {
      { "NET_REQCHAL"       , NET_REQCHAL       , api_net_req_chal       }, 
      { "NET_AUTH"          , NET_AUTH          , api_net_auth           }, 
      { "NET_AUTH2"         , NET_AUTH2         , api_net_auth_2         }, 
      { "NET_SRVPWSET"      , NET_SRVPWSET      , api_net_srv_pwset      }, 
      { "NET_SAMLOGON"      , NET_SAMLOGON      , api_net_sam_logon      }, 
      { "NET_SAMLOGOFF"     , NET_SAMLOGOFF     , api_net_sam_logoff     }, 
      { "NET_LOGON_CTRL2"   , NET_LOGON_CTRL2   , api_net_logon_ctrl2    }, 
      { "NET_TRUST_DOM_LIST", NET_TRUST_DOM_LIST, api_net_trust_dom_list },
      { "NET_LOGON_CTRL"    , NET_LOGON_CTRL    , api_net_logon_ctrl     },
      { "NET_SAMLOGON_EX"   , NET_SAMLOGON_EX   , api_net_sam_logon_ex   },
    };

void netlog_get_pipe_fns( struct api_struct **fns, int *n_fns )
{
	*fns = api_net_cmds;
	*n_fns = sizeof(api_net_cmds) / sizeof(struct api_struct);
}

NTSTATUS rpc_net_init(void)
{
  return rpc_pipe_register_commands(SMB_RPC_INTERFACE_VERSION, "NETLOGON", "lsass", api_net_cmds,
				    sizeof(api_net_cmds) / sizeof(struct api_struct));
}