From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/2] package/makedevs: add recursive option
Date: Thu, 9 Apr 2015 23:23:31 +0200 [thread overview]
Message-ID: <20150409212331.GB4192@free.fr> (raw)
In-Reply-To: <1426243805-8317-2-git-send-email-angelo.compagnucci@gmail.com>
Angelo, All,
On 2015-03-13 11:50 +0100, Angelo Compagnucci spake thusly:
> This patch adds the possibilty to change owner/permission
> of a folder recursively.
>
> Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
[I really only did a review and no actual tests]
As a side comment: maybe that would be interesting to submit a similar
patch for busybox (where makedevs originated); note however that busybox
has changed quite a lot since we forked makedevs...
Regards,
Yann E. MORIN.
> ---
> package/makedevs/makedevs.c | 23 +++++++++++++++++++++++
> 1 file changed, 23 insertions(+)
>
> diff --git a/package/makedevs/makedevs.c b/package/makedevs/makedevs.c
> index ab90b93..e575427 100644
> --- a/package/makedevs/makedevs.c
> +++ b/package/makedevs/makedevs.c
> @@ -34,6 +34,8 @@
> #ifndef __APPLE__
> #include <sys/sysmacros.h> /* major() and minor() */
> #endif
> +#include <ftw.h>
> +
>
> const char *bb_applet_name;
>
> @@ -332,6 +334,7 @@ void bb_show_usage(void)
> fprintf(stderr, "Where name is the file name, type can be one of:\n");
> fprintf(stderr, " f A regular file\n");
> fprintf(stderr, " d Directory\n");
> + fprintf(stderr, " r Directory recursively\n");
> fprintf(stderr, " c Character special device file\n");
> fprintf(stderr, " b Block special device file\n");
> fprintf(stderr, " p Fifo (named pipe)\n");
> @@ -364,6 +367,20 @@ void bb_show_usage(void)
> exit(1);
> }
>
> +bb_recursive(const char *full_name, uid_t uid, gid_t gid, unsigned int mode){
> +
> + int chmod_chown(const char *fpath, const struct stat *sb,
> + int tflag, struct FTW *ftwbuf) {
> + if (chown(fpath, uid, gid) == -1) return -1;
> + if ((mode != -1)) {
> + if (chmod(fpath, mode) < 0) return -1;
> + }
> + return 0;
> + }
> +
> + return nftw(full_name, chmod_chown, 20, FTW_MOUNT | FTW_PHYS);
> +}
> +
> int main(int argc, char **argv)
> {
> int opt;
> @@ -474,6 +491,12 @@ int main(int argc, char **argv)
> ret = EXIT_FAILURE;
> goto loop;
> }
> + } else if (type == 'r') {
> + if (bb_recursive(full_name, uid, gid, mode) < 0) {
> + bb_perror_msg("line %d: recursive failed for %s", linenum, full_name);
> + ret = EXIT_FAILURE;
> + goto loop;
> + }
> } else
> {
> dev_t rdev;
> --
> 1.9.1
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
next prev parent reply other threads:[~2015-04-09 21:23 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-13 10:50 [Buildroot] [PATCH 0/2] Makedevs: add recursive option Angelo Compagnucci
2015-03-13 10:50 ` [Buildroot] [PATCH 1/2] package/makedevs: " Angelo Compagnucci
2015-04-04 23:17 ` Angelo Compagnucci
2015-04-05 7:12 ` Peter Korsgaard
2015-04-09 21:23 ` Yann E. MORIN [this message]
2015-04-10 5:39 ` Angelo Compagnucci
2015-04-10 17:33 ` Yann E. MORIN
2015-04-10 21:41 ` Peter Korsgaard
2015-04-11 7:00 ` Angelo Compagnucci
2015-04-11 8:28 ` Peter Korsgaard
2015-03-13 10:50 ` [Buildroot] [PATCH 2/2] docs/manual: documentation for recursive makedevs syntax Angelo Compagnucci
2015-03-23 10:00 ` [Buildroot] [PATCH 0/2] Makedevs: add recursive option Angelo Compagnucci
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150409212331.GB4192@free.fr \
--to=yann.morin.1998@free.fr \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox