]> sourceware.org Git - glibc.git/blame - hurd/get-host.c
syslog: Fix integer overflow in __vsyslog_internal (CVE-2023-6780)
[glibc.git] / hurd / get-host.c
CommitLineData
5fbef188 1/* Get a host configuration item kept as the whole contents of a file.
dff8da6b 2 Copyright (C) 1996-2024 Free Software Foundation, Inc.
c84142e8 3 This file is part of the GNU C Library.
5fbef188 4
c84142e8 5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
5fbef188 9
c84142e8
UD
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
5fbef188 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6 16 License along with the GNU C Library; if not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
5fbef188 18
a5d96b25 19#include <fcntl.h>
5fbef188 20#include <hurd.h>
b6bebf51 21#include <hurd/lookup.h>
5fbef188 22#include "hurdhost.h"
8a0746ae 23#include <string.h>
5fbef188
RM
24
25ssize_t
26_hurd_get_host_config (const char *item, char *buf, size_t buflen)
27{
28 error_t err;
29 char *data;
063f7462
ST
30 mach_msg_type_number_t nread;
31 vm_size_t more;
1d721dae
RM
32 file_t config;
33
34 err = __hurd_file_name_lookup (&_hurd_ports_use, &__getdport, 0,
35 item, O_RDONLY, 0, &config);
36 switch (err)
37 {
38 case 0: /* Success; read file contents below. */
39 break;
40
41 case ENOENT: /* ? Others? All errors? */
42 /* The file does not exist, so no value has been set. Rather than
43 causing gethostname et al to fail with ENOENT, give an empty value
44 as other systems do before sethostname has been called. */
45 if (buflen != 0)
46 *buf = '\0';
47 return 0;
48
49 default:
50 return __hurd_fail (err);
51 }
5fbef188
RM
52
53 data = buf;
d5a0160b 54 nread = buflen;
5fbef188
RM
55 err = __io_read (config, &data, &nread, -1, buflen);
56 if (! err)
57 /* Check if there is more in the file we didn't read. */
58 err = __io_readable (config, &more);
59 __mach_port_deallocate (__mach_task_self (), config);
60 if (err)
61 return __hurd_fail (err);
62 if (data != buf)
63 {
64 memcpy (buf, data, nread);
65 __vm_deallocate (__mach_task_self (), (vm_address_t) data, nread);
66 }
67
dcc7b756 68 /* If the file is empty, give an empty value. */
507fe027 69 if (nread == 0 && more == 0)
dcc7b756
RM
70 {
71 if (buflen != 0)
72 *buf = '\0';
73 return 0;
74 }
fbfdeab3 75
5fbef188 76 /* Remove newlines in case someone wrote the file by hand. */
8c654609 77 while (nread > 0 && buf[nread - 1] == '\n')
5fbef188
RM
78 buf[--nread] = '\0';
79
fbfdeab3
MK
80 /* Null-terminate the result if there is enough space. */
81 if (nread < buflen)
82 buf[nread] = '\0';
83 else
507fe027 84 if (nread != 0 && buf[nread - 1] != '\0')
fbfdeab3
MK
85 more = 1;
86
5fbef188
RM
87 if (more)
88 /* If we didn't read the whole file, tell the caller to use a bigger
89 buffer next time. */
90 return __hurd_fail (ENAMETOOLONG);
91
92 return nread;
93}
This page took 0.55164 seconds and 5 git commands to generate.