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.

65 lines
1.7 KiB

  1. /*
  2. ISC License
  3. Copyright (c) 2020, 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 "errno.hpp"
  17. #include "xattr.hpp"
  18. #include <string>
  19. #include <sys/types.h>
  20. namespace fs
  21. {
  22. static
  23. inline
  24. int
  25. lsetxattr(const char *path_,
  26. const char *name_,
  27. const void *value_,
  28. const size_t size_,
  29. const int flags_)
  30. {
  31. #ifdef USE_XATTR
  32. return ::lsetxattr(path_,
  33. name_,
  34. value_,
  35. size_,
  36. flags_);
  37. #else
  38. return (errno=ENOTSUP,-1);
  39. #endif
  40. }
  41. static
  42. inline
  43. int
  44. lsetxattr(const std::string &path_,
  45. const std::string &name_,
  46. const void *value_,
  47. const size_t size_,
  48. const int flags_)
  49. {
  50. return fs::lsetxattr(path_.c_str(),
  51. name_.c_str(),
  52. value_,
  53. size_,
  54. flags_);
  55. }
  56. }