lib: Move sys_rw* to lib/util
[garming/samba-autobuild/.git] / source3 / smbd / scavenger.c
1 /*
2    Unix SMB/CIFS implementation.
3    smbd scavenger daemon
4
5    Copyright (C) Gregor Beck                    2013
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22
23 #include "messages.h"
24 #include "serverid.h"
25 #include "smbd/globals.h"
26 #include "smbd/scavenger.h"
27 #include "locking/proto.h"
28 #include "lib/util/util_process.h"
29 #include "lib/util/sys_rw.h"
30
31 #undef DBGC_CLASS
32 #define DBGC_CLASS DBGC_SCAVENGER
33
34 struct smbd_scavenger_state {
35         struct tevent_context *ev;
36         struct messaging_context *msg;
37         struct server_id parent_id;
38         struct server_id *scavenger_id;
39         bool am_scavenger;
40 };
41
42 static struct smbd_scavenger_state *smbd_scavenger_state = NULL;
43
44 struct scavenger_message {
45         struct file_id file_id;
46         uint64_t open_persistent_id;
47         NTTIME until;
48 };
49
50 static int smbd_scavenger_main(struct smbd_scavenger_state *state)
51 {
52         struct server_id_buf tmp1, tmp2;
53
54         DEBUG(10, ("scavenger: %s started, parent: %s\n",
55                    server_id_str_buf(*state->scavenger_id, &tmp1),
56                    server_id_str_buf(state->parent_id, &tmp2)));
57
58         while (true) {
59                 TALLOC_CTX *frame = talloc_stackframe();
60                 int ret;
61
62                 ret = tevent_loop_once(state->ev);
63                 if (ret != 0) {
64                         DEBUG(2, ("tevent_loop_once failed: %s\n",
65                                   strerror(errno)));
66                         TALLOC_FREE(frame);
67                         return 1;
68                 }
69
70                 DEBUG(10, ("scavenger: %s event loop iteration\n",
71                            server_id_str_buf(*state->scavenger_id, &tmp1)));
72                 TALLOC_FREE(frame);
73         }
74
75         return 0;
76 }
77
78 static void smbd_scavenger_done(struct tevent_context *event_ctx, struct tevent_fd *fde,
79                                 uint16_t flags, void *private_data)
80 {
81         struct smbd_scavenger_state *state = talloc_get_type_abort(
82                 private_data, struct smbd_scavenger_state);
83         struct server_id_buf tmp;
84
85         DEBUG(2, ("scavenger: %s died\n",
86                   server_id_str_buf(*state->scavenger_id, &tmp)));
87
88         TALLOC_FREE(state->scavenger_id);
89 }
90
91 static void smbd_scavenger_parent_dead(struct tevent_context *event_ctx,
92                                        struct tevent_fd *fde,
93                                        uint16_t flags, void *private_data)
94 {
95         struct smbd_scavenger_state *state = talloc_get_type_abort(
96                 private_data, struct smbd_scavenger_state);
97         struct server_id_buf tmp1, tmp2;
98
99         DEBUG(2, ("scavenger: %s parent %s died\n",
100                   server_id_str_buf(*state->scavenger_id, &tmp1),
101                   server_id_str_buf(state->parent_id, &tmp2)));
102
103         exit_server("smbd_scavenger_parent_dead");
104 }
105
106 static void scavenger_sig_term_handler(struct tevent_context *ev,
107                                        struct tevent_signal *se,
108                                        int signum,
109                                        int count,
110                                        void *siginfo,
111                                        void *private_data)
112 {
113         exit_server_cleanly("termination signal");
114 }
115
116 static void scavenger_setup_sig_term_handler(struct tevent_context *ev_ctx)
117 {
118         struct tevent_signal *se;
119
120         se = tevent_add_signal(ev_ctx,
121                                ev_ctx,
122                                SIGTERM, 0,
123                                scavenger_sig_term_handler,
124                                NULL);
125         if (se == NULL) {
126                 exit_server("failed to setup SIGTERM handler");
127         }
128 }
129
130 static bool smbd_scavenger_running(struct smbd_scavenger_state *state)
131 {
132         if (state->scavenger_id == NULL) {
133                 return false;
134         }
135
136         return serverid_exists(state->scavenger_id);
137 }
138
139 static int smbd_scavenger_server_id_destructor(struct server_id *id)
140 {
141         serverid_deregister(*id);
142         return 0;
143 }
144
145 static bool scavenger_say_hello(int fd, struct server_id self)
146 {
147         const uint8_t *msg = (const uint8_t *)&self;
148         size_t remaining = sizeof(self);
149         size_t ofs = 0;
150         struct server_id_buf tmp;
151
152         while (remaining > 0) {
153                 ssize_t ret;
154
155                 ret = sys_write(fd, msg + ofs, remaining);
156                 if (ret == -1) {
157                         DEBUG(2, ("Failed to write to pipe: %s\n",
158                                   strerror(errno)));
159                         return false;
160                 }
161                 remaining -= ret;
162         }
163
164         DEBUG(4, ("scavenger_say_hello: self[%s]\n",
165                   server_id_str_buf(self, &tmp)));
166         return true;
167 }
168
169 static bool scavenger_wait_hello(int fd, struct server_id *child)
170 {
171         uint8_t *msg = (uint8_t *)child;
172         size_t remaining = sizeof(*child);
173         size_t ofs = 0;
174         struct server_id_buf tmp;
175
176         while (remaining > 0) {
177                 ssize_t ret;
178
179                 ret = sys_read(fd, msg + ofs, remaining);
180                 if (ret == -1) {
181                         DEBUG(2, ("Failed to read from pipe: %s\n",
182                                   strerror(errno)));
183                         return false;
184                 }
185                 remaining -= ret;
186         }
187
188         DEBUG(4, ("scavenger_say_hello: child[%s]\n",
189                   server_id_str_buf(*child, &tmp)));
190         return true;
191 }
192
193 static bool smbd_scavenger_start(struct smbd_scavenger_state *state)
194 {
195         struct server_id self = messaging_server_id(state->msg);
196         struct tevent_fd *fde = NULL;
197         int fds[2];
198         int ret;
199         uint64_t unique_id;
200         bool ok;
201
202         SMB_ASSERT(server_id_equal(&state->parent_id, &self));
203
204         if (smbd_scavenger_running(state)) {
205                 struct server_id_buf tmp;
206                 DEBUG(10, ("scavenger %s already running\n",
207                            server_id_str_buf(*state->scavenger_id,
208                                              &tmp)));
209                 return true;
210         }
211
212         if (state->scavenger_id != NULL) {
213                 struct server_id_buf tmp;
214                 DEBUG(10, ("scavenger zombie %s, cleaning up\n",
215                            server_id_str_buf(*state->scavenger_id,
216                                              &tmp)));
217                 TALLOC_FREE(state->scavenger_id);
218         }
219
220         state->scavenger_id = talloc_zero(state, struct server_id);
221         if (state->scavenger_id == NULL) {
222                 DEBUG(2, ("Out of memory\n"));
223                 goto fail;
224         }
225         talloc_set_destructor(state->scavenger_id,
226                               smbd_scavenger_server_id_destructor);
227
228         ret = socketpair(AF_UNIX, SOCK_STREAM, 0, fds);
229         if (ret == -1) {
230                 DEBUG(2, ("socketpair failed: %s", strerror(errno)));
231                 goto fail;
232         }
233
234         smb_set_close_on_exec(fds[0]);
235         smb_set_close_on_exec(fds[1]);
236
237         unique_id = serverid_get_random_unique_id();
238
239         ret = fork();
240         if (ret == -1) {
241                 int err = errno;
242                 close(fds[0]);
243                 close(fds[1]);
244                 DEBUG(0, ("fork failed: %s", strerror(err)));
245                 goto fail;
246         }
247
248         if (ret == 0) {
249                 /* child */
250
251                 NTSTATUS status;
252
253                 close(fds[0]);
254
255                 set_my_unique_id(unique_id);
256
257                 status = smbd_reinit_after_fork(state->msg, state->ev,
258                                                 true, "smbd-scavenger");
259                 if (!NT_STATUS_IS_OK(status)) {
260                         DEBUG(2, ("reinit_after_fork failed: %s\n",
261                                   nt_errstr(status)));
262                         exit_server("reinit_after_fork failed");
263                         return false;
264                 }
265
266                 state->am_scavenger = true;
267                 *state->scavenger_id = messaging_server_id(state->msg);
268
269                 scavenger_setup_sig_term_handler(state->ev);
270
271                 if (!serverid_register(*state->scavenger_id,
272                                        FLAG_MSG_GENERAL)) {
273                         DBG_WARNING("serverid_register failed");
274                         exit_server("serverid_register failed");
275                         return false;
276                 }
277
278                 ok = scavenger_say_hello(fds[1], *state->scavenger_id);
279                 if (!ok) {
280                         DEBUG(2, ("scavenger_say_hello failed\n"));
281                         exit_server("scavenger_say_hello failed");
282                         return false;
283                 }
284
285                 fde = tevent_add_fd(state->ev, state->scavenger_id,
286                                     fds[1], TEVENT_FD_READ,
287                                     smbd_scavenger_parent_dead, state);
288                 if (fde == NULL) {
289                         DEBUG(2, ("tevent_add_fd(smbd_scavenger_parent_dead) "
290                                   "failed\n"));
291                         exit_server("tevent_add_fd(smbd_scavenger_parent_dead) "
292                                     "failed");
293                         return false;
294                 }
295                 tevent_fd_set_auto_close(fde);
296
297                 ret = smbd_scavenger_main(state);
298
299                 DEBUG(10, ("scavenger ended: %d\n", ret));
300                 exit_server_cleanly("scavenger ended");
301                 return false;
302         }
303
304         /* parent */
305         close(fds[1]);
306
307         ok = scavenger_wait_hello(fds[0], state->scavenger_id);
308         if (!ok) {
309                 close(fds[0]);
310                 goto fail;
311         }
312
313         fde = tevent_add_fd(state->ev, state->scavenger_id,
314                             fds[0], TEVENT_FD_READ,
315                             smbd_scavenger_done, state);
316         if (fde == NULL) {
317                 close(fds[0]);
318                 goto fail;
319         }
320         tevent_fd_set_auto_close(fde);
321
322         return true;
323 fail:
324         TALLOC_FREE(state->scavenger_id);
325         return false;
326 }
327
328 static void scavenger_add_timer(struct smbd_scavenger_state *state,
329                                 struct scavenger_message *msg);
330
331 static void smbd_scavenger_msg(struct messaging_context *msg_ctx,
332                                void *private_data,
333                                uint32_t msg_type,
334                                struct server_id src,
335                                DATA_BLOB *data)
336 {
337         struct smbd_scavenger_state *state =
338                 talloc_get_type_abort(private_data,
339                                       struct smbd_scavenger_state);
340         TALLOC_CTX *frame = talloc_stackframe();
341         struct server_id self = messaging_server_id(msg_ctx);
342         struct scavenger_message *msg = NULL;
343         struct server_id_buf tmp1, tmp2;
344
345         DEBUG(10, ("smbd_scavenger_msg: %s got message from %s\n",
346                    server_id_str_buf(self, &tmp1),
347                    server_id_str_buf(src, &tmp2)));
348
349         if (server_id_equal(&state->parent_id, &self)) {
350                 NTSTATUS status;
351
352                 if (!smbd_scavenger_running(state) &&
353                     !smbd_scavenger_start(state))
354                 {
355                         DEBUG(2, ("Failed to start scavenger\n"));
356                         goto done;
357                 }
358                 DEBUG(10, ("forwarding message to scavenger\n"));
359
360                 status = messaging_send(msg_ctx,
361                                         *state->scavenger_id, msg_type, data);
362                 if (!NT_STATUS_IS_OK(status)) {
363                         DEBUG(2, ("forwarding message to scavenger failed: "
364                                   "%s\n", nt_errstr(status)));
365                         goto done;
366                 }
367                 goto done;
368         }
369
370         if (!state->am_scavenger) {
371                 DEBUG(10, ("im not the scavenger: ignore message\n"));
372                 goto done;
373         }
374
375         if (!server_id_equal(&state->parent_id, &src)) {
376                 DEBUG(10, ("scavenger: ignore spurious message\n"));
377                 goto done;
378         }
379
380         DEBUG(10, ("scavenger: got a message\n"));
381         msg = (struct scavenger_message*)data->data;
382         scavenger_add_timer(state, msg);
383 done:
384         talloc_free(frame);
385 }
386
387 bool smbd_scavenger_init(TALLOC_CTX *mem_ctx,
388                          struct messaging_context *msg,
389                          struct tevent_context *ev)
390 {
391         struct smbd_scavenger_state *state;
392         NTSTATUS status;
393
394         if (smbd_scavenger_state) {
395                 DEBUG(10, ("smbd_scavenger_init called again\n"));
396                 return true;
397         }
398
399         state = talloc_zero(mem_ctx, struct smbd_scavenger_state);
400         if (state == NULL) {
401                 DEBUG(2, ("Out of memory\n"));
402                 return false;
403         }
404
405         state->msg = msg;
406         state->ev = ev;
407         state->parent_id = messaging_server_id(msg);
408
409         status = messaging_register(msg, state, MSG_SMB_SCAVENGER,
410                                     smbd_scavenger_msg);
411         if (!NT_STATUS_IS_OK(status)) {
412                 DEBUG(2, ("failed to register message handler: %s\n",
413                           nt_errstr(status)));
414                 goto fail;
415         }
416
417         smbd_scavenger_state = state;
418         return true;
419 fail:
420         talloc_free(state);
421         return false;
422 }
423
424 void scavenger_schedule_disconnected(struct files_struct *fsp)
425 {
426         NTSTATUS status;
427         struct server_id self = messaging_server_id(fsp->conn->sconn->msg_ctx);
428         struct timeval disconnect_time, until;
429         uint64_t timeout_usec;
430         struct scavenger_message msg;
431         DATA_BLOB msg_blob;
432         struct server_id_buf tmp;
433
434         if (fsp->op == NULL) {
435                 return;
436         }
437         nttime_to_timeval(&disconnect_time, fsp->op->global->disconnect_time);
438         timeout_usec = 1000 * fsp->op->global->durable_timeout_msec;
439         until = timeval_add(&disconnect_time,
440                             timeout_usec / 1000000,
441                             timeout_usec % 1000000);
442
443         ZERO_STRUCT(msg);
444         msg.file_id = fsp->file_id;
445         msg.open_persistent_id = fsp->op->global->open_persistent_id;
446         msg.until = timeval_to_nttime(&until);
447
448         DEBUG(10, ("smbd: %s mark file %s as disconnected at %s with timeout "
449                    "at %s in %fs\n",
450                    server_id_str_buf(self, &tmp),
451                    file_id_string_tos(&fsp->file_id),
452                    timeval_string(talloc_tos(), &disconnect_time, true),
453                    timeval_string(talloc_tos(), &until, true),
454                    fsp->op->global->durable_timeout_msec/1000.0));
455
456         SMB_ASSERT(server_id_is_disconnected(&fsp->op->global->server_id));
457         SMB_ASSERT(!server_id_equal(&self, &smbd_scavenger_state->parent_id));
458         SMB_ASSERT(!smbd_scavenger_state->am_scavenger);
459
460         msg_blob = data_blob_const(&msg, sizeof(msg));
461         DEBUG(10, ("send message to scavenger\n"));
462
463         status = messaging_send(smbd_scavenger_state->msg,
464                                 smbd_scavenger_state->parent_id,
465                                 MSG_SMB_SCAVENGER,
466                                 &msg_blob);
467         if (!NT_STATUS_IS_OK(status)) {
468                 struct server_id_buf tmp1, tmp2;
469                 DEBUG(2, ("Failed to send message to parent smbd %s "
470                           "from %s: %s\n",
471                           server_id_str_buf(smbd_scavenger_state->parent_id,
472                                             &tmp1),
473                           server_id_str_buf(self, &tmp2),
474                           nt_errstr(status)));
475         }
476 }
477
478 struct scavenger_timer_context {
479         struct smbd_scavenger_state *state;
480         struct scavenger_message msg;
481 };
482
483 static void scavenger_timer(struct tevent_context *ev,
484                             struct tevent_timer *te,
485                             struct timeval t, void *data)
486 {
487         struct scavenger_timer_context *ctx =
488                 talloc_get_type_abort(data, struct scavenger_timer_context);
489         NTSTATUS status;
490         bool ok;
491
492         DEBUG(10, ("scavenger: do cleanup for file %s at %s\n",
493                   file_id_string_tos(&ctx->msg.file_id),
494                   timeval_string(talloc_tos(), &t, true)));
495
496         ok = share_mode_cleanup_disconnected(ctx->msg.file_id,
497                                              ctx->msg.open_persistent_id);
498         if (!ok) {
499                 DEBUG(2, ("Failed to cleanup share modes and byte range locks "
500                           "for file %s open %llu\n",
501                           file_id_string_tos(&ctx->msg.file_id),
502                           (unsigned long long)ctx->msg.open_persistent_id));
503         }
504
505         status = smbXsrv_open_cleanup(ctx->msg.open_persistent_id);
506         if (!NT_STATUS_IS_OK(status)) {
507                 DEBUG(2, ("Failed to cleanup open global for file %s open %llu:"
508                           " %s\n", file_id_string_tos(&ctx->msg.file_id),
509                           (unsigned long long)ctx->msg.open_persistent_id,
510                           nt_errstr(status)));
511         }
512 }
513
514 static void scavenger_add_timer(struct smbd_scavenger_state *state,
515                                 struct scavenger_message *msg)
516 {
517         struct tevent_timer *te;
518         struct scavenger_timer_context *ctx;
519         struct timeval until;
520
521         nttime_to_timeval(&until, msg->until);
522
523         DEBUG(10, ("scavenger: schedule file %s for cleanup at %s\n",
524                    file_id_string_tos(&msg->file_id),
525                    timeval_string(talloc_tos(), &until, true)));
526
527         ctx = talloc_zero(state, struct scavenger_timer_context);
528         if (ctx == NULL) {
529                 DEBUG(2, ("Failed to talloc_zero(scavenger_timer_context)\n"));
530                 return;
531         }
532
533         ctx->state = state;
534         ctx->msg = *msg;
535
536         te = tevent_add_timer(state->ev,
537                               state,
538                               until,
539                               scavenger_timer,
540                               ctx);
541         if (te == NULL) {
542                 DEBUG(2, ("Failed to add scavenger_timer event\n"));
543                 talloc_free(ctx);
544                 return;
545         }
546
547         /* delete context after handler was running */
548         talloc_steal(te, ctx);
549 }