initial checkin
[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 vcCfgStyle
32 vc_getVserverCfgStyle(char const *id)
33 {
34   vcCfgStyle    res = vcCFG_NONE;
35   size_t        l1  = strlen(id);
36   char          buf[l1 +
37                     MAX(sizeof(CONFDIR "/"),sizeof(DEFAULT_VSERVERDIR "/")) +
38                     sizeof("/legacy") - 1];
39   char *        marker = 0;
40
41   strcpy(buf,    id);
42   marker = buf+l1;
43   strcpy(marker, "/vdir");
44   
45   if (access(buf, X_OK)==0) res = vcCFG_RECENT_FULL;
46   else {
47     strcpy(buf,                         CONFDIR "/");
48     strcpy(buf+sizeof(CONFDIR "/") - 1, id);
49     marker = buf+sizeof(CONFDIR "/")+l1 - 1;
50     strcpy(marker, "/vdir");
51
52     if (access(buf, X_OK)==0) res = vcCFG_RECENT_SHORT;
53     else {
54       strcpy(buf,                                  DEFAULT_VSERVERDIR "/");
55       strcpy(buf+sizeof(DEFAULT_VSERVERDIR)+1 - 1, id);
56
57       if (access(buf, X_OK)) res = vcCFG_LEGACY;
58     }
59   }
60
61   if (res==vcCFG_RECENT_FULL || res==vcCFG_RECENT_SHORT) {
62     assert(marker!=0);
63     strcpy(marker, "/legacy");
64     if (access(buf, F_OK)==0) res=vcCFG_LEGACY;
65   }
66
67   return res;
68 }