MCPcopy Index your code
hub / github.com/codyps/rust-systemd

github.com/codyps/rust-systemd @systemd-0.10.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release systemd-0.10.1 ↗ · + Follow
286 symbols 772 edges 30 files 109 documented · 38% updated 4mo ago★ 18021 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

rust-systemd

crate docs (systemd)

crate docs (libsystemd-sys)

systemdCrates.io

libsystemd-sysCrates.io

In Cargo.toml:

[dependencies]
systemd = "0.10.1"

Build Environment variables

By default, libsystemd-sys will use pkg-config to find libsystemd. It defaults to using the libsystemd package. To change the package looked up in pkg-config, set the SYSTEMD_PKG_NAME environment variable.

If you want to override the source of the libsystemd directly, set the env var SYSTEMD_LIB_DIR to a path which contains the libsystemd to link against. Optionally, you may also set SYSTEMD_LIBS to indicate which libraries to link against. Libraries in the variable SYSTEMD_LIBS are colon (:) separated and may include a KIND. For example: SYSTEMD_LIBS="static=foo:bar".

elogind support

Either set SYSTEMD_PKG_NAME=libelogind (name of the pkg-config file) or set both SYSTEMD_LIBS=elogind and set SYSTEMD_LIB_DIR to the appropriate directory.

When using elogind, the apis needed for journal and bus features may not be completely available (elogind forked from an older version of systemd that may lack some of these APIs). If your application does not need these features, depend on systemd without the default features to allow maximum compatibility:

[dependencies]
systemd = { version = "0.10.1", default-features = false }

Note that there still may be some missing symbols. If you discover a link error, report it so that we can tweak the systemd crate to support it.

journal

Journal sending is supported, and systemd::journal::Journal is a (low functionality) wrapper around the read API.

An example of the journal writing api:

use log::warn;
use systemd::{journal, sd_journal_log};

fn main() {
   journal::print(1, &format!("Rust can talk to the journal: {:?}", 4));
   journal::send(&["CODE_FILE=HI", "CODE_LINE=1213", "CODE_FUNCTION=LIES"]);
   journal::JournalLog::init().unwrap();
   warn!("HI");
   sd_journal_log!(4, "HI {:?}", 2);
}

daemon

The daemon API mostly offers tools for working with raw filehandles passed to the process by systemd on socket activation. Since raw filehandles are not well supported in Rust, it's likely these functions will mostly be helpful in managing program flow; actual socket code will have to use the libc crate.

License

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.

In addition to the permissions in the GNU Lesser General Public License, the authors give you unlimited permission to link the compiled version of this library into combinations with other programs, and to distribute those programs without any restriction coming from the use of this library. (The Lesser General Public License restrictions do apply in other respects; for example, they cover modification of the library, and distribution when not linked into another program.)

This library 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 Lesser General Public License for more details.

Contributions

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be licensed as above, without any additional terms or conditions.

Extension points exported contracts — how you extend this code

Core symbols most depended-on inside this repo

Shape

Method 161
Function 77
Class 26
Enum 19
Interface 3

Languages

Rust100%

Modules by API surface

src/bus/mod.rs91 symbols
src/journal.rs78 symbols
src/daemon.rs25 symbols
src/id128.rs14 symbols
libsystemd-sys/src/bus/vtable.rs12 symbols
tests/journal.rs9 symbols
src/login.rs9 symbols
libsystemd-sys/src/bus/mod.rs7 symbols
tests/login.rs6 symbols
src/bus/types.rs6 symbols
tests/daemon.rs4 symbols
tests/bus.rs3 symbols

For agents

$ claude mcp add rust-systemd \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page