2012-07-06 19:50:00 +04:00
<?xml version='1.0'?> <!-- * - nxml - * -->
< !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 2012 Lennart Poettering
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-21 07:39:26 +04:00
<refentry id= "sd-id128"
xmlns:xi="http://www.w3.org/2001/XInclude">
2012-07-06 19:50:00 +04:00
<refentryinfo >
<title > sd-id128</title>
<productname > systemd</productname>
<authorgroup >
<author >
<contrib > Developer</contrib>
<firstname > Lennart</firstname>
<surname > Poettering</surname>
<email > lennart@poettering.net</email>
</author>
</authorgroup>
</refentryinfo>
<refmeta >
<refentrytitle > sd-id128</refentrytitle>
2012-07-13 03:50:05 +04:00
<manvolnum > 3</manvolnum>
2012-07-06 19:50:00 +04:00
</refmeta>
<refnamediv >
<refname > sd-id128</refname>
<refname > sd_id128_t</refname>
<refname > SD_ID128_MAKE</refname>
2012-10-16 19:02:51 +04:00
<refname > SD_ID128_CONST_STR</refname>
2012-07-06 19:50:00 +04:00
<refname > SD_ID128_FORMAT_STR</refname>
<refname > SD_ID128_FORMAT_VAL</refname>
<refname > sd_id128_equal</refname>
2013-06-27 23:51:44 +04:00
<refpurpose > APIs for processing 128-bit IDs</refpurpose>
2012-07-06 19:50:00 +04:00
</refnamediv>
<refsynopsisdiv >
<funcsynopsis >
<funcsynopsisinfo > #include < systemd/sd-id128.h> </funcsynopsisinfo>
</funcsynopsis>
<cmdsynopsis >
2014-02-19 21:30:41 +04:00
<command > pkg-config --cflags --libs libsystemd</command>
2012-07-06 19:50:00 +04:00
</cmdsynopsis>
</refsynopsisdiv>
<refsect1 >
<title > Description</title>
<para > <filename > sd-id128.h</filename> provides APIs to
2013-06-27 23:51:44 +04:00
process and generate 128-bit ID values. The 128-bit ID
2012-07-06 19:50:00 +04:00
values processed and generated by these APIs are a
generalization of OSF UUIDs as defined by <ulink
2013-07-16 12:19:00 +04:00
url="https://tools.ietf.org/html/rfc4122">RFC
2013-06-27 23:51:44 +04:00
4122</ulink> but use a simpler string
format. These functions impose no structure on the
2012-07-06 19:50:00 +04:00
used IDs, much unlike OSF UUIDs or Microsoft GUIDs,
but are fully compatible with those types of IDs.
</para>
<para > See
2012-07-14 00:55:52 +04:00
<citerefentry > <refentrytitle > sd_id128_to_string</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> ,
<citerefentry > <refentrytitle > sd_id128_randomize</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> and
<citerefentry > <refentrytitle > sd_id128_get_machine</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry>
2012-07-07 15:03:27 +04:00
for more information about the implemented
functions.</para>
2012-07-06 19:50:00 +04:00
2013-06-27 23:51:44 +04:00
<para > A 128-bit ID is implemented as the following
2012-07-06 19:50:00 +04:00
union type:</para>
<programlisting > typedef union sd_id128 {
uint8_t bytes[16];
uint64_t qwords[2];
} sd_id128_t;</programlisting>
2013-06-27 23:51:44 +04:00
<para > This union type allows accessing the 128-bit ID
as 16 separate bytes or two 64-bit words. It is generally
safer to access the ID components by their 8-bit array
2012-07-07 15:09:18 +04:00
to avoid endianness issues. This union is intended to
2012-07-06 19:50:00 +04:00
be passed call-by-value (as opposed to
call-by-reference) and may be directly manipulated by
clients.</para>
<para > A couple of macros are defined to denote and
2013-06-27 23:51:44 +04:00
decode 128-bit IDs:</para>
2012-07-06 19:50:00 +04:00
<para > <function > SD_ID128_MAKE()</function> may be used
2013-06-27 23:51:44 +04:00
to denote a constant 128-bit ID in source code. A
commonly used idiom is to assign a name to a 128-bit
2012-10-16 19:02:51 +04:00
ID using this macro:</para>
2012-07-06 19:50:00 +04:00
<programlisting > #define SD_MESSAGE_COREDUMP SD_ID128_MAKE(fc,2e,22,bc,6e,e6,47,b6,b9,07,29,ab,34,a2,50,b1)</programlisting>
2012-10-16 19:02:51 +04:00
<para > <function > SD_ID128_CONST_STR()</function> may be
2013-06-27 23:51:44 +04:00
used to convert constant 128-bit IDs into constant
2012-10-16 19:02:51 +04:00
strings for output. The following example code will
output the string
"fc2e22bc6ee647b6b90729ab34a250b1":</para>
<programlisting > int main(int argc, char *argv[]) {
puts(SD_ID128_CONST_STR(SD_MESSAGE_COREDUMP));
}</programlisting>
2012-07-06 19:50:00 +04:00
<para > <function > SD_ID128_FORMAT_STR</function> and
<function > SD_ID128_FORMAT_VAL()</function> may be used
2013-06-27 23:51:44 +04:00
to format a 128-bit ID in a
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 > printf</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry>
2012-07-06 19:50:00 +04:00
format string, as shown in the following
example:</para>
<programlisting > int main(int argc, char *argv[]) {
sd_id128_t id;
id = SD_ID128_MAKE(ee,89,be,71,bd,6e,43,d6,91,e6,c5,5d,eb,03,02,07);
printf("The ID encoded in this C file is " SD_ID128_FORMAT_STR ".\n", SD_ID128_FORMAT_VAL(id));
return 0;
}</programlisting>
2013-06-27 23:51:44 +04:00
<para > Use <function > sd_id128_equal()</function> to compare two 128-bit IDs:</para>
2012-07-06 19:50:00 +04:00
<programlisting > int main(int argc, char *argv[]) {
sd_id128_t a, b, c;
a = SD_ID128_MAKE(ee,89,be,71,bd,6e,43,d6,91,e6,c5,5d,eb,03,02,07);
b = SD_ID128_MAKE(f2,28,88,9c,5f,09,44,15,9d,d7,04,77,58,cb,e7,3e);
c = a;
assert(sd_id128_equal(a, c));
assert(!sd_id128_equal(a, b));
return 0;
}</programlisting>
<para > Note that new, randomized IDs may be generated
with
<citerefentry > <refentrytitle > journalctl</refentrytitle> <manvolnum > 1</manvolnum> </citerefentry> 's
2013-06-27 03:47:34 +04:00
<option > --new-id</option> option.</para>
2012-07-06 19:50:00 +04:00
</refsect1>
2014-02-21 07:39:26 +04:00
<xi:include href= "libsystemd-pkgconfig.xml" />
2012-07-06 19:50:00 +04:00
<refsect1 >
<title > See Also</title>
<para >
<citerefentry > <refentrytitle > systemd</refentrytitle> <manvolnum > 1</manvolnum> </citerefentry> ,
<citerefentry > <refentrytitle > sd_id128_to_string</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> ,
<citerefentry > <refentrytitle > sd_id128_randomize</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> ,
2012-07-14 00:55:52 +04:00
<citerefentry > <refentrytitle > sd_id128_get_machine</refentrytitle> <manvolnum > 3</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 > printf</refentrytitle> <manvolnum > 3</manvolnum> </citerefentry> ,
2012-07-06 19:50:00 +04:00
<citerefentry > <refentrytitle > journalctl</refentrytitle> <manvolnum > 1</manvolnum> </citerefentry> ,
<citerefentry > <refentrytitle > sd-journal</refentrytitle> <manvolnum > 7</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= 'die-net' > <refentrytitle > pkg-config</refentrytitle> <manvolnum > 1</manvolnum> </citerefentry> ,
2012-07-06 19:50:00 +04:00
<citerefentry > <refentrytitle > machine-id</refentrytitle> <manvolnum > 5</manvolnum> </citerefentry>
</para>
</refsect1>
</refentry>