blob: 418e8eb178f28c8f720e711b0a0370e7a7ab9c71 [file] [log] [blame]
Rob Landley103b7e02007-10-04 02:04:10 -05001/* vi: set sw=4 ts=4 :*/
2/* dirtree.c - Functions for dealing with directory trees.
3 *
4 * Copyright 2007 Rob Landley <rob@landley.net>
5 */
6
7#include "toys.h"
8
Rob Landleyeb7ea222012-04-14 22:30:41 -05009// Create a dirtree node from a path, with stat and symlink info.
Rob Landley9b3af462012-04-22 23:01:23 -050010// (This doesn't open directory filehandles yet so as not to exhaust the
11// filehandle space on large trees. handle_callback() does that instead.)
Rob Landley7bc79712008-02-16 19:41:20 -060012
Rob Landleyeb7ea222012-04-14 22:30:41 -050013struct dirtree *dirtree_add_node(int dirfd, char *name)
Rob Landley103b7e02007-10-04 02:04:10 -050014{
Rob Landleyeb7ea222012-04-14 22:30:41 -050015 struct dirtree *dt = NULL;
16 struct stat st;
17 char buf[4096];
18 int len = 0, linklen = 0;
Rob Landley103b7e02007-10-04 02:04:10 -050019
Rob Landleyeb7ea222012-04-14 22:30:41 -050020 if (name) {
21 if (fstatat(dirfd, name, &st, AT_SYMLINK_NOFOLLOW)) goto error;
22 if (S_ISLNK(st.st_mode)) {
23 if (0>(linklen = readlinkat(dirfd, name, buf, 4095))) goto error;
24 buf[linklen++]=0;
Rob Landley103b7e02007-10-04 02:04:10 -050025 }
Rob Landleyeb7ea222012-04-14 22:30:41 -050026 len = strlen(name);
Rob Landley103b7e02007-10-04 02:04:10 -050027 }
Rob Landleyeb7ea222012-04-14 22:30:41 -050028 dt = xzalloc((len = sizeof(struct dirtree)+len+1)+linklen);
29 if (name) {
30 memcpy(&(dt->st), &st, sizeof(struct stat));
31 strcpy(dt->name, name);
Rob Landley103b7e02007-10-04 02:04:10 -050032
Rob Landleyeb7ea222012-04-14 22:30:41 -050033 if (linklen) {
34 dt->symlink = memcpy(len+(char *)dt, buf, linklen);
35 dt->data = --linklen;
36 }
Rob Landley7bc79712008-02-16 19:41:20 -060037 }
Rob Landley103b7e02007-10-04 02:04:10 -050038
39 return dt;
Rob Landleyeb7ea222012-04-14 22:30:41 -050040
41error:
42 perror_msg("%s",name);
43 free(dt);
44 return 0;
Rob Landley103b7e02007-10-04 02:04:10 -050045}
46
Rob Landley9b3af462012-04-22 23:01:23 -050047// Return path to this node, assembled recursively.
Rob Landley103b7e02007-10-04 02:04:10 -050048
Rob Landleyeb7ea222012-04-14 22:30:41 -050049char *dirtree_path(struct dirtree *node, int *plen)
Rob Landley103b7e02007-10-04 02:04:10 -050050{
Rob Landleyeb7ea222012-04-14 22:30:41 -050051 char *path;
52 int len;
Rob Landley103b7e02007-10-04 02:04:10 -050053
Rob Landley9b3af462012-04-22 23:01:23 -050054 if (!node || !node->name) {
55 path = xmalloc(*plen);
56 *plen = 0;
57 return path;
58 }
Rob Landleyeb7ea222012-04-14 22:30:41 -050059
Rob Landley9b3af462012-04-22 23:01:23 -050060 len = (plen ? *plen : 0)+strlen(node->name)+1;
Rob Landleyeb7ea222012-04-14 22:30:41 -050061 path = dirtree_path(node->parent, &len);
Rob Landley4d0f02f2012-05-09 06:11:23 -050062 if (len) path[len++]='/';
Rob Landley9b3af462012-04-22 23:01:23 -050063 len = (stpcpy(path+len, node->name) - path);
Rob Landley4d0f02f2012-05-09 06:11:23 -050064 if (plen) *plen = len;
Rob Landleyeb7ea222012-04-14 22:30:41 -050065
66 return path;
67}
68
69// Default callback, filters out "." and "..".
70
Rob Landley8c4ae8a2012-05-20 15:00:19 -050071int dirtree_notdotdot(struct dirtree *catch)
Rob Landleyeb7ea222012-04-14 22:30:41 -050072{
73 // Should we skip "." and ".."?
74 if (catch->name[0]=='.' && (!catch->name[1] ||
75 (catch->name[1]=='.' && !catch->name[2])))
Rob Landley8c4ae8a2012-05-20 15:00:19 -050076 return 0;
Rob Landleyeb7ea222012-04-14 22:30:41 -050077
Rob Landley8c4ae8a2012-05-20 15:00:19 -050078 return DIRTREE_SAVE|DIRTREE_RECURSE;
Rob Landleyeb7ea222012-04-14 22:30:41 -050079}
80
81// Handle callback for a node in the tree. Returns saved node(s) or NULL.
82//
83// By default, allocates a tree of struct dirtree, not following symlinks
84// If callback==NULL, or callback always returns 0, allocate tree of struct
Rob Landley6cd8ae62012-05-27 00:56:17 -050085// dirtree and return root of tree. Otherwise call callback(node) on each
86// hit, free structures after use, and return NULL.
Rob Landleyeb7ea222012-04-14 22:30:41 -050087//
88
89struct dirtree *handle_callback(struct dirtree *new,
90 int (*callback)(struct dirtree *node))
91{
Rob Landley6cd8ae62012-05-27 00:56:17 -050092 int flags, dir = S_ISDIR(new->st.st_mode);
Rob Landleyeb7ea222012-04-14 22:30:41 -050093
Rob Landley8c4ae8a2012-05-20 15:00:19 -050094 if (!callback) callback = dirtree_notdotdot;
Rob Landleyeb7ea222012-04-14 22:30:41 -050095
Rob Landley6cd8ae62012-05-27 00:56:17 -050096 // Directory always has filehandle for examining contents. Whether or
97 // not we'll recurse into it gets decided later.
98
99 if (dir)
100 new->data = openat(new->parent ? new->parent->data : AT_FDCWD,
101 new->name, 0);
102
Rob Landleyeb7ea222012-04-14 22:30:41 -0500103 flags = callback(new);
Rob Landley6cd8ae62012-05-27 00:56:17 -0500104
105 if (dir) {
106 if (flags & (DIRTREE_RECURSE|DIRTREE_COMEAGAIN)) {
Rob Landleyeb7ea222012-04-14 22:30:41 -0500107 dirtree_recurse(new, callback);
Rob Landley6cd8ae62012-05-27 00:56:17 -0500108 if (flags & DIRTREE_COMEAGAIN) flags = callback(new);
109 } else close(new->data);
Rob Landleyeb7ea222012-04-14 22:30:41 -0500110 }
Rob Landley6cd8ae62012-05-27 00:56:17 -0500111
Rob Landleyeb7ea222012-04-14 22:30:41 -0500112 // If this had children, it was callback's job to free them already.
Rob Landley8c4ae8a2012-05-20 15:00:19 -0500113 if (!(flags & DIRTREE_SAVE)) {
Rob Landleyeb7ea222012-04-14 22:30:41 -0500114 free(new);
115 new = NULL;
Rob Landley103b7e02007-10-04 02:04:10 -0500116 }
117
Rob Landleyeb7ea222012-04-14 22:30:41 -0500118 return (flags & DIRTREE_ABORT)==DIRTREE_ABORT ? DIRTREE_ABORTVAL : new;
Rob Landley103b7e02007-10-04 02:04:10 -0500119}
120
Rob Landleyeb7ea222012-04-14 22:30:41 -0500121// Recursively read/process children of directory node (with dirfd in data),
122// filtering through callback().
Rob Landley103b7e02007-10-04 02:04:10 -0500123
Rob Landleyeb7ea222012-04-14 22:30:41 -0500124void dirtree_recurse(struct dirtree *node,
125 int (*callback)(struct dirtree *node))
126{
127 struct dirtree *new, **ddt = &(node->child);
128 struct dirent *entry;
129 DIR *dir;
Rob Landleyeb7ea222012-04-14 22:30:41 -0500130
131 if (!(dir = fdopendir(node->data))) {
132 char *path = dirtree_path(node, 0);
133 perror_msg("No %s", path);
134 free(path);
135 close(node->data);
Rob Landley9b3af462012-04-22 23:01:23 -0500136
Rob Landley6cd8ae62012-05-27 00:56:17 -0500137 return;
Rob Landleyeb7ea222012-04-14 22:30:41 -0500138 }
Rob Landley9b3af462012-04-22 23:01:23 -0500139
140 // according to the fddir() man page, the filehandle in the DIR * can still
141 // be externally used by things that don't lseek() it.
Rob Landleyeb7ea222012-04-14 22:30:41 -0500142
143 // The extra parentheses are to shut the stupid compiler up.
144 while ((entry = readdir(dir))) {
Rob Landley9b3af462012-04-22 23:01:23 -0500145 if (!(new = dirtree_add_node(node->data, entry->d_name))) continue;
Rob Landleyeb7ea222012-04-14 22:30:41 -0500146 new->parent = node;
147 new = handle_callback(new, callback);
148 if (new == DIRTREE_ABORTVAL) break;
149 if (new) {
150 *ddt = new;
151 ddt = &((*ddt)->next);
152 }
153 }
154
Rob Landley6cd8ae62012-05-27 00:56:17 -0500155 // This closes filehandle as well, so note it
Rob Landleyeb7ea222012-04-14 22:30:41 -0500156 closedir(dir);
Rob Landley6cd8ae62012-05-27 00:56:17 -0500157 node->data = -1;
Rob Landleyeb7ea222012-04-14 22:30:41 -0500158}
159
160// Create dirtree from path, using callback to filter nodes.
161// If callback == NULL allocate a tree of struct dirtree nodes and return
162// pointer to root node.
163
164struct dirtree *dirtree_read(char *path, int (*callback)(struct dirtree *node))
165{
Rob Landley9b3af462012-04-22 23:01:23 -0500166 struct dirtree *root = dirtree_add_node(AT_FDCWD, path);
Rob Landleyeb7ea222012-04-14 22:30:41 -0500167
Rob Landley6cd8ae62012-05-27 00:56:17 -0500168 return root ? handle_callback(root, callback) : DIRTREE_ABORTVAL;
Rob Landleyeb7ea222012-04-14 22:30:41 -0500169}