ed99a45b0f7076596da82daf0e754add53f99580
[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
26 #include <string.h>
27 #include <sys/param.h>
28 #include <unistd.h>
29 #include <assert.h>
30
31 static inline bool
32 isRelPath(char const *p)
33 {
34   return p[0]=='.' && (p[1]=='/' || (p[1]=='.' && p[2]=='/'));
35 }
36
37 static inline bool
38 isAbsPath(char const *p)
39 {
40   return p[0]=='/';
41 }
42
43 vcCfgStyle
44 vc_getVserverCfgStyle(char const *id)
45 {
46   vcCfgStyle    res = vcCFG_NONE;
47   size_t        l1  = strlen(id);
48   char          buf[l1 +
49                     MAX(sizeof(CONFDIR "/"),sizeof(DEFAULT_VSERVERDIR "/")) +
50                     MAX(sizeof("/legacy"),  sizeof(".conf")) - 1];
51   char *        marker = 0;
52
53   strcpy(buf,    id);
54   marker = buf+l1;
55   strcpy(marker, "/vdir");
56
57   if (access(buf, X_OK)==0) res = vcCFG_RECENT_FULL;
58   else if (!isRelPath(buf) && !isAbsPath(buf)) {
59     strcpy(buf,                         CONFDIR "/");
60     strcpy(buf+sizeof(CONFDIR "/") - 1, id);
61     marker = buf+sizeof(CONFDIR "/")+l1 - 1;
62     strcpy(marker, "/vdir");
63
64     if (access(buf, X_OK)==0) res = vcCFG_RECENT_SHORT;
65     else {
66       strcpy(buf,                                  DEFAULT_VSERVERDIR "/");
67       strcpy(buf+sizeof(DEFAULT_VSERVERDIR)+1 - 1, id);
68
69       if (access(buf, X_OK)==0) res = vcCFG_LEGACY;
70     }
71
72     if (res==vcCFG_LEGACY) {
73       strcpy(buf,                            CONFDIR "/");
74       strcpy(buf+sizeof(CONFDIR "/") - 1,    id);
75       strcpy(buf+sizeof(CONFDIR "/")+l1 - 1, ".conf");
76
77       if (access(buf, R_OK)!=0) res = vcCFG_NONE;
78     }
79   }
80
81
82   if (res==vcCFG_RECENT_FULL || res==vcCFG_RECENT_SHORT) {
83     assert(marker!=0);
84     strcpy(marker, "/legacy");
85     if (access(buf, F_OK)==0) res=vcCFG_LEGACY;
86   }
87
88   return res;
89 }