blob: 12dc17966f61d5660e86897e0d3ebe78de13284c [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) many different people. If you wrote this, please
6 * acknowledge your work.
Eric Andersenaad1a882001-03-16 22:47:14 +00007 *
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 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +000013 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
Eric Andersenaad1a882001-03-16 22:47:14 +000015 * 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
Eric Andersenbdfd0d72001-10-24 05:00:29 +000020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 * USA
Eric Andersenaad1a882001-03-16 22:47:14 +000022 */
23
24#include <stdio.h>
25#include "libbb.h"
26
27
28
29#define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
30#define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
31
32/* The special bits. If set, display SMODE0/1 instead of MODE0/1 */
33static const mode_t SBIT[] = {
34 0, 0, S_ISUID,
35 0, 0, S_ISGID,
36 0, 0, S_ISVTX
37};
38
39/* The 9 mode bits to test */
40static const mode_t MBIT[] = {
41 S_IRUSR, S_IWUSR, S_IXUSR,
42 S_IRGRP, S_IWGRP, S_IXGRP,
43 S_IROTH, S_IWOTH, S_IXOTH
44};
45
46static const char MODE1[] = "rwxrwxrwx";
47static const char MODE0[] = "---------";
48static const char SMODE1[] = "..s..s..t";
49static const char SMODE0[] = "..S..S..T";
50
51/*
52 * Return the standard ls-like mode string from a file mode.
53 * This is static and so is overwritten on each call.
54 */
55const char *mode_string(int mode)
56{
57 static char buf[12];
58
59 int i;
60
61 buf[0] = TYPECHAR(mode);
62 for (i = 0; i < 9; i++) {
63 if (mode & SBIT[i])
64 buf[i + 1] = (mode & MBIT[i]) ? SMODE1[i] : SMODE0[i];
65 else
66 buf[i + 1] = (mode & MBIT[i]) ? MODE1[i] : MODE0[i];
67 }
68 return buf;
69}
70
71/* END CODE */
72/*
73Local Variables:
74c-file-style: "linux"
75c-basic-offset: 4
76tab-width: 4
77End:
78*/