blob: 9a286f3ff372d1b58bcd9e7bc7d69d3cf032ea9e [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
Manuel Novoa III cad53642003-03-19 09:13:01 +00003 * mode_string implementation for busybox
Eric Andersenaad1a882001-03-16 22:47:14 +00004 *
Manuel Novoa III cad53642003-03-19 09:13:01 +00005 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
Eric Andersenaad1a882001-03-16 22:47:14 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersenaad1a882001-03-16 22:47:14 +00008 */
Manuel Novoa III cad53642003-03-19 09:13:01 +00009#include <assert.h>
Bernhard Reutner-Fischer421d9e52006-04-03 16:39:31 +000010#include "libbb.h"
11
Manuel Novoa III cad53642003-03-19 09:13:01 +000012#if ( S_ISUID != 04000 ) || ( S_ISGID != 02000 ) || ( S_ISVTX != 01000 ) \
13 || ( S_IRUSR != 00400 ) || ( S_IWUSR != 00200 ) || ( S_IXUSR != 00100 ) \
14 || ( S_IRGRP != 00040 ) || ( S_IWGRP != 00020 ) || ( S_IXGRP != 00010 ) \
15 || ( S_IROTH != 00004 ) || ( S_IWOTH != 00002 ) || ( S_IXOTH != 00001 )
16#error permission bitflag value assumption(s) violated!
17#endif
Eric Andersenaad1a882001-03-16 22:47:14 +000018
Manuel Novoa III cad53642003-03-19 09:13:01 +000019#if ( S_IFSOCK!= 0140000 ) || ( S_IFLNK != 0120000 ) \
20 || ( S_IFREG != 0100000 ) || ( S_IFBLK != 0060000 ) \
21 || ( S_IFDIR != 0040000 ) || ( S_IFCHR != 0020000 ) \
22 || ( S_IFIFO != 0010000 )
23#warning mode type bitflag value assumption(s) violated! falling back to larger version
Eric Andersenaad1a882001-03-16 22:47:14 +000024
Manuel Novoa III cad53642003-03-19 09:13:01 +000025#if (S_IRWXU | S_IRWXG | S_IRWXO | S_ISUID | S_ISGID | S_ISVTX) == 07777
26#undef mode_t
27#define mode_t unsigned short
28#endif
Eric Andersenaad1a882001-03-16 22:47:14 +000029
Denys Vlasenko965b7952020-11-30 13:03:03 +010030static const mode_t mode_flags[] ALIGN4 = {
Manuel Novoa III cad53642003-03-19 09:13:01 +000031 S_IRUSR, S_IWUSR, S_IXUSR, S_ISUID,
32 S_IRGRP, S_IWGRP, S_IXGRP, S_ISGID,
33 S_IROTH, S_IWOTH, S_IXOTH, S_ISVTX
Eric Andersenaad1a882001-03-16 22:47:14 +000034};
35
Manuel Novoa III cad53642003-03-19 09:13:01 +000036/* The static const char arrays below are duplicated for the two cases
37 * because moving them ahead of the mode_flags declaration cause a text
38 * size increase with the gcc version I'm using. */
Eric Andersenaad1a882001-03-16 22:47:14 +000039
Manuel Novoa III cad53642003-03-19 09:13:01 +000040/* The previous version used "0pcCd?bB-?l?s???". However, the '0', 'C',
41 * and 'B' types don't appear to be available on linux. So I removed them. */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000042static const char type_chars[16] ALIGN1 = "?pc?d?b?-?l?s???";
Denis Vlasenko0e525412008-07-11 13:57:08 +000043/***************************************** 0123456789abcdef */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000044static const char mode_chars[7] ALIGN1 = "rwxSTst";
Eric Andersenaad1a882001-03-16 22:47:14 +000045
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000046const char* FAST_FUNC bb_mode_string(mode_t mode)
Eric Andersenaad1a882001-03-16 22:47:14 +000047{
48 static char buf[12];
Manuel Novoa III cad53642003-03-19 09:13:01 +000049 char *p = buf;
Eric Andersenaad1a882001-03-16 22:47:14 +000050
Manuel Novoa III cad53642003-03-19 09:13:01 +000051 int i, j, k;
Eric Andersenaad1a882001-03-16 22:47:14 +000052
Manuel Novoa III cad53642003-03-19 09:13:01 +000053 *p = type_chars[ (mode >> 12) & 0xf ];
54 i = 0;
55 do {
56 j = k = 0;
57 do {
58 *++p = '-';
59 if (mode & mode_flags[i+j]) {
60 *p = mode_chars[j];
61 k = j;
62 }
63 } while (++j < 3);
64 if (mode & mode_flags[i+j]) {
65 *p = mode_chars[3 + (k & 2) + ((i&8) >> 3)];
66 }
67 i += 4;
68 } while (i < 12);
69
70 /* Note: We don't bother with nul termination because bss initialization
71 * should have taken care of that for us. If the user scribbled in buf
72 * memory, they deserve whatever happens. But we'll at least assert. */
73 assert(buf[10] == 0);
74
Eric Andersenaad1a882001-03-16 22:47:14 +000075 return buf;
76}
77
Manuel Novoa III cad53642003-03-19 09:13:01 +000078#else
79
80/* The previous version used "0pcCd?bB-?l?s???". However, the '0', 'C',
81 * and 'B' types don't appear to be available on linux. So I removed them. */
Denys Vlasenko3e134eb2016-04-22 18:09:21 +020082static const char type_chars[16] ALIGN1 = "?pc?d?b?-?l?s???";
Denis Vlasenko0e525412008-07-11 13:57:08 +000083/********************************** 0123456789abcdef */
Denys Vlasenko3e134eb2016-04-22 18:09:21 +020084static const char mode_chars[7] ALIGN1 = "rwxSTst";
Manuel Novoa III cad53642003-03-19 09:13:01 +000085
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000086const char* FAST_FUNC bb_mode_string(mode_t mode)
Manuel Novoa III cad53642003-03-19 09:13:01 +000087{
88 static char buf[12];
89 char *p = buf;
90
91 int i, j, k, m;
92
93 *p = type_chars[ (mode >> 12) & 0xf ];
94 i = 0;
95 m = 0400;
96 do {
97 j = k = 0;
98 do {
99 *++p = '-';
100 if (mode & m) {
101 *p = mode_chars[j];
102 k = j;
103 }
104 m >>= 1;
105 } while (++j < 3);
106 ++i;
107 if (mode & (010000 >> i)) {
Manuel Novoa III 062913f2003-08-14 02:28:49 +0000108 *p = mode_chars[3 + (k & 2) + (i == 3)];
Manuel Novoa III cad53642003-03-19 09:13:01 +0000109 }
110 } while (i < 3);
111
112 /* Note: We don't bother with nul termination because bss initialization
113 * should have taken care of that for us. If the user scribbled in buf
114 * memory, they deserve whatever happens. But we'll at least assert. */
115 assert(buf[10] == 0);
116
117 return buf;
118}
119
120#endif