Tests: add fd-tracker tests for the unlink operation
[lttng-tools.git] / src / common / fd-tracker / fd-tracker.c
CommitLineData
df038819
JG
1/*
2 * Copyright (C) 2018 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18#include <urcu.h>
19#include <urcu/list.h>
20#include <urcu/rculfhash.h>
21
22#include <sys/stat.h>
23#include <sys/types.h>
24#include <fcntl.h>
25#include <stdbool.h>
26#include <pthread.h>
27#include <inttypes.h>
28
29#include "common/macros.h"
30#include "common/error.h"
31#include "common/defaults.h"
32#include "common/hashtable/utils.h"
33#include "common/hashtable/hashtable.h"
34
35#include "fd-tracker.h"
874a3441 36#include "inode.h"
df038819
JG
37
38/* Tracker lock must be taken by the user. */
39#define TRACKED_COUNT(tracker) \
40 (tracker->count.suspendable.active + \
41 tracker->count.suspendable.suspended + \
42 tracker->count.unsuspendable)
43
44/* Tracker lock must be taken by the user. */
45#define ACTIVE_COUNT(tracker) \
46 (tracker->count.suspendable.active + \
47 tracker->count.unsuspendable)
48
49/* Tracker lock must be taken by the user. */
50#define SUSPENDED_COUNT(tracker) \
51 (tracker->count.suspendable.suspended)
52
53/* Tracker lock must be taken by the user. */
54#define SUSPENDABLE_COUNT(tracker) \
55 (tracker->count.suspendable.active + \
56 tracker->count.suspendable.suspended)
57
58/* Tracker lock must be taken by the user. */
59#define UNSUSPENDABLE_COUNT(tracker) \
60 (tracker->count.unsuspendable)
61
62struct fd_tracker {
63 pthread_mutex_t lock;
64 struct {
65 struct {
66 unsigned int active;
67 unsigned int suspended;
68 } suspendable;
69 unsigned int unsuspendable;
70 } count;
71 unsigned int capacity;
72 struct {
73 uint64_t uses;
74 uint64_t misses;
75 /* Failures to suspend or restore fs handles. */
76 uint64_t errors;
77 } stats;
78 /*
79 * The head of the active_handles list is always the least recently
80 * used active handle. When an handle is used, it is removed from the
81 * list and added to the end. When a file has to be suspended, the
82 * first element in the list is "popped", suspended, and added to the
83 * list of suspended handles.
84 */
85 struct cds_list_head active_handles;
86 struct cds_list_head suspended_handles;
87 struct cds_lfht *unsuspendable_fds;
874a3441 88 struct lttng_inode_registry *inode_registry;
df038819
JG
89};
90
91struct open_properties {
df038819
JG
92 int flags;
93 struct {
94 bool is_set;
95 mode_t value;
96 } mode;
97};
98
99/*
100 * A fs_handle is not ref-counted. Therefore, it is assumed that a
101 * handle is never in-use while it is being reclaimed. It can be
102 * shared by multiple threads, but external synchronization is required
103 * to ensure it is not still being used when it is reclaimed (close method).
104 * In this respect, it is not different from a regular file descriptor.
105 *
106 * The fs_handle lock always nests _within_ the tracker's lock.
107 */
108struct fs_handle {
109 pthread_mutex_t lock;
110 /*
111 * Weak reference to the tracker. All fs_handles are assumed to have
112 * been closed at the moment of the destruction of the fd_tracker.
113 */
114 struct fd_tracker *tracker;
115 struct open_properties properties;
874a3441 116 struct lttng_inode *inode;
df038819
JG
117 int fd;
118 /* inode number of the file at the time of the handle's creation. */
119 uint64_t ino;
120 bool in_use;
121 /* Offset to which the file should be restored. */
122 off_t offset;
123 struct cds_list_head handles_list_node;
124};
125
126struct unsuspendable_fd {
127 /*
128 * Accesses are only performed through the tracker, which is protected
129 * by its own lock.
130 */
131 int fd;
132 char *name;
133 struct cds_lfht_node tracker_node;
134 struct rcu_head rcu_head;
135};
136
137static struct {
138 pthread_mutex_t lock;
139 bool initialized;
140 unsigned long value;
141} seed = {
142 .lock = PTHREAD_MUTEX_INITIALIZER,
143};
144
145static int match_fd(struct cds_lfht_node *node, const void *key);
146static void unsuspendable_fd_destroy(struct unsuspendable_fd *entry);
147static struct unsuspendable_fd *unsuspendable_fd_create(const char *name,
148 int fd);
874a3441
JG
149static int open_from_properties(const char *path,
150 struct open_properties *properties);
df038819
JG
151
152static void fs_handle_log(struct fs_handle *handle);
153static int fs_handle_suspend(struct fs_handle *handle);
154static int fs_handle_restore(struct fs_handle *handle);
155
156static void fd_tracker_track(struct fd_tracker *tracker,
157 struct fs_handle *handle);
158static void fd_tracker_untrack(struct fd_tracker *tracker,
159 struct fs_handle *handle);
160static int fd_tracker_suspend_handles(struct fd_tracker *tracker,
161 unsigned int count);
162static int fd_tracker_restore_handle(struct fd_tracker *tracker,
163 struct fs_handle *handle);
164
165/* Match function of the tracker's unsuspendable_fds hash table. */
166static
167int match_fd(struct cds_lfht_node *node, const void *key)
168{
169 struct unsuspendable_fd *entry =
170 caa_container_of(node, struct unsuspendable_fd, tracker_node);
171
172 return hash_match_key_ulong((void *) (unsigned long) entry->fd,
173 (void *) key);
174}
175
176static
177void delete_unsuspendable_fd(struct rcu_head *head)
178{
179 struct unsuspendable_fd *fd = caa_container_of(head,
180 struct unsuspendable_fd, rcu_head);
181
182 free(fd->name);
183 free(fd);
184}
185
186static
187void unsuspendable_fd_destroy(struct unsuspendable_fd *entry)
188{
189 if (!entry) {
190 return;
191 }
192 call_rcu(&entry->rcu_head, delete_unsuspendable_fd);
193}
194
195static
196struct unsuspendable_fd *unsuspendable_fd_create(const char *name, int fd)
197{
198 struct unsuspendable_fd *entry =
199 zmalloc(sizeof(*entry));
200
201 if (!entry) {
202 goto error;
203 }
204 if (name) {
205 entry->name = strdup(name);
206 if (!entry->name) {
207 goto error;
208 }
209 }
210 cds_lfht_node_init(&entry->tracker_node);
211 entry->fd = fd;
212 return entry;
213error:
214 unsuspendable_fd_destroy(entry);
215 return NULL;
216}
217
218static
219void fs_handle_log(struct fs_handle *handle)
220{
874a3441
JG
221 const char *path;
222
df038819 223 pthread_mutex_lock(&handle->lock);
874a3441
JG
224 path = lttng_inode_get_path(handle->inode);
225
df038819
JG
226 if (handle->fd >= 0) {
227 DBG_NO_LOC(" %s [active, fd %d%s]",
874a3441 228 path,
df038819
JG
229 handle->fd,
230 handle->in_use ? ", in use" : "");
231 } else {
874a3441 232 DBG_NO_LOC(" %s [suspended]", path);
df038819
JG
233 }
234 pthread_mutex_unlock(&handle->lock);
235}
236
874a3441 237/* Tracker lock must be held by the caller. */
df038819
JG
238static
239int fs_handle_suspend(struct fs_handle *handle)
240{
241 int ret = 0;
242 struct stat fs_stat;
874a3441 243 const char *path;
df038819
JG
244
245 pthread_mutex_lock(&handle->lock);
874a3441 246 path = lttng_inode_get_path(handle->inode);
df038819
JG
247 assert(handle->fd >= 0);
248 if (handle->in_use) {
249 /* This handle can't be suspended as it is currently in use. */
250 ret = -EAGAIN;
251 goto end;
252 }
253
874a3441 254 ret = stat(path, &fs_stat);
df038819
JG
255 if (ret) {
256 PERROR("Filesystem handle to %s cannot be suspended as stat() failed",
874a3441 257 path);
df038819
JG
258 ret = -errno;
259 goto end;
260 }
261
262 if (fs_stat.st_ino != handle->ino) {
263 /* Don't suspend as the handle would not be restorable. */
264 WARN("Filesystem handle to %s cannot be suspended as its inode changed",
874a3441 265 path);
df038819
JG
266 ret = -ENOENT;
267 goto end;
268 }
269
270 handle->offset = lseek(handle->fd, 0, SEEK_CUR);
271 if (handle->offset == -1) {
272 WARN("Filesystem handle to %s cannot be suspended as lseek() failed to sample its current position",
874a3441 273 path);
df038819
JG
274 ret = -errno;
275 goto end;
276 }
277
278 ret = close(handle->fd);
279 if (ret) {
280 PERROR("Filesystem handle to %s cannot be suspended as close() failed",
874a3441 281 path);
df038819
JG
282 ret = -errno;
283 goto end;
284 }
285 DBG("Suspended filesystem handle to %s (fd %i) at position %" PRId64,
874a3441 286 path, handle->fd, handle->offset);
df038819
JG
287 handle->fd = -1;
288end:
289 if (ret) {
290 handle->tracker->stats.errors++;
291 }
292 pthread_mutex_unlock(&handle->lock);
293 return ret;
294}
295
296/* Caller must hold the tracker and handle's locks. */
297static
298int fs_handle_restore(struct fs_handle *handle)
299{
300 int ret, fd = -1;
874a3441 301 const char *path = lttng_inode_get_path(handle->inode);
df038819
JG
302
303 assert(handle->fd == -1);
874a3441
JG
304 assert(path);
305 ret = open_from_properties(path,
306 &handle->properties);
df038819
JG
307 if (ret < 0) {
308 PERROR("Failed to restore filesystem handle to %s, open() failed",
874a3441 309 path);
df038819
JG
310 ret = -errno;
311 goto end;
312 }
313 fd = ret;
314
315 ret = lseek(fd, handle->offset, SEEK_SET);
316 if (ret < 0) {
317 PERROR("Failed to restore filesystem handle to %s, lseek() failed",
874a3441 318 path);
df038819
JG
319 ret = -errno;
320 goto end;
321 }
322 DBG("Restored filesystem handle to %s (fd %i) at position %" PRId64,
874a3441 323 path, fd, handle->offset);
df038819
JG
324 ret = 0;
325 handle->fd = fd;
326 fd = -1;
327end:
328 if (fd >= 0) {
329 (void) close(fd);
330 }
331 return ret;
332}
333
334static
874a3441 335int open_from_properties(const char *path, struct open_properties *properties)
df038819
JG
336{
337 int ret;
338
339 /*
340 * open() ignores the 'flags' parameter unless the O_CREAT or O_TMPFILE
341 * flags are set. O_TMPFILE would not make sense in the context of a
342 * suspendable fs_handle as it would not be restorable (see OPEN(2)),
343 * thus it is ignored here.
344 */
345 if ((properties->flags & O_CREAT) && properties->mode.is_set) {
874a3441 346 ret = open(path, properties->flags,
df038819
JG
347 properties->mode.value);
348 } else {
874a3441 349 ret = open(path, properties->flags);
df038819
JG
350 }
351 /*
352 * Some flags should not be used beyond the initial open() of a
353 * restorable file system handle. O_CREAT and O_TRUNC must
354 * be cleared since it would be unexpected to re-use them
355 * when the handle is retored:
356 * - O_CREAT should not be needed as the file has been created
357 * on the initial call to open(),
358 * - O_TRUNC would destroy the file's contents by truncating it
359 * to length 0.
360 */
361 properties->flags &= ~(O_CREAT | O_TRUNC);
362 if (ret < 0) {
363 ret = -errno;
364 goto end;
365 }
366end:
367 return ret;
368}
369
370struct fd_tracker *fd_tracker_create(unsigned int capacity)
371{
372 struct fd_tracker *tracker = zmalloc(sizeof(struct fd_tracker));
373
374 if (!tracker) {
375 goto end;
376 }
377
378 pthread_mutex_lock(&seed.lock);
379 if (!seed.initialized) {
380 seed.value = (unsigned long) time(NULL);
381 seed.initialized = true;
382 }
383 pthread_mutex_unlock(&seed.lock);
384
385 CDS_INIT_LIST_HEAD(&tracker->active_handles);
386 CDS_INIT_LIST_HEAD(&tracker->suspended_handles);
387 tracker->capacity = capacity;
388 tracker->unsuspendable_fds = cds_lfht_new(DEFAULT_HT_SIZE, 1, 0,
389 CDS_LFHT_AUTO_RESIZE | CDS_LFHT_ACCOUNTING, NULL);
874a3441
JG
390 if (!tracker->unsuspendable_fds) {
391 ERR("Failed to create fd-tracker's unsuspendable_fds hash table");
392 goto error;
393 }
394 tracker->inode_registry = lttng_inode_registry_create();
395 if (!tracker->inode_registry) {
396 ERR("Failed to create fd-tracker's inode registry");
397 goto error;
398 }
df038819
JG
399 DBG("File descriptor tracker created with a limit of %u simultaneously-opened FDs",
400 capacity);
401end:
402 return tracker;
874a3441
JG
403error:
404 fd_tracker_destroy(tracker);
405 return NULL;
df038819
JG
406}
407
408void fd_tracker_log(struct fd_tracker *tracker)
409{
410 struct fs_handle *handle;
411 struct unsuspendable_fd *unsuspendable_fd;
412 struct cds_lfht_iter iter;
413
414 pthread_mutex_lock(&tracker->lock);
415 DBG_NO_LOC("File descriptor tracker");
416 DBG_NO_LOC(" Stats:");
417 DBG_NO_LOC(" uses: %" PRIu64, tracker->stats.uses);
418 DBG_NO_LOC(" misses: %" PRIu64, tracker->stats.misses);
419 DBG_NO_LOC(" errors: %" PRIu64, tracker->stats.errors);
420 DBG_NO_LOC(" Tracked: %u", TRACKED_COUNT(tracker));
421 DBG_NO_LOC(" active: %u", ACTIVE_COUNT(tracker));
422 DBG_NO_LOC(" suspendable: %u", SUSPENDABLE_COUNT(tracker));
423 DBG_NO_LOC(" unsuspendable: %u", UNSUSPENDABLE_COUNT(tracker));
424 DBG_NO_LOC(" suspended: %u", SUSPENDED_COUNT(tracker));
425 DBG_NO_LOC(" capacity: %u", tracker->capacity);
426
427 DBG_NO_LOC(" Tracked suspendable file descriptors");
428 cds_list_for_each_entry(handle, &tracker->active_handles,
429 handles_list_node) {
430 fs_handle_log(handle);
431 }
432 cds_list_for_each_entry(handle, &tracker->suspended_handles,
433 handles_list_node) {
434 fs_handle_log(handle);
435 }
436 if (!SUSPENDABLE_COUNT(tracker)) {
437 DBG_NO_LOC(" None");
438 }
439
440 DBG_NO_LOC(" Tracked unsuspendable file descriptors");
441 rcu_read_lock();
442 cds_lfht_for_each_entry(tracker->unsuspendable_fds, &iter,
443 unsuspendable_fd, tracker_node) {
444 DBG_NO_LOC(" %s [active, fd %d]", unsuspendable_fd->name ? : "Unnamed",
445 unsuspendable_fd->fd);
446 }
447 rcu_read_unlock();
448 if (!UNSUSPENDABLE_COUNT(tracker)) {
449 DBG_NO_LOC(" None");
450 }
451
452 pthread_mutex_unlock(&tracker->lock);
453}
454
455int fd_tracker_destroy(struct fd_tracker *tracker)
456{
457 int ret = 0;
458
459 /*
460 * Refuse to destroy the tracker as fs_handles may still old
461 * weak references to the tracker.
462 */
463 pthread_mutex_lock(&tracker->lock);
464 if (TRACKED_COUNT(tracker)) {
465 ERR("A file descriptor leak has been detected: %u tracked file descriptors are still being tracked",
466 TRACKED_COUNT(tracker));
467 pthread_mutex_unlock(&tracker->lock);
468 fd_tracker_log(tracker);
469 ret = -1;
470 goto end;
471 }
472 pthread_mutex_unlock(&tracker->lock);
473
874a3441
JG
474 if (tracker->unsuspendable_fds) {
475 ret = cds_lfht_destroy(tracker->unsuspendable_fds, NULL);
476 assert(!ret);
477 }
df038819
JG
478 pthread_mutex_destroy(&tracker->lock);
479 free(tracker);
480end:
481 return ret;
482}
483
484struct fs_handle *fd_tracker_open_fs_handle(struct fd_tracker *tracker,
485 const char *path, int flags, mode_t *mode)
486{
487 int ret;
488 struct fs_handle *handle = NULL;
489 struct stat fd_stat;
490 struct open_properties properties = {
df038819
JG
491 .flags = flags,
492 .mode.is_set = !!mode,
493 .mode.value = mode ? *mode : 0,
494 };
495
df038819
JG
496 pthread_mutex_lock(&tracker->lock);
497 if (ACTIVE_COUNT(tracker) == tracker->capacity) {
498 if (tracker->count.suspendable.active > 0) {
499 ret = fd_tracker_suspend_handles(tracker, 1);
500 if (ret) {
501 goto error_destroy;
502 }
503 } else {
504 /*
505 * There are not enough active suspendable file
506 * descriptors to open a new fd and still accomodate the
507 * tracker's capacity.
508 */
509 WARN("Cannot open file system handle, too many unsuspendable file descriptors are opened (%u)",
510 tracker->count.unsuspendable);
511 ret = -EMFILE;
512 goto error_destroy;
513 }
514 }
515
516 handle = zmalloc(sizeof(*handle));
517 if (!handle) {
518 goto end;
519 }
520
521 ret = pthread_mutex_init(&handle->lock, NULL);
522 if (ret) {
523 PERROR("Failed to initialize handle mutex while creating fs handle");
524 free(handle);
525 goto end;
526 }
527
874a3441 528 handle->fd = open_from_properties(path, &properties);
df038819
JG
529 if (handle->fd < 0) {
530 PERROR("Failed to open fs handle to %s, open() returned", path);
531 ret = -errno;
532 goto error_destroy;
533 }
534
535 handle->properties = properties;
874a3441
JG
536
537 handle->inode = lttng_inode_registry_get_inode(tracker->inode_registry,
538 handle->fd, path);
539 if (!handle->inode) {
540 ERR("Failed to get lttng_inode corresponding to file %s",
541 path);
542 goto error_destroy;
543 }
df038819
JG
544
545 if (fstat(handle->fd, &fd_stat)) {
546 PERROR("Failed to retrieve file descriptor inode while creating fs handle, fstat() returned");
547 ret = -errno;
548 goto error_destroy;
549 }
550 handle->ino = fd_stat.st_ino;
551
552 fd_tracker_track(tracker, handle);
553 handle->tracker = tracker;
554 pthread_mutex_unlock(&tracker->lock);
555end:
df038819
JG
556 return handle;
557error_destroy:
558 pthread_mutex_unlock(&tracker->lock);
559 (void) fs_handle_close(handle);
560 handle = NULL;
561 goto end;
562}
563
564/* Caller must hold the tracker's lock. */
565static
566int fd_tracker_suspend_handles(struct fd_tracker *tracker,
567 unsigned int count)
568{
569 unsigned int left_to_close = count;
570 struct fs_handle *handle, *tmp;
571
572 cds_list_for_each_entry_safe(handle, tmp, &tracker->active_handles,
573 handles_list_node) {
574 int ret;
575
576 fd_tracker_untrack(tracker, handle);
577 ret = fs_handle_suspend(handle);
578 fd_tracker_track(tracker, handle);
579 if (!ret) {
580 left_to_close--;
581 }
582
583 if (!left_to_close) {
584 break;
585 }
586 }
587 return left_to_close ? -EMFILE : 0;
588}
589
590int fd_tracker_open_unsuspendable_fd(struct fd_tracker *tracker,
591 int *out_fds, const char **names, unsigned int fd_count,
592 fd_open_cb open, void *user_data)
593{
594 int ret, user_ret, i, fds_to_suspend;
595 unsigned int active_fds;
596 struct unsuspendable_fd *entries[fd_count];
597
598 memset(entries, 0, sizeof(entries));
599
600 pthread_mutex_lock(&tracker->lock);
601
602 active_fds = ACTIVE_COUNT(tracker);
603 fds_to_suspend = (int) active_fds + (int) fd_count - (int) tracker->capacity;
604 if (fds_to_suspend > 0) {
605 if (fds_to_suspend <= tracker->count.suspendable.active) {
606 ret = fd_tracker_suspend_handles(tracker, fds_to_suspend);
607 if (ret) {
608 goto end;
609 }
610 } else {
611 /*
612 * There are not enough active suspendable file
613 * descriptors to open a new fd and still accomodate the
614 * tracker's capacity.
615 */
616 WARN("Cannot open unsuspendable fd, too many unsuspendable file descriptors are opened (%u)",
617 tracker->count.unsuspendable);
618 ret = -EMFILE;
619 goto end;
620 }
621 }
622
623 user_ret = open(user_data, out_fds);
624 if (user_ret) {
625 ret = user_ret;
626 goto end;
627 }
628
629 /*
630 * Add the fds returned by the user's callback to the hashtable
631 * of unsuspendable fds.
632 */
633 for (i = 0; i < fd_count; i++) {
634 struct unsuspendable_fd *entry =
635 unsuspendable_fd_create(names ? names[i] : NULL,
636 out_fds[i]);
637
638 if (!entry) {
639 ret = -1;
640 goto end_free_entries;
641 }
642 entries[i] = entry;
643 }
644
645 rcu_read_lock();
646 for (i = 0; i < fd_count; i++) {
647 struct cds_lfht_node *node;
648 struct unsuspendable_fd *entry = entries[i];
649
650 node = cds_lfht_add_unique(
651 tracker->unsuspendable_fds,
652 hash_key_ulong((void *) (unsigned long) out_fds[i],
653 seed.value),
654 match_fd,
655 (void *) (unsigned long) out_fds[i],
656 &entry->tracker_node);
657
658 if (node != &entry->tracker_node) {
659 ret = -EEXIST;
660 rcu_read_unlock();
661 goto end_free_entries;
662 }
663 entries[i] = NULL;
664 }
665 tracker->count.unsuspendable += fd_count;
666 rcu_read_unlock();
667 ret = user_ret;
668end:
669 pthread_mutex_unlock(&tracker->lock);
670 return ret;
671end_free_entries:
672 for (i = 0; i < fd_count; i++) {
673 unsuspendable_fd_destroy(entries[i]);
674 }
675 goto end;
676}
677
678int fd_tracker_close_unsuspendable_fd(struct fd_tracker *tracker,
679 int *fds_in, unsigned int fd_count, fd_close_cb close,
680 void *user_data)
681{
682 int i, ret, user_ret;
683 int fds[fd_count];
684
685 /*
686 * Maintain a local copy of fds_in as the user's callback may modify its
687 * contents (e.g. setting the fd(s) to -1 after close).
688 */
689 memcpy(fds, fds_in, sizeof(*fds) * fd_count);
690
691 pthread_mutex_lock(&tracker->lock);
692 rcu_read_lock();
693
694 /* Let the user close the file descriptors. */
695 user_ret = close(user_data, fds_in);
696 if (user_ret) {
697 ret = user_ret;
698 goto end;
699 }
700
701 /* Untrack the fds that were just closed by the user's callback. */
702 for (i = 0; i < fd_count; i++) {
703 struct cds_lfht_node *node;
704 struct cds_lfht_iter iter;
705 struct unsuspendable_fd *entry;
706
707 cds_lfht_lookup(tracker->unsuspendable_fds,
708 hash_key_ulong((void *) (unsigned long) fds[i],
709 seed.value),
710 match_fd,
711 (void *) (unsigned long) fds[i],
712 &iter);
713 node = cds_lfht_iter_get_node(&iter);
714 if (!node) {
715 /* Unknown file descriptor. */
716 WARN("Untracked file descriptor %d passed to fd_tracker_close_unsuspendable_fd()",
717 fds[i]);
718 ret = -EINVAL;
719 goto end;
720 }
721 entry = caa_container_of(node,
722 struct unsuspendable_fd,
723 tracker_node);
724
725 cds_lfht_del(tracker->unsuspendable_fds, node);
726 unsuspendable_fd_destroy(entry);
727 fds[i] = -1;
728 }
729
730 tracker->count.unsuspendable -= fd_count;
731 ret = 0;
732end:
733 rcu_read_unlock();
734 pthread_mutex_unlock(&tracker->lock);
735 return ret;
736}
737
738/* Caller must have taken the tracker's and handle's locks. */
739static
740void fd_tracker_track(struct fd_tracker *tracker, struct fs_handle *handle)
741{
742 if (handle->fd >= 0) {
743 tracker->count.suspendable.active++;
744 cds_list_add_tail(&handle->handles_list_node,
745 &tracker->active_handles);
746 } else {
747 tracker->count.suspendable.suspended++;
748 cds_list_add_tail(&handle->handles_list_node,
749 &tracker->suspended_handles);
750 }
751}
752
753/* Caller must have taken the tracker's and handle's locks. */
754static
755void fd_tracker_untrack(struct fd_tracker *tracker, struct fs_handle *handle)
756{
757 if (handle->fd >= 0) {
758 tracker->count.suspendable.active--;
759 } else {
760 tracker->count.suspendable.suspended--;
761 }
762 cds_list_del(&handle->handles_list_node);
763}
764
765/* Caller must have taken the tracker's and handle's locks. */
766static
767int fd_tracker_restore_handle(struct fd_tracker *tracker,
768 struct fs_handle *handle)
769{
770 int ret;
771
772 fd_tracker_untrack(tracker, handle);
773 if (ACTIVE_COUNT(tracker) >= tracker->capacity) {
774 ret = fd_tracker_suspend_handles(tracker, 1);
775 if (ret) {
776 goto end;
777 }
778 }
779 ret = fs_handle_restore(handle);
780end:
781 fd_tracker_track(tracker, handle);
782 return ret ? ret : handle->fd;
783}
784
785int fs_handle_get_fd(struct fs_handle *handle)
786{
787 int ret;
788
789 /*
790 * TODO This should be optimized as it is a fairly hot path.
791 * The fd-tracker's lock should only be taken when a fs_handle is
792 * restored (slow path). On the fast path (fs_handle is active),
793 * the only effect on the fd_tracker is marking the handle as the
794 * most recently used. Currently, it is done by a call to the
795 * track/untrack helpers, but it should be done atomically.
796 *
797 * Note that the lock's nesting order must still be respected here.
798 * The handle's lock nests inside the tracker's lock.
799 */
800 pthread_mutex_lock(&handle->tracker->lock);
801 pthread_mutex_lock(&handle->lock);
802 assert(!handle->in_use);
803
804 handle->tracker->stats.uses++;
805 if (handle->fd >= 0) {
806 ret = handle->fd;
807 /* Mark as most recently used. */
808 fd_tracker_untrack(handle->tracker, handle);
809 fd_tracker_track(handle->tracker, handle);
810 } else {
811 handle->tracker->stats.misses++;
812 ret = fd_tracker_restore_handle(handle->tracker, handle);
813 if (ret < 0) {
814 handle->tracker->stats.errors++;
815 goto end;
816 }
817 }
818 handle->in_use = true;
819end:
820 pthread_mutex_unlock(&handle->lock);
821 pthread_mutex_unlock(&handle->tracker->lock);
822 return ret;
823}
824
825void fs_handle_put_fd(struct fs_handle *handle)
826{
827 pthread_mutex_lock(&handle->lock);
828 handle->in_use = false;
829 pthread_mutex_unlock(&handle->lock);
830}
831
9d16fc7f
JG
832int fs_handle_unlink(struct fs_handle *handle)
833{
834 int ret;
835
836 pthread_mutex_lock(&handle->tracker->lock);
837 pthread_mutex_lock(&handle->lock);
838 ret = lttng_inode_defer_unlink(handle->inode);
839 pthread_mutex_unlock(&handle->lock);
840 pthread_mutex_unlock(&handle->tracker->lock);
841 return ret;
842}
843
df038819
JG
844int fs_handle_close(struct fs_handle *handle)
845{
846 int ret = 0;
874a3441 847 const char *path;
df038819
JG
848
849 if (!handle) {
850 ret = -EINVAL;
851 goto end;
852 }
853
854 pthread_mutex_lock(&handle->tracker->lock);
855 pthread_mutex_lock(&handle->lock);
874a3441 856 path = lttng_inode_get_path(handle->inode);
df038819
JG
857 fd_tracker_untrack(handle->tracker, handle);
858 if (handle->fd >= 0) {
859 /*
860 * The return value of close() is not propagated as there
861 * isn't much the user can do about it.
862 */
863 if (close(handle->fd)) {
864 PERROR("Failed to close the file descritptor (%d) of fs handle to %s, close() returned",
874a3441 865 handle->fd, path);
df038819
JG
866 }
867 handle->fd = -1;
868 }
874a3441 869 lttng_inode_put(handle->inode);
df038819
JG
870 pthread_mutex_unlock(&handle->lock);
871 pthread_mutex_destroy(&handle->lock);
872 pthread_mutex_unlock(&handle->tracker->lock);
df038819
JG
873 free(handle);
874end:
875 return ret;
876}
This page took 0.055374 seconds and 4 git commands to generate.