vfs_ceph: fix strict_allocate_ftruncate()
[Samba.git] / source3 / winbindd / winbindd_getgrgid.c
blobaa99e6e25610afbf53a2e2132d3ba4a729105f84
1 /*
2 Unix SMB/CIFS implementation.
3 async implementation of WINBINDD_GETGRGID
4 Copyright (C) Volker Lendecke 2009
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
21 #include "winbindd.h"
22 #include "libcli/security/dom_sid.h"
24 struct winbindd_getgrgid_state {
25 struct tevent_context *ev;
26 struct unixid xid;
27 struct dom_sid *sid;
28 const char *domname;
29 const char *name;
30 gid_t gid;
31 struct db_context *members;
34 static void winbindd_getgrgid_gid2sid_done(struct tevent_req *subreq);
35 static void winbindd_getgrgid_done(struct tevent_req *subreq);
37 struct tevent_req *winbindd_getgrgid_send(TALLOC_CTX *mem_ctx,
38 struct tevent_context *ev,
39 struct winbindd_cli_state *cli,
40 struct winbindd_request *request)
42 struct tevent_req *req, *subreq;
43 struct winbindd_getgrgid_state *state;
45 req = tevent_req_create(mem_ctx, &state,
46 struct winbindd_getgrgid_state);
47 if (req == NULL) {
48 return NULL;
50 state->ev = ev;
52 DBG_NOTICE("[%s (%u)] getgrgid %d\n",
53 cli->client_name,
54 (unsigned int)cli->pid,
55 (int)request->data.gid);
57 state->xid = (struct unixid) {
58 .id = request->data.uid, .type = ID_TYPE_GID };
60 subreq = wb_xids2sids_send(state, ev, &state->xid, 1);
61 if (tevent_req_nomem(subreq, req)) {
62 return tevent_req_post(req, ev);
64 tevent_req_set_callback(subreq, winbindd_getgrgid_gid2sid_done,
65 req);
66 return req;
69 static void winbindd_getgrgid_gid2sid_done(struct tevent_req *subreq)
71 struct tevent_req *req = tevent_req_callback_data(
72 subreq, struct tevent_req);
73 struct winbindd_getgrgid_state *state = tevent_req_data(
74 req, struct winbindd_getgrgid_state);
75 NTSTATUS status;
77 status = wb_xids2sids_recv(subreq, state, &state->sid);
78 TALLOC_FREE(subreq);
79 if (tevent_req_nterror(req, status)) {
80 return;
83 subreq = wb_getgrsid_send(state, state->ev, state->sid,
84 lp_winbind_expand_groups());
85 if (tevent_req_nomem(subreq, req)) {
86 return;
88 tevent_req_set_callback(subreq, winbindd_getgrgid_done, req);
91 static void winbindd_getgrgid_done(struct tevent_req *subreq)
93 struct tevent_req *req = tevent_req_callback_data(
94 subreq, struct tevent_req);
95 struct winbindd_getgrgid_state *state = tevent_req_data(
96 req, struct winbindd_getgrgid_state);
97 NTSTATUS status;
99 status = wb_getgrsid_recv(subreq, state, &state->domname, &state->name,
100 &state->gid, &state->members);
101 TALLOC_FREE(subreq);
102 if (tevent_req_nterror(req, status)) {
103 return;
105 tevent_req_done(req);
108 NTSTATUS winbindd_getgrgid_recv(struct tevent_req *req,
109 struct winbindd_response *response)
111 struct winbindd_getgrgid_state *state = tevent_req_data(
112 req, struct winbindd_getgrgid_state);
113 NTSTATUS status;
114 int num_members;
115 char *buf;
117 if (tevent_req_is_nterror(req, &status)) {
118 struct dom_sid_buf sidbuf;
119 DEBUG(5, ("Could not convert sid %s: %s\n",
120 dom_sid_str_buf(state->sid, &sidbuf),
121 nt_errstr(status)));
122 return status;
125 if (!fill_grent(talloc_tos(), &response->data.gr, state->domname,
126 state->name, state->gid)) {
127 DEBUG(5, ("fill_grent failed\n"));
128 return NT_STATUS_NO_MEMORY;
131 status = winbindd_print_groupmembers(state->members, response,
132 &num_members, &buf);
133 if (!NT_STATUS_IS_OK(status)) {
134 return status;
137 response->data.gr.num_gr_mem = (uint32_t)num_members;
139 /* Group membership lives at start of extra data */
141 response->data.gr.gr_mem_ofs = 0;
142 response->extra_data.data = buf;
143 response->length += talloc_get_size(response->extra_data.data);
145 return NT_STATUS_OK;