2012-01-30 22:41:33 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
Refactor recurse() again
Okay, why yet another recurse()-refactor?
The last one added the recursor-struct, which simplified things
on the user-end, but there was still one thing that bugged me a lot:
Previously, all fn()'s were forced to (l)stat the paths themselves.
This does not work well when you try to keep up with H-, L- and P-
flags at the same time, as each utility-function would have to set
the right function-pointer for (l)stat every single time.
This is not desirable. Furthermore, recurse should be easy to use
and not involve trouble finding the right (l)stat-function to do it
right.
So, what we needed was a stat-argument for each fn(), so it is
directly accessible. This was impossible to do though when the
fn()'s are still directly called by the programs to "start" the
recurse.
Thus, the fundamental change is to make recurse() the function to
go, while designing the fn()'s in a way they can "live" with st
being NULL (we don't want a null-pointer-deref).
What you can see in this commit is the result of this work. Why
all this trouble instead of using nftw?
The special thing about recurse() is that you tell the function
when to recurse() in your fn(). You don't need special flags to
tell nftw() to skip the subtree, just to give an example.
The only single downside to this is that now, you are not allowed
to unconditionally call recurse() from your fn(). It has to be
a directory.
However, that is a cost I think is easily weighed up by the
advantages.
Another thing is the history: I added a procedure at the end of
the outmost recurse to free the history. This way we don't leak
memory.
A simple optimization on the side:
- if (h->dev == st.st_dev && h->ino == st.st_ino)
+ if (h->ino == st.st_ino && h->dev == st.st_dev)
First compare the likely difference in inode-numbers instead of
checking the unlikely condition that the device-numbers are
different.
2015-03-18 23:53:42 +00:00
|
|
|
#include <sys/stat.h>
|
2015-03-12 23:25:32 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
struct history {
|
2015-04-18 20:04:49 +00:00
|
|
|
struct history *prev;
|
|
|
|
dev_t dev;
|
|
|
|
ino_t ino;
|
2015-03-12 23:25:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct recursor {
|
2015-04-18 20:04:49 +00:00
|
|
|
void (*fn)(const char *, struct stat *st, void *, struct recursor *);
|
|
|
|
struct history *hist;
|
|
|
|
int depth;
|
|
|
|
int maxdepth;
|
|
|
|
int follow;
|
|
|
|
int flags;
|
2015-03-12 23:25:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
Audit tar(1), add DIRFIRST-flag to recurse()
I've been wanting to do this for a while now, as tar(1) used to
be one of messiest and cruftiest tools.
First off, before walking through the audit, I'll talk about
what the DIRFIRST-flag for recurse() does.
It basically calls fn() on the first-level-dir before calling
it's subentries. It's necessary here, because else the order
of the tar-files would've been wrong (it would try to create
dir/file before creating dir/).
Now, to the audit:
1) Update manpage, fix mistake that compression is also available
for compressing. It's only available for extracting.
2) Define the major, minor and makedev macros from glibc by ourselves.
No need to rely on them, as they are common sense.
decomp()
3) Simple refactorization.
putoctal()
4) Add a truncation check for snprintf().
archive()
5) BUGFIX: Add checks to any checkable function, don't blindly call
them, this is harmful and there are 100 ways to exploit that.
6) Use estrlcpy() instead of snprintf() wherever possible, fix
alignment.
7) BUGFIX: Terminate the result-buffer of readlink(), check if
it even succeeded.
8) Fix sizeof()-formatting.
unarchive()
9) BUGFIX: Add checks to any checkable function, don't blindly call
them, this is harmful and there are 100 ways to exploit that.
10) BUGFIX: strtoul can happily return negative numbers. Add checks
for that and also if the full string has been processed.
11) Remove calls to perror(). We have eprintf, use it.
12) BUGFIX: "minor = strtoul(h->mode, 0, 8);". We need h->minor of
course.
13) Fix typo "usupported", remove fprintf-call.
print()
14) Check fread().
xt()
15) Get rid of snprintf-magic. Use estrlcat().
16) BUGFIX: check for ferror() on the tarfile.
usage()
17) Update it. The old usage() was like 1000 years old.
main()
18) Add DIRFIRST-flag to the recursor.
19) Don't print usage() when a mode is re-set. We allow this in
general.
20) Add function checks and fix error messages.
21) Add tarfilename-global for proper error-messages.
2015-03-21 00:03:35 +00:00
|
|
|
SAMEDEV = 1 << 0,
|
|
|
|
DIRFIRST = 1 << 1,
|
2015-04-19 12:00:47 +00:00
|
|
|
SILENT = 1 << 2,
|
2015-03-12 23:25:32 +00:00
|
|
|
};
|
|
|
|
|
2014-11-13 20:24:47 +00:00
|
|
|
extern int cp_aflag;
|
|
|
|
extern int cp_fflag;
|
|
|
|
extern int cp_pflag;
|
|
|
|
extern int cp_rflag;
|
|
|
|
extern int cp_vflag;
|
2015-03-19 16:45:30 +00:00
|
|
|
extern int cp_follow;
|
2014-07-21 16:27:20 +00:00
|
|
|
extern int cp_status;
|
2014-07-09 21:28:43 +00:00
|
|
|
|
2014-11-13 20:24:47 +00:00
|
|
|
extern int rm_fflag;
|
|
|
|
extern int rm_rflag;
|
2015-01-30 11:45:54 +00:00
|
|
|
extern int rm_status;
|
2012-01-30 22:41:33 +00:00
|
|
|
|
2015-03-12 23:25:32 +00:00
|
|
|
extern int recurse_status;
|
|
|
|
|
|
|
|
void recurse(const char *, void *, struct recursor *);
|
|
|
|
|
2015-03-02 20:43:56 +00:00
|
|
|
int cp(const char *, const char *, int);
|
Refactor recurse() again
Okay, why yet another recurse()-refactor?
The last one added the recursor-struct, which simplified things
on the user-end, but there was still one thing that bugged me a lot:
Previously, all fn()'s were forced to (l)stat the paths themselves.
This does not work well when you try to keep up with H-, L- and P-
flags at the same time, as each utility-function would have to set
the right function-pointer for (l)stat every single time.
This is not desirable. Furthermore, recurse should be easy to use
and not involve trouble finding the right (l)stat-function to do it
right.
So, what we needed was a stat-argument for each fn(), so it is
directly accessible. This was impossible to do though when the
fn()'s are still directly called by the programs to "start" the
recurse.
Thus, the fundamental change is to make recurse() the function to
go, while designing the fn()'s in a way they can "live" with st
being NULL (we don't want a null-pointer-deref).
What you can see in this commit is the result of this work. Why
all this trouble instead of using nftw?
The special thing about recurse() is that you tell the function
when to recurse() in your fn(). You don't need special flags to
tell nftw() to skip the subtree, just to give an example.
The only single downside to this is that now, you are not allowed
to unconditionally call recurse() from your fn(). It has to be
a directory.
However, that is a cost I think is easily weighed up by the
advantages.
Another thing is the history: I added a procedure at the end of
the outmost recurse to free the history. This way we don't leak
memory.
A simple optimization on the side:
- if (h->dev == st.st_dev && h->ino == st.st_ino)
+ if (h->ino == st.st_ino && h->dev == st.st_dev)
First compare the likely difference in inode-numbers instead of
checking the unlikely condition that the device-numbers are
different.
2015-03-18 23:53:42 +00:00
|
|
|
void rm(const char *, struct stat *st, void *, struct recursor *);
|