chiark / gitweb /
network: dhcp - split out dhcp_identifier_set_{iaid,duid_en} from dhcp6-client
[elogind.git] / src / libsystemd-network / dhcp-identifier.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright (C) 2015 Tom Gundersen <teg@jklmen>
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU Lesser General Public License as published by
10   the Free Software Foundation; either version 2.1 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <net/ethernet.h>
23
24 #include "sd-id128.h"
25 #include "libudev.h"
26 #include "udev-util.h"
27
28 #include "virt.h"
29 #include "sparse-endian.h"
30 #include "siphash24.h"
31 #include "util.h"
32
33 #include "dhcp6-protocol.h"
34 #include "dhcp-identifier.h"
35 #include "network-internal.h"
36
37 #define SYSTEMD_PEN 43793
38 #define HASH_KEY SD_ID128_MAKE(80,11,8c,c2,fe,4a,03,ee,3e,d6,0c,6f,36,39,14,09)
39
40 int dhcp_identifier_set_duid_en(struct duid *duid, size_t *len) {
41         sd_id128_t machine_id;
42         int r;
43
44         assert(duid);
45         assert(len);
46
47         r = sd_id128_get_machine(&machine_id);
48         if (r < 0)
49                 return r;
50
51         duid->type = htobe16(DHCP6_DUID_EN);
52         duid->en.pen = htobe32(SYSTEMD_PEN);
53         *len = sizeof(duid->type) + sizeof(duid->en);
54
55         /* a bit of snake-oil perhaps, but no need to expose the machine-id
56            directly */
57         siphash24(duid->en.id, &machine_id, sizeof(machine_id), HASH_KEY.bytes);
58
59         return 0;
60 }
61
62
63 int dhcp_identifier_set_iaid(int ifindex, uint8_t *mac, size_t mac_len, uint32_t *_id) {
64         /* name is a pointer to memory in the udev_device struct, so must
65            have the same scope */
66         _cleanup_udev_device_unref_ struct udev_device *device = NULL;
67         const char *name = NULL;
68         uint64_t id;
69
70         if (detect_container(NULL) <= 0) {
71                 /* not in a container, udev will be around */
72                 _cleanup_udev_unref_ struct udev *udev;
73                 char ifindex_str[2 + DECIMAL_STR_MAX(int)];
74
75                 udev = udev_new();
76                 if (!udev)
77                         return -ENOMEM;
78
79                 sprintf(ifindex_str, "n%d", ifindex);
80                 device = udev_device_new_from_device_id(udev, ifindex_str);
81                 if (!device)
82                         return -errno;
83
84                 if (udev_device_get_is_initialized(device) <= 0)
85                         /* not yet ready */
86                         return -EBUSY;
87
88                 name = net_get_name(device);
89         }
90
91         if (name)
92                 siphash24((uint8_t*)&id, name, strlen(name), HASH_KEY.bytes);
93         else
94                 /* fall back to mac address if no predictable name available */
95                 siphash24((uint8_t*)&id, mac, mac_len, HASH_KEY.bytes);
96
97         /* fold into 32 bits */
98         *_id = (id & 0xffffffff) ^ (id >> 32);
99
100         return 0;
101 }