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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/* GATE PROJECT LICENSE:
+----------------------------------------------------------------------------+
| Copyright(c) 2018-2025, Stefan Meislinger <sm@opengate.at>                 |
| All rights reserved.                                                       |
|                                                                            |
| Redistribution and use in source and binary forms, with or without         |
| modification, are permitted provided that the following conditions are met:|
|                                                                            |
| 1. Redistributions of source code must retain the above copyright notice,  |
|    this list of conditions and the following disclaimer.                   |
| 2. Redistributions in binary form must reproduce the above copyright       |
|    notice, this list of conditions and the following disclaimer in the     |
|    documentation and/or other materials provided with the distribution.    |
|                                                                            |
| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"|
| AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE  |
| IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| ARE DISCLAIMED.IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE    |
| LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR        |
| CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF       |
| SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS   |
| INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN    |
| CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)    |
| ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF     |
| THE POSSIBILITY OF SUCH DAMAGE.                                            |
+----------------------------------------------------------------------------+
*/

#include "gate/processes.h"

#include "gate/platforms.h"
#include "gate/debugging.h"
#include "gate/results.h"

#if defined(GATE_SYS_WIN16)
#   define GATE_PROCESSES_WINTASK_IMPL 1
#elif defined(GATE_SYS_WIN)
#   define GATE_PROCESSES_WINAPI_IMPL 1
#elif defined(GATE_SYS_WASM)
#   define GATE_PROCESSES_WASM_IMPL 1
#elif defined(GATE_SYS_BEOS)
#   define GATE_PROCESSES_BEOS_IMPL 1
#elif defined(GATE_SYS_POSIX)
#   define GATE_PROCESSES_POSIX_IMPL 1
#elif defined(GATE_SYS_EFI)
#   define GATE_PROCESSES_EFI_IMPL 1
#elif defined(GATE_SYS_DOS)
#   define GATE_PROCESSES_DOS_IMPL 1
#else
#   define GATE_PROCESSES_NOIMPL 1
#endif


gate_size_t gate_process_print_pid(gate_process_id_t pid, char* text, gate_size_t textlen)
{
    return gate_str_print_int64(text, textlen, pid);
}
gate_size_t gate_process_parse_pid(char const* text, gate_size_t textlen, gate_process_id_t* pid)
{
    return gate_str_parse_int64(text, textlen, pid);
}

gate_result_t gate_process_run(
    gate_string_t const* executablepath,
    gate_string_t const* args, gate_size_t argcount,
    gate_string_t const* workdir, gate_string_t const* envvars, gate_size_t envvarcount, gate_enumint_t flags,
    gate_stream_t* output, int* exit_code
)
{
    gate_result_t ret;
    gate_process_handle_t handle = NULL;
    gate_process_stream_t* proc_stream = NULL;
    gate_process_stream_t** ptr_stream = (output == NULL) ? NULL : &proc_stream;
    char buffer[GATE_MAX_COPYBUFFER_LENGTH];
    gate_size_t used;
    gate_size_t written;

    do
    {
        ret = gate_process_start(executablepath, args, argcount, workdir, envvars, envvarcount, flags, &handle, NULL, ptr_stream);
        GATE_BREAK_IF_FAILED(ret);

        if ((ptr_stream != NULL) && (*ptr_stream != NULL))
        {
            while (GATE_SUCCEEDED(ret))
            {
                ret = gate_stream_read(*ptr_stream, buffer, sizeof(buffer), &used);
                GATE_BREAK_IF_FAILED(ret);
                if (used == 0)
                {
                    break;
                }
                ret = gate_stream_write_block(output, buffer, used, &written);
            }

            if (GATE_FAILED(ret))
            {
                ret = gate_process_kill(&handle);
            }

            if (GATE_SUCCEEDED(ret) && (exit_code != NULL))
            {
                ret = gate_process_get_exitcode(&handle, exit_code);
                if (ret == GATE_RESULT_INVALIDSTATE)
                {
                    ret = gate_process_wait(&handle, GATE_PROCESS_WAIT_INFINITE);<--- Variable 'ret' is reassigned a value before the old one has been used.
                    ret = gate_process_get_exitcode(&handle, exit_code);<--- Variable 'ret' is reassigned a value before the old one has been used.
                }
            }
        }
    } while (0);

    if (ptr_stream && (*ptr_stream))
    {
        gate_object_release(*ptr_stream);
    }

    if (handle != NULL)
    {
        gate_process_close(&handle);
    }
    return ret;
}








#if defined(GATE_PROCESSES_WASM_IMPL)

#include "gate/platform/wasm/wasm_gate.h"
#include <stdlib.h>

gate_result_t gate_process_get_id(gate_process_id_t* pid)
{
    *pid = 1;
    return GATE_RESULT_OK;
}
void gate_process_quit(int exitcode)
{
    exit(exitcode);
}

gate_result_t gate_process_enum(gate_process_enum_callback_t callback, void* userparam, gate_enumint_t flags)
{
    return GATE_RESULT_OK;
}
gate_result_t gate_process_getinfo(gate_process_infobuffer_t* dest_buffer, gate_process_id_t proc_id, gate_enumint_t flags)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_start(
    gate_string_t const* executablepath,
    gate_string_t const* args, gate_size_t argcount,
    gate_string_t const* workdir, gate_string_t const* envvars, gate_size_t envvarcount, gate_enumint_t flags,
    gate_process_handle_t* result_handle, gate_process_id_t* result_pid, gate_process_stream_t** result_stream)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_start_ex(
    gate_string_t const* executablepath,
    gate_string_t const* args, gate_size_t argcount,
    gate_string_t const* workdir, gate_string_t const* envvars, gate_size_t envvarcount, gate_enumint_t flags,
    char const* sessionlocation,
    char const* username, char const* password,
    gate_process_handle_t* result_handle, gate_process_id_t* result_pid, gate_process_stream_t** result_stream)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_close(gate_process_handle_t* handle)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_get_exitcode(gate_process_handle_t* handle, int* exitcode)
{
    return GATE_RESULT_NOTSUPPORTED;
}

gate_result_t gate_process_wait(gate_process_handle_t* handle, gate_uint32_t timeoutms)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_wait_pid(gate_process_id_t pid, gate_uint32_t timeoutms)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_terminate(gate_process_handle_t* handle, gate_bool_t system_request)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_terminate_pid(gate_process_id_t pid, gate_bool_t system_request)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_kill(gate_process_handle_t* handle)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_kill_pid(gate_process_id_t pid)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_suspend(gate_process_handle_t* handle)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_suspend_pid(gate_process_id_t pid)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_resume(gate_process_handle_t* handle)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_resume_pid(gate_process_id_t pid)
{
    return GATE_RESULT_NOTSUPPORTED;
}

#endif /* GATE_PROCESSES_WASM_IMPL */



#if defined(GATE_PROCESSES_BEOS_IMPL)

#include <kernel/OS.h>
#include <support/SupportDefs.h>

#include <stdlib.h>

gate_result_t gate_process_get_id(gate_process_id_t* pid)
{
    thread_id tid = find_thread(NULL);
    thread_info info;
    status_t status = get_thread_info(tid, &info);
    if (status != B_OK)
    {
        return GATE_RESULT_FAILED;
    }
    if (pid)
    {
        *pid = (gate_process_id_t)info.team;
    }
    return GATE_RESULT_OK;
}
void gate_process_quit(int exitcode)
{
    exit(exitcode);
}

gate_result_t gate_process_enum(gate_process_enum_callback_t callback, void* userparam, gate_enumint_t flags)
{
    return GATE_RESULT_OK;
}
gate_result_t gate_process_getinfo(gate_process_infobuffer_t* dest_buffer, gate_process_id_t proc_id, gate_enumint_t flags)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_start(
    gate_string_t const* executablepath,
    gate_string_t const* args, gate_size_t argcount,
    gate_string_t const* workdir, gate_string_t const* envvars, gate_size_t envvarcount, gate_enumint_t flags,
    gate_process_handle_t* result_handle, gate_process_id_t* result_pid, gate_process_stream_t** result_stream)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_start_ex(
    gate_string_t const* executablepath,
    gate_string_t const* args, gate_size_t argcount,
    gate_string_t const* workdir, gate_string_t const* envvars, gate_size_t envvarcount, gate_enumint_t flags,
    char const* sessionlocation,
    char const* username, char const* password,
    gate_process_handle_t* result_handle, gate_process_id_t* result_pid, gate_process_stream_t** result_stream)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_close(gate_process_handle_t* handle)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_get_exitcode(gate_process_handle_t* handle, int* exitcode)
{
    return GATE_RESULT_NOTSUPPORTED;
}

gate_result_t gate_process_wait(gate_process_handle_t* handle, gate_uint32_t timeoutms)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_wait_pid(gate_process_id_t pid, gate_uint32_t timeoutms)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_terminate(gate_process_handle_t* handle, gate_bool_t system_request)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_terminate_pid(gate_process_id_t pid, gate_bool_t system_request)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_kill(gate_process_handle_t* handle)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_kill_pid(gate_process_id_t pid)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_suspend(gate_process_handle_t* handle)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_suspend_pid(gate_process_id_t pid)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_resume(gate_process_handle_t* handle)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_resume_pid(gate_process_id_t pid)
{
    return GATE_RESULT_NOTSUPPORTED;
}

#endif /* GATE_PROCESSES_BEOS_IMPL */



#if defined(GATE_PROCESSES_NOIMPL)

#include <stdlib.h>

gate_result_t gate_process_get_id(gate_process_id_t* pid)
{
    *pid = 1;
    return GATE_RESULT_OK;
}
void gate_process_quit(int exitcode)
{
    exit(exitcode);
}

gate_result_t gate_process_enum(gate_process_enum_callback_t callback, void* userparam, gate_enumint_t flags)
{
    return GATE_RESULT_OK;
}
gate_result_t gate_process_getinfo(gate_process_infobuffer_t* dest_buffer, gate_process_id_t proc_id, gate_enumint_t flags)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_start(
    gate_string_t const* executablepath,
    gate_string_t const* args, gate_size_t argcount,
    gate_string_t const* workdir, gate_string_t const* envvars, gate_size_t envvarcount, gate_enumint_t flags,
    gate_process_handle_t* result_handle, gate_process_id_t* result_pid, gate_process_stream_t** result_stream)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_start_ex(
    gate_string_t const* executablepath,
    gate_string_t const* args, gate_size_t argcount,
    gate_string_t const* workdir, gate_string_t const* envvars, gate_size_t envvarcount, gate_enumint_t flags,
    char const* sessionlocation,
    char const* username, char const* password,
    gate_process_handle_t* result_handle, gate_process_id_t* result_pid, gate_process_stream_t** result_stream)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_close(gate_process_handle_t* handle)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_get_exitcode(gate_process_handle_t* handle, int* exitcode)
{
    return GATE_RESULT_NOTSUPPORTED;
}

gate_result_t gate_process_wait(gate_process_handle_t* handle, gate_uint32_t timeoutms)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_wait_pid(gate_process_id_t pid, gate_uint32_t timeoutms)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_terminate(gate_process_handle_t* handle, gate_bool_t system_request)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_terminate_pid(gate_process_id_t pid, gate_bool_t system_request)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_kill(gate_process_handle_t* handle)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_kill_pid(gate_process_id_t pid)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_suspend(gate_process_handle_t* handle)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_suspend_pid(gate_process_id_t pid)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_resume(gate_process_handle_t* handle)
{
    return GATE_RESULT_NOTSUPPORTED;
}
gate_result_t gate_process_resume_pid(gate_process_id_t pid)
{
    return GATE_RESULT_NOTSUPPORTED;
}

#endif /* GATE_PROCESSES_NOIMPL */