mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 08:56:15 +09:00
Various functions in log.h are only used by asserts, and there's enough assertion related stuff in macro.h to justify a separate header which also makes it easier to avoid circular dependencies. Let's introduce assert-util.h and an accompanying fundamental header and move all the assertion related stuff over there. PROJECT_FILE is moved over to macro.h.
27 lines
608 B
C
27 lines
608 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "assert-util.h"
|
|
#include "macro.h"
|
|
|
|
extern int saved_argc;
|
|
extern char **saved_argv;
|
|
|
|
static inline void save_argc_argv(int argc, char **argv) {
|
|
/* Protect against CVE-2021-4034 style attacks */
|
|
assert_se(argc > 0);
|
|
assert_se(argv);
|
|
assert_se(argv[0]);
|
|
|
|
saved_argc = argc;
|
|
saved_argv = argv;
|
|
}
|
|
|
|
bool invoked_as(char *argv[], const char *token);
|
|
bool invoked_by_systemd(void);
|
|
bool argv_looks_like_help(int argc, char **argv);
|
|
|
|
int rename_process(const char name[]);
|