added rpm_execcon() wrapper to make it work in SELinux environments
[util-vserver.git] / util-vserver / lib / getvservercfgstyle.c
1 // $Id$    --*- c -*--
2
3 // Copyright (C) 2003 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 "pathconfig.h"
25 #include "internal.h"
26
27 #include <string.h>
28 #include <sys/param.h>
29 #include <unistd.h>
30 #include <assert.h>
31
32 static inline bool
33 isRelPath(char const *p)
34 {
35   return p[0]=='.' && (p[1]=='/' || (p[1]=='.' && p[2]=='/'));
36 }
37
38 static inline bool
39 isAbsPath(char const *p)
40 {
41   return p[0]=='/';
42 }
43
44 #define ISDIR   utilvserver_isDirectory(buf, true)
45 #define ISFILE  utilvserver_isFile(buf, true)
46
47 vcCfgStyle
48 vc_getVserverCfgStyle(char const *id)
49 {
50   vcCfgStyle    res = vcCFG_NONE;
51   size_t        l1  = strlen(id);
52   char          buf[l1 +
53                     MAX(sizeof(CONFDIR "/"),sizeof(DEFAULT_VSERVERDIR "/")) +
54                     MAX(sizeof("/legacy"),  sizeof(".conf")) - 1];
55   char *        marker = 0;
56   bool          is_path;
57
58   strcpy(buf,    id);
59   marker = buf+l1;
60   strcpy(marker, "/vdir");
61
62   is_path = isAbsPath(buf) || isRelPath(buf);
63   if (is_path && ISDIR)
64     res = vcCFG_RECENT_FULL;
65   else if (!is_path) {
66     strcpy(buf,                         CONFDIR "/");
67     strcpy(buf+sizeof(CONFDIR "/") - 1, id);
68     marker = buf+sizeof(CONFDIR "/")+l1 - 1;
69     strcpy(marker, "/vdir");
70
71     if (ISDIR) res = vcCFG_RECENT_SHORT;
72     else {
73       strcpy(buf,                                  DEFAULT_VSERVERDIR "/");
74       strcpy(buf+sizeof(DEFAULT_VSERVERDIR)+1 - 1, id);
75
76       if (ISDIR) res = vcCFG_LEGACY;
77     }
78
79     if (res==vcCFG_LEGACY) {
80       strcpy(buf,                            CONFDIR "/");
81       strcpy(buf+sizeof(CONFDIR "/") - 1,    id);
82       strcpy(buf+sizeof(CONFDIR "/")+l1 - 1, ".conf");
83
84       if (!ISFILE) res = vcCFG_NONE;
85     }
86   }
87
88
89   if (res==vcCFG_RECENT_FULL || res==vcCFG_RECENT_SHORT) {
90     assert(marker!=0);
91     strcpy(marker, "/legacy");
92     if (access(buf, F_OK)==0) res=vcCFG_LEGACY;
93   }
94
95   return res;
96 }