minor optimizations
[util-vserver.git] / util-vserver / lib_internal / switchtowatchxid.c
1 // $Id$    --*- c -*--
2
3 // Copyright (C) 2004 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 <errno.h>
25 #include <unistd.h>
26
27   // try to switch in context 1
28 bool
29 switchToWatchXid(char const **errptr)
30 {
31 #if 0
32 #  warning Compiling in debug-code
33   return;
34 #endif
35   if (vc_get_task_xid(0)==1) return true;
36
37   if (vc_isSupported(vcFEATURE_MIGRATE)) {
38     int         max_tries = 20;
39     again:
40     if (vc_ctx_create(1)==VC_NOCTX) {
41       if (errno==EBUSY && --max_tries>0) {
42         usleep(50000);
43         goto again;
44       }
45         
46       if (errno!=EEXIST) {
47         if (errptr) *errptr = "vc_create_context()";
48         return false;
49       }
50
51       if (vc_ctx_migrate(1)==-1) {
52         if (errptr) *errptr = "vc_migrate_context()";
53         return false;
54       }
55     }
56     else {
57       struct vc_ctx_flags       flags = {
58         .flagword = 0,
59         .mask     = VC_VXF_STATE_SETUP,
60       };
61
62       if (vc_set_cflags(1, &flags)==-1) {
63         if (errptr) *errptr = "vc_set_cflags()";
64         return false;
65       }
66     }
67   }
68   else {
69 #if VC_ENABLE_API_COMPAT
70     if (vc_new_s_context(1,0,0)==VC_NOCTX) {
71       if (errptr) *errptr = "vc_new_s_context()";
72       return false;
73     }
74 #else
75     if (errptr) *errptr = "can not change context: migrate kernel feature missing and 'compat' API disabled";
76     errno = ENOSYS;
77     return false;
78 #endif
79   }
80
81   return true;
82 }
83