/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ #ifndef foodbusexecutehfoo #define foodbusexecutehfoo /*** This file is part of systemd. Copyright 2010 Lennart Poettering systemd 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. systemd 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 systemd; If not, see . ***/ #include #include "manager.h" #define BUS_EXEC_STATUS_INTERFACE(prefix) \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" #define BUS_EXEC_CONTEXT_INTERFACE \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" \ " \n" #define BUS_EXEC_COMMAND_INTERFACE(name) \ " \n" #define BUS_EXEC_CONTEXT_PROPERTIES(interface, context) \ { interface, "Environment", bus_property_append_strv, "as", (context).environment }, \ { interface, "EnvironmentFiles", bus_execute_append_env_files, "a(sb)", (context).environment_files }, \ { interface, "UMask", bus_property_append_mode, "u", &(context).umask }, \ { interface, "LimitCPU", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitFSIZE", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitDATA", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitSTACK", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitCORE", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitRSS", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitNOFILE", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitAS", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitNPROC", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitMEMLOCK", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitLOCKS", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitSIGPENDING", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitMSGQUEUE", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitNICE", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitRTPRIO", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "LimitRTTIME", bus_execute_append_rlimits, "t", &(context) }, \ { interface, "WorkingDirectory", bus_property_append_string, "s", (context).working_directory }, \ { interface, "RootDirectory", bus_property_append_string, "s", (context).root_directory }, \ { interface, "OOMScoreAdjust", bus_execute_append_oom_score_adjust, "i", &(context) }, \ { interface, "Nice", bus_execute_append_nice, "i", &(context) }, \ { interface, "IOScheduling", bus_execute_append_ioprio, "i", &(context) }, \ { interface, "CPUSchedulingPolicy", bus_execute_append_cpu_sched_policy, "i", &(context) }, \ { interface, "CPUSchedulingPriority", bus_execute_append_cpu_sched_priority, "i", &(context) }, \ { interface, "CPUAffinity", bus_execute_append_affinity,"ay", &(context) }, \ { interface, "TimerSlackNSec", bus_execute_append_timer_slack_nsec, "t", &(context) }, \ { interface, "CPUSchedulingResetOnFork", bus_property_append_bool, "b", &(context).cpu_sched_reset_on_fork }, \ { interface, "NonBlocking", bus_property_append_bool, "b", &(context).non_blocking }, \ { interface, "StandardInput", bus_execute_append_input, "s", &(context).std_input }, \ { interface, "StandardOutput", bus_execute_append_output, "s", &(context).std_output }, \ { interface, "StandardError", bus_execute_append_output, "s", &(context).std_error }, \ { interface, "TTYPath", bus_property_append_string, "s", (context).tty_path }, \ { interface, "TTYReset", bus_property_append_bool, "b", &(context).tty_reset }, \ { interface, "TTYVHangup", bus_property_append_bool, "b", &(context).tty_vhangup }, \ { interface, "TTYVTDisallocate", bus_property_append_bool, "b", &(context).tty_vt_disallocate }, \ { interface, "SyslogPriority", bus_property_append_int, "i", &(context).syslog_priority }, \ { interface, "SyslogIdentifier", bus_property_append_string, "s", (context).syslog_identifier }, \ { interface, "SyslogLevelPrefix", bus_property_append_bool, "b", &(context).syslog_level_prefix }, \ { interface, "Capabilities", bus_execute_append_capabilities, "s",&(context) }, \ { interface, "SecureBits", bus_property_append_int, "i", &(context).secure_bits }, \ { interface, "CapabilityBoundingSet", bus_execute_append_capability_bs, "t", &(context).capability_bounding_set_drop }, \ { interface, "User", bus_property_append_string, "s", (context).user }, \ { interface, "Group", bus_property_append_string, "s", (context).group }, \ { interface, "SupplementaryGroups", bus_property_append_strv, "as", (context).supplementary_groups }, \ { interface, "TCPWrapName", bus_property_append_string, "s", (context).tcpwrap_name }, \ { interface, "PAMName", bus_property_append_string, "s", (context).pam_name }, \ { interface, "ReadWriteDirectories", bus_property_append_strv, "as", (context).read_write_dirs }, \ { interface, "ReadOnlyDirectories", bus_property_append_strv, "as", (context).read_only_dirs }, \ { interface, "InaccessibleDirectories", bus_property_append_strv, "as", (context).inaccessible_dirs }, \ { interface, "MountFlags", bus_property_append_ul, "t", &(context).mount_flags }, \ { interface, "PrivateTmp", bus_property_append_bool, "b", &(context).private_tmp }, \ { interface, "PrivateNetwork", bus_property_append_bool, "b", &(context).private_network }, \ { interface, "SameProcessGroup", bus_property_append_bool, "b", &(context).same_pgrp }, \ { interface, "KillMode", bus_execute_append_kill_mode, "s", &(context).kill_mode }, \ { interface, "KillSignal", bus_property_append_int, "i", &(context).kill_signal }, \ { interface, "UtmpIdentifier", bus_property_append_string, "s", (context).utmp_id }, \ { interface, "ControlGroupModify", bus_property_append_bool, "b", &(context).control_group_modify } #define BUS_EXEC_STATUS_PROPERTIES(interface, estatus, prefix) \ { interface, prefix "StartTimestamp", bus_property_append_usec, "t", &(estatus).start_timestamp.realtime }, \ { interface, prefix "StartTimestampMonotonic",bus_property_append_usec, "t", &(estatus).start_timestamp.monotonic }, \ { interface, prefix "ExitTimestamp", bus_property_append_usec, "t", &(estatus).start_timestamp.realtime }, \ { interface, prefix "ExitTimestampMonotonic", bus_property_append_usec, "t", &(estatus).start_timestamp.monotonic }, \ { interface, prefix "PID", bus_property_append_pid, "u", &(estatus).pid }, \ { interface, prefix "Code", bus_property_append_int, "i", &(estatus).code }, \ { interface, prefix "Status", bus_property_append_int, "i", &(estatus).status } #define BUS_EXEC_COMMAND_PROPERTY(interface, command, name) \ { interface, name, bus_execute_append_command, "a(sasbttttuii)", (command) } int bus_execute_append_output(DBusMessageIter *i, const char *property, void *data); int bus_execute_append_input(DBusMessageIter *i, const char *property, void *data); int bus_execute_append_oom_score_adjust(DBusMessageIter *i, const char *property, void *data); int bus_execute_append_nice(DBusMessageIter *i, const char *property, void *data); int bus_execute_append_ioprio(DBusMessageIter *i, const char *property, void *data); int bus_execute_append_cpu_sched_policy(DBusMessageIter *i, const char *property, void *data); int bus_execute_append_cpu_sched_priority(DBusMessageIter *i, const char *property, void *data); int bus_execute_append_affinity(DBusMessageIter *i, const char *property, void *data); int bus_execute_append_timer_slack_nsec(DBusMessageIter *i, const char *property, void *data); int bus_execute_append_capabilities(DBusMessageIter *i, const char *property, void *data); int bus_execute_append_capability_bs(DBusMessageIter *i, const char *property, void *data); int bus_execute_append_rlimits(DBusMessageIter *i, const char *property, void *data); int bus_execute_append_command(DBusMessageIter *u, const char *property, void *data); int bus_execute_append_kill_mode(DBusMessageIter *i, const char *property, void *data); int bus_execute_append_env_files(DBusMessageIter *i, const char *property, void *data); #endif