xref: /freebsd/usr.bin/man/man.sh (revision c4368d03e52c7c97d583ee6b81a59510d371ffbb)
1c535eb59SGordon Tetlow#! /bin/sh
2c535eb59SGordon Tetlow#
34d846d26SWarner Losh# SPDX-License-Identifier: BSD-2-Clause
41de7b4b8SPedro F. Giffuni#
5c535eb59SGordon Tetlow#  Copyright (c) 2010 Gordon Tetlow
6c535eb59SGordon Tetlow#  All rights reserved.
7c535eb59SGordon Tetlow#
8c535eb59SGordon Tetlow#  Redistribution and use in source and binary forms, with or without
9c535eb59SGordon Tetlow#  modification, are permitted provided that the following conditions
10c535eb59SGordon Tetlow#  are met:
11c535eb59SGordon Tetlow#  1. Redistributions of source code must retain the above copyright
12c535eb59SGordon Tetlow#     notice, this list of conditions and the following disclaimer.
13c535eb59SGordon Tetlow#  2. Redistributions in binary form must reproduce the above copyright
14c535eb59SGordon Tetlow#     notice, this list of conditions and the following disclaimer in the
15c535eb59SGordon Tetlow#     documentation and/or other materials provided with the distribution.
16c535eb59SGordon Tetlow#
17c535eb59SGordon Tetlow#  THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18c535eb59SGordon Tetlow#  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19c535eb59SGordon Tetlow#  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20c535eb59SGordon Tetlow#  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21c535eb59SGordon Tetlow#  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22c535eb59SGordon Tetlow#  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23c535eb59SGordon Tetlow#  OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24c535eb59SGordon Tetlow#  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25c535eb59SGordon Tetlow#  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26c535eb59SGordon Tetlow#  OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27c535eb59SGordon Tetlow#  SUCH DAMAGE.
28c535eb59SGordon Tetlow#
29c535eb59SGordon Tetlow
30433c5a8aSWolfram Schneider# Rendering a manual page is fast. Even a manual page several 100k in size
31433c5a8aSWolfram Schneider# takes less than a CPU second. If it takes much longer, it is very likely
32433c5a8aSWolfram Schneider# that a tool like mandoc(1) is running in an infinite loop. In this case
33433c5a8aSWolfram Schneider# it is better to terminate it.
34433c5a8aSWolfram Schneiderulimit -t 20
35433c5a8aSWolfram Schneider
36c535eb59SGordon Tetlow# Usage: add_to_manpath path
37c535eb59SGordon Tetlow# Adds a variable to manpath while ensuring we don't have duplicates.
38c535eb59SGordon Tetlow# Returns true if we were able to add something. False otherwise.
39c535eb59SGordon Tetlowadd_to_manpath() {
40c535eb59SGordon Tetlow	case "$manpath" in
41c535eb59SGordon Tetlow	*:$1)	decho "  Skipping duplicate manpath entry $1" 2 ;;
42c535eb59SGordon Tetlow	$1:*)	decho "  Skipping duplicate manpath entry $1" 2 ;;
43c535eb59SGordon Tetlow	*:$1:*)	decho "  Skipping duplicate manpath entry $1" 2 ;;
44c535eb59SGordon Tetlow	*)	if [ -d "$1" ]; then
45c535eb59SGordon Tetlow			decho "  Adding $1 to manpath"
46c535eb59SGordon Tetlow			manpath="$manpath:$1"
47c535eb59SGordon Tetlow			return 0
48c535eb59SGordon Tetlow		fi
49c535eb59SGordon Tetlow		;;
50c535eb59SGordon Tetlow	esac
51c535eb59SGordon Tetlow
52c535eb59SGordon Tetlow	return 1
53c535eb59SGordon Tetlow}
54c535eb59SGordon Tetlow
55c535eb59SGordon Tetlow# Usage: build_manlocales
56c535eb59SGordon Tetlow# Builds a correct MANLOCALES variable.
57c535eb59SGordon Tetlowbuild_manlocales() {
58c535eb59SGordon Tetlow	# If the user has set manlocales, who are we to argue.
59c535eb59SGordon Tetlow	if [ -n "$MANLOCALES" ]; then
60c535eb59SGordon Tetlow		return
61c535eb59SGordon Tetlow	fi
62c535eb59SGordon Tetlow
63c535eb59SGordon Tetlow	parse_configs
64c535eb59SGordon Tetlow
65c535eb59SGordon Tetlow	# Trim leading colon
66c535eb59SGordon Tetlow	MANLOCALES=${manlocales#:}
67c535eb59SGordon Tetlow
68c535eb59SGordon Tetlow	decho "Available manual locales: $MANLOCALES"
69c535eb59SGordon Tetlow}
70c535eb59SGordon Tetlow
718edb6fb5SMohamed Akram# Usage: build_mansect
728edb6fb5SMohamed Akram# Builds a correct MANSECT variable.
738edb6fb5SMohamed Akrambuild_mansect() {
748edb6fb5SMohamed Akram	# If the user has set mansect, who are we to argue.
758edb6fb5SMohamed Akram	if [ -n "$MANSECT" ]; then
768edb6fb5SMohamed Akram		return
778edb6fb5SMohamed Akram	fi
788edb6fb5SMohamed Akram
798edb6fb5SMohamed Akram	parse_configs
808edb6fb5SMohamed Akram
818edb6fb5SMohamed Akram	# Trim leading colon
828edb6fb5SMohamed Akram	MANSECT=${mansect#:}
838edb6fb5SMohamed Akram
848edb6fb5SMohamed Akram	if [ -z "$MANSECT" ]; then
858edb6fb5SMohamed Akram		MANSECT=$man_default_sections
868edb6fb5SMohamed Akram	fi
878edb6fb5SMohamed Akram	decho "Using manual sections: $MANSECT"
888edb6fb5SMohamed Akram}
898edb6fb5SMohamed Akram
90c535eb59SGordon Tetlow# Usage: build_manpath
91c535eb59SGordon Tetlow# Builds a correct MANPATH variable.
92c535eb59SGordon Tetlowbuild_manpath() {
93c535eb59SGordon Tetlow	local IFS
94c535eb59SGordon Tetlow
95c535eb59SGordon Tetlow	# If the user has set a manpath, who are we to argue.
96c535eb59SGordon Tetlow	if [ -n "$MANPATH" ]; then
97b2394e73SBaptiste Daroussin		case "$MANPATH" in
98b2394e73SBaptiste Daroussin		*:) PREPEND_MANPATH=${MANPATH} ;;
99b2394e73SBaptiste Daroussin		:*) APPEND_MANPATH=${MANPATH} ;;
100b2394e73SBaptiste Daroussin		*::*)
101b2394e73SBaptiste Daroussin			PREPEND_MANPATH=${MANPATH%%::*}
102b2394e73SBaptiste Daroussin			APPEND_MANPATH=${MANPATH#*::}
103b2394e73SBaptiste Daroussin			;;
104b2394e73SBaptiste Daroussin		*) return ;;
105b2394e73SBaptiste Daroussin		esac
106b2394e73SBaptiste Daroussin	fi
107b2394e73SBaptiste Daroussin
108b2394e73SBaptiste Daroussin	if [ -n "$PREPEND_MANPATH" ]; then
109b2394e73SBaptiste Daroussin		IFS=:
110b2394e73SBaptiste Daroussin		for path in $PREPEND_MANPATH; do
111b2394e73SBaptiste Daroussin			add_to_manpath "$path"
112b2394e73SBaptiste Daroussin		done
113b2394e73SBaptiste Daroussin		unset IFS
114c535eb59SGordon Tetlow	fi
115c535eb59SGordon Tetlow
116c535eb59SGordon Tetlow	search_path
117c535eb59SGordon Tetlow
118c535eb59SGordon Tetlow	decho "Adding default manpath entries"
119c535eb59SGordon Tetlow	IFS=:
120c535eb59SGordon Tetlow	for path in $man_default_path; do
121c535eb59SGordon Tetlow		add_to_manpath "$path"
122c535eb59SGordon Tetlow	done
123c535eb59SGordon Tetlow	unset IFS
124c535eb59SGordon Tetlow
125c535eb59SGordon Tetlow	parse_configs
126c535eb59SGordon Tetlow
127b2394e73SBaptiste Daroussin	if [ -n "$APPEND_MANPATH" ]; then
128b2394e73SBaptiste Daroussin		IFS=:
129b2394e73SBaptiste Daroussin		for path in $APPEND_MANPATH; do
130b2394e73SBaptiste Daroussin			add_to_manpath "$path"
131b2394e73SBaptiste Daroussin		done
132b2394e73SBaptiste Daroussin		unset IFS
133b2394e73SBaptiste Daroussin	fi
134c535eb59SGordon Tetlow	# Trim leading colon
135c535eb59SGordon Tetlow	MANPATH=${manpath#:}
136c535eb59SGordon Tetlow
137c535eb59SGordon Tetlow	decho "Using manual path: $MANPATH"
138c535eb59SGordon Tetlow}
139c535eb59SGordon Tetlow
140c535eb59SGordon Tetlow# Usage: check_cat catglob
141c535eb59SGordon Tetlow# Checks to see if a cat glob is available.
142c535eb59SGordon Tetlowcheck_cat() {
143c535eb59SGordon Tetlow	if exists "$1"; then
144c535eb59SGordon Tetlow		use_cat=yes
145c535eb59SGordon Tetlow		catpage=$found
146*c4368d03SWolfram Schneider		setup_cattool "$catpage"
147*c4368d03SWolfram Schneider		decho "    Found catpage \"$catpage\""
148c535eb59SGordon Tetlow		return 0
149c535eb59SGordon Tetlow	else
150c535eb59SGordon Tetlow		return 1
151c535eb59SGordon Tetlow	fi
152c535eb59SGordon Tetlow}
153c535eb59SGordon Tetlow
154c535eb59SGordon Tetlow# Usage: check_man manglob catglob
155c535eb59SGordon Tetlow# Given 2 globs, figures out if the manglob is available, if so, check to
156c535eb59SGordon Tetlow# see if the catglob is also available and up to date.
157c535eb59SGordon Tetlowcheck_man() {
158c535eb59SGordon Tetlow	if exists "$1"; then
159c535eb59SGordon Tetlow		# We have a match, check for a cat page
160c535eb59SGordon Tetlow		manpage=$found
16157cd9717SGordon Tetlow		setup_cattool $manpage
162c535eb59SGordon Tetlow		decho "    Found manpage $manpage"
163c535eb59SGordon Tetlow
164a0094449SRuslan Ermilov		if [ -n "${use_width}" ]; then
165a0094449SRuslan Ermilov			# non-standard width
166a0094449SRuslan Ermilov			unset use_cat
167a0094449SRuslan Ermilov			decho "    Skipping catpage: non-standard page width"
168a0094449SRuslan Ermilov		elif exists "$2" && is_newer $found $manpage; then
169c535eb59SGordon Tetlow			# cat page found and is newer, use that
170c535eb59SGordon Tetlow			use_cat=yes
171c535eb59SGordon Tetlow			catpage=$found
172*c4368d03SWolfram Schneider			setup_cattool "$catpage"
173*c4368d03SWolfram Schneider			decho "    Using catpage \"$catpage\""
174c535eb59SGordon Tetlow		else
175c535eb59SGordon Tetlow			# no cat page or is older
176c535eb59SGordon Tetlow			unset use_cat
177c535eb59SGordon Tetlow			decho "    Skipping catpage: not found or old"
178c535eb59SGordon Tetlow		fi
179c535eb59SGordon Tetlow		return 0
180c535eb59SGordon Tetlow	fi
181c535eb59SGordon Tetlow
182c535eb59SGordon Tetlow	return 1
183c535eb59SGordon Tetlow}
184c535eb59SGordon Tetlow
185c535eb59SGordon Tetlow# Usage: decho "string" [debuglevel]
186c535eb59SGordon Tetlow# Echoes to stderr string prefaced with -- if high enough debuglevel.
187c535eb59SGordon Tetlowdecho() {
188c535eb59SGordon Tetlow	if [ $debug -ge ${2:-1} ]; then
189c535eb59SGordon Tetlow		echo "-- $1" >&2
190c535eb59SGordon Tetlow	fi
191c535eb59SGordon Tetlow}
192c535eb59SGordon Tetlow
193c535eb59SGordon Tetlow# Usage: exists glob
194c535eb59SGordon Tetlow# Returns true if glob resolves to a real file.
195c535eb59SGordon Tetlowexists() {
196c535eb59SGordon Tetlow	local IFS
197c535eb59SGordon Tetlow
198c535eb59SGordon Tetlow	# Don't accidentally inherit callers IFS (breaks perl manpages)
199c535eb59SGordon Tetlow	unset IFS
200c535eb59SGordon Tetlow
201c535eb59SGordon Tetlow	# Use some globbing tricks in the shell to determine if a file
202c535eb59SGordon Tetlow	# exists or not.
203c535eb59SGordon Tetlow	set +f
204c535eb59SGordon Tetlow	set -- "$1" $1
205c535eb59SGordon Tetlow	set -f
206c535eb59SGordon Tetlow
207c535eb59SGordon Tetlow	if [ "$1" != "$2" -a -r "$2" ]; then
208c535eb59SGordon Tetlow		found="$2"
209c535eb59SGordon Tetlow		return 0
210c535eb59SGordon Tetlow	fi
211c535eb59SGordon Tetlow
212c535eb59SGordon Tetlow	return 1
213c535eb59SGordon Tetlow}
214c535eb59SGordon Tetlow
215c535eb59SGordon Tetlow# Usage: find_file path section subdir pagename
216c535eb59SGordon Tetlow# Returns: true if something is matched and found.
217c535eb59SGordon Tetlow# Search the given path/section combo for a given page.
218c535eb59SGordon Tetlowfind_file() {
219c535eb59SGordon Tetlow	local manroot catroot mann man0 catn cat0
220c535eb59SGordon Tetlow
221c535eb59SGordon Tetlow	manroot="$1/man$2"
222c535eb59SGordon Tetlow	catroot="$1/cat$2"
223c535eb59SGordon Tetlow	if [ -n "$3" ]; then
224c535eb59SGordon Tetlow		manroot="$manroot/$3"
225c535eb59SGordon Tetlow		catroot="$catroot/$3"
226c535eb59SGordon Tetlow	fi
227c535eb59SGordon Tetlow
228625490e8SBaptiste Daroussin	if [ ! -d "$manroot" -a ! -d "$catroot" ]; then
229c535eb59SGordon Tetlow		return 1
230c535eb59SGordon Tetlow	fi
231c535eb59SGordon Tetlow	decho "  Searching directory $manroot" 2
232c535eb59SGordon Tetlow
233c535eb59SGordon Tetlow	mann="$manroot/$4.$2*"
234c535eb59SGordon Tetlow	man0="$manroot/$4.0*"
235c535eb59SGordon Tetlow	catn="$catroot/$4.$2*"
236c535eb59SGordon Tetlow	cat0="$catroot/$4.0*"
237c535eb59SGordon Tetlow
238c535eb59SGordon Tetlow	# This is the behavior as seen by the original man utility.
239c535eb59SGordon Tetlow	# Let's not change that which doesn't seem broken.
240c535eb59SGordon Tetlow	if check_man "$mann" "$catn"; then
241c535eb59SGordon Tetlow		return 0
242c535eb59SGordon Tetlow	elif check_man "$man0" "$cat0"; then
243c535eb59SGordon Tetlow		return 0
244c535eb59SGordon Tetlow	elif check_cat "$catn"; then
245c535eb59SGordon Tetlow		return 0
246c535eb59SGordon Tetlow	elif check_cat "$cat0"; then
247c535eb59SGordon Tetlow		return 0
248c535eb59SGordon Tetlow	fi
249c535eb59SGordon Tetlow
250c535eb59SGordon Tetlow	return 1
251c535eb59SGordon Tetlow}
252c535eb59SGordon Tetlow
253c535eb59SGordon Tetlow# Usage: is_newer file1 file2
254c535eb59SGordon Tetlow# Returns true if file1 is newer than file2 as calculated by mtime.
255c535eb59SGordon Tetlowis_newer() {
2569b61837aSUlrich Spörlein	if ! [ "$1" -ot "$2" ]; then
2579b61837aSUlrich Spörlein		decho "    mtime: $1 not older than $2" 3
258c535eb59SGordon Tetlow		return 0
259c535eb59SGordon Tetlow	else
260c535eb59SGordon Tetlow		decho "    mtime: $1 older than $2" 3
261c535eb59SGordon Tetlow		return 1
262c535eb59SGordon Tetlow	fi
263c535eb59SGordon Tetlow}
264c535eb59SGordon Tetlow
265c535eb59SGordon Tetlow# Usage: manpath_parse_args "$@"
266c535eb59SGordon Tetlow# Parses commandline options for manpath.
267c535eb59SGordon Tetlowmanpath_parse_args() {
268c535eb59SGordon Tetlow	local cmd_arg
269c535eb59SGordon Tetlow
270f555b39eSKyle Evans	OPTIND=1
271c535eb59SGordon Tetlow	while getopts 'Ldq' cmd_arg; do
272c535eb59SGordon Tetlow		case "${cmd_arg}" in
273c535eb59SGordon Tetlow		L)	Lflag=Lflag ;;
274c535eb59SGordon Tetlow		d)	debug=$(( $debug + 1 )) ;;
275c535eb59SGordon Tetlow		q)	qflag=qflag ;;
276c535eb59SGordon Tetlow		*)	manpath_usage ;;
277c535eb59SGordon Tetlow		esac
278c535eb59SGordon Tetlow	done >&2
279c535eb59SGordon Tetlow}
280c535eb59SGordon Tetlow
281c535eb59SGordon Tetlow# Usage: manpath_usage
282c535eb59SGordon Tetlow# Display usage for the manpath(1) utility.
283c535eb59SGordon Tetlowmanpath_usage() {
284c535eb59SGordon Tetlow	echo 'usage: manpath [-Ldq]' >&2
285c535eb59SGordon Tetlow	exit 1
286c535eb59SGordon Tetlow}
287c535eb59SGordon Tetlow
288c535eb59SGordon Tetlow# Usage: manpath_warnings
289c535eb59SGordon Tetlow# Display some warnings to stderr.
290c535eb59SGordon Tetlowmanpath_warnings() {
291c535eb59SGordon Tetlow	if [ -n "$Lflag" -a -n "$MANLOCALES" ]; then
292c535eb59SGordon Tetlow		echo "(Warning: MANLOCALES environment variable set)" >&2
293c535eb59SGordon Tetlow	fi
294c535eb59SGordon Tetlow}
295c535eb59SGordon Tetlow
29657cd9717SGordon Tetlow# Usage: man_check_for_so page path
29757cd9717SGordon Tetlow# Returns: True if able to resolve the file, false if it ended in tears.
29857cd9717SGordon Tetlow# Detects the presence of the .so directive and causes the file to be
29957cd9717SGordon Tetlow# redirected to another source file.
30057cd9717SGordon Tetlowman_check_for_so() {
30157cd9717SGordon Tetlow	local IFS line tstr
30257cd9717SGordon Tetlow
30357cd9717SGordon Tetlow	unset IFS
304d9405a92SBaptiste Daroussin	if [ -n "$catpage" ]; then
305d9405a92SBaptiste Daroussin		return 0
306d9405a92SBaptiste Daroussin	fi
30757cd9717SGordon Tetlow
30857cd9717SGordon Tetlow	# We need to loop to accommodate multiple .so directives.
30957cd9717SGordon Tetlow	while true
31057cd9717SGordon Tetlow	do
31157cd9717SGordon Tetlow		line=$($cattool $manpage | head -1)
31257cd9717SGordon Tetlow		case "$line" in
31357cd9717SGordon Tetlow		.so*)	trim "${line#.so}"
31457cd9717SGordon Tetlow			decho "$manpage includes $tstr"
31557cd9717SGordon Tetlow			# Glob and check for the file.
31657cd9717SGordon Tetlow			if ! check_man "$path/$tstr*" ""; then
31757cd9717SGordon Tetlow				decho "  Unable to find $tstr"
31857cd9717SGordon Tetlow				return 1
31957cd9717SGordon Tetlow			fi
32057cd9717SGordon Tetlow			;;
32157cd9717SGordon Tetlow		*)	break ;;
32257cd9717SGordon Tetlow		esac
32357cd9717SGordon Tetlow	done
32457cd9717SGordon Tetlow
32557cd9717SGordon Tetlow	return 0
32657cd9717SGordon Tetlow}
32757cd9717SGordon Tetlow
328b43edc06SBaptiste Daroussin# Usage: man_display_page
329b43edc06SBaptiste Daroussin# Display either the manpage or catpage depending on the use_cat variable
330c535eb59SGordon Tetlowman_display_page() {
3311fb816daSBaptiste Daroussin	local IFS pipeline testline
332c535eb59SGordon Tetlow
333c535eb59SGordon Tetlow	# We are called with IFS set to colon. This causes really weird
334c535eb59SGordon Tetlow	# things to happen for the variables that have spaces in them.
335c535eb59SGordon Tetlow	unset IFS
336c535eb59SGordon Tetlow
337c535eb59SGordon Tetlow	# If we are supposed to use a catpage and we aren't using troff(1)
338c535eb59SGordon Tetlow	# just zcat the catpage and we are done.
339c535eb59SGordon Tetlow	if [ -z "$tflag" -a -n "$use_cat" ]; then
340c535eb59SGordon Tetlow		if [ -n "$wflag" ]; then
341c535eb59SGordon Tetlow			echo "$catpage (source: $manpage)"
342c535eb59SGordon Tetlow			ret=0
343c535eb59SGordon Tetlow		else
344c535eb59SGordon Tetlow			if [ $debug -gt 0 ]; then
345*c4368d03SWolfram Schneider				decho "Command: $cattool \"$catpage\" | $MANPAGER"
346c535eb59SGordon Tetlow				ret=0
347c535eb59SGordon Tetlow			else
348*c4368d03SWolfram Schneider				eval "$cattool \"$catpage\" | $MANPAGER"
349c535eb59SGordon Tetlow				ret=$?
350c535eb59SGordon Tetlow			fi
351c535eb59SGordon Tetlow		fi
352c535eb59SGordon Tetlow		return
353c535eb59SGordon Tetlow	fi
354c535eb59SGordon Tetlow
355c535eb59SGordon Tetlow	# Okay, we are using the manpage, do we just need to output the
356c535eb59SGordon Tetlow	# name of the manpage?
357c535eb59SGordon Tetlow	if [ -n "$wflag" ]; then
358c535eb59SGordon Tetlow		echo "$manpage"
359c535eb59SGordon Tetlow		ret=0
360c535eb59SGordon Tetlow		return
361c535eb59SGordon Tetlow	fi
362c535eb59SGordon Tetlow
363d433cf9aSBaptiste Daroussin	if [ -n "$use_width" ]; then
364d433cf9aSBaptiste Daroussin		mandoc_args="-O width=${use_width}"
365d433cf9aSBaptiste Daroussin	fi
366451c2becSBaptiste Daroussin	testline="mandoc -Tlint -Wunsupp >/dev/null 2>&1"
367449a792dSBaptiste Daroussin	if [ -n "$tflag" ]; then
368449a792dSBaptiste Daroussin		pipeline="mandoc -Tps $mandoc_args"
369449a792dSBaptiste Daroussin	else
370d433cf9aSBaptiste Daroussin		pipeline="mandoc $mandoc_args | $MANPAGER"
371449a792dSBaptiste Daroussin	fi
372d6096801SBaptiste Daroussin
373*c4368d03SWolfram Schneider	if ! eval "$cattool \"$manpage\" | $testline" ;then
374f17575acSBaptiste Daroussin		if which -s groff; then
375d6096801SBaptiste Daroussin			man_display_page_groff
376d6096801SBaptiste Daroussin		else
377d6096801SBaptiste Daroussin			echo "This manpage needs groff(1) to be rendered" >&2
378d6096801SBaptiste Daroussin			echo "First install groff(1): " >&2
379d6096801SBaptiste Daroussin			echo "pkg install groff " >&2
380d6096801SBaptiste Daroussin			ret=1
381d6096801SBaptiste Daroussin		fi
382d6096801SBaptiste Daroussin		return
383d6096801SBaptiste Daroussin	fi
384d6096801SBaptiste Daroussin
385d6096801SBaptiste Daroussin	if [ $debug -gt 0 ]; then
386*c4368d03SWolfram Schneider		decho "Command: $cattool \"$manpage\" | $pipeline"
387d6096801SBaptiste Daroussin		ret=0
388d6096801SBaptiste Daroussin	else
389*c4368d03SWolfram Schneider		eval "$cattool \"$manpage\" | $pipeline"
390d6096801SBaptiste Daroussin		ret=$?
391d6096801SBaptiste Daroussin	fi
392d6096801SBaptiste Daroussin}
393d6096801SBaptiste Daroussin
394b43edc06SBaptiste Daroussin# Usage: man_display_page_groff
395b43edc06SBaptiste Daroussin# Display the manpage using groff
396d6096801SBaptiste Daroussinman_display_page_groff() {
397d6096801SBaptiste Daroussin	local EQN NROFF PIC TBL TROFF REFER VGRIND
398d6096801SBaptiste Daroussin	local IFS l nroff_dev pipeline preproc_arg tool
399d6096801SBaptiste Daroussin
400c535eb59SGordon Tetlow	# So, we really do need to parse the manpage. First, figure out the
401c535eb59SGordon Tetlow	# device flag (-T) we have to pass to eqn(1) and groff(1). Then,
402c535eb59SGordon Tetlow	# setup the pipeline of commands based on the user's request.
403c535eb59SGordon Tetlow
404deeff310SGordon Tetlow	# If the manpage is from a particular charset, we need to setup nroff
405deeff310SGordon Tetlow	# to properly output for the correct device.
406deeff310SGordon Tetlow	case "${manpage}" in
407deeff310SGordon Tetlow	*.${man_charset}/*)
408c535eb59SGordon Tetlow		# I don't pretend to know this; I'm just copying from the
409c535eb59SGordon Tetlow		# previous version of man(1).
410c535eb59SGordon Tetlow		case "$man_charset" in
411c535eb59SGordon Tetlow		KOI8-R)		nroff_dev="koi8-r" ;;
412c535eb59SGordon Tetlow		ISO8859-1)	nroff_dev="latin1" ;;
413c535eb59SGordon Tetlow		ISO8859-15)	nroff_dev="latin1" ;;
414c535eb59SGordon Tetlow		UTF-8)		nroff_dev="utf8" ;;
415c535eb59SGordon Tetlow		*)		nroff_dev="ascii" ;;
416c535eb59SGordon Tetlow		esac
417c535eb59SGordon Tetlow
418deeff310SGordon Tetlow		NROFF="$NROFF -T$nroff_dev"
419c535eb59SGordon Tetlow		EQN="$EQN -T$nroff_dev"
420c535eb59SGordon Tetlow
421deeff310SGordon Tetlow		# Iff the manpage is from the locale and not just the charset,
422deeff310SGordon Tetlow		# then we need to define the locale string.
423deeff310SGordon Tetlow		case "${manpage}" in
424deeff310SGordon Tetlow		*/${man_lang}_${man_country}.${man_charset}/*)
425deeff310SGordon Tetlow			NROFF="$NROFF -dlocale=$man_lang.$man_charset"
426deeff310SGordon Tetlow			;;
427deeff310SGordon Tetlow		*/${man_lang}.${man_charset}/*)
428deeff310SGordon Tetlow			NROFF="$NROFF -dlocale=$man_lang.$man_charset"
429deeff310SGordon Tetlow			;;
430deeff310SGordon Tetlow		esac
431deeff310SGordon Tetlow
432c535eb59SGordon Tetlow		# Allow language specific calls to override the default
433c535eb59SGordon Tetlow		# set of utilities.
434c535eb59SGordon Tetlow		l=$(echo $man_lang | tr [:lower:] [:upper:])
435b70e2025SRuslan Ermilov		for tool in EQN NROFF PIC TBL TROFF REFER VGRIND; do
436c535eb59SGordon Tetlow			eval "$tool=\${${tool}_$l:-\$$tool}"
437c535eb59SGordon Tetlow		done
438c535eb59SGordon Tetlow		;;
439c535eb59SGordon Tetlow	*)	NROFF="$NROFF -Tascii"
440c535eb59SGordon Tetlow		EQN="$EQN -Tascii"
441c535eb59SGordon Tetlow		;;
442c535eb59SGordon Tetlow	esac
443c535eb59SGordon Tetlow
444a6a3e856SRuslan Ermilov	if [ -z "$MANCOLOR" ]; then
445a6a3e856SRuslan Ermilov		NROFF="$NROFF -P-c"
446a6a3e856SRuslan Ermilov	fi
447a6a3e856SRuslan Ermilov
448a0094449SRuslan Ermilov	if [ -n "${use_width}" ]; then
449a0094449SRuslan Ermilov		NROFF="$NROFF -rLL=${use_width}n -rLT=${use_width}n"
450a0094449SRuslan Ermilov	fi
451a0094449SRuslan Ermilov
452c535eb59SGordon Tetlow	if [ -n "$MANROFFSEQ" ]; then
453c535eb59SGordon Tetlow		set -- -$MANROFFSEQ
454f555b39eSKyle Evans		OPTIND=1
455c535eb59SGordon Tetlow		while getopts 'egprtv' preproc_arg; do
456c535eb59SGordon Tetlow			case "${preproc_arg}" in
457c535eb59SGordon Tetlow			e)	pipeline="$pipeline | $EQN" ;;
458487ac9acSUlrich Spörlein			g)	;; # Ignore for compatibility.
459c535eb59SGordon Tetlow			p)	pipeline="$pipeline | $PIC" ;;
460c535eb59SGordon Tetlow			r)	pipeline="$pipeline | $REFER" ;;
461b70e2025SRuslan Ermilov			t)	pipeline="$pipeline | $TBL" ;;
462c535eb59SGordon Tetlow			v)	pipeline="$pipeline | $VGRIND" ;;
463c535eb59SGordon Tetlow			*)	usage ;;
464c535eb59SGordon Tetlow			esac
465c535eb59SGordon Tetlow		done
466c535eb59SGordon Tetlow		# Strip the leading " | " from the resulting pipeline.
467c535eb59SGordon Tetlow		pipeline="${pipeline#" | "}"
468c535eb59SGordon Tetlow	else
469c535eb59SGordon Tetlow		pipeline="$TBL"
470c535eb59SGordon Tetlow	fi
471c535eb59SGordon Tetlow
472c535eb59SGordon Tetlow	if [ -n "$tflag" ]; then
473c535eb59SGordon Tetlow		pipeline="$pipeline | $TROFF"
474c535eb59SGordon Tetlow	else
475a6a3e856SRuslan Ermilov		pipeline="$pipeline | $NROFF | $MANPAGER"
476c535eb59SGordon Tetlow	fi
477c535eb59SGordon Tetlow
478c535eb59SGordon Tetlow	if [ $debug -gt 0 ]; then
479*c4368d03SWolfram Schneider		decho "Command: $cattool \"$manpage\" | $pipeline"
480c535eb59SGordon Tetlow		ret=0
481c535eb59SGordon Tetlow	else
482*c4368d03SWolfram Schneider		eval "$cattool \"$manpage\" | $pipeline"
483c535eb59SGordon Tetlow		ret=$?
484c535eb59SGordon Tetlow	fi
485c535eb59SGordon Tetlow}
486c535eb59SGordon Tetlow
487c535eb59SGordon Tetlow# Usage: man_find_and_display page
488c535eb59SGordon Tetlow# Search through the manpaths looking for the given page.
489c535eb59SGordon Tetlowman_find_and_display() {
490c535eb59SGordon Tetlow	local found_page locpath p path sect
491c535eb59SGordon Tetlow
4923d9127f1SGordon Tetlow	# Check to see if it's a file. But only if it has a '/' in
4933d9127f1SGordon Tetlow	# the filename.
4943d9127f1SGordon Tetlow	case "$1" in
4953d9127f1SGordon Tetlow	*/*)	if [ -f "$1" -a -r "$1" ]; then
4963d9127f1SGordon Tetlow			decho "Found a usable page, displaying that"
4973d9127f1SGordon Tetlow			unset use_cat
4983d9127f1SGordon Tetlow			manpage="$1"
49957cd9717SGordon Tetlow			setup_cattool $manpage
50057cd9717SGordon Tetlow			if man_check_for_so $manpage $(dirname $manpage); then
50157cd9717SGordon Tetlow				found_page=yes
5023d9127f1SGordon Tetlow				man_display_page
50357cd9717SGordon Tetlow			fi
5043d9127f1SGordon Tetlow			return
5053d9127f1SGordon Tetlow		fi
5063d9127f1SGordon Tetlow		;;
5073d9127f1SGordon Tetlow	esac
5083d9127f1SGordon Tetlow
509c535eb59SGordon Tetlow	IFS=:
510c535eb59SGordon Tetlow	for sect in $MANSECT; do
511c535eb59SGordon Tetlow		decho "Searching section $sect" 2
512c535eb59SGordon Tetlow		for path in $MANPATH; do
513c535eb59SGordon Tetlow			for locpath in $locpaths; do
514c535eb59SGordon Tetlow				p=$path/$locpath
515c535eb59SGordon Tetlow				p=${p%/.} # Rid ourselves of the trailing /.
516c535eb59SGordon Tetlow
517c535eb59SGordon Tetlow				# Check if there is a MACHINE specific manpath.
518c535eb59SGordon Tetlow				if find_file $p $sect $MACHINE "$1"; then
51957cd9717SGordon Tetlow					if man_check_for_so $manpage $p; then
520c535eb59SGordon Tetlow						found_page=yes
521c535eb59SGordon Tetlow						man_display_page
5221d7c660aSGordon Tetlow						if [ -n "$aflag" ]; then
5231d7c660aSGordon Tetlow							continue 2
5241d7c660aSGordon Tetlow						else
525c535eb59SGordon Tetlow							return
526c535eb59SGordon Tetlow						fi
527c535eb59SGordon Tetlow					fi
52857cd9717SGordon Tetlow				fi
529c535eb59SGordon Tetlow
530c535eb59SGordon Tetlow				# Check if there is a MACHINE_ARCH
531c535eb59SGordon Tetlow				# specific manpath.
532c535eb59SGordon Tetlow				if find_file $p $sect $MACHINE_ARCH "$1"; then
53357cd9717SGordon Tetlow					if man_check_for_so $manpage $p; then
534c535eb59SGordon Tetlow						found_page=yes
535c535eb59SGordon Tetlow						man_display_page
5361d7c660aSGordon Tetlow						if [ -n "$aflag" ]; then
5371d7c660aSGordon Tetlow							continue 2
5381d7c660aSGordon Tetlow						else
539c535eb59SGordon Tetlow							return
540c535eb59SGordon Tetlow						fi
541c535eb59SGordon Tetlow					fi
54257cd9717SGordon Tetlow				fi
543c535eb59SGordon Tetlow
544c535eb59SGordon Tetlow				# Check plain old manpath.
545c535eb59SGordon Tetlow				if find_file $p $sect '' "$1"; then
54657cd9717SGordon Tetlow					if man_check_for_so $manpage $p; then
547c535eb59SGordon Tetlow						found_page=yes
548c535eb59SGordon Tetlow						man_display_page
5491d7c660aSGordon Tetlow						if [ -n "$aflag" ]; then
5501d7c660aSGordon Tetlow							continue 2
5511d7c660aSGordon Tetlow						else
552c535eb59SGordon Tetlow							return
553c535eb59SGordon Tetlow						fi
554c535eb59SGordon Tetlow					fi
55557cd9717SGordon Tetlow				fi
556c535eb59SGordon Tetlow			done
557c535eb59SGordon Tetlow		done
558c535eb59SGordon Tetlow	done
559c535eb59SGordon Tetlow	unset IFS
560c535eb59SGordon Tetlow
561c535eb59SGordon Tetlow	# Nothing? Well, we are done then.
562c535eb59SGordon Tetlow	if [ -z "$found_page" ]; then
563c535eb59SGordon Tetlow		echo "No manual entry for $1" >&2
564c535eb59SGordon Tetlow		ret=1
565c535eb59SGordon Tetlow		return
566c535eb59SGordon Tetlow	fi
567c535eb59SGordon Tetlow}
568c535eb59SGordon Tetlow
5698edb6fb5SMohamed Akram# Usage: man_parse_opts "$@"
570c535eb59SGordon Tetlow# Parses commandline options for man.
5718edb6fb5SMohamed Akramman_parse_opts() {
5728edb6fb5SMohamed Akram	local cmd_arg
573c535eb59SGordon Tetlow
574f555b39eSKyle Evans	OPTIND=1
5751594084fSFernando Apesteguía	while getopts 'K:M:P:S:adfhkm:op:tw' cmd_arg; do
576c535eb59SGordon Tetlow		case "${cmd_arg}" in
5771594084fSFernando Apesteguía		K)	Kflag=Kflag
5781594084fSFernando Apesteguía			REGEXP=$OPTARG ;;
579c535eb59SGordon Tetlow		M)	MANPATH=$OPTARG ;;
580a6a3e856SRuslan Ermilov		P)	MANPAGER=$OPTARG ;;
581c535eb59SGordon Tetlow		S)	MANSECT=$OPTARG ;;
582c535eb59SGordon Tetlow		a)	aflag=aflag ;;
583c535eb59SGordon Tetlow		d)	debug=$(( $debug + 1 )) ;;
584c535eb59SGordon Tetlow		f)	fflag=fflag ;;
585c535eb59SGordon Tetlow		h)	man_usage 0 ;;
586c535eb59SGordon Tetlow		k)	kflag=kflag ;;
587c535eb59SGordon Tetlow		m)	mflag=$OPTARG ;;
588c535eb59SGordon Tetlow		o)	oflag=oflag ;;
589c535eb59SGordon Tetlow		p)	MANROFFSEQ=$OPTARG ;;
590c535eb59SGordon Tetlow		t)	tflag=tflag ;;
591c535eb59SGordon Tetlow		w)	wflag=wflag ;;
592c535eb59SGordon Tetlow		*)	man_usage ;;
593c535eb59SGordon Tetlow		esac
594c535eb59SGordon Tetlow	done >&2
595c535eb59SGordon Tetlow
596c535eb59SGordon Tetlow	shift $(( $OPTIND - 1 ))
597c535eb59SGordon Tetlow
598c535eb59SGordon Tetlow	# Check the args for incompatible options.
5991594084fSFernando Apesteguía
6001594084fSFernando Apesteguía	case "${Kflag}${fflag}${kflag}${tflag}${wflag}" in
6011594084fSFernando Apesteguía	Kflagfflag*)	echo "Incompatible options: -K and -f"; man_usage ;;
6021594084fSFernando Apesteguía	Kflag*kflag*)	echo "Incompatible options: -K and -k"; man_usage ;;
6031594084fSFernando Apesteguía	Kflag*tflag)	echo "Incompatible options: -K and -t"; man_usage ;;
604c535eb59SGordon Tetlow	fflagkflag*)	echo "Incompatible options: -f and -k"; man_usage ;;
605c535eb59SGordon Tetlow	fflag*tflag*)	echo "Incompatible options: -f and -t"; man_usage ;;
606c535eb59SGordon Tetlow	fflag*wflag)	echo "Incompatible options: -f and -w"; man_usage ;;
607c535eb59SGordon Tetlow	*kflagtflag*)	echo "Incompatible options: -k and -t"; man_usage ;;
608c535eb59SGordon Tetlow	*kflag*wflag)	echo "Incompatible options: -k and -w"; man_usage ;;
609c535eb59SGordon Tetlow	*tflagwflag)	echo "Incompatible options: -t and -w"; man_usage ;;
610c535eb59SGordon Tetlow	esac
611c535eb59SGordon Tetlow
612c535eb59SGordon Tetlow	# Short circuit for whatis(1) and apropos(1)
613c535eb59SGordon Tetlow	if [ -n "$fflag" ]; then
614c535eb59SGordon Tetlow		do_whatis "$@"
615c535eb59SGordon Tetlow		exit
616c535eb59SGordon Tetlow	fi
617c535eb59SGordon Tetlow
618c535eb59SGordon Tetlow	if [ -n "$kflag" ]; then
619c535eb59SGordon Tetlow		do_apropos "$@"
620c535eb59SGordon Tetlow		exit
621c535eb59SGordon Tetlow	fi
622c535eb59SGordon Tetlow}
623c535eb59SGordon Tetlow
624c535eb59SGordon Tetlow# Usage: man_setup
625c535eb59SGordon Tetlow# Setup various trivial but essential variables.
626c535eb59SGordon Tetlowman_setup() {
627c535eb59SGordon Tetlow	# Setup machine and architecture variables.
628c535eb59SGordon Tetlow	if [ -n "$mflag" ]; then
629c535eb59SGordon Tetlow		MACHINE_ARCH=${mflag%%:*}
630c535eb59SGordon Tetlow		MACHINE=${mflag##*:}
631c535eb59SGordon Tetlow	fi
632c535eb59SGordon Tetlow	if [ -z "$MACHINE_ARCH" ]; then
63382db8a5eSGordon Tetlow		MACHINE_ARCH=$($SYSCTL -n hw.machine_arch)
634c535eb59SGordon Tetlow	fi
635c535eb59SGordon Tetlow	if [ -z "$MACHINE" ]; then
63682db8a5eSGordon Tetlow		MACHINE=$($SYSCTL -n hw.machine)
637c535eb59SGordon Tetlow	fi
638c535eb59SGordon Tetlow	decho "Using architecture: $MACHINE_ARCH:$MACHINE"
639c535eb59SGordon Tetlow
640c535eb59SGordon Tetlow	setup_pager
641c535eb59SGordon Tetlow	build_manpath
6428edb6fb5SMohamed Akram	build_mansect
643c535eb59SGordon Tetlow	man_setup_locale
644a0094449SRuslan Ermilov	man_setup_width
645a0094449SRuslan Ermilov}
646a0094449SRuslan Ermilov
647a0094449SRuslan Ermilov# Usage: man_setup_width
648a0094449SRuslan Ermilov# Set up page width.
649a0094449SRuslan Ermilovman_setup_width() {
650a0094449SRuslan Ermilov	local sizes
651a0094449SRuslan Ermilov
652a0094449SRuslan Ermilov	unset use_width
653a0094449SRuslan Ermilov	case "$MANWIDTH" in
654a0094449SRuslan Ermilov	[0-9]*)
655a0094449SRuslan Ermilov		if [ "$MANWIDTH" -gt 0 2>/dev/null ]; then
656a0094449SRuslan Ermilov			use_width=$MANWIDTH
657a0094449SRuslan Ermilov		fi
658a0094449SRuslan Ermilov		;;
659a0094449SRuslan Ermilov	[Tt][Tt][Yy])
660a0094449SRuslan Ermilov		if { sizes=$($STTY size 0>&3 2>/dev/null); } 3>&1; then
661a0094449SRuslan Ermilov			set -- $sizes
662a0094449SRuslan Ermilov			if [ $2 -gt 80 ]; then
663a0094449SRuslan Ermilov				use_width=$(($2-2))
664a0094449SRuslan Ermilov			fi
665a0094449SRuslan Ermilov		fi
666a0094449SRuslan Ermilov		;;
667a0094449SRuslan Ermilov	esac
668a0094449SRuslan Ermilov	if [ -n "$use_width" ]; then
669a0094449SRuslan Ermilov		decho "Using non-standard page width: ${use_width}"
670a0094449SRuslan Ermilov	else
671a0094449SRuslan Ermilov		decho 'Using standard page width'
672a0094449SRuslan Ermilov	fi
673c535eb59SGordon Tetlow}
674c535eb59SGordon Tetlow
675c535eb59SGordon Tetlow# Usage: man_setup_locale
676c535eb59SGordon Tetlow# Setup necessary locale variables.
677c535eb59SGordon Tetlowman_setup_locale() {
678deeff310SGordon Tetlow	local lang_cc
6799508f8c0SYuri Pankov	local locstr
680deeff310SGordon Tetlow
681deeff310SGordon Tetlow	locpaths='.'
682deeff310SGordon Tetlow	man_charset='US-ASCII'
683deeff310SGordon Tetlow
684c535eb59SGordon Tetlow	# Setup locale information.
685c535eb59SGordon Tetlow	if [ -n "$oflag" ]; then
686deeff310SGordon Tetlow		decho 'Using non-localized manpages'
687deeff310SGordon Tetlow	else
6889508f8c0SYuri Pankov		# Use the locale tool to give us proper locale information
689deeff310SGordon Tetlow		eval $( $LOCALE )
690c535eb59SGordon Tetlow
6919508f8c0SYuri Pankov		if [ -n "$LANG" ]; then
6929508f8c0SYuri Pankov			locstr=$LANG
6939508f8c0SYuri Pankov		else
6949508f8c0SYuri Pankov			locstr=$LC_CTYPE
6959508f8c0SYuri Pankov		fi
6969508f8c0SYuri Pankov
6979508f8c0SYuri Pankov		case "$locstr" in
698deeff310SGordon Tetlow		C)		;;
6999508f8c0SYuri Pankov		C.UTF-8)	;;
700deeff310SGordon Tetlow		POSIX)		;;
701deeff310SGordon Tetlow		[a-z][a-z]_[A-Z][A-Z]\.*)
7029508f8c0SYuri Pankov				lang_cc="${locstr%.*}"
7039508f8c0SYuri Pankov				man_lang="${locstr%_*}"
704deeff310SGordon Tetlow				man_country="${lang_cc#*_}"
7059508f8c0SYuri Pankov				man_charset="${locstr#*.}"
7069508f8c0SYuri Pankov				locpaths="$locstr"
707c535eb59SGordon Tetlow				locpaths="$locpaths:$man_lang.$man_charset"
708c535eb59SGordon Tetlow				if [ "$man_lang" != "en" ]; then
709c535eb59SGordon Tetlow					locpaths="$locpaths:en.$man_charset"
710c535eb59SGordon Tetlow				fi
711c535eb59SGordon Tetlow				locpaths="$locpaths:."
712deeff310SGordon Tetlow				;;
713deeff310SGordon Tetlow		*)		echo 'Unknown locale, assuming C' >&2
714deeff310SGordon Tetlow				;;
715deeff310SGordon Tetlow		esac
716c535eb59SGordon Tetlow	fi
717deeff310SGordon Tetlow
718c535eb59SGordon Tetlow	decho "Using locale paths: $locpaths"
719c535eb59SGordon Tetlow}
720c535eb59SGordon Tetlow
721c535eb59SGordon Tetlow# Usage: man_usage [exitcode]
722c535eb59SGordon Tetlow# Display usage for the man utility.
723c535eb59SGordon Tetlowman_usage() {
724c535eb59SGordon Tetlow	echo 'Usage:'
7251594084fSFernando Apesteguía	echo ' man [-adho] [-t | -w] [-K regexp] [-M manpath] [-P pager] [-S mansect]'
726c535eb59SGordon Tetlow	echo '     [-m arch[:machine]] [-p [eprtv]] [mansect] page [...]'
727c535eb59SGordon Tetlow	echo ' man -f page [...] -- Emulates whatis(1)'
728c535eb59SGordon Tetlow	echo ' man -k page [...] -- Emulates apropos(1)'
729c535eb59SGordon Tetlow
730c535eb59SGordon Tetlow	# When exit'ing with -h, it's not an error.
731c535eb59SGordon Tetlow	exit ${1:-1}
732c535eb59SGordon Tetlow}
733c535eb59SGordon Tetlow
734c535eb59SGordon Tetlow# Usage: parse_configs
735c535eb59SGordon Tetlow# Reads the end-user adjustable config files.
736c535eb59SGordon Tetlowparse_configs() {
737c535eb59SGordon Tetlow	local IFS file files
738c535eb59SGordon Tetlow
739c535eb59SGordon Tetlow	if [ -n "$parsed_configs" ]; then
740c535eb59SGordon Tetlow		return
741c535eb59SGordon Tetlow	fi
742c535eb59SGordon Tetlow
743c535eb59SGordon Tetlow	unset IFS
744c535eb59SGordon Tetlow
745c535eb59SGordon Tetlow	# Read the global config first in case the user wants
746c535eb59SGordon Tetlow	# to override config_local.
747c535eb59SGordon Tetlow	if [ -r "$config_global" ]; then
748c535eb59SGordon Tetlow		parse_file "$config_global"
749c535eb59SGordon Tetlow	fi
750c535eb59SGordon Tetlow
751c535eb59SGordon Tetlow	# Glob the list of files to parse.
752c535eb59SGordon Tetlow	set +f
753c535eb59SGordon Tetlow	files=$(echo $config_local)
754c535eb59SGordon Tetlow	set -f
755c535eb59SGordon Tetlow
756c535eb59SGordon Tetlow	for file in $files; do
757c535eb59SGordon Tetlow		if [ -r "$file" ]; then
758c535eb59SGordon Tetlow			parse_file "$file"
759c535eb59SGordon Tetlow		fi
760c535eb59SGordon Tetlow	done
761c535eb59SGordon Tetlow
762c535eb59SGordon Tetlow	parsed_configs='yes'
763c535eb59SGordon Tetlow}
764c535eb59SGordon Tetlow
765c535eb59SGordon Tetlow# Usage: parse_file file
766c535eb59SGordon Tetlow# Reads the specified config files.
767c535eb59SGordon Tetlowparse_file() {
768c535eb59SGordon Tetlow	local file line tstr var
769c535eb59SGordon Tetlow
770c535eb59SGordon Tetlow	file="$1"
771c535eb59SGordon Tetlow	decho "Parsing config file: $file"
772c535eb59SGordon Tetlow	while read line; do
773c535eb59SGordon Tetlow		decho "  $line" 2
774c535eb59SGordon Tetlow		case "$line" in
775c535eb59SGordon Tetlow		\#*)		decho "    Comment" 3
776c535eb59SGordon Tetlow				;;
777c535eb59SGordon Tetlow		MANPATH*)	decho "    MANPATH" 3
778c535eb59SGordon Tetlow				trim "${line#MANPATH}"
779c535eb59SGordon Tetlow				add_to_manpath "$tstr"
780c535eb59SGordon Tetlow				;;
781c535eb59SGordon Tetlow		MANLOCALE*)	decho "    MANLOCALE" 3
782c535eb59SGordon Tetlow				trim "${line#MANLOCALE}"
783c535eb59SGordon Tetlow				manlocales="$manlocales:$tstr"
784c535eb59SGordon Tetlow				;;
785c535eb59SGordon Tetlow		MANCONFIG*)	decho "    MANCONFIG" 3
786a1528c80SRuslan Ermilov				trim "${line#MANCONFIG}"
787c535eb59SGordon Tetlow				config_local="$tstr"
788c535eb59SGordon Tetlow				;;
7898edb6fb5SMohamed Akram		MANSECT*)	decho "    MANSECT" 3
7908edb6fb5SMohamed Akram				trim "${line#MANSECT}"
7918edb6fb5SMohamed Akram				mansect="$mansect:$tstr"
7928edb6fb5SMohamed Akram				;;
793c535eb59SGordon Tetlow		# Set variables in the form of FOO_BAR
794c535eb59SGordon Tetlow		*_*[\ \	]*)	var="${line%%[\ \	]*}"
795c535eb59SGordon Tetlow				trim "${line#$var}"
796c535eb59SGordon Tetlow				eval "$var=\"$tstr\""
797c535eb59SGordon Tetlow				decho "    Parsed $var" 3
798c535eb59SGordon Tetlow				;;
799c535eb59SGordon Tetlow		esac
800c535eb59SGordon Tetlow	done < "$file"
801c535eb59SGordon Tetlow}
802c535eb59SGordon Tetlow
803c535eb59SGordon Tetlow# Usage: search_path
804c535eb59SGordon Tetlow# Traverse $PATH looking for manpaths.
805c535eb59SGordon Tetlowsearch_path() {
806c535eb59SGordon Tetlow	local IFS p path
807c535eb59SGordon Tetlow
808c535eb59SGordon Tetlow	decho "Searching PATH for man directories"
809c535eb59SGordon Tetlow
810c535eb59SGordon Tetlow	IFS=:
811c535eb59SGordon Tetlow	for path in $PATH; do
812971c1c42STijl Coosemans		if add_to_manpath "$path/man"; then
813c535eb59SGordon Tetlow			:
814c535eb59SGordon Tetlow		elif add_to_manpath "$path/MAN"; then
815c535eb59SGordon Tetlow			:
816c535eb59SGordon Tetlow		else
817c535eb59SGordon Tetlow			case "$path" in
818971c1c42STijl Coosemans			*/bin)	p="${path%/bin}/share/man"
819c535eb59SGordon Tetlow				add_to_manpath "$p"
820971c1c42STijl Coosemans				p="${path%/bin}/man"
82161d5f2d1SBaptiste Daroussin				add_to_manpath "$p"
822c535eb59SGordon Tetlow				;;
823c535eb59SGordon Tetlow			esac
824c535eb59SGordon Tetlow		fi
825c535eb59SGordon Tetlow	done
826c535eb59SGordon Tetlow	unset IFS
827c535eb59SGordon Tetlow
828c535eb59SGordon Tetlow	if [ -z "$manpath" ]; then
829c535eb59SGordon Tetlow		decho '  Unable to find any manpaths, using default'
830c535eb59SGordon Tetlow		manpath=$man_default_path
831c535eb59SGordon Tetlow	fi
832c535eb59SGordon Tetlow}
833c535eb59SGordon Tetlow
834c535eb59SGordon Tetlow# Usage: search_whatis cmd [arglist]
835c535eb59SGordon Tetlow# Do the heavy lifting for apropos/whatis
836c535eb59SGordon Tetlowsearch_whatis() {
837c535eb59SGordon Tetlow	local IFS bad cmd f good key keywords loc opt out path rval wlist
838c535eb59SGordon Tetlow
839c535eb59SGordon Tetlow	cmd="$1"
840c535eb59SGordon Tetlow	shift
841c535eb59SGordon Tetlow
842c535eb59SGordon Tetlow	whatis_parse_args "$@"
843c535eb59SGordon Tetlow
844c535eb59SGordon Tetlow	build_manpath
845c535eb59SGordon Tetlow	build_manlocales
846c535eb59SGordon Tetlow	setup_pager
847c535eb59SGordon Tetlow
848c535eb59SGordon Tetlow	if [ "$cmd" = "whatis" ]; then
849c535eb59SGordon Tetlow		opt="-w"
850c535eb59SGordon Tetlow	fi
851c535eb59SGordon Tetlow
852c535eb59SGordon Tetlow	f='whatis'
853c535eb59SGordon Tetlow
854c535eb59SGordon Tetlow	IFS=:
855c535eb59SGordon Tetlow	for path in $MANPATH; do
856c535eb59SGordon Tetlow		if [ \! -d "$path" ]; then
857c535eb59SGordon Tetlow			decho "Skipping non-existent path: $path" 2
858c535eb59SGordon Tetlow			continue
859c535eb59SGordon Tetlow		fi
860c535eb59SGordon Tetlow
861c535eb59SGordon Tetlow		if [ -f "$path/$f" -a -r "$path/$f" ]; then
862c535eb59SGordon Tetlow			decho "Found whatis: $path/$f"
863c535eb59SGordon Tetlow			wlist="$wlist $path/$f"
864c535eb59SGordon Tetlow		fi
865c535eb59SGordon Tetlow
866c535eb59SGordon Tetlow		for loc in $MANLOCALES; do
867c535eb59SGordon Tetlow			if [ -f "$path/$loc/$f" -a -r "$path/$loc/$f" ]; then
868c535eb59SGordon Tetlow				decho "Found whatis: $path/$loc/$f"
869c535eb59SGordon Tetlow				wlist="$wlist $path/$loc/$f"
870c535eb59SGordon Tetlow			fi
871c535eb59SGordon Tetlow		done
872c535eb59SGordon Tetlow	done
873c535eb59SGordon Tetlow	unset IFS
874c535eb59SGordon Tetlow
875c535eb59SGordon Tetlow	if [ -z "$wlist" ]; then
876c535eb59SGordon Tetlow		echo "$cmd: no whatis databases in $MANPATH" >&2
877c535eb59SGordon Tetlow		exit 1
878c535eb59SGordon Tetlow	fi
879c535eb59SGordon Tetlow
880c535eb59SGordon Tetlow	rval=0
881c535eb59SGordon Tetlow	for key in $keywords; do
882c535eb59SGordon Tetlow		out=$(grep -Ehi $opt -- "$key" $wlist)
883c535eb59SGordon Tetlow		if [ -n "$out" ]; then
884c535eb59SGordon Tetlow			good="$good\\n$out"
885c535eb59SGordon Tetlow		else
886c535eb59SGordon Tetlow			bad="$bad\\n$key: nothing appropriate"
887c535eb59SGordon Tetlow			rval=1
888c535eb59SGordon Tetlow		fi
889c535eb59SGordon Tetlow	done
890c535eb59SGordon Tetlow
891c535eb59SGordon Tetlow	# Strip leading carriage return.
892c535eb59SGordon Tetlow	good=${good#\\n}
893c535eb59SGordon Tetlow	bad=${bad#\\n}
894c535eb59SGordon Tetlow
895c535eb59SGordon Tetlow	if [ -n "$good" ]; then
896a6a3e856SRuslan Ermilov		echo -e "$good" | $MANPAGER
897c535eb59SGordon Tetlow	fi
898c535eb59SGordon Tetlow
899c535eb59SGordon Tetlow	if [ -n "$bad" ]; then
90000e05e69SGordon Tetlow		echo -e "$bad" >&2
901c535eb59SGordon Tetlow	fi
902c535eb59SGordon Tetlow
903c535eb59SGordon Tetlow	exit $rval
904c535eb59SGordon Tetlow}
905c535eb59SGordon Tetlow
90657cd9717SGordon Tetlow# Usage: setup_cattool page
90757cd9717SGordon Tetlow# Finds an appropriate decompressor based on extension
90857cd9717SGordon Tetlowsetup_cattool() {
90957cd9717SGordon Tetlow	case "$1" in
91057cd9717SGordon Tetlow	*.bz)	cattool='/usr/bin/bzcat' ;;
91157cd9717SGordon Tetlow	*.bz2)	cattool='/usr/bin/bzcat' ;;
912b35ea9baSMohamed Akram	*.gz)	cattool='/usr/bin/gzcat' ;;
91357cd9717SGordon Tetlow	*.lzma)	cattool='/usr/bin/lzcat' ;;
91457cd9717SGordon Tetlow	*.xz)	cattool='/usr/bin/xzcat' ;;
915c8abb673SCameron Katri	*.zst)	cattool='/usr/bin/zstdcat' ;;
91657cd9717SGordon Tetlow	*)	cattool='/usr/bin/zcat -f' ;;
91757cd9717SGordon Tetlow	esac
91857cd9717SGordon Tetlow}
91957cd9717SGordon Tetlow
920c535eb59SGordon Tetlow# Usage: setup_pager
921a6a3e856SRuslan Ermilov# Correctly sets $MANPAGER
922c535eb59SGordon Tetlowsetup_pager() {
923c535eb59SGordon Tetlow	# Setup pager.
924a6a3e856SRuslan Ermilov	if [ -z "$MANPAGER" ]; then
925a6a3e856SRuslan Ermilov		if [ -n "$MANCOLOR" ]; then
926a6a3e856SRuslan Ermilov			MANPAGER="less -sR"
927a6a3e856SRuslan Ermilov		else
928a6a3e856SRuslan Ermilov			if [ -n "$PAGER" ]; then
929a6a3e856SRuslan Ermilov				MANPAGER="$PAGER"
930a6a3e856SRuslan Ermilov			else
93147cc9ee1SAlan Somers				MANPAGER="less -s"
932c535eb59SGordon Tetlow			fi
933a6a3e856SRuslan Ermilov		fi
934a6a3e856SRuslan Ermilov	fi
935a6a3e856SRuslan Ermilov	decho "Using pager: $MANPAGER"
936c535eb59SGordon Tetlow}
937c535eb59SGordon Tetlow
938c535eb59SGordon Tetlow# Usage: trim string
939c535eb59SGordon Tetlow# Trims whitespace from beginning and end of a variable
940c535eb59SGordon Tetlowtrim() {
941c535eb59SGordon Tetlow	tstr=$1
942c535eb59SGordon Tetlow	while true; do
943c535eb59SGordon Tetlow		case "$tstr" in
944c535eb59SGordon Tetlow		[\ \	]*)	tstr="${tstr##[\ \	]}" ;;
945c535eb59SGordon Tetlow		*[\ \	])	tstr="${tstr%%[\ \	]}" ;;
946c535eb59SGordon Tetlow		*)		break ;;
947c535eb59SGordon Tetlow		esac
948c535eb59SGordon Tetlow	done
949c535eb59SGordon Tetlow}
950c535eb59SGordon Tetlow
951c535eb59SGordon Tetlow# Usage: whatis_parse_args "$@"
952c535eb59SGordon Tetlow# Parse commandline args for whatis and apropos.
953c535eb59SGordon Tetlowwhatis_parse_args() {
954c535eb59SGordon Tetlow	local cmd_arg
955f555b39eSKyle Evans	OPTIND=1
956c535eb59SGordon Tetlow	while getopts 'd' cmd_arg; do
957c535eb59SGordon Tetlow		case "${cmd_arg}" in
958c535eb59SGordon Tetlow		d)	debug=$(( $debug + 1 )) ;;
959c535eb59SGordon Tetlow		*)	whatis_usage ;;
960c535eb59SGordon Tetlow		esac
961c535eb59SGordon Tetlow	done >&2
962c535eb59SGordon Tetlow
963c535eb59SGordon Tetlow	shift $(( $OPTIND - 1 ))
964c535eb59SGordon Tetlow
965c535eb59SGordon Tetlow	keywords="$*"
966c535eb59SGordon Tetlow}
967c535eb59SGordon Tetlow
968c535eb59SGordon Tetlow# Usage: whatis_usage
969c535eb59SGordon Tetlow# Display usage for the whatis/apropos utility.
970c535eb59SGordon Tetlowwhatis_usage() {
971c535eb59SGordon Tetlow	echo "usage: $cmd [-d] keyword [...]"
972c535eb59SGordon Tetlow	exit 1
973c535eb59SGordon Tetlow}
974c535eb59SGordon Tetlow
975c535eb59SGordon Tetlow
976c535eb59SGordon Tetlow
977c535eb59SGordon Tetlow# Supported commands
978c535eb59SGordon Tetlowdo_apropos() {
97924ef7420SBaptiste Daroussin	[ $(stat -f %i /usr/bin/man) -ne $(stat -f %i /usr/bin/apropos) ] && \
980772246efSBaptiste Daroussin		exec apropos "$@"
981c535eb59SGordon Tetlow	search_whatis apropos "$@"
982c535eb59SGordon Tetlow}
983c535eb59SGordon Tetlow
9841594084fSFernando Apesteguía# Usage: do_full_search reg_exp
9851594084fSFernando Apesteguía# Do a full search of the regular expression passed
9861594084fSFernando Apesteguía# as parameter in all man pages
9871594084fSFernando Apesteguíado_full_search() {
9881594084fSFernando Apesteguía	local gflags re
9891594084fSFernando Apesteguía	re=${1}
9901594084fSFernando Apesteguía
9911594084fSFernando Apesteguía	# Build grep(1) flags
9921594084fSFernando Apesteguía	gflags="-H"
9931594084fSFernando Apesteguía
9941594084fSFernando Apesteguía	# wflag implies -l for grep(1)
9951594084fSFernando Apesteguía	if [ -n "$wflag" ]; then
9961594084fSFernando Apesteguía		gflags="${gflags} -l"
9971594084fSFernando Apesteguía	fi
9981594084fSFernando Apesteguía
9991594084fSFernando Apesteguía	gflags="${gflags} --label"
10001594084fSFernando Apesteguía
10011594084fSFernando Apesteguía	set +f
10028a5c836bSEd Maste	for mpath in $(echo "${MANPATH}" | tr : '[:blank:]'); do
10038a5c836bSEd Maste		for section in $(echo "${MANSECT}" | tr : '[:blank:]'); do
10041594084fSFernando Apesteguía			for manfile in ${mpath}/man${section}/*.${section}*; do
10051594084fSFernando Apesteguía				mandoc "${manfile}" 2>/dev/null |
10068a5c836bSEd Maste					grep -E ${gflags} "${manfile}" -e "${re}"
10071594084fSFernando Apesteguía			done
10081594084fSFernando Apesteguía		done
10091594084fSFernando Apesteguía	done
10101594084fSFernando Apesteguía	set -f
10111594084fSFernando Apesteguía}
10121594084fSFernando Apesteguía
1013c535eb59SGordon Tetlowdo_man() {
10148edb6fb5SMohamed Akram	local IFS
10158edb6fb5SMohamed Akram
10168edb6fb5SMohamed Akram	man_parse_opts "$@"
10178edb6fb5SMohamed Akram	man_setup
10188edb6fb5SMohamed Akram
10198edb6fb5SMohamed Akram	shift $(( $OPTIND - 1 ))
10208edb6fb5SMohamed Akram	IFS=:
10218edb6fb5SMohamed Akram	for sect in $MANSECT; do
10228edb6fb5SMohamed Akram		if [ "$sect" = "$1" ]; then
10238edb6fb5SMohamed Akram			decho "Detected manual section as first arg: $1"
10248edb6fb5SMohamed Akram			MANSECT="$1"
10258edb6fb5SMohamed Akram			shift
10268edb6fb5SMohamed Akram			break
10278edb6fb5SMohamed Akram		fi
10288edb6fb5SMohamed Akram	done
10298edb6fb5SMohamed Akram	unset IFS
10308edb6fb5SMohamed Akram	pages="$*"
10318edb6fb5SMohamed Akram
10321594084fSFernando Apesteguía	if [ -z "$pages" -a -z "${Kflag}" ]; then
1033c535eb59SGordon Tetlow		echo 'What manual page do you want?' >&2
1034c535eb59SGordon Tetlow		exit 1
1035c535eb59SGordon Tetlow	fi
1036c535eb59SGordon Tetlow
10371594084fSFernando Apesteguía	if [ ! -z "${Kflag}" ]; then
10381594084fSFernando Apesteguía		# Short circuit because -K flag does a sufficiently
10391594084fSFernando Apesteguía		# different thing like not showing the man page at all
10401594084fSFernando Apesteguía		do_full_search "${REGEXP}"
10411594084fSFernando Apesteguía	fi
10421594084fSFernando Apesteguía
1043c535eb59SGordon Tetlow	for page in $pages; do
1044c535eb59SGordon Tetlow		decho "Searching for $page"
1045c535eb59SGordon Tetlow		man_find_and_display "$page"
1046c535eb59SGordon Tetlow	done
1047c535eb59SGordon Tetlow
1048c535eb59SGordon Tetlow	exit ${ret:-0}
1049c535eb59SGordon Tetlow}
1050c535eb59SGordon Tetlow
1051c535eb59SGordon Tetlowdo_manpath() {
1052c535eb59SGordon Tetlow	manpath_parse_args "$@"
1053c535eb59SGordon Tetlow	if [ -z "$qflag" ]; then
1054c535eb59SGordon Tetlow		manpath_warnings
1055c535eb59SGordon Tetlow	fi
1056c535eb59SGordon Tetlow	if [ -n "$Lflag" ]; then
1057c535eb59SGordon Tetlow		build_manlocales
1058c535eb59SGordon Tetlow		echo $MANLOCALES
1059c535eb59SGordon Tetlow	else
1060c535eb59SGordon Tetlow		build_manpath
1061c535eb59SGordon Tetlow		echo $MANPATH
1062c535eb59SGordon Tetlow	fi
1063c535eb59SGordon Tetlow	exit 0
1064c535eb59SGordon Tetlow}
1065c535eb59SGordon Tetlow
1066c535eb59SGordon Tetlowdo_whatis() {
106724ef7420SBaptiste Daroussin	[ $(stat -f %i /usr/bin/man) -ne $(stat -f %i /usr/bin/whatis) ] && \
1068772246efSBaptiste Daroussin		exec whatis "$@"
1069c535eb59SGordon Tetlow	search_whatis whatis "$@"
1070c535eb59SGordon Tetlow}
1071c535eb59SGordon Tetlow
1072aeea395eSUlrich Spörlein# User's PATH setting decides on the groff-suite to pick up.
1073aeea395eSUlrich SpörleinEQN=eqn
1074035f7c9aSWolfram SchneiderNROFF='groff -S -P-h -Wall -mtty-char -mandoc'
1075aeea395eSUlrich SpörleinPIC=pic
1076aeea395eSUlrich SpörleinREFER=refer
1077aeea395eSUlrich SpörleinTBL=tbl
1078035f7c9aSWolfram SchneiderTROFF='groff -S -mandoc'
1079aeea395eSUlrich SpörleinVGRIND=vgrind
1080aeea395eSUlrich Spörlein
1081deeff310SGordon TetlowLOCALE=/usr/bin/locale
1082a0094449SRuslan ErmilovSTTY=/bin/stty
108382db8a5eSGordon TetlowSYSCTL=/sbin/sysctl
1084c535eb59SGordon Tetlow
1085c535eb59SGordon Tetlowdebug=0
108673577bf0SRyan Moellerman_default_sections='1:8:2:3:3lua:n:4:5:6:7:9:l'
1087971c1c42STijl Coosemansman_default_path='/usr/share/man:/usr/share/openssl/man:/usr/local/share/man:/usr/local/man'
108857cd9717SGordon Tetlowcattool='/usr/bin/zcat -f'
1089c535eb59SGordon Tetlow
1090c535eb59SGordon Tetlowconfig_global='/etc/man.conf'
1091c535eb59SGordon Tetlow
1092c535eb59SGordon Tetlow# This can be overridden via a setting in /etc/man.conf.
1093c535eb59SGordon Tetlowconfig_local='/usr/local/etc/man.d/*.conf'
1094c535eb59SGordon Tetlow
1095c535eb59SGordon Tetlow# Set noglobbing for now. I don't want spurious globbing.
1096c535eb59SGordon Tetlowset -f
1097c535eb59SGordon Tetlow
1098c535eb59SGordon Tetlowcase "$0" in
1099c535eb59SGordon Tetlow*apropos)	do_apropos "$@" ;;
1100c535eb59SGordon Tetlow*manpath)	do_manpath "$@" ;;
1101c535eb59SGordon Tetlow*whatis)	do_whatis "$@" ;;
1102c535eb59SGordon Tetlow*)		do_man "$@" ;;
1103c535eb59SGordon Tetlowesac
1104