Support the prefixes for all types of flags and capabilities.
[util-vserver.git] / lib / vserver.h
1 /* $Id$
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; either version 2, or (at your option)
8 *  any later version.
9 *   
10 *  This program is distributed in the hope that it will be useful,
11 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 *  GNU General Public License for more details.
14 *   
15 *  You should have received a copy of the GNU General Public License
16 *  along with this program; if not, write to the Free Software
17 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20 /** \file vserver.h
21  *  \brief The public interface of the the libvserver library.
22  */
23
24 #ifndef H_VSERVER_SYSCALL_H
25 #define H_VSERVER_SYSCALL_H
26
27 #include <stdint.h>
28 #include <stdlib.h>
29 #include <stdbool.h>
30 #include <sys/types.h>
31
32 #ifndef IS_DOXYGEN
33 #if defined(__GNUC__)
34 #  define VC_ATTR_UNUSED                __attribute__((__unused__))
35 #  define VC_ATTR_NORETURN              __attribute__((__noreturn__))
36 #  define VC_ATTR_CONST                 __attribute__((__const__))
37 #  define VC_ATTR_DEPRECATED            __attribute__((__deprecated__))
38 #  if __GNUC__*0x10000 + __GNUC_MINOR__*0x100 + __GNUC_PATCHLEVEL__ >= 0x30300
39 #    define VC_ATTR_NONNULL(ARGS)       __attribute__((__nonnull__ ARGS))
40 #    define VC_ATTR_ALWAYSINLINE        __attribute__((__always_inline__))
41 #  else
42 #    define VC_ATTR_NONNULL(ARGS)
43 #    define VC_ATTR_ALWAYSINLINE
44 #  endif
45 #  if __GNUC__*0x10000 + __GNUC_MINOR__*0x100 + __GNUC_PATCHLEVEL__ >= 0x30303
46 #    define VC_ATTR_PURE                __attribute__((__pure__))
47 #  else
48 #    define VC_ATTR_PURE
49 #  endif
50 #else
51 #  define VC_ATTR_NONNULL(ARGS)
52 #  define VC_ATTR_UNUSED
53 #  define VC_ATTR_NORETURN
54 #  define VC_ATTR_ALWAYSINLINE
55 #  define VC_ATTR_DEPRECATED
56 #  define VC_ATTR_PURE
57 #  define VC_ATTR_CONST
58 #endif
59 #endif  // IS_DOXYGEN
60
61 /** the value which is returned in error-case (no ctx found) */
62 #define VC_NOCTX                ((xid_t)(-1))
63 #define VC_NOXID                ((xid_t)(-1))
64 /** the value which means a random (the next free) ctx */
65 #define VC_DYNAMIC_XID          ((xid_t)(-1))
66 /** the value which means the current ctx */
67 #define VC_SAMECTX              ((xid_t)(-2))
68
69 #define VC_NONID                ((nid_t)(-1))
70 #define VC_DYNAMIC_NID          ((nid_t)(-1))
71
72 #define VC_LIM_INFINITY         (~0ULL)
73 #define VC_LIM_KEEP             (~1ULL)
74
75 #define VC_CDLIM_UNSET          (0U)
76 #define VC_CDLIM_INFINITY       (~0U)
77 #define VC_CDLIM_KEEP           (~1U)
78   
79 #ifndef S_CTX_INFO_LOCK
80 #  define S_CTX_INFO_LOCK       1
81 #endif
82
83 #ifndef S_CTX_INFO_SCHED
84 #  define S_CTX_INFO_SCHED      2
85 #endif
86
87 #ifndef S_CTX_INFO_NPROC
88 #  define S_CTX_INFO_NPROC      4
89 #endif
90
91 #ifndef S_CTX_INFO_PRIVATE
92 #  define S_CTX_INFO_PRIVATE    8
93 #endif
94
95 #ifndef S_CTX_INFO_INIT
96 #  define S_CTX_INFO_INIT       16
97 #endif
98
99 #ifndef S_CTX_INFO_HIDEINFO
100 #  define S_CTX_INFO_HIDEINFO   32
101 #endif
102
103 #ifndef S_CTX_INFO_ULIMIT
104 #  define S_CTX_INFO_ULIMIT     64
105 #endif
106
107 #ifndef S_CTX_INFO_NAMESPACE
108 #  define S_CTX_INFO_NAMESPACE  128
109 #endif
110
111 #define VC_CAP_CHOWN                     0
112 #define VC_CAP_DAC_OVERRIDE              1
113 #define VC_CAP_DAC_READ_SEARCH           2
114 #define VC_CAP_FOWNER                    3
115 #define VC_CAP_FSETID                    4
116 #define VC_CAP_KILL                      5
117 #define VC_CAP_SETGID                    6
118 #define VC_CAP_SETUID                    7
119 #define VC_CAP_SETPCAP                   8
120 #define VC_CAP_LINUX_IMMUTABLE           9
121 #define VC_CAP_NET_BIND_SERVICE         10
122 #define VC_CAP_NET_BROADCAST            11
123 #define VC_CAP_NET_ADMIN                12
124 #define VC_CAP_NET_RAW                  13
125 #define VC_CAP_IPC_LOCK                 14
126 #define VC_CAP_IPC_OWNER                15
127 #define VC_CAP_SYS_MODULE               16
128 #define VC_CAP_SYS_RAWIO                17
129 #define VC_CAP_SYS_CHROOT               18
130 #define VC_CAP_SYS_PTRACE               19
131 #define VC_CAP_SYS_PACCT                20
132 #define VC_CAP_SYS_ADMIN                21
133 #define VC_CAP_SYS_BOOT                 22
134 #define VC_CAP_SYS_NICE                 23
135 #define VC_CAP_SYS_RESOURCE             24
136 #define VC_CAP_SYS_TIME                 25
137 #define VC_CAP_SYS_TTY_CONFIG           26
138 #define VC_CAP_MKNOD                    27
139 #define VC_CAP_LEASE                    28
140 #define VC_CAP_AUDIT_WRITE              29
141 #define VC_CAP_AUDIT_CONTROL            30
142
143 #define VC_IMMUTABLE_FILE_FL            0x0000010lu
144 #define VC_IMMUTABLE_LINK_FL            0x0008000lu
145 #define VC_IMMUTABLE_ALL                (VC_IMMUTABLE_LINK_FL|VC_IMMUTABLE_FILE_FL)
146
147 #define VC_IATTR_XID                    0x01000000u
148
149 #define VC_IATTR_ADMIN                  0x00000001u
150 #define VC_IATTR_WATCH                  0x00000002u
151 #define VC_IATTR_HIDE                   0x00000004u
152 #define VC_IATTR_FLAGS                  0x00000007u
153
154 #define VC_IATTR_BARRIER                0x00010000u
155 #define VC_IATTR_IUNLINK                0x00020000u
156 #define VC_IATTR_IMMUTABLE              0x00040000u
157
158
159 // the flags
160 #define VC_VXF_INFO_LOCK                0x00000001ull
161 #define VC_VXF_INFO_NPROC               0x00000004ull
162 #define VC_VXF_INFO_PRIVATE             0x00000008ull
163 #define VC_VXF_INFO_INIT                0x00000010ull
164
165 #define VC_VXF_INFO_HIDEINFO            0x00000020ull
166 #define VC_VXF_INFO_ULIMIT              0x00000040ull
167 #define VC_VXF_INFO_NAMESPACE           0x00000080ull
168
169 #define VC_VXF_SCHED_HARD               0x00000100ull
170 #define VC_VXF_SCHED_PRIO               0x00000200ull
171 #define VC_VXF_SCHED_PAUSE              0x00000400ull
172
173 #define VC_VXF_VIRT_MEM                 0x00010000ull
174 #define VC_VXF_VIRT_UPTIME              0x00020000ull
175 #define VC_VXF_VIRT_CPU                 0x00040000ull
176 #define VC_VXF_VIRT_LOAD                0x00080000ull
177 #define VC_VXF_VIRT_TIME                0x00100000ull
178
179 #define VC_VXF_HIDE_MOUNT               0x01000000ull
180 #define VC_VXF_HIDE_NETIF               0x02000000ull
181 #define VC_VXF_HIDE_VINFO               0x04000000ull
182
183 #define VC_VXF_STATE_SETUP              (1ULL<<32)
184 #define VC_VXF_STATE_INIT               (1ULL<<33)
185 #define VC_VXF_STATE_ADMIN              (1ULL<<34)
186
187 #define VC_VXF_SC_HELPER                (1ULL<<36)
188 #define VC_VXF_REBOOT_KILL              (1ULL<<37)
189 #define VC_VXF_PERSISTENT               (1ULL<<38)
190
191 #define VC_VXF_FORK_RSS                 (1ULL<<48)
192 #define VC_VXF_PROLIFIC                 (1ULL<<49)
193
194 #define VC_VXF_IGNEG_NICE               (1ULL<<52)
195
196
197 // the ccapabilities
198 #define VC_VXC_SET_UTSNAME              0x00000001ull
199 #define VC_VXC_SET_RLIMIT               0x00000002ull
200
201 #define VC_VXC_RAW_ICMP                 0x00000100ull
202 #define VC_VXC_SYSLOG                   0x00001000ull
203
204 #define VC_VXC_SECURE_MOUNT             0x00010000ull
205 #define VC_VXC_SECURE_REMOUNT           0x00020000ull
206 #define VC_VXC_BINARY_MOUNT             0x00040000ull
207
208 #define VC_VXC_QUOTA_CTL                0x00100000ull
209 #define VC_VXC_ADMIN_MAPPER             0x00200000ull
210 #define VC_VXC_ADMIN_CLOOP              0x00400000ull
211
212
213 // the scheduler flags
214 #define VC_VXSM_FILL_RATE               0x0001
215 #define VC_VXSM_INTERVAL                0x0002
216 #define VC_VXSM_FILL_RATE2              0x0004
217 #define VC_VXSM_INTERVAL2               0x0008
218 #define VC_VXSM_TOKENS                  0x0010
219 #define VC_VXSM_TOKENS_MIN              0x0020
220 #define VC_VXSM_TOKENS_MAX              0x0040
221 #define VC_VXSM_PRIO_BIAS               0x0100
222 #define VC_VXSM_CPU_ID                  0x1000
223 #define VC_VXSM_BUCKET_ID               0x2000
224
225 #define VC_VXSM_IDLE_TIME               0x0200
226 #define VC_VXSM_FORCE                   0x0400
227
228 #define VC_VXSM_V3_MASK                 0x0173
229
230
231 // the network flags
232 #define VC_NXF_INFO_LOCK                0x00000001ull
233 #define VC_NXF_INFO_PRIVATE             0x00000008ull
234
235 #define VC_NXF_HIDE_NETIF               0x02000000ull
236
237 #define VC_NXF_STATE_SETUP              (1ULL<<32)
238 #define VC_NXF_STATE_ADMIN              (1ULL<<34)
239
240 #define VC_NXF_SC_HELPER                (1ULL<<36)
241 #define VC_NXF_PERSISTENT               (1ULL<<38)
242
243
244 // the vserver specific limits
245 #define VC_VLIMIT_NSOCK                 16
246 #define VC_VLIMIT_OPENFD                17
247 #define VC_VLIMIT_ANON                  18
248 #define VC_VLIMIT_SHMEM                 19
249 #define VC_VLIMIT_SEMARY                20
250 #define VC_VLIMIT_NSEMS                 21
251 #define VC_VLIMIT_DENTRY                22
252
253
254
255 #define VC_BAD_PERSONALITY              ((uint_least32_t)(-1))
256
257
258 /** \defgroup  syscalls Syscall wrappers
259  *  Functions which are calling the vserver syscall directly. */
260
261 /** \defgroup  helper   Helper functions
262  *  Functions which are doing general helper tasks like parameter parsing. */
263
264 /** \typedef  an_unsigned_integer_type  xid_t
265  *  The identifier of a context. */
266
267 #ifdef IS_DOXYGEN
268 typedef an_unsigned_integer_type        xid_t;
269 typedef an_unsigned_integer_type        nid_t;
270 #endif
271
272 #ifdef __cplusplus
273 extern "C" {
274 #endif
275
276   struct vc_ip_mask_pair {
277       uint32_t  ip;
278       uint32_t  mask;
279   };
280
281     /** \brief   The generic vserver syscall
282      *  \ingroup syscalls
283      *
284      *  This function executes the generic vserver syscall. It uses the
285      *  correct syscallnumber (which may differ between the different
286      *  architectures).
287      *
288      *  \param   cmd  the command to be executed
289      *  \param   xid  the xid on which the cmd shall be applied
290      *  \param   data additional arguments; depends on \c cmd
291      *  \returns depends on \c cmd; usually, -1 stands for an error
292      */
293   int   vc_syscall(uint32_t cmd, xid_t xid, void *data);
294
295     /** \brief   Returns the version of the current kernel API.
296      *  \ingroup syscalls
297      *  \returns The versionnumber of the kernel API
298      */
299   int   vc_get_version();
300
301     /** \brief   Returns the kernel configuration bits
302      *  \ingroup syscalls
303      *  \returns The kernel configuration bits
304      */
305   int   vc_get_vci();
306   
307     /** \brief   Moves current process into a context
308      *  \ingroup syscalls
309      *
310      *  Puts current process into context \a ctx, removes the capabilities
311      *  given in \a remove_cap and sets \a flags.
312      *
313      *  \param ctx         The new context; special values for are
314      *  - VC_SAMECTX      which means the current context (just for changing caps and flags)
315      *  - VC_DYNAMIC_XID  which means the next free context; this value can be used by
316      *                    ordinary users also
317      *  \param remove_cap  The linux capabilities which will be \b removed.
318      *  \param flags       Special flags which will be set.
319      *
320      *  \returns  The new context-id, or VC_NOCTX on errors; \c errno
321      *            will be set appropriately
322      *
323      *  See http://vserver.13thfloor.at/Stuff/Logic.txt for details */
324   xid_t vc_new_s_context(xid_t ctx, unsigned int remove_cap, unsigned int flags);
325
326     /** \brief  Sets the ipv4root information.
327      *  \ingroup syscalls
328      *  \pre    \a nb < NB_IPV4ROOT && \a ips != 0 */
329   int   vc_set_ipv4root(uint32_t  bcast, size_t nb,
330                         struct vc_ip_mask_pair const *ips) VC_ATTR_NONNULL((3));
331
332     /** \brief  Returns the value of NB_IPV4ROOT.
333      *  \ingroup helper
334      *
335      *  This function returns the value of NB_IPV4ROOT which was used when the
336      *  library was built, but \b not the value which is used by the currently
337      *  running kernel. */
338   size_t        vc_get_nb_ipv4root() VC_ATTR_CONST VC_ATTR_PURE;
339
340     /** \brief   Creates a context without starting it.
341      *  \ingroup syscalls
342      *
343      *  This functions initializes a new context. When already in a freshly
344      *  created context, this old context will be discarded.
345      *
346      *  \param xid  The new context; special values are:
347      *  - VC_DYNAMIC_XID which means to create a dynamic context
348      *
349      *  \returns the xid of the created context, or VC_NOCTX on errors. \c errno
350      *           will be set appropriately. */
351   xid_t vc_ctx_create(xid_t xid);
352
353     /** \brief   Moves the current process into the specified context.
354      *  \ingroup syscalls
355      *
356      *  \param   xid  The new context
357      *  \returns 0 on success, -1 on errors */
358   int   vc_ctx_migrate(xid_t xid);
359
360     /** \brief   Statistics about a context */
361   struct vc_ctx_stat {
362       uint_least32_t    usecnt; ///< number of uses
363       uint_least32_t    tasks;  ///< number of tasks
364   };
365
366     /** \brief   Get some statistics about a context.
367      *  \ingroup syscalls
368      *
369      *  \param   xid   The context to get stats about
370      *  \param   stat  Where to store the result
371      *
372      *  \returns 0 on success, -1 on errors. */
373   int   vc_ctx_stat(xid_t xid, struct vc_ctx_stat /*@out@*/ *stat) VC_ATTR_NONNULL((2));
374
375     /** \brief   Contains further statistics about a context. */
376   struct vc_virt_stat {
377       uint_least64_t    offset;
378       uint_least32_t    uptime;
379       uint_least32_t    nr_threads;
380       uint_least32_t    nr_running;
381       uint_least32_t    nr_uninterruptible;
382       uint_least32_t    nr_onhold;
383       uint_least32_t    nr_forks;
384       uint_least32_t    load[3];
385   };
386
387     /** \brief   Get more statistics about a context.
388      *  \ingroup syscalls
389      *
390      *  \param xid   The context to get stats about
391      *  \param stat  Where to store the result
392      *
393      *  \returns 0 on success, -1 on errors. */
394   int   vc_virt_stat(xid_t xid, struct vc_virt_stat /*@out@*/ *stat) VC_ATTR_NONNULL((2));
395   
396     /* rlimit related functions */
397   
398     /** \brief  The type which is used for a single limit value.
399      *
400      *  Special values are
401      *  - VC_LIM_INFINITY ... which is the infinite value
402      *  - VC_LIM_KEEP     ... which is used to mark values which shall not be
403      *                        modified by the vc_set_rlimit() operation.
404      *
405      *  Else, the interpretation of the value depends on the corresponding
406      *  resource; it might be bytes, pages, seconds or litres of beer. */
407   typedef uint_least64_t        vc_limit_t;
408
409     /** \brief  The limits of a resources.
410      *
411      *  This is a triple consisting of a minimum, soft and hardlimit. */
412   struct vc_rlimit {
413       vc_limit_t        min;    ///< the guaranted minimum of a resources
414       vc_limit_t        soft;   ///< the softlimit of a resource
415       vc_limit_t        hard;   ///< the absolute hardlimit of a resource
416   };
417
418     /** \brief  Masks describing the supported limits. */
419   struct  vc_rlimit_mask {
420       uint_least32_t    min;    ///< masks the resources supporting a minimum limit
421       uint_least32_t    soft;   ///< masks the resources supporting a soft limit
422       uint_least32_t    hard;   ///< masks the resources supporting a hard limit
423   };
424
425     /** \brief Statistics for a resource limit. */
426   struct  vc_rlimit_stat {
427       uint_least32_t    hits;    ///< number of hits on the limit
428       uint_least64_t    value;   ///< current value
429       uint_least64_t    minimum; ///< minimum value observed
430       uint_least64_t    maximum; ///< maximum value observed
431   };
432
433     /** \brief   Returns the limits of \a resource.
434      *  \ingroup syscalls
435      *
436      *  \param  xid       The id of the context
437      *  \param  resource  The resource which will be queried
438      *  \param  lim       The result which will be filled with the limits
439      *
440      *  \returns 0 on success, and -1 on errors. */
441   int   vc_get_rlimit(xid_t xid, int resource,
442                       struct vc_rlimit       /*@out@*/ *lim) VC_ATTR_NONNULL((3));
443     /** \brief   Sets the limits of \a resource.
444      *  \ingroup syscalls
445      *
446      *  \param  xid       The id of the context
447      *  \param  resource  The resource which will be queried
448      *  \param  lim       The new limits
449      *
450      *  \returns 0 on success, and -1 on errors. */
451   int   vc_set_rlimit(xid_t xid, int resource,
452                       struct vc_rlimit const /*@in@*/  *lim) VC_ATTR_NONNULL((3));
453   int   vc_get_rlimit_mask(xid_t xid,
454                            struct vc_rlimit_mask *lim)       VC_ATTR_NONNULL((2));
455     /** \brief   Returns the current stats of \a resource.
456      *  \ingroup syscalls
457      *
458      *  \param  xid       The id of the context
459      *  \param  resource  The resource which will be queried
460      *  \param  stat      The result which will be filled with the stats
461      *
462      *  \returns 0 on success, and -1 on errors. */
463   int   vc_rlimit_stat(xid_t xid, int resource,
464                        struct vc_rlimit_stat /*@out@*/ *stat) VC_ATTR_NONNULL((3));
465     /** \brief   Resets the minimum and maximum observed values for all resources.
466      *  \ingroup syscalls
467      *
468      *  \param xid  The id of the context
469      *
470      *  \returns 0 on success, and -1 on errors. */
471   int   vc_reset_minmax(xid_t xid);
472     /** \brief   Parses a string describing a limit
473      *  \ingroup helper
474      *
475      *  This function parses \a str and interprets special words like \p "inf"
476      *  or suffixes. Valid suffixes are
477      *  - \p k ... 1000
478      *  - \p m ... 1000000
479      *  - \p K ... 1024
480      *  - \p M ... 1048576
481      *
482      *  \param str  The string which shall be parsed
483      *  \param res  Will be filled with the interpreted value; in errorcase,
484      *              this value is undefined.
485      *
486      *  \returns \a true, iff the string \a str could be parsed. \a res will
487      *  be filled with the interpreted value in this case. 
488      *
489      *  \pre \a str!=0 && \a res!=0
490      */
491   bool  vc_parseLimit(char const /*@in@*/ *str, vc_limit_t /*@out@*/ *res)      VC_ATTR_NONNULL((1,2));
492
493
494   /** \brief    Sends a signal to a context/pid
495    *  \ingroup  syscalls
496    *
497    *  Special values for \a pid are:
498    *  - -1   which means every process in ctx except the init-process
499    *  -  0   which means every process in ctx inclusive the init-process */
500   int   vc_ctx_kill(xid_t ctx, pid_t pid, int sig);
501
502
503   struct vc_nx_info {
504       nid_t     nid;
505   };
506
507   nid_t         vc_get_task_nid(pid_t pid);
508   int           vc_get_nx_info(nid_t nid, struct vc_nx_info *) VC_ATTR_NONNULL((2));
509
510   typedef enum { vcNET_IPV4=1,      vcNET_IPV6=2,
511                  vcNET_IPV4B=0x101, vcNET_IPV6B=0x102,
512                  vcNET_ANY=~0 }         vc_net_nx_type;
513
514   struct vc_net_nx {
515       vc_net_nx_type    type;
516       size_t            count;
517       uint32_t          ip[4];
518       uint32_t          mask[4];
519   };
520
521   nid_t         vc_net_create(nid_t nid);
522   int           vc_net_migrate(nid_t nid);
523
524   int           vc_net_add(nid_t nid, struct vc_net_nx const *info);
525   int           vc_net_remove(nid_t nid, struct vc_net_nx const *info);
526
527   struct vc_net_flags {
528       uint_least64_t    flagword;
529       uint_least64_t    mask;
530   };
531   
532   int           vc_get_nflags(nid_t, struct vc_net_flags *);
533   int           vc_set_nflags(nid_t, struct vc_net_flags const *);
534
535   
536   struct vc_net_caps {
537       uint_least64_t    ncaps;
538       uint_least64_t    cmask;
539   };
540
541   int           vc_get_ncaps(nid_t, struct vc_net_caps *);
542   int           vc_set_ncaps(nid_t, struct vc_net_caps const *);
543
544
545   
546
547   int           vc_set_iattr(char const *filename, xid_t xid,
548                              uint_least32_t flags, uint_least32_t mask) VC_ATTR_NONNULL((1));
549
550     /** \brief   Returns information about attributes and assigned context of a file.
551      *  \ingroup syscalls
552      *
553      *  This function returns the VC_IATTR_XXX flags and about the assigned
554      *  context of a file. To request an information, the appropriate bit in
555      *  \c mask must be set and the corresponding parameter (\a xid or \a
556      *  flags) must not be NULL.
557      *
558      *  E.g. to receive the assigned context, the \c VC_IATTR_XID bit must be
559      *  set in \a mask, and \a xid must point to valid memory.
560      *
561      *  Possible flags are \c VC_IATTR_ADMIN, \c VC_IATTR_WATCH , \c VC_IATTR_HIDE,
562      *  \c VC_IATTR_BARRIER, \c VC_IATTR_IUNLINK and \c VC_IATTR_IMMUTABLE.
563      *
564      *  \param filename  The name of the file whose attributes shall be determined.
565
566      *  \param xid       When non-zero and the VC_IATTR_XID bit is set in \a mask,
567      *                   the assigned context of \a filename will be stored there.
568      *  \param flags     When non-zero, a bitmask of current attributes will be
569      *                   stored there. These attributes must be requested explicitly
570      *                   by setting the appropriate bit in \a mask
571      *  \param mask      Points to a bitmask which tells which attributes shall be
572      *                   determined. On return, it will masquerade the attributes
573      *                   which were determined.
574      *
575      *  \pre  mask!=0 && !((*mask&VC_IATTR_XID) && xid==0) && !((*mask&~VC_IATTR_XID) && flags==0) */
576   int           vc_get_iattr(char const *filename, xid_t * /*@null@*/ xid,
577                              uint_least32_t * /*@null@*/ flags,
578                              uint_least32_t * /*@null@*/ mask) VC_ATTR_NONNULL((1));
579
580   struct vc_vx_info {
581       xid_t     xid;
582       pid_t     initpid;
583   };
584   
585     /** \brief   Returns the context of the given process.
586      *  \ingroup syscalls
587      *
588      *  \param  pid  the process-id whose xid shall be determined;
589      *               pid==0 means the current process.
590      *  \returns     the xid of process \c pid or -1 on errors
591      */
592   xid_t         vc_get_task_xid(pid_t pid);
593   int           vc_get_vx_info(xid_t xid, struct vc_vx_info *info) VC_ATTR_NONNULL((2));
594
595
596   typedef enum { vcVHI_CONTEXT, vcVHI_SYSNAME, vcVHI_NODENAME,
597                  vcVHI_RELEASE, vcVHI_VERSION, vcVHI_MACHINE,
598                  vcVHI_DOMAINNAME }             vc_uts_type;
599   
600   int           vc_set_vhi_name(xid_t xid, vc_uts_type type,
601                                 char const *val, size_t len) VC_ATTR_NONNULL((3));
602   int           vc_get_vhi_name(xid_t xid, vc_uts_type type,
603                                 char *val, size_t len)       VC_ATTR_NONNULL((3));
604
605     /** Returns true iff \a xid is a dynamic xid */
606   bool          vc_is_dynamic_xid(xid_t xid);
607
608   int           vc_enter_namespace(xid_t xid);
609   int           vc_set_namespace();
610   int           vc_cleanup_namespace();
611
612   
613   /** \brief    Flags of process-contexts
614    */
615   struct  vc_ctx_flags {
616       /** \brief Mask of set context flags */
617       uint_least64_t    flagword;
618       /** \brief Mask of set and unset context flags when used by set
619        *         operations, or modifiable flags when used by get
620        *         operations */
621       uint_least64_t    mask;
622   };
623
624   /** \brief    Capabilities of process-contexts */
625   struct  vc_ctx_caps {
626       /** \brief  Mask of set common system capabilities */
627       uint_least64_t    bcaps;
628       /** \brief Mask of set and unset common system capabilities when used by
629        *         set operations, or the modifiable capabilities when used by
630        *         get operations */
631       uint_least64_t    bmask;
632       /** \brief Mask of set process context capabilities */
633       uint_least64_t    ccaps;
634       /** \brief Mask of set and unset process context capabilities when used
635        *         by set operations, or the modifiable capabilities when used
636        *         by get operations */
637       uint_least64_t    cmask;
638   };
639
640   /** \brief    Information about parsing errors
641    *  \ingroup  helper
642    */
643   struct vc_err_listparser {
644       char const        *ptr;           ///< Pointer to the first character of an erroneous string
645       size_t            len;            ///< Length of the erroneous string
646   };
647  
648   int                   vc_get_cflags(xid_t xid, struct vc_ctx_flags *)       VC_ATTR_NONNULL((2));
649   int                   vc_set_cflags(xid_t xid, struct vc_ctx_flags const *) VC_ATTR_NONNULL((2));
650
651   int                   vc_get_ccaps(xid_t xid, struct vc_ctx_caps *);
652   int                   vc_set_ccaps(xid_t xid, struct vc_ctx_caps const *);
653
654   /** \brief   Converts a single string into bcapability
655    *  \ingroup helper
656    *
657    *  \param   str   The string to be parsed;
658    *                 both "CAP_xxx" and "xxx" will be accepted
659    *  \param   len   The length of the string, or \c 0 for automatic detection
660    *
661    *  \returns 0 on error; a bitmask on success
662    *  \pre     \a str != 0
663    */
664   uint_least64_t        vc_text2bcap(char const *str, size_t len);
665
666   /** \brief   Converts the lowest bit of a bcapability or the entire value
667    *           (when possible) to a textual representation
668    *  \ingroup helper
669    *
670    *  \param   val  The string to be converted; on success, the detected bit(s)
671    *                will be unset, in errorcase only the lowest set bit
672    *
673    *  \returns A textual representation of \a val resp. of its lowest set bit;
674    *           or \c NULL in errorcase.
675    *  \pre     \a val!=0
676    *  \post    \a *val<sub>old</sub> \c != 0  \c <-->
677    *               \a *val<sub>old</sub> > \a *val<sub>new</sub>
678    *  \post    \a *val<sub>old</sub> \c == 0  \c --->  \a result == 0
679    */
680   char const *  vc_lobcap2text(uint_least64_t *val) VC_ATTR_NONNULL((1));
681
682   /** \brief   Converts a string into a bcapability-bitmask
683    *  \ingroup helper
684    *
685    *  Syntax of \a str: \verbinclude list2xxx.syntax
686    *
687    *  When the \c `~' prefix is used, the bits will be unset and a `~' after
688    *  another `~' will cancel both ones. The \c `^' prefix specifies a
689    *  bitnumber instead of a bitmask.
690    *
691    *  "literal name" is everything which will be accepted by the
692    *  vc_text2bcap() function. The special values for \c NAME will be
693    *  recognized case insensitively
694    *
695    *  \param  str   The string to be parsed
696    *  \param  len   The length of the string, or \c 0 for automatic detection
697    *  \param  err   Pointer to a structure for error-information, or \c NULL.
698    *  \param  cap   Pointer to a vc_ctx_caps structure holding the results;
699    *                only the \a bcaps and \a bmask fields will be changed and
700    *                already set values will not be honored. When an error
701    *                occured, \a cap will have the value of all processed valid
702    *                \c BCAP parts.
703    *
704    *  \returns 0 on success, -1 on error. In error case, \a err will hold
705    *           position and length of the first not understood BCAP part
706    *  \pre     \a str != 0 && \a cap != 0;
707    *           \a cap->bcaps and \a cap->bmask must be initialized
708    */
709   int                   vc_list2bcap(char const *str, size_t len,
710                                      struct vc_err_listparser *err,
711                                      struct vc_ctx_caps *cap) VC_ATTR_NONNULL((1,4));
712
713   uint_least64_t        vc_text2ccap(char const *, size_t len);
714   char const *          vc_loccap2text(uint_least64_t *);
715   int                   vc_list2ccap(char const *, size_t len,
716                                      struct vc_err_listparser *err,
717                                      struct vc_ctx_caps *);
718
719   int                   vc_list2cflag(char const *, size_t len,
720                                      struct vc_err_listparser *err,
721                                      struct vc_ctx_flags *flags);
722   uint_least64_t        vc_text2cflag(char const *, size_t len);
723   char const *          vc_locflag2text(uint_least64_t *);
724   
725   uint_least32_t        vc_list2cflag_compat(char const *, size_t len,
726                                             struct vc_err_listparser *err);
727   uint_least32_t        vc_text2cflag_compat(char const *, size_t len);
728   char const *          vc_hicflag2text_compat(uint_least32_t);
729
730   int                   vc_text2cap(char const *);
731   char const *          vc_cap2text(unsigned int);
732
733   
734   int                   vc_list2nflag(char const *, size_t len,
735                                      struct vc_err_listparser *err,
736                                      struct vc_net_flags *flags);
737   uint_least64_t        vc_text2nflag(char const *, size_t len);
738   char const *          vc_lonflag2text(uint_least64_t *);
739
740   uint_least64_t        vc_text2ncap(char const *, size_t len);
741   char const *          vc_loncap2text(uint_least64_t *);
742   int                   vc_list2ncap(char const *, size_t len,
743                                      struct vc_err_listparser *err,
744                                      struct vc_net_caps *);
745
746   uint_least64_t                vc_get_insecurebcaps() VC_ATTR_CONST;
747   inline static uint_least64_t  vc_get_insecureccaps() {
748     return ~(VC_VXC_SET_UTSNAME|VC_VXC_RAW_ICMP);
749   }
750   
751   inline static int     vc_setfilecontext(char const *filename, xid_t xid) {
752     return vc_set_iattr(filename, xid, 0, VC_IATTR_XID);
753   }
754
755
756   uint_least32_t        vc_text2personalityflag(char const *str,
757                                                 size_t len) VC_ATTR_NONNULL((1));
758
759   char const *          vc_lopersonality2text(uint_least32_t *) VC_ATTR_NONNULL((1));
760   
761   int                   vc_list2personalityflag(char const /*@in@*/ *,
762                                                 size_t len,
763                                                 uint_least32_t /*@out@*/ *personality,
764                                                 struct vc_err_listparser /*@out@*/ *err) VC_ATTR_NONNULL((1,3));
765
766   uint_least32_t        vc_str2personalitytype(char const /*@in@*/*,
767                                                size_t len) VC_ATTR_NONNULL((1));
768   
769   /** \brief   Returns the context of \c filename
770    *  \ingroup syscalls
771    *
772    *  This function calls vc_get_iattr() with appropriate arguments to
773    *  determine the context of \c filename. In error-case or when no context
774    *  is assigned, \c VC_NOCTX will be returned. To differ between both cases,
775    *  \c errno must be examined.
776    *
777    *  \b WARNING: this function can modify \c errno although no error happened.
778    *
779    *  \param   filename  The file to check
780    *  \returns The assigned context, or VC_NOCTX when an error occured or no
781    *           such assignment exists. \c errno will be 0 in the latter case */
782   xid_t         vc_getfilecontext(char const *filename) VC_ATTR_NONNULL((1));
783
784
785   struct vc_set_sched {
786       uint_least32_t    set_mask;
787       int_least32_t     fill_rate;
788       int_least32_t     interval;
789       int_least32_t     fill_rate2;
790       int_least32_t     interval2;
791       int_least32_t     tokens;
792       int_least32_t     tokens_min;
793       int_least32_t     tokens_max;
794       int_least32_t     priority_bias;
795       int_least32_t     cpu_id;
796       int_least32_t     bucket_id;
797   };
798
799   int           vc_set_sched(xid_t xid, struct vc_set_sched const *);
800
801
802   struct vc_ctx_dlimit {
803       uint_least32_t    space_used;
804       uint_least32_t    space_total;
805       uint_least32_t    inodes_used;
806       uint_least32_t    inodes_total;
807       uint_least32_t    reserved;
808   };
809   
810
811   /** Add a disk limit to a file system. */
812   int           vc_add_dlimit(char const *filename, xid_t xid,
813                               uint_least32_t flags) VC_ATTR_NONNULL((1));
814   /** Remove a disk limit from a file system. */
815   int           vc_rem_dlimit(char const *filename, xid_t xid,
816                               uint_least32_t flags) VC_ATTR_NONNULL((1));
817
818   /** Set a disk limit. */
819   int           vc_set_dlimit(char const *filename, xid_t xid,
820                               uint_least32_t flags,
821                               struct vc_ctx_dlimit const *limits) VC_ATTR_NONNULL((1,4));
822   /** Get a disk limit. */
823   int           vc_get_dlimit(char const *filename, xid_t xid,
824                               uint_least32_t flags,
825                               struct vc_ctx_dlimit *limits) VC_ATTR_NONNULL((1));
826
827   /** \brief   Waits for the end of a context
828    *  \ingroup syscalls
829    */
830   int           vc_wait_exit(xid_t xid);
831     
832   typedef enum { vcFEATURE_VKILL,  vcFEATURE_IATTR,   vcFEATURE_RLIMIT,
833                  vcFEATURE_COMPAT, vcFEATURE_MIGRATE, vcFEATURE_NAMESPACE,
834                  vcFEATURE_SCHED,  vcFEATURE_VINFO,   vcFEATURE_VHI,
835                  vcFEATURE_VSHELPER0, vcFEATURE_VSHELPER, vcFEATURE_VWAIT,
836                  vcFEATURE_VNET }
837     vcFeatureSet;
838
839   bool          vc_isSupported(vcFeatureSet) VC_ATTR_CONST;
840   bool          vc_isSupportedString(char const *);
841
842   
843   typedef enum { vcTYPE_INVALID, vcTYPE_MAIN, vcTYPE_WATCH,
844                  vcTYPE_STATIC, vcTYPE_DYNAMIC }
845     vcXidType;
846   
847   vcXidType     vc_getXIDType(xid_t xid) VC_ATTR_CONST;
848
849   /* The management part */
850
851 #define VC_LIMIT_VSERVER_NAME_LEN       1024
852   
853   typedef enum { vcCFG_NONE, vcCFG_AUTO,
854                  vcCFG_LEGACY,
855                  vcCFG_RECENT_SHORT,
856                  vcCFG_RECENT_FULL }            vcCfgStyle;
857
858
859   /** Maps an xid given at '--xid' options to an xid_t */
860   xid_t         vc_xidopt2xid(char const *, bool honor_static, char const **err_info);
861   /** Maps a  nid given at '--nid' options to a  nid_t */
862   nid_t         vc_nidopt2nid(char const *, bool honor_static, char const **err_info);
863
864   vcCfgStyle    vc_getVserverCfgStyle(char const *id);
865   
866   /** Resolves the name of the vserver. The result will be allocated and must
867       be freed by the caller. */
868   char *        vc_getVserverName(char const *id, vcCfgStyle style);
869
870   /** Returns the path of the vserver configuration directory. When the given
871    *  vserver does not exist, or when it does not have such a directory, NULL
872    *  will be returned. Else, the result will be allocated and must be freed
873    *  by the caller. */
874   char *        vc_getVserverCfgDir(char const *id, vcCfgStyle style);
875
876   /** Returns the path of the configuration directory for the given
877    *  application. The result will be allocated and must be freed by the
878    *  caller. */
879   char *        vc_getVserverAppDir(char const *id, vcCfgStyle style, char const *app);
880
881   /** Returns the path to the vserver root-directory. The result will be
882    *  allocated and must be freed by the caller. */
883   char *        vc_getVserverVdir(char const *id, vcCfgStyle style, bool physical);
884
885   /** Returns the ctx of the given vserver. When vserver is not running and
886    *  'honor_static' is false, VC_NOCTX will be returned. Else, when
887    *  'honor_static' is true and a static assignment exists, those value will
888    *  be returned. Else, the result will be VC_NOCTX.
889    *
890    *  When 'is_running' is not null, the status of the vserver will be
891    *  assigned to this variable. */
892   xid_t         vc_getVserverCtx(char const *id, vcCfgStyle style,
893                                  bool honor_static, bool /*@null@*/ *is_running);
894
895   /** Resolves the cfg-path of the vserver owning the given ctx. 'revdir' will
896       be used as the directory holding the mapping-links; when NULL, the
897       default value will be assumed.  The result will be allocated and must be
898       freed by the caller. */
899   char *        vc_getVserverByCtx(xid_t ctx, /*@null@*/vcCfgStyle *style,
900                                    /*@null@*/char const *revdir);
901
902   int           vc_compareVserverById(char const *lhs, vcCfgStyle lhs_style,
903                                       char const *rhs, vcCfgStyle rhs_style);
904  
905 #define vcSKEL_INTERFACES       1u
906 #define vcSKEL_PKGMGMT          2u
907 #define vcSKEL_FILESYSTEM       4u
908
909   /** Create a basic configuration skeleton for a vserver plus toplevel
910    *  directories for pkgmanagemt and filesystem (when requested). */
911   int           vc_createSkeleton(char const *id, vcCfgStyle style, int flags);
912
913
914 #ifdef __cplusplus
915 }
916 #endif
917
918 #undef VC_ATTR_PURE
919 #undef VC_ATTR_ALWAYSINLINE
920 #undef VC_ATTR_NORETURN
921 #undef VC_ATTR_UNUSED
922 #undef VC_ATTR_NONNULL
923
924 #endif