1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
|
/* man.c: How to read and format man files.
Copyright 1995-2024 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Originally written by Brian Fox Thu May 4 09:17:52 1995. */
#include "info.h"
#include "signals.h"
#if defined (HAVE_SYS_TIME_H)
#include <sys/time.h>
#endif
#if defined (HAVE_SYS_WAIT_H)
#include <sys/wait.h>
#endif
#include <stdio.h>
#include "tilde.h"
#include "nodes.h"
#include "man.h"
#include "variables.h"
#include "util.h"
#if !defined (_POSIX_VERSION)
#define pid_t int
#endif
#if defined (FD_SET)
# if defined (hpux)
# define fd_set_cast(x) (int *)(x)
# else
# define fd_set_cast(x) (fd_set *)(x)
# endif /* !hpux */
#endif /* FD_SET */
#if STRIP_DOT_EXE
static char const * const exec_extensions[] = {
".exe", ".com", ".bat", ".btm", ".sh", ".ksh", ".pl", ".sed", "", NULL
};
#else
static char const * const exec_extensions[] = { "", NULL };
#endif
static REFERENCE **xrefs_of_manpage (NODE *node);
static char *read_from_fd (int fd);
static char *get_manpage_contents (char *pagename);
static char *find_man_formatter (void);
/* We store the contents of retrieved man pages in here. */
static NODE **manpage_nodes = 0;
size_t manpage_node_index = 0;
size_t manpage_node_slots = 0;
#if PIPE_USE_FORK && !defined(__sun)
/* Check if a man page exists. Use "man -w" for this rather than getting
the contents of the man page. This is faster if we are running
"info --where" and we don't need the contents. */
int
check_manpage_node (char *pagename)
{
pid_t child;
int pid_status = 0;
NODE *man_node;
child = fork ();
if (child == -1)
return 0; /* couldn't fork */
if (!child)
{
char *formatter;
(void)! freopen (NULL_DEVICE, "w", stdout);
(void)! freopen (NULL_DEVICE, "w", stderr);
/* avoid "unused result" warning with ! operator */
formatter = find_man_formatter();
if (!formatter)
exit (1);
execl (formatter, formatter, "-w", pagename, (void *) 0);
exit (2); /* exec failed */
}
else
{
wait (&pid_status);
}
if (pid_status != 2)
return !pid_status;
/* Possibly "man -w" wasn't recognized. */
man_node = get_manpage_node (pagename);
if (man_node)
{
free (man_node);
return 1;
}
return 0;
}
#else /* !PIPE_USE_FORK || defined(__sun) */
/* We check __sun because 'man -w' has a different meaning on
Solaris (update whatis database). */
int
check_manpage_node (char *pagename)
{
NODE *man_node = get_manpage_node (pagename);
if (man_node)
{
free (man_node);
return 1;
}
return 0;
}
#endif /* !PIPE_USE_FORK */
NODE *
get_manpage_node (char *pagename)
{
NODE *node = 0, **n, *node2 = 0;
char *page;
if (manpage_node_index > 0)
for (n = manpage_nodes; (node = *n); n++)
if (!strcmp (node->nodename, pagename))
break;
/* Node was not found, so we have to create it. */
if (!node)
{
node = info_create_node ();
node->fullpath = MANPAGE_FILE_BUFFER_NAME;
node->nodename = xstrdup (pagename);
node->flags |= N_IsManPage;
/* Save this node. */
add_pointer_to_array (node, manpage_node_index,
manpage_nodes,
manpage_node_slots, 100);
}
/* Node wasn't found, or its contents were freed since last time. */
if (!node->contents)
{
size_t plen;
page = get_manpage_contents (pagename);
if (!page)
return 0;
plen = strlen (page);
node->contents = page;
node->nodelen = plen;
node->body_start = 0;
node->references = xrefs_of_manpage (node);
node->up = "(dir)";
}
node2 = xmalloc (sizeof (NODE));
*node2 = *node;
return node2;
}
/* Scan the list of directories in PATH looking for FILENAME. If we find
one that is an executable file, return it as a new string. Otherwise,
return a NULL pointer. */
static char *
executable_file_in_path (char *filename, char *path)
{
struct stat finfo;
char *temp_dirname;
int statable, dirname_index;
dirname_index = 0;
while ((temp_dirname = extract_colon_unit (path, &dirname_index)))
{
char *temp;
char *temp_end;
int i;
/* Expand a leading tilde if one is present. */
if (*temp_dirname == '~')
{
char *expanded_dirname;
expanded_dirname = tilde_expand_word (temp_dirname);
free (temp_dirname);
temp_dirname = expanded_dirname;
}
temp = xmalloc (34 + strlen (temp_dirname) + strlen (filename));
strcpy (temp, temp_dirname);
if (!IS_SLASH (temp[(strlen (temp)) - 1]))
strcat (temp, "/");
strcat (temp, filename);
temp_end = temp + strlen (temp);
free (temp_dirname);
/* Look for FILENAME, possibly with any of the extensions
in EXEC_EXTENSIONS[]. */
for (i = 0; exec_extensions[i]; i++)
{
if (exec_extensions[i][0])
strcpy (temp_end, exec_extensions[i]);
statable = (stat (temp, &finfo) == 0);
/* If we have found a regular executable file, then use it. */
if ((statable) && (S_ISREG (finfo.st_mode)) &&
(access (temp, X_OK) == 0))
return temp;
}
free (temp);
}
return NULL;
}
/* Return the full pathname of the system man page formatter. */
static char *
find_man_formatter (void)
{
static char *man_formatter;
char *man_command;
if (man_formatter)
return man_formatter;
man_command = getenv ("INFO_MAN_COMMAND");
man_formatter = man_command ? man_command
: executable_file_in_path ("man", getenv ("PATH"));
return man_formatter;
}
static char *manpage_pagename = NULL;
static char *manpage_section = NULL;
static void
get_page_and_section (char *pagename)
{
register int i;
if (manpage_pagename)
free (manpage_pagename);
if (manpage_section)
free (manpage_section);
manpage_pagename = NULL;
manpage_section = NULL;
for (i = 0; pagename[i] != '\0' && pagename[i] != '('; i++);
manpage_pagename = xmalloc (1 + i);
strncpy (manpage_pagename, pagename, i);
manpage_pagename[i] = '\0';
if (pagename[i] == '(')
{
int start;
start = i + 1;
for (i = start; pagename[i] != '\0' && pagename[i] != ')'; i++);
manpage_section = xmalloc (1 + (i - start));
strncpy (manpage_section, pagename + start, (i - start));
manpage_section[i - start] = '\0';
}
}
void
clean_manpage (char *manpage)
{
mbi_iterator_t iter;
size_t len = strlen (manpage);
char *newpage = xmalloc (len + 1);
char *np = newpage;
int prev_len = 0;
for (mbi_init (iter, manpage, len);
mbi_avail (iter);
mbi_advance (iter))
{
const char *cur_ptr = mbi_cur_ptr (iter);
int cur_len = mb_len (mbi_cur (iter));
if (cur_len == 1)
{
if (*cur_ptr == '\b' || *cur_ptr == '\f')
{
if (np >= newpage + prev_len)
np -= prev_len;
}
else if (ansi_escape (iter, &cur_len))
{
memcpy (np, cur_ptr, cur_len);
np += cur_len;
ITER_SETBYTES (iter, cur_len);
}
else if (show_malformed_multibyte_p || mbi_cur (iter).wc_valid)
*np++ = *cur_ptr;
}
else
{
memcpy (np, cur_ptr, cur_len);
np += cur_len;
}
prev_len = cur_len;
}
*np = 0;
strcpy (manpage, newpage);
free (newpage);
}
static char *get_manpage_from_formatter (char *formatter_args[]);
static char *
get_manpage_contents (char *pagename)
{
static char *formatter_args[4] = { NULL };
char *formatted_page;
if (formatter_args[0] == NULL)
formatter_args[0] = find_man_formatter ();
if (formatter_args[0] == NULL)
return NULL;
get_page_and_section (pagename);
if (manpage_section)
formatter_args[1] = manpage_section;
else
formatter_args[1] = "-a";
formatter_args[2] = manpage_pagename;
formatter_args[3] = NULL;
formatted_page = get_manpage_from_formatter (formatter_args);
/* If there was a section and the page wasn't found, try again
without the section (e.g. "man 3X curses" versus "man -a curses"). */
if (!formatted_page && manpage_section)
{
formatter_args[1] = "-a";
formatted_page = get_manpage_from_formatter (formatter_args);
}
return formatted_page;
}
static char *
get_manpage_from_formatter (char *formatter_args[])
{
char *formatted_page = NULL;
int pipes[2];
pid_t child;
int formatter_status = 0;
putenv ("MAN_KEEP_FORMATTING=1"); /* Get codes for bold etc. */
putenv ("GROFF_SGR=1"); /* for Debian whose man outputs
'overstrike' sequences without this */
/* Open a pipe to this program, read the output, and save it away
in FORMATTED_PAGE. The reader end of the pipe is pipes[0]; the
writer end is pipes[1]. */
#if PIPE_USE_FORK
if (pipe (pipes) == -1)
return 0; /* Creating pipe failed. */
child = fork ();
if (child == -1)
return NULL;
if (child != 0)
{
/* In the parent, close the writing end of the pipe, and read from
the exec'd child. */
close (pipes[1]);
formatted_page = read_from_fd (pipes[0]);
close (pipes[0]);
wait (&formatter_status); /* Wait for child process to exit. */
}
else
{ /* In the child, close the read end of the pipe, make the write end
of the pipe be stdout, and execute the man page formatter. */
close (pipes[0]);
(void)! freopen (NULL_DEVICE, "w", stderr);
(void)! freopen (NULL_DEVICE, "r", stdin);
/* avoid "unused result" warning with ! operator */
dup2 (pipes[1], fileno (stdout));
execv (formatter_args[0], formatter_args);
/* If we get here, we couldn't exec, so close out the pipe and
exit. */
close (pipes[1]);
exit (EXIT_SUCCESS);
}
#else /* !PIPE_USE_FORK */
/* Cannot fork/exec, but can popen/pclose. */
{
FILE *fpipe;
char *cmdline;
size_t cmdlen = 0;
int save_stderr = dup (fileno (stderr));
int fd_err = open (NULL_DEVICE, O_WRONLY, 0666);
int i;
for (i = 0; formatter_args[i]; i++)
cmdlen += strlen (formatter_args[i]);
/* Add-ons: 2 blanks, 2 quotes for the formatter program, 1
terminating null character. */
cmdlen += 2 + 2 + 1;
cmdline = xmalloc (cmdlen);
if (fd_err > 2)
dup2 (fd_err, fileno (stderr)); /* Don't print errors. */
sprintf (cmdline, "\"%s\" %s %s",
formatter_args[0], formatter_args[1], formatter_args[2]);
fpipe = popen (cmdline, "r");
free (cmdline);
if (fd_err > 2)
close (fd_err);
dup2 (save_stderr, fileno (stderr));
if (fpipe == 0)
return NULL;
formatted_page = read_from_fd (fileno (fpipe));
formatter_status = pclose (fpipe);
}
#endif /* !PIPE_USE_FORK */
if (!formatted_page)
return 0;
/* We could check the exit status of "man -a" to see if it successfully
output a man page However:
* It is possible for "man -a" to output a man page and still to exit with
a non-zero status. This was found to happen when duplicate man pages
were found.
* "man" was found to exit with a zero status on Solaris 10 even when
it found nothing.
Hence, treat it as a success if more than three lines were output. (A
small amount of output could be error messages that were sent to standard
output.) */
{
int i;
char *p;
p = formatted_page;
for (i = 0; i < 3; i++)
{
p = strchr (p, '\n');
if (!p)
{
free (formatted_page);
return NULL;
}
p++;
}
}
/* If we have the page, then clean it up. */
clean_manpage (formatted_page);
return formatted_page;
}
/* Return pointer to bytes read from file descriptor FD. Return value to be
freed by caller. */
static char *
read_from_fd (int fd)
{
struct timeval timeout;
char *buffer = NULL;
int bsize = 0;
int bindex = 0;
int select_result;
#if defined (FD_SET)
fd_set read_fds;
timeout.tv_sec = 15;
timeout.tv_usec = 0;
FD_ZERO (&read_fds);
FD_SET (fd, &read_fds);
select_result = select (fd + 1, fd_set_cast (&read_fds), 0, 0, &timeout);
#else /* !FD_SET */
select_result = 1;
#endif /* !FD_SET */
switch (select_result)
{
case 0:
case -1:
break;
default:
{
int amount_read;
int done = 0;
while (!done)
{
while ((bindex + 1024) > (bsize))
buffer = xrealloc (buffer, (bsize += 1024));
buffer[bindex] = '\0';
amount_read = read (fd, buffer + bindex, 1023);
if (amount_read < 0)
{
done = 1;
}
else
{
bindex += amount_read;
buffer[bindex] = '\0';
if (amount_read == 0)
done = 1;
}
}
}
}
if ((buffer != NULL) && (*buffer == '\0'))
{
free (buffer);
buffer = NULL;
}
return buffer;
}
static REFERENCE **
xrefs_of_manpage (NODE *node)
{
SEARCH_BINDING s;
REFERENCE **refs = NULL;
size_t refs_index = 0;
size_t refs_slots = 0;
long position;
/* Initialize reference list to have a single null entry. */
refs = calloc(1, sizeof (REFERENCE *));
refs_slots = 1;
s.buffer = node->contents;
s.start = 0;
s.flags = 0;
s.end = node->nodelen;
/* Exclude first line, which often looks like:
CAT(1) User Commands CAT(1)
*/
s.start = strcspn (node->contents, "\n");
/* Build a list of references. A reference is alphabetic characters
followed by non-whitespace text within parenthesis leading with a digit. */
while (search_forward ("(", &s, &position) == search_success)
{
register int name, name_end;
int section, section_end;
name = position;
if (name == 0)
goto skip;
else
name--;
/* Go to the start of a sequence of non-whitespace characters,
checking the characters are those that should appear in a man
page name. */
for (; name > 0; name--)
if (whitespace_or_newline (s.buffer[name])
|| (!isalnum ((unsigned char) s.buffer[name])
&& s.buffer[name] != '_'
&& s.buffer[name] != '.'
&& s.buffer[name] != '-'
&& s.buffer[name] != '\033'
&& s.buffer[name] != '['))
break;
/* Check if reached start of buffer. */
if (name == 0)
goto skip;
/* Check for invalid sequence in name. */
if (!whitespace_or_newline (s.buffer[name]))
goto skip;
name++;
if (name == position)
goto skip; /* Whitespace immediately before '('. */
/* 'name' is now at the start of a sequence of non-whitespace
characters. If we are on an ECMA-48 SGR escape sequence, skip
past it. */
if (s.buffer[name] == '\033' && s.buffer[name + 1] == '[')
{
name += 2;
name += strspn (s.buffer + name, "0123456789;");
if (s.buffer[name] == 'm')
name++;
else
goto skip;
}
/* Set name_end to the end of the name, but before any SGR sequence. */
for (name_end = name; name_end < position; name_end++)
if (!isalnum ((unsigned char) s.buffer[name_end])
&& s.buffer[name_end] != '_'
&& s.buffer[name_end] != '.'
&& s.buffer[name_end] != '-')
break;
section = position;
section_end = 0;
/* Look for one or two characters within the brackets, the
first of which must be a non-zero digit and the second a letter. */
if (!isdigit ((unsigned char) s.buffer[section + 1])
|| s.buffer[section + 1] == '0')
;
else if (!s.buffer[section + 2])
; /* end of buffer */
else if (s.buffer[section + 2] == ')')
section_end = section + 3;
else if (!isalpha((unsigned char) s.buffer[section + 2]))
;
else if (s.buffer[section + 3] == ')')
section_end = section + 4;
if (section_end)
{
REFERENCE *entry;
int len = name_end - name + section_end - section;
entry = xmalloc (sizeof (REFERENCE));
entry->label = xcalloc (1, 1 + len);
strncpy (entry->label, s.buffer + name, name_end - name);
strncpy (entry->label + strlen (entry->label),
s.buffer + section,
section_end - section);
entry->filename = xstrdup (MANPAGE_FILE_BUFFER_NAME);
entry->nodename = xstrdup (entry->label);
entry->line_number = 0;
entry->start = name;
entry->end = section_end;
entry->type = REFERENCE_XREF;
add_pointer_to_array (entry, refs_index, refs, refs_slots, 10);
}
skip:
s.start = position + 1;
}
return refs;
}
|