]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/utils.h
lxc-user-nic: keep lines from other {users,links}
[mirror_lxc.git] / src / lxc / utils.h
CommitLineData
0ad19a3f 1/*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2008
5 *
6 * Authors:
9afe19d6 7 * Daniel Lezcano <daniel.lezcano at free.fr>
0ad19a3f 8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
250b1eec 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0ad19a3f 22 */
f1a4a029
ÇO
23#ifndef __LXC_UTILS_H
24#define __LXC_UTILS_H
0ad19a3f 25
c6868a1f
CB
26/* Properly support loop devices on 32bit systems. */
27#define _FILE_OFFSET_BITS 64
28
a1e5280d
CB
29#include "config.h"
30
6a44839f 31#include <errno.h>
61a1d519 32#include <stdarg.h>
d0386d66 33#include <stdio.h>
502657d5 34#include <stdbool.h>
c6868a1f
CB
35#include <unistd.h>
36#include <linux/loop.h>
29a11a7f 37#include <linux/magic.h>
ec346ea1 38#include <sys/syscall.h>
c797a220 39#include <sys/types.h>
a035c53a 40#include <sys/vfs.h>
f2363e38 41
4295c5de 42#include "initutils.h"
c797a220 43
a394f952
CB
44/* Define __S_ISTYPE if missing from the C library. */
45#ifndef __S_ISTYPE
46#define __S_ISTYPE(mode, mask) (((mode)&S_IFMT) == (mask))
47#endif
48
b07511df
CB
49/* Useful macros */
50/* Maximum number for 64 bit integer is a string with 21 digits: 2^64 - 1 = 21 */
eab15c1e
CB
51#define LXC_NUMSTRLEN64 21
52#define LXC_LINELEN 4096
4bc3b759 53#define LXC_IDMAPLEN 4096
b07511df 54
60bf62d4 55/* returns 1 on success, 0 if there were any failures */
18aa217b 56extern int lxc_rmdir_onedev(char *path, const char *exclude);
7c11d57a 57extern int get_u16(unsigned short *val, const char *arg, int base);
1b09f2c0 58extern int mkdir_p(const char *dir, mode_t mode);
fd8c2777 59extern char *get_rundir(void);
9e60f51d 60
6a44839f
DE
61/* Define getline() if missing from the C library */
62#ifndef HAVE_GETLINE
63#ifdef HAVE_FGETLN
64#include <../include/getline.h>
65#endif
66#endif
67
68/* Define setns() if missing from the C library */
69#ifndef HAVE_SETNS
70static inline int setns(int fd, int nstype)
71{
72#ifdef __NR_setns
73 return syscall(__NR_setns, fd, nstype);
a1258e6d 74#elif defined(__NR_set_ns)
92e23841 75 return syscall(__NR_set_ns, fd, nstype);
6a44839f
DE
76#else
77 errno = ENOSYS;
78 return -1;
79#endif
80}
81#endif
82
83/* Define unshare() if missing from the C library */
84#ifndef HAVE_UNSHARE
85static inline int unshare(int flags)
86{
87#ifdef __NR_unshare
88 return syscall(__NR_unshare, flags);
89#else
90 errno = ENOSYS;
91 return -1;
92#endif
93}
94#else
1a0e70ac 95extern int unshare(int);
6a44839f
DE
96#endif
97
b5159817
DE
98/* Define signalfd() if missing from the C library */
99#ifdef HAVE_SYS_SIGNALFD_H
100# include <sys/signalfd.h>
101#else
102/* assume kernel headers are too old */
103#include <stdint.h>
104struct signalfd_siginfo
105{
106 uint32_t ssi_signo;
107 int32_t ssi_errno;
108 int32_t ssi_code;
109 uint32_t ssi_pid;
110 uint32_t ssi_uid;
111 int32_t ssi_fd;
112 uint32_t ssi_tid;
113 uint32_t ssi_band;
114 uint32_t ssi_overrun;
115 uint32_t ssi_trapno;
116 int32_t ssi_status;
117 int32_t ssi_int;
118 uint64_t ssi_ptr;
119 uint64_t ssi_utime;
120 uint64_t ssi_stime;
121 uint64_t ssi_addr;
122 uint8_t __pad[48];
123};
124
125# ifndef __NR_signalfd4
126/* assume kernel headers are too old */
127# if __i386__
128# define __NR_signalfd4 327
129# elif __x86_64__
130# define __NR_signalfd4 289
131# elif __powerpc__
132# define __NR_signalfd4 313
133# elif __s390x__
134# define __NR_signalfd4 322
180edd67
SG
135# elif __arm__
136# define __NR_signalfd4 355
f53b5916
JC
137# elif __mips__ && _MIPS_SIM == _ABIO32
138# define __NR_signalfd4 4324
139# elif __mips__ && _MIPS_SIM == _ABI64
140# define __NR_signalfd4 5283
141# elif __mips__ && _MIPS_SIM == _ABIN32
142# define __NR_signalfd4 6287
b5159817
DE
143# endif
144#endif
145
146# ifndef __NR_signalfd
147/* assume kernel headers are too old */
148# if __i386__
149# define __NR_signalfd 321
150# elif __x86_64__
151# define __NR_signalfd 282
152# elif __powerpc__
153# define __NR_signalfd 305
154# elif __s390x__
155# define __NR_signalfd 316
180edd67
SG
156# elif __arm__
157# define __NR_signalfd 349
f53b5916
JC
158# elif __mips__ && _MIPS_SIM == _ABIO32
159# define __NR_signalfd 4317
160# elif __mips__ && _MIPS_SIM == _ABI64
161# define __NR_signalfd 5276
162# elif __mips__ && _MIPS_SIM == _ABIN32
163# define __NR_signalfd 6280
b5159817
DE
164# endif
165#endif
166
167static inline int signalfd(int fd, const sigset_t *mask, int flags)
168{
169 int retval;
170
171 retval = syscall (__NR_signalfd4, fd, mask, _NSIG / 8, flags);
172 if (errno == ENOSYS && flags == 0)
173 retval = syscall (__NR_signalfd, fd, mask, _NSIG / 8);
174 return retval;
175}
176#endif
177
c6868a1f
CB
178/* loop devices */
179#ifndef LO_FLAGS_AUTOCLEAR
180#define LO_FLAGS_AUTOCLEAR 4
181#endif
182
183#ifndef LOOP_CTL_GET_FREE
184#define LOOP_CTL_GET_FREE 0x4C82
185#endif
186
ebec9176
AM
187/* Struct to carry child pid from lxc_popen() to lxc_pclose().
188 * Not an opaque struct to allow direct access to the underlying FILE *
189 * (i.e., struct lxc_popen_FILE *file; fgets(buf, sizeof(buf), file->f))
190 * without additional wrappers.
191 */
192struct lxc_popen_FILE {
193 FILE *f;
194 pid_t child_pid;
195};
196
197/* popen(command, "re") replacement that restores default signal mask
198 * via sigprocmask(2) (unblocks all signals) after fork(2) but prior to calling exec(3).
199 * In short, popen(command, "re") does pipe() + fork() + exec()
200 * while lxc_popen(command) does pipe() + fork() + sigprocmask() + exec().
ebec9176
AM
201 * Returns pointer to struct lxc_popen_FILE, that should be freed with lxc_pclose().
202 * On error returns NULL.
203 */
204extern struct lxc_popen_FILE *lxc_popen(const char *command);
205
206/* pclose() replacement to be used on struct lxc_popen_FILE *,
207 * returned by lxc_popen().
208 * Waits for associated process to terminate, returns its exit status and
209 * frees resources, pointed to by struct lxc_popen_FILE *.
ebec9176
AM
210 */
211extern int lxc_pclose(struct lxc_popen_FILE *fp);
212
e51d4895
DE
213/**
214 * BUILD_BUG_ON - break compile if a condition is true.
215 * @condition: the condition which the compiler should know is false.
216 *
217 * If you have some code which relies on certain constants being equal, or
218 * other compile-time-evaluated condition, you should use BUILD_BUG_ON to
219 * detect if someone changes it.
220 *
221 * The implementation uses gcc's reluctance to create a negative array, but
222 * gcc (as of 4.4) only emits that error for obvious cases (eg. not arguments
223 * to inline functions). So as a fallback we use the optimizer; if it can't
224 * prove the condition is false, it will cause a link error on the undefined
225 * "__build_bug_on_failed". This error message can be harder to track down
226 * though, hence the two different methods.
227 */
228#ifndef __OPTIMIZE__
229#define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
230#else
231extern int __build_bug_on_failed;
232#define BUILD_BUG_ON(condition) \
233 do { \
234 ((void)sizeof(char[1 - 2*!!(condition)])); \
235 if (condition) __build_bug_on_failed = 1; \
236 } while(0)
237#endif
238
9be53773
SH
239/*
240 * wait on a child we forked
241 */
242extern int wait_for_pid(pid_t pid);
c797a220 243extern int lxc_wait_for_pid_status(pid_t pid);
9be53773 244
92f023dc 245/* send and receive buffers completely */
650468bb
CS
246extern ssize_t lxc_write_nointr(int fd, const void* buf, size_t count);
247extern ssize_t lxc_read_nointr(int fd, void* buf, size_t count);
1a0e70ac
CB
248extern ssize_t lxc_read_nointr_expect(int fd, void *buf, size_t count,
249 const void *expected_buf);
3ce74686
SH
250#if HAVE_LIBGNUTLS
251#define SHA_DIGEST_LENGTH 20
252extern int sha1sum_file(char *fnam, unsigned char *md_value);
253#endif
92f023dc 254
0e95426b 255/* read and write whole files */
1a0e70ac
CB
256extern int lxc_write_to_file(const char *filename, const void *buf,
257 size_t count, bool add_newline);
0e95426b 258extern int lxc_read_from_file(const char *filename, void* buf, size_t count);
0e95426b 259
61a1d519
CS
260/* convert variadic argument lists to arrays (for execl type argument lists) */
261extern char** lxc_va_arg_list_to_argv(va_list ap, size_t skip, int do_strdup);
262extern const char** lxc_va_arg_list_to_argv_const(va_list ap, size_t skip);
263
1a0e70ac
CB
264/* Some simple string functions; if they return pointers, they are allocated
265 * buffers.
266 */
267extern char *lxc_string_replace(const char *needle, const char *replacement,
268 const char *haystack);
502657d5 269extern bool lxc_string_in_array(const char *needle, const char **haystack);
1a0e70ac
CB
270extern char *lxc_string_join(const char *sep, const char **parts,
271 bool use_as_prefix);
502657d5
CS
272/* Normalize and split path: Leading and trailing / are removed, multiple
273 * / are compactified, .. and . are resolved (.. on the top level is considered
274 * identical to .).
275 * Examples:
276 * / -> { NULL }
277 * foo/../bar -> { bar, NULL }
278 * ../../ -> { NULL }
279 * ./bar/baz/.. -> { bar, NULL }
280 * foo//bar -> { foo, bar, NULL }
281 */
282extern char **lxc_normalize_path(const char *path);
aeb3682f 283/* remove multiple slashes from the path, e.g. ///foo//bar -> /foo/bar */
eda0afd4 284extern char *lxc_deslashify(const char *path);
24b51482 285extern char *lxc_append_paths(const char *first, const char *second);
502657d5
CS
286/* Note: the following two functions use strtok(), so they will never
287 * consider an empty element, even if two delimiters are next to
288 * each other.
289 */
1a0e70ac
CB
290extern bool lxc_string_in_list(const char *needle, const char *haystack,
291 char sep);
502657d5
CS
292extern char **lxc_string_split(const char *string, char sep);
293extern char **lxc_string_split_and_trim(const char *string, char sep);
000dfda7
CB
294/* Append string to NULL-terminated string array. */
295extern int lxc_append_string(char ***list, char *entry);
502657d5
CS
296
297/* some simple array manipulation utilities */
298typedef void (*lxc_free_fn)(void *);
299typedef void *(*lxc_dup_fn)(void *);
1a0e70ac
CB
300extern int lxc_grow_array(void ***array, size_t *capacity, size_t new_size,
301 size_t capacity_increment);
502657d5
CS
302extern void lxc_free_array(void **array, lxc_free_fn element_free_fn);
303extern size_t lxc_array_len(void **array);
502657d5 304
799f29ab 305extern void **lxc_append_null_to_array(void **array, size_t count);
1adbd020 306
a1e5280d 307/* mmap() wrapper. lxc_strmmap() will take care to \0-terminate files so that
1adbd020 308 * normal string-handling functions can be used on the buffer. */
25086a5f
CB
309extern void *lxc_strmmap(void *addr, size_t length, int prot, int flags, int fd,
310 off_t offset);
a1e5280d 311/* munmap() wrapper. Use it to free memory mmap()ed with lxc_strmmap(). */
25086a5f 312extern int lxc_strmunmap(void *addr, size_t length);
1adbd020 313
1a0e70ac 314/* initialize rand with urandom */
508c263e 315extern int randseed(bool);
052616eb 316
1354955b
SH
317inline static bool am_unpriv(void) {
318 return geteuid() != 0;
319}
5d897655
SH
320
321/*
322 * parse /proc/self/uid_map to find what @orig maps to
323 */
324extern uid_t get_ns_uid(uid_t orig);
c476bdce
SH
325
326extern bool dir_exists(const char *path);
93c379f0
ÇO
327
328#define FNV1A_64_INIT ((uint64_t)0xcbf29ce484222325ULL)
1a0e70ac
CB
329extern uint64_t fnv_64a_buf(void *buf, size_t len, uint64_t hval);
330
331extern int detect_shared_rootfs(void);
332extern bool detect_ramfs_rootfs(void);
333extern char *on_path(const char *cmd, const char *rootfs);
334extern bool file_exists(const char *f);
335extern bool cgns_supported(void);
336extern char *choose_init(const char *rootfs);
337extern int print_to_file(const char *file, const char *content);
338extern bool switch_to_ns(pid_t pid, const char *ns);
339extern int is_dir(const char *path);
340extern char *get_template_path(const char *t);
341extern int setproctitle(char *title);
342extern int safe_mount(const char *src, const char *dest, const char *fstype,
343 unsigned long flags, const void *data,
344 const char *rootfs);
345extern int lxc_mount_proc_if_needed(const char *rootfs);
346extern int open_devnull(void);
347extern int set_stdfds(int fd);
348extern int null_stdfds(void);
349extern int lxc_count_file_lines(const char *fn);
350extern int lxc_preserve_ns(const int pid, const char *ns);
330ae3d3
CB
351
352/* Check whether a signal is blocked by a process. */
1a0e70ac 353extern bool task_blocking_signal(pid_t pid, int signal);
6bc2eafe
CB
354
355/* Helper functions to parse numbers. */
1a0e70ac
CB
356extern int lxc_safe_uint(const char *numstr, unsigned int *converted);
357extern int lxc_safe_int(const char *numstr, int *converted);
358extern int lxc_safe_long(const char *numstr, long int *converted);
359extern int lxc_safe_ulong(const char *numstr, unsigned long *converted);
6bc2eafe 360
dbaf55a3 361/* Switch to a new uid and gid. */
1a0e70ac
CB
362extern int lxc_switch_uid_gid(uid_t uid, gid_t gid);
363extern int lxc_setgroups(int size, gid_t list[]);
dbaf55a3 364
c6868a1f 365/* Find an unused loop device and associate it with source. */
1a0e70ac 366extern int lxc_prepare_loop_dev(const char *source, char *loop_dev, int flags);
c6868a1f 367
74251e49
CB
368/* Clear all mounts on a given node.
369 * >= 0 successfully cleared. The number returned is the number of umounts
370 * performed.
371 * < 0 error umounting. Return -errno.
372 */
1a0e70ac 373extern int lxc_unstack_mountpoint(const char *path, bool lazy);
74251e49 374
ea3a694f
CB
375/*
376 * run_command runs a command and collect it's std{err,out} output in buf.
377 *
378 * @param[out] buf The buffer where the commands std{err,out] output will be
379 * read into. If no output was produced, buf will be memset
380 * to 0.
381 * @param[in] buf_size The size of buf. This function will reserve one byte for
382 * \0-termination.
383 * @param[in] child_fn The function to be run in the child process. This
384 * function must exec.
385 * @param[in] args Arguments to be passed to child_fn.
386 */
1a0e70ac
CB
387extern int run_command(char *buf, size_t buf_size, int (*child_fn)(void *),
388 void *args);
ea3a694f 389
04ad7ffe
CB
390/* Concatenate all passed-in strings into one path. Do not fail. If any piece
391 * is not prefixed with '/', add a '/'.
392 */
1a0e70ac 393extern char *must_make_path(const char *first, ...) __attribute__((sentinel));
04ad7ffe
CB
394
395/* return copy of string @entry; do not fail. */
1a0e70ac 396extern char *must_copy_string(const char *entry);
04ad7ffe
CB
397
398/* Re-alllocate a pointer, do not fail */
1a0e70ac 399extern void *must_realloc(void *orig, size_t sz);
04ad7ffe 400
a035c53a
CB
401/* __typeof__ should be safe to use with all compilers. */
402typedef __typeof__(((struct statfs *)NULL)->f_type) fs_type_magic;
1a0e70ac
CB
403extern bool has_fs_type(const char *path, fs_type_magic magic_val);
404extern bool is_fs_type(const struct statfs *fs, fs_type_magic magic_val);
a035c53a 405
5b72de5f 406#endif /* __LXC_UTILS_H */