]> git.ipfire.org Git - people/ms/pakfire.git/blame - src/libpakfire/include/pakfire/jail.h
packages: Fail match if we could not parse the dependency
[people/ms/pakfire.git] / src / libpakfire / include / pakfire / jail.h
CommitLineData
fd37ccaf
MT
1/*#############################################################################
2# #
3# Pakfire - The IPFire package management system #
4# Copyright (C) 2022 Pakfire development team #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19#############################################################################*/
20
21#ifndef PAKFIRE_JAIL_H
22#define PAKFIRE_JAIL_H
23
fd37ccaf
MT
24#include <pakfire/pakfire.h>
25
26struct pakfire_jail;
27
db4f234f 28enum pakfire_jail_flags {
00ba1d9a 29 PAKFIRE_JAIL_NONE = 0,
00ba1d9a
MT
30};
31
d639929b 32int pakfire_jail_create(struct pakfire_jail** jail, struct pakfire* pakfire, int flags);
fd37ccaf
MT
33
34struct pakfire_jail* pakfire_jail_ref(struct pakfire_jail* jail);
35struct pakfire_jail* pakfire_jail_unref(struct pakfire_jail* jail);
36
cc6e2264
MT
37// Mountpoints
38int pakfire_jail_bind(struct pakfire_jail* jail,
39 const char* source, const char* target, int flags);
40
cf440db8
MT
41// Resource Limits
42int pakfire_jail_nice(struct pakfire_jail* jail, int nice);
43
335b8a44
MT
44// Timeout
45int pakfire_jail_set_timeout(struct pakfire_jail* jail, unsigned int timeout);
46
32d5f21d
MT
47// Environment
48const char* pakfire_jail_get_env(struct pakfire_jail* jail, const char* key);
49int pakfire_jail_set_env(struct pakfire_jail* jail, const char* key, const char* value);
939025e7 50int pakfire_jail_import_env(struct pakfire_jail* jail, const char* env[]);
32d5f21d 51
9f50bf71 52// Execute
2015cb92
MT
53typedef int (*pakfire_jail_communicate_in)
54 (struct pakfire* pakfire, void* data, int fd);
55typedef int (*pakfire_jail_communicate_out)
56 (struct pakfire* pakfire, void* data, int priority, const char* line, const size_t length);
57
ccdd2e95 58int pakfire_jail_exec(
2015cb92
MT
59 struct pakfire_jail* jail,
60 const char* argv[],
61 pakfire_jail_communicate_in callback_in,
62 pakfire_jail_communicate_out callback_out,
63 void* data);
64
6ce56f90
MT
65#ifdef PAKFIRE_PRIVATE
66
15503538
MT
67#include <pakfire/cgroup.h>
68
ccdd2e95
MT
69// Capture
70int pakfire_jail_capture_stdout(struct pakfire* pakfire, void* data,
71 int priority, const char* line, size_t length);
72
15503538
MT
73// Resource limits
74int pakfire_jail_set_cgroup(struct pakfire_jail* jail, struct pakfire_cgroup* cgroup);
75
82df3c77 76// Convenience functions
12b9b39f 77int pakfire_jail_run(struct pakfire* pakfire, const char* argv[], int flags, char** output);
4f688bd8 78int pakfire_jail_run_script(struct pakfire* pakfire,
49a9babc 79 const char* script, const size_t length, const char* argv[], int flags);
82df3c77 80
464a5794
MT
81int pakfire_jail_exec_script(struct pakfire_jail* jail,
82 const char* script,
83 const size_t size,
84 const char* args[],
85 pakfire_jail_communicate_in callback_in,
86 pakfire_jail_communicate_out callback_out,
87 void* data);
88
5f6e42a2 89int pakfire_jail_shell(struct pakfire_jail* jail);
e43489f7
MT
90int pakfire_jail_ldconfig(struct pakfire* pakfire);
91
6ce56f90 92#endif /* PAKFIRE_PRIVATE */
fd37ccaf
MT
93
94#endif /* PAKFIRE_JAIL_H */