minor optimizations
[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
46 vcCfgStyle
47 vc_getVserverCfgStyle(char const *id)
48 {
49   vcCfgStyle    res = vcCFG_NONE;
50   size_t        l1  = strlen(id);
51   char          buf[l1 +
52                     MAX(sizeof(CONFDIR "/"),sizeof(DEFAULT_VSERVERDIR "/")) +
53                     MAX(sizeof("/legacy"),  sizeof(".conf")) - 1];
54   char *        marker = 0;
55   bool          is_path;
56
57   strcpy(buf,    id);
58   marker = buf+l1;
59   strcpy(marker, "/vdir");
60
61   is_path = isAbsPath(buf) || isRelPath(buf);
62   if (is_path && ISDIR)
63     res = vcCFG_RECENT_FULL;
64   else if (!is_path) {
65     strcpy(buf,                         CONFDIR "/");
66     strcpy(buf+sizeof(CONFDIR "/") - 1, id);
67     marker = buf+sizeof(CONFDIR "/")+l1 - 1;
68     strcpy(marker, "/vdir");
69
70     if (ISDIR) res = vcCFG_RECENT_SHORT;
71     else {
72       strcpy(buf,                                  DEFAULT_VSERVERDIR "/");
73       strcpy(buf+sizeof(DEFAULT_VSERVERDIR)+1 - 1, id);
74
75       if (ISDIR) res = vcCFG_LEGACY;
76     }
77
78     if (res==vcCFG_LEGACY) {
79       strcpy(buf,                            CONFDIR "/");
80       strcpy(buf+sizeof(CONFDIR "/") - 1,    id);
81       strcpy(buf+sizeof(CONFDIR "/")+l1 - 1, ".conf");
82
83       if (!ISDIR) res = vcCFG_NONE;
84     }
85   }
86
87
88   if (res==vcCFG_RECENT_FULL || res==vcCFG_RECENT_SHORT) {
89     assert(marker!=0);
90     strcpy(marker, "/legacy");
91     if (access(buf, F_OK)==0) res=vcCFG_LEGACY;
92   }
93
94   return res;
95 }