/*-1* Copyright (c) 2006,2008-2009,2011 Joseph Koshy2* All rights reserved.3*4* Redistribution and use in source and binary forms, with or without5* modification, are permitted provided that the following conditions6* are met:7* 1. Redistributions of source code must retain the above copyright8* notice, this list of conditions and the following disclaimer.9* 2. Redistributions in binary form must reproduce the above copyright10* notice, this list of conditions and the following disclaimer in the11* documentation and/or other materials provided with the distribution.12*13* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND14* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE15* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE16* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE17* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL18* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS19* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)20* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT21* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY22* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF23* SUCH DAMAGE.24*/2526#include <sys/cdefs.h>2728#include <assert.h>29#include <libelf.h>30#include <stdlib.h>3132#include "_libelf.h"3334#if ELFTC_HAVE_MMAP35#include <sys/mman.h>36#endif3738ELFTC_VCSID("$Id$");3940int41elf_end(Elf *e)42{43Elf *sv;44Elf_Scn *scn, *tscn;4546if (e == NULL || e->e_activations == 0)47return (0);4849if (--e->e_activations > 0)50return (e->e_activations);5152assert(e->e_activations == 0);5354while (e && e->e_activations == 0) {55switch (e->e_kind) {56case ELF_K_AR:57/*58* If we still have open child descriptors, we59* need to defer reclaiming resources till all60* the child descriptors for the archive are61* closed.62*/63if (e->e_u.e_ar.e_nchildren > 0)64return (0);65break;66case ELF_K_ELF:67/*68* Reclaim all section descriptors.69*/70STAILQ_FOREACH_SAFE(scn, &e->e_u.e_elf.e_scn, s_next,71tscn)72scn = _libelf_release_scn(scn);73break;74case ELF_K_NUM:75assert(0);76default:77break;78}7980if (e->e_rawfile) {81if (e->e_flags & LIBELF_F_RAWFILE_MALLOC)82free(e->e_rawfile);83#if ELFTC_HAVE_MMAP84else if (e->e_flags & LIBELF_F_RAWFILE_MMAP)85(void) munmap(e->e_rawfile, e->e_rawsize);86#endif87}8889sv = e;90if ((e = e->e_parent) != NULL)91e->e_u.e_ar.e_nchildren--;92sv = _libelf_release_elf(sv);93}9495return (0);96}979899