2 Unix SMB/CIFS implementation.
4 Winbind background daemon
6 Copyright (C) Andrew Tridgell 2002
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 2 of the License, or
11 (at your option) any later version.
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.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 the idea of the optional dual daemon mode is ot prevent slow domain
25 responses from clagging up the rest of the system. When in dual
26 daemon mode winbindd always responds to requests from cache if the
27 request is in cache, and if the cached answer is stale then it asks
28 the "dual daemon" to update the cache for that request
35 #define DBGC_CLASS DBGC_WINBIND
37 extern BOOL opt_dual_daemon
;
38 BOOL background_process
= False
;
39 int dual_daemon_pipe
= -1;
42 /* a list of requests ready to be sent to the dual daemon */
44 struct dual_list
*next
;
50 static struct dual_list
*dual_list
;
51 static struct dual_list
*dual_list_end
;
54 setup a select() including the dual daemon pipe
56 int dual_select_setup(fd_set
*fds
, int maxfd
)
58 if (dual_daemon_pipe
== -1 ||
63 FD_SET(dual_daemon_pipe
, fds
);
64 if (dual_daemon_pipe
> maxfd
) {
65 maxfd
= dual_daemon_pipe
;
72 a hook called from the main winbindd select() loop to handle writes
73 to the dual daemon pipe
75 void dual_select(fd_set
*fds
)
79 if (dual_daemon_pipe
== -1 ||
81 !FD_ISSET(dual_daemon_pipe
, fds
)) {
85 n
= sys_write(dual_daemon_pipe
,
86 &dual_list
->data
[dual_list
->offset
],
87 dual_list
->length
- dual_list
->offset
);
90 /* the pipe is dead! fall back to normal operation */
91 dual_daemon_pipe
= -1;
95 dual_list
->offset
+= n
;
97 if (dual_list
->offset
== dual_list
->length
) {
98 struct dual_list
*next
;
99 next
= dual_list
->next
;
100 free(dual_list
->data
);
104 dual_list_end
= NULL
;
110 send a request to the background daemon
111 this is called for stale cached entries
113 void dual_send_request(struct winbindd_cli_state
*state
)
115 struct dual_list
*list
;
117 if (!background_process
) return;
119 list
= malloc(sizeof(*list
));
123 list
->data
= memdup(&state
->request
, sizeof(state
->request
));
124 list
->length
= sizeof(state
->request
);
127 if (!dual_list_end
) {
129 dual_list_end
= list
;
131 dual_list_end
->next
= list
;
132 dual_list_end
= list
;
135 background_process
= False
;
142 void do_dual_daemon(void)
145 struct winbindd_cli_state state
;
147 if (pipe(fdpair
) != 0) {
152 state
.pid
= getpid();
154 dual_daemon_pipe
= fdpair
[1];
155 state
.sock
= fdpair
[0];
163 /* tdb needs special fork handling */
164 if (tdb_reopen_all() == -1) {
165 DEBUG(0,("tdb_reopen_all failed.\n"));
169 dual_daemon_pipe
= -1;
170 opt_dual_daemon
= False
;
173 /* free up any talloc memory */
175 main_loop_talloc_free();
177 /* fetch a request from the main daemon */
178 winbind_client_read(&state
);
180 if (state
.finished
) {
181 /* we lost contact with our parent */
185 /* process full rquests */
186 if (state
.read_buf_len
== sizeof(state
.request
)) {
187 DEBUG(4,("dual daemon request %d\n", (int)state
.request
.cmd
));
189 /* special handling for the stateful requests */
190 switch (state
.request
.cmd
) {
191 case WINBINDD_GETPWENT
:
192 winbindd_setpwent(&state
);
195 case WINBINDD_GETGRENT
:
196 case WINBINDD_GETGRLST
:
197 winbindd_setgrent(&state
);
203 winbind_process_packet(&state
);
204 SAFE_FREE(state
.response
.extra_data
);
206 free_getent_state(state
.getpwent_state
);
207 free_getent_state(state
.getgrent_state
);
208 state
.getpwent_state
= NULL
;
209 state
.getgrent_state
= NULL
;