]> git.ipfire.org Git - people/ms/pakfire.git/blame - src/libpakfire/jail.c
jail: Create a new time namespace
[people/ms/pakfire.git] / src / libpakfire / jail.c
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
32d5f21d 21#include <errno.h>
bcf09bf5 22#include <fcntl.h>
980b15af 23#include <linux/capability.h>
0bd84dc1 24#include <linux/sched.h>
58ee649f 25#include <sys/wait.h>
4f23b498 26#include <linux/wait.h>
0bd84dc1
MT
27#include <sched.h>
28#include <signal.h>
32d5f21d 29#include <stdlib.h>
0bd84dc1 30#include <syscall.h>
980b15af 31#include <sys/capability.h>
616f1fca 32#include <sys/epoll.h>
43dc0e16 33#include <sys/eventfd.h>
7bdf1d8e 34#include <sys/mount.h>
90d92b5c 35#include <sys/personality.h>
980b15af 36#include <sys/prctl.h>
cf440db8 37#include <sys/resource.h>
47d2da8e 38#include <sys/signalfd.h>
335b8a44 39#include <sys/timerfd.h>
0bd84dc1
MT
40#include <sys/types.h>
41#include <sys/wait.h>
32d5f21d 42
fec79a33
MT
43// libnl3
44#include <net/if.h>
45#include <netlink/route/link.h>
46
739d5b57
MT
47// libseccomp
48#include <seccomp.h>
49
ae5201c5
MT
50// libuuid
51#include <uuid.h>
52
90d92b5c 53#include <pakfire/arch.h>
e3ddb498 54#include <pakfire/cgroup.h>
fd37ccaf 55#include <pakfire/jail.h>
4f59c39b
MT
56#include <pakfire/logging.h>
57#include <pakfire/mount.h>
fd37ccaf 58#include <pakfire/pakfire.h>
6ce56f90 59#include <pakfire/private.h>
4896e62c 60#include <pakfire/pwd.h>
d973a13d 61#include <pakfire/string.h>
32d5f21d
MT
62#include <pakfire/util.h>
63
616f1fca
MT
64#define BUFFER_SIZE 1024 * 64
65#define ENVIRON_SIZE 128
66#define EPOLL_MAX_EVENTS 2
cc6e2264 67#define MAX_MOUNTPOINTS 8
fd37ccaf 68
d5bc8fe0
MT
69// The default environment that will be set for every command
70static const struct environ {
71 const char* key;
72 const char* val;
73} ENV[] = {
fbe95cdf 74 { "HOME", "/root" },
55f54757 75 { "LANG", "C.utf-8" },
a7ad6d4f 76 { "PATH", "/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin", },
d5bc8fe0 77 { "TERM", "vt100" },
3bf01105
MT
78
79 // Tell everything that it is running inside a Pakfire container
80 { "container", "pakfire" },
d5bc8fe0
MT
81 { NULL, NULL },
82};
83
cc6e2264
MT
84struct pakfire_jail_mountpoint {
85 char source[PATH_MAX];
86 char target[PATH_MAX];
87 int flags;
88};
89
fd37ccaf
MT
90struct pakfire_jail {
91 struct pakfire* pakfire;
92 int nrefs;
32d5f21d 93
ae5201c5
MT
94 // A unique ID for each jail
95 uuid_t uuid;
96 char __uuid[UUID_STR_LEN];
97
cf440db8
MT
98 // Resource Limits
99 int nice;
100
335b8a44
MT
101 // Timeout
102 struct itimerspec timeout;
103
15503538
MT
104 // CGroup
105 struct pakfire_cgroup* cgroup;
106
32d5f21d
MT
107 // Environment
108 char* env[ENVIRON_SIZE];
616f1fca 109
cc6e2264
MT
110 // Mountpoints
111 struct pakfire_jail_mountpoint mountpoints[MAX_MOUNTPOINTS];
112 unsigned int num_mountpoints;
616f1fca
MT
113};
114
115struct pakfire_log_buffer {
116 char data[BUFFER_SIZE];
117 size_t used;
118};
119
120struct pakfire_jail_exec {
7bdf1d8e
MT
121 int flags;
122
616f1fca
MT
123 // PID (of the child)
124 pid_t pid;
d853213d 125 int pidfd;
616f1fca 126
d853213d
MT
127 // Process status (from waitid)
128 siginfo_t status;
616f1fca 129
f7d240a7
MT
130 // FD to notify the client that the parent has finished initialization
131 int completed_fd;
132
616f1fca 133 // Log pipes
e33387d3 134 struct pakfire_jail_pipes {
2015cb92 135 int stdin[2];
616f1fca
MT
136 int stdout[2];
137 int stderr[2];
e33387d3
MT
138
139 // Logging
140 int log_INFO[2];
141 int log_ERROR[2];
142 int log_DEBUG[2];
616f1fca
MT
143 } pipes;
144
2015cb92
MT
145 // Communicate
146 struct pakfire_jail_communicate {
147 pakfire_jail_communicate_in in;
148 pakfire_jail_communicate_out out;
149 void* data;
150 } communicate;
151
616f1fca 152 // Log buffers
e33387d3 153 struct pakfire_jail_buffers {
616f1fca
MT
154 struct pakfire_log_buffer stdout;
155 struct pakfire_log_buffer stderr;
e33387d3
MT
156
157 // Logging
158 struct pakfire_log_buffer log_INFO;
159 struct pakfire_log_buffer log_ERROR;
160 struct pakfire_log_buffer log_DEBUG;
616f1fca 161 } buffers;
aca565fc
MT
162
163 struct pakfire_cgroup* cgroup;
6b7cf275 164 struct pakfire_cgroup_stats cgroup_stats;
fd37ccaf
MT
165};
166
0bd84dc1
MT
167static int clone3(struct clone_args* args, size_t size) {
168 return syscall(__NR_clone3, args, size);
169}
170
335b8a44
MT
171static int pidfd_send_signal(int pidfd, int sig, siginfo_t* info, unsigned int flags) {
172 return syscall(SYS_pidfd_send_signal, pidfd, sig, info, flags);
173}
174
14df7388
MT
175static int pivot_root(const char* new_root, const char* old_root) {
176 return syscall(SYS_pivot_root, new_root, old_root);
177}
178
7bdf1d8e
MT
179static int pakfire_jail_exec_has_flag(
180 const struct pakfire_jail_exec* ctx, const enum pakfire_jail_exec_flags flag) {
181 return ctx->flags & flag;
182}
183
d5bc8fe0
MT
184static void pakfire_jail_free(struct pakfire_jail* jail) {
185 DEBUG(jail->pakfire, "Freeing jail at %p\n", jail);
186
187 // Free environment
188 for (unsigned int i = 0; jail->env[i]; i++)
189 free(jail->env[i]);
190
d34b1e00
MT
191 if (jail->cgroup)
192 pakfire_cgroup_unref(jail->cgroup);
193
d5bc8fe0
MT
194 pakfire_unref(jail->pakfire);
195 free(jail);
196}
197
e33387d3
MT
198/*
199 Passes any log messages on to the default pakfire log callback
200*/
fed41508
MT
201static int pakfire_jail_default_log_callback(struct pakfire* pakfire, void* data,
202 int priority, const char* line, size_t length) {
203 switch (priority) {
204 case LOG_INFO:
205 INFO(pakfire, "%s", line);
206 break;
207
208 case LOG_ERR:
209 ERROR(pakfire, "%s", line);
210 break;
e33387d3
MT
211
212#ifdef ENABLE_DEBUG
213 case LOG_DEBUG:
214 DEBUG(pakfire, "%s", line);
215 break;
216#endif
fed41508
MT
217 }
218
219 return 0;
220}
221
3bf01105
MT
222static const char* pakfire_jail_uuid(struct pakfire_jail* jail) {
223 if (!*jail->__uuid)
224 uuid_unparse_lower(jail->uuid, jail->__uuid);
225
226 return jail->__uuid;
227}
228
00ba1d9a
MT
229static int pakfire_jail_setup_interactive_env(struct pakfire_jail* jail) {
230 // Set PS1
231 int r = pakfire_jail_set_env(jail, "PS1", "pakfire-jail \\w> ");
232 if (r)
233 return r;
234
235 // Copy TERM
236 char* TERM = secure_getenv("TERM");
237 if (TERM) {
238 r = pakfire_jail_set_env(jail, "TERM", TERM);
239 if (r)
240 return r;
241 }
242
243 // Copy LANG
244 char* LANG = secure_getenv("LANG");
245 if (LANG) {
246 r = pakfire_jail_set_env(jail, "LANG", LANG);
247 if (r)
248 return r;
249 }
250
251 return 0;
252}
253
9fa1afb6 254PAKFIRE_EXPORT int pakfire_jail_create(struct pakfire_jail** jail, struct pakfire* pakfire) {
d5bc8fe0
MT
255 int r;
256
aac86bd3
MT
257 const char* arch = pakfire_get_arch(pakfire);
258
d5bc8fe0 259 // Allocate a new jail
fd37ccaf
MT
260 struct pakfire_jail* j = calloc(1, sizeof(*j));
261 if (!j)
262 return 1;
263
264 // Reference Pakfire
265 j->pakfire = pakfire_ref(pakfire);
266
267 // Initialize reference counter
268 j->nrefs = 1;
269
ae5201c5
MT
270 // Generate a random UUID
271 uuid_generate_random(j->uuid);
272
84bd7655
MT
273 DEBUG(j->pakfire, "Allocated new jail at %p\n", j);
274
d5bc8fe0
MT
275 // Set default environment
276 for (const struct environ* e = ENV; e->key; e++) {
277 r = pakfire_jail_set_env(j, e->key, e->val);
278 if (r)
279 goto ERROR;
280 }
281
aac86bd3
MT
282 // Enable all CPU features that CPU has to offer
283 if (!pakfire_arch_supported_by_host(arch)) {
284 r = pakfire_jail_set_env(j, "QEMU_CPU", "max");
285 if (r)
286 goto ERROR;
287 }
288
3bf01105
MT
289 // Set container UUID
290 r = pakfire_jail_set_env(j, "container_uuid", pakfire_jail_uuid(j));
291 if (r)
292 goto ERROR;
293
367e708d
MT
294 // Disable systemctl to talk to systemd
295 if (!pakfire_on_root(j->pakfire)) {
296 r = pakfire_jail_set_env(j, "SYSTEMD_OFFLINE", "1");
297 if (r)
298 goto ERROR;
299 }
300
fd37ccaf
MT
301 // Done
302 *jail = j;
303 return 0;
84bd7655 304
d5bc8fe0
MT
305ERROR:
306 pakfire_jail_free(j);
32d5f21d 307
d5bc8fe0 308 return r;
fd37ccaf
MT
309}
310
6ce56f90 311PAKFIRE_EXPORT struct pakfire_jail* pakfire_jail_ref(struct pakfire_jail* jail) {
fd37ccaf
MT
312 ++jail->nrefs;
313
314 return jail;
315}
316
6ce56f90 317PAKFIRE_EXPORT struct pakfire_jail* pakfire_jail_unref(struct pakfire_jail* jail) {
fd37ccaf
MT
318 if (--jail->nrefs > 0)
319 return jail;
320
321 pakfire_jail_free(jail);
322 return NULL;
323}
32d5f21d 324
cf440db8
MT
325// Resource Limits
326
327PAKFIRE_EXPORT int pakfire_jail_nice(struct pakfire_jail* jail, int nice) {
328 // Check if nice level is in range
329 if (nice < -19 || nice > 20) {
330 errno = EINVAL;
331 return 1;
332 }
333
334 // Store nice level
335 jail->nice = nice;
336
337 return 0;
338}
339
15503538
MT
340int pakfire_jail_set_cgroup(struct pakfire_jail* jail, struct pakfire_cgroup* cgroup) {
341 // Free any previous cgroup
342 if (jail->cgroup) {
343 pakfire_cgroup_unref(jail->cgroup);
344 jail->cgroup = NULL;
345 }
346
347 // Set any new cgroup
348 if (cgroup) {
349 DEBUG(jail->pakfire, "Setting cgroup %p\n", cgroup);
350
351 jail->cgroup = pakfire_cgroup_ref(cgroup);
352 }
353
354 // Done
355 return 0;
356}
357
32d5f21d
MT
358// Environment
359
360// Returns the length of the environment
361static unsigned int pakfire_jail_env_length(struct pakfire_jail* jail) {
362 unsigned int i = 0;
363
364 // Count everything in the environment
365 for (char** e = jail->env; *e; e++)
366 i++;
367
368 return i;
369}
370
371// Finds an existing environment variable and returns its index or -1 if not found
372static int pakfire_jail_find_env(struct pakfire_jail* jail, const char* key) {
373 if (!key) {
374 errno = EINVAL;
375 return -1;
376 }
377
b88ae806 378 const size_t length = strlen(key);
32d5f21d
MT
379
380 for (unsigned int i = 0; jail->env[i]; i++) {
b88ae806
MT
381 if ((pakfire_string_startswith(jail->env[i], key)
382 && *(jail->env[i] + length) == '=')) {
32d5f21d 383 return i;
b88ae806 384 }
32d5f21d
MT
385 }
386
387 // Nothing found
388 return -1;
389}
390
391// Returns the value of an environment variable or NULL
6ce56f90
MT
392PAKFIRE_EXPORT const char* pakfire_jail_get_env(struct pakfire_jail* jail,
393 const char* key) {
32d5f21d
MT
394 int i = pakfire_jail_find_env(jail, key);
395 if (i < 0)
396 return NULL;
397
398 return jail->env[i] + strlen(key) + 1;
399}
400
401// Sets an environment variable
6ce56f90
MT
402PAKFIRE_EXPORT int pakfire_jail_set_env(struct pakfire_jail* jail,
403 const char* key, const char* value) {
32d5f21d
MT
404 // Find the index where to write this value to
405 int i = pakfire_jail_find_env(jail, key);
406 if (i < 0)
407 i = pakfire_jail_env_length(jail);
408
409 // Return -ENOSPC when the environment is full
410 if (i >= ENVIRON_SIZE) {
411 errno = ENOSPC;
412 return -1;
413 }
414
415 // Free any previous value
416 if (jail->env[i])
417 free(jail->env[i]);
418
419 // Format and set environment variable
420 asprintf(&jail->env[i], "%s=%s", key, value);
421
422 DEBUG(jail->pakfire, "Set environment variable: %s\n", jail->env[i]);
423
424 return 0;
425}
9f50bf71 426
939025e7 427// Imports an environment
6ce56f90 428PAKFIRE_EXPORT int pakfire_jail_import_env(struct pakfire_jail* jail, const char* env[]) {
939025e7
MT
429 if (!env)
430 return 0;
431
432 char* key;
433 char* val;
434 int r;
435
436 // Copy environment variables
437 for (unsigned int i = 0; env[i]; i++) {
438 r = pakfire_string_partition(env[i], "=", &key, &val);
439 if (r)
440 continue;
441
442 // Set value
443 r = pakfire_jail_set_env(jail, key, val);
444
445 if (key)
446 free(key);
447 if (val)
448 free(val);
449
450 // Break on error
451 if (r)
452 return r;
453 }
454
455 return 0;
456}
457
335b8a44
MT
458// Timeout
459
460PAKFIRE_EXPORT int pakfire_jail_set_timeout(
461 struct pakfire_jail* jail, unsigned int timeout) {
462 // Store value
463 jail->timeout.it_value.tv_sec = timeout;
464
465 if (timeout > 0)
466 DEBUG(jail->pakfire, "Timeout set to %d second(s)\n", timeout);
467 else
468 DEBUG(jail->pakfire, "Timeout disabled\n");
469
470 return 0;
471}
472
473static int pakfire_jail_create_timer(struct pakfire_jail* jail) {
474 int r;
475
476 // Nothing to do if no timeout has been set
477 if (!jail->timeout.it_value.tv_sec)
478 return -1;
479
480 // Create a new timer
481 const int fd = timerfd_create(CLOCK_MONOTONIC, 0);
482 if (fd < 0) {
483 ERROR(jail->pakfire, "Could not create timer: %m\n");
484 goto ERROR;
485 }
486
487 // Arm timer
488 r = timerfd_settime(fd, 0, &jail->timeout, NULL);
489 if (r) {
490 ERROR(jail->pakfire, "Could not arm timer: %m\n");
491 goto ERROR;
492 }
493
494 return fd;
495
496ERROR:
497 if (fd > 0)
498 close(fd);
499
500 return -1;
501}
502
47d2da8e
MT
503// Signals
504
505static int pakfire_jail_handle_signals(struct pakfire_jail* jail) {
506 sigset_t mask;
507 int r;
508
509 sigemptyset(&mask);
510 sigaddset(&mask, SIGINT);
511
512 // Block signals
513 r = sigprocmask(SIG_BLOCK, &mask, NULL);
514 if (r < 0) {
515 ERROR(jail->pakfire, "Failed to block signals: %m\n");
516 return r;
517 }
518
519 // Create a file descriptor
520 r = signalfd(-1, &mask, SFD_NONBLOCK|SFD_CLOEXEC);
521 if (r < 0) {
522 ERROR(jail->pakfire, "Failed to create signalfd: %m\n");
523 return r;
524 }
525
526 return r;
527}
528
e33387d3
MT
529/*
530 This function replaces any logging in the child process.
531
532 All log messages will be sent to the parent process through their respective pipes.
533*/
534static void pakfire_jail_log(void* data, int priority, const char* file,
535 int line, const char* fn, const char* format, va_list args) {
536 struct pakfire_jail_pipes* pipes = (struct pakfire_jail_pipes*)data;
537 int fd;
538
539 switch (priority) {
540 case LOG_INFO:
541 fd = pipes->log_INFO[1];
542 break;
543
544 case LOG_ERR:
545 fd = pipes->log_ERROR[1];
546 break;
547
548#ifdef ENABLE_DEBUG
549 case LOG_DEBUG:
550 fd = pipes->log_DEBUG[1];
551 break;
552#endif /* ENABLE_DEBUG */
553
554 // Ignore any messages of an unknown priority
555 default:
556 return;
557 }
558
559 // Send the log message
560 if (fd)
561 vdprintf(fd, format, args);
562}
563
616f1fca
MT
564static int pakfire_jail_log_buffer_is_full(const struct pakfire_log_buffer* buffer) {
565 return (sizeof(buffer->data) == buffer->used);
566}
567
568/*
569 This function reads as much data as it can from the file descriptor.
570 If it finds a whole line in it, it will send it to the logger and repeat the process.
571 If not newline character is found, it will try to read more data until it finds one.
572*/
573static int pakfire_jail_handle_log(struct pakfire_jail* jail,
e33387d3 574 struct pakfire_jail_exec* ctx, int priority, int fd,
2015cb92 575 struct pakfire_log_buffer* buffer, pakfire_jail_communicate_out callback, void* data) {
616f1fca
MT
576 char line[BUFFER_SIZE + 1];
577
578 // Fill up buffer from fd
579 if (buffer->used < sizeof(buffer->data)) {
580 ssize_t bytes_read = read(fd, buffer->data + buffer->used,
581 sizeof(buffer->data) - buffer->used);
582
583 // Handle errors
584 if (bytes_read < 0) {
585 ERROR(jail->pakfire, "Could not read from fd %d: %m\n", fd);
586 return -1;
587 }
588
589 // Update buffer size
590 buffer->used += bytes_read;
591 }
592
593 // See if we have any lines that we can write
594 while (buffer->used) {
595 // Search for the end of the first line
596 char* eol = memchr(buffer->data, '\n', buffer->used);
597
598 // No newline found
599 if (!eol) {
600 // If the buffer is full, we send the content to the logger and try again
601 // This should not happen in practise
602 if (pakfire_jail_log_buffer_is_full(buffer)) {
603 DEBUG(jail->pakfire, "Logging buffer is full. Sending all content\n");
604
605 eol = buffer->data + sizeof(buffer->data) - 1;
606
607 // Otherwise we might have only read parts of the output
608 } else
609 break;
610 }
611
612 // Find the length of the string
613 size_t length = eol - buffer->data + 1;
614
615 // Copy the line into the buffer
616 memcpy(line, buffer->data, length);
617
618 // Terminate the string
619 line[length] = '\0';
620
621 // Log the line
e33387d3
MT
622 if (callback) {
623 int r = callback(jail->pakfire, data, priority, line, length);
616f1fca
MT
624 if (r) {
625 ERROR(jail->pakfire, "The logging callback returned an error: %d\n", r);
626 return r;
627 }
628 }
629
630 // Remove line from buffer
631 memmove(buffer->data, buffer->data + length, buffer->used - length);
632 buffer->used -= length;
633 }
634
635 return 0;
636}
637
06b864ae
MT
638static int pakfire_jail_stream_stdin(struct pakfire_jail* jail,
639 struct pakfire_jail_exec* ctx, const int fd) {
640 int r;
641
642 // Nothing to do if there is no stdin callback set
643 if (!ctx->communicate.in) {
644 DEBUG(jail->pakfire, "Callback for standard input is not set\n");
645 return 0;
646 }
647
f5a70a96
MT
648 // Skip if the writing pipe has already been closed
649 if (!ctx->pipes.stdin[1])
650 return 0;
651
06b864ae
MT
652 DEBUG(jail->pakfire, "Streaming standard input...\n");
653
654 // Calling the callback
655 r = ctx->communicate.in(jail->pakfire, ctx->communicate.data, fd);
656
657 DEBUG(jail->pakfire, "Standard input callback finished: %d\n", r);
658
659 // The callback signaled that it has written everything
660 if (r == EOF) {
661 DEBUG(jail->pakfire, "Closing standard input pipe\n");
662
f5a70a96 663 // Close the file-descriptor
06b864ae 664 close(fd);
f5a70a96
MT
665
666 // Reset the file-descriptor so it won't be closed again later
667 ctx->pipes.stdin[1] = 0;
668
669 // Report success
06b864ae
MT
670 r = 0;
671 }
672
673 return r;
674}
675
195fe455
MT
676static int pakfire_jail_setup_pipe(struct pakfire_jail* jail, int (*fds)[2], const int flags) {
677 int r = pipe2(*fds, flags);
678 if (r < 0) {
679 ERROR(jail->pakfire, "Could not setup pipe: %m\n");
680 return 1;
681 }
682
683 return 0;
684}
685
686static void pakfire_jail_close_pipe(struct pakfire_jail* jail, int fds[2]) {
687 for (unsigned int i = 0; i < 2; i++)
688 if (fds[i])
689 close(fds[i]);
690}
691
e33387d3
MT
692/*
693 This is a convenience function to fetch the reading end of a pipe and
694 closes the write end.
695*/
06b864ae 696static int pakfire_jail_get_pipe_to_read(struct pakfire_jail* jail, int (*fds)[2]) {
e33387d3
MT
697 // Give the variables easier names to avoid confusion
698 int* fd_read = &(*fds)[0];
699 int* fd_write = &(*fds)[1];
700
701 // Close the write end of the pipe
702 if (*fd_write) {
703 close(*fd_write);
d2eaf8dc 704 *fd_write = -1;
e33387d3
MT
705 }
706
707 // Return the read end
708 return *fd_read;
709}
710
06b864ae
MT
711static int pakfire_jail_get_pipe_to_write(struct pakfire_jail* jail, int (*fds)[2]) {
712 // Give the variables easier names to avoid confusion
713 int* fd_read = &(*fds)[0];
714 int* fd_write = &(*fds)[1];
715
716 // Close the read end of the pipe
717 if (*fd_read) {
718 close(*fd_read);
d2eaf8dc 719 *fd_read = -1;
06b864ae
MT
720 }
721
722 // Return the write end
723 return *fd_write;
724}
725
d853213d 726static int pakfire_jail_wait(struct pakfire_jail* jail, struct pakfire_jail_exec* ctx) {
616f1fca
MT
727 int epollfd = -1;
728 struct epoll_event ev;
729 struct epoll_event events[EPOLL_MAX_EVENTS];
47d2da8e 730 struct signalfd_siginfo siginfo;
335b8a44 731 char garbage[8];
616f1fca
MT
732 int r = 0;
733
734 // Fetch file descriptors from context
06b864ae
MT
735 const int stdin = pakfire_jail_get_pipe_to_write(jail, &ctx->pipes.stdin);
736 const int stdout = pakfire_jail_get_pipe_to_read(jail, &ctx->pipes.stdout);
737 const int stderr = pakfire_jail_get_pipe_to_read(jail, &ctx->pipes.stderr);
d853213d 738 const int pidfd = ctx->pidfd;
616f1fca 739
335b8a44
MT
740 // Timer
741 const int timerfd = pakfire_jail_create_timer(jail);
742
e33387d3 743 // Logging
06b864ae
MT
744 const int log_INFO = pakfire_jail_get_pipe_to_read(jail, &ctx->pipes.log_INFO);
745 const int log_ERROR = pakfire_jail_get_pipe_to_read(jail, &ctx->pipes.log_ERROR);
746 const int log_DEBUG = pakfire_jail_get_pipe_to_read(jail, &ctx->pipes.log_DEBUG);
7ebfb7cb 747
47d2da8e
MT
748 // Signals
749 const int signalfd = pakfire_jail_handle_signals(jail);
750
7ebfb7cb 751 // Make a list of all file descriptors we are interested in
47d2da8e
MT
752 const int fds[] = {
753 stdin, stdout, stderr, pidfd, timerfd, signalfd, log_INFO, log_ERROR, log_DEBUG,
616f1fca
MT
754 };
755
756 // Setup epoll
757 epollfd = epoll_create1(0);
758 if (epollfd < 0) {
759 ERROR(jail->pakfire, "Could not initialize epoll(): %m\n");
760 r = 1;
d853213d 761 goto ERROR;
616f1fca
MT
762 }
763
616f1fca 764 // Turn file descriptors into non-blocking mode and add them to epoll()
3aad8c0d 765 for (unsigned int i = 0; i < sizeof(fds) / sizeof(*fds); i++) {
616f1fca
MT
766 int fd = fds[i];
767
d853213d 768 // Skip fds which were not initialized
d2eaf8dc 769 if (fd < 0)
d853213d
MT
770 continue;
771
e48beb24
MT
772 ev.events = EPOLLHUP;
773
774 if (fd == stdin)
775 ev.events |= EPOLLOUT;
776 else
777 ev.events |= EPOLLIN;
778
06b864ae
MT
779 // Read flags
780 int flags = fcntl(fd, F_GETFL, 0);
781
782 // Set modified flags
783 if (fcntl(fd, F_SETFL, flags|O_NONBLOCK) < 0) {
784 ERROR(jail->pakfire,
785 "Could not set file descriptor %d into non-blocking mode: %m\n", fd);
786 r = 1;
787 goto ERROR;
788 }
789
616f1fca
MT
790 ev.data.fd = fd;
791
792 if (epoll_ctl(epollfd, EPOLL_CTL_ADD, fd, &ev) < 0) {
793 ERROR(jail->pakfire, "Could not add file descriptor %d to epoll(): %m\n", fd);
794 r = 1;
d853213d 795 goto ERROR;
616f1fca
MT
796 }
797 }
798
799 int ended = 0;
800
801 // Loop for as long as the process is alive
802 while (!ended) {
616f1fca
MT
803 int num = epoll_wait(epollfd, events, EPOLL_MAX_EVENTS, -1);
804 if (num < 1) {
805 // Ignore if epoll_wait() has been interrupted
806 if (errno == EINTR)
807 continue;
808
809 ERROR(jail->pakfire, "epoll_wait() failed: %m\n");
810 r = 1;
811
d853213d 812 goto ERROR;
616f1fca
MT
813 }
814
616f1fca 815 for (int i = 0; i < num; i++) {
e068b964 816 int e = events[i].events;
616f1fca
MT
817 int fd = events[i].data.fd;
818
e33387d3 819 struct pakfire_log_buffer* buffer = NULL;
2015cb92 820 pakfire_jail_communicate_out callback = NULL;
e33387d3
MT
821 void* data = NULL;
822 int priority;
823
e068b964
MT
824 // Check if there is any data to be read
825 if (e & EPOLLIN) {
826 // Handle any changes to the PIDFD
827 if (fd == pidfd) {
828 // Call waidid() and store the result
829 r = waitid(P_PIDFD, ctx->pidfd, &ctx->status, WEXITED);
830 if (r) {
831 ERROR(jail->pakfire, "waitid() failed: %m\n");
832 goto ERROR;
833 }
d853213d 834
e068b964
MT
835 // Mark that we have ended so that we will process the remaining
836 // events from epoll() now, but won't restart the outer loop.
837 ended = 1;
838 continue;
d853213d 839
335b8a44
MT
840 // Handle timer events
841 } else if (fd == timerfd) {
842 DEBUG(jail->pakfire, "Timer event received\n");
843
844 // Disarm the timer
845 r = read(timerfd, garbage, sizeof(garbage));
846 if (r < 1) {
847 ERROR(jail->pakfire, "Could not disarm timer: %m\n");
848 r = 1;
849 goto ERROR;
850 }
851
852 // Terminate the process if it hasn't already ended
853 if (!ended) {
854 DEBUG(jail->pakfire, "Terminating process...\n");
855
856 // Send SIGTERM to the process
857 r = pidfd_send_signal(pidfd, SIGKILL, NULL, 0);
858 if (r) {
859 ERROR(jail->pakfire, "Could not kill process: %m\n");
860 goto ERROR;
861 }
862 }
863
864 // There is nothing else to do
865 continue;
866
47d2da8e
MT
867 // Handle signals
868 } else if (fd == signalfd) {
869 // Read the signal
870 r = read(signalfd, &siginfo, sizeof(siginfo));
871 if (r < 1) {
872 ERROR(jail->pakfire, "Could not read signal: %m\n");
873 goto ERROR;
874 }
875
876 DEBUG(jail->pakfire, "Received signal %d\n", siginfo.ssi_signo);
877
878 // Handle signals
879 switch (siginfo.ssi_signo) {
880 // Pass SIGINT down to the child process
881 case SIGINT:
882 r = pidfd_send_signal(pidfd, siginfo.ssi_signo, NULL, 0);
883 if (r) {
884 ERROR(jail->pakfire, "Could not send signal to process: %m\n");
885 goto ERROR;
886 }
887 break;
888
889 default:
890 ERROR(jail->pakfire, "Received unhandled signal %d\n",
891 siginfo.ssi_signo);
892 break;
893 }
894
895 // Don't fall through to log processing
896 continue;
897
e068b964
MT
898 // Handle logging messages
899 } else if (fd == log_INFO) {
900 buffer = &ctx->buffers.log_INFO;
901 priority = LOG_INFO;
e33387d3 902
e068b964 903 callback = pakfire_jail_default_log_callback;
e33387d3 904
e068b964
MT
905 } else if (fd == log_ERROR) {
906 buffer = &ctx->buffers.log_ERROR;
907 priority = LOG_ERR;
e33387d3 908
e068b964 909 callback = pakfire_jail_default_log_callback;
e33387d3 910
e068b964
MT
911 } else if (fd == log_DEBUG) {
912 buffer = &ctx->buffers.log_DEBUG;
913 priority = LOG_DEBUG;
e33387d3 914
e068b964 915 callback = pakfire_jail_default_log_callback;
e33387d3 916
e068b964
MT
917 // Handle anything from the log pipes
918 } else if (fd == stdout) {
919 buffer = &ctx->buffers.stdout;
920 priority = LOG_INFO;
616f1fca 921
2015cb92
MT
922 callback = ctx->communicate.out;
923 data = ctx->communicate.data;
e33387d3 924
e068b964
MT
925 } else if (fd == stderr) {
926 buffer = &ctx->buffers.stderr;
927 priority = LOG_ERR;
616f1fca 928
2015cb92
MT
929 callback = ctx->communicate.out;
930 data = ctx->communicate.data;
e33387d3 931
e068b964
MT
932 } else {
933 DEBUG(jail->pakfire, "Received invalid file descriptor %d\n", fd);
934 continue;
935 }
936
937 // Handle log event
938 r = pakfire_jail_handle_log(jail, ctx, priority, fd, buffer, callback, data);
939 if (r)
940 goto ERROR;
616f1fca
MT
941 }
942
06b864ae
MT
943 if (e & EPOLLOUT) {
944 // Handle standard input
945 if (fd == stdin) {
946 r = pakfire_jail_stream_stdin(jail, ctx, fd);
947 if (r) {
948 switch (errno) {
949 // Ignore if we filled up the buffer
950 case EAGAIN:
951 break;
952
953 default:
954 ERROR(jail->pakfire, "Could not write to stdin: %m\n");
955 goto ERROR;
956 }
957 }
958 }
959 }
960
e068b964
MT
961 // Check if any file descriptors have been closed
962 if (e & EPOLLHUP) {
963 // Remove the file descriptor
964 r = epoll_ctl(epollfd, EPOLL_CTL_DEL, fd, NULL);
965 if (r) {
966 ERROR(jail->pakfire, "Could not remove closed file-descriptor %d: %m\n", fd);
967 goto ERROR;
968 }
969 }
616f1fca
MT
970 }
971 }
972
d853213d 973ERROR:
616f1fca
MT
974 if (epollfd > 0)
975 close(epollfd);
335b8a44
MT
976 if (timerfd > 0)
977 close(timerfd);
47d2da8e
MT
978 if (signalfd > 0)
979 close(signalfd);
616f1fca
MT
980
981 return r;
982}
983
ccdd2e95
MT
984int pakfire_jail_capture_stdout(struct pakfire* pakfire, void* data,
985 int priority, const char* line, size_t length) {
12b9b39f
MT
986 char** output = (char**)data;
987 int r;
0de6bb30 988
2015cb92
MT
989 // Append everything from stdout to a buffer
990 if (output && priority == LOG_INFO) {
12b9b39f
MT
991 r = asprintf(output, "%s%s", (output && *output) ? *output : "", line);
992 if (r < 0)
0de6bb30 993 return 1;
0de6bb30
MT
994 return 0;
995 }
996
997 // Send everything else to the default logger
998 return pakfire_jail_default_log_callback(pakfire, NULL, priority, line, length);
999}
1000
980b15af
MT
1001// Capabilities
1002
e6791c52
MT
1003// Logs all capabilities of the current process
1004static int pakfire_jail_show_capabilities(struct pakfire_jail* jail) {
1005 cap_t caps = NULL;
1006 char* name = NULL;
1007 cap_flag_value_t value_e;
1008 cap_flag_value_t value_i;
1009 cap_flag_value_t value_p;
1010 int r;
980b15af 1011
e6791c52
MT
1012 // Fetch PID
1013 pid_t pid = getpid();
980b15af 1014
e6791c52
MT
1015 // Fetch all capabilities
1016 caps = cap_get_proc();
1017 if (!caps) {
1018 ERROR(jail->pakfire, "Could not fetch capabilities: %m\n");
1019 r = 1;
1020 goto ERROR;
1021 }
980b15af 1022
e6791c52 1023 DEBUG(jail->pakfire, "Capabilities of PID %d:\n", pid);
980b15af 1024
e6791c52
MT
1025 // Iterate over all capabilities
1026 for (unsigned int cap = 0; cap_valid(cap); cap++) {
1027 name = cap_to_name(cap);
980b15af 1028
e6791c52
MT
1029 // Fetch effective value
1030 r = cap_get_flag(caps, cap, CAP_EFFECTIVE, &value_e);
1031 if (r)
1032 goto ERROR;
980b15af 1033
e6791c52
MT
1034 // Fetch inheritable value
1035 r = cap_get_flag(caps, cap, CAP_INHERITABLE, &value_i);
1036 if (r)
1037 goto ERROR;
980b15af 1038
e6791c52
MT
1039 // Fetch permitted value
1040 r = cap_get_flag(caps, cap, CAP_PERMITTED, &value_p);
1041 if (r)
1042 goto ERROR;
980b15af 1043
e6791c52
MT
1044 DEBUG(jail->pakfire,
1045 " %-24s : %c%c%c\n",
1046 name,
1047 (value_e == CAP_SET) ? 'e' : '-',
1048 (value_i == CAP_SET) ? 'i' : '-',
1049 (value_p == CAP_SET) ? 'p' : '-'
1050 );
980b15af 1051
e6791c52
MT
1052 // Free name
1053 cap_free(name);
1054 name = NULL;
1055 }
980b15af 1056
e6791c52
MT
1057 // Success
1058 r = 0;
980b15af 1059
e6791c52
MT
1060ERROR:
1061 if (name)
1062 cap_free(name);
1063 if (caps)
1064 cap_free(caps);
980b15af 1065
e6791c52
MT
1066 return r;
1067}
980b15af 1068
e6791c52
MT
1069static int pakfire_jail_set_capabilities(struct pakfire_jail* jail) {
1070 cap_t caps = NULL;
1071 char* name = NULL;
1072 int r;
980b15af 1073
e6791c52
MT
1074 // Fetch capabilities
1075 caps = cap_get_proc();
1076 if (!caps) {
1077 ERROR(jail->pakfire, "Could not read capabilities: %m\n");
1078 r = 1;
1079 goto ERROR;
1080 }
980b15af 1081
e6791c52
MT
1082 // Walk through all capabilities
1083 for (cap_value_t cap = 0; cap_valid(cap); cap++) {
1084 cap_value_t _caps[] = { cap };
980b15af 1085
e6791c52
MT
1086 // Fetch the name of the capability
1087 name = cap_to_name(cap);
980b15af 1088
e6791c52
MT
1089 r = cap_set_flag(caps, CAP_EFFECTIVE, 1, _caps, CAP_SET);
1090 if (r) {
1091 ERROR(jail->pakfire, "Could not set %s: %m\n", name);
1092 goto ERROR;
1093 }
980b15af 1094
e6791c52 1095 r = cap_set_flag(caps, CAP_INHERITABLE, 1, _caps, CAP_SET);
980b15af 1096 if (r) {
e6791c52
MT
1097 ERROR(jail->pakfire, "Could not set %s: %m\n", name);
1098 goto ERROR;
980b15af
MT
1099 }
1100
e6791c52
MT
1101 r = cap_set_flag(caps, CAP_PERMITTED, 1, _caps, CAP_SET);
1102 if (r) {
1103 ERROR(jail->pakfire, "Could not set %s: %m\n", name);
1104 goto ERROR;
1105 }
980b15af 1106
e6791c52
MT
1107 // Free name
1108 cap_free(name);
1109 name = NULL;
980b15af
MT
1110 }
1111
e6791c52
MT
1112 // Restore all capabilities
1113 r = cap_set_proc(caps);
980b15af 1114 if (r) {
e6791c52 1115 ERROR(jail->pakfire, "Restoring capabilities failed: %m\n");
980b15af
MT
1116 goto ERROR;
1117 }
1118
e6791c52
MT
1119 // Add all capabilities to the ambient set
1120 for (unsigned int cap = 0; cap_valid(cap); cap++) {
1121 name = cap_to_name(cap);
1122
1123 // Raise the capability
1124 r = prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_RAISE, cap, 0, 0);
1125 if (r) {
1126 ERROR(jail->pakfire, "Could not set ambient capability %s: %m\n", name);
1127 goto ERROR;
1128 }
1129
1130 // Free name
1131 cap_free(name);
1132 name = NULL;
980b15af
MT
1133 }
1134
e6791c52
MT
1135 // Success
1136 r = 0;
1137
980b15af 1138ERROR:
e6791c52
MT
1139 if (name)
1140 cap_free(name);
980b15af
MT
1141 if (caps)
1142 cap_free(caps);
1143
1144 return r;
1145}
1146
739d5b57
MT
1147// Syscall Filter
1148
1149static int pakfire_jail_limit_syscalls(struct pakfire_jail* jail) {
1150 const int syscalls[] = {
1151 // The kernel's keyring isn't namespaced
1152 SCMP_SYS(keyctl),
1153 SCMP_SYS(add_key),
1154 SCMP_SYS(request_key),
1155
1156 // Disable userfaultfd
1157 SCMP_SYS(userfaultfd),
1158
1159 // Disable perf which could leak a lot of information about the host
1160 SCMP_SYS(perf_event_open),
1161
1162 0,
1163 };
1164 int r = 1;
1165
1166 DEBUG(jail->pakfire, "Applying syscall filter...\n");
1167
1168 // Setup a syscall filter which allows everything by default
1169 scmp_filter_ctx ctx = seccomp_init(SCMP_ACT_ALLOW);
1170 if (!ctx) {
1171 ERROR(jail->pakfire, "Could not setup seccomp filter: %m\n");
1172 goto ERROR;
1173 }
1174
1175 // All all syscalls
1176 for (const int* syscall = syscalls; *syscall; syscall++) {
1177 r = seccomp_rule_add(ctx, SCMP_ACT_ERRNO(EPERM), *syscall, 0);
1178 if (r) {
1179 ERROR(jail->pakfire, "Could not configure syscall %d: %m\n", *syscall);
1180 goto ERROR;
1181 }
1182 }
1183
1184 // Load syscall filter into the kernel
1185 r = seccomp_load(ctx);
1186 if (r) {
1187 ERROR(jail->pakfire, "Could not load syscall filter into the kernel: %m\n");
1188 goto ERROR;
1189 }
1190
1191ERROR:
1192 if (ctx)
1193 seccomp_release(ctx);
1194
1195 return r;
1196}
1197
cc6e2264
MT
1198// Mountpoints
1199
061223f7 1200PAKFIRE_EXPORT int pakfire_jail_bind(struct pakfire_jail* jail,
cc6e2264
MT
1201 const char* source, const char* target, int flags) {
1202 struct pakfire_jail_mountpoint* mp = NULL;
1203 int r;
1204
1205 // Check if there is any space left
1206 if (jail->num_mountpoints >= MAX_MOUNTPOINTS) {
1207 errno = ENOSPC;
1208 return 1;
1209 }
1210
1211 // Check for valid inputs
1212 if (!source || !target) {
1213 errno = EINVAL;
1214 return 1;
1215 }
1216
1217 // Select the next free slot
1218 mp = &jail->mountpoints[jail->num_mountpoints];
1219
1220 // Copy source
1221 r = pakfire_string_set(mp->source, source);
a60955af 1222 if (r) {
cc6e2264 1223 ERROR(jail->pakfire, "Could not copy source: %m\n");
a60955af 1224 return r;
cc6e2264
MT
1225 }
1226
1227 // Copy target
1228 r = pakfire_string_set(mp->target, target);
a60955af 1229 if (r) {
cc6e2264 1230 ERROR(jail->pakfire, "Could not copy target: %m\n");
a60955af 1231 return r;
cc6e2264
MT
1232 }
1233
1234 // Copy flags
1235 mp->flags = flags;
1236
1237 // Increment counter
1238 jail->num_mountpoints++;
1239
1240 return 0;
1241}
1242
7bdf1d8e
MT
1243static int pakfire_jail_mount_networking(struct pakfire_jail* jail) {
1244 int r;
1245
1246 const char* paths[] = {
1247 "/etc/hosts",
1248 "/etc/resolv.conf",
1249 NULL,
1250 };
1251
1252 // Bind-mount all paths read-only
1253 for (const char** path = paths; *path; path++) {
1254 r = pakfire_bind(jail->pakfire, *path, NULL, MS_RDONLY);
1255 if (r)
1256 return r;
1257 }
1258
1259 return 0;
1260}
1261
cc6e2264
MT
1262/*
1263 Mounts everything that we require in the new namespace
1264*/
7bdf1d8e 1265static int pakfire_jail_mount(struct pakfire_jail* jail, struct pakfire_jail_exec* ctx) {
cc6e2264 1266 struct pakfire_jail_mountpoint* mp = NULL;
282b732a 1267 int flags = 0;
cc6e2264
MT
1268 int r;
1269
282b732a
MT
1270 // Enable loop devices
1271 if (pakfire_jail_exec_has_flag(ctx, PAKFIRE_JAIL_HAS_LOOP_DEVICES))
1272 flags |= PAKFIRE_MOUNT_LOOP_DEVICES;
1273
cc6e2264 1274 // Mount all default stuff
282b732a 1275 r = pakfire_mount_all(jail->pakfire, flags);
cc6e2264
MT
1276 if (r)
1277 return r;
1278
7bdf1d8e
MT
1279 // Mount networking stuff
1280 if (pakfire_jail_exec_has_flag(ctx, PAKFIRE_JAIL_HAS_NETWORKING)) {
1281 r = pakfire_jail_mount_networking(jail);
1282 if (r)
1283 return r;
1284 }
1285
cc6e2264
MT
1286 // Mount all custom stuff
1287 for (unsigned int i = 0; i < jail->num_mountpoints; i++) {
1288 // Fetch mountpoint
1289 mp = &jail->mountpoints[i];
1290
1291 // Mount it
1292 r = pakfire_bind(jail->pakfire, mp->source, mp->target, mp->flags);
1293 if (r)
1294 return r;
1295 }
1296
1297 // Log all mountpoints
1298 pakfire_mount_list(jail->pakfire);
1299
1300 return 0;
1301}
1302
fec79a33
MT
1303// Networking
1304
1305static int pakfire_jail_setup_loopback(struct pakfire_jail* jail) {
1306 struct nl_sock* nl = NULL;
1307 struct nl_cache* cache = NULL;
1308 struct rtnl_link* link = NULL;
1309 struct rtnl_link* change = NULL;
1310 int r;
1311
1312 DEBUG(jail->pakfire, "Setting up loopback...\n");
1313
1314 // Allocate a netlink socket
1315 nl = nl_socket_alloc();
1316 if (!nl) {
1317 ERROR(jail->pakfire, "Could not allocate a netlink socket: %m\n");
1318 r = 1;
1319 goto ERROR;
1320 }
1321
1322 // Connect the socket
1323 r = nl_connect(nl, NETLINK_ROUTE);
1324 if (r) {
1325 ERROR(jail->pakfire, "Could not connect netlink socket: %s\n", nl_geterror(r));
1326 goto ERROR;
1327 }
1328
1329 // Allocate the netlink cache
1330 r = rtnl_link_alloc_cache(nl, AF_UNSPEC, &cache);
1331 if (r < 0) {
1332 ERROR(jail->pakfire, "Unable to allocate netlink cache: %s\n", nl_geterror(r));
1333 goto ERROR;
1334 }
1335
1336 // Fetch loopback interface
1337 link = rtnl_link_get_by_name(cache, "lo");
1338 if (!link) {
1339 ERROR(jail->pakfire, "Could not find lo interface. Ignoring.\n");
1340 r = 0;
1341 goto ERROR;
1342 }
1343
1344 // Allocate a new link
1345 change = rtnl_link_alloc();
1346 if (!change) {
1347 ERROR(jail->pakfire, "Could not allocate change link\n");
1348 r = 1;
1349 goto ERROR;
1350 }
1351
1352 // Set the link to UP
1353 rtnl_link_set_flags(change, IFF_UP);
1354
1355 // Apply any changes
1356 r = rtnl_link_change(nl, link, change, 0);
1357 if (r) {
1358 ERROR(jail->pakfire, "Unable to activate loopback: %s\n", nl_geterror(r));
1359 goto ERROR;
1360 }
1361
1362 // Success
1363 r = 0;
1364
1365ERROR:
1366 if (nl)
1367 nl_socket_free(nl);
1368
1369 return r;
1370}
1371
679ee2fa
MT
1372// UID/GID Mapping
1373
679ee2fa
MT
1374static int pakfire_jail_setup_uid_mapping(struct pakfire_jail* jail, pid_t pid) {
1375 char path[PATH_MAX];
1376 int r;
1377
4896e62c
MT
1378 // Skip mapping anything when running on /
1379 if (pakfire_on_root(jail->pakfire))
1380 return 0;
0f7f068b 1381
abe4ee37
MT
1382 // Make path
1383 r = pakfire_string_format(path, "/proc/%d/uid_map", pid);
1384 if (r)
1385 return r;
1386
1387 // Fetch UID
1388 const uid_t uid = pakfire_uid(jail->pakfire);
1389
4896e62c 1390 // Fetch SUBUID
a1ff2863 1391 const struct pakfire_subid* subuid = pakfire_subuid(jail->pakfire);
4896e62c
MT
1392 if (!subuid)
1393 return 1;
679ee2fa 1394
abe4ee37 1395 /* When running as root, we will map the entire range.
679ee2fa 1396
abe4ee37
MT
1397 When running as a non-privileged user, we will map the root user inside the jail
1398 to the user's UID outside of the jail, and we will map the rest starting from one.
1399 */
679ee2fa 1400
abe4ee37
MT
1401 // Running as root
1402 if (uid == 0) {
1403 r = pakfire_file_write(jail->pakfire, path, 0, 0, 0,
1404 "0 %lu %lu\n", subuid->id, subuid->length);
1405 } else {
1406 r = pakfire_file_write(jail->pakfire, path, 0, 0, 0,
b64888fa 1407 "0 %lu 1\n1 %lu %lu\n", uid, subuid->id, subuid->length);
abe4ee37
MT
1408 }
1409
1410 if (r) {
1411 ERROR(jail->pakfire, "Could not map UIDs: %m\n");
1412 return r;
1413 }
1414
1415 return r;
679ee2fa
MT
1416}
1417
1418static int pakfire_jail_setup_gid_mapping(struct pakfire_jail* jail, pid_t pid) {
1419 char path[PATH_MAX];
1420 int r;
1421
4896e62c
MT
1422 // Skip mapping anything when running on /
1423 if (pakfire_on_root(jail->pakfire))
1424 return 0;
0f7f068b 1425
abe4ee37
MT
1426 // Fetch GID
1427 const gid_t gid = pakfire_gid(jail->pakfire);
1428
4896e62c 1429 // Fetch SUBGID
a1ff2863 1430 const struct pakfire_subid* subgid = pakfire_subgid(jail->pakfire);
4896e62c
MT
1431 if (!subgid)
1432 return 1;
679ee2fa
MT
1433
1434 // Make path
1435 r = pakfire_string_format(path, "/proc/%d/gid_map", pid);
a60955af
MT
1436 if (r)
1437 return r;
679ee2fa 1438
abe4ee37
MT
1439 // Running as root
1440 if (gid == 0) {
1441 r = pakfire_file_write(jail->pakfire, path, 0, 0, 0,
1442 "0 %lu %lu\n", subgid->id, subgid->length);
1443 } else {
1444 r = pakfire_file_write(jail->pakfire, path, 0, 0, 0,
1445 "0 %lu 1\n%1 %lu %lu\n", gid, subgid->id, subgid->length);
1446 }
679ee2fa 1447
abe4ee37
MT
1448 if (r) {
1449 ERROR(jail->pakfire, "Could not map GIDs: %m\n");
1450 return r;
1451 }
1452
1453 return r;
679ee2fa
MT
1454}
1455
78d7488a
MT
1456static int pakfire_jail_setgroups(struct pakfire_jail* jail, pid_t pid) {
1457 char path[PATH_MAX];
1458 int r = 1;
1459
1460 // Make path
1461 r = pakfire_string_format(path, "/proc/%d/setgroups", pid);
a60955af
MT
1462 if (r)
1463 return r;
78d7488a
MT
1464
1465 // Open file for writing
1466 FILE* f = fopen(path, "w");
1467 if (!f) {
1468 ERROR(jail->pakfire, "Could not open %s for writing: %m\n", path);
1469 goto ERROR;
1470 }
1471
1472 // Write content
1473 int bytes_written = fprintf(f, "deny\n");
1474 if (bytes_written <= 0) {
1475 ERROR(jail->pakfire, "Could not write to %s: %m\n", path);
1476 goto ERROR;
1477 }
1478
1479 r = fclose(f);
1480 f = NULL;
1481 if (r) {
1482 ERROR(jail->pakfire, "Could not close %s: %m\n", path);
1483 goto ERROR;
1484 }
1485
1486ERROR:
1487 if (f)
1488 fclose(f);
1489
1490 return r;
1491}
1492
43dc0e16 1493static int pakfire_jail_send_signal(struct pakfire_jail* jail, int fd) {
743f449e
MT
1494 const uint64_t val = 1;
1495 int r = 0;
43dc0e16
MT
1496
1497 DEBUG(jail->pakfire, "Sending signal...\n");
1498
743f449e
MT
1499 // Write to the file descriptor
1500 ssize_t bytes_written = write(fd, &val, sizeof(val));
1501 if (bytes_written < 0 || (size_t)bytes_written < sizeof(val)) {
1502 ERROR(jail->pakfire, "Could not send signal: %m\n");
1503 r = 1;
1504 }
1505
1506 // Close the file descriptor
43dc0e16
MT
1507 close(fd);
1508
743f449e 1509 return r;
43dc0e16
MT
1510}
1511
1512static int pakfire_jail_wait_for_signal(struct pakfire_jail* jail, int fd) {
743f449e
MT
1513 uint64_t val = 0;
1514 int r = 0;
43dc0e16
MT
1515
1516 DEBUG(jail->pakfire, "Waiting for signal...\n");
1517
743f449e
MT
1518 ssize_t bytes_read = read(fd, &val, sizeof(val));
1519 if (bytes_read < 0 || (size_t)bytes_read < sizeof(val)) {
1520 ERROR(jail->pakfire, "Error waiting for signal: %m\n");
1521 r = 1;
1522 }
1523
1524 // Close the file descriptor
43dc0e16
MT
1525 close(fd);
1526
743f449e 1527 return r;
43dc0e16
MT
1528}
1529
679ee2fa
MT
1530/*
1531 Performs the initialisation that needs to happen in the parent part
1532*/
f7d240a7 1533static int pakfire_jail_parent(struct pakfire_jail* jail, struct pakfire_jail_exec* ctx) {
679ee2fa
MT
1534 int r;
1535
abe4ee37
MT
1536 // Setup UID mapping
1537 r = pakfire_jail_setup_uid_mapping(jail, ctx->pid);
679ee2fa
MT
1538 if (r)
1539 return r;
1540
abe4ee37
MT
1541 // Write "deny" to /proc/PID/setgroups
1542 r = pakfire_jail_setgroups(jail, ctx->pid);
78d7488a
MT
1543 if (r)
1544 return r;
1545
679ee2fa 1546 // Setup GID mapping
616f1fca 1547 r = pakfire_jail_setup_gid_mapping(jail, ctx->pid);
679ee2fa
MT
1548 if (r)
1549 return r;
1550
43dc0e16
MT
1551 // Parent has finished initialisation
1552 DEBUG(jail->pakfire, "Parent has finished initialization\n");
1553
1554 // Send signal to client
f7d240a7 1555 r = pakfire_jail_send_signal(jail, ctx->completed_fd);
43dc0e16
MT
1556 if (r)
1557 return r;
1558
679ee2fa
MT
1559 return 0;
1560}
1561
14df7388
MT
1562static int pakfire_jail_switch_root(struct pakfire_jail* jail, const char* root) {
1563 int r;
1564
1565 // Change to the new root
1566 r = chdir(root);
1567 if (r) {
1568 ERROR(jail->pakfire, "chdir(%s) failed: %m\n", root);
1569 return r;
1570 }
1571
1572 // Switch Root!
1573 r = pivot_root(".", ".");
1574 if (r) {
1575 ERROR(jail->pakfire, "Failed changing into the new root directory %s: %m\n", root);
1576 return r;
1577 }
1578
1579 // Umount the old root
1580 r = umount2(".", MNT_DETACH);
1581 if (r) {
1582 ERROR(jail->pakfire, "Could not umount the old root filesystem: %m\n");
1583 return r;
1584 }
1585
1586 return 0;
1587}
1588
616f1fca 1589static int pakfire_jail_child(struct pakfire_jail* jail, struct pakfire_jail_exec* ctx,
f7d240a7 1590 const char* argv[]) {
43dc0e16
MT
1591 int r;
1592
e33387d3
MT
1593 // Redirect any logging to our log pipe
1594 pakfire_set_log_callback(jail->pakfire, pakfire_jail_log, &ctx->pipes);
0bd84dc1 1595
2a7b5e00
MT
1596 // Die with parent
1597 r = prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
1598 if (r) {
1599 ERROR(jail->pakfire, "Could not configure to die with parent: %m\n");
1600 return 126;
1601 }
1602
cf440db8
MT
1603 // Fetch my own PID
1604 pid_t pid = getpid();
1605
1606 DEBUG(jail->pakfire, "Launched child process in jail with PID %d\n", pid);
0bd84dc1 1607
43dc0e16 1608 // Wait for the parent to finish initialization
f7d240a7 1609 r = pakfire_jail_wait_for_signal(jail, ctx->completed_fd);
43dc0e16
MT
1610 if (r)
1611 return r;
1612
4f59c39b
MT
1613 // Perform further initialization
1614
1615 // Fetch UID/GID
1616 uid_t uid = getuid();
1617 gid_t gid = getgid();
1618
1619 // Fetch EUID/EGID
1620 uid_t euid = geteuid();
1621 gid_t egid = getegid();
1622
1623 DEBUG(jail->pakfire, " UID: %d (effective %d)\n", uid, euid);
1624 DEBUG(jail->pakfire, " GID: %d (effective %d)\n", gid, egid);
1625
1626 // Check if we are (effectively running as root)
4f719e21 1627 if (uid || gid || euid || egid) {
4f59c39b
MT
1628 ERROR(jail->pakfire, "Child process is not running as root\n");
1629 return 126;
1630 }
1631
1632 const char* root = pakfire_get_path(jail->pakfire);
1633 const char* arch = pakfire_get_arch(jail->pakfire);
1634
9f558f7d
MT
1635 // Change mount propagation to slave to receive anything from the parent namespace
1636 r = pakfire_mount_change_propagation(jail->pakfire, MS_SLAVE, "/");
1637 if (r)
1638 return r;
1639
14df7388
MT
1640 // Make root a mountpoint in the new mount namespace
1641 r = pakfire_mount_make_mounpoint(jail->pakfire, root);
1642 if (r)
1643 return r;
1644
9f558f7d
MT
1645 // Change mount propagation to private
1646 r = pakfire_mount_change_propagation(jail->pakfire, MS_PRIVATE, root);
1647 if (r)
1648 return r;
1649
4f59c39b
MT
1650 // Change root (unless root is /)
1651 if (!pakfire_on_root(jail->pakfire)) {
1652 // Mount everything
7bdf1d8e 1653 r = pakfire_jail_mount(jail, ctx);
4f59c39b
MT
1654 if (r)
1655 return r;
1656
14df7388
MT
1657 // chroot()
1658 r = pakfire_jail_switch_root(jail, root);
1659 if (r)
1660 return r;
4f59c39b
MT
1661 }
1662
90d92b5c
MT
1663 // Set personality
1664 unsigned long persona = pakfire_arch_personality(arch);
1665 if (persona) {
1666 r = personality(persona);
1667 if (r < 0) {
1668 ERROR(jail->pakfire, "Could not set personality (%x)\n", (unsigned int)persona);
1669 return 1;
1670 }
1671 }
1672
fec79a33
MT
1673 // Setup networking
1674 if (!pakfire_jail_exec_has_flag(ctx, PAKFIRE_JAIL_HAS_NETWORKING)) {
1675 r = pakfire_jail_setup_loopback(jail);
1676 if (r)
1677 return 1;
1678 }
1679
cf440db8
MT
1680 // Set nice level
1681 if (jail->nice) {
1682 DEBUG(jail->pakfire, "Setting nice level to %d\n", jail->nice);
1683
1684 r = setpriority(PRIO_PROCESS, pid, jail->nice);
1685 if (r) {
1686 ERROR(jail->pakfire, "Could not set nice level: %m\n");
1687 return 1;
1688 }
1689 }
1690
e33387d3
MT
1691 // Close other end of log pipes
1692 close(ctx->pipes.log_INFO[0]);
1693 close(ctx->pipes.log_ERROR[0]);
1694#ifdef ENABLE_DEBUG
1695 close(ctx->pipes.log_DEBUG[0]);
1696#endif /* ENABLE_DEBUG */
1697
2015cb92 1698 // Connect standard input
bca69274 1699 if (ctx->pipes.stdin[0] >= 0) {
2015cb92
MT
1700 r = dup2(ctx->pipes.stdin[0], STDIN_FILENO);
1701 if (r < 0) {
1702 ERROR(jail->pakfire, "Could not connect fd %d to stdin: %m\n",
1703 ctx->pipes.stdin[0]);
1704
1705 return 1;
1706 }
1707 }
1708
7ebfb7cb 1709 // Connect standard output and error
bca69274 1710 if (ctx->pipes.stdout[1] >= 0 && ctx->pipes.stderr[1] >= 0) {
7ebfb7cb
MT
1711 r = dup2(ctx->pipes.stdout[1], STDOUT_FILENO);
1712 if (r < 0) {
1713 ERROR(jail->pakfire, "Could not connect fd %d to stdout: %m\n",
1714 ctx->pipes.stdout[1]);
1715
1716 return 1;
1717 }
1718
1719 r = dup2(ctx->pipes.stderr[1], STDERR_FILENO);
1720 if (r < 0) {
1721 ERROR(jail->pakfire, "Could not connect fd %d to stderr: %m\n",
1722 ctx->pipes.stderr[1]);
1723
1724 return 1;
1725 }
1726
195fe455 1727 // Close the pipe (as we have moved the original file descriptors)
2015cb92 1728 pakfire_jail_close_pipe(jail, ctx->pipes.stdin);
195fe455
MT
1729 pakfire_jail_close_pipe(jail, ctx->pipes.stdout);
1730 pakfire_jail_close_pipe(jail, ctx->pipes.stderr);
7ebfb7cb
MT
1731 }
1732
007bc66c
MT
1733 // Reset open file limit (http://0pointer.net/blog/file-descriptor-limits.html)
1734 r = pakfire_rlimit_reset_nofile(jail->pakfire);
1735 if (r)
1736 return r;
1737
e6791c52
MT
1738 // Don't drop any capabilities on execve()
1739 r = prctl(PR_SET_KEEPCAPS, 1);
1740 if (r) {
1741 ERROR(jail->pakfire, "Could not set PR_SET_KEEPCAPS: %m\n");
1742 return r;
1743 }
1744
1745 // Set capabilities
1746 r = pakfire_jail_set_capabilities(jail);
1747 if (r)
1748 return r;
1749
1750 // Show capabilities
1751 r = pakfire_jail_show_capabilities(jail);
980b15af
MT
1752 if (r)
1753 return r;
1754
739d5b57
MT
1755 // Filter syscalls
1756 r = pakfire_jail_limit_syscalls(jail);
1757 if (r)
1758 return r;
1759
2015cb92
MT
1760 DEBUG(jail->pakfire, "Child process initialization done\n");
1761 DEBUG(jail->pakfire, "Launching command:\n");
1762
1763 // Log argv
1764 for (unsigned int i = 0; argv[i]; i++)
1765 DEBUG(jail->pakfire, " argv[%d] = %s\n", i, argv[i]);
1766
b3498aeb
MT
1767 // exec() command
1768 r = execvpe(argv[0], (char**)argv, jail->env);
9fa1afb6
MT
1769 if (r < 0) {
1770 // Translate errno into regular exit code
1771 switch (errno) {
1772 case ENOENT:
1773 // Ignore if the command doesn't exist
1774 if (ctx->flags & PAKFIRE_JAIL_NOENT_OK)
1775 r = 0;
1776 else
1777 r = 127;
b3498aeb 1778
9fa1afb6 1779 break;
b3498aeb 1780
9fa1afb6
MT
1781 default:
1782 r = 1;
1783 }
1784
1785 ERROR(jail->pakfire, "Could not execve(%s): %m\n", argv[0]);
b3498aeb
MT
1786 }
1787
1788 // We should not get here
1789 return r;
0bd84dc1
MT
1790}
1791
9f50bf71 1792// Run a command in the jail
db4f234f 1793static int __pakfire_jail_exec(struct pakfire_jail* jail, const char* argv[],
2015cb92
MT
1794 const int interactive,
1795 pakfire_jail_communicate_in communicate_in,
1796 pakfire_jail_communicate_out communicate_out,
9fa1afb6 1797 void* data, int flags) {
4f59c39b 1798 int exit = -1;
0bd84dc1
MT
1799 int r;
1800
b3498aeb
MT
1801 // Check if argv is valid
1802 if (!argv || !argv[0]) {
1803 errno = EINVAL;
1804 return -1;
1805 }
1806
2015cb92
MT
1807 // Send any output to the default logger if no callback is set
1808 if (!communicate_out)
1809 communicate_out = pakfire_jail_default_log_callback;
1810
616f1fca
MT
1811 // Initialize context for this call
1812 struct pakfire_jail_exec ctx = {
9fa1afb6 1813 .flags = flags,
7bdf1d8e 1814
616f1fca 1815 .pipes = {
d2eaf8dc
MT
1816 .stdin = { -1, -1 },
1817 .stdout = { -1, -1 },
1818 .stderr = { -1, -1 },
2015cb92
MT
1819 },
1820
1821 .communicate = {
1822 .in = communicate_in,
1823 .out = communicate_out,
1824 .data = data,
616f1fca 1825 },
d2eaf8dc
MT
1826
1827 .pidfd = -1,
616f1fca
MT
1828 };
1829
0bd84dc1
MT
1830 DEBUG(jail->pakfire, "Executing jail...\n");
1831
7bdf1d8e
MT
1832 // Enable networking in interactive mode
1833 if (interactive)
1834 ctx.flags |= PAKFIRE_JAIL_HAS_NETWORKING;
1835
43dc0e16
MT
1836 /*
1837 Setup a file descriptor which can be used to notify the client that the parent
1838 has completed configuration.
1839 */
f7d240a7
MT
1840 ctx.completed_fd = eventfd(0, EFD_CLOEXEC);
1841 if (ctx.completed_fd < 0) {
43dc0e16
MT
1842 ERROR(jail->pakfire, "eventfd() failed: %m\n");
1843 return -1;
1844 }
1845
616f1fca 1846 // Create pipes to communicate with child process if we are not running interactively
58963c75 1847 if (!interactive) {
2015cb92
MT
1848 // stdin (only if callback is set)
1849 if (ctx.communicate.in) {
1850 r = pakfire_jail_setup_pipe(jail, &ctx.pipes.stdin, 0);
1851 if (r)
1852 goto ERROR;
1853 }
1854
616f1fca 1855 // stdout
e33387d3
MT
1856 r = pakfire_jail_setup_pipe(jail, &ctx.pipes.stdout, 0);
1857 if (r)
616f1fca 1858 goto ERROR;
616f1fca
MT
1859
1860 // stderr
e33387d3
MT
1861 r = pakfire_jail_setup_pipe(jail, &ctx.pipes.stderr, 0);
1862 if (r)
616f1fca 1863 goto ERROR;
616f1fca
MT
1864 }
1865
e33387d3
MT
1866 // Setup pipes for logging
1867 // INFO
1868 r = pakfire_jail_setup_pipe(jail, &ctx.pipes.log_INFO, O_CLOEXEC);
1869 if (r)
1870 goto ERROR;
1871
1872 // ERROR
1873 r = pakfire_jail_setup_pipe(jail, &ctx.pipes.log_ERROR, O_CLOEXEC);
1874 if (r)
1875 goto ERROR;
1876
1877#ifdef ENABLE_DEBUG
1878 // DEBUG
1879 r = pakfire_jail_setup_pipe(jail, &ctx.pipes.log_DEBUG, O_CLOEXEC);
1880 if (r)
1881 goto ERROR;
1882#endif /* ENABLE_DEBUG */
1883
0bd84dc1
MT
1884 // Configure child process
1885 struct clone_args args = {
1886 .flags =
1887 CLONE_NEWCGROUP |
1888 CLONE_NEWIPC |
1889 CLONE_NEWNS |
1890 CLONE_NEWPID |
e688e305 1891 CLONE_NEWTIME |
0bd84dc1 1892 CLONE_NEWUSER |
d853213d 1893 CLONE_NEWUTS |
02fd4f8b 1894 CLONE_PIDFD,
0bd84dc1 1895 .exit_signal = SIGCHLD,
d853213d 1896 .pidfd = (long long unsigned int)&ctx.pidfd,
0bd84dc1
MT
1897 };
1898
aca565fc 1899 // Launch the process in a cgroup that is a leaf of the configured cgroup
02fd4f8b
MT
1900 if (jail->cgroup) {
1901 args.flags |= CLONE_INTO_CGROUP;
1902
ae5201c5
MT
1903 // Fetch our UUID
1904 const char* uuid = pakfire_jail_uuid(jail);
aca565fc
MT
1905
1906 // Create a temporary cgroup
ae5201c5 1907 r = pakfire_cgroup_child(&ctx.cgroup, jail->cgroup, uuid, 0);
aca565fc
MT
1908 if (r) {
1909 ERROR(jail->pakfire, "Could not create cgroup for jail: %m\n");
1910 goto ERROR;
1911 }
1912
02fd4f8b 1913 // Clone into this cgroup
aca565fc 1914 args.cgroup = pakfire_cgroup_fd(ctx.cgroup);
02fd4f8b
MT
1915 }
1916
7bdf1d8e
MT
1917 // Setup networking
1918 if (!pakfire_jail_exec_has_flag(&ctx, PAKFIRE_JAIL_HAS_NETWORKING)) {
1919 args.flags |= CLONE_NEWNET;
1920 }
1921
0bd84dc1 1922 // Fork this process
616f1fca
MT
1923 ctx.pid = clone3(&args, sizeof(args));
1924 if (ctx.pid < 0) {
0bd84dc1
MT
1925 ERROR(jail->pakfire, "Could not clone: %m\n");
1926 return -1;
1927
1928 // Child process
616f1fca 1929 } else if (ctx.pid == 0) {
f7d240a7 1930 r = pakfire_jail_child(jail, &ctx, argv);
0bd84dc1
MT
1931 _exit(r);
1932 }
1933
679ee2fa 1934 // Parent process
f7d240a7 1935 r = pakfire_jail_parent(jail, &ctx);
679ee2fa
MT
1936 if (r)
1937 goto ERROR;
1938
616f1fca 1939 DEBUG(jail->pakfire, "Waiting for PID %d to finish its work\n", ctx.pid);
0bd84dc1 1940
616f1fca 1941 // Read output of the child process
d853213d
MT
1942 r = pakfire_jail_wait(jail, &ctx);
1943 if (r)
1944 goto ERROR;
0bd84dc1 1945
d853213d
MT
1946 // Handle exit status
1947 switch (ctx.status.si_code) {
1948 case CLD_EXITED:
1949 DEBUG(jail->pakfire, "The child process exited with code %d\n",
1950 ctx.status.si_status);
616f1fca 1951
d853213d
MT
1952 // Pass exit code
1953 exit = ctx.status.si_status;
1954 break;
0bd84dc1 1955
d853213d 1956 case CLD_KILLED:
d853213d 1957 ERROR(jail->pakfire, "The child process was killed\n");
54f64dc5
MT
1958 exit = 139;
1959 break;
1960
1961 case CLD_DUMPED:
1962 ERROR(jail->pakfire, "The child process terminated abnormally\n");
d853213d 1963 break;
0bd84dc1 1964
d853213d
MT
1965 // Log anything else
1966 default:
1967 ERROR(jail->pakfire, "Unknown child exit code: %d\n", ctx.status.si_code);
1968 break;
0bd84dc1
MT
1969 }
1970
679ee2fa 1971ERROR:
aca565fc
MT
1972 // Destroy the temporary cgroup (if any)
1973 if (ctx.cgroup) {
6b7cf275
MT
1974 // Read cgroup stats
1975 r = pakfire_cgroup_stat(ctx.cgroup, &ctx.cgroup_stats);
1976 if (r) {
1977 ERROR(jail->pakfire, "Could not read cgroup stats: %m\n");
1978 } else {
1979 pakfire_cgroup_stat_dump(ctx.cgroup, &ctx.cgroup_stats);
1980 }
1981
aca565fc
MT
1982 pakfire_cgroup_destroy(ctx.cgroup);
1983 pakfire_cgroup_unref(ctx.cgroup);
1984 }
1985
616f1fca 1986 // Close any file descriptors
2015cb92 1987 pakfire_jail_close_pipe(jail, ctx.pipes.stdin);
e33387d3
MT
1988 pakfire_jail_close_pipe(jail, ctx.pipes.stdout);
1989 pakfire_jail_close_pipe(jail, ctx.pipes.stderr);
d853213d
MT
1990 if (ctx.pidfd)
1991 close(ctx.pidfd);
e33387d3
MT
1992 pakfire_jail_close_pipe(jail, ctx.pipes.log_INFO);
1993 pakfire_jail_close_pipe(jail, ctx.pipes.log_ERROR);
1994 pakfire_jail_close_pipe(jail, ctx.pipes.log_DEBUG);
616f1fca 1995
4f59c39b 1996 return exit;
9f50bf71 1997}
a45ed6b0 1998
ccdd2e95 1999PAKFIRE_EXPORT int pakfire_jail_exec(
2015cb92
MT
2000 struct pakfire_jail* jail,
2001 const char* argv[],
2002 pakfire_jail_communicate_in callback_in,
2003 pakfire_jail_communicate_out callback_out,
9fa1afb6
MT
2004 void* data, int flags) {
2005 return __pakfire_jail_exec(jail, argv, 0, callback_in, callback_out, data, flags);
2015cb92
MT
2006}
2007
db4f234f 2008static int pakfire_jail_exec_interactive(
9fa1afb6 2009 struct pakfire_jail* jail, const char* argv[], int flags) {
db4f234f
MT
2010 int r;
2011
2012 // Setup interactive stuff
2013 r = pakfire_jail_setup_interactive_env(jail);
2014 if (r)
2015 return r;
2016
9fa1afb6 2017 return __pakfire_jail_exec(jail, argv, 1, NULL, NULL, NULL, flags);
db4f234f
MT
2018}
2019
ccdd2e95
MT
2020int pakfire_jail_exec_script(struct pakfire_jail* jail,
2021 const char* script,
2022 const size_t size,
2023 const char* args[],
2024 pakfire_jail_communicate_in callback_in,
2025 pakfire_jail_communicate_out callback_out,
2026 void* data) {
a45ed6b0
MT
2027 char path[PATH_MAX];
2028 const char** argv = NULL;
35291cb7 2029 FILE* f = NULL;
a45ed6b0
MT
2030 int r;
2031
2032 const char* root = pakfire_get_path(jail->pakfire);
2033
2034 // Write the scriptlet to disk
35291cb7 2035 r = pakfire_path_join(path, root, PAKFIRE_TMP_DIR "/pakfire-script.XXXXXX");
56796f84 2036 if (r)
a45ed6b0
MT
2037 goto ERROR;
2038
35291cb7
MT
2039 // Create a temporary file
2040 f = pakfire_mktemp(path, 0700);
2041 if (!f) {
2042 ERROR(jail->pakfire, "Could not create temporary file: %m\n");
a45ed6b0
MT
2043 goto ERROR;
2044 }
2045
2046 DEBUG(jail->pakfire, "Writing script to %s:\n%.*s\n", path, (int)size, script);
2047
2048 // Write data
35291cb7
MT
2049 r = fprintf(f, "%s", script);
2050 if (r < 0) {
a45ed6b0 2051 ERROR(jail->pakfire, "Could not write script to file %s: %m\n", path);
a45ed6b0
MT
2052 goto ERROR;
2053 }
2054
2055 // Close file
35291cb7 2056 r = fclose(f);
a45ed6b0
MT
2057 if (r) {
2058 ERROR(jail->pakfire, "Could not close script file %s: %m\n", path);
a45ed6b0
MT
2059 goto ERROR;
2060 }
2061
35291cb7
MT
2062 f = NULL;
2063
a45ed6b0
MT
2064 // Count how many arguments were passed
2065 unsigned int argc = 1;
2066 if (args) {
2067 for (const char** arg = args; *arg; arg++)
2068 argc++;
2069 }
2070
2071 argv = calloc(argc + 1, sizeof(*argv));
2072 if (!argv) {
2073 ERROR(jail->pakfire, "Could not allocate argv: %m\n");
2074 goto ERROR;
2075 }
2076
2077 // Set command
2078 argv[0] = (root) ? pakfire_path_relpath(root, path) : path;
2079
2080 // Copy args
2081 for (unsigned int i = 1; i < argc; i++)
2082 argv[i] = args[i-1];
2083
2084 // Run the script
9fa1afb6 2085 r = pakfire_jail_exec(jail, argv, callback_in, callback_out, data, 0);
a45ed6b0
MT
2086
2087ERROR:
2088 if (argv)
2089 free(argv);
35291cb7
MT
2090 if (f)
2091 fclose(f);
a45ed6b0
MT
2092
2093 // Remove script from disk
2094 if (*path)
2095 unlink(path);
2096
2097 return r;
2098}
82df3c77
MT
2099
2100/*
2101 A convenience function that creates a new jail, runs the given command and destroys
2102 the jail again.
2103*/
12b9b39f 2104int pakfire_jail_run(struct pakfire* pakfire, const char* argv[], int flags, char** output) {
82df3c77
MT
2105 struct pakfire_jail* jail = NULL;
2106 int r;
2107
2108 // Create a new jail
9fa1afb6 2109 r = pakfire_jail_create(&jail, pakfire);
82df3c77
MT
2110 if (r)
2111 goto ERROR;
2112
2113 // Execute the command
9fa1afb6 2114 r = pakfire_jail_exec(jail, argv, NULL, pakfire_jail_capture_stdout, output, 0);
82df3c77
MT
2115
2116ERROR:
2117 if (jail)
2118 pakfire_jail_unref(jail);
2119
2120 return r;
2121}
4f688bd8
MT
2122
2123int pakfire_jail_run_script(struct pakfire* pakfire,
49a9babc 2124 const char* script, const size_t length, const char* argv[], int flags) {
4f688bd8
MT
2125 struct pakfire_jail* jail = NULL;
2126 int r;
2127
2128 // Create a new jail
9fa1afb6 2129 r = pakfire_jail_create(&jail, pakfire);
4f688bd8
MT
2130 if (r)
2131 goto ERROR;
2132
2133 // Execute the command
49a9babc 2134 r = pakfire_jail_exec_script(jail, script, length, argv, NULL, NULL, NULL);
4f688bd8
MT
2135
2136ERROR:
2137 if (jail)
2138 pakfire_jail_unref(jail);
2139
2140 return r;
2141}
e43489f7 2142
5f6e42a2 2143int pakfire_jail_shell(struct pakfire_jail* jail) {
e43489f7
MT
2144 const char* argv[] = {
2145 "/bin/bash", "--login", NULL,
2146 };
2147
2148 // Execute /bin/bash
9fa1afb6 2149 return pakfire_jail_exec_interactive(jail, argv, 0);
e43489f7
MT
2150}
2151
f7ffbb93 2152static int pakfire_jail_run_if_possible(struct pakfire* pakfire, const char** argv) {
e43489f7 2153 char path[PATH_MAX];
f7ffbb93 2154 int r;
e43489f7 2155
f7ffbb93 2156 r = pakfire_path(pakfire, path, "%s", *argv);
77e26129
MT
2157 if (r)
2158 return r;
e43489f7 2159
f7ffbb93 2160 // Check if the file is executable
e43489f7
MT
2161 r = access(path, X_OK);
2162 if (r) {
f7ffbb93 2163 DEBUG(pakfire, "%s is not executable. Skipping...\n", *argv);
e43489f7
MT
2164 return 0;
2165 }
2166
f7ffbb93
MT
2167 return pakfire_jail_run(pakfire, argv, 0, NULL);
2168}
2169
2170int pakfire_jail_ldconfig(struct pakfire* pakfire) {
e43489f7 2171 const char* argv[] = {
f7ffbb93
MT
2172 "/sbin/ldconfig",
2173 NULL,
e43489f7
MT
2174 };
2175
f7ffbb93
MT
2176 return pakfire_jail_run_if_possible(pakfire, argv);
2177}
2178
2179int pakfire_jail_run_systemd_tmpfiles(struct pakfire* pakfire) {
2180 const char* argv[] = {
2181 "/usr/bin/systemd-tmpfiles",
2182 "--create",
2183 NULL,
2184 };
2185
2186 return pakfire_jail_run_if_possible(pakfire, argv);
e43489f7 2187}