[BACK]Return to symver.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / libexec / ld.elf_so

File: [cvs.NetBSD.org] / src / libexec / ld.elf_so / symver.c (download)

Revision 1.4, Thu May 9 15:38:14 2013 UTC (10 years, 11 months ago) by christos
Branch: MAIN
CVS Tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, phil-wifi-base, phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, phil-wifi-20191119, phil-wifi-20190609, phil-wifi, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, pgoyette-compat-merge-20190127, pgoyette-compat-base, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, pgoyette-compat, perseant-stdc-iso10646-base, perseant-stdc-iso10646, netbsd-9-base, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9, netbsd-8-base, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7, netbsd-10-base, netbsd-10-0-RELEASE, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1, netbsd-10, matt-nb8-mediatek-base, matt-nb8-mediatek, localcount-20160914, is-mlppp-base, is-mlppp, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan, HEAD
Changes since 1.3: +4 -4 lines

convert to SIMPLEQ like the rest of the queues.

/*	$NetBSD: symver.c,v 1.4 2013/05/09 15:38:14 christos Exp $	*/

/*-
 * Copyright 1996, 1997, 1998, 1999, 2000 John D. Polstra.
 * Copyright 2003 Alexander Kabaev <kan@FreeBSD.ORG>.
 * Copyright 2009, 2010, 2011 Konstantin Belousov <kib@FreeBSD.ORG>.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * $FreeBSD: head/libexec/rtld-elf/rtld.c 220004 2011-03-25 18:23:10Z avg $
 */

/*-
 * Copyright (c) 2011 The NetBSD Foundation, Inc.
 * All rights reserved.
 *
 * This code is derived from software contributed to The NetBSD Foundation
 * by NONAKA Kimihiro.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <sys/cdefs.h>
__RCSID("$NetBSD: symver.c,v 1.4 2013/05/09 15:38:14 christos Exp $");

#include <sys/param.h>
#include <sys/exec_elf.h>
#include <string.h>

#include "debug.h"
#include "rtld.h"

void
_rtld_object_add_name(Obj_Entry *obj, const char *name)
{
    Name_Entry *entry;
    size_t len;

    len = strlen(name);
    entry = xmalloc(sizeof(Name_Entry) + len);

    if (entry != NULL) {
	strcpy(entry->name, name);
	SIMPLEQ_INSERT_TAIL(&obj->names, entry, link);
    }
}

int
_rtld_object_match_name(const Obj_Entry *obj, const char *name)
{
	Name_Entry *entry;

	SIMPLEQ_FOREACH(entry, &obj->names, link) {
		dbg(("name: %s, entry->name: %s", name, entry->name));
		if (strcmp(name, entry->name) == 0)
			return 1;
	}
	return 0;
}

#ifdef RTLD_LOADER
static Obj_Entry *
locate_dependency(const Obj_Entry *obj, const char *name)
{
	const Objlist_Entry *entry;
	const Needed_Entry *needed;

	SIMPLEQ_FOREACH(entry, &_rtld_list_main, link) {
		if (_rtld_object_match_name(entry->obj, name))
			return entry->obj;
	}

	for (needed = obj->needed; needed != NULL; needed = needed->next) {
		dbg(("needed: name: %s, str: %s", name,
		    &obj->strtab[needed->name]));
		if (strcmp(name, &obj->strtab[needed->name]) == 0 ||
		    (needed->obj != NULL && _rtld_object_match_name(needed->obj, name))) {
			/*
			 * If there is DT_NEEDED for the name we are looking
			 * for, we are all set.  Note that object might not be
			 * found if dependency was not loaded yet, so the
			 * function can return NULL here.  This is expected
			 * and handled properly by the caller.
			 */
			return needed->obj;
		}
	}

	_rtld_error("%s: Unexpected inconsistency: dependency %s not found",
	    obj->path, name);
	return NULL;
}

static int
check_object_provided_version(Obj_Entry *refobj, const Obj_Entry *depobj,
    const Elf_Vernaux *vna)
{
	const char *vername = &refobj->strtab[vna->vna_name];
	const char *depstrtab = depobj->strtab;
	const Elf_Verdef *vd = depobj->verdef;
	const Elf_Word hash = vna->vna_hash;

	if (vd == NULL) {
		_rtld_error("%s: version %s required by %s not defined",
		    depobj->path, vername, refobj->path);
		return -1;
	}

	for (;; vd = (const Elf_Verdef *)((const char *)vd + vd->vd_next)) {
		if (vd->vd_version != VER_DEF_CURRENT) {
			_rtld_error(
			    "%s: Unsupported version %d of Elf_Verdef entry",
			    depobj->path, vd->vd_version);
			return -1;
		}
		dbg(("hash: 0x%x, vd_hash: 0x%x", hash, vd->vd_hash));
		if (hash == vd->vd_hash) {
			const Elf_Verdaux *vda = (const Elf_Verdaux *)
			    ((const char *)vd + vd->vd_aux);
			dbg(("vername: %s, str: %s", vername,
			    &depstrtab[vda->vda_name]));
			if (strcmp(vername, &depstrtab[vda->vda_name]) == 0)
				return 0;
		}
		if (vd->vd_next == 0)
			break;
	}
	if (vna->vna_flags & VER_FLG_WEAK)
		return 0;

	_rtld_error("%s: version %s required by %s not found", depobj->path,
	    vername, refobj->path);
	return -1;
}

int
_rtld_verify_object_versions(Obj_Entry *obj)
{
	const char *strtab = obj->strtab;
	const Elf_Verneed *vn;
	const Elf_Vernaux *vna;
	const Elf_Verdef *vd;
	const Elf_Verdaux *vda;
	const Obj_Entry *depobj;
	int maxvertab, vernum;

	dbg(("obj->path: %s", obj->path));

	/*
	 * If we don't have string table or objects that have their version
	 * requirements already checked, we must be ok.
	 */
	if (strtab == NULL || obj->vertab != NULL)
		return 0;

	maxvertab = 0;

	/*
	 * Walk over defined and required version records and figure out
	 * max index used by any of them. Do very basic sanity checking
	 * while there.
	 */
	for (vn = obj->verneed;
	     vn != NULL;
	     vn = (const Elf_Verneed *)((const char *)vn + vn->vn_next)) {

		if (vn->vn_version != VER_NEED_CURRENT) {
			_rtld_error(
			    "%s: Unsupported version %d of Elf_Verneed entry",
			    obj->path, vn->vn_version);
			return -1;
		}

		dbg(("verneed: vn_file: %d, str: %s",
		    vn->vn_file, &strtab[vn->vn_file]));
		depobj = locate_dependency(obj, &strtab[vn->vn_file]);
		assert(depobj != NULL);

		for (vna = (const Elf_Vernaux *)((const char *)vn + vn->vn_aux);
		     /*CONSTCOND*/1;
		     vna = (const Elf_Vernaux *)((const char *)vna + vna->vna_next)) {

			if (check_object_provided_version(obj, depobj, vna) == -1)
				return -1;

			vernum = VER_NEED_IDX(vna->vna_other);
			if (vernum > maxvertab)
				maxvertab = vernum;

			if (vna->vna_next == 0) {
				/* No more symbols. */
				break;
			}
		}

		if (vn->vn_next == 0) {
			/* No more dependencies. */
			break;
		}
	}

	for (vd = obj->verdef;
	     vd != NULL;
	     vd = (const Elf_Verdef *)((const char *)vd + vd->vd_next)) {

		if (vd->vd_version != VER_DEF_CURRENT) {
			_rtld_error(
			    "%s: Unsupported version %d of Elf_Verdef entry",
			    obj->path, vd->vd_version);
			return -1;
		}

		dbg(("verdef: vn_ndx: 0x%x", vd->vd_ndx));
		vernum = VER_DEF_IDX(vd->vd_ndx);
		if (vernum > maxvertab)
			maxvertab = vernum;

		if (vd->vd_next == 0) {
			/* No more definitions. */
			break;
		}
	}

	dbg(("maxvertab: %d", maxvertab));
	if (maxvertab == 0)
		return 0;

	/*
	 * Store version information in array indexable by version index.
	 * Verify that object version requirements are satisfied along the
	 * way.
	 */
	obj->vertabnum = maxvertab + 1;
	obj->vertab = (Ver_Entry *)xcalloc(obj->vertabnum * sizeof(Ver_Entry));

	for (vn = obj->verneed;
	     vn != NULL;
	     vn = (const Elf_Verneed *)((const char *)vn + vn->vn_next)) {

		for (vna = (const Elf_Vernaux *)((const char *)vn + vn->vn_aux);
		     /*CONSTCOND*/1;
		     vna = (const Elf_Vernaux *)((const char *)vna + vna->vna_next)) {

			vernum = VER_NEED_IDX(vna->vna_other);
			assert(vernum <= maxvertab);
			obj->vertab[vernum].hash = vna->vna_hash;
			obj->vertab[vernum].name = &strtab[vna->vna_name];
			obj->vertab[vernum].file = &strtab[vn->vn_file];
			obj->vertab[vernum].flags =
			    (vna->vna_other & VER_NEED_HIDDEN)
			      ? VER_INFO_HIDDEN : 0;
			dbg(("verneed: vernum: %d, hash: 0x%x, name: %s, "
			    "file: %s, flags: 0x%x", vernum,
			    obj->vertab[vernum].hash, obj->vertab[vernum].name,
			    obj->vertab[vernum].file,
			    obj->vertab[vernum].flags));

			if (vna->vna_next == 0) {
				/* No more symbols. */
				break;
			}
		}
		if (vn->vn_next == 0) {
			/* No more dependencies. */
			break;
		}
	}

	for (vd = obj->verdef;
	     vd != NULL;
	     vd = (const Elf_Verdef *)((const char *)vd + vd->vd_next)) {

		if ((vd->vd_flags & VER_FLG_BASE) == 0) {
			vernum = VER_DEF_IDX(vd->vd_ndx);
			assert(vernum <= maxvertab);
			vda = (const Elf_Verdaux *)
			    ((const char *)vd + vd->vd_aux);
			obj->vertab[vernum].hash = vd->vd_hash;
			obj->vertab[vernum].name = &strtab[vda->vda_name];
			obj->vertab[vernum].file = NULL;
			obj->vertab[vernum].flags = 0;
			dbg(("verdef: vernum: %d, hash: 0x%x, name: %s",
			    vernum, obj->vertab[vernum].hash,
			    obj->vertab[vernum].name));
		}

		if (vd->vd_next == 0) {
			/* No more definitions. */
			break;
		}
	}

	return 0;
}
#endif