merge with 0.30.213
[util-vserver.git] / lib / personalitytype.c
1 // $Id: personalitytype.c 2159 2005-07-15 19:40:15Z ensc $    --*- c -*--
2
3 // Copyright (C) 2005 Enrico Scholz <enrico.scholz@informatik.tu-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/personality.h>
27
28 #include <string.h>
29 #include <strings.h>
30 #include <assert.h>
31
32 #define DECL(VAL) { #VAL, sizeof(#VAL)-1, (PER_ ## VAL) }
33
34 static struct Mapping_uint32 const VALUES[] = {
35 #if HAVE_DECL_PER_LINUX
36   DECL(LINUX),
37 #endif
38
39 #if HAVE_DECL_PER_LINUX_32BIT
40   DECL(LINUX_32BIT),
41 #endif
42
43 #if HAVE_DECL_PER_SVR4
44   DECL(SVR4),
45 #endif
46
47 #if HAVE_DECL_PER_SVR3
48   DECL(SVR3),
49 #endif
50
51 #if HAVE_DECL_PER_SCOSVR3
52   DECL(SCOSVR3),
53 #endif
54
55 #if HAVE_DECL_PER_OSR5
56   DECL(OSR5),
57 #endif
58
59 #if HAVE_DECL_PER_WYSEV386
60   DECL(WYSEV386),
61 #endif
62
63 #if HAVE_DECL_PER_ISCR4
64   DECL(ISCR4),
65 #endif
66
67 #if HAVE_DECL_PER_BSD
68   DECL(BSD),
69 #endif
70
71 #if HAVE_DECL_PER_SUNOS
72   DECL(SUNOS),
73 #endif
74
75 #if HAVE_DECL_PER_XENIX
76   DECL(XENIX),
77 #endif
78
79 #if HAVE_DECL_PER_LINUX32
80   DECL(LINUX32),
81 #endif
82
83 #if HAVE_DECL_PER_LINUX32_3GB
84   DECL(LINUX32_3GB),
85 #endif
86
87 #if HAVE_DECL_PER_IRIX32
88   DECL(IRIX32),
89 #endif
90
91 #if HAVE_DECL_PER_IRIXN32
92   DECL(IRIXN32),
93 #endif
94
95 #if HAVE_DECL_PER_IRIX64
96   DECL(IRIX64),
97 #endif
98
99 #if HAVE_DECL_PER_RISCOS
100   DECL(RISCOS),
101 #endif
102
103 #if HAVE_DECL_PER_SOLARIS
104   DECL(SOLARIS),
105 #endif
106
107 #if HAVE_DECL_PER_UW7
108   DECL(UW7),
109 #endif
110
111 #if HAVE_DECL_PER_HPUX
112   DECL(HPUX),
113 #endif
114
115 #if HAVE_DECL_PER_OSF4
116   DECL(OSF4),
117 #endif
118
119 };
120
121 static char const *
122 removePrefix(char const *str, size_t *len)
123 {
124   if ((len==0 || *len==0 || *len>4) &&
125       strncasecmp("per_", str, 4)==0) {
126     if (len && *len>4) *len -= 4;
127     return str+4;
128   }
129   else
130     return str;
131 }
132
133 uint_least32_t
134 vc_str2personalitytype(char const *str, size_t len)
135 {
136   char const    *tmp = removePrefix(str, &len);
137   ssize_t       idx  = utilvserver_value2text_uint32(tmp, len,
138                                                      VALUES, DIM_OF(VALUES));
139
140   if (idx==-1) return VC_BAD_PERSONALITY;
141   else         return VALUES[idx].val;
142 }