ce793f8bd7fd7fea9c9ddc2f9c0ae261628462d9
[util-vserver.git] / lib / bcaps-v13.c
1 // $Id: bcaps-v13.c,v 1.5 2005/07/15 16:27:37 ensc Exp $    --*- c -*--
2
3 // Copyright (C) 2004 Enrico Scholz <ensc@delenn.intern.sigma-chemnitz.de>
4 //  
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; version 2 of the License.
8 //  
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //  
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18
19 #ifdef HAVE_CONFIG_H
20 #  include <config.h>
21 #endif
22
23 #include "vserver.h"
24 #include "internal.h"
25 #include <lib_internal/util-dimof.h>
26 #include <linux/capability.h>
27
28 #include <string.h>
29 #include <strings.h>
30 #include <assert.h>
31
32 #define DECL(VAL) { #VAL, sizeof(#VAL)-1, 1 << (CAP_ ## VAL) }
33
34 #ifndef CAP_AUDIT_WRITE
35 #  define CAP_AUDIT_WRITE       29
36 #endif
37
38 #ifndef CAP_AUDIT_CONTROL
39 #  define CAP_AUDIT_CONTROL     30
40 #endif
41
42 static struct Mapping_uint64 const VALUES[] = {
43   DECL(CHOWN),
44   DECL(DAC_OVERRIDE),
45   DECL(DAC_READ_SEARCH),
46   DECL(FOWNER),
47   DECL(FSETID),
48   DECL(KILL),
49   DECL(SETGID),
50   DECL(SETUID),
51   DECL(SETPCAP),
52   DECL(LINUX_IMMUTABLE),
53   DECL(NET_BIND_SERVICE),
54   DECL(NET_BROADCAST),
55   DECL(NET_ADMIN),
56   DECL(NET_RAW),
57   DECL(IPC_LOCK),
58   DECL(IPC_OWNER),
59   DECL(SYS_MODULE),
60   DECL(SYS_RAWIO),
61   DECL(SYS_CHROOT),
62   DECL(SYS_PTRACE),
63   DECL(SYS_PACCT),
64   DECL(SYS_ADMIN),
65   DECL(SYS_BOOT),
66   DECL(SYS_NICE),
67   DECL(SYS_RESOURCE),
68   DECL(SYS_TIME),
69   DECL(SYS_TTY_CONFIG),
70   DECL(MKNOD),
71   DECL(LEASE),
72   DECL(AUDIT_WRITE),
73   DECL(AUDIT_CONTROL),
74 };
75
76 inline static char const *
77 removePrefix(char const *str, size_t *len)
78 {
79   if ((len==0 || *len==0 || *len>4) &&
80       strncasecmp("cap_", str, 4)==0) {
81     if (len && *len>4) *len -= 4;
82     return str+4;
83   }
84   else
85     return str;
86 }
87
88 uint_least64_t
89 vc_text2bcap(char const *str, size_t len)
90 {
91   char const *  tmp = removePrefix(str, &len);
92   ssize_t       idx = utilvserver_value2text_uint64(tmp, len,
93                                                     VALUES, DIM_OF(VALUES));
94   if (idx==-1) return 0;
95   else         return VALUES[idx].val;
96 }
97
98 char const *
99 vc_lobcap2text(uint_least64_t *val)
100 {
101   ssize_t       idx = utilvserver_text2value_uint64(val,
102                                                     VALUES, DIM_OF(VALUES));
103
104   if (idx==-1) return 0;
105   else         return VALUES[idx].id;
106 }