1 /* printf implementation for the dynamic loader.
2 Copyright (C) 1997-2022 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
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.
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
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
21 #include <dl-writev.h>
31 /* Bare-bones printf implementation. This function only knows about
32 the formats and flags needed and can handle only up to 64 stripes in
35 _dl_debug_vdprintf (int fd
, int tag_p
, const char *fmt
, va_list arg
)
38 struct iovec iov
[NIOVMAX
];
45 const char *startp
= fmt
;
49 /* Generate the tag line once. It consists of the PID and a
50 colon followed by a tab. */
55 assert (pid
>= 0 && sizeof (pid_t
) <= 4);
56 p
= _itoa (pid
, &pidbuf
[10], 10, 0);
63 /* Append to the output. */
64 assert (niov
< NIOVMAX
);
65 iov
[niov
].iov_len
= 12;
66 iov
[niov
++].iov_base
= pidbuf
;
68 /* No more tags until we see the next newline. */
72 /* Skip everything except % and \n (if tags are needed). */
73 while (*fmt
!= '\0' && *fmt
!= '%' && (! tag_p
|| *fmt
!= '\n'))
76 /* Append constant string. */
77 assert (niov
< NIOVMAX
);
78 if ((iov
[niov
].iov_len
= fmt
- startp
) != 0)
79 iov
[niov
++].iov_base
= (char *) startp
;
83 /* It is a format specifier. */
87 #if LONG_MAX != INT_MAX
91 /* Recognize zero-digit fill flag. */
98 /* See whether with comes from a parameter. Note that no other
99 way to specify the width is implemented. */
102 width
= va_arg (arg
, int);
106 /* Handle precision. */
107 if (*fmt
== '.' && fmt
[1] == '*')
109 prec
= va_arg (arg
, int);
113 /* Recognize the l modifier. It is only important on some
114 platforms where long and int have a different size. We
115 can use the same code for size_t. */
116 if (*fmt
== 'l' || *fmt
== 'Z')
118 #if LONG_MAX != INT_MAX
126 /* Integer formatting. */
131 /* We have to make a difference if long and int have a
133 #if LONG_MAX != INT_MAX
134 unsigned long int num
= (long_mod
135 ? va_arg (arg
, unsigned long int)
136 : va_arg (arg
, unsigned int));
138 unsigned long int num
= va_arg (arg
, unsigned int);
140 bool negative
= false;
143 #if LONG_MAX != INT_MAX
146 if ((long int) num
< 0)
153 num
= (unsigned int) num
;
163 /* We use alloca() to allocate the buffer with the most
164 pessimistic guess for the size. Using alloca() allows
165 having more than one integer formatting in a call. */
166 char *buf
= (char *) alloca (1 + 3 * sizeof (unsigned long int));
167 char *endp
= &buf
[1 + 3 * sizeof (unsigned long int)];
168 char *cp
= _itoa (num
, endp
, *fmt
== 'x' ? 16 : 10, 0);
170 /* Pad to the width the user specified. */
172 while (endp
- cp
< width
)
178 iov
[niov
].iov_base
= cp
;
179 iov
[niov
].iov_len
= endp
- cp
;
185 /* Get the string argument. */
186 iov
[niov
].iov_base
= va_arg (arg
, char *);
187 iov
[niov
].iov_len
= strlen (iov
[niov
].iov_base
);
189 iov
[niov
].iov_len
= MIN ((size_t) prec
, iov
[niov
].iov_len
);
194 iov
[niov
].iov_base
= (void *) fmt
;
195 iov
[niov
].iov_len
= 1;
200 assert (! "invalid format specifier");
204 else if (*fmt
== '\n')
206 /* See whether we have to print a single newline character. */
209 iov
[niov
].iov_base
= (char *) startp
;
210 iov
[niov
++].iov_len
= 1;
213 /* No, just add it to the rest of the string. */
214 ++iov
[niov
- 1].iov_len
;
216 /* Next line, print a tag again. */
222 /* Finally write the result. */
223 _dl_writev (fd
, iov
, niov
);
227 /* Write to debug file. */
229 _dl_debug_printf (const char *fmt
, ...)
234 _dl_debug_vdprintf (GLRO(dl_debug_fd
), 1, fmt
, arg
);
239 /* Write to debug file but don't start with a tag. */
241 _dl_debug_printf_c (const char *fmt
, ...)
246 _dl_debug_vdprintf (GLRO(dl_debug_fd
), -1, fmt
, arg
);
251 /* Write the given file descriptor. */
253 _dl_dprintf (int fd
, const char *fmt
, ...)
258 _dl_debug_vdprintf (fd
, 0, fmt
, arg
);
263 _dl_printf (const char *fmt
, ...)
268 _dl_debug_vdprintf (STDOUT_FILENO
, 0, fmt
, arg
);
273 _dl_error_printf (const char *fmt
, ...)
278 _dl_debug_vdprintf (STDERR_FILENO
, 0, fmt
, arg
);
283 _dl_fatal_printf (const char *fmt
, ...)
288 _dl_debug_vdprintf (STDERR_FILENO
, 0, fmt
, arg
);
292 rtld_hidden_def (_dl_fatal_printf
)