mode_string.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Utility routines.
  4. *
  5. * Copyright (C) many different people. If you wrote this, please
  6. * acknowledge your work.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  21. * USA
  22. */
  23. #include <stdio.h>
  24. #include "libbb.h"
  25. #define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
  26. #define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
  27. /* The special bits. If set, display SMODE0/1 instead of MODE0/1 */
  28. static const mode_t SBIT[] = {
  29. 0, 0, S_ISUID,
  30. 0, 0, S_ISGID,
  31. 0, 0, S_ISVTX
  32. };
  33. /* The 9 mode bits to test */
  34. static const mode_t MBIT[] = {
  35. S_IRUSR, S_IWUSR, S_IXUSR,
  36. S_IRGRP, S_IWGRP, S_IXGRP,
  37. S_IROTH, S_IWOTH, S_IXOTH
  38. };
  39. static const char MODE1[] = "rwxrwxrwx";
  40. static const char MODE0[] = "---------";
  41. static const char SMODE1[] = "..s..s..t";
  42. static const char SMODE0[] = "..S..S..T";
  43. /*
  44. * Return the standard ls-like mode string from a file mode.
  45. * This is static and so is overwritten on each call.
  46. */
  47. const char *mode_string(int mode)
  48. {
  49. static char buf[12];
  50. int i;
  51. buf[0] = TYPECHAR(mode);
  52. for (i = 0; i < 9; i++) {
  53. if (mode & SBIT[i])
  54. buf[i + 1] = (mode & MBIT[i]) ? SMODE1[i] : SMODE0[i];
  55. else
  56. buf[i + 1] = (mode & MBIT[i]) ? MODE1[i] : MODE0[i];
  57. }
  58. return buf;
  59. }
  60. /* END CODE */
  61. /*
  62. Local Variables:
  63. c-file-style: "linux"
  64. c-basic-offset: 4
  65. tab-width: 4
  66. End:
  67. */