blob: 361686aa95c7b9e54e9378a7c996fbed2f18d5db [file] [log] [blame]
Rob Landley103b7e02007-10-04 02:04:10 -05001/* dirtree.c - Functions for dealing with directory trees.
2 *
3 * Copyright 2007 Rob Landley <rob@landley.net>
4 */
5
6#include "toys.h"
7
Rob Landley3162c272012-12-06 15:13:30 -06008static int notdotdot(char *name)
9{
10 if (name[0]=='.' && (!name[1] || (name[1]=='.' && !name[2]))) return 0;
11
12 return 1;
13}
14
15// Default callback, filters out "." and "..".
16
17int dirtree_notdotdot(struct dirtree *catch)
18{
19 // Should we skip "." and ".."?
20 return notdotdot(catch->name) ? DIRTREE_SAVE|DIRTREE_RECURSE : 0;
21}
22
Rob Landleyeb7ea222012-04-14 22:30:41 -050023// Create a dirtree node from a path, with stat and symlink info.
Rob Landley9b3af462012-04-22 23:01:23 -050024// (This doesn't open directory filehandles yet so as not to exhaust the
Rob Landley090c5c62012-12-31 14:38:13 -060025// filehandle space on large trees, dirtree_handle_callback() does that.)
Rob Landley7bc79712008-02-16 19:41:20 -060026
Rob Landley3162c272012-12-06 15:13:30 -060027struct dirtree *dirtree_add_node(struct dirtree *parent, char *name,
28 int symfollow)
Rob Landley103b7e02007-10-04 02:04:10 -050029{
Rob Landley7aa651a2012-11-13 17:14:08 -060030 struct dirtree *dt = NULL;
31 struct stat st;
32 char buf[4096];
33 int len = 0, linklen = 0;
Rob Landley103b7e02007-10-04 02:04:10 -050034
Rob Landley7aa651a2012-11-13 17:14:08 -060035 if (name) {
Rob Landley3162c272012-12-06 15:13:30 -060036 // open code this because haven't got node to call dirtree_parentfd() on yet
37 int fd = parent ? parent->data : AT_FDCWD;
38
39 if (fstatat(fd, name, &st, symfollow ? 0 : AT_SYMLINK_NOFOLLOW)) goto error;
Rob Landley7aa651a2012-11-13 17:14:08 -060040 if (S_ISLNK(st.st_mode)) {
Rob Landley3162c272012-12-06 15:13:30 -060041 if (0>(linklen = readlinkat(fd, name, buf, 4095))) goto error;
Rob Landley7aa651a2012-11-13 17:14:08 -060042 buf[linklen++]=0;
43 }
44 len = strlen(name);
45 }
46 dt = xzalloc((len = sizeof(struct dirtree)+len+1)+linklen);
Rob Landley3162c272012-12-06 15:13:30 -060047 dt->parent = parent;
Rob Landley7aa651a2012-11-13 17:14:08 -060048 if (name) {
49 memcpy(&(dt->st), &st, sizeof(struct stat));
50 strcpy(dt->name, name);
Rob Landley103b7e02007-10-04 02:04:10 -050051
Rob Landley7aa651a2012-11-13 17:14:08 -060052 if (linklen) {
53 dt->symlink = memcpy(len+(char *)dt, buf, linklen);
54 dt->data = --linklen;
55 }
56 }
Rob Landley103b7e02007-10-04 02:04:10 -050057
Rob Landley7aa651a2012-11-13 17:14:08 -060058 return dt;
Rob Landleyeb7ea222012-04-14 22:30:41 -050059
60error:
Rob Landley3162c272012-12-06 15:13:30 -060061 if (notdotdot(name)) {
62 char *path = parent ? dirtree_path(parent, 0) : "";
63 perror_msg("%s%s%s",path, parent ? "/" : "", name);
64 }
Rob Landley37de8ed2012-12-08 02:26:56 -060065 if (parent) parent->symlink = (char *)1;
Rob Landley7aa651a2012-11-13 17:14:08 -060066 free(dt);
67 return 0;
Rob Landley103b7e02007-10-04 02:04:10 -050068}
69
Rob Landley9b3af462012-04-22 23:01:23 -050070// Return path to this node, assembled recursively.
Rob Landley103b7e02007-10-04 02:04:10 -050071
Rob Landleyeb7ea222012-04-14 22:30:41 -050072char *dirtree_path(struct dirtree *node, int *plen)
Rob Landley103b7e02007-10-04 02:04:10 -050073{
Rob Landley7aa651a2012-11-13 17:14:08 -060074 char *path;
75 int len;
Rob Landley103b7e02007-10-04 02:04:10 -050076
Rob Landley7aa651a2012-11-13 17:14:08 -060077 if (!node || !node->name) {
78 path = xmalloc(*plen);
79 *plen = 0;
80 return path;
81 }
Rob Landleyeb7ea222012-04-14 22:30:41 -050082
Rob Landley7aa651a2012-11-13 17:14:08 -060083 len = (plen ? *plen : 0)+strlen(node->name)+1;
84 path = dirtree_path(node->parent, &len);
85 if (len && path[len-1] != '/') path[len++]='/';
86 len = (stpcpy(path+len, node->name) - path);
87 if (plen) *plen = len;
Rob Landleyeb7ea222012-04-14 22:30:41 -050088
Rob Landley7aa651a2012-11-13 17:14:08 -060089 return path;
Rob Landleyeb7ea222012-04-14 22:30:41 -050090}
91
Rob Landley6ec21782012-06-16 15:16:08 -050092int dirtree_parentfd(struct dirtree *node)
93{
Rob Landley7aa651a2012-11-13 17:14:08 -060094 return node->parent ? node->parent->data : AT_FDCWD;
Rob Landley6ec21782012-06-16 15:16:08 -050095}
96
Rob Landleyeb7ea222012-04-14 22:30:41 -050097// Handle callback for a node in the tree. Returns saved node(s) or NULL.
98//
99// By default, allocates a tree of struct dirtree, not following symlinks
100// If callback==NULL, or callback always returns 0, allocate tree of struct
Rob Landley6cd8ae62012-05-27 00:56:17 -0500101// dirtree and return root of tree. Otherwise call callback(node) on each
102// hit, free structures after use, and return NULL.
Rob Landleyeb7ea222012-04-14 22:30:41 -0500103//
104
Rob Landley090c5c62012-12-31 14:38:13 -0600105struct dirtree *dirtree_handle_callback(struct dirtree *new,
Rob Landley7aa651a2012-11-13 17:14:08 -0600106 int (*callback)(struct dirtree *node))
Rob Landleyeb7ea222012-04-14 22:30:41 -0500107{
Rob Landley7aa651a2012-11-13 17:14:08 -0600108 int flags, dir = S_ISDIR(new->st.st_mode);
Rob Landleyeb7ea222012-04-14 22:30:41 -0500109
Rob Landley7aa651a2012-11-13 17:14:08 -0600110 if (!callback) callback = dirtree_notdotdot;
Rob Landleyeb7ea222012-04-14 22:30:41 -0500111
Rob Landley7aa651a2012-11-13 17:14:08 -0600112 flags = callback(new);
Rob Landley6cd8ae62012-05-27 00:56:17 -0500113
Rob Landley7aa651a2012-11-13 17:14:08 -0600114 if (dir) {
115 if (flags & (DIRTREE_RECURSE|DIRTREE_COMEAGAIN)) {
116 new->data = openat(dirtree_parentfd(new), new->name, 0);
117 dirtree_recurse(new, callback, flags & DIRTREE_SYMFOLLOW);
118 if (flags & DIRTREE_COMEAGAIN) flags = callback(new);
119 }
120 }
Rob Landley6cd8ae62012-05-27 00:56:17 -0500121
Rob Landley7aa651a2012-11-13 17:14:08 -0600122 // If this had children, it was callback's job to free them already.
123 if (!(flags & DIRTREE_SAVE)) {
124 free(new);
125 new = NULL;
126 }
Rob Landley103b7e02007-10-04 02:04:10 -0500127
Rob Landley7aa651a2012-11-13 17:14:08 -0600128 return (flags & DIRTREE_ABORT)==DIRTREE_ABORT ? DIRTREE_ABORTVAL : new;
Rob Landley103b7e02007-10-04 02:04:10 -0500129}
130
Rob Landleyeb7ea222012-04-14 22:30:41 -0500131// Recursively read/process children of directory node (with dirfd in data),
132// filtering through callback().
Rob Landley103b7e02007-10-04 02:04:10 -0500133
Rob Landleyeb7ea222012-04-14 22:30:41 -0500134void dirtree_recurse(struct dirtree *node,
Rob Landley7aa651a2012-11-13 17:14:08 -0600135 int (*callback)(struct dirtree *node), int symfollow)
Rob Landleyeb7ea222012-04-14 22:30:41 -0500136{
Rob Landley7aa651a2012-11-13 17:14:08 -0600137 struct dirtree *new, **ddt = &(node->child);
138 struct dirent *entry;
139 DIR *dir;
Rob Landleyeb7ea222012-04-14 22:30:41 -0500140
Isaac Dunhamc810f9f2013-07-06 11:26:15 -0500141 if (node->data == -1 || !(dir = fdopendir(node->data))) {
Rob Landley7aa651a2012-11-13 17:14:08 -0600142 char *path = dirtree_path(node, 0);
143 perror_msg("No %s", path);
144 free(path);
145 close(node->data);
Rob Landley9b3af462012-04-22 23:01:23 -0500146
Rob Landley7aa651a2012-11-13 17:14:08 -0600147 return;
148 }
Rob Landley9b3af462012-04-22 23:01:23 -0500149
Rob Landley7aa651a2012-11-13 17:14:08 -0600150 // according to the fddir() man page, the filehandle in the DIR * can still
151 // be externally used by things that don't lseek() it.
Rob Landleyeb7ea222012-04-14 22:30:41 -0500152
Rob Landley7aa651a2012-11-13 17:14:08 -0600153 // The extra parentheses are to shut the stupid compiler up.
154 while ((entry = readdir(dir))) {
Rob Landley3162c272012-12-06 15:13:30 -0600155 if (!(new = dirtree_add_node(node, entry->d_name, symfollow)))
Rob Landley7aa651a2012-11-13 17:14:08 -0600156 continue;
Rob Landley090c5c62012-12-31 14:38:13 -0600157 new = dirtree_handle_callback(new, callback);
Rob Landley7aa651a2012-11-13 17:14:08 -0600158 if (new == DIRTREE_ABORTVAL) break;
159 if (new) {
160 *ddt = new;
161 ddt = &((*ddt)->next);
162 }
163 }
Rob Landleyeb7ea222012-04-14 22:30:41 -0500164
Rob Landley7aa651a2012-11-13 17:14:08 -0600165 // This closes filehandle as well, so note it
166 closedir(dir);
167 node->data = -1;
Rob Landleyeb7ea222012-04-14 22:30:41 -0500168}
169
170// Create dirtree from path, using callback to filter nodes.
171// If callback == NULL allocate a tree of struct dirtree nodes and return
172// pointer to root node.
Rob Landley78aaef22012-06-24 18:35:49 -0500173// symfollow is just for the top of tree, callback return code controls children
Rob Landleyeb7ea222012-04-14 22:30:41 -0500174
175struct dirtree *dirtree_read(char *path, int (*callback)(struct dirtree *node))
176{
Rob Landley3162c272012-12-06 15:13:30 -0600177 struct dirtree *root = dirtree_add_node(0, path, 0);
Rob Landleyeb7ea222012-04-14 22:30:41 -0500178
Rob Landley090c5c62012-12-31 14:38:13 -0600179 return root ? dirtree_handle_callback(root, callback) : DIRTREE_ABORTVAL;
Rob Landleyeb7ea222012-04-14 22:30:41 -0500180}