17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate * CDDL HEADER START
37c478bd9Sstevel@tonic-gate *
47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the
5*7257d1b4Sraf * Common Development and Distribution License (the "License").
6*7257d1b4Sraf * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate *
87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate * and limitations under the License.
127c478bd9Sstevel@tonic-gate *
137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate *
197c478bd9Sstevel@tonic-gate * CDDL HEADER END
207c478bd9Sstevel@tonic-gate */
21*7257d1b4Sraf
22*7257d1b4Sraf /*
23*7257d1b4Sraf * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
24*7257d1b4Sraf * Use is subject to license terms.
25*7257d1b4Sraf */
26*7257d1b4Sraf
277c478bd9Sstevel@tonic-gate /* Copyright (c) 1988 AT&T */
287c478bd9Sstevel@tonic-gate /* All Rights Reserved */
297c478bd9Sstevel@tonic-gate
30*7257d1b4Sraf #pragma ident "%Z%%M% %I% %E% SMI"
317c478bd9Sstevel@tonic-gate
327c478bd9Sstevel@tonic-gate #include <stdlib.h>
337c478bd9Sstevel@tonic-gate #include "libelf.h"
347c478bd9Sstevel@tonic-gate #include "decl.h"
357c478bd9Sstevel@tonic-gate #include "msg.h"
367c478bd9Sstevel@tonic-gate
377c478bd9Sstevel@tonic-gate
387c478bd9Sstevel@tonic-gate Elf_Data *
elf_rawdata(Elf_Scn * scn,Elf_Data * data)397c478bd9Sstevel@tonic-gate elf_rawdata(Elf_Scn * scn, Elf_Data * data)
407c478bd9Sstevel@tonic-gate {
417c478bd9Sstevel@tonic-gate Dnode * d = (Dnode *)data;
427c478bd9Sstevel@tonic-gate Dnode * raw;
437c478bd9Sstevel@tonic-gate Elf_Data * rc;
447c478bd9Sstevel@tonic-gate Elf * elf;
457c478bd9Sstevel@tonic-gate
467c478bd9Sstevel@tonic-gate if (scn == 0)
477c478bd9Sstevel@tonic-gate return (0);
487c478bd9Sstevel@tonic-gate elf = scn->s_elf;
497c478bd9Sstevel@tonic-gate READLOCKS(elf, scn)
507c478bd9Sstevel@tonic-gate if ((scn->s_myflags & SF_READY) == 0) {
517c478bd9Sstevel@tonic-gate UPGRADELOCKS(elf, scn)
527c478bd9Sstevel@tonic-gate if ((scn->s_myflags & SF_READY) == 0)
537c478bd9Sstevel@tonic-gate (void) _elf_cookscn(scn);
547c478bd9Sstevel@tonic-gate DOWNGRADELOCKS(elf, scn)
557c478bd9Sstevel@tonic-gate }
567c478bd9Sstevel@tonic-gate
577c478bd9Sstevel@tonic-gate if (d == 0)
587c478bd9Sstevel@tonic-gate d = scn->s_hdnode;
597c478bd9Sstevel@tonic-gate else
607c478bd9Sstevel@tonic-gate d = d->db_next;
617c478bd9Sstevel@tonic-gate
627c478bd9Sstevel@tonic-gate if (d == 0) {
637c478bd9Sstevel@tonic-gate READUNLOCKS(elf, scn)
647c478bd9Sstevel@tonic-gate return (0);
657c478bd9Sstevel@tonic-gate }
667c478bd9Sstevel@tonic-gate
677c478bd9Sstevel@tonic-gate if (d->db_scn != scn) {
687c478bd9Sstevel@tonic-gate _elf_seterr(EREQ_DATA, 0);
697c478bd9Sstevel@tonic-gate READUNLOCKS(elf, scn)
707c478bd9Sstevel@tonic-gate return (0);
717c478bd9Sstevel@tonic-gate }
727c478bd9Sstevel@tonic-gate
737c478bd9Sstevel@tonic-gate /*
747c478bd9Sstevel@tonic-gate * The data may come from a previously constructed Dbuf,
757c478bd9Sstevel@tonic-gate * from the file's raw memory image, or the file system.
767c478bd9Sstevel@tonic-gate * "Empty" regions get an empty buffer.
777c478bd9Sstevel@tonic-gate */
787c478bd9Sstevel@tonic-gate
797c478bd9Sstevel@tonic-gate if (d->db_raw != 0) {
807c478bd9Sstevel@tonic-gate rc = &d->db_raw->db_data;
817c478bd9Sstevel@tonic-gate READUNLOCKS(elf, scn)
827c478bd9Sstevel@tonic-gate return (rc);
837c478bd9Sstevel@tonic-gate }
847c478bd9Sstevel@tonic-gate
857c478bd9Sstevel@tonic-gate if ((raw = _elf_dnode()) == 0) {
867c478bd9Sstevel@tonic-gate READUNLOCKS(elf, scn)
877c478bd9Sstevel@tonic-gate return (0);
887c478bd9Sstevel@tonic-gate }
897c478bd9Sstevel@tonic-gate raw->db_myflags |= DBF_READY;
907c478bd9Sstevel@tonic-gate if ((d->db_off == 0) || (d->db_fsz == 0)) {
917c478bd9Sstevel@tonic-gate d->db_raw = raw;
927c478bd9Sstevel@tonic-gate raw->db_data.d_size = d->db_shsz;
937c478bd9Sstevel@tonic-gate rc = &raw->db_data;
947c478bd9Sstevel@tonic-gate READUNLOCKS(elf, scn)
957c478bd9Sstevel@tonic-gate return (rc);
967c478bd9Sstevel@tonic-gate }
977c478bd9Sstevel@tonic-gate
987c478bd9Sstevel@tonic-gate /*
997c478bd9Sstevel@tonic-gate * validate the region
1007c478bd9Sstevel@tonic-gate */
1017c478bd9Sstevel@tonic-gate
1027c478bd9Sstevel@tonic-gate if ((d->db_off < 0) ||
1037c478bd9Sstevel@tonic-gate (d->db_off >= elf->ed_fsz) ||
1047c478bd9Sstevel@tonic-gate (elf->ed_fsz - d->db_off < d->db_fsz)) {
1057c478bd9Sstevel@tonic-gate _elf_seterr(EFMT_DATA, 0);
1067c478bd9Sstevel@tonic-gate free(raw);
1077c478bd9Sstevel@tonic-gate READUNLOCKS(elf, scn)
1087c478bd9Sstevel@tonic-gate return (0);
1097c478bd9Sstevel@tonic-gate }
1107c478bd9Sstevel@tonic-gate raw->db_data.d_size = d->db_fsz;
1117c478bd9Sstevel@tonic-gate if (elf->ed_raw != 0) {
1127c478bd9Sstevel@tonic-gate raw->db_data.d_buf = (Elf_Void *)(elf->ed_raw + d->db_off);
1137c478bd9Sstevel@tonic-gate d->db_raw = raw;
1147c478bd9Sstevel@tonic-gate rc = &raw->db_data;
1157c478bd9Sstevel@tonic-gate READUNLOCKS(elf, scn)
1167c478bd9Sstevel@tonic-gate return (rc);
1177c478bd9Sstevel@tonic-gate }
1187c478bd9Sstevel@tonic-gate raw->db_buf = (Elf_Void *)_elf_read(elf->ed_fd,
1197c478bd9Sstevel@tonic-gate elf->ed_baseoff + d->db_off, d->db_fsz);
1207c478bd9Sstevel@tonic-gate if (raw->db_buf == 0) {
1217c478bd9Sstevel@tonic-gate free(raw);
1227c478bd9Sstevel@tonic-gate READUNLOCKS(elf, scn)
1237c478bd9Sstevel@tonic-gate return (0);
1247c478bd9Sstevel@tonic-gate }
1257c478bd9Sstevel@tonic-gate raw->db_data.d_buf = raw->db_buf;
1267c478bd9Sstevel@tonic-gate d->db_raw = raw;
1277c478bd9Sstevel@tonic-gate rc = &raw->db_data;
1287c478bd9Sstevel@tonic-gate READUNLOCKS(elf, scn)
1297c478bd9Sstevel@tonic-gate return (rc);
1307c478bd9Sstevel@tonic-gate }
131