This file is indexed.

/usr/include/debian-installer/exec.h is in libdebian-installer4-dev 0.99+deb8u1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
/*
 * exec.h
 *
 * Copyright (C) 2003 Bastian Blank <waldi@debian.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef DEBIAN_INSTALLER__EXEC_H
#define DEBIAN_INSTALLER__EXEC_H

#include <debian-installer/types.h>

#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>

/**
 * @addtogroup di_exec
 * @{
 */

di_io_handler
  /**
   * logs the output
   */
  di_exec_io_log;
di_process_handler
  /**
   * chdir to user_data
   *
   * @param user_data path
   */
  di_exec_prepare_chdir,
  /**
   * chroot to user_data
   *
   * @param user_data path
   */
  di_exec_prepare_chroot;

/**
 * execv like call
 *
 * @param path executable with path
 * @param argv NULL-terminated area of char pointer
 * @param stdout_handler di_io_handler which gets stdout (and to stderr if stderr_handler is NULL)
 * @param stderr_handler di_io_handler which gets stderr
 * @param io_user_data user_data for di_io_handler
 * @param parent_prepare_handler di_process_handler which is called after the fork in the parent
 * @param parent_prepare_user_data user_data for parent_prepare_handler
 * @param child_prepare_handler di_process_handler which is called after the fork in the child
 * @param child_prepare_user_data user_data for child_prepare_handler
 *
 * @return status or error
 */
int di_exec_full (const char *path, const char *const argv[], di_io_handler *stdout_handler, di_io_handler *stderr_handler, void *io_user_data, di_process_handler *parent_prepare_handler, void *parent_prepare_user_data, di_process_handler *child_prepare_handler, void *child_prepare_user_data);

/**
 * execv like call
 *
 * @param path executable with path
 * @param argv NULL-terminated area of char pointer
 *
 * @return status or error
 */
static inline int di_exec (const char *path, const char *const argv[])
{
  return di_exec_full (path, argv, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
}

/**
 * execve like call
 *
 * @param path executable with path
 * @param argv NULL-terminated area of char pointer
 * @param envp NULL-terminated area of char pointer
 * @param stdout_handler di_io_handler which gets stdout (and to stderr if stderr_handler is NULL)
 * @param stderr_handler di_io_handler which gets stderr
 * @param io_user_data user_data for di_io_handler
 * @param parent_prepare_handler di_process_handler which is called after the fork in the parent
 * @param parent_prepare_user_data user_data for parent_prepare_handler
 * @param child_prepare_handler di_process_handler which is called after the fork in the child
 * @param child_prepare_user_data user_data for child_prepare_handler
 *
 * @return status or error
 */
int di_exec_env_full (const char *path, const char *const argv[], const char *const envp[], di_io_handler *stdout_handler, di_io_handler *stderr_handler, void *io_user_data, di_process_handler *parent_prepare_handler, void *parent_prepare_user_data, di_process_handler *child_prepare_handler, void *child_prepare_user_data);

/**
 * execve like call
 *
 * @param path executable with path
 * @param argv NULL-terminated area of char pointer
 * @param envp NULL-terminated area of char pointer
 *
 * @return status or error
 */
static inline int di_exec_env (const char *path, const char *const argv[], const char *const envp[])
{
  return di_exec_env_full (path, argv, envp, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
}

/**
 * execvp like call
 *
 * @param file executable
 * @param argv NULL-terminated area of char pointer
 * @param stdout_handler di_io_handler which gets stdout (and to stderr if stderr_handler is NULL)
 * @param stderr_handler di_io_handler which gets stderr
 * @param io_user_data user_data for di_io_handler
 * @param parent_prepare_handler di_process_handler which is called after the fork in the parent
 * @param parent_prepare_user_data user_data for parent_prepare_handler
 * @param child_prepare_handler di_process_handler which is called after the fork in the child
 * @param child_prepare_user_data user_data for child_prepare_handler
 *
 * @return status or error
 */
int di_exec_path_full (const char *file, const char *const argv[], di_io_handler *stdout_handler, di_io_handler *stderr_handler, void *io_user_data, di_process_handler *parent_prepare_handler, void *parent_prepare_user_data, di_process_handler *child_prepare_handler, void *child_prepare_user_data);

/**
 * execvp like call
 *
 * @param file executable
 * @param argv NULL-terminated area of char pointer
 *
 * @return status or error
 */
static inline int di_exec_path (const char *file, const char *const argv[])
{
  return di_exec_path_full (file, argv, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
}

/**
 * system like call
 *
 * @param cmd command
 * @param stdout_handler di_io_handler which gets stdout
 * @param stderr_handler di_io_handler which gets stderr
 * @param io_user_data user_data for di_io_handler
 * @param parent_prepare_handler di_process_handler which is called after the fork in the parent
 * @param parent_prepare_user_data user_data for parent_prepare_handler
 * @param child_prepare_handler di_process_handler which is called after the fork in the child
 * @param child_prepare_user_data user_data for child_prepare_handler
 *
 * @return status or error
 */
int di_exec_shell_full (const char *const cmd, di_io_handler *stdout_handler, di_io_handler *stderr_handler, void *io_user_data, di_process_handler *parent_prepare_handler, void *parent_prepare_user_data, di_process_handler *child_prepare_handler, void *child_prepare_user_data);

/**
 * system like call
 *
 * @param cmd command
 *
 * @return status or error
 */
static inline int di_exec_shell (const char *const cmd)
{
  return di_exec_shell_full (cmd, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
}

/**
 * system like call with output via log
 *
 * @param cmd command
 *
 * @return status or error
 */
inline static int di_exec_shell_log (const char *const cmd)
{
  return di_exec_shell_full (cmd, di_exec_io_log, NULL, NULL, NULL, NULL, NULL, NULL);
}

/**
 * mangle status like sh does it:
 * * if signaled: 128 + signal
 * * else return code
 */
int di_exec_mangle_status (int status);

/**
 * @deprecated
 * Alias of di_exec_shell_log
 */
inline static int di_execlog (const char *const cmd) __attribute__ ((deprecated));
inline static int di_execlog (const char *const cmd)
{
  return di_exec_shell_log (cmd);
}

/** @} */
#endif