xref: /illumos-gate/usr/src/cmd/sgs/rtld/common/analyze.c (revision 131f4ede)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  *	Copyright (c) 1988 AT&T
24  *	  All Rights Reserved
25  *
26  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
27  * Use is subject to license terms.
28  */
29 #pragma ident	"%Z%%M%	%I%	%E% SMI"
30 
31 #include	"_synonyms.h"
32 
33 #include	<string.h>
34 #include	<stdio.h>
35 #include	<unistd.h>
36 #include	<sys/stat.h>
37 #include	<sys/mman.h>
38 #include	<fcntl.h>
39 #include	<limits.h>
40 #include	<dlfcn.h>
41 #include	<errno.h>
42 #include	<link.h>
43 #include	<debug.h>
44 #include	<conv.h>
45 #include	"_rtld.h"
46 #include	"_audit.h"
47 #include	"_elf.h"
48 #include	"msg.h"
49 
50 static Fct *	vector[] = {
51 	&elf_fct,
52 #ifdef A_OUT
53 	&aout_fct,
54 #endif
55 	0
56 };
57 
58 /*
59  * If a load filter flag is in effect, and this object is a filter, trigger the
60  * loading of all its filtees.  The load filter flag is in effect when creating
61  * configuration files, or when under the control of ldd(1), or the LD_LOADFLTR
62  * environment variable is set, or this object was built with the -zloadfltr
63  * flag.  Otherwise, filtee loading is deferred until triggered by a relocation.
64  */
65 static void
66 load_filtees(Rt_map *lmp)
67 {
68 	if ((FLAGS1(lmp) & MSK_RT_FILTER) &&
69 	    ((FLAGS(lmp) & FLG_RT_LOADFLTR) ||
70 	    (LIST(lmp)->lm_tflags & LML_TFLG_LOADFLTR))) {
71 		Dyninfo *	dip =  DYNINFO(lmp);
72 		uint_t		cnt, max = DYNINFOCNT(lmp);
73 		Slookup		sl;
74 
75 		sl.sl_name = 0;
76 		sl.sl_hash = 0;
77 		sl.sl_imap = sl.sl_cmap = lmp;
78 
79 		for (cnt = 0; cnt < max; cnt++, dip++) {
80 			if (((dip->di_flags & MSK_DI_FILTER) == 0) ||
81 			    ((dip->di_flags & FLG_DI_AUXFLTR) &&
82 			    (rtld_flags & RT_FL_NOAUXFLTR)))
83 				continue;
84 			(void) elf_lookup_filtee(&sl, 0, 0, cnt);
85 		}
86 	}
87 }
88 
89 /*
90  * Analyze one or more link-maps of a link map control list.  This routine is
91  * called at startup to continue the processing of the main executable.  It is
92  * also called each time a new set of objects are loaded, ie. from filters,
93  * lazy-loaded objects, or dlopen().
94  *
95  * In each instance we traverse the link-map control list starting with the
96  * initial object.  As dependencies are analyzed they are added to the link-map
97  * control list.  Thus the list grows as we traverse it - this results in the
98  * breadth first ordering of all needed objects.
99  */
100 int
101 analyze_lmc(Lm_list *lml, Aliste nlmco, Rt_map *nlmp)
102 {
103 	Rt_map	*lmp = nlmp;
104 	Lm_cntl	*nlmc;
105 	int	ret = 1;
106 
107 	/*
108 	 * If this link-map control list is being analyzed, return.  The object
109 	 * that has just been added will be picked up by the existing analysis
110 	 * thread.  Note, this is only really meaningful during process init-
111 	 * ialization, as objects are added to the main link-map control list.
112 	 * Following this initialization, each family of objects that are loaded
113 	 * are added to a new link-map control list.
114 	 */
115 	/* LINTED */
116 	nlmc = (Lm_cntl *)((char *)lml->lm_lists + nlmco);
117 	if (nlmc->lc_flags & LMC_FLG_ANALYZING)
118 		return (1);
119 
120 	/*
121 	 * If this object doesn't belong to the present link-map control list
122 	 * then it must already have been analyzed, or it is in the process of
123 	 * being analyzed prior to us recursing into this analysis.  In either
124 	 * case, ignore the object as it's already being taken care of.
125 	 */
126 	if (nlmco != CNTL(nlmp))
127 		return (1);
128 
129 	nlmc->lc_flags |= LMC_FLG_ANALYZING;
130 
131 	for (; lmp; lmp = (Rt_map *)NEXT(lmp)) {
132 		if (FLAGS(lmp) &
133 		    (FLG_RT_ANALZING | FLG_RT_ANALYZED | FLG_RT_DELETE))
134 			continue;
135 
136 		/*
137 		 * Indicate that analyzing is under way.
138 		 */
139 		FLAGS(lmp) |= FLG_RT_ANALZING;
140 
141 		/*
142 		 * If this link map represents a relocatable object, then we
143 		 * need to finish the link-editing of the object at this point.
144 		 */
145 		if (FLAGS(lmp) & FLG_RT_OBJECT) {
146 			if (elf_obj_fini(lml, lmp) == 0) {
147 				if (lml->lm_flags & LML_FLG_TRC_ENABLE)
148 					continue;
149 				ret = 0;
150 				break;
151 			}
152 		}
153 
154 		DBG_CALL(Dbg_file_analyze(lmp));
155 
156 		/*
157 		 * Establish any dependencies this object requires.
158 		 */
159 		if (LM_NEEDED(lmp)(lml, nlmco, lmp) == 0) {
160 			if (lml->lm_flags & LML_FLG_TRC_ENABLE)
161 				continue;
162 			ret = 0;
163 			break;
164 		}
165 
166 		FLAGS(lmp) &= ~FLG_RT_ANALZING;
167 		FLAGS(lmp) |= FLG_RT_ANALYZED;
168 
169 		/*
170 		 * If we're building a configuration file, determine if this
171 		 * object is a filter and if so load its filtees.  This
172 		 * traversal is only necessary for crle(1), as typical use of
173 		 * an object will load filters as part of relocation processing.
174 		 */
175 		if (MODE(nlmp) & RTLD_CONFGEN)
176 			load_filtees(lmp);
177 
178 		/*
179 		 * If an interposer has been added, it will have been inserted
180 		 * in the link-map before the link we're presently analyzing.
181 		 * Break out of this analysis loop and return to the head of
182 		 * the link-map control list to analyze the interposer.  Note
183 		 * that this rescan preserves the breadth first loading of
184 		 * dependencies.
185 		 */
186 		/* LINTED */
187 		nlmc = (Lm_cntl *)((char *)lml->lm_lists + nlmco);
188 		if (nlmc->lc_flags & LMC_FLG_REANALYZE) {
189 			nlmc->lc_flags &= ~LMC_FLG_REANALYZE;
190 			lmp = nlmc->lc_head;
191 		}
192 	}
193 
194 	/* LINTED */
195 	nlmc = (Lm_cntl *)((char *)lml->lm_lists + nlmco);
196 	nlmc->lc_flags &= ~LMC_FLG_ANALYZING;
197 
198 	return (ret);
199 }
200 
201 /*
202  * Copy relocation test.  If the symbol definition is within .bss, then it's
203  * zero filled, and as the destination is within .bss, we can skip copying
204  * zero's to zero's.  However, if the destination object has a MOVE table, it's
205  * .bss might contain non-zero data, in which case copy it regardless.
206  */
207 static int
208 copy_zerobits(Rt_map *dlmp, Sym *dsym)
209 {
210 	if ((FLAGS(dlmp) & FLG_RT_MOVE) == 0) {
211 		Mmap	*mmaps;
212 		caddr_t	daddr = (caddr_t)dsym->st_value;
213 
214 		if ((FLAGS(dlmp) & FLG_RT_FIXED) == 0)
215 			daddr += ADDR(dlmp);
216 
217 		for (mmaps = MMAPS(dlmp); mmaps->m_vaddr; mmaps++) {
218 			if ((mmaps->m_fsize != mmaps->m_msize) &&
219 			    (daddr >= (mmaps->m_vaddr + mmaps->m_fsize)) &&
220 			    (daddr < (mmaps->m_vaddr + mmaps->m_msize)))
221 				return (1);
222 		}
223 	}
224 	return (0);
225 }
226 
227 /*
228  * Relocate an individual object.
229  */
230 static int
231 relocate_so(Lm_list *lml, Rt_map *lmp, int *relocated, int now)
232 {
233 	/*
234 	 * If we're running under ldd(1), and haven't been asked to trace any
235 	 * warnings, skip any actual relocation processing.
236 	 */
237 	if (((lml->lm_flags & LML_FLG_TRC_ENABLE) == 0) ||
238 	    (lml->lm_flags & LML_FLG_TRC_WARN)) {
239 
240 		if (relocated)
241 			(*relocated)++;
242 
243 		if ((LM_RELOC(lmp)(lmp, now) == 0) &&
244 		    ((lml->lm_flags & LML_FLG_TRC_ENABLE) == 0))
245 			return (0);
246 	}
247 	return (1);
248 }
249 
250 /*
251  * Relocate the objects on a link-map control list.
252  */
253 static int
254 _relocate_lmc(Lm_list *lml, Rt_map *nlmp, int *relocated)
255 {
256 	Rt_map	*lmp;
257 
258 	for (lmp = nlmp; lmp; lmp = (Rt_map *)NEXT(lmp)) {
259 		/*
260 		 * If this object has already been relocated, we're done.  If
261 		 * this object is being deleted, skip it, there's probably a
262 		 * relocation error somewhere that's causing this deletion.
263 		 */
264 		if (FLAGS(lmp) &
265 		    (FLG_RT_RELOCING | FLG_RT_RELOCED | FLG_RT_DELETE))
266 			continue;
267 
268 		/*
269 		 * Indicate that relocation processing is under way.
270 		 */
271 		FLAGS(lmp) |= FLG_RT_RELOCING;
272 
273 		/*
274 		 * Relocate the object.
275 		 */
276 		if (relocate_so(lml, lmp, relocated, 0) == 0)
277 			return (0);
278 
279 		/*
280 		 * Indicate that the objects relocation is complete.
281 		 */
282 		FLAGS(lmp) &= ~FLG_RT_RELOCING;
283 		FLAGS(lmp) |= FLG_RT_RELOCED;
284 
285 		/*
286 		 * Mark this object's init is available for harvesting.  Under
287 		 * ldd(1) this marking is necessary for -i (tsort) gathering.
288 		 */
289 		lml->lm_init++;
290 		lml->lm_flags |= LML_FLG_OBJADDED;
291 
292 		/*
293 		 * Process any move data (not necessary under ldd()).
294 		 */
295 		if ((FLAGS(lmp) & FLG_RT_MOVE) &&
296 		    ((lml->lm_flags & LML_FLG_TRC_ENABLE) == 0))
297 			move_data(lmp);
298 
299 		/*
300 		 * Determine if this object is a filter, and if a load filter
301 		 * flag is in effect, trigger the loading of all its filtees.
302 		 */
303 		load_filtees(lmp);
304 	}
305 
306 	/*
307 	 * Perform special copy relocations.  These are only meaningful for
308 	 * dynamic executables (fixed and head of their link-map list).  If
309 	 * this ever has to change then the infrastructure of COPY() has to
310 	 * change as presently this element is used to capture both receiver
311 	 * and supplier of copy data.
312 	 */
313 	if ((FLAGS(nlmp) & FLG_RT_FIXED) && (nlmp == LIST(nlmp)->lm_head) &&
314 	    (((lml->lm_flags & LML_FLG_TRC_ENABLE) == 0) ||
315 	    (lml->lm_flags & LML_FLG_TRC_WARN))) {
316 		Rt_map **	lmpp;
317 		Aliste		off1;
318 		Word		tracing;
319 
320 #if	defined(__i386)
321 		if (elf_copy_gen(nlmp) == 0)
322 			return (0);
323 #endif
324 		if (COPY(nlmp) == 0)
325 			return (1);
326 
327 		if ((LIST(nlmp)->lm_flags & LML_FLG_TRC_ENABLE) &&
328 		    (((rtld_flags & RT_FL_SILENCERR) == 0) ||
329 		    (LIST(nlmp)->lm_flags & LML_FLG_TRC_VERBOSE)))
330 			tracing = 1;
331 		else
332 			tracing = 0;
333 
334 		DBG_CALL(Dbg_util_nl(lml, DBG_NL_STD));
335 
336 		for (ALIST_TRAVERSE(COPY(nlmp), off1, lmpp)) {
337 			Rt_map *	lmp = *lmpp;
338 			Rel_copy *	rcp;
339 			Aliste		off2;
340 
341 			for (ALIST_TRAVERSE(COPY(lmp), off2, rcp)) {
342 				int zero;
343 
344 				/*
345 				 * Only copy the bits if it's from non-zero
346 				 * filled memory.
347 				 */
348 				zero = copy_zerobits(rcp->r_dlmp, rcp->r_dsym);
349 				DBG_CALL(Dbg_reloc_copy(rcp->r_dlmp, nlmp,
350 				    rcp->r_name, zero));
351 				if (zero)
352 					continue;
353 
354 				(void) memcpy(rcp->r_radd, rcp->r_dadd,
355 				    rcp->r_size);
356 
357 				if ((tracing == 0) || ((FLAGS1(rcp->r_dlmp) &
358 				    FL1_RT_DISPREL) == 0))
359 					continue;
360 
361 				(void) printf(MSG_INTL(MSG_LDD_REL_CPYDISP),
362 				    demangle(rcp->r_name), NAME(rcp->r_dlmp));
363 			}
364 		}
365 
366 		DBG_CALL(Dbg_util_nl(lml, DBG_NL_STD));
367 
368 		free(COPY(nlmp));
369 		COPY(nlmp) = 0;
370 	}
371 	return (1);
372 }
373 
374 int
375 relocate_lmc(Lm_list *lml, Aliste nlmco, Rt_map *clmp, Rt_map *nlmp)
376 {
377 	int	lret = 1, pret = 1;
378 	Alist	*alp;
379 	Aliste	plmco;
380 	Lm_cntl	*plmc, *nlmc;
381 
382 	/*
383 	 * If this link-map control list is being relocated, return.  The object
384 	 * that has just been added will be picked up by the existing relocation
385 	 * thread.  Note, this is only really meaningful during process init-
386 	 * ialization, as objects are added to the main link-map control list.
387 	 * Following this initialization, each family of objects that are loaded
388 	 * are added to a new link-map control list.
389 	 */
390 	/* LINTED */
391 	nlmc = (Lm_cntl *)((char *)lml->lm_lists + nlmco);
392 
393 	if (nlmc->lc_flags & LMC_FLG_RELOCATING)
394 		return (1);
395 
396 	nlmc->lc_flags |= LMC_FLG_RELOCATING;
397 
398 	/*
399 	 * Relocate one or more link-maps of a link map control list.  If this
400 	 * object doesn't belong to the present link-map control list then it
401 	 * must already have been relocated, or it is in the process of being
402 	 * relocated prior to us recursing into this relocation.  In either
403 	 * case, ignore the object as it's already being taken care of, however,
404 	 * fall through and capture any relocation promotions that might have
405 	 * been established from the reference mode of this object.
406 	 *
407 	 * If we're generating a configuration file using crle(1), two passes
408 	 * may be involved.  Under the first pass, RTLD_CONFGEN is set.  Under
409 	 * this pass, crle() loads objects into the process address space.  No
410 	 * relocation is necessary at this point, we simply need to analyze the
411 	 * objects to insure any directly bound dependencies, filtees, etc.
412 	 * get loaded. Although we skip the relocation, fall through to insure
413 	 * any control lists are maintained appropriately.
414 	 *
415 	 * If objects are to be dldump(3c)'ed, crle(1) makes a second pass,
416 	 * using RTLD_NOW and RTLD_CONFGEN.  The RTLD_NOW effectively carries
417 	 * out the relocations of all loaded objects.
418 	 */
419 	if ((nlmco == CNTL(nlmp)) &&
420 	    ((MODE(nlmp) & (RTLD_NOW | RTLD_CONFGEN)) != RTLD_CONFGEN)) {
421 		int	relocated = 0;
422 
423 		/*
424 		 * Determine whether the initial link-map control list has
425 		 * started relocation.  From this point, should any interposing
426 		 * objects be added to this link-map control list, the objects
427 		 * are demoted to standard objects.  Their interposition can't
428 		 * be guaranteed once relocations have been carried out.
429 		 */
430 		if (nlmco == ALO_DATA)
431 			lml->lm_flags |= LML_FLG_STARTREL;
432 
433 		/*
434 		 * Relocate the link-map control list.  Should this relocation
435 		 * fail, clean up this link-map list.  Relocations within this
436 		 * list may have required relocation promotions on other lists,
437 		 * so before acting upon these, and possibly adding more objects
438 		 * to the present link-map control list, try and clean up any
439 		 * failed objects now.
440 		 */
441 		lret = _relocate_lmc(lml, nlmp, &relocated);
442 		if ((lret == 0) && (nlmco != ALO_DATA))
443 			remove_lmc(lml, clmp, nlmc, nlmco, NAME(nlmp));
444 	}
445 
446 	/*
447 	 * Determine the new, and previous link-map control lists.
448 	 */
449 	/* LINTED */
450 	nlmc = (Lm_cntl *)((char *)lml->lm_lists + nlmco);
451 	if (nlmco == ALO_DATA) {
452 		plmco = nlmco;
453 		plmc = nlmc;
454 	} else {
455 		plmco = nlmco - lml->lm_lists->al_size;
456 		/* LINTED */
457 		plmc = (Lm_cntl *)((char *)lml->lm_lists + plmco);
458 	}
459 
460 	/*
461 	 * Having completed this control list of objects, they can now be bound
462 	 * to from other objects.  Move this control list to the control list
463 	 * that precedes it.  Although this control list may have only bound to
464 	 * controls lists much higher up the control list stack, it must only
465 	 * be moved up one control list so as to preserve the link-map order
466 	 * that may have already been traversed in search of symbols.
467 	 */
468 	if (lret && (nlmco != ALO_DATA) && nlmc->lc_head)
469 		lm_move(lml, nlmco, plmco, nlmc, plmc);
470 
471 	/*
472 	 * Determine whether existing objects that have already been relocated,
473 	 * need any additional relocations performed.  This can occur when new
474 	 * objects are loaded with RTLD_NOW, and these new objects have
475 	 * dependencies on objects that are already loaded.  Note, that we peel
476 	 * any relocation promotions off of one control list at a time.  This
477 	 * prevents relocations from being bound to objects that might yet fail
478 	 * to relocate themselves.
479 	 */
480 	while ((alp = plmc->lc_now) != 0) {
481 		Aliste	off;
482 		Rt_map	**lmpp;
483 
484 		/*
485 		 * Remove the relocation promotion list, as performing more
486 		 * relocations may result in discovering more objects that need
487 		 * promotion.
488 		 */
489 		plmc->lc_now = 0;
490 
491 		for (ALIST_TRAVERSE(alp, off, lmpp)) {
492 			Rt_map	*lmp = *lmpp;
493 
494 			/*
495 			 * If the original relocation of the link-map control
496 			 * list failed, or one of the relocation promotions of
497 			 * this loop has failed, demote any pending objects
498 			 * relocation mode.
499 			 */
500 			if ((lret == 0) || (pret == 0)) {
501 				MODE(lmp) &= ~RTLD_NOW;
502 				MODE(lmp) |= RTLD_LAZY;
503 				continue;
504 			}
505 
506 			/*
507 			 * If a relocation fails, save the error condition.
508 			 * It's possible that all new objects on the original
509 			 * link-map control list have been relocated
510 			 * successfully, but if the user request requires
511 			 * promoting objects that have already been loaded, we
512 			 * have to indicate that this operation couldn't be
513 			 * performed.  The unrelocated objects are in use on
514 			 * another control list, and may continue to be used.
515 			 * If the .plt that resulted in the error is called,
516 			 * then the process will receive a fatal error at that
517 			 * time.  But, the .plt may never be called.
518 			 */
519 			if (relocate_so(lml, lmp, 0, 1) == 0)
520 				pret = 0;
521 		}
522 
523 		/*
524 		 * Having promoted any objects, determine whether additional
525 		 * dependencies were added, and if so move them to the previous
526 		 * link-map control list.
527 		 */
528 		/* LINTED */
529 		nlmc = (Lm_cntl *)((char *)lml->lm_lists + nlmco);
530 		/* LINTED */
531 		plmc = (Lm_cntl *)((char *)lml->lm_lists + plmco);
532 		if ((nlmco != ALO_DATA) && nlmc->lc_head)
533 			lm_move(lml, nlmco, plmco, nlmc, plmc);
534 		free(alp);
535 	}
536 
537 	/*
538 	 * If relocations have been successful, indicate that relocations are
539 	 * no longer active for this control list.  Otherwise, leave the
540 	 * relocation flag, as this flag is used to determine the style of
541 	 * cleanup (see remove_lmc()).
542 	 */
543 	if (lret && pret) {
544 		/* LINTED */
545 		nlmc = (Lm_cntl *)((char *)lml->lm_lists + nlmco);
546 		nlmc->lc_flags &= ~LMC_FLG_RELOCATING;
547 
548 		return (1);
549 	}
550 
551 	return (0);
552 }
553 
554 /*
555  * Inherit the first rejection message for possible later diagnostics.
556  *
557  * Any attempt to process a file that is unsuccessful, should be accompanied
558  * with an error diagnostic.  However, some operations like searching for a
559  * simple filename, involve trying numerous paths, and an error message for each
560  * lookup is not required.  Although a multiple search can fail, it's possible
561  * that a file was found, but was rejected because it was the wrong type.
562  * To satisfy these possibilities, the first failure is recorded as a rejection
563  * message, and this message is used later for a more specific diagnostic.
564  *
565  * File searches are focused at load_one(), and from here a rejection descriptor
566  * is passed down to various child routines.  If these child routines can
567  * process multiple files, then they will maintain their own rejection desc-
568  * riptor.  This is filled in for any failures, and a diagnostic produced to
569  * reflect the failure.  The child routines then employ rejection_inherit() to
570  * pass the first rejection message back to load_one().
571  *
572  * Note that the name, and rejection string must be duplicated, as the name
573  * buffer and error string buffer (see conv_ routines) may be reused for
574  * additional processing or rejection messages.
575  */
576 void
577 rejection_inherit(Rej_desc *rej1, Rej_desc *rej2, Fdesc *fdp)
578 {
579 	if (rej2->rej_type && (rej1->rej_type == 0)) {
580 		rej1->rej_type = rej2->rej_type;
581 		rej1->rej_info = rej2->rej_info;
582 		rej1->rej_flag = rej2->rej_flag;
583 		if (rej2->rej_name)
584 			rej1->rej_name = strdup(rej2->rej_name);
585 		if (rej2->rej_str) {
586 			if ((rej1->rej_str = strdup(rej2->rej_str)) == NULL)
587 				rej1->rej_str = MSG_ORIG(MSG_EMG_ENOMEM);
588 		}
589 	}
590 }
591 
592 /*
593  * Determine the object type of a file.
594  */
595 Fct *
596 are_u_this(Rej_desc *rej, int fd, struct stat *status, const char *name)
597 {
598 	int	i;
599 	char	*maddr = 0;
600 
601 	fmap->fm_fsize = status->st_size;
602 
603 	/*
604 	 * If this is a directory (which can't be mmap()'ed) generate a precise
605 	 * error message.
606 	 */
607 	if ((status->st_mode & S_IFMT) == S_IFDIR) {
608 		rej->rej_type = SGS_REJ_STR;
609 		rej->rej_str = strerror(EISDIR);
610 		return (0);
611 	}
612 
613 	/*
614 	 * Map in the first page of the file.  When this buffer is first used,
615 	 * the mapping is a single system page.  This is typically enough to
616 	 * inspect the ehdr and phdrs of the file, and can be reused for each
617 	 * file that get loaded.  If a larger mapping is required to read the
618 	 * ehdr and phdrs, a new mapping is created (see elf_map_it()).  This
619 	 * new mapping is again used for each new file loaded.  Some objects,
620 	 * such as filters, only take up one page, and in this case this mapping
621 	 * will suffice for the file.
622 	 */
623 	maddr = mmap(fmap->fm_maddr, fmap->fm_msize, (PROT_READ | PROT_EXEC),
624 	    fmap->fm_mflags, fd, 0);
625 #if defined(MAP_ALIGN)
626 	if ((maddr == MAP_FAILED) && (errno == EINVAL)) {
627 		/*
628 		 * If the mapping failed, and we used MAP_ALIGN, assume we're
629 		 * on a system that doesn't support this option.  Try again
630 		 * without MAP_ALIGN.
631 		 */
632 		if (fmap->fm_mflags & MAP_ALIGN) {
633 			rtld_flags2 |= RT_FL2_NOMALIGN;
634 			fmap_setup();
635 
636 			maddr = (char *)mmap(fmap->fm_maddr, fmap->fm_msize,
637 			    (PROT_READ | PROT_EXEC), fmap->fm_mflags, fd, 0);
638 		}
639 	}
640 #endif
641 	if (maddr == MAP_FAILED) {
642 		rej->rej_type = SGS_REJ_STR;
643 		rej->rej_str = strerror(errno);
644 		return (0);
645 	}
646 
647 	/*
648 	 * From now on we will re-use fmap->fm_maddr as the mapping address
649 	 * so we augment the flags with MAP_FIXED and drop any MAP_ALIGN.
650 	 */
651 	fmap->fm_maddr = maddr;
652 	fmap->fm_mflags |= MAP_FIXED;
653 #if defined(MAP_ALIGN)
654 	fmap->fm_mflags &= ~MAP_ALIGN;
655 #endif
656 
657 	/*
658 	 * Search through the object vectors to determine what kind of
659 	 * object we have.
660 	 */
661 	for (i = 0; vector[i]; i++) {
662 		if ((vector[i]->fct_are_u_this)(rej))
663 			return (vector[i]);
664 		else if (rej->rej_type) {
665 			Rt_map	*lmp;
666 
667 			/*
668 			 * If this object is an explicitly defined shared
669 			 * object under inspection by ldd, and contains a
670 			 * incompatible hardware capabilities requirement, then
671 			 * inform the user, but continue processing.
672 			 *
673 			 * XXXX - ldd -v for any rej failure.
674 			 */
675 			if ((rej->rej_type == SGS_REJ_HWCAP_1) &&
676 			    (lml_main.lm_flags & LML_FLG_TRC_LDDSTUB) &&
677 			    ((lmp = lml_main.lm_head) != 0) &&
678 			    (FLAGS1(lmp) & FL1_RT_LDDSTUB) &&
679 			    (NEXT(lmp) == 0)) {
680 				(void) printf(MSG_INTL(MSG_LDD_GEN_HWCAP_1),
681 				    name, rej->rej_str);
682 				return (vector[i]);
683 			}
684 			return (0);
685 		}
686 	}
687 
688 	/*
689 	 * Unknown file type.
690 	 */
691 	rej->rej_type = SGS_REJ_UNKFILE;
692 	return (0);
693 }
694 
695 /*
696  * Helper routine for is_so_matched() that consolidates matching a path name,
697  * or file name component of a link-map name.
698  */
699 static int
700 _is_so_matched(const char *name, const char *str, int path)
701 {
702 	const char	*_str;
703 
704 	if ((path == 0) && ((_str = strrchr(str, '/')) != NULL))
705 		_str++;
706 	else
707 		_str = str;
708 
709 	return (strcmp(name, _str));
710 }
711 
712 /*
713  * Determine whether a search name matches one of the names associated with a
714  * link-map.  A link-map contains several names:
715  *
716  *  .	a NAME() - typically the full pathname of an object that has been
717  *	loaded.  For example, when looking for the dependency "libc.so.1", a
718  * 	search path is applied, with the eventual NAME() being "/lib/ld.so.1".
719  *	The name of the executable is typically a simple filename, such as
720  *	"main", as this is the name passed to exec() to start the process.
721  *
722  *  .	a PATHNAME() - this is maintained if the resolved NAME() is different
723  * 	to NAME(), ie. the original name is a symbolic link.  This is also
724  * 	the resolved full pathname for a dynamic executable.
725  *
726  *  .	a list of ALIAS() names - these are alternative names by which the
727  *	object has been found, ie. when dependencies are loaded through a
728  * 	variety of different symbolic links.
729  *
730  * The name pattern matching can differ depending on whether we are looking
731  * for a full path name (path != 0), or a simple file name (path == 0).  Full
732  * path names typically match NAME() or PATHNAME() entries, so these link-map
733  * names are inspected first when a full path name is being searched for.
734  * Simple file names typically match ALIAS() names, so these link-map names are
735  * inspected first when a simple file name is being searched for.
736  *
737  * For all full path name searches, the link-map names are taken as is.  For
738  * simple file name searches, only the file name component of any link-map
739  * names are used for comparison.
740  */
741 static Rt_map *
742 is_so_matched(Rt_map *lmp, const char *name, int path)
743 {
744 	Aliste		off;
745 	const char	**cpp;
746 
747 	/*
748 	 * A pathname is typically going to match a NAME() or PATHNAME(), so
749 	 * check these first.
750 	 */
751 	if (path) {
752 		if (strcmp(name, NAME(lmp)) == 0)
753 			return (lmp);
754 
755 		if (PATHNAME(lmp) != NAME(lmp)) {
756 			if (strcmp(name, PATHNAME(lmp)) == 0)
757 				return (lmp);
758 		}
759 	}
760 
761 	/*
762 	 * Typically, dependencies are specified as simple file names
763 	 * (DT_NEEDED == libc.so.1), which are expanded to full pathnames to
764 	 * open the file.  The full pathname is NAME(), and the original name
765 	 * is maintained on the ALIAS() list.
766 	 *
767 	 * If this is a simple filename, or a pathname has failed to match the
768 	 * NAME() and PATHNAME() check above, look through the ALIAS() list.
769 	 */
770 	for (ALIST_TRAVERSE(ALIAS(lmp), off, cpp)) {
771 		/*
772 		 * If we're looking for a simple filename, _is_so_matched()
773 		 * will reduce the ALIAS name to its simple name.
774 		 */
775 		if (_is_so_matched(name, *cpp, path) == 0)
776 			return (lmp);
777 	}
778 
779 	/*
780 	 * Finally, if this is a simple file name, and any ALIAS() search has
781 	 * been completed, match the simple file name of NAME() and PATHNAME().
782 	 */
783 	if (path == 0) {
784 		if (_is_so_matched(name, NAME(lmp), 0) == 0)
785 			return (lmp);
786 
787 		if (PATHNAME(lmp) != NAME(lmp)) {
788 			if (_is_so_matched(name, PATHNAME(lmp), 0) == 0)
789 				return (lmp);
790 		}
791 	}
792 
793 	return (0);
794 }
795 
796 /*
797  * Files are opened by ld.so.1 to satisfy dependencies, filtees and dlopen()
798  * requests.  Each request investigates the file based upon the callers
799  * environment, and once a full path name has been established a check is made
800  * against the FullpathNode AVL tree and a device/inode check, to ensure the
801  * same file isn't mapped multiple times.  See file_open().
802  *
803  * However, there are one of two cases where a test for an existing file name
804  * needs to be carried out, such as dlopen(NOLOAD) requests, dldump() requests,
805  * and as a final fallback to dependency loading.  These requests are handled
806  * by is_so_loaded().
807  *
808  * A traversal through the callers link-map list is carried out, and from each
809  * link-map, a comparison is made against all of the various names by which the
810  * object has been referenced.  The subroutine, is_so_matched() compares the
811  * link-map names against the name being searched for.  Whether the search name
812  * is a full path name or a simple file name, governs what comparisons are made.
813  *
814  * A full path name, which is a fully resolved path name that starts with a "/"
815  * character, or a relative path name that includes a "/" character, must match
816  * the link-map names explicitly.  A simple file name, which is any name *not*
817  * containing a "/" character, are matched against the file name component of
818  * any link-map names.
819  */
820 Rt_map *
821 is_so_loaded(Lm_list *lml, const char *name)
822 {
823 	Rt_map		*lmp;
824 	avl_index_t	where;
825 	Lm_cntl		*lmc;
826 	Aliste		off;
827 	int		path = 0;
828 
829 	/*
830 	 * If the name is a full path name, first determine if the path name is
831 	 * registered in the FullpathNode AVL tree.
832 	 */
833 	if ((name[0] == '/') &&
834 	    ((lmp = fpavl_loaded(lml, name, &where)) != NULL) &&
835 	    ((FLAGS(lmp) & (FLG_RT_OBJECT | FLG_RT_DELETE)) == 0))
836 		return (lmp);
837 
838 	/*
839 	 * Determine whether the name is a simple file name, or a path name.
840 	 */
841 	if (strchr(name, '/'))
842 		path++;
843 
844 	/*
845 	 * Loop through the callers link-map lists.
846 	 */
847 	for (ALIST_TRAVERSE(lml->lm_lists, off, lmc)) {
848 		for (lmp = lmc->lc_head; lmp; lmp = (Rt_map *)NEXT(lmp)) {
849 			if (FLAGS(lmp) & (FLG_RT_OBJECT | FLG_RT_DELETE))
850 				continue;
851 
852 			if (is_so_matched(lmp, name, path))
853 				return (lmp);
854 		}
855 	}
856 	return ((Rt_map *)0);
857 }
858 
859 /*
860  * Tracing is enabled by the LD_TRACE_LOADED_OPTIONS environment variable which
861  * is normally set from ldd(1).  For each link map we load, print the load name
862  * and the full pathname of the shared object.
863  */
864 /* ARGSUSED4 */
865 static void
866 trace_so(Rt_map *clmp, Rej_desc *rej, const char *name, const char *path,
867     int alter, const char *nfound)
868 {
869 	const char	*str = MSG_ORIG(MSG_STR_EMPTY);
870 	const char	*reject = MSG_ORIG(MSG_STR_EMPTY);
871 	char		_reject[PATH_MAX];
872 
873 	/*
874 	 * The first time through trace_so() will only have lddstub on the
875 	 * link-map list and the preloaded shared object is supplied as "path".
876 	 * As we don't want to print this shared object as a dependency, but
877 	 * instead inspect *its* dependencies, return.
878 	 */
879 	if (FLAGS1(clmp) & FL1_RT_LDDSTUB)
880 		return;
881 
882 	/*
883 	 * Without any rejection info, this is a supplied not-found condition.
884 	 */
885 	if (rej && (rej->rej_type == 0)) {
886 		(void) printf(nfound, name);
887 		return;
888 	}
889 
890 	/*
891 	 * If rejection information exists then establish what object was
892 	 * found and the reason for its rejection.
893 	 */
894 	if (rej) {
895 		/* LINTED */
896 		(void) snprintf(_reject, PATH_MAX,
897 		    MSG_INTL(ldd_reject[rej->rej_type]), conv_reject_desc(rej));
898 		if (rej->rej_name)
899 			path = rej->rej_name;
900 		reject = (char *)_reject;
901 
902 		/*
903 		 * Was an alternative pathname defined (from a configuration
904 		 * file).
905 		 */
906 		if (rej->rej_flag & FLG_FD_ALTER)
907 			str = MSG_INTL(MSG_LDD_FIL_ALTER);
908 	} else {
909 		if (alter)
910 			str = MSG_INTL(MSG_LDD_FIL_ALTER);
911 	}
912 
913 	/*
914 	 * If the load name isn't a full pathname print its associated pathname
915 	 * together with all the other information we've gathered.
916 	 */
917 	if (*name == '/')
918 	    (void) printf(MSG_ORIG(MSG_LDD_FIL_PATH), path, str, reject);
919 	else
920 	    (void) printf(MSG_ORIG(MSG_LDD_FIL_EQUIV), name, path, str, reject);
921 }
922 
923 
924 /*
925  * Establish a link-map mode, initializing it if it has just been loaded, or
926  * potentially updating it if it already exists.
927  */
928 int
929 update_mode(Rt_map *lmp, int omode, int nmode)
930 {
931 	Lm_list	*lml = LIST(lmp);
932 	int	pmode = 0;
933 
934 	/*
935 	 * A newly loaded object hasn't had its mode set yet.  Modes are used to
936 	 * load dependencies, so don't propagate any parent or no-load flags, as
937 	 * these would adversely affect this objects ability to load any of its
938 	 * dependencies that aren't already loaded.  RTLD_FIRST is applicable to
939 	 * this objects handle creation only, and should not be propagated.
940 	 */
941 	if ((FLAGS(lmp) & FLG_RT_MODESET) == 0) {
942 		MODE(lmp) |= nmode & ~(RTLD_PARENT | RTLD_NOLOAD | RTLD_FIRST);
943 		FLAGS(lmp) |= FLG_RT_MODESET;
944 		return (1);
945 	}
946 
947 	/*
948 	 * Establish any new overriding modes.  RTLD_LAZY and RTLD_NOW should be
949 	 * represented individually (this is historic, as these two flags were
950 	 * the only flags originally available to dlopen()).  Other flags are
951 	 * accumulative, but have a hierarchy of preference.
952 	 */
953 	if ((omode & RTLD_LAZY) && (nmode & RTLD_NOW)) {
954 		MODE(lmp) &= ~RTLD_LAZY;
955 		pmode |= RTLD_NOW;
956 	}
957 
958 	pmode |= ((~omode & nmode) &
959 	    (RTLD_GLOBAL | RTLD_WORLD | RTLD_NODELETE));
960 	if (pmode) {
961 		DBG_CALL(Dbg_file_mode_promote(lmp, pmode));
962 		MODE(lmp) |= pmode;
963 	}
964 
965 	/*
966 	 * If this load is an RTLD_NOW request and the object has already been
967 	 * loaded non-RTLD_NOW, append this object to the relocation-now list
968 	 * of the objects associated control list.  Note, if the object hasn't
969 	 * yet been relocated, setting its MODE() to RTLD_NOW will establish
970 	 * full relocation processing when it eventually gets relocated.
971 	 */
972 	if ((pmode & RTLD_NOW) &&
973 	    (FLAGS(lmp) & (FLG_RT_RELOCED | FLG_RT_RELOCING))) {
974 		Lm_cntl	*lmc;
975 
976 		/* LINTED */
977 		lmc = (Lm_cntl *)((char *)(LIST(lmp)->lm_lists) + CNTL(lmp));
978 		(void) alist_append(&(lmc->lc_now), &lmp, sizeof (Rt_map *),
979 		    AL_CNT_LMNOW);
980 	}
981 
982 #ifdef	SIEBEL_DISABLE
983 	/*
984 	 * For patch backward compatibility the following .init collection
985 	 * is disabled.
986 	 */
987 	if (rtld_flags & RT_FL_DISFIX_1)
988 		return (pmode);
989 #endif
990 
991 	/*
992 	 * If this objects .init has been collected but has not yet been called,
993 	 * it may be necessary to reevaluate the object using tsort().  For
994 	 * example, a new dlopen() hierarchy may bind to uninitialized objects
995 	 * that are already loaded, or a dlopen(RTLD_NOW) can establish new
996 	 * bindings between already loaded objects that require the tsort()
997 	 * information be recomputed.  If however, no new objects have been
998 	 * added to the process, and this object hasn't been promoted, don't
999 	 * bother reevaluating the .init.  The present tsort() information is
1000 	 * probably as accurate as necessary, and by not establishing a parallel
1001 	 * tsort() we can help reduce the amount of recursion possible between
1002 	 * .inits.
1003 	 */
1004 	if (((FLAGS(lmp) &
1005 	    (FLG_RT_INITCLCT | FLG_RT_INITCALL)) == FLG_RT_INITCLCT) &&
1006 	    ((lml->lm_flags & LML_FLG_OBJADDED) || ((pmode & RTLD_NOW) &&
1007 	    (FLAGS(lmp) & (FLG_RT_RELOCED | FLG_RT_RELOCING))))) {
1008 		FLAGS(lmp) &= ~FLG_RT_INITCLCT;
1009 		LIST(lmp)->lm_init++;
1010 		LIST(lmp)->lm_flags |= LML_FLG_OBJREEVAL;
1011 	}
1012 
1013 	return (pmode);
1014 }
1015 
1016 /*
1017  * Determine whether an alias name already exists, and if not create one.  This
1018  * is typically used to retain dependency names, such as "libc.so.1", which
1019  * would have been expanded to full path names when they were loaded.  The
1020  * full path names (NAME() and possibly PATHNAME()) are maintained as Fullpath
1021  * AVL nodes, and thus would have been matched by fpavl_loaded() during
1022  * file_open().
1023  */
1024 int
1025 append_alias(Rt_map *lmp, const char *str, int *added)
1026 {
1027 	Aliste	off;
1028 	char	**cpp, *cp;
1029 
1030 	/*
1031 	 * Determine if this filename is already on the alias list.
1032 	 */
1033 	for (ALIST_TRAVERSE(ALIAS(lmp), off, cpp)) {
1034 		if (strcmp(*cpp, str) == 0)
1035 			return (1);
1036 	}
1037 
1038 	/*
1039 	 * This is a new alias, append it to the alias list.
1040 	 */
1041 	if ((cp = strdup(str)) == NULL)
1042 		return (0);
1043 
1044 	if (alist_append(&ALIAS(lmp), &cp, sizeof (char *),
1045 	    AL_CNT_ALIAS) == 0) {
1046 		free(cp);
1047 		return (0);
1048 	}
1049 	if (added)
1050 		*added = 1;
1051 	return (1);
1052 }
1053 
1054 /*
1055  * Determine whether a file is already loaded by comparing device and inode
1056  * values.
1057  */
1058 static Rt_map *
1059 is_devinode_loaded(struct stat *status, Lm_list *lml, const char *name,
1060     uint_t flags)
1061 {
1062 	Lm_cntl	*lmc;
1063 	Aliste	off;
1064 
1065 	/*
1066 	 * If this is an auditor, it will have been opened on a new link-map.
1067 	 * To prevent multiple occurrances of the same auditor on multiple
1068 	 * link-maps, search the head of each link-map list and see if this
1069 	 * object is already loaded as an auditor.
1070 	 */
1071 	if (flags & FLG_RT_AUDIT) {
1072 		Lm_list *	lml;
1073 		Listnode *	lnp;
1074 
1075 		for (LIST_TRAVERSE(&dynlm_list, lnp, lml)) {
1076 			Rt_map	*nlmp = lml->lm_head;
1077 
1078 			if (nlmp && ((FLAGS(nlmp) &
1079 			    (FLG_RT_AUDIT | FLG_RT_DELETE)) == FLG_RT_AUDIT) &&
1080 			    (STDEV(nlmp) == status->st_dev) &&
1081 			    (STINO(nlmp) == status->st_ino))
1082 				return (nlmp);
1083 		}
1084 		return ((Rt_map *)0);
1085 	}
1086 
1087 	/*
1088 	 * If the file has been found determine from the new files status
1089 	 * information if this file is actually linked to one we already have
1090 	 * mapped.  This catches symlink names not caught by is_so_loaded().
1091 	 */
1092 	for (ALIST_TRAVERSE(lml->lm_lists, off, lmc)) {
1093 		Rt_map	*nlmp;
1094 
1095 		for (nlmp = lmc->lc_head; nlmp; nlmp = (Rt_map *)NEXT(nlmp)) {
1096 			if ((FLAGS(nlmp) & FLG_RT_DELETE) ||
1097 			    (FLAGS1(nlmp) & FL1_RT_LDDSTUB))
1098 				continue;
1099 
1100 			if ((STDEV(nlmp) != status->st_dev) ||
1101 			    (STINO(nlmp) != status->st_ino))
1102 				continue;
1103 
1104 			if (lml->lm_flags & LML_FLG_TRC_VERBOSE) {
1105 				if (*name == '/')
1106 				    (void) printf(MSG_ORIG(MSG_LDD_FIL_PATH),
1107 					name, MSG_ORIG(MSG_STR_EMPTY),
1108 					MSG_ORIG(MSG_STR_EMPTY));
1109 				else
1110 				    (void) printf(MSG_ORIG(MSG_LDD_FIL_EQUIV),
1111 					name, NAME(nlmp),
1112 					MSG_ORIG(MSG_STR_EMPTY),
1113 					MSG_ORIG(MSG_STR_EMPTY));
1114 			}
1115 			return (nlmp);
1116 		}
1117 	}
1118 	return ((Rt_map *)0);
1119 }
1120 
1121 /*
1122  * Generate any error messages indicating a file could not be found.  When
1123  * preloading or auditing a secure application, it can be a little more helpful
1124  * to indicate that a search of secure directories has failed, so adjust the
1125  * messages accordingly.
1126  */
1127 void
1128 file_notfound(Lm_list *lml, const char *name, Rt_map *clmp, uint_t flags,
1129     Rej_desc * rej)
1130 {
1131 	int	secure = 0;
1132 
1133 	if ((rtld_flags & RT_FL_SECURE) &&
1134 	    (flags & (FLG_RT_PRELOAD | FLG_RT_AUDIT)))
1135 		secure++;
1136 
1137 	if (lml->lm_flags & LML_FLG_TRC_ENABLE) {
1138 		/*
1139 		 * Under ldd(1), auxiliary filtees that can't be loaded are
1140 		 * ignored, unless verbose errors are requested.
1141 		 */
1142 		if ((rtld_flags & RT_FL_SILENCERR) &&
1143 		    ((lml->lm_flags & LML_FLG_TRC_VERBOSE) == 0))
1144 			return;
1145 
1146 		if (secure)
1147 			trace_so(clmp, rej, name, 0, 0,
1148 			    MSG_INTL(MSG_LDD_SEC_NFOUND));
1149 		else
1150 			trace_so(clmp, rej, name, 0, 0,
1151 			    MSG_INTL(MSG_LDD_FIL_NFOUND));
1152 		return;
1153 	}
1154 
1155 	if (rej->rej_type) {
1156 		eprintf(lml, ERR_FATAL, MSG_INTL(err_reject[rej->rej_type]),
1157 		    rej->rej_name ? rej->rej_name : MSG_INTL(MSG_STR_UNKNOWN),
1158 		    conv_reject_desc(rej));
1159 		return;
1160 	}
1161 
1162 	if (secure)
1163 		eprintf(lml, ERR_FATAL, MSG_INTL(MSG_SEC_OPEN), name);
1164 	else
1165 		eprintf(lml, ERR_FATAL, MSG_INTL(MSG_SYS_OPEN), name,
1166 		    strerror(ENOENT));
1167 }
1168 
1169 static int
1170 file_open(int err, Lm_list *lml, const char *oname, const char *nname,
1171     Rt_map *clmp, uint_t flags, Fdesc *fdesc, Rej_desc *rej)
1172 {
1173 	struct stat	status;
1174 	Rt_map		*nlmp;
1175 	int		resolved = 0;
1176 
1177 	fdesc->fd_oname = oname;
1178 
1179 	if ((err == 0) && (fdesc->fd_flags & FLG_FD_ALTER))
1180 		DBG_CALL(Dbg_file_config_obj(lml, oname, 0, nname));
1181 
1182 	/*
1183 	 * If we're dealing with a full pathname, determine whether this
1184 	 * pathname is already known.  Other pathnames fall through to the
1185 	 * dev/inode check, as even though the pathname may look the same as
1186 	 * one previously used, the process may have changed directory.
1187 	 */
1188 	if ((err == 0) && (nname[0] == '/')) {
1189 		if ((nlmp = fpavl_loaded(lml, nname,
1190 		    &(fdesc->fd_avlwhere))) != NULL) {
1191 			fdesc->fd_nname = nname;
1192 			fdesc->fd_lmp = nlmp;
1193 			return (1);
1194 		}
1195 	}
1196 
1197 	if ((err == 0) && ((stat(nname, &status)) != -1)) {
1198 		char	path[PATH_MAX];
1199 		int	fd, size, added;
1200 
1201 		/*
1202 		 * If this path has been constructed as part of expanding a
1203 		 * HWCAP directory, ignore any subdirectories.  As this is a
1204 		 * silent failure, where no rejection message is created, free
1205 		 * the original name to simplify the life of the caller.  For
1206 		 * any other reference that expands to a directory, fall through
1207 		 * to contruct a meaningful rejection message.
1208 		 */
1209 		if ((flags & FLG_RT_HWCAP) &&
1210 		    ((status.st_mode & S_IFMT) == S_IFDIR)) {
1211 			free((void *)nname);
1212 			return (0);
1213 		}
1214 
1215 		/*
1216 		 * Resolve the filename and determine whether the resolved name
1217 		 * is already known.  Typically, the previous fpavl_loaded()
1218 		 * will have caught this, as both NAME() and PATHNAME() for a
1219 		 * link-map are recorded in the FullNode AVL tree.  However,
1220 		 * instances exist where a file can be replaced (loop-back
1221 		 * mounts, bfu, etc.), and reference is made to the original
1222 		 * file through a symbolic link.  By checking the pathname here,
1223 		 * we don't fall through to the dev/inode check and conclude
1224 		 * that a new file should be loaded.
1225 		 */
1226 		if ((nname[0] == '/') && (rtld_flags & RT_FL_EXECNAME) &&
1227 		    ((size = resolvepath(nname, path, (PATH_MAX - 1))) > 0)) {
1228 			path[size] = '\0';
1229 
1230 			if (strcmp(nname, path)) {
1231 				if ((nlmp =
1232 				    fpavl_loaded(lml, path, 0)) != NULL) {
1233 					added = 0;
1234 
1235 					if (append_alias(nlmp, nname,
1236 					    &added) == 0)
1237 						return (0);
1238 					if (added)
1239 					    DBG_CALL(Dbg_file_skip(LIST(clmp),
1240 						NAME(nlmp), nname));
1241 					fdesc->fd_nname = nname;
1242 					fdesc->fd_lmp = nlmp;
1243 					return (1);
1244 				}
1245 
1246 				/*
1247 				 * If this pathname hasn't been loaded, save
1248 				 * the resolved pathname so that it doesn't
1249 				 * have to be recomputed as part of fullpath()
1250 				 * processing.
1251 				 */
1252 				if ((fdesc->fd_pname = strdup(path)) == NULL)
1253 					return (0);
1254 				resolved = 1;
1255 			} else {
1256 				/*
1257 				 * If the resolved name doesn't differ from the
1258 				 * original, save it without duplication.
1259 				 * Having fd_pname set indicates that no further
1260 				 * resolvepath processing is necessary.
1261 				 */
1262 				fdesc->fd_pname = nname;
1263 			}
1264 		}
1265 
1266 		if (nlmp = is_devinode_loaded(&status, lml, nname, flags)) {
1267 			if (flags & FLG_RT_AUDIT) {
1268 				/*
1269 				 * If we've been requested to load an auditor,
1270 				 * and an auditor of the same name already
1271 				 * exists, then the original auditor is used.
1272 				 */
1273 				DBG_CALL(Dbg_audit_skip(LIST(clmp),
1274 				    NAME(nlmp), LIST(nlmp)->lm_lmidstr));
1275 			} else {
1276 				/*
1277 				 * Otherwise, if an alternatively named file
1278 				 * has been found for the same dev/inode, add
1279 				 * a new name alias, and insert any alias full
1280 				 * pathname in the link-map lists AVL tree.
1281 				 */
1282 				added = 0;
1283 
1284 				if (append_alias(nlmp, nname, &added) == 0)
1285 					return (0);
1286 				if (added) {
1287 					if ((nname[0] == '/') &&
1288 					    (fpavl_insert(lml, nlmp,
1289 					    nname, 0) == 0))
1290 						return (0);
1291 					DBG_CALL(Dbg_file_skip(LIST(clmp),
1292 					    NAME(nlmp), nname));
1293 				}
1294 			}
1295 
1296 			/*
1297 			 * Record in the file descriptor the existing object
1298 			 * that satisfies this open request.
1299 			 */
1300 			fdesc->fd_nname = nname;
1301 			fdesc->fd_lmp = nlmp;
1302 			return (1);
1303 		}
1304 
1305 		if ((fd = open(nname, O_RDONLY, 0)) == -1) {
1306 			/*
1307 			 * As the file must exist for the previous stat() to
1308 			 * have succeeded, record the error condition.
1309 			 */
1310 			rej->rej_type = SGS_REJ_STR;
1311 			rej->rej_str = strerror(errno);
1312 		} else {
1313 			Fct	*ftp;
1314 
1315 			if ((ftp = are_u_this(rej, fd, &status, nname)) != 0) {
1316 				fdesc->fd_nname = nname;
1317 				fdesc->fd_ftp = ftp;
1318 				fdesc->fd_dev = status.st_dev;
1319 				fdesc->fd_ino = status.st_ino;
1320 				fdesc->fd_fd = fd;
1321 
1322 				/*
1323 				 * Trace that this open has succeeded.
1324 				 */
1325 				if (lml->lm_flags & LML_FLG_TRC_ENABLE) {
1326 				    trace_so(clmp, 0, oname, nname,
1327 					(fdesc->fd_flags & FLG_FD_ALTER), 0);
1328 				}
1329 				return (1);
1330 			}
1331 			(void) close(fd);
1332 		}
1333 
1334 	} else if (errno != ENOENT) {
1335 		/*
1336 		 * If the open() failed for anything other than the file not
1337 		 * existing, record the error condition.
1338 		 */
1339 		rej->rej_type = SGS_REJ_STR;
1340 		rej->rej_str = strerror(errno);
1341 	}
1342 
1343 	/*
1344 	 * Indicate any rejection.
1345 	 */
1346 	if (rej->rej_type) {
1347 		/*
1348 		 * If this pathname was resolved and duplicated, remove the
1349 		 * allocated name to simplify the cleanup of the callers.
1350 		 */
1351 		if (resolved) {
1352 			free((void *)fdesc->fd_pname);
1353 			fdesc->fd_pname = NULL;
1354 		}
1355 		rej->rej_name = nname;
1356 		rej->rej_flag = (fdesc->fd_flags & FLG_FD_ALTER);
1357 		DBG_CALL(Dbg_file_rejected(lml, rej));
1358 	}
1359 	return (0);
1360 }
1361 
1362 /*
1363  * Find a full pathname (it contains a "/").
1364  */
1365 int
1366 find_path(Lm_list *lml, const char *oname, Rt_map *clmp, uint_t flags,
1367     Fdesc *fdesc, Rej_desc *rej)
1368 {
1369 	int	err = 0;
1370 
1371 	/*
1372 	 * If directory configuration exists determine if this path is known.
1373 	 */
1374 	if (rtld_flags & RT_FL_DIRCFG) {
1375 		Rtc_obj		*obj;
1376 		const char	*aname;
1377 
1378 		if ((obj = elf_config_ent(oname, (Word)elf_hash(oname),
1379 		    0, &aname)) != 0) {
1380 			/*
1381 			 * If the configuration file states that this path is a
1382 			 * directory, or the path is explicitly defined as
1383 			 * non-existent (ie. a unused platform specific
1384 			 * library), then go no further.
1385 			 */
1386 			if (obj->co_flags & RTC_OBJ_DIRENT) {
1387 				err = EISDIR;
1388 			} else if ((obj->co_flags &
1389 			    (RTC_OBJ_NOEXIST | RTC_OBJ_ALTER)) ==
1390 			    RTC_OBJ_NOEXIST) {
1391 				err = ENOENT;
1392 			} else if ((obj->co_flags & RTC_OBJ_ALTER) &&
1393 			    (rtld_flags & RT_FL_OBJALT) && (lml == &lml_main)) {
1394 				int	ret;
1395 
1396 				fdesc->fd_flags |= FLG_FD_ALTER;
1397 				/*
1398 				 * Attempt to open the alternative path.  If
1399 				 * this fails, and the alternative is flagged
1400 				 * as optional, fall through to open the
1401 				 * original path.
1402 				 */
1403 				DBG_CALL(Dbg_libs_found(lml, aname,
1404 				    FLG_FD_ALTER));
1405 				if (((ret = file_open(0, lml, oname, aname,
1406 				    clmp, flags, fdesc, rej)) != 0) ||
1407 				    ((obj->co_flags & RTC_OBJ_OPTINAL) == 0))
1408 					return (ret);
1409 
1410 				fdesc->fd_flags &= ~FLG_FD_ALTER;
1411 			}
1412 		}
1413 	}
1414 	DBG_CALL(Dbg_libs_found(lml, oname, 0));
1415 	return (file_open(err, lml, oname, oname, clmp, flags, fdesc, rej));
1416 }
1417 
1418 /*
1419  * Find a simple filename (it doesn't contain a "/").
1420  */
1421 static int
1422 _find_file(Lm_list *lml, const char *oname, const char *nname, Rt_map *clmp,
1423     uint_t flags, Fdesc *fdesc, Rej_desc *rej, Pnode *dir, int aflag)
1424 {
1425 	DBG_CALL(Dbg_libs_found(lml, nname, aflag));
1426 	if ((lml->lm_flags & LML_FLG_TRC_SEARCH) &&
1427 	    ((FLAGS1(clmp) & FL1_RT_LDDSTUB) == 0)) {
1428 		(void) printf(MSG_INTL(MSG_LDD_PTH_TRYING), nname, aflag ?
1429 		    MSG_INTL(MSG_LDD_FIL_ALTER) : MSG_ORIG(MSG_STR_EMPTY));
1430 	}
1431 
1432 	/*
1433 	 * If we're being audited tell the audit library of the file we're about
1434 	 * to go search for.  The audit library may offer an alternative
1435 	 * dependency, or indicate that this dependency should be ignored.
1436 	 */
1437 	if ((lml->lm_tflags | FLAGS1(clmp)) & LML_TFLG_AUD_OBJSEARCH) {
1438 		char	*aname = audit_objsearch(clmp, nname, dir->p_orig);
1439 
1440 		if (aname == 0)
1441 			return (0);
1442 		nname = aname;
1443 	}
1444 	return (file_open(0, lml, oname, nname, clmp, flags, fdesc, rej));
1445 }
1446 
1447 static int
1448 find_file(Lm_list *lml, const char *oname, Rt_map *clmp, uint_t flags,
1449     Fdesc *fdesc, Rej_desc *rej, Pnode *dir, Word * strhash, size_t olen)
1450 {
1451 	static Rtc_obj	Obj = { 0 };
1452 	Rtc_obj *	dobj;
1453 	const char	*nname = oname;
1454 
1455 	if (dir->p_name == 0)
1456 		return (0);
1457 	if (dir->p_info) {
1458 		dobj = (Rtc_obj *)dir->p_info;
1459 		if ((dobj->co_flags &
1460 		    (RTC_OBJ_NOEXIST | RTC_OBJ_ALTER)) == RTC_OBJ_NOEXIST)
1461 			return (0);
1462 	} else
1463 		dobj = 0;
1464 
1465 	/*
1466 	 * If configuration information exists see if this directory/file
1467 	 * combination exists.
1468 	 */
1469 	if ((rtld_flags & RT_FL_DIRCFG) &&
1470 	    ((dobj == 0) || (dobj->co_id != 0))) {
1471 		Rtc_obj		*fobj;
1472 		const char	*alt = 0;
1473 
1474 		/*
1475 		 * If this pnode has not yet been searched for in the
1476 		 * configuration file go find it.
1477 		 */
1478 		if (dobj == 0) {
1479 			dobj = elf_config_ent(dir->p_name,
1480 			    (Word)elf_hash(dir->p_name), 0, 0);
1481 			if (dobj == 0)
1482 				dobj = &Obj;
1483 			dir->p_info = (void *)dobj;
1484 
1485 			if ((dobj->co_flags & (RTC_OBJ_NOEXIST |
1486 			    RTC_OBJ_ALTER)) == RTC_OBJ_NOEXIST)
1487 				return (0);
1488 		}
1489 
1490 		/*
1491 		 * If we found a directory search for the file.
1492 		 */
1493 		if (dobj->co_id != 0) {
1494 			if (*strhash == 0)
1495 				*strhash = (Word)elf_hash(nname);
1496 			fobj = elf_config_ent(nname, *strhash,
1497 			    dobj->co_id, &alt);
1498 
1499 			/*
1500 			 * If this object specifically does not exist, or the
1501 			 * object can't be found in a know-all-entries
1502 			 * directory, continue looking.  If the object does
1503 			 * exist determine if an alternative object exists.
1504 			 */
1505 			if (fobj == 0) {
1506 				if (dobj->co_flags & RTC_OBJ_ALLENTS)
1507 					return (0);
1508 			} else {
1509 				if ((fobj->co_flags & (RTC_OBJ_NOEXIST |
1510 				    RTC_OBJ_ALTER)) == RTC_OBJ_NOEXIST)
1511 					return (0);
1512 
1513 				if ((fobj->co_flags & RTC_OBJ_ALTER) &&
1514 				    (rtld_flags & RT_FL_OBJALT) &&
1515 				    (lml == &lml_main)) {
1516 					int	ret;
1517 
1518 					fdesc->fd_flags |= FLG_FD_ALTER;
1519 					/*
1520 					 * Attempt to open the alternative path.
1521 					 * If this fails, and the alternative is
1522 					 * flagged as optional, fall through to
1523 					 * open the original path.
1524 					 */
1525 					ret = _find_file(lml, oname, alt, clmp,
1526 					    flags, fdesc, rej, dir, 1);
1527 					if (ret || ((fobj->co_flags &
1528 					    RTC_OBJ_OPTINAL) == 0))
1529 						return (ret);
1530 
1531 					fdesc->fd_flags &= ~FLG_FD_ALTER;
1532 				}
1533 			}
1534 		}
1535 	}
1536 
1537 	/*
1538 	 * Protect ourselves from building an invalid pathname.
1539 	 */
1540 	if ((olen + dir->p_len + 1) >= PATH_MAX) {
1541 		eprintf(lml, ERR_FATAL, MSG_INTL(MSG_SYS_OPEN), nname,
1542 		    strerror(ENAMETOOLONG));
1543 			return (0);
1544 	}
1545 	if ((nname = (LM_GET_SO(clmp)(dir->p_name, nname))) == 0)
1546 		return (0);
1547 
1548 	return (_find_file(lml, oname, nname, clmp, flags, fdesc, rej, dir, 0));
1549 }
1550 
1551 /*
1552  * A unique file has been opened.  Create a link-map to represent it, and
1553  * process the various names by which it can be referenced.
1554  */
1555 static Rt_map *
1556 load_file(Lm_list *lml, Aliste lmco, Fdesc *fdesc)
1557 {
1558 	const char	*oname = fdesc->fd_oname;
1559 	const char	*nname = fdesc->fd_nname;
1560 	Rt_map		*nlmp;
1561 
1562 	/*
1563 	 * Typically we call fct_map_so() with the full pathname of the opened
1564 	 * file (nname) and the name that started the search (oname), thus for
1565 	 * a typical dependency on libc this would be /usr/lib/libc.so.1 and
1566 	 * libc.so.1 (DT_NEEDED).  The original name is maintained on an ALIAS
1567 	 * list for comparison when bringing in new dependencies.  If the user
1568 	 * specified name as a full path (from a dlopen() for example) then
1569 	 * there's no need to create an ALIAS.
1570 	 */
1571 	if (strcmp(oname, nname) == 0)
1572 		oname = 0;
1573 
1574 	/*
1575 	 * A new file has been opened, now map it into the process.  Close the
1576 	 * original file so as not to accumulate file descriptors.
1577 	 */
1578 	nlmp = ((fdesc->fd_ftp)->fct_map_so)(lml, lmco, nname, oname,
1579 	    fdesc->fd_fd);
1580 	(void) close(fdesc->fd_fd);
1581 	fdesc->fd_fd = 0;
1582 
1583 	if (nlmp == 0)
1584 		return (0);
1585 
1586 	/*
1587 	 * Save the dev/inode information for later comparisons.
1588 	 */
1589 	STDEV(nlmp) = fdesc->fd_dev;
1590 	STINO(nlmp) = fdesc->fd_ino;
1591 
1592 	/*
1593 	 * Insert the names of this link-map into the FullpathNode AVL tree.
1594 	 * Save both the NAME() and PATHNAME() is they differ.
1595 	 *
1596 	 * If this is an OBJECT file, don't insert it yet as this is only a
1597 	 * temporary link-map.  During elf_obj_fini() the final link-map is
1598 	 * created, and its names will be inserted in the FullpathNode AVL
1599 	 * tree at that time.
1600 	 */
1601 	if ((FLAGS(nlmp) & FLG_RT_OBJECT) == 0) {
1602 		/*
1603 		 * Update the objects full path information if necessary.
1604 		 * Note, with pathname expansion in effect, the fd_pname will
1605 		 * be used as PATHNAME().  This allocated string will be freed
1606 		 * should this object be deleted.  However, without pathname
1607 		 * expansion, the fd_name should be freed now, as it is no
1608 		 * longer referenced.
1609 		 */
1610 		if (FLAGS1(nlmp) & FL1_RT_RELATIVE)
1611 			(void) fullpath(nlmp, fdesc->fd_pname);
1612 		else if (fdesc->fd_pname != fdesc->fd_nname)
1613 			free((void *)fdesc->fd_pname);
1614 		fdesc->fd_pname = 0;
1615 
1616 		if ((NAME(nlmp)[0] == '/') && (fpavl_insert(lml, nlmp,
1617 		    NAME(nlmp), fdesc->fd_avlwhere) == 0)) {
1618 			remove_so(lml, nlmp);
1619 			return (0);
1620 		}
1621 		if (((NAME(nlmp)[0] != '/') ||
1622 		    (NAME(nlmp) != PATHNAME(nlmp))) &&
1623 		    (fpavl_insert(lml, nlmp, PATHNAME(nlmp), 0) == 0)) {
1624 			remove_so(lml, nlmp);
1625 			return (0);
1626 		}
1627 	}
1628 
1629 	/*
1630 	 * If we're processing an alternative object reset the original name
1631 	 * for possible $ORIGIN processing.
1632 	 */
1633 	if (fdesc->fd_flags & FLG_FD_ALTER) {
1634 		const char	*odir;
1635 		char		*ndir;
1636 		size_t		olen;
1637 
1638 		FLAGS(nlmp) |= FLG_RT_ALTER;
1639 
1640 		/*
1641 		 * If we were given a pathname containing a slash then the
1642 		 * original name is still in oname.  Otherwise the original
1643 		 * directory is in dir->p_name (which is all we need for
1644 		 * $ORIGIN).
1645 		 */
1646 		if (fdesc->fd_flags & FLG_FD_SLASH) {
1647 			char	*ofil;
1648 
1649 			odir = oname;
1650 			ofil = strrchr(oname, '/');
1651 			olen = ofil - odir + 1;
1652 		} else {
1653 			odir = fdesc->fd_odir;
1654 			olen = strlen(odir) + 1;
1655 		}
1656 
1657 		if ((ndir = (char *)malloc(olen)) == 0) {
1658 			remove_so(lml, nlmp);
1659 			return (0);
1660 		}
1661 		(void) strncpy(ndir, odir, olen);
1662 		ndir[--olen] = '\0';
1663 
1664 		ORIGNAME(nlmp) = ndir;
1665 		DIRSZ(nlmp) = olen;
1666 	}
1667 
1668 	/*
1669 	 * Identify this as a new object.
1670 	 */
1671 	FLAGS(nlmp) |= FLG_RT_NEWLOAD;
1672 
1673 	return (nlmp);
1674 }
1675 
1676 /*
1677  * This function loads the named file and returns a pointer to its link map.
1678  * It is assumed that the caller has already checked that the file is not
1679  * already loaded before calling this function (refer is_so_loaded()).
1680  * Find and open the file, map it into memory, add it to the end of the list
1681  * of link maps and return a pointer to the new link map.  Return 0 on error.
1682  */
1683 static Rt_map *
1684 load_so(Lm_list *lml, Aliste lmco, const char *oname, Rt_map *clmp,
1685     uint_t flags, Fdesc *nfdp, Rej_desc *rej)
1686 {
1687 	char		*name;
1688 	uint_t		slash = 0;
1689 	size_t		olen;
1690 	Fdesc		fdesc = { 0 };
1691 	Pnode		*dir;
1692 
1693 	/*
1694 	 * If the file is the run time linker then it's already loaded.
1695 	 */
1696 	if (interp && (strcmp(oname, NAME(lml_rtld.lm_head)) == 0))
1697 		return (lml_rtld.lm_head);
1698 
1699 	/*
1700 	 * If this isn't a hardware capabilites pathname, which is already a
1701 	 * full, duplicated pathname, determine whether the pathname contains
1702 	 * a slash, and if not determine the input filename (for max path
1703 	 * length verification).
1704 	 */
1705 	if ((flags & FLG_RT_HWCAP) == 0) {
1706 		const char	*str;
1707 
1708 		for (str = oname; *str; str++) {
1709 			if (*str == '/') {
1710 				slash++;
1711 				break;
1712 			}
1713 		}
1714 		if (slash == 0)
1715 			olen = (str - oname) + 1;
1716 	}
1717 
1718 	/*
1719 	 * If we are passed a 'null' link-map this means that this is the first
1720 	 * object to be loaded on this link-map list.  In that case we set the
1721 	 * link-map to ld.so.1's link-map.
1722 	 *
1723 	 * This link-map is referenced to determine what lookup rules to use
1724 	 * when searching for files.  By using ld.so.1's we are defaulting to
1725 	 * ELF look-up rules.
1726 	 *
1727 	 * Note: This case happens when loading the first object onto
1728 	 *	 the plt_tracing link-map.
1729 	 */
1730 	if (clmp == 0)
1731 		clmp = lml_rtld.lm_head;
1732 
1733 	/*
1734 	 * If this path resulted from a $HWCAP specification, then the best
1735 	 * hardware capability object has already been establish, and is
1736 	 * available in the calling file descriptor.  Perform some minor book-
1737 	 * keeping so that we can fall through into common code.
1738 	 */
1739 	if (flags & FLG_RT_HWCAP) {
1740 		/*
1741 		 * If this object is already loaded, we're done.
1742 		 */
1743 		if (nfdp->fd_lmp)
1744 			return (nfdp->fd_lmp);
1745 
1746 		/*
1747 		 * Obtain the avl index for this object.
1748 		 */
1749 		(void) fpavl_loaded(lml, nfdp->fd_nname, &(nfdp->fd_avlwhere));
1750 
1751 		/*
1752 		 * If the name and resolved pathname differ, duplicate the path
1753 		 * name once more to provide for genric cleanup by the caller.
1754 		 */
1755 		if (nfdp->fd_pname && (nfdp->fd_nname != nfdp->fd_pname)) {
1756 			char	*pname;
1757 
1758 			if ((pname = strdup(nfdp->fd_pname)) == NULL)
1759 				return (0);
1760 			nfdp->fd_pname = pname;
1761 		}
1762 	} else if (slash) {
1763 		Rej_desc	_rej = { 0 };
1764 
1765 		*nfdp = fdesc;
1766 		nfdp->fd_flags = FLG_FD_SLASH;
1767 
1768 		if (find_path(lml, oname, clmp, flags, nfdp, &_rej) == 0) {
1769 			rejection_inherit(rej, &_rej, nfdp);
1770 			return (0);
1771 		}
1772 
1773 		/*
1774 		 * If this object is already loaded, we're done.
1775 		 */
1776 		if (nfdp->fd_lmp)
1777 			return (nfdp->fd_lmp);
1778 
1779 	} else {
1780 		/*
1781 		 * No '/' - for each directory on list, make a pathname using
1782 		 * that directory and filename and try to open that file.
1783 		 */
1784 		Pnode		*dirlist = (Pnode *)0;
1785 		Word		strhash = 0;
1786 #if	!defined(ISSOLOAD_BASENAME_DISABLED)
1787 		Rt_map		*nlmp;
1788 #endif
1789 		DBG_CALL(Dbg_libs_find(lml, oname));
1790 
1791 #if	!defined(ISSOLOAD_BASENAME_DISABLED)
1792 		if ((nlmp = is_so_loaded(lml, oname)))
1793 			return (nlmp);
1794 #endif
1795 		/*
1796 		 * Make sure we clear the file descriptor new name in case the
1797 		 * following directory search doesn't provide any directories
1798 		 * (odd, but this can be forced with a -znodefaultlib test).
1799 		 */
1800 		*nfdp = fdesc;
1801 		for (dir = get_next_dir(&dirlist, clmp, flags); dir;
1802 		    dir = get_next_dir(&dirlist, clmp, flags)) {
1803 			Rej_desc	_rej = { 0 };
1804 
1805 			*nfdp = fdesc;
1806 
1807 			/*
1808 			 * Try and locate this file.  Make sure to clean up
1809 			 * any rejection information should the file have
1810 			 * been found, but not appropriate.
1811 			 */
1812 			if (find_file(lml, oname, clmp, flags, nfdp, &_rej,
1813 			    dir, &strhash, olen) == 0) {
1814 				rejection_inherit(rej, &_rej, nfdp);
1815 				continue;
1816 			}
1817 
1818 			/*
1819 			 * If this object is already loaded, we're done.
1820 			 */
1821 			if (nfdp->fd_lmp)
1822 				return (nfdp->fd_lmp);
1823 
1824 			nfdp->fd_odir = dir->p_name;
1825 			break;
1826 		}
1827 
1828 		/*
1829 		 * If the file couldn't be loaded, do another comparison of
1830 		 * loaded files using just the basename.  This catches folks
1831 		 * who may have loaded multiple full pathname files (possibly
1832 		 * from setxid applications) to satisfy dependency relationships
1833 		 * (i.e., a file might have a dependency on foo.so.1 which has
1834 		 * already been opened using its full pathname).
1835 		 */
1836 		if (nfdp->fd_nname == NULL)
1837 			return (is_so_loaded(lml, oname));
1838 	}
1839 
1840 	/*
1841 	 * Duplicate the file name so that NAME() is available in core files.
1842 	 * Note, that hardware capability names are already duplicated, but
1843 	 * they get duplicated once more to insure consistent cleanup in the
1844 	 * event of an error condition.
1845 	 */
1846 	if ((name = strdup(nfdp->fd_nname)) == NULL)
1847 		return (0);
1848 
1849 	if (nfdp->fd_nname == nfdp->fd_pname)
1850 		nfdp->fd_nname = nfdp->fd_pname = name;
1851 	else
1852 		nfdp->fd_nname = name;
1853 
1854 	/*
1855 	 * Finish mapping the file and return the link-map descriptor.  Note,
1856 	 * if this request originated from a HWCAP request, re-establish the
1857 	 * fdesc information.  For single paged objects, such as filters, the
1858 	 * original mapping may have been sufficient to capture the file, thus
1859 	 * this mapping needs to be reset to insure it doesn't mistakenly get
1860 	 * unmapped as part of HWCAP cleanup.
1861 	 */
1862 	return (load_file(lml, lmco, nfdp));
1863 }
1864 
1865 /*
1866  * Trace an attempt to load an object.
1867  */
1868 const char *
1869 load_trace(Lm_list *lml, const char *name, Rt_map *clmp)
1870 {
1871 	/*
1872 	 * First generate any ldd(1) diagnostics.
1873 	 */
1874 	if ((lml->lm_flags & (LML_FLG_TRC_VERBOSE | LML_FLG_TRC_SEARCH)) &&
1875 	    ((FLAGS1(clmp) & FL1_RT_LDDSTUB) == 0))
1876 		(void) printf(MSG_INTL(MSG_LDD_FIL_FIND), name, NAME(clmp));
1877 
1878 	/*
1879 	 * If we're being audited tell the audit library of the file we're
1880 	 * about to go search for.
1881 	 */
1882 	if (((lml->lm_tflags | FLAGS1(clmp)) & LML_TFLG_AUD_ACTIVITY) &&
1883 	    (lml == LIST(clmp)))
1884 		audit_activity(clmp, LA_ACT_ADD);
1885 
1886 	if ((lml->lm_tflags | FLAGS1(clmp)) & LML_TFLG_AUD_OBJSEARCH) {
1887 		char	*_name;
1888 
1889 		/*
1890 		 * The auditor can indicate that this object should be ignored.
1891 		 */
1892 		if ((_name = audit_objsearch(clmp, name, LA_SER_ORIG)) == 0) {
1893 			eprintf(lml, ERR_FATAL, MSG_INTL(MSG_GEN_AUDITERM),
1894 			    name);
1895 			return (0);
1896 		}
1897 
1898 		/*
1899 		 * The auditor can provide an alternative name.  Provided we
1900 		 * can duplicate the name, return the new name and free the
1901 		 * old.  Otherwise, leave the old name for the caller to use
1902 		 * in any error diagnostic.
1903 		 */
1904 		if (_name != name) {
1905 			if ((_name = strdup(_name)) != NULL)
1906 				free((void *)name);
1907 			name = _name;
1908 		}
1909 	}
1910 	return (name);
1911 }
1912 
1913 /*
1914  * Having loaded an object and created a link-map to describe it, finish
1915  * processing this stage, including verifying any versioning requirements,
1916  * updating the objects mode, creating a handle if necessary, and adding this
1917  * object to existing handles if required.
1918  */
1919 static int
1920 load_finish(Lm_list *lml, const char *name, Rt_map *clmp, int nmode,
1921     uint_t flags, Grp_hdl **hdl, Rt_map *nlmp)
1922 {
1923 	Aliste		off;
1924 	Grp_hdl		*ghp, **ghpp;
1925 	int		promote;
1926 
1927 	/*
1928 	 * If this dependency is associated with a required version insure that
1929 	 * the version is present in the loaded file.
1930 	 */
1931 	if (((rtld_flags & RT_FL_NOVERSION) == 0) &&
1932 	    (FCT(clmp) == &elf_fct) && VERNEED(clmp) &&
1933 	    (LM_VERIFY_VERS(clmp)(name, clmp, nlmp) == 0))
1934 		return (0);
1935 
1936 	/*
1937 	 * If this object has indicated that it should be isolated as a group
1938 	 * (DT_FLAGS_1 contains DF_1_GROUP - object was built with -B group),
1939 	 * or if the callers direct bindings indicate it should be isolated as
1940 	 * a group (DYNINFO flags contains FLG_DI_GROUP - dependency followed
1941 	 * -zgroupperm), establish the appropriate mode.
1942 	 *
1943 	 * The intent of an object defining itself as a group is to isolate the
1944 	 * relocation of the group within its own members, however, unless
1945 	 * opened through dlopen(), in which case we assume dlsym() will be used
1946 	 * to located symbols in the new object, we still need to associate it
1947 	 * with the caller for it to be bound with.  This is equivalent to a
1948 	 * dlopen(RTLD_GROUP) and dlsym() using the returned handle.
1949 	 */
1950 	if ((FLAGS(nlmp) | flags) & FLG_RT_SETGROUP) {
1951 		nmode &= ~RTLD_WORLD;
1952 		nmode |= RTLD_GROUP;
1953 
1954 		/*
1955 		 * If the object wasn't explicitly dlopen()'ed associate it with
1956 		 * the parent.
1957 		 */
1958 		if ((flags & FLG_RT_HANDLE) == 0)
1959 			nmode |= RTLD_PARENT;
1960 	}
1961 
1962 	/*
1963 	 * Establish new mode and flags.
1964 	 *
1965 	 * For patch backward compatibility, the following use of update_mode()
1966 	 * is disabled.
1967 	 */
1968 #ifdef	SIEBEL_DISABLE
1969 	if (rtld_flags & RT_FL_DISFIX_1)
1970 		promote = MODE(nlmp) |=
1971 		    (nmode & ~(RTLD_PARENT | RTLD_NOLOAD | RTLD_FIRST));
1972 	else
1973 #endif
1974 		promote = update_mode(nlmp, MODE(nlmp), nmode);
1975 
1976 	FLAGS(nlmp) |= flags;
1977 
1978 	/*
1979 	 * If this is a global object, ensure the associated link-map list can
1980 	 * be rescanned for global, lazy dependencies.
1981 	 */
1982 	if (MODE(nlmp) & RTLD_GLOBAL)
1983 		LIST(nlmp)->lm_flags &= ~LML_FLG_NOPENDGLBLAZY;
1984 
1985 	/*
1986 	 * If we've been asked to establish a handle create one for this object.
1987 	 * Or, if this object has already been analyzed, but this reference
1988 	 * requires that the mode of the object be promoted, also create a
1989 	 * handle to propagate the new modes to all this objects dependencies.
1990 	 */
1991 	if (((FLAGS(nlmp) | flags) & FLG_RT_HANDLE) || (promote &&
1992 	    (FLAGS(nlmp) & FLG_RT_ANALYZED))) {
1993 		uint_t	oflags, hflags = 0;
1994 
1995 		if (nmode & RTLD_PARENT)
1996 			hflags |=  GPH_PARENT;
1997 		if (nmode & RTLD_FIRST)
1998 			hflags |=  GPH_FIRST;
1999 
2000 		/*
2001 		 * Now that a handle is being created, remove this state from
2002 		 * the object so that it doesn't mistakenly get inherited by
2003 		 * a dependency.
2004 		 */
2005 		oflags = FLAGS(nlmp);
2006 		FLAGS(nlmp) &= ~FLG_RT_HANDLE;
2007 
2008 		if ((ghp = hdl_create(lml, nlmp, clmp, hflags)) == 0)
2009 			return (0);
2010 
2011 		/*
2012 		 * Add any dependencies that are already loaded, to the handle.
2013 		 */
2014 		if (hdl_initialize(ghp, nlmp, nmode, promote) == 0)
2015 			return (0);
2016 
2017 		if (hdl)
2018 			*hdl = ghp;
2019 
2020 		/*
2021 		 * If we were asked to create a handle, we're done.  Otherwise,
2022 		 * remove the handle. The handle was only used to establish this
2023 		 * objects dependencies and promote any modes, so we don't want
2024 		 * this handle preventing the objects deletion.  Fall through to
2025 		 * carry out any group processing.
2026 		 */
2027 		if ((oflags | flags) & FLG_RT_HANDLE)
2028 			return (1);
2029 
2030 		free_hdl(ghp);
2031 	}
2032 
2033 	/*
2034 	 * If the caller isn't part of a group we're done.
2035 	 */
2036 	if (GROUPS(clmp) == 0)
2037 		return (1);
2038 
2039 	/*
2040 	 * Determine if our caller is already associated with a handle, if so
2041 	 * we need to add this object to any handles that already exist.
2042 	 * Traverse the list of groups our caller is a member of and add this
2043 	 * new link-map to those groups.
2044 	 */
2045 	DBG_CALL(Dbg_file_hdl_title(DBG_DEP_ADD));
2046 	for (ALIST_TRAVERSE(GROUPS(clmp), off, ghpp)) {
2047 		Aliste		off1;
2048 		Grp_desc	*gdp;
2049 		int		exist;
2050 		Rt_map		**lmpp;
2051 		Alist		*lmalp = 0;
2052 
2053 		ghp = *ghpp;
2054 
2055 		/*
2056 		 * If the caller doesn't indicate that its dependencies should
2057 		 * be added to a handle, ignore it.  This case identifies a
2058 		 * parent of a dlopen(RTLD_PARENT) request.
2059 		 */
2060 		for (ALIST_TRAVERSE(ghp->gh_depends, off1, gdp)) {
2061 			if (gdp->gd_depend == clmp)
2062 				break;
2063 		}
2064 		if ((gdp->gd_flags & GPD_ADDEPS) == 0)
2065 			continue;
2066 
2067 		if ((exist = hdl_add(ghp, nlmp,
2068 		    (GPD_AVAIL | GPD_ADDEPS))) == 0)
2069 			return (0);
2070 
2071 		/*
2072 		 * If this member already exists then its dependencies will
2073 		 * have already been processed.
2074 		 */
2075 		if (exist == ALE_EXISTS)
2076 			continue;
2077 
2078 		/*
2079 		 * If the object we've added has just been opened, it will not
2080 		 * yet have been processed for its dependencies, these will be
2081 		 * added on later calls to load_one().  If it doesn't have any
2082 		 * dependencies we're also done.
2083 		 */
2084 		if (((FLAGS(nlmp) & FLG_RT_ANALYZED) == 0) ||
2085 		    (DEPENDS(nlmp) == 0))
2086 			continue;
2087 
2088 		/*
2089 		 * Otherwise, this object exists and has dependencies, so add
2090 		 * all of its dependencies to the handle were operating on.
2091 		 */
2092 		if (alist_append(&lmalp, &nlmp, sizeof (Rt_map *),
2093 		    AL_CNT_DEPCLCT) == 0)
2094 			return (0);
2095 
2096 		for (ALIST_TRAVERSE(lmalp, off1, lmpp)) {
2097 			Rt_map *	dlmp1 = *lmpp;
2098 			Aliste		off2;
2099 			Bnd_desc **	bdpp;
2100 
2101 			/*
2102 			 * Add any dependencies of this dependency to the
2103 			 * dynamic dependency list so they can be further
2104 			 * processed.
2105 			 */
2106 			for (ALIST_TRAVERSE(DEPENDS(dlmp1), off2, bdpp)) {
2107 				Bnd_desc *	bdp = *bdpp;
2108 				Rt_map *	dlmp2 = bdp->b_depend;
2109 
2110 				if ((bdp->b_flags & BND_NEEDED) == 0)
2111 					continue;
2112 
2113 				if (alist_test(&lmalp, dlmp2, sizeof (Rt_map *),
2114 				    AL_CNT_DEPCLCT) == 0) {
2115 					free(lmalp);
2116 					return (0);
2117 				}
2118 			}
2119 
2120 			if (nlmp == dlmp1)
2121 				continue;
2122 
2123 			if ((exist = hdl_add(ghp, dlmp1,
2124 			    (GPD_AVAIL | GPD_ADDEPS))) != 0) {
2125 				if (exist == ALE_CREATE)
2126 				    (void) update_mode(dlmp1, MODE(dlmp1),
2127 					nmode);
2128 				continue;
2129 			}
2130 			free(lmalp);
2131 			return (0);
2132 		}
2133 		free(lmalp);
2134 	}
2135 	return (1);
2136 }
2137 
2138 /*
2139  * The central routine for loading shared objects.  Insures ldd() diagnostics,
2140  * handles and any other related additions are all done in one place.
2141  */
2142 static Rt_map *
2143 _load_path(Lm_list *lml, Aliste lmco, const char *name, Rt_map *clmp,
2144     int nmode, uint_t flags, Grp_hdl ** hdl, Fdesc *nfdp, Rej_desc *rej)
2145 {
2146 	Rt_map	*nlmp;
2147 
2148 	if ((nmode & RTLD_NOLOAD) == 0) {
2149 		/*
2150 		 * If this isn't a noload request attempt to load the file.
2151 		 */
2152 		if ((name = load_trace(lml, name, clmp)) == 0)
2153 			return (0);
2154 
2155 		if ((nlmp = load_so(lml, lmco, name, clmp, flags,
2156 		    nfdp, rej)) == 0)
2157 			return (0);
2158 
2159 		/*
2160 		 * If we've loaded a library which identifies itself as not
2161 		 * being dlopen()'able catch it here.  Let non-dlopen()'able
2162 		 * objects through under RTLD_CONFGEN as they're only being
2163 		 * mapped to be dldump()'ed.
2164 		 */
2165 		if ((rtld_flags & RT_FL_APPLIC) && ((FLAGS(nlmp) &
2166 		    (FLG_RT_NOOPEN | FLG_RT_RELOCED)) == FLG_RT_NOOPEN) &&
2167 		    ((nmode & RTLD_CONFGEN) == 0)) {
2168 			Rej_desc	_rej = { 0 };
2169 
2170 			_rej.rej_name = name;
2171 			_rej.rej_type = SGS_REJ_STR;
2172 			_rej.rej_str = MSG_INTL(MSG_GEN_NOOPEN);
2173 			DBG_CALL(Dbg_file_rejected(lml, &_rej));
2174 			rejection_inherit(rej, &_rej, nfdp);
2175 			remove_so(lml, nlmp);
2176 			return (0);
2177 		}
2178 	} else {
2179 		/*
2180 		 * If it's a NOLOAD request - check to see if the object
2181 		 * has already been loaded.
2182 		 */
2183 		/* LINTED */
2184 		if (nlmp = is_so_loaded(lml, name)) {
2185 			if ((lml->lm_flags & LML_FLG_TRC_VERBOSE) &&
2186 			    ((FLAGS1(clmp) & FL1_RT_LDDSTUB) == 0)) {
2187 				(void) printf(MSG_INTL(MSG_LDD_FIL_FIND), name,
2188 					NAME(clmp));
2189 				if (*name == '/')
2190 				    (void) printf(MSG_ORIG(MSG_LDD_FIL_PATH),
2191 					name, MSG_ORIG(MSG_STR_EMPTY),
2192 					MSG_ORIG(MSG_STR_EMPTY));
2193 				else
2194 				    (void) printf(MSG_ORIG(MSG_LDD_FIL_EQUIV),
2195 					name, NAME(nlmp),
2196 					MSG_ORIG(MSG_STR_EMPTY),
2197 					MSG_ORIG(MSG_STR_EMPTY));
2198 			}
2199 		} else {
2200 			Rej_desc	_rej = { 0 };
2201 
2202 			_rej.rej_name = name;
2203 			_rej.rej_type = SGS_REJ_STR;
2204 			_rej.rej_str = strerror(ENOENT);
2205 			DBG_CALL(Dbg_file_rejected(lml, &_rej));
2206 			rejection_inherit(rej, &_rej, nfdp);
2207 			return (0);
2208 		}
2209 	}
2210 
2211 	/*
2212 	 * Finish processing this loaded object.
2213 	 */
2214 	if (load_finish(lml, name, clmp, nmode, flags, hdl, nlmp) == 0) {
2215 		FLAGS(nlmp) &= ~FLG_RT_NEWLOAD;
2216 
2217 		/*
2218 		 * If this object has already been analyzed, then it is in use,
2219 		 * so even though this operation has failed, it should not be
2220 		 * torn down.
2221 		 */
2222 		if ((FLAGS(nlmp) & FLG_RT_ANALYZED) == 0)
2223 			remove_so(lml, nlmp);
2224 		return (0);
2225 	}
2226 
2227 	/*
2228 	 * If this object is new, and we're being audited, tell the audit
2229 	 * library of the file we've just opened.  Note, if the new link-map
2230 	 * requires local auditing of its dependencies we also register its
2231 	 * opening.
2232 	 */
2233 	if (FLAGS(nlmp) & FLG_RT_NEWLOAD) {
2234 		FLAGS(nlmp) &= ~FLG_RT_NEWLOAD;
2235 
2236 		if (((lml->lm_tflags | FLAGS1(clmp) | FLAGS1(nlmp)) &
2237 		    LML_TFLG_AUD_MASK) && (((lml->lm_flags |
2238 		    LIST(clmp)->lm_flags) & LML_FLG_NOAUDIT) == 0)) {
2239 			if (audit_objopen(clmp, nlmp) == 0) {
2240 				remove_so(lml, nlmp);
2241 				return (0);
2242 			}
2243 		}
2244 	}
2245 	return (nlmp);
2246 }
2247 
2248 Rt_map *
2249 load_path(Lm_list *lml, Aliste lmco, const char *name, Rt_map *clmp,
2250     int nmode, uint_t flags, Grp_hdl **hdl, Fdesc *cfdp, Rej_desc *rej)
2251 {
2252 	Rt_map	*lmp;
2253 	Fdesc	nfdp = { 0 };
2254 
2255 	/*
2256 	 * If this path resulted from a $HWCAP specification, then the best
2257 	 * hardware capability object has already been establish, and is
2258 	 * available in the calling file descriptor.
2259 	 */
2260 	if (flags & FLG_RT_HWCAP) {
2261 		if (cfdp->fd_lmp == 0) {
2262 			/*
2263 			 * If this object hasn't yet been mapped, re-establish
2264 			 * the file descriptor structure to reflect this objects
2265 			 * original initial page mapping.  Make sure any present
2266 			 * file descriptor mapping is removed before overwriting
2267 			 * the structure.
2268 			 */
2269 #if	defined(MAP_ALIGN)
2270 			if (fmap->fm_maddr &&
2271 			    ((fmap->fm_mflags & MAP_ALIGN) == 0))
2272 #else
2273 			if (fmap->fm_maddr)
2274 #endif
2275 				(void) munmap(fmap->fm_maddr, fmap->fm_msize);
2276 		}
2277 		nfdp = *cfdp;
2278 		*fmap = cfdp->fd_fmap;
2279 	}
2280 
2281 	lmp = _load_path(lml, lmco, name, clmp, nmode, flags, hdl, &nfdp, rej);
2282 
2283 	/*
2284 	 * If this path originated from a $HWCAP specification, re-establish the
2285 	 * fdesc information.  For single paged objects, such as filters, the
2286 	 * original mapping may have been sufficient to capture the file, thus
2287 	 * this mapping needs to be reset to insure it doesn't mistakenly get
2288 	 * unmapped as part of HWCAP cleanup.
2289 	 */
2290 	if (flags & FLG_RT_HWCAP) {
2291 		cfdp->fd_fmap.fm_maddr = fmap->fm_maddr;
2292 		cfdp->fd_fmap.fm_mflags = fmap->fm_mflags;
2293 		cfdp->fd_fd = nfdp.fd_fd;
2294 	}
2295 
2296 	return (lmp);
2297 }
2298 
2299 /*
2300  * Load one object from a possible list of objects.  Typically, for requests
2301  * such as NEEDED's, only one object is specified.  However, this object could
2302  * be specified using $ISALIST or $HWCAP, in which case only the first object
2303  * that can be loaded is used (ie. the best).
2304  */
2305 Rt_map *
2306 load_one(Lm_list *lml, Aliste lmco, Pnode *pnp, Rt_map *clmp, int mode,
2307     uint_t flags, Grp_hdl ** hdl)
2308 {
2309 	Rej_desc	rej = { 0 };
2310 	Pnode   	*tpnp;
2311 	const char	*name;
2312 	Rt_map		*tlmp;
2313 
2314 	for (tpnp = pnp; tpnp && tpnp->p_name; tpnp = tpnp->p_next) {
2315 		/*
2316 		 * A Hardware capabilities requirement can itself expand into
2317 		 * a number of candidates.
2318 		 */
2319 		if (tpnp->p_orig & PN_TKN_HWCAP) {
2320 			if ((tlmp = load_hwcap(lml, lmco, tpnp->p_name, clmp,
2321 			    mode, (flags | FLG_RT_HWCAP), hdl, &rej)) != 0) {
2322 				remove_rej(&rej);
2323 				return (tlmp);
2324 			}
2325 		} else {
2326 			if ((tlmp = load_path(lml, lmco, tpnp->p_name, clmp,
2327 			    mode, flags, hdl, 0, &rej)) != 0) {
2328 				remove_rej(&rej);
2329 				return (tlmp);
2330 			}
2331 		}
2332 	}
2333 
2334 	/*
2335 	 * If this pathname originated from an expanded token, use the original
2336 	 * for any diagnostic output.
2337 	 */
2338 	if ((name = pnp->p_oname) == 0)
2339 		name = pnp->p_name;
2340 
2341 	file_notfound(lml, name, clmp, flags, &rej);
2342 	remove_rej(&rej);
2343 	return (0);
2344 }
2345 
2346 /*
2347  * Determine whether a symbol is defined as an interposer.
2348  */
2349 int
2350 is_sym_interposer(Rt_map *lmp, Sym *sym)
2351 {
2352 	Syminfo	*sip = SYMINFO(lmp);
2353 
2354 	if (sip) {
2355 		ulong_t	ndx;
2356 
2357 		ndx = (((ulong_t)sym - (ulong_t)SYMTAB(lmp)) / SYMENT(lmp));
2358 		/* LINTED */
2359 		sip = (Syminfo *)((char *)sip + (ndx * SYMINENT(lmp)));
2360 		if (sip->si_flags & SYMINFO_FLG_INTERPOSE)
2361 			return (1);
2362 	}
2363 	return (0);
2364 }
2365 
2366 /*
2367  * While processing direct or group bindings, determine whether the object to
2368  * which we've bound can be interposed upon.  In this context, copy relocations
2369  * are a form of interposition.
2370  */
2371 static Sym *
2372 lookup_sym_interpose(Slookup *slp, Rt_map **dlmp, uint_t *binfo, Lm_list *lml,
2373     Sym *sym)
2374 {
2375 	Rt_map		*lmp;
2376 	Slookup		sl;
2377 
2378 	/*
2379 	 * If we've bound to a copy relocation definition then we need to assign
2380 	 * this binding to the original copy reference.  Fabricate an inter-
2381 	 * position diagnostic, as this is a legitimate form of interposition.
2382 	 */
2383 	if (FLAGS1(*dlmp) & FL1_RT_COPYTOOK) {
2384 		Rel_copy	*rcp;
2385 		Aliste		off;
2386 
2387 		for (ALIST_TRAVERSE(COPY(*dlmp), off, rcp)) {
2388 			if ((sym == rcp->r_dsym) || (sym->st_value &&
2389 			    (sym->st_value == rcp->r_dsym->st_value))) {
2390 				*dlmp = rcp->r_rlmp;
2391 				*binfo |=
2392 				    (DBG_BINFO_INTERPOSE | DBG_BINFO_COPYREF);
2393 				return (rcp->r_rsym);
2394 			}
2395 		}
2396 	}
2397 
2398 	if ((lml->lm_flags & LML_FLG_INTRPOSE) == 0)
2399 		return ((Sym *)0);
2400 
2401 	/*
2402 	 * Traverse the list of known interposers to determine whether any
2403 	 * offer the same symbol.  Note, the head of the link-map could be
2404 	 * identified as an interposer.  If it is, make sure we only look for
2405 	 * symbol definitions.  Otherwise, skip the head of the link-map, so
2406 	 * that we don't bind to any .plt references, or copy-relocations
2407 	 * unintentionally.
2408 	 */
2409 	lmp = lml->lm_head;
2410 	sl = *slp;
2411 	if (((FLAGS(lmp) & MSK_RT_INTPOSE) == 0) || (sl.sl_flags & LKUP_COPY))
2412 		lmp = (Rt_map *)NEXT(lmp);
2413 	else
2414 		sl.sl_flags &= ~LKUP_SPEC;
2415 
2416 	for (; lmp; lmp = (Rt_map *)NEXT(lmp)) {
2417 		if (FLAGS(lmp) & FLG_RT_DELETE)
2418 			continue;
2419 		if ((FLAGS(lmp) & MSK_RT_INTPOSE) == 0)
2420 			break;
2421 
2422 		if (callable(lmp, *dlmp, 0)) {
2423 			Rt_map	*ilmp;
2424 
2425 			sl.sl_imap = lmp;
2426 			if (sym = SYMINTP(lmp)(&sl, &ilmp, binfo)) {
2427 				/*
2428 				 * If this object provides individual symbol
2429 				 * interposers, make sure that the symbol we
2430 				 * have found is tagged as an interposer.
2431 				 */
2432 				if ((FLAGS(ilmp) & FLG_RT_SYMINTPO) &&
2433 				    (is_sym_interposer(ilmp, sym) == 0))
2434 					continue;
2435 
2436 				/*
2437 				 * Indicate this binding has occurred to an
2438 				 * interposer, and return the symbol.
2439 				 */
2440 				*binfo |= DBG_BINFO_INTERPOSE;
2441 				*dlmp = ilmp;
2442 				return (sym);
2443 			}
2444 		}
2445 	}
2446 	return ((Sym *)0);
2447 }
2448 
2449 /*
2450  * If an object specifies direct bindings (it contains a syminfo structure
2451  * describing where each binding was established during link-editing, and the
2452  * object was built -Bdirect), then look for the symbol in the specific object.
2453  */
2454 static Sym *
2455 lookup_sym_direct(Slookup *slp, Rt_map **dlmp, uint_t *binfo, Syminfo *sip,
2456     Rt_map *lmp)
2457 {
2458 	Rt_map	*clmp = slp->sl_cmap;
2459 	Sym	*sym;
2460 	Slookup	sl;
2461 
2462 	/*
2463 	 * If a direct binding resolves to the definition of a copy relocated
2464 	 * variable, it must be redirected to the copy (in the executable) that
2465 	 * will eventually be made.  Typically, this redirection occurs in
2466 	 * lookup_sym_interpose().  But, there's an edge condition.  If a
2467 	 * directly bound executable contains pic code, there may be a
2468 	 * reference to a definition that will eventually have a copy made.
2469 	 * However, this copy relocation may not yet have occurred, because
2470 	 * the relocation making this reference comes before the relocation
2471 	 * that will create the copy.
2472 	 * Under direct bindings, the syminfo indicates that a copy will be
2473 	 * taken (SYMINFO_FLG_COPY).  This can only be set in an executable.
2474 	 * Thus, the caller must be the executable, so bind to the destination
2475 	 * of the copy within the executable.
2476 	 */
2477 	if (((slp->sl_flags & LKUP_COPY) == 0) &&
2478 	    (sip->si_flags & SYMINFO_FLG_COPY)) {
2479 
2480 		slp->sl_imap = LIST(clmp)->lm_head;
2481 		if (sym = SYMINTP(clmp)(slp, dlmp, binfo))
2482 			*binfo |= (DBG_BINFO_DIRECT | DBG_BINFO_COPYREF);
2483 		return (sym);
2484 	}
2485 
2486 	/*
2487 	 * If we need to direct bind to our parent start looking in each caller
2488 	 * link map.
2489 	 */
2490 	sl = *slp;
2491 	sl.sl_flags |= LKUP_DIRECT;
2492 	sym = 0;
2493 
2494 	if (sip->si_boundto == SYMINFO_BT_PARENT) {
2495 		Aliste		off;
2496 		Bnd_desc **	bdpp;
2497 
2498 		for (ALIST_TRAVERSE(CALLERS(clmp), off, bdpp)) {
2499 			sl.sl_imap = lmp = (*bdpp)->b_caller;
2500 			if ((sym = SYMINTP(lmp)(&sl, dlmp, binfo)) != 0)
2501 				break;
2502 		}
2503 	} else {
2504 		/*
2505 		 * If we need to direct bind to anything else look in the
2506 		 * link map associated with this symbol reference.
2507 		 */
2508 		if (sip->si_boundto == SYMINFO_BT_SELF)
2509 			sl.sl_imap = lmp = clmp;
2510 		else
2511 			sl.sl_imap = lmp;
2512 
2513 		if (lmp)
2514 			sym = SYMINTP(lmp)(&sl, dlmp, binfo);
2515 	}
2516 
2517 	if (sym)
2518 		*binfo |= DBG_BINFO_DIRECT;
2519 
2520 	/*
2521 	 * If we've bound to an object, determine whether that object can be
2522 	 * interposed upon for this symbol.
2523 	 */
2524 	if (sym && (LIST(*dlmp)->lm_head != *dlmp) &&
2525 	    (LIST(*dlmp) == LIST(clmp))) {
2526 		Sym *	isym;
2527 
2528 		if ((isym = lookup_sym_interpose(slp, dlmp, binfo,
2529 		    LIST(*dlmp), sym)) != 0)
2530 			return (isym);
2531 	}
2532 
2533 	return (sym);
2534 }
2535 
2536 static Sym *
2537 _lookup_sym(Rt_map *ilmp, Slookup *slp, Rt_map **dlmp, uint_t *binfo,
2538     Aliste off)
2539 {
2540 	Rt_map	*lmp;
2541 
2542 	/*
2543 	 * Copy relocations should start their search after the head of the
2544 	 * main link-map control list.
2545 	 */
2546 	if ((off == ALO_DATA) && (slp->sl_flags & LKUP_COPY) && ilmp)
2547 		lmp = (Rt_map *)NEXT(ilmp);
2548 	else
2549 		lmp = ilmp;
2550 
2551 	for (; lmp; lmp = (Rt_map *)NEXT(lmp)) {
2552 		if (callable(slp->sl_cmap, lmp, 0)) {
2553 			Sym	*sym;
2554 
2555 			slp->sl_imap = lmp;
2556 			if ((sym = SYMINTP(lmp)(slp, dlmp, binfo)) != 0)
2557 				return (sym);
2558 		}
2559 	}
2560 	return (0);
2561 }
2562 
2563 static Sym *
2564 _lazy_find_sym(Rt_map *ilmp, Slookup *slp, Rt_map **dlmp, uint_t *binfo)
2565 {
2566 	Rt_map	*lmp;
2567 
2568 	for (lmp = ilmp; lmp; lmp = (Rt_map *)NEXT(lmp)) {
2569 		if (LAZY(lmp) == 0)
2570 			continue;
2571 		if (callable(slp->sl_cmap, lmp, 0)) {
2572 			Sym	*sym;
2573 
2574 			slp->sl_imap = lmp;
2575 			if ((sym = elf_lazy_find_sym(slp, dlmp, binfo)) != 0)
2576 				return (sym);
2577 		}
2578 	}
2579 	return (0);
2580 }
2581 
2582 /*
2583  * Symbol lookup routine.  Takes an ELF symbol name, and a list of link maps to
2584  * search (if the flag indicates LKUP_FIRST only the first link map of the list
2585  * is searched ie. we've been called from dlsym()).
2586  * If successful, return a pointer to the symbol table entry and a pointer to
2587  * the link map of the enclosing object.  Else return a null pointer.
2588  *
2589  * To improve elf performance, we first compute the elf hash value and pass
2590  * it to each find_sym() routine.  The elf function will use this value to
2591  * locate the symbol, the a.out function will simply ignore it.
2592  */
2593 Sym *
2594 lookup_sym(Slookup *slp, Rt_map **dlmp, uint_t *binfo)
2595 {
2596 	const char	*name = slp->sl_name;
2597 	Rt_map		*clmp = slp->sl_cmap;
2598 	Rt_map		*ilmp = slp->sl_imap, *lmp;
2599 	uint_t		flags = slp->sl_flags;
2600 	ulong_t		rsymndx;
2601 	Sym		*sym = 0;
2602 	Syminfo		*sip;
2603 	Slookup		sl;
2604 
2605 	if (slp->sl_hash == 0)
2606 		slp->sl_hash = elf_hash(name);
2607 	*binfo = 0;
2608 
2609 	/*
2610 	 * Search the initial link map for the required symbol (this category is
2611 	 * selected by dlsym(), where individual link maps are searched for a
2612 	 * required symbol.  Therefore, we know we have permission to look at
2613 	 * the link map).
2614 	 */
2615 	if (flags & LKUP_FIRST)
2616 		return (SYMINTP(ilmp)(slp, dlmp, binfo));
2617 
2618 	/*
2619 	 * Determine whether this lookup can be satisfied by an objects direct,
2620 	 * or lazy binding information.  This is triggered by a relocation from
2621 	 * the object (hence rsymndx is set).
2622 	 */
2623 	if (((rsymndx = slp->sl_rsymndx) != 0) &&
2624 	    ((sip = SYMINFO(clmp)) != 0)) {
2625 
2626 		/*
2627 		 * Find the corresponding Syminfo entry for the original
2628 		 * referencing symbol.
2629 		 */
2630 		/* LINTED */
2631 		sip = (Syminfo *)((char *)sip + (rsymndx * SYMINENT(clmp)));
2632 
2633 		/*
2634 		 * If the symbol information indicates a direct binding,
2635 		 * determine the link map that is required to satisfy the
2636 		 * binding.  Note, if the dependency can not be found, but a
2637 		 * direct binding isn't required, we will still fall through
2638 		 * to perform any default symbol search.
2639 		 */
2640 		if (sip->si_flags & SYMINFO_FLG_DIRECT) {
2641 			uint_t	bound = sip->si_boundto;
2642 
2643 			lmp = 0;
2644 			if (bound < SYMINFO_BT_LOWRESERVE)
2645 				lmp = elf_lazy_load(clmp, bound, name);
2646 
2647 			/*
2648 			 * If direct bindings have been disabled, and this isn't
2649 			 * a translator, skip any direct binding now that we've
2650 			 * insured the resolving object has been loaded.
2651 			 *
2652 			 * If we need to direct bind to anything, we look in
2653 			 * ourselves, our parent, or in the link map we've just
2654 			 * loaded.  Otherwise, even though we may have lazily
2655 			 * loaded an object we still continue to search for
2656 			 * symbols from the head of the link map list.
2657 			 */
2658 			if (((FLAGS(clmp) & FLG_RT_TRANS) ||
2659 			    (!(LIST(clmp)->lm_tflags & LML_TFLG_NODIRECT))) &&
2660 			    ((FLAGS1(clmp) & FL1_RT_DIRECT) ||
2661 			    (sip->si_flags & SYMINFO_FLG_DIRECTBIND))) {
2662 				sym = lookup_sym_direct(slp, dlmp, binfo,
2663 				    sip, lmp);
2664 
2665 				/*
2666 				 * If this direct binding has been disabled
2667 				 * (presumably because the symbol definition has
2668 				 * been changed since the referring object was
2669 				 * built), fall back to a standard symbol
2670 				 * search.
2671 				 */
2672 				if ((*binfo & BINFO_DIRECTDIS) == 0)
2673 					return (sym);
2674 			}
2675 		}
2676 	}
2677 
2678 	sl = *slp;
2679 
2680 	/*
2681 	 * If the referencing object has the DF_SYMBOLIC flag set, look in the
2682 	 * referencing object for the symbol first.  Failing that, fall back to
2683 	 * our generic search.
2684 	 */
2685 	if (FLAGS1(clmp) & FL1_RT_SYMBOLIC) {
2686 		sl.sl_imap = clmp;
2687 		if (sym = SYMINTP(clmp)(&sl, dlmp, binfo)) {
2688 			ulong_t	dsymndx = (((ulong_t)sym -
2689 				    (ulong_t)SYMTAB(*dlmp)) / SYMENT(*dlmp));
2690 
2691 			/*
2692 			 * Make sure this symbol hasn't explicitly been defined
2693 			 * as nodirect.
2694 			 */
2695 			if (((sip = SYMINFO(*dlmp)) == 0) ||
2696 			    /* LINTED */
2697 			    ((sip = (Syminfo *)((char *)sip +
2698 			    (dsymndx * SYMINENT(*dlmp)))) == 0) ||
2699 			    ((sip->si_flags & SYMINFO_FLG_NOEXTDIRECT) == 0))
2700 				return (sym);
2701 		}
2702 	}
2703 
2704 	/*
2705 	 * If this lookup originates from a standard relocation, then traverse
2706 	 * all link-map lists inspecting any object that is available to this
2707 	 * caller.  Otherwise, traverse the link-map list associate with the
2708 	 * caller.
2709 	 */
2710 	if (flags & LKUP_ALLCNTLIST) {
2711 		Aliste	off;
2712 		Lm_cntl	*lmc;
2713 
2714 		sym = 0;
2715 
2716 		for (ALIST_TRAVERSE(LIST(clmp)->lm_lists, off, lmc)) {
2717 			if ((sym = _lookup_sym(lmc->lc_head, &sl, dlmp,
2718 			    binfo, off)) != 0)
2719 				break;
2720 		}
2721 	} else
2722 		sym = _lookup_sym(ilmp, &sl, dlmp, binfo, ALO_DATA);
2723 
2724 	/*
2725 	 * To allow transitioning into a world of lazy loading dependencies see
2726 	 * if this link map contains objects that have lazy dependencies still
2727 	 * outstanding.  If so, and we haven't been able to locate a non-weak
2728 	 * symbol reference, start bringing in any lazy dependencies to see if
2729 	 * the reference can be satisfied.  Use of dlsym(RTLD_PROBE) sets the
2730 	 * LKUP_NOFALBACK flag, and this flag disables this fall back.
2731 	 */
2732 	if ((sym == 0) && ((sl.sl_flags & LKUP_NOFALBACK) == 0)) {
2733 		if ((lmp = ilmp) == 0)
2734 			lmp = LIST(clmp)->lm_head;
2735 		if ((flags & LKUP_WEAK) || (LIST(lmp)->lm_lazy == 0))
2736 			return ((Sym *)0);
2737 
2738 		DBG_CALL(Dbg_syms_lazy_rescan(LIST(clmp), name));
2739 
2740 		/*
2741 		 * If this request originated from a dlsym(RTLD_NEXT) then start
2742 		 * looking for dependencies from the caller, otherwise use the
2743 		 * initial link-map.
2744 		 */
2745 		if (flags & LKUP_NEXT)
2746 			sym = _lazy_find_sym(clmp, &sl, dlmp, binfo);
2747 		else {
2748 			Aliste	off;
2749 			Lm_cntl	*lmc;
2750 
2751 			for (ALIST_TRAVERSE(LIST(clmp)->lm_lists, off, lmc)) {
2752 				sl.sl_flags |= LKUP_NOFALBACK;
2753 				if ((sym = _lazy_find_sym(lmc->lc_head, &sl,
2754 				    dlmp, binfo)) != 0)
2755 					break;
2756 			}
2757 		}
2758 	}
2759 
2760 	/*
2761 	 * If the caller is restricted to a symbol search within its group,
2762 	 * determine if it is necessary to follow a binding from outside of
2763 	 * the group.
2764 	 */
2765 	if (sym && ((MODE(clmp) & (RTLD_GROUP | RTLD_WORLD)) == RTLD_GROUP)) {
2766 		Sym *	isym;
2767 
2768 		if ((isym = lookup_sym_interpose(slp, dlmp, binfo, LIST(*dlmp),
2769 		    sym)) != 0)
2770 			return (isym);
2771 	}
2772 	return (sym);
2773 }
2774 
2775 /*
2776  * Associate a binding descriptor with a caller and its dependency, or update
2777  * an existing descriptor.
2778  */
2779 int
2780 bind_one(Rt_map *clmp, Rt_map *dlmp, uint_t flags)
2781 {
2782 	Bnd_desc	**bdpp, *bdp;
2783 	Aliste		off;
2784 	int		found = ALE_CREATE;
2785 
2786 	/*
2787 	 * Determine whether a binding descriptor already exists between the
2788 	 * two objects.
2789 	 */
2790 	for (ALIST_TRAVERSE(DEPENDS(clmp), off, bdpp)) {
2791 		bdp = *bdpp;
2792 
2793 		if (bdp->b_depend == dlmp) {
2794 			found = ALE_EXISTS;
2795 			break;
2796 		}
2797 	}
2798 
2799 	if (found == ALE_CREATE) {
2800 		/*
2801 		 * Create a new binding descriptor.
2802 		 */
2803 		if ((bdp = malloc(sizeof (Bnd_desc))) == 0)
2804 			return (0);
2805 
2806 		bdp->b_caller = clmp;
2807 		bdp->b_depend = dlmp;
2808 		bdp->b_flags = 0;
2809 
2810 		/*
2811 		 * Append the binding descriptor to the caller and the
2812 		 * dependency.
2813 		 */
2814 		if (alist_append(&DEPENDS(clmp), &bdp,
2815 		    sizeof (Bnd_desc *), AL_CNT_DEPENDS) == 0)
2816 			return (0);
2817 
2818 		if (alist_append(&CALLERS(dlmp), &bdp,
2819 		    sizeof (Bnd_desc *), AL_CNT_CALLERS) == 0)
2820 			return (0);
2821 	}
2822 
2823 	if ((found == ALE_CREATE) || ((bdp->b_flags & flags) != flags)) {
2824 		bdp->b_flags |= flags;
2825 
2826 		if (flags & BND_REFER)
2827 			FLAGS1(dlmp) |= FL1_RT_USED;
2828 
2829 		DBG_CALL(Dbg_file_bind_entry(LIST(clmp), bdp));
2830 	}
2831 	return (found);
2832 }
2833 
2834 /*
2835  * Cleanup after relocation processing.
2836  */
2837 int
2838 relocate_finish(Rt_map *lmp, Alist *bound, int textrel, int ret)
2839 {
2840 	DBG_CALL(Dbg_reloc_run(lmp, 0, ret, DBG_REL_FINISH));
2841 
2842 	/*
2843 	 * Establish bindings to all objects that have been bound to.
2844 	 */
2845 	if (bound) {
2846 		Aliste	off;
2847 		Rt_map	**lmpp;
2848 
2849 		if (ret) {
2850 			for (ALIST_TRAVERSE(bound, off, lmpp)) {
2851 				if (bind_one(lmp, *lmpp, BND_REFER) == 0) {
2852 					ret = 0;
2853 					break;
2854 				}
2855 			}
2856 		}
2857 		free(bound);
2858 	}
2859 
2860 	/*
2861 	 * If we write enabled the text segment to perform these relocations
2862 	 * re-protect by disabling writes.
2863 	 */
2864 	if (textrel)
2865 		(void) LM_SET_PROT(lmp)(lmp, 0);
2866 
2867 	return (ret);
2868 }
2869