]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/systemd/sd-network.h
networkd: monopolize in_addr utility functions in shared/in-addr-util.h
[thirdparty/systemd.git] / src / systemd / sd-network.h
CommitLineData
fe8db0c5
TG
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
82bdf8ce
TG
3#ifndef foosdnetworkhfoo
4#define foosdnetworkhfoo
fe8db0c5
TG
5
6/***
7 This file is part of systemd.
8
9 Copyright 2011 Lennart Poettering
10 Copyright 2014 Tom Gundersen
11
12 systemd is free software; you can redistribute it and/or modify it
13 under the terms of the GNU Lesser General Public License as published by
14 the Free Software Foundation; either version 2.1 of the License, or
15 (at your option) any later version.
16
17 systemd is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 Lesser General Public License for more details.
21
22 You should have received a copy of the GNU Lesser General Public License
23 along with systemd; If not, see <http://www.gnu.org/licenses/>.
24***/
25
26#include <sys/types.h>
27#include <inttypes.h>
28
29#include "sd-dhcp-lease.h"
30
31#include "_sd-common.h"
32
33/*
34 * A few points:
35 *
36 * Instead of returning an empty string array or empty integer array, we
37 * may return NULL.
38 *
39 * Free the data the library returns with libc free(). String arrays
10b17992 40 * are NULL terminated, and you need to free the array itself in
fe8db0c5
TG
41 * addition to the strings contained.
42 *
10b17992
JSJ
43 * We return error codes as negative errno, kernel-style. On success, we
44 * return 0 or positive.
fe8db0c5 45 *
10b17992
JSJ
46 * These functions access data in /run. This is a virtual file system;
47 * therefore, accesses are relatively cheap.
fe8db0c5
TG
48 *
49 * See sd-network(3) for more information.
50 */
51
52_SD_BEGIN_DECLARATIONS;
53
deb2e523 54/* Get state from ifindex.
560852ce 55 * Possible states: failed, configuring, configured, unmanaged
deb2e523
TG
56 * Possible return codes:
57 * -ENODATA: networkd is not aware of the link
deb2e523
TG
58 * -EBUSY: udev is still processing the link, networkd does not yet know if it will manage it
59 */
6dcaa6f5 60int sd_network_get_link_state(int ifindex, char **state);
deb2e523
TG
61
62/* Get operatinal state from ifindex.
e375dcde 63 * Possible states: unknown, dormant, carrier, degraded, routable
deb2e523
TG
64 * Possible return codes:
65 * -ENODATA: networkd is not aware of the link
66 */
6dcaa6f5 67int sd_network_get_link_operational_state(int ifindex, char **state);
deb2e523 68
bbf7c048 69/* Get overall opeartional state
e375dcde 70 * Possible states: unknown, dormant, carrier, degraded, routable
bbf7c048
TG
71 * Possible return codes:
72 * -ENODATA: networkd is not aware of any links
73 */
74int sd_network_get_operational_state(char **state);
75
fe8db0c5 76/* Get DHCPv4 lease from ifindex. */
6dcaa6f5 77int sd_network_get_dhcp_lease(int ifindex, sd_dhcp_lease **ret);
fe8db0c5 78
bd8f6538
TG
79/* Indicates whether or not LLMNR should be enabled for the link
80 * Possible levels of support: yes, no, resolve
81 * Possible return codes:
82 * -ENODATA: networkd is not aware of the link*/
83int sd_network_get_llmnr(int ifindex, char **llmnr);
84
6f4dedb2
TG
85/* Get DNS entries for a given link. These are string representations of
86 * IP addresses */
87int sd_network_get_dns(int ifindex, char ***addr);
7dbf94a9 88
6f4dedb2
TG
89/* Get NTP entries for a given link. These are domain names or string
90 * reperesentations of IP addresses */
91int sd_network_get_ntp(int ifindex, char ***addr);
7dbf94a9 92
fe8db0c5
TG
93/* Monitor object */
94typedef struct sd_network_monitor sd_network_monitor;
95
7e141e49 96/* Create a new monitor. Category must be NULL, "links" or "leases". */
0014a4ad 97int sd_network_monitor_new(sd_network_monitor **ret, const char *category);
fe8db0c5
TG
98
99/* Destroys the passed monitor. Returns NULL. */
100sd_network_monitor* sd_network_monitor_unref(sd_network_monitor *m);
101
102/* Flushes the monitor */
103int sd_network_monitor_flush(sd_network_monitor *m);
104
105/* Get FD from monitor */
106int sd_network_monitor_get_fd(sd_network_monitor *m);
107
108/* Get poll() mask to monitor */
109int sd_network_monitor_get_events(sd_network_monitor *m);
110
111/* Get timeout for poll(), as usec value relative to CLOCK_MONOTONIC's epoch */
112int sd_network_monitor_get_timeout(sd_network_monitor *m, uint64_t *timeout_usec);
113
114_SD_END_DECLARATIONS;
115
116#endif