2014-11-21 22:44:48 +03:00
<?xml version='1.0'?> <!-- * - Mode: nxml; nxml - child - indent: 2; indent - tabs - mode: nil - * -->
2014-01-04 09:08:50 +04:00
< !DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<!--
This file is part of systemd.
Copyright 2014 Zbigniew Jędrzejewski-Szmek
systemd 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.
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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http: / / w w w . g n u . o r g / l i c e n s e s /> .
-->
2014-02-20 01:04:30 +04:00
<refentry id= "sd_bus_creds_get_pid" conditional= "ENABLE_KDBUS" >
2014-01-04 09:08:50 +04:00
<refentryinfo >
<title > sd_bus_creds_get_pid</title>
<productname > systemd</productname>
<authorgroup >
<author >
<contrib > A monkey with a typewriter</contrib>
<firstname > Zbigniew</firstname>
<surname > Jędrzejewski-Szmek</surname>
<email > zbyszek@in.waw.pl</email>
</author>
</authorgroup>
</refentryinfo>
<refmeta >
<refentrytitle > sd_bus_creds_get_pid</refentrytitle>
<manvolnum > 3</manvolnum>
</refmeta>
<refnamediv >
<refname > sd_bus_creds_get_pid</refname>
<refname > sd_bus_creds_get_tid</refname>
<refname > sd_bus_creds_get_uid</refname>
<refname > sd_bus_creds_get_gid</refname>
<refname > sd_bus_creds_get_comm</refname>
<refname > sd_bus_creds_get_tid_comm</refname>
<refname > sd_bus_creds_get_exe</refname>
<refname > sd_bus_creds_get_cmdline</refname>
<refname > sd_bus_creds_get_cgroup</refname>
<refname > sd_bus_creds_get_unit</refname>
<refname > sd_bus_creds_get_user_unit</refname>
<refname > sd_bus_creds_get_slice</refname>
<refname > sd_bus_creds_get_session</refname>
<refname > sd_bus_creds_get_owner_uid</refname>
<refname > sd_bus_creds_has_effective_cap</refname>
<refname > sd_bus_creds_has_permitted_cap</refname>
<refname > sd_bus_creds_has_inheritable_cap</refname>
<refname > sd_bus_creds_has_bounding_cap</refname>
<refname > sd_bus_creds_get_selinux_context</refname>
<refname > sd_bus_creds_get_audit_session_id</refname>
<refname > sd_bus_creds_get_audit_login_uid</refname>
<refname > sd_bus_creds_get_unique_name</refname>
<refname > sd_bus_creds_get_well_known_names</refname>
2014-10-18 18:20:36 +04:00
<refname > sd_bus_creds_get_connection_name</refname>
2014-01-04 09:08:50 +04:00
<refpurpose > Retrieve fields from a credentials object</refpurpose>
</refnamediv>
<refsynopsisdiv >
<funcsynopsis >
<funcsynopsisinfo > #include < systemd/sd-bus.h> </funcsynopsisinfo>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_pid</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > pid_t *<parameter > pid</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_tid</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > pid_t *<parameter > tid</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_pid</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > uid_t *<parameter > uid</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_gid</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > gid_t *<parameter > gid</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_comm</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > const char **<parameter > comm</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_tid_comm</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > const char **<parameter > comm</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_exe</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > const char **<parameter > exe</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_cmdline</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > char ***<parameter > cmdline</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_cgroup</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > const char **<parameter > cgroup</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_unit</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > const char **<parameter > unit</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_user_unit</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > const char **<parameter > unit</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_slice</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > const char **<parameter > slice</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_session</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > const char **<parameter > slice</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_owner_uid</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > uid_t *<parameter > uid</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_has_effective_cap</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > int <parameter > capability</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_has_permitted_cap</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > int <parameter > capability</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_has_inheritable_cap</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > int <parameter > capability</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_has_bounding_cap</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > int <parameter > capability</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_selinux_context</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > const char **<parameter > context</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_audit_session_id</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > uint32_t *<parameter > sessionid</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_audit_login_uid</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > uid_t *<parameter > loginuid</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_unique_name</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > const char **<parameter > name</parameter> </paramdef>
</funcprototype>
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_well_known_names</function> </funcdef>
2014-02-16 16:55:27 +04:00
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
2014-01-04 09:08:50 +04:00
<paramdef > char ***<parameter > name</parameter> </paramdef>
</funcprototype>
2014-10-18 18:20:36 +04:00
<funcprototype >
<funcdef > int <function > sd_bus_creds_get_connection_name</function> </funcdef>
<paramdef > sd_bus_creds *<parameter > c</parameter> </paramdef>
<paramdef > const char **<parameter > name</parameter> </paramdef>
</funcprototype>
2014-01-04 09:08:50 +04:00
</funcsynopsis>
</refsynopsisdiv>
<refsect1 >
<title > Description</title>
2014-02-17 06:37:18 +04:00
<para > These functions return information from an
2014-01-04 09:08:50 +04:00
<parameter > sd_bus_creds</parameter> object. It may be created with
<citerefentry > <refentrytitle > sd_bus_creds_new_from_pid</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> ,
in which case it will describe the specified process, or it may be
created by
2014-10-22 21:17:24 +04:00
<citerefentry > <refentrytitle > sd_bus_get_owner_creds</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> ,
2014-01-04 09:08:50 +04:00
in which case it will describe the process at the other endpoint
of a connection.
</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_pid()</function> will retrieve the
2014-01-04 09:08:50 +04:00
PID (process identifier).</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_tid()</function> will retrieve the
2014-01-04 09:08:50 +04:00
TID (thread identifier).</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_uid()</function> will retrieve the
2014-02-16 17:01:31 +04:00
numeric UID (user identifier).</para>
2014-01-04 09:08:50 +04:00
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_gid()</function> will retrieve the
2014-02-16 17:01:31 +04:00
numeric GID (group identifier).</para>
2014-01-04 09:08:50 +04:00
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_comm()</function> will retrieve the
2014-02-17 05:49:45 +04:00
comm field (truncated name of the executable, as stored in
2014-01-04 09:08:50 +04:00
<filename > /proc/<replaceable > pid</replaceable> /comm</filename> ).
</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_tid_comm()</function> will retrieve
2014-01-04 09:08:50 +04:00
the comm field of the thread (as stored in
<filename > /proc/<replaceable > pid</replaceable> /task/<replaceable > tid</replaceable> /comm</filename> ).
</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_exe()</function> will retrieve the
2014-01-04 09:08:50 +04:00
path to the program (as stored in the
<filename > /proc/<replaceable > pid</replaceable> /exe</filename>
link, but with <literal > (deleted)</literal> suffix removed).
</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_cmdline()</function> will retrieve
2014-11-06 22:06:30 +03:00
an array of command line arguments (as stored in
2014-01-04 09:08:50 +04:00
<filename > /proc/<replaceable > pid</replaceable> /cmdline</filename> ).
</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_cgroup()</function> will retrieve
2014-01-04 09:08:50 +04:00
the cgroup path. See <ulink
url="https://www.kernel.org/doc/Documentation/cgroups/cgroups.txt">cgroups.txt</ulink> .
</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_unit()</function> will retrieve the
2014-01-04 09:08:50 +04:00
systemd unit name (in the system instance of systemd) that the
process is part of. See
<citerefentry > <refentrytitle > systemd.unit</refentrytitle> <manvolnum > 5</manvolnum> </citerefentry> .
</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_user_unit()</function> will
2014-01-04 09:08:50 +04:00
retrieve the systemd unit name (in the user instance of systemd)
that the process is part of. See
<citerefentry > <refentrytitle > systemd.unit</refentrytitle> <manvolnum > 5</manvolnum> </citerefentry> .
</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_slice()</function> will retrieve
2014-01-04 09:08:50 +04:00
the systemd slice (a unit in the system instance of systemd) that
the process is part of. See
<citerefentry > <refentrytitle > systemd.slice</refentrytitle> <manvolnum > 5</manvolnum> </citerefentry> .
</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_session()</function> will retrieve
2014-01-04 09:08:50 +04:00
the logind session that the process is part of. See
<citerefentry > <refentrytitle > systemd-logind.service</refentrytitle> <manvolnum > 8</manvolnum> </citerefentry> .
</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_owner_uid()</function> will retrieve
2014-02-16 17:01:31 +04:00
the numeric UID (user identifier) of the user who owns the slice
2014-01-04 09:08:50 +04:00
that the process is part of. See
<citerefentry > <refentrytitle > systemd.slice</refentrytitle> <manvolnum > 5</manvolnum> </citerefentry>
<!-- and
<citerefentry > <refentrytitle > systemd-user-sessions.service</refentrytitle> <manvolnum > 8</manvolnum> </citerefentry> -->.
</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_has_effective_cap()</function> will
2014-01-08 07:27:43 +04:00
check whether the capability specified by
<parameter > capability</parameter> was set in the effective
2014-02-17 06:37:18 +04:00
capabilities mask. A positive return value means that is was
2014-01-08 07:27:43 +04:00
set, zero means that it was not set, and a negative return
2014-01-04 09:08:50 +04:00
value signifies an error. See
man: add a mapping for external manpages
It is annoying when we have dead links on fd.o.
Add project='man-pages|die-net|archlinux' to <citerefentry>-ies.
In generated html, add external links to
http://man7.org/linux/man-pages/man, http://linux.die.net/man/,
https://www.archlinux.org/.
By default, pages in sections 2 and 4 go to man7, since Michael
Kerrisk is the autorative source on kernel related stuff.
The rest of links goes to linux.die.net, because they have the
manpages.
Except for the pacman stuff, since it seems to be only available from
archlinux.org.
Poor gummiboot gets no link, because gummitboot(8) ain't to be found
on the net. According to common wisdom, that would mean that it does
not exist. But I have seen Kay using it, so I know it does, and
deserves to be found. Can somebody be nice and put it up somewhere?
2014-07-08 02:25:54 +04:00
<citerefentry project= 'man-pages' > <refentrytitle > capabilities</refentrytitle> <manvolnum > 7</manvolnum> </citerefentry>
2014-01-04 09:08:50 +04:00
and <varname > Capabilities=</varname> and
<varname > CapabilityBoundingSet=</varname> settings in
<citerefentry > <refentrytitle > systemd.exec</refentrytitle> <manvolnum > 5</manvolnum> </citerefentry> .
</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_has_permitted_cap()</function> is
similar to <function > sd_bus_creds_has_effective_cap()</function> ,
2014-01-04 09:08:50 +04:00
but will check the permitted capabilities mask.</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_has_inheritable_cap()</function> is
similar to <function > sd_bus_creds_has_effective_cap()</function> ,
2014-01-04 09:08:50 +04:00
but will check the inheritable capabilities mask.</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_has_bounding_cap()</function> is
similar to <function > sd_bus_creds_has_effective_cap()</function> ,
2014-01-04 09:08:50 +04:00
but will check the bounding capabilities mask.</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_selinux_context()</function> will
2014-02-10 15:32:03 +04:00
retrieve the SELinux security context (label) of the process.</para>
2014-01-04 09:08:50 +04:00
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_audit_session_id()</function> will
2014-01-04 09:08:50 +04:00
retrieve the audit session identifier of the process.</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_audit_login_uid()</function> will
2014-01-04 09:08:50 +04:00
retrieve the audit user login identifier (the identifier of the
user who is "responsible" for the session).</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_unique_name()</function> will
2014-01-04 09:08:50 +04:00
retrieve the D-Bus unique name. See <ulink
url="http://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-names-bus">The
D-Bus specification</ulink> .</para>
2014-10-18 18:20:24 +04:00
<para > <function > sd_bus_creds_get_well_known_names()</function> will
2014-01-04 09:08:50 +04:00
retrieve the set of D-Bus well-known names. See <ulink
url="http://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-names-bus">The
D-Bus specification</ulink> .</para>
2014-10-18 18:20:36 +04:00
<para > <function > sd_bus_creds_get_connection_name()</function> will
retrieve a descriptive name of the bus connection of the
peer. This name is useful to discern multiple bus connections by
the same peer, and may be altered by the peer with the
<citerefentry > <refentrytitle > sd_bus_set_name()</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry>
call.</para>
2014-01-04 09:08:50 +04:00
<para > All functions that take a <parameter > const
char**</parameter> parameter will store the answer there as an
address of a NUL-terminated string. It will be valid as long as
<parameter > c</parameter> remains valid, and should not be freed or
modified by the caller.</para>
<para > All functions that take a <parameter > char***</parameter>
parameter will store the answer there as an address of a an array
of strings. Each invidividual string is NUL-terminated, and the
array is NULL-terminated as a whole. It will be valid as long as
<parameter > c</parameter> remains valid, and should not be freed or
modified by the caller.</para>
</refsect1>
<refsect1 >
<title > Return Value</title>
<para > On success, these calls return 0 or a positive integer. On
failure, these calls return a negative errno-style error code.
</para>
</refsect1>
<refsect1 >
<title > Errors</title>
<para > Returned errors may indicate the following problems:</para>
<variablelist >
<varlistentry >
2014-09-26 01:27:46 +04:00
<term > <constant > -ENODATA</constant> </term>
2014-01-04 09:08:50 +04:00
<listitem > <para > Given field is not available in
<parameter > c</parameter> .</para>
2014-02-15 07:07:22 +04:00
</listitem>
2014-01-04 09:08:50 +04:00
</varlistentry>
<varlistentry >
2014-09-26 01:27:46 +04:00
<term > <constant > -ENOENT</constant> </term>
2014-01-04 09:08:50 +04:00
<listitem > <para > Given field is not specified for the sender.
2014-10-18 18:20:24 +04:00
This will be returned by <function > sd_bus_get_unit()</function> ,
<function > sd_bus_get_user_unit()</function> ,
<function > sd_bus_get_slice()</function> ,
<function > sd_bus_get_session()</function> , and
2014-10-22 21:17:24 +04:00
<function > sd_bus_get_name_creds_uid()</function> if the sender is not
2014-01-04 09:08:50 +04:00
part of a systemd system unit, systemd user unit, systemd
slice, logind session, or a systemd user session.</para>
2014-02-15 07:07:22 +04:00
</listitem>
2014-01-04 09:08:50 +04:00
</varlistentry>
2014-01-05 04:28:52 +04:00
<varlistentry >
2014-09-26 01:27:46 +04:00
<term > <constant > -ENXIO</constant> </term>
2014-01-05 04:28:52 +04:00
2014-08-30 19:13:16 +04:00
<listitem > <para > An error occurred in parsing cgroup paths.
2014-01-13 20:30:51 +04:00
<filename > libsystemd</filename> might be out of sync with
2014-01-05 04:28:52 +04:00
the running systemd version.</para> </listitem>
</varlistentry>
2014-01-04 09:08:50 +04:00
<varlistentry >
2014-09-26 01:27:46 +04:00
<term > <constant > -EINVAL</constant> </term>
2014-01-04 09:08:50 +04:00
<listitem > <para > Specified pointer parameter is <constant > NULL</constant> .
</para> </listitem>
</varlistentry>
<varlistentry >
2014-09-26 01:27:46 +04:00
<term > <constant > -ENOMEM</constant> </term>
2014-01-04 09:08:50 +04:00
<listitem > <para > Memory allocation failed.</para> </listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1 >
<title > Notes</title>
<para > <function > sd_bus_open_user()</function> and other functions
described here are available as a shared library, which can be
compiled and linked to with the
man: add a mapping for external manpages
It is annoying when we have dead links on fd.o.
Add project='man-pages|die-net|archlinux' to <citerefentry>-ies.
In generated html, add external links to
http://man7.org/linux/man-pages/man, http://linux.die.net/man/,
https://www.archlinux.org/.
By default, pages in sections 2 and 4 go to man7, since Michael
Kerrisk is the autorative source on kernel related stuff.
The rest of links goes to linux.die.net, because they have the
manpages.
Except for the pacman stuff, since it seems to be only available from
archlinux.org.
Poor gummiboot gets no link, because gummitboot(8) ain't to be found
on the net. According to common wisdom, that would mean that it does
not exist. But I have seen Kay using it, so I know it does, and
deserves to be found. Can somebody be nice and put it up somewhere?
2014-07-08 02:25:54 +04:00
<constant > libsystemd</constant> <citerefentry project= 'die-net' > <refentrytitle > pkg-config</refentrytitle> <manvolnum > 1</manvolnum> </citerefentry>
2014-01-04 09:08:50 +04:00
file.</para>
</refsect1>
<refsect1 >
<title > See Also</title>
<para >
<citerefentry > <refentrytitle > systemd</refentrytitle> <manvolnum > 1</manvolnum> </citerefentry> ,
<citerefentry > <refentrytitle > sd-bus</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> ,
<citerefentry > <refentrytitle > fork</refentrytitle> <manvolnum > 2</manvolnum> </citerefentry> ,
<citerefentry > <refentrytitle > execve</refentrytitle> <manvolnum > 2</manvolnum> </citerefentry> ,
man: add a mapping for external manpages
It is annoying when we have dead links on fd.o.
Add project='man-pages|die-net|archlinux' to <citerefentry>-ies.
In generated html, add external links to
http://man7.org/linux/man-pages/man, http://linux.die.net/man/,
https://www.archlinux.org/.
By default, pages in sections 2 and 4 go to man7, since Michael
Kerrisk is the autorative source on kernel related stuff.
The rest of links goes to linux.die.net, because they have the
manpages.
Except for the pacman stuff, since it seems to be only available from
archlinux.org.
Poor gummiboot gets no link, because gummitboot(8) ain't to be found
on the net. According to common wisdom, that would mean that it does
not exist. But I have seen Kay using it, so I know it does, and
deserves to be found. Can somebody be nice and put it up somewhere?
2014-07-08 02:25:54 +04:00
<citerefentry project= 'man-pages' > <refentrytitle > credentials</refentrytitle> <manvolnum > 7</manvolnum> </citerefentry> ,
<citerefentry project= 'man-pages' > <refentrytitle > free</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> ,
<citerefentry project= 'man-pages' > <refentrytitle > proc</refentrytitle> <manvolnum > 5</manvolnum> </citerefentry> ,
2015-03-14 05:26:20 +03:00
<citerefentry > <refentrytitle > systemd.journal-fields</refentrytitle> <manvolnum > 7</manvolnum> </citerefentry>
2014-01-04 09:08:50 +04:00
</para>
</refsect1>
</refentry>