blob: a4fdcfd36e80a469e4294e1d3d586bbb51da1a06 [file] [log] [blame]
Harald Weltec6a86972019-12-16 23:14:45 +01001#pragma once
2/* (C) 2019 by Harald Welte <laforge@gnumonks.org>
3 *
4 * All Rights Reserved
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
Harald Weltec6a86972019-12-16 23:14:45 +010018 */
19extern const char *osmo_environment_whitelist[];
20
21int osmo_environment_filter(char **out, size_t out_len, char **in, const char **whitelist);
22int osmo_environment_append(char **out, size_t out_len, char **in);
23int osmo_close_all_fds_above(int last_fd_to_keep);
Harald Weltef3cc7312020-04-17 18:23:52 +020024int osmo_system_nowait2(const char *command, const char **env_whitelist, char **addl_env, const char *user);
Harald Weltec6a86972019-12-16 23:14:45 +010025int osmo_system_nowait(const char *command, const char **env_whitelist, char **addl_env);