You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
1.6 KiB

  1. /*
  2. ISC License
  3. Copyright (c) 2019, Antonio SJ Musumeci <trapexit@spawn.link>
  4. Permission to use, copy, modify, and/or distribute this software for any
  5. purpose with or without fee is hereby granted, provided that the above
  6. copyright notice and this permission notice appear in all copies.
  7. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. */
  15. #pragma once
  16. #include "fs_fstat.hpp"
  17. #include <sys/stat.h>
  18. #define MODE_BITS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)
  19. namespace fs
  20. {
  21. static
  22. inline
  23. int
  24. fchmod(const int fd_,
  25. const mode_t mode_)
  26. {
  27. return ::fchmod(fd_,mode_);
  28. }
  29. static
  30. inline
  31. int
  32. fchmod(const int fd_,
  33. const struct stat &st_)
  34. {
  35. return ::fchmod(fd_,st_.st_mode);
  36. }
  37. static
  38. inline
  39. int
  40. fchmod_check_on_error(const int fd_,
  41. const struct stat &st_)
  42. {
  43. int rv;
  44. rv = fs::fchmod(fd_,st_);
  45. if(rv == -1)
  46. {
  47. int error;
  48. struct stat tmpst;
  49. error = errno;
  50. rv = fs::fstat(fd_,&tmpst);
  51. if(rv == -1)
  52. return -1;
  53. if((st_.st_mode & MODE_BITS) != (tmpst.st_mode & MODE_BITS))
  54. return (errno=error,-1);
  55. }
  56. return 0;
  57. }
  58. }