4f77ea39aef150bb186b1c37b35bbacca7698053
[util-vserver.git] / util-vserver / 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 #  if __GNUC__>3 || (__GNUC__==3 && __GNUC_MINOR__>=3)
37 #    define VC_ATTR_NONNULL(ARGS)       __attribute__((__nonnull__ ARGS))
38 #    define VC_ATTR_ALWAYSINLINE        __attribute__((__always_inline__))
39 #  else
40 #    define VC_ATTR_NONNULL(ARGS)
41 #    define VC_ATTR_ALWAYSINLINE
42 #  endif
43 #  if __GNUC__>3
44 #    define VC_ATTR_PURE                __attribute__((__pure__))
45 #  else
46 #    define VC_ATTR_PURE
47 #  endif
48 #else
49 #  define VC_ATTR_NONNULL(ARGS)
50 #  define VC_ATTR_UNUSED
51 #  define VC_ATTR_NORETURN
52 #  define VC_ATTR_ALWAYSINLINE
53 #  define VC_ATTR_PURE
54 #endif
55 #endif  // IS_DOXYGEN
56
57 /** the value which is returned in error-case (no ctx found) */
58 #define VC_NOCTX                ((xid_t)(-1))
59 /** the value which means a random (the next free) ctx */
60 #define VC_DYNAMIC_XID          ((xid_t)(-1))
61 /** the value which means the current ctx */
62 #define VC_SAMECTX              ((xid_t)(-2))
63
64 #define VC_LIM_INFINITY         (~0ULL)
65 #define VC_LIM_KEEP             (~1ULL)
66
67   
68 #ifndef S_CTX_INFO_LOCK
69 #  define S_CTX_INFO_LOCK       1
70 #endif
71
72 #ifndef S_CTX_INFO_SCHED
73 #  define S_CTX_INFO_SCHED      2
74 #endif
75
76 #ifndef S_CTX_INFO_NPROC
77 #  define S_CTX_INFO_NPROC      4
78 #endif
79
80 #ifndef S_CTX_INFO_PRIVATE
81 #  define S_CTX_INFO_PRIVATE    8
82 #endif
83
84 #ifndef S_CTX_INFO_INIT
85 #  define S_CTX_INFO_INIT       16
86 #endif
87
88 #ifndef S_CTX_INFO_HIDEINFO
89 #  define S_CTX_INFO_HIDEINFO   32
90 #endif
91
92 #ifndef S_CTX_INFO_ULIMIT
93 #  define S_CTX_INFO_ULIMIT     64
94 #endif
95
96 #ifndef S_CTX_INFO_NAMESPACE
97 #  define S_CTX_INFO_NAMESPACE  128
98 #endif
99
100 #define VC_CAP_CHOWN                     0
101 #define VC_CAP_DAC_OVERRIDE              1
102 #define VC_CAP_DAC_READ_SEARCH           2
103 #define VC_CAP_FOWNER                    3
104 #define VC_CAP_FSETID                    4
105 #define VC_CAP_KILL                      5
106 #define VC_CAP_SETGID                    6
107 #define VC_CAP_SETUID                    7
108 #define VC_CAP_SETPCAP                   8
109 #define VC_CAP_LINUX_IMMUTABLE           9
110 #define VC_CAP_NET_BIND_SERVICE         10
111 #define VC_CAP_NET_BROADCAST            11
112 #define VC_CAP_NET_ADMIN                12
113 #define VC_CAP_NET_RAW                  13
114 #define VC_CAP_IPC_LOCK                 14
115 #define VC_CAP_IPC_OWNER                15
116 #define VC_CAP_SYS_MODULE               16
117 #define VC_CAP_SYS_RAWIO                17
118 #define VC_CAP_SYS_CHROOT               18
119 #define VC_CAP_SYS_PTRACE               19
120 #define VC_CAP_SYS_PACCT                20
121 #define VC_CAP_SYS_ADMIN                21
122 #define VC_CAP_SYS_BOOT                 22
123 #define VC_CAP_SYS_NICE                 23
124 #define VC_CAP_SYS_RESOURCE             24
125 #define VC_CAP_SYS_TIME                 25
126 #define VC_CAP_SYS_TTY_CONFIG           26
127 #define VC_CAP_MKNOD                    27
128 #define VC_CAP_LEASE                    28
129 #define VC_CAP_QUOTACTL                 29
130
131 #define VC_IMMUTABLE_FILE_FL            0x00000010l
132 #define VC_IMMUTABLE_LINK_FL            0x00008000l
133 #define VC_IMMUTABLE_ALL                (VC_IMMUTABLE_LINK_FL|VC_IMMUTABLE_FILE_FL)
134
135 #define VC_IATTR_XID                    0x01000000
136
137 #define VC_IATTR_ADMIN                  0x00000001
138 #define VC_IATTR_WATCH                  0x00000002
139 #define VC_IATTR_HIDE                   0x00000004
140 #define VC_IATTR_FLAGS                  0x00000007
141
142 #define VC_IATTR_BARRIER                0x00010000
143 #define VC_IATTR_IUNLINK                0x00020000
144 #define VC_IATTR_IMMUTABLE              0x00040000
145
146 /** \defgroup  syscalls Syscall wrappers
147  *  Functions which are calling the vserver syscall directly. */
148
149 /** \defgroup  helper   Helper functions
150  *  Functions which are doing general helper tasks like parameter parsing. */
151
152 /** \typedef  an_unsigned_integer_type  xid_t
153  *  The identifier of a context. */
154
155 #ifdef IS_DOXYGEN
156 typedef an_unsigned_integer_type        xid_t;
157 #endif
158
159 #ifdef __cplusplus
160 extern "C" {
161 #endif
162
163   struct vc_ip_mask_pair {
164     uint32_t    ip;
165       uint32_t  mask;
166   };
167
168     /** \brief   Returns the version of the current kernel API.
169      *  \ingroup syscalls
170      *  \returns The versionnumber of the kernel API
171      */
172   int   vc_get_version();
173   
174     /** \brief   Moves current process into a context
175      *  \ingroup syscalls
176      *
177      *  Puts current process into context \a ctx, removes the capabilities
178      *  given in \a remove_cap and sets \a flags.
179      *
180      *  \param ctx         The new context; special values for are
181      *  - VC_SAMECTX      which means the current context (just for changing caps and flags)
182      *  - VC_DYNAMIC_XID  which means the next free context; this value can be used by
183      *                    ordinary users also
184      *  \param remove_cap  The linux capabilities which will be \b removed.
185      *  \param flags       Special flags which will be set.
186      *
187      *  \returns  The new context-id, or VC_NOCTX on errors; errno
188      *            will be set appropriately
189      *
190      *  See http://vserver.13thfloor.at/Stuff/Logic.txt for details */
191   xid_t vc_new_s_context(xid_t ctx, unsigned int remove_cap, unsigned int flags);
192
193     /** \brief  Sets the ipv4root information.
194      *  \ingroup syscalls
195      *  \pre    \a nb < NB_IPV4ROOT && \a ips != 0 */
196   int   vc_set_ipv4root(uint32_t  bcast, size_t nb,
197                         struct vc_ip_mask_pair const *ips) VC_ATTR_NONNULL((3));
198
199     /** \brief   Creates a context without starting it.
200      *  \ingroup syscalls
201      *
202      *  This functions initializes a new context. When already in a freshly
203      *  created context, this old context will be discarded.
204      *
205      *  \param xid  The new context; special values are:
206      *  - VC_DYNAMIC_XID which means to create a dynamic context
207      *
208      *  \returns the xid of the created context, or VC_NOCTX on errors. errno
209      *           will be set appropriately. */
210   xid_t vc_create_context(xid_t xid);
211
212     /** \brief   Moves the current process into the specified context.
213      *  \ingroup syscalls
214      *
215      *  \param   xid  The new context
216      *  \returns 0 on success, -1 on errors */
217   int   vc_migrate_context(xid_t xid);
218   
219     /* rlimit related functions */
220   
221     /** \brief  The type which is used for a single limit value.
222      *
223      *  Special values are
224      *  - VC_LIM_INFINITY ... which is the infinite value
225      *  - VC_LIM_KEEP     ... which is used to mark values which shall not be
226      *                        modified by the vc_set_rlimit() operation.
227      *
228      *  Else, the interpretation of the value depends on the corresponding
229      *  resource; it might be bytes, pages, seconds or litres of beer.
230      */
231   typedef uint_least64_t        vc_limit_t;
232
233     /** \brief  The limits of a resources.
234      *
235      *  This is a triple consisting of a minimum, soft and hardlimit. */
236   struct vc_rlimit {
237       vc_limit_t        min;    ///< the guaranted minimum of a resources
238       vc_limit_t        soft;   ///< the softlimit of a resource
239       vc_limit_t        hard;   ///< the absolute hardlimit of a resource
240   };
241
242     /** \brief  Masks describing the supported limits. */
243   struct  vc_rlimit_mask {
244       uint_least32_t    min;    ///< masks the resources supporting a minimum limit
245       uint_least32_t    soft;   ///< masks the resources supporting a soft limit
246       uint_least32_t    hard;   ///< masks the resources supporting a hard limit
247   };
248
249     /** \brief   Returns the limits of \a resource.
250      *  \ingroup syscalls
251      *
252      *  \param  xid       The id of the context
253      *  \param  resource  The resource which will be queried
254      *  \param  lim       The result which will be filled with the limits
255      *
256      *  \returns 0 on success, and -1 on errors. */
257   int   vc_get_rlimit(xid_t xid, int resource,
258                       struct vc_rlimit       /*@out@*/ *lim) VC_ATTR_NONNULL((3));
259     /** \brief   Sets the limits of \a resource.
260      *  \ingroup syscalls
261      *
262      *  \param  xid       The id of the context
263      *  \param  resource  The resource which will be queried
264      *  \param  lim       The new limits
265      *
266      *  \returns 0 on success, and -1 on errors. */
267   int   vc_set_rlimit(xid_t xid, int resource,
268                       struct vc_rlimit const /*@in@*/  *lim) VC_ATTR_NONNULL((3));
269   int   vc_get_rlimit_mask(xid_t xid,
270                            struct vc_rlimit_mask *lim)       VC_ATTR_NONNULL((2));
271     /** \brief   Parses a string describing a limit
272      *  \ingroup helper
273      *
274      *  This function parses \a str and interprets special words like \p "inf"
275      *  or suffixes. Valid suffixes are
276      *  - \p k ... 1000
277      *  - \p m ... 1000000
278      *  - \p K ... 1024
279      *  - \p M ... 1048576
280      *
281      *  \param str  The string which shall be parsed
282      *  \param res  Will be filled with the interpreted value; in errorcase,
283      *              this value is undefined.
284      *
285      *  \returns \a true, iff the string \a str could be parsed. \a res will
286      *  be filled with the interpreted value in this case. 
287      *
288      *  \pre \a str!=0 && \a res!=0
289      */
290   bool  vc_parseLimit(char const /*@in@*/ *str, vc_limit_t /*@out@*/ *res)      VC_ATTR_NONNULL((1,2));
291
292
293   /** \brief    Sends a signal to a context/pid
294    *  \ingroup  syscalls
295    *
296    *  Special values for \a pid are:
297    *  - -1   which means every process in ctx except the init-process
298    *  -  0   which means every process in ctx inclusive the init-process */
299   int   vc_ctx_kill(xid_t ctx, pid_t pid, int sig);
300
301
302
303   int           vc_set_iattr(char const *filename, xid_t xid,
304                              uint_least32_t flags, uint_least32_t mask) VC_ATTR_NONNULL((1));
305   int           vc_get_iattr(char const *filename, xid_t * /*@null@*/ xid,
306                              uint_least32_t * /*@null@*/ flags,
307                              uint_least32_t * /*@null@*/ mask) VC_ATTR_NONNULL((1));
308
309   struct vc_vx_info {
310       xid_t     xid;
311       pid_t     initpid;
312   };
313   
314     /** Returns the context of the given process. pid==0 means the current process. */
315   xid_t         vc_get_task_xid(pid_t pid);
316   int           vc_get_vx_info(xid_t xid, struct vc_vx_info *info) VC_ATTR_NONNULL((2));
317
318
319   typedef enum { vcVHI_CONTEXT, vcVHI_SYSNAME, vcVHI_NODENAME,
320                  vcVHI_RELEASE, vcVHI_VERSION, vcVHI_MACHINE,
321                  vcVHI_DOMAINNAME }             vc_uts_type;
322   
323   int           vc_set_vhi_name(xid_t xid, vc_uts_type type,
324                                 char const *val, size_t len) VC_ATTR_NONNULL((3));
325   int           vc_get_vhi_name(xid_t xid, vc_uts_type type,
326                                 char *val, size_t len)       VC_ATTR_NONNULL((3));
327
328
329   int           vc_enter_namespace(xid_t xid);
330   int           vc_set_namespace();
331   int           vc_cleanup_namespace();
332
333   struct  vc_ctx_flags {
334       uint_least64_t    flagword;
335       uint_least64_t    mask;
336   };
337   
338   struct  vc_ctx_caps {
339       uint_least64_t    bcaps;
340       uint_least64_t    ccaps;
341       uint_least64_t    cmask;
342   };
343
344   struct vc_err_listparser {
345       char const        *ptr;
346       size_t            len;
347   };
348  
349   int                   vc_get_flags(xid_t xid, struct vc_ctx_flags *)       VC_ATTR_NONNULL((2));
350   int                   vc_set_flags(xid_t xid, struct vc_ctx_flags const *) VC_ATTR_NONNULL((2));
351
352   int                   vc_get_ccaps(xid_t xid, struct vc_ctx_caps *);
353   int                   vc_set_ccaps(xid_t xid, struct vc_ctx_caps const *);
354
355   uint_least64_t        vc_text2bcap(char const *, size_t len);
356   char const *          vc_lobcap2text(uint_least64_t *);
357   int                   vc_list2bcap(char const *, size_t len,
358                                      struct vc_err_listparser *err,
359                                      struct vc_ctx_caps *);
360
361   uint_least64_t        vc_text2ccap(char const *, size_t len);
362   char const *          vc_loccap2text(uint_least64_t *);
363   int                   vc_list2ccap(char const *, size_t len,
364                                      struct vc_err_listparser *err,
365                                      struct vc_ctx_caps *);
366
367   int                   vc_list2flag(char const *, size_t len,
368                                      struct vc_err_listparser *err,
369                                      struct vc_ctx_flags *flags);
370   uint_least64_t        vc_text2flag(char const *, size_t len);
371   char const *          vc_loflag2text(uint_least64_t *);
372   
373   uint_least32_t        vc_list2flag_compat(char const *, size_t len,
374                                             struct vc_err_listparser *err);
375   uint_least32_t        vc_text2flag_compat(char const *, size_t len);
376   char const *          vc_hiflag2text_compat(uint_least32_t);
377   
378   int           vc_text2cap(char const *);
379   char const *  vc_cap2text(unsigned int);
380
381   inline static uint_least32_t  vc_get_securecaps() {
382     return ( (1<<VC_CAP_LINUX_IMMUTABLE) | (1<<VC_CAP_NET_BROADCAST) |
383              (1<<VC_CAP_NET_ADMIN) | (1<<VC_CAP_NET_RAW) |
384              (1<<VC_CAP_IPC_LOCK) | (1<<VC_CAP_IPC_OWNER) |
385              (1<<VC_CAP_SYS_MODULE) | (1<<VC_CAP_SYS_RAWIO) |
386              (1<<VC_CAP_SYS_PACCT) | (1<<VC_CAP_SYS_ADMIN) |
387              (1<<VC_CAP_SYS_BOOT) | (1<<VC_CAP_SYS_NICE) |
388              (1<<VC_CAP_SYS_RESOURCE) | (1<<VC_CAP_SYS_TIME) |
389              (1<<VC_CAP_MKNOD) | (1<<VC_CAP_QUOTACTL) );
390   }
391
392   inline static int             vc_setfilecontext(char const *filename, xid_t xid) {
393     return vc_set_iattr(filename, xid, 0, VC_IATTR_XID);
394   }
395   
396   inline static xid_t           vc_getfilecontext(char const *filename) {
397     xid_t       res;
398     if (vc_get_iattr(filename, &res, 0,0)==-1) return VC_NOCTX;
399     return res;
400   }
401
402
403   struct vc_set_sched {
404       int32_t   fill_rate;
405       int32_t   period;
406       int32_t   fill_level;
407       int32_t   bucket_size;
408   };
409
410   int           vc_set_sched(xid_t xid, struct vc_set_sched const *);
411   
412   
413   typedef enum { vcFEATURE_VKILL,  vcFEATURE_IATTR,   vcFEATURE_RLIMIT,
414                  vcFEATURE_COMPAT, vcFEATURE_MIGRATE, vcFEATURE_NAMESPACE,
415                  vcFEATURE_SCHED,  vcFEATURE_VINFO,   vcFEATURE_VHI }
416     vcFeatureSet;
417
418   bool          vc_isSupported(vcFeatureSet);
419   bool          vc_isSupportedString(char const *);
420   
421   /* The management part */
422
423 #define VC_LIMIT_VSERVER_NAME_LEN       1024
424   
425   typedef enum { vcCFG_NONE, vcCFG_AUTO,
426                  vcCFG_LEGACY,
427                  vcCFG_RECENT_SHORT,
428                  vcCFG_RECENT_FULL }            vcCfgStyle;
429
430   vcCfgStyle    vc_getVserverCfgStyle(char const *id);
431   
432   /** Resolves the name of the vserver. The result will be allocated and must
433       be freed by the caller. */
434   char *        vc_getVserverName(char const *id, vcCfgStyle style);
435
436   /** Returns the path of the vserver configuration directory. When the given
437    *  vserver does not exist, or when it does not have such a directory, NULL
438    *  will be returned. Else, the result will be allocated and must be freed
439    *  by the caller. */
440   char *        vc_getVserverCfgDir(char const *id, vcCfgStyle style);
441
442   /** Returns the path of the configuration directory for the given
443    *  application. The result will be allocated and must be freed by the
444    *  caller. */
445   char *        vc_getVserverAppDir(char const *id, vcCfgStyle style, char const *app);
446
447   /** Returns the path to the vserver root-directory. The result will be
448    *  allocated and must be freed by the caller. */
449   char *        vc_getVserverVdir(char const *id, vcCfgStyle style, bool physical);
450
451   /** Returns the ctx of the given vserver. When vserver is not running and
452    *  'honor_static' is false, VC_NOCTX will be returned. Else, when
453    *  'honor_static' is true and a static assignment exists, those value will
454    *  be returned. Else, the result will be VC_NOCTX.
455    *
456    *  When 'is_running' is not null, the status of the vserver will be
457    *  assigned to this variable. */
458   xid_t         vc_getVserverCtx(char const *id, vcCfgStyle style,
459                                  bool honor_static, bool /*@null@*/ *is_running);
460
461   /** Resolves the cfg-path of the vserver owning the given ctx. 'revdir' will
462       be used as the directory holding the mapping-links; when NULL, the
463       default value will be assumed.  The result will be allocated and must be
464       freed by the caller. */
465   char *        vc_getVserverByCtx(xid_t ctx, /*@null@*/vcCfgStyle *style,
466                                    /*@null@*/char const *revdir);
467
468 #define vcSKEL_INTERFACES       1u
469 #define vcSKEL_PKGMGMT          2u
470 #define vcSKEL_FILESYSTEM       4u
471   
472   /** Create a basic configuration skeleton for a vserver plus toplevel
473    *  directories for pkgmanagemt and filesystem (when requested). */
474   int           vc_createSkeleton(char const *id, vcCfgStyle style, int flags);
475   
476 #ifdef __cplusplus
477 }
478 #endif
479
480 #undef VC_ATTR_PURE
481 #undef VC_ATTR_ALWAYSINLINE
482 #undef VC_ATTR_NORETURN
483 #undef VC_ATTR_UNUSED
484 #undef VC_ATTR_NONNULL
485
486 #endif