829259d147f3b4af178b1e0d878c0077885bbd0e
[metze/samba/wb-ndr.git] / source / winbindd / winbindd_domain.c
1 /*
2    Unix SMB/CIFS implementation.
3
4    Winbind domain child functions
5
6    Copyright (C) Stefan Metzmacher 2007
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23 #include "winbindd.h"
24
25 #undef DBGC_CLASS
26 #define DBGC_CLASS DBGC_WINBIND
27
28 static const struct winbindd_child_dispatch_table domain_dispatch_table[];
29
30 void setup_domain_child(struct winbindd_domain *domain,
31                         struct winbindd_child *child)
32 {
33         setup_child(child, domain_dispatch_table,
34                     "log.wb", domain->name);
35
36         child->domain = domain;
37 }
38
39 static const struct winbindd_child_dispatch_table domain_dispatch_table[] = {
40         {
41                 .name           = "NDR_WINBIND_LOOKUP",
42                 .ndr_opnum      = NDR_WINBIND_LOOKUP,
43                 .ndr_fn         = winbindd_ndr_domain_child_lookup,
44         },{
45                 .name           = "NDR_WINBIND_TRUST",
46                 .ndr_opnum      = NDR_WINBIND_TRUST,
47                 .ndr_fn         = winbindd_ndr_domain_child_trust,
48         },{
49                 .name           = "LIST_TRUSTDOM",
50                 .struct_cmd     = WINBINDD_LIST_TRUSTDOM,
51                 .struct_fn      = winbindd_dual_list_trusted_domains,
52         },{
53                 .name           = "PAM_AUTH",
54                 .struct_cmd     = WINBINDD_PAM_AUTH,
55                 .struct_fn      = winbindd_dual_pam_auth,
56         },{
57                 .name           = "AUTH_CRAP",
58                 .struct_cmd     = WINBINDD_PAM_AUTH_CRAP,
59                 .struct_fn      = winbindd_dual_pam_auth_crap,
60         },{
61                 .name           = "PAM_LOGOFF",
62                 .struct_cmd     = WINBINDD_PAM_LOGOFF,
63                 .struct_fn      = winbindd_dual_pam_logoff,
64         },{
65                 .name           = "CHNG_PSWD_AUTH_CRAP",
66                 .struct_cmd     = WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP,
67                 .struct_fn      = winbindd_dual_pam_chng_pswd_auth_crap,
68         },{
69                 .name           = "PAM_CHAUTHTOK",
70                 .struct_cmd     = WINBINDD_PAM_CHAUTHTOK,
71                 .struct_fn      = winbindd_dual_pam_chauthtok,
72         },{
73                 .name           = "CHECK_MACHACC",
74                 .struct_cmd     = WINBINDD_CHECK_MACHACC,
75                 .struct_fn      = winbindd_dual_check_machine_acct,
76         },{
77                 .name           = "DUAL_USERINFO",
78                 .struct_cmd     = WINBINDD_DUAL_USERINFO,
79                 .struct_fn      = winbindd_dual_userinfo,
80         },{
81                 .name           = "GETUSERDOMGROUPS",
82                 .struct_cmd     = WINBINDD_GETUSERDOMGROUPS,
83                 .struct_fn      = winbindd_dual_getuserdomgroups,
84         },{
85                 .name           = "GETSIDALIASES",
86                 .struct_cmd     = WINBINDD_DUAL_GETSIDALIASES,
87                 .struct_fn      = winbindd_dual_getsidaliases,
88         },{
89                 .name           = "CCACHE_NTLM_AUTH",
90                 .struct_cmd     = WINBINDD_CCACHE_NTLMAUTH,
91                 .struct_fn      = winbindd_dual_ccache_ntlm_auth,
92         },{
93                 .name           = "PING",
94                 .struct_cmd     = WINBINDD_PING,
95                 .struct_fn      = winbindd_dual_ping,
96                 .ndr_opnum      = NDR_WINBIND_PING,
97                 .ndr_fn         = winbindd_ndr_child_ping,
98         },{
99                 .name           = "NDR_WINBIND_GET_DOMAIN_INFO",
100                 .ndr_opnum      = NDR_WINBIND_GET_DOMAIN_INFO,
101                 .ndr_fn         = winbindd_ndr_child_get_domain_info,
102         },{
103                 .name           = "NDR_WINBIND_GET_DC_INFO",
104                 .ndr_opnum      = NDR_WINBIND_GET_DC_INFO,
105                 .ndr_fn         = winbindd_ndr_domain_child_get_dc_info,
106         },{
107                 .name           = NULL,
108         }
109 };