/src/bin/coreutils/lib/root-dev-ino.h

http://github.com/Barrett17/Haiku-services-branch · C Header · 47 lines · 22 code · 7 blank · 18 comment · 3 complexity · e161991605ff4e100e1e72fff4f44d1a MD5 · raw file

  1. /* Root device and inode number checking.
  2. Copyright (C) 2003, 2006, 2009-2010 Free Software Foundation, Inc.
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 3 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  13. #ifndef ROOT_DEV_INO_H
  14. # define ROOT_DEV_INO_H 1
  15. # include "dev-ino.h"
  16. # include "same-inode.h"
  17. struct dev_ino *
  18. get_root_dev_ino (struct dev_ino *root_d_i);
  19. /* These macros are common to the programs that support the
  20. --preserve-root and --no-preserve-root options. */
  21. # define ROOT_DEV_INO_CHECK(Root_dev_ino, Dir_statbuf) \
  22. (Root_dev_ino && SAME_INODE (*Dir_statbuf, *Root_dev_ino))
  23. # define ROOT_DEV_INO_WARN(Dirname) \
  24. do \
  25. { \
  26. if (STREQ (Dirname, "/")) \
  27. error (0, 0, _("it is dangerous to operate recursively on %s"), \
  28. quote (Dirname)); \
  29. else \
  30. error (0, 0, \
  31. _("it is dangerous to operate recursively on %s (same as %s)"), \
  32. quote_n (0, Dirname), quote_n (1, "/")); \
  33. error (0, 0, _("use --no-preserve-root to override this failsafe")); \
  34. } \
  35. while (0)
  36. #endif