Dircache: Don't expose struct dircache_entry and pointers into the cache, use IDs...
[kugel-rb.git] / firmware / common / dircache.c
blobbff9c2f4e7df9f0fa25b6d14fbe4079b49277391
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 by Miika Pekkarinen
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 /* TODO:
23 - Allow cache live updating while transparent rebuild is running.
26 #include "config.h"
28 #include <stdio.h>
29 #include <errno.h>
30 #include "string-extra.h"
31 #include <stdbool.h>
32 #include <stdlib.h>
33 #include "debug.h"
34 #include "system.h"
35 #include "logf.h"
36 #include "dircache.h"
37 #include "thread.h"
38 #include "kernel.h"
39 #include "usb.h"
40 #include "file.h"
41 #include "buffer.h"
42 #include "dir.h"
43 #include "storage.h"
44 #if CONFIG_RTC
45 #include "time.h"
46 #include "timefuncs.h"
47 #endif
48 #include "rbpaths.h"
51 /* Queue commands. */
52 #define DIRCACHE_BUILD 1
53 #define DIRCACHE_STOP 2
55 #if (MEMORYSIZE > 8)
56 #define MAX_OPEN_DIRS 12
57 #else
58 #define MAX_OPEN_DIRS 8
59 #endif
61 #define MAX_PENDING_BINDINGS 2
62 struct fdbind_queue {
63 char path[MAX_PATH];
64 int fd;
67 /* Exported structures. */
68 struct dircache_entry {
69 struct dirinfo info;
70 struct dircache_entry *next;
71 struct dircache_entry *up;
72 struct dircache_entry *down;
73 long startcluster;
74 char *d_name;
77 /* Cache Layout:
79 * x - array of struct dircache_entry
80 * r - reserved buffer
81 * d - name buffer for the d_name entry of the struct dircache_entry
82 * |xxxxxx|rrrrrrrrr|dddddd|
84 * subsequent x are allocated from the front, d are allocated from the back,
85 * using the reserve buffer for entries added after initial scan
87 * after a while the cache may look like:
88 * |xxxxxxxx|rrrrr|dddddddd|
90 * after a reboot, the reserve buffer is restored in it's size, so that the
91 * total allocation size grows
92 * |xxxxxxxx|rrrrrrrrr|dddddddd|
94 /* this points to the beginnging of the buffer and the first entry */
95 static struct dircache_entry *dircache_root;
96 /* these point to the start and end of the name buffer (d above) */
97 static char *d_names_start, *d_names_end;
98 /* put "." and ".." into the d_names buffer to enable easy pointer logic */
99 static char *dot, *dotdot;
100 #ifdef HAVE_MULTIVOLUME
101 static struct dircache_entry *append_position;
102 #endif
104 static DIR_CACHED opendirs[MAX_OPEN_DIRS];
105 static struct dircache_entry *fd_bindings[MAX_OPEN_FILES];
107 static bool dircache_initialized = false;
108 static bool dircache_initializing = false;
109 static bool thread_enabled = false;
110 static unsigned long allocated_size = DIRCACHE_LIMIT;
111 static unsigned long dircache_size = 0;
112 static unsigned long entry_count = 0;
113 static unsigned long reserve_used = 0;
114 static unsigned int cache_build_ticks = 0;
115 static unsigned long appflags = 0;
117 static struct event_queue dircache_queue SHAREDBSS_ATTR;
118 static long dircache_stack[(DEFAULT_STACK_SIZE + 0x400)/sizeof(long)];
119 static const char dircache_thread_name[] = "dircache";
121 static struct fdbind_queue fdbind_cache[MAX_PENDING_BINDINGS];
122 static int fdbind_idx = 0;
124 /* --- Internal cache structure control functions --- */
126 static inline struct dircache_entry* get_entry(int id)
128 return &dircache_root[id];
131 #ifdef HAVE_EEPROM_SETTINGS
133 * Open the dircache file to save a snapshot on disk
135 static int open_dircache_file(unsigned flags, int permissions)
137 if (permissions != 0)
138 return open(DIRCACHE_FILE, flags, permissions);
140 return open(DIRCACHE_FILE, flags);
144 * Remove the snapshot file
146 static int remove_dircache_file(void)
148 return remove(DIRCACHE_FILE);
150 #endif
151 /**
152 * Internal function to allocate a new dircache_entry from memory.
154 static struct dircache_entry* allocate_entry(void)
156 struct dircache_entry *next_entry;
158 if (dircache_size > allocated_size - MAX_PATH*2)
160 logf("size limit reached");
161 return NULL;
164 next_entry = &dircache_root[entry_count++];
165 next_entry->d_name = NULL;
166 next_entry->up = NULL;
167 next_entry->down = NULL;
168 next_entry->next = NULL;
170 dircache_size += sizeof(struct dircache_entry);
172 return next_entry;
176 * Internal function to allocate a dircache_entry and set
177 * ->next entry pointers.
179 static struct dircache_entry* dircache_gen_next(struct dircache_entry *ce)
181 struct dircache_entry *next_entry;
183 if ( (next_entry = allocate_entry()) == NULL)
184 return NULL;
185 next_entry->up = ce->up;
186 ce->next = next_entry;
188 return next_entry;
192 * Internal function to allocate a dircache_entry and set
193 * ->down entry pointers.
195 static struct dircache_entry* dircache_gen_down(struct dircache_entry *ce)
197 struct dircache_entry *next_entry;
199 if ( (next_entry = allocate_entry()) == NULL)
200 return NULL;
201 next_entry->up = ce;
202 ce->down = next_entry;
204 return next_entry;
208 * Returns true if there is an event waiting in the queue
209 * that requires the current operation to be aborted.
211 static bool check_event_queue(void)
213 struct queue_event ev;
215 if(!queue_peek(&dircache_queue, &ev))
216 return false;
218 switch (ev.id)
220 case DIRCACHE_STOP:
221 case SYS_USB_CONNECTED:
222 #ifdef HAVE_HOTSWAP
223 case SYS_FS_CHANGED:
224 #endif
225 return true;
228 return false;
231 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
232 /* scan and build static data (avoid redundancy on stack) */
233 static struct
235 #ifdef HAVE_MULTIVOLUME
236 int volume;
237 #endif
238 struct fat_dir *dir;
239 struct fat_direntry *direntry;
240 }sab;
242 static int sab_process_dir(unsigned long startcluster, struct dircache_entry *ce)
244 /* normally, opendir expects a full fat_dir as parent but in our case,
245 * it's completely useless because we don't modify anything
246 * WARNING: this heavily relies on current FAT implementation ! */
248 /* those field are necessary to update the FAT entry in case of modification
249 here we don't touch anything so we put dummy values */
250 sab.dir->entry = 0;
251 sab.dir->entrycount = 0;
252 sab.dir->file.firstcluster = 0;
253 /* open directory */
254 int rc = fat_opendir(IF_MV2(sab.volume,) sab.dir, startcluster, sab.dir);
255 if(rc < 0)
257 logf("fat_opendir failed: %d", rc);
258 return rc;
261 /* first pass : read dir */
262 struct dircache_entry *first_ce = ce;
264 /* read through directory */
265 while((rc = fat_getnext(sab.dir, sab.direntry)) >= 0 && sab.direntry->name[0])
267 if(!strcmp(".", sab.direntry->name) ||
268 !strcmp("..", sab.direntry->name))
269 continue;
271 size_t size = strlen(sab.direntry->name) + 1;
272 ce->d_name = (d_names_start -= size);
273 ce->startcluster = sab.direntry->firstcluster;
274 ce->info.size = sab.direntry->filesize;
275 ce->info.attribute = sab.direntry->attr;
276 ce->info.wrtdate = sab.direntry->wrtdate;
277 ce->info.wrttime = sab.direntry->wrttime;
279 strcpy(ce->d_name, sab.direntry->name);
280 dircache_size += size;
282 if(ce->info.attribute & FAT_ATTR_DIRECTORY)
283 dircache_gen_down(ce);
285 ce = dircache_gen_next(ce);
286 if(ce == NULL)
287 return -5;
289 /* When simulator is used, it's only safe to yield here. */
290 if(thread_enabled)
292 /* Stop if we got an external signal. */
293 if(check_event_queue())
294 return -6;
295 yield();
299 /* add "." and ".." */
300 ce->d_name = dot;
301 ce->info.attribute = FAT_ATTR_DIRECTORY;
302 ce->startcluster = startcluster;
303 ce->info.size = 0;
304 ce->down = first_ce;
306 ce = dircache_gen_next(ce);
308 ce->d_name = dotdot;
309 ce->info.attribute = FAT_ATTR_DIRECTORY;
310 ce->startcluster = (first_ce->up ? first_ce->up->startcluster : 0);
311 ce->info.size = 0;
312 ce->down = first_ce->up;
314 /* second pass: recurse ! */
315 ce = first_ce;
317 while(rc >= 0 && ce)
319 if(ce->d_name != NULL && ce->down != NULL && strcmp(ce->d_name, ".")
320 && strcmp(ce->d_name, ".."))
321 rc = sab_process_dir(ce->startcluster, ce->down);
323 ce = ce->next;
326 return rc;
329 /* used during the generation */
330 static struct fat_dir sab_fat_dir;
332 static int dircache_scan_and_build(IF_MV2(int volume,) struct dircache_entry *ce)
334 memset(ce, 0, sizeof(struct dircache_entry));
336 #ifdef HAVE_MULTIVOLUME
337 if (volume > 0)
339 ce->d_name = (d_names_start -= sizeof(VOL_NAMES));
340 size_t len = snprintf(ce->d_name, VOL_ENUM_POS + 3, VOL_NAMES, volume)+1;
341 dircache_size += len;
342 ce->info.attribute = FAT_ATTR_DIRECTORY | FAT_ATTR_VOLUME;
343 ce->info.size = 0;
344 append_position = dircache_gen_next(ce);
345 ce = dircache_gen_down(ce);
347 #endif
349 struct fat_direntry direntry; /* ditto */
350 #ifdef HAVE_MULTIVOLUME
351 sab.volume = volume;
352 #endif
353 sab.dir = &sab_fat_dir;
354 sab.direntry = &direntry;
356 return sab_process_dir(0, ce);
358 #elif (CONFIG_PLATFORM & PLATFORM_HOSTED) /* PLATFORM_HOSTED */
359 static char sab_path[MAX_PATH];
361 static int sab_process_dir(struct dircache_entry *ce)
363 struct dirent_uncached *entry;
364 struct dircache_entry *first_ce = ce;
365 DIR_UNCACHED *dir = opendir_uncached(sab_path);
366 if(dir == NULL)
368 logf("Failed to opendir_uncached(%s)", sab_path);
369 return -1;
372 while((entry = readdir_uncached(dir)))
374 if(!strcmp(".", entry->d_name) ||
375 !strcmp("..", entry->d_name))
376 continue;
378 size_t size = strlen(entry->d_name) + 1;
379 ce->d_name = (d_names_start -= size);
380 ce->info = entry->info;
382 strcpy(ce->d_name, entry->d_name);
383 dircache_size += size;
385 if(entry->info.attribute & ATTR_DIRECTORY)
387 dircache_gen_down(ce);
388 if(ce->down == NULL)
390 closedir_uncached(dir);
391 return -1;
393 /* save current paths size */
394 int pathpos = strlen(sab_path);
395 /* append entry */
396 strlcpy(&sab_path[pathpos], "/", sizeof(sab_path) - pathpos);
397 strlcpy(&sab_path[pathpos+1], entry->d_name, sizeof(sab_path) - pathpos - 1);
399 int rc = sab_process_dir(ce->down);
400 /* restore path */
401 sab_path[pathpos] = '\0';
403 if(rc < 0)
405 closedir_uncached(dir);
406 return rc;
410 ce = dircache_gen_next(ce);
411 if(ce == NULL)
412 return -5;
414 /* When simulator is used, it's only safe to yield here. */
415 if(thread_enabled)
417 /* Stop if we got an external signal. */
418 if(check_event_queue())
419 return -1;
420 yield();
424 /* add "." and ".." */
425 ce->d_name = dot;
426 ce->info.attribute = ATTR_DIRECTORY;
427 ce->info.size = 0;
428 ce->down = first_ce;
430 ce = dircache_gen_next(ce);
432 ce->d_name = dotdot;
433 ce->info.attribute = ATTR_DIRECTORY;
434 ce->info.size = 0;
435 ce->down = first_ce->up;
437 closedir_uncached(dir);
438 return 0;
441 static int dircache_scan_and_build(IF_MV2(int volume,) struct dircache_entry *ce)
443 #ifdef HAVE_MULTIVOLUME
444 (void) volume;
445 #endif
446 memset(ce, 0, sizeof(struct dircache_entry));
448 strlcpy(sab_path, "/", sizeof sab_path);
449 return sab_process_dir(ce);
451 #endif /* PLATFORM_NATIVE */
454 * Internal function to get a pointer to dircache_entry for a given filename.
455 * path: Absolute path to a file or directory (see comment)
456 * go_down: Returns the first entry of the directory given by the path (see comment)
458 * As a a special case, accept path="" as an alias for "/".
459 * Also if the path omits the first '/', it will be accepted.
461 * * If get_down=true:
462 * If path="/", the returned entry is the first of root directory (ie dircache_root)
463 * Otherwise, if 'entry' is the returned value when get_down=false,
464 * the functions returns entry->down (which can be NULL)
466 * * If get_down=false:
467 * If path="/chunk_1/chunk_2/.../chunk_n" then this functions returns the entry
468 * root_entry()->chunk_1->chunk_2->...->chunk_(n-1)
469 * Which means that
470 * dircache_get_entry(path)->d_name == chunk_n
472 * If path="/", the returned entry is NULL.
473 * If the entry doesn't exist, return NULL
475 * NOTE: this functions silently handles double '/'
477 static struct dircache_entry* dircache_get_entry(const char *path, bool go_down)
479 char namecopy[MAX_PATH];
480 char* part;
481 char* end;
483 bool at_root = true;
484 struct dircache_entry *cache_entry = dircache_root;
486 strlcpy(namecopy, path, sizeof(namecopy));
488 for(part = strtok_r(namecopy, "/", &end); part; part = strtok_r(NULL, "/", &end))
490 /* If request another chunk, the current entry has to be directory
491 * and so cache_entry->down has to be non-NULL/
492 * Special case of root because it's already the first entry of the root directory
494 * NOTE: this is safe even if cache_entry->down is NULL */
495 if(!at_root)
496 cache_entry = cache_entry->down;
497 else
498 at_root = false;
500 /* scan dir for name */
501 while(cache_entry != NULL)
503 /* skip unused entries */
504 if(cache_entry->d_name == NULL)
506 cache_entry = cache_entry->next;
507 continue;
509 /* compare names */
510 if(!strcasecmp(part, cache_entry->d_name))
511 break;
512 /* go to next entry */
513 cache_entry = cache_entry->next;
516 /* handle not found case */
517 if(cache_entry == NULL)
518 return NULL;
521 /* NOTE: here cache_entry!=NULL so taking ->down is safe */
522 if(go_down)
523 return at_root ? cache_entry : cache_entry->down;
524 else
525 return at_root ? NULL : cache_entry;
528 #ifdef HAVE_EEPROM_SETTINGS
530 #define DIRCACHE_MAGIC 0x00d0c0a1
531 struct dircache_maindata {
532 long magic;
533 long size;
534 long entry_count;
535 long appflags;
536 struct dircache_entry *root_entry;
537 char *d_names_start;
541 * Function to load the internal cache structure from disk to initialize
542 * the dircache really fast and little disk access.
544 int dircache_load(void)
546 struct dircache_maindata maindata;
547 ssize_t bytes_read;
548 int fd;
550 if (dircache_initialized)
551 return -1;
553 logf("Loading directory cache");
554 dircache_size = 0;
556 fd = open_dircache_file(O_RDONLY, 0);
557 if (fd < 0)
558 return -2;
560 bytes_read = read(fd, &maindata, sizeof(struct dircache_maindata));
561 if (bytes_read != sizeof(struct dircache_maindata)
562 || maindata.magic != DIRCACHE_MAGIC || maindata.size <= 0)
564 logf("Dircache file header error");
565 close(fd);
566 remove_dircache_file();
567 return -3;
570 dircache_root = buffer_alloc(maindata.size + DIRCACHE_RESERVE);
571 entry_count = maindata.entry_count;
572 appflags = maindata.appflags;
574 /* read the dircache file into memory,
575 * start with the struct dircache_entries */
576 ssize_t bytes_to_read = entry_count*sizeof(struct dircache_entry);
577 bytes_read = read(fd, dircache_root, bytes_to_read);
579 if (bytes_read != bytes_to_read)
581 logf("Dircache read failed #1");
582 return -6;
585 /* continue with the d_names. Fix up pointers to them if needed */
586 d_names_start = ((char*)&dircache_root[entry_count] + DIRCACHE_RESERVE);
587 bytes_to_read = maindata.size - bytes_to_read;
588 bytes_read = read(fd, d_names_start, bytes_to_read);
589 close(fd);
590 remove_dircache_file();
591 if (bytes_read != bytes_to_read)
593 logf("Dircache read failed #2");
594 return -7;
597 d_names_end = &d_names_start[bytes_read];
598 dot = d_names_end - sizeof(".");
599 dotdot = dot - sizeof("..");
601 /* d_names are in reverse order, so the last entry points to the first string */
602 intptr_t offset_d_names = maindata.d_names_start - d_names_start;
603 intptr_t offset_entries = maindata.root_entry - dircache_root;
605 /* offset_entries is less likely to differ, so check if it's 0 in the loop
606 * offset_d_names however is almost always non-zero, since dircache_save()
607 * creates a file which causes the reserve buffer to be used. since
608 * we allocate a new, empty DIRCACHE_RESERVE here, the strings are
609 * farther behind */
610 if (offset_entries != 0 || offset_d_names != 0)
612 for(unsigned i = 0; i < entry_count; i++)
614 if (dircache_root[i].d_name)
615 dircache_root[i].d_name -= offset_d_names;
617 if (offset_entries == 0)
618 continue;
619 if (dircache_root[i].next)
620 dircache_root[i].next -= offset_entries;
621 if (dircache_root[i].up)
622 dircache_root[i].up -= offset_entries;
623 if (dircache_root[i].down)
624 dircache_root[i].down -= offset_entries;
628 /* Cache successfully loaded. */
629 dircache_size = maindata.size;
630 allocated_size = dircache_size + DIRCACHE_RESERVE;
631 reserve_used = 0;
632 logf("Done, %ld KiB used", dircache_size / 1024);
633 dircache_initialized = true;
634 memset(fd_bindings, 0, sizeof(fd_bindings));
636 return 0;
640 * Function to save the internal cache stucture to disk for fast loading
641 * on boot.
643 int dircache_save(void)
645 struct dircache_maindata maindata;
646 int fd;
647 unsigned long bytes_written;
649 remove_dircache_file();
651 if (!dircache_initialized)
652 return -1;
654 logf("Saving directory cache");
655 fd = open_dircache_file(O_WRONLY | O_CREAT | O_TRUNC, 0666);
657 maindata.magic = DIRCACHE_MAGIC;
658 maindata.size = dircache_size;
659 maindata.root_entry = dircache_root;
660 maindata.d_names_start = d_names_start;
661 maindata.entry_count = entry_count;
662 maindata.appflags = appflags;
664 /* Save the info structure */
665 bytes_written = write(fd, &maindata, sizeof(struct dircache_maindata));
666 if (bytes_written != sizeof(struct dircache_maindata))
668 close(fd);
669 logf("dircache: write failed #1");
670 return -2;
673 /* Dump whole directory cache to disk
674 * start by writing the dircache_entries */
675 size_t bytes_to_write = entry_count*sizeof(struct dircache_entry);
676 bytes_written = write(fd, dircache_root, bytes_to_write);
677 if (bytes_written != bytes_to_write)
679 logf("dircache: write failed #2");
680 return -3;
683 /* continue with the d_names */
684 bytes_to_write = d_names_end - d_names_start;
685 bytes_written = write(fd, d_names_start, bytes_to_write);
686 close(fd);
687 if (bytes_written != bytes_to_write)
689 logf("dircache: write failed #3");
690 return -4;
694 return 0;
696 #endif /* HAVE_EEPROM_SETTINGS */
699 * Internal function which scans the disk and creates the dircache structure.
701 static int dircache_do_rebuild(void)
703 struct dircache_entry* root_entry;
704 unsigned int start_tick;
705 int i;
707 /* Measure how long it takes build the cache. */
708 start_tick = current_tick;
709 dircache_initializing = true;
710 appflags = 0;
712 /* reset dircache and alloc root entry */
713 entry_count = 0;
714 root_entry = allocate_entry();
716 #ifdef HAVE_MULTIVOLUME
717 append_position = root_entry;
719 for (i = NUM_VOLUMES; i >= 0; i--)
721 if (fat_ismounted(i))
723 #endif
724 cpu_boost(true);
725 #ifdef HAVE_MULTIVOLUME
726 if (dircache_scan_and_build(IF_MV2(i,) append_position) < 0)
727 #else
728 if (dircache_scan_and_build(IF_MV2(0,) root_entry) < 0)
729 #endif /* HAVE_MULTIVOLUME */
731 logf("dircache_scan_and_build failed");
732 cpu_boost(false);
733 dircache_size = 0;
734 dircache_initializing = false;
735 return -2;
737 cpu_boost(false);
738 #ifdef HAVE_MULTIVOLUME
741 #endif
743 logf("Done, %ld KiB used", dircache_size / 1024);
745 dircache_initialized = true;
746 dircache_initializing = false;
747 cache_build_ticks = current_tick - start_tick;
749 /* Initialized fd bindings. */
750 memset(fd_bindings, 0, sizeof(fd_bindings));
751 for (i = 0; i < fdbind_idx; i++)
752 dircache_bind(fdbind_cache[i].fd, fdbind_cache[i].path);
753 fdbind_idx = 0;
755 if (thread_enabled)
757 if (allocated_size - dircache_size < DIRCACHE_RESERVE)
758 reserve_used = DIRCACHE_RESERVE - (allocated_size - dircache_size);
761 return 1;
765 * Internal thread that controls transparent cache building.
767 static void dircache_thread(void)
769 struct queue_event ev;
771 while (1)
773 queue_wait(&dircache_queue, &ev);
775 switch (ev.id)
777 #ifdef HAVE_HOTSWAP
778 case SYS_FS_CHANGED:
779 if (!dircache_initialized)
780 break;
781 dircache_initialized = false;
782 #endif
783 case DIRCACHE_BUILD:
784 thread_enabled = true;
785 dircache_do_rebuild();
786 thread_enabled = false;
787 break ;
789 case DIRCACHE_STOP:
790 logf("Stopped the rebuilding.");
791 dircache_initialized = false;
792 break ;
794 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
795 case SYS_USB_CONNECTED:
796 usb_acknowledge(SYS_USB_CONNECTED_ACK);
797 usb_wait_for_disconnect(&dircache_queue);
798 break ;
799 #endif
804 static void generate_dot_d_names(void)
806 dot = (d_names_start -= sizeof("."));
807 dotdot = (d_names_start -= sizeof(".."));
808 dircache_size += sizeof(".") + sizeof("..");
809 strcpy(dot, ".");
810 strcpy(dotdot, "..");
813 * Start scanning the disk to build the dircache.
814 * Either transparent or non-transparent build method is used.
816 int dircache_build(int last_size)
818 if (dircache_initialized || thread_enabled)
819 return -3;
821 logf("Building directory cache");
822 #ifdef HAVE_EEPROM_SETTINGS
823 remove_dircache_file();
824 #endif
826 /* Background build, dircache has been previously allocated */
827 if (dircache_size > 0)
829 thread_enabled = true;
830 dircache_initializing = true;
831 queue_post(&dircache_queue, DIRCACHE_BUILD, 0);
832 return 2;
834 if (last_size > DIRCACHE_RESERVE && last_size < DIRCACHE_LIMIT )
836 allocated_size = last_size + DIRCACHE_RESERVE;
837 dircache_root = buffer_alloc(allocated_size);
838 d_names_start =
839 d_names_end = ((char*)dircache_root)+allocated_size-1;
840 dircache_size = 0;
841 thread_enabled = true;
842 generate_dot_d_names();
844 /* Start a transparent rebuild. */
845 queue_post(&dircache_queue, DIRCACHE_BUILD, 0);
846 return 3;
849 /* struct dircache_entrys are allocated from the beginning,
850 * their corresponding d_name from the end
851 * after generation the buffer will be compacted with DIRCACHE_RESERVE
852 * free bytes in between */
853 audiobuf = (char*)(((intptr_t)audiobuf & ~0x03) + 0x04);
854 dircache_root = (struct dircache_entry*)audiobuf;
855 d_names_start = d_names_end = audiobufend - 1;
856 dircache_size = 0;
857 generate_dot_d_names();
859 /* Start a non-transparent rebuild. */
860 int res = dircache_do_rebuild();
862 /** compact the dircache buffer **/
863 if (res >= 0)
865 char* dst = ((char*)&dircache_root[entry_count] + DIRCACHE_RESERVE);
866 ssize_t offset = d_names_start - dst;
867 if (offset > 0)
869 ssize_t size_to_move = dircache_size -
870 entry_count*sizeof(struct dircache_entry);
871 /* move d_names down, use memmove if overlap */
872 if (offset > size_to_move)
873 memcpy(dst, d_names_start, size_to_move);
874 else
875 memmove(dst, d_names_start, size_to_move);
877 /* fix up pointers to the d_names */
878 for(unsigned i = 0; i < entry_count; i++)
879 dircache_root[i].d_name -= offset;
881 d_names_end -= offset;
882 /* equivalent to dircache_size + DIRCACHE_RESERVE */
883 allocated_size = (d_names_end - (char*)dircache_root);
884 reserve_used = 0;
885 audiobuf += allocated_size;
887 else /* something went wrong */
888 return -1;
890 return res;
894 * Steal the allocated dircache buffer and disable dircache.
896 void* dircache_steal_buffer(long *size)
898 dircache_disable();
899 if (dircache_size == 0)
901 *size = 0;
902 return NULL;
905 *size = dircache_size + (DIRCACHE_RESERVE-reserve_used);
907 return dircache_root;
911 * Main initialization function that must be called before any other
912 * operations within the dircache.
914 void dircache_init(void)
916 int i;
917 int thread_id __attribute__((unused));
919 dircache_initialized = false;
920 dircache_initializing = false;
922 memset(opendirs, 0, sizeof(opendirs));
923 for (i = 0; i < MAX_OPEN_DIRS; i++)
925 opendirs[i].theent.d_name = buffer_alloc(MAX_PATH);
928 queue_init(&dircache_queue, true);
929 thread_id = create_thread(dircache_thread, dircache_stack,
930 sizeof(dircache_stack), 0, dircache_thread_name
931 IF_PRIO(, PRIORITY_BACKGROUND)
932 IF_COP(, CPU));
933 #ifdef HAVE_IO_PRIORITY
934 thread_set_io_priority(thread_id,IO_PRIORITY_BACKGROUND);
935 #endif
940 * Returns true if dircache has been initialized and is ready to be used.
942 bool dircache_is_enabled(void)
944 return dircache_initialized;
948 * Returns true if dircache is being initialized.
950 bool dircache_is_initializing(void)
952 return dircache_initializing || thread_enabled;
956 * Set application flags used to determine if dircache is still intact.
958 void dircache_set_appflag(long mask)
960 appflags |= mask;
964 * Get application flags used to determine if dircache is still intact.
966 bool dircache_get_appflag(long mask)
968 return dircache_is_enabled() && (appflags & mask);
972 * Returns the current number of entries (directories and files) in the cache.
974 int dircache_get_entry_count(void)
976 return entry_count;
980 * Returns the allocated space for dircache (without reserve space).
982 int dircache_get_cache_size(void)
984 return dircache_is_enabled() ? dircache_size : 0;
988 * Returns how many bytes of the reserve allocation for live cache
989 * updates have been used.
991 int dircache_get_reserve_used(void)
993 return dircache_is_enabled() ? reserve_used : 0;
997 * Returns the time in kernel ticks that took to build the cache.
999 int dircache_get_build_ticks(void)
1001 return dircache_is_enabled() ? cache_build_ticks : 0;
1005 * Disables the dircache. Usually called on shutdown or when
1006 * accepting a usb connection.
1008 void dircache_disable(void)
1010 int i;
1011 bool cache_in_use;
1013 if (thread_enabled)
1014 queue_post(&dircache_queue, DIRCACHE_STOP, 0);
1016 while (thread_enabled)
1017 sleep(1);
1018 dircache_initialized = false;
1020 logf("Waiting for cached dirs to release");
1021 do {
1022 cache_in_use = false;
1023 for (i = 0; i < MAX_OPEN_DIRS; i++) {
1024 if (!opendirs[i].regulardir && opendirs[i].busy)
1026 cache_in_use = true;
1027 sleep(1);
1028 break ;
1031 } while (cache_in_use) ;
1033 logf("Cache released");
1034 entry_count = 0;
1038 * Usermode function to return dircache_entry index to the given path.
1040 static int dircache_get_entry_id_ex(const char *filename, bool go_down)
1042 if (!dircache_initialized || filename == NULL)
1043 return -1;
1045 struct dircache_entry* res = dircache_get_entry(filename, go_down);
1046 return res ? res - dircache_root : -1;
1049 int dircache_get_entry_id(const char* filename)
1051 return dircache_get_entry_id_ex(filename, false);
1055 * Internal: Get the startcluster for the index
1057 long _dircache_get_entry_startcluster(int id)
1059 return get_entry(id)->startcluster;
1063 * Internal: Get the struct dirinfo for the index
1065 struct dirinfo* _dircache_get_entry_dirinfo(int id)
1067 return &get_entry(id)->info;
1071 * build a path from an entry upto the root using recursion
1073 * it appends '/' after strlcat, therefore buf[0] needs to be prepared with '/'
1074 * and it will leave a trailing '/'
1076 * returns the position of that trailing '/' so it can be deleted afterwards
1077 * (or, in case of truncation, the position of the nul byte */
1078 static size_t copy_path_helper(const struct dircache_entry *entry, char *buf, size_t size)
1080 /* has parent? */
1081 if (entry->up)
1082 copy_path_helper(entry->up, buf, size);
1084 size_t len = strlcat(buf, entry->d_name, size);
1085 if (len < size)
1087 buf[len++] = '/';
1088 buf[len] = '\0';
1090 return len-1;
1093 * Function to copy the full absolute path from dircache to the given buffer
1094 * using the given dircache_entry pointer.
1096 * Returns the size of the resulting string, or 0 if an error occured
1098 size_t dircache_copy_path(int index, char *buf, size_t size)
1100 if (!size || !buf || index < 0)
1101 return 0;
1103 buf[0] = '/';
1104 size_t res = copy_path_helper(&dircache_root[index], buf, size);
1105 /* fixup trailing '/' */
1106 buf[res] = '\0';
1107 return res;
1110 /* --- Directory cache live updating functions --- */
1111 static int block_until_ready(void)
1113 /* Block until dircache has been built. */
1114 while (!dircache_initialized && dircache_is_initializing())
1115 sleep(1);
1117 if (!dircache_initialized)
1118 return -1;
1120 return 0;
1123 static struct dircache_entry* dircache_new_entry(const char *path, int attribute)
1125 struct dircache_entry *entry;
1126 char basedir[MAX_PATH*2];
1127 char *new;
1128 long last_cache_size = dircache_size;
1130 strlcpy(basedir, path, sizeof(basedir));
1131 new = strrchr(basedir, '/');
1132 if (new == NULL)
1134 logf("error occurred");
1135 dircache_initialized = false;
1136 return NULL;
1139 *new = '\0';
1140 new++;
1142 entry = dircache_get_entry(basedir, true);
1143 if (entry == NULL)
1145 logf("basedir not found!");
1146 logf("%s", basedir);
1147 dircache_initialized = false;
1148 return NULL;
1151 if (reserve_used + 2*sizeof(struct dircache_entry) + strlen(new)+1
1152 >= DIRCACHE_RESERVE)
1154 logf("not enough space");
1155 dircache_initialized = false;
1156 return NULL;
1159 while (entry->next != NULL)
1160 entry = entry->next;
1162 if (entry->d_name != NULL)
1164 entry = dircache_gen_next(entry);
1165 if (entry == NULL)
1167 dircache_initialized = false;
1168 return NULL;
1172 size_t size = strlen(new) + 1;
1173 entry->d_name = (d_names_start -= size);
1174 entry->startcluster = 0;
1175 memset(&entry->info, 0, sizeof(entry->info));
1176 entry->info.attribute = attribute;
1178 strcpy(entry->d_name, new);
1179 dircache_size += size;
1181 if (attribute & ATTR_DIRECTORY)
1183 logf("gen_down");
1184 dircache_gen_down(entry);
1187 reserve_used += dircache_size - last_cache_size;
1189 return entry;
1192 void dircache_bind(int fd, const char *path)
1194 struct dircache_entry *entry;
1196 /* Queue requests until dircache has been built. */
1197 if (!dircache_initialized && dircache_is_initializing())
1199 if (fdbind_idx >= MAX_PENDING_BINDINGS)
1200 return ;
1201 strlcpy(fdbind_cache[fdbind_idx].path, path,
1202 sizeof(fdbind_cache[fdbind_idx].path));
1203 fdbind_cache[fdbind_idx].fd = fd;
1204 fdbind_idx++;
1205 return ;
1208 if (!dircache_initialized)
1209 return ;
1211 logf("bind: %d/%s", fd, path);
1212 entry = dircache_get_entry(path, false);
1213 if (entry == NULL)
1215 logf("not found!");
1216 dircache_initialized = false;
1217 return ;
1220 fd_bindings[fd] = entry;
1223 void dircache_update_filesize(int fd, long newsize, long startcluster)
1225 if (!dircache_initialized || fd < 0)
1226 return ;
1228 if (fd_bindings[fd] == NULL)
1230 logf("dircache fd(%d) access error", fd);
1231 dircache_initialized = false;
1232 return ;
1235 fd_bindings[fd]->info.size = newsize;
1236 fd_bindings[fd]->startcluster = startcluster;
1238 void dircache_update_filetime(int fd)
1240 #if CONFIG_RTC == 0
1241 (void)fd;
1242 #else
1243 short year;
1244 struct tm *now = get_time();
1245 if (!dircache_initialized || fd < 0)
1246 return ;
1248 if (fd_bindings[fd] == NULL)
1250 logf("dircache fd access error");
1251 dircache_initialized = false;
1252 return ;
1254 year = now->tm_year+1900-1980;
1255 fd_bindings[fd]->info.wrtdate = (((year)&0x7f)<<9) |
1256 (((now->tm_mon+1)&0xf)<<5) |
1257 (((now->tm_mday)&0x1f));
1258 fd_bindings[fd]->info.wrttime = (((now->tm_hour)&0x1f)<<11) |
1259 (((now->tm_min)&0x3f)<<5) |
1260 (((now->tm_sec/2)&0x1f));
1261 #endif
1264 void dircache_mkdir(const char *path)
1265 { /* Test ok. */
1266 if (block_until_ready())
1267 return ;
1270 logf("mkdir: %s", path);
1271 dircache_new_entry(path, ATTR_DIRECTORY);
1274 void dircache_rmdir(const char *path)
1275 { /* Test ok. */
1276 struct dircache_entry *entry;
1278 if (block_until_ready())
1279 return ;
1281 logf("rmdir: %s", path);
1282 entry = dircache_get_entry(path, false);
1283 if (entry == NULL || entry->down == NULL)
1285 logf("not found or not a directory!");
1286 dircache_initialized = false;
1287 return ;
1290 entry->down = NULL;
1291 entry->d_name = NULL;
1294 /* Remove a file from cache */
1295 void dircache_remove(const char *name)
1296 { /* Test ok. */
1297 struct dircache_entry *entry;
1299 if (block_until_ready())
1300 return ;
1302 logf("remove: %s", name);
1304 entry = dircache_get_entry(name, false);
1306 if (entry == NULL)
1308 logf("not found!");
1309 dircache_initialized = false;
1310 return ;
1313 entry->d_name = NULL;
1316 void dircache_rename(const char *oldpath, const char *newpath)
1317 { /* Test ok. */
1318 struct dircache_entry *entry, *newentry;
1319 struct dircache_entry oldentry;
1320 char absolute_path[MAX_PATH*2];
1321 char *p;
1323 if (block_until_ready())
1324 return ;
1326 logf("rename: %s->%s", oldpath, newpath);
1328 entry = dircache_get_entry(oldpath, false);
1329 if (entry == NULL)
1331 logf("not found!");
1332 dircache_initialized = false;
1333 return ;
1336 /* Delete the old entry. */
1337 entry->d_name = NULL;
1339 /** If we rename the same filename twice in a row, we need to
1340 * save the data, because the entry will be re-used. */
1341 oldentry = *entry;
1343 /* Generate the absolute path for destination if necessary. */
1344 if (newpath[0] != '/')
1346 strlcpy(absolute_path, oldpath, sizeof(absolute_path));
1347 p = strrchr(absolute_path, '/');
1348 if (!p)
1350 logf("Invalid path");
1351 dircache_initialized = false;
1352 return ;
1355 *p = '\0';
1356 strlcpy(p, absolute_path, sizeof(absolute_path)-strlen(p));
1357 newpath = absolute_path;
1360 newentry = dircache_new_entry(newpath, entry->info.attribute);
1361 if (newentry == NULL)
1363 dircache_initialized = false;
1364 return ;
1367 newentry->down = oldentry.down;
1368 newentry->startcluster = oldentry.startcluster;
1369 newentry->info.size = oldentry.info.size;
1370 newentry->info.wrtdate = oldentry.info.wrtdate;
1371 newentry->info.wrttime = oldentry.info.wrttime;
1374 void dircache_add_file(const char *path, long startcluster)
1376 struct dircache_entry *entry;
1378 if (block_until_ready())
1379 return ;
1381 logf("add file: %s", path);
1382 entry = dircache_new_entry(path, 0);
1383 if (entry == NULL)
1384 return ;
1386 entry->startcluster = startcluster;
1389 static bool is_disable_msg_pending(void)
1391 return check_event_queue();
1394 DIR_CACHED* opendir_cached(const char* name)
1396 int dd;
1397 DIR_CACHED* pdir = opendirs;
1399 if ( name[0] != '/' )
1401 DEBUGF("Only absolute paths supported right now\n");
1402 return NULL;
1405 /* find a free dir descriptor */
1406 for ( dd=0; dd<MAX_OPEN_DIRS; dd++, pdir++)
1407 if ( !pdir->busy )
1408 break;
1410 if ( dd == MAX_OPEN_DIRS )
1412 DEBUGF("Too many dirs open\n");
1413 errno = EMFILE;
1414 return NULL;
1417 pdir->busy = true;
1419 if (!dircache_initialized || is_disable_msg_pending())
1421 pdir->internal_entry = -1;
1422 pdir->regulardir = opendir_uncached(name);
1424 else
1426 pdir->regulardir = NULL;
1427 pdir->internal_entry = dircache_get_entry_id_ex(name, true);
1428 pdir->theent.info.attribute = -1; /* used to make readdir_cached aware of the first call */
1431 if (pdir->internal_entry == -1 && pdir->regulardir == NULL)
1433 pdir->busy = false;
1434 return NULL;
1437 return pdir;
1440 struct dirent_cached* readdir_cached(DIR_CACHED* dir)
1442 struct dircache_entry *ce = get_entry(dir->internal_entry);
1443 struct dirent_uncached *regentry;
1445 if (!dir->busy)
1446 return NULL;
1448 if (dir->regulardir != NULL)
1450 regentry = readdir_uncached(dir->regulardir);
1451 if (regentry == NULL)
1452 return NULL;
1454 strlcpy(dir->theent.d_name, regentry->d_name, MAX_PATH);
1455 dir->theent.startcluster = regentry->startcluster;
1456 dir->theent.info = regentry->info;
1458 return &dir->theent;
1461 /* if theent.attribute=-1 then this is the first call */
1462 /* otherwise, this is is not so we first take the entry's ->next */
1463 /* NOTE: normal file can't have attribute=-1 */
1464 if(dir->theent.info.attribute != -1)
1465 ce = ce->next;
1466 /* skip unused entries */
1467 while(ce != NULL && ce->d_name == NULL)
1468 ce = ce->next;
1470 if (ce == NULL)
1471 return NULL;
1473 strlcpy(dir->theent.d_name, ce->d_name, MAX_PATH);
1474 /* Can't do `dir->theent = *ce`
1475 because that modifies the d_name pointer. */
1476 dir->theent.startcluster = ce->startcluster;
1477 dir->theent.info = ce->info;
1478 dir->internal_entry = ce - dircache_root;
1480 //logf("-> %s", ce->d_name);
1481 return &dir->theent;
1484 int closedir_cached(DIR_CACHED* dir)
1486 if (!dir->busy)
1487 return -1;
1489 dir->busy=false;
1490 if (dir->regulardir != NULL)
1491 return closedir_uncached(dir->regulardir);
1493 return 0;
1496 int mkdir_cached(const char *name)
1498 int rc=mkdir_uncached(name);
1499 if (rc >= 0)
1500 dircache_mkdir(name);
1501 return(rc);
1504 int rmdir_cached(const char* name)
1506 int rc=rmdir_uncached(name);
1507 if(rc >= 0)
1508 dircache_rmdir(name);
1509 return(rc);