blob: 8445ca407972bea95cbe9014d594a4042837ba16 [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) : "";
Rob Landley280bb592014-07-21 19:55:06 -050063
64 perror_msg("%s%s%s", path, parent ? "/" : "", name);
65 if (parent) free(path);
Rob Landley3162c272012-12-06 15:13:30 -060066 }
Rob Landley37de8ed2012-12-08 02:26:56 -060067 if (parent) parent->symlink = (char *)1;
Rob Landley7aa651a2012-11-13 17:14:08 -060068 free(dt);
69 return 0;
Rob Landley103b7e02007-10-04 02:04:10 -050070}
71
Rob Landley9b3af462012-04-22 23:01:23 -050072// Return path to this node, assembled recursively.
Rob Landley103b7e02007-10-04 02:04:10 -050073
Rob Landleyeb7ea222012-04-14 22:30:41 -050074char *dirtree_path(struct dirtree *node, int *plen)
Rob Landley103b7e02007-10-04 02:04:10 -050075{
Rob Landley7aa651a2012-11-13 17:14:08 -060076 char *path;
77 int len;
Rob Landley103b7e02007-10-04 02:04:10 -050078
Rob Landley7aa651a2012-11-13 17:14:08 -060079 if (!node || !node->name) {
80 path = xmalloc(*plen);
81 *plen = 0;
82 return path;
83 }
Rob Landleyeb7ea222012-04-14 22:30:41 -050084
Rob Landley7aa651a2012-11-13 17:14:08 -060085 len = (plen ? *plen : 0)+strlen(node->name)+1;
86 path = dirtree_path(node->parent, &len);
87 if (len && path[len-1] != '/') path[len++]='/';
88 len = (stpcpy(path+len, node->name) - path);
89 if (plen) *plen = len;
Rob Landleyeb7ea222012-04-14 22:30:41 -050090
Rob Landley7aa651a2012-11-13 17:14:08 -060091 return path;
Rob Landleyeb7ea222012-04-14 22:30:41 -050092}
93
Rob Landley6ec21782012-06-16 15:16:08 -050094int dirtree_parentfd(struct dirtree *node)
95{
Rob Landley7aa651a2012-11-13 17:14:08 -060096 return node->parent ? node->parent->data : AT_FDCWD;
Rob Landley6ec21782012-06-16 15:16:08 -050097}
98
Rob Landleyeb7ea222012-04-14 22:30:41 -050099// Handle callback for a node in the tree. Returns saved node(s) or NULL.
100//
101// By default, allocates a tree of struct dirtree, not following symlinks
102// If callback==NULL, or callback always returns 0, allocate tree of struct
Rob Landley6cd8ae62012-05-27 00:56:17 -0500103// dirtree and return root of tree. Otherwise call callback(node) on each
104// hit, free structures after use, and return NULL.
Rob Landleyeb7ea222012-04-14 22:30:41 -0500105//
106
Rob Landley090c5c62012-12-31 14:38:13 -0600107struct dirtree *dirtree_handle_callback(struct dirtree *new,
Rob Landley7aa651a2012-11-13 17:14:08 -0600108 int (*callback)(struct dirtree *node))
Rob Landleyeb7ea222012-04-14 22:30:41 -0500109{
Rob Landley7aa651a2012-11-13 17:14:08 -0600110 int flags, dir = S_ISDIR(new->st.st_mode);
Rob Landleyeb7ea222012-04-14 22:30:41 -0500111
Rob Landley7aa651a2012-11-13 17:14:08 -0600112 if (!callback) callback = dirtree_notdotdot;
Rob Landleyeb7ea222012-04-14 22:30:41 -0500113
Rob Landley7aa651a2012-11-13 17:14:08 -0600114 flags = callback(new);
Rob Landley6cd8ae62012-05-27 00:56:17 -0500115
Rob Landley7aa651a2012-11-13 17:14:08 -0600116 if (dir) {
117 if (flags & (DIRTREE_RECURSE|DIRTREE_COMEAGAIN)) {
Rob Landleyccb73f82014-07-26 13:27:07 -0500118 new->data = openat(dirtree_parentfd(new), new->name, O_CLOEXEC);
Rob Landleyfec3fd12014-07-26 13:30:40 -0500119 flags = dirtree_recurse(new, callback, flags);
Rob Landley7aa651a2012-11-13 17:14:08 -0600120 }
121 }
Rob Landley6cd8ae62012-05-27 00:56:17 -0500122
Rob Landley7aa651a2012-11-13 17:14:08 -0600123 // If this had children, it was callback's job to free them already.
124 if (!(flags & DIRTREE_SAVE)) {
125 free(new);
126 new = NULL;
127 }
Rob Landley103b7e02007-10-04 02:04:10 -0500128
Rob Landley7aa651a2012-11-13 17:14:08 -0600129 return (flags & DIRTREE_ABORT)==DIRTREE_ABORT ? DIRTREE_ABORTVAL : new;
Rob Landley103b7e02007-10-04 02:04:10 -0500130}
131
Rob Landleyeb7ea222012-04-14 22:30:41 -0500132// Recursively read/process children of directory node (with dirfd in data),
133// filtering through callback().
Rob Landley103b7e02007-10-04 02:04:10 -0500134
Rob Landleyfec3fd12014-07-26 13:30:40 -0500135int dirtree_recurse(struct dirtree *node,
136 int (*callback)(struct dirtree *node), int flags)
Rob Landleyeb7ea222012-04-14 22:30:41 -0500137{
Rob Landley7aa651a2012-11-13 17:14:08 -0600138 struct dirtree *new, **ddt = &(node->child);
139 struct dirent *entry;
140 DIR *dir;
Rob Landleyeb7ea222012-04-14 22:30:41 -0500141
Isaac Dunhamc810f9f2013-07-06 11:26:15 -0500142 if (node->data == -1 || !(dir = fdopendir(node->data))) {
Rob Landley7aa651a2012-11-13 17:14:08 -0600143 char *path = dirtree_path(node, 0);
144 perror_msg("No %s", path);
145 free(path);
146 close(node->data);
Rob Landley9b3af462012-04-22 23:01:23 -0500147
Rob Landleyfec3fd12014-07-26 13:30:40 -0500148 return flags;
Rob Landley7aa651a2012-11-13 17:14:08 -0600149 }
Rob Landley9b3af462012-04-22 23:01:23 -0500150
Rob Landley7aa651a2012-11-13 17:14:08 -0600151 // according to the fddir() man page, the filehandle in the DIR * can still
152 // be externally used by things that don't lseek() it.
Rob Landleyeb7ea222012-04-14 22:30:41 -0500153
Rob Landley7aa651a2012-11-13 17:14:08 -0600154 // The extra parentheses are to shut the stupid compiler up.
155 while ((entry = readdir(dir))) {
Rob Landleyfec3fd12014-07-26 13:30:40 -0500156 if (!(new = dirtree_add_node(node, entry->d_name, flags&DIRTREE_SYMFOLLOW)))
Rob Landley7aa651a2012-11-13 17:14:08 -0600157 continue;
Rob Landley090c5c62012-12-31 14:38:13 -0600158 new = dirtree_handle_callback(new, callback);
Rob Landley7aa651a2012-11-13 17:14:08 -0600159 if (new == DIRTREE_ABORTVAL) break;
160 if (new) {
161 *ddt = new;
162 ddt = &((*ddt)->next);
163 }
164 }
Rob Landleyeb7ea222012-04-14 22:30:41 -0500165
Rob Landleyfec3fd12014-07-26 13:30:40 -0500166 if (flags & DIRTREE_COMEAGAIN) flags = callback(node);
167
Rob Landley7aa651a2012-11-13 17:14:08 -0600168 // This closes filehandle as well, so note it
169 closedir(dir);
170 node->data = -1;
Rob Landleyfec3fd12014-07-26 13:30:40 -0500171
172 return flags;
Rob Landleyeb7ea222012-04-14 22:30:41 -0500173}
174
175// Create dirtree from path, using callback to filter nodes.
176// If callback == NULL allocate a tree of struct dirtree nodes and return
177// pointer to root node.
Rob Landley78aaef22012-06-24 18:35:49 -0500178// symfollow is just for the top of tree, callback return code controls children
Rob Landleyeb7ea222012-04-14 22:30:41 -0500179
180struct dirtree *dirtree_read(char *path, int (*callback)(struct dirtree *node))
181{
Rob Landley3162c272012-12-06 15:13:30 -0600182 struct dirtree *root = dirtree_add_node(0, path, 0);
Rob Landleyeb7ea222012-04-14 22:30:41 -0500183
Rob Landley090c5c62012-12-31 14:38:13 -0600184 return root ? dirtree_handle_callback(root, callback) : DIRTREE_ABORTVAL;
Rob Landleyeb7ea222012-04-14 22:30:41 -0500185}