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 55aefb655Srie * Common Development and Distribution License (the "License"). 65aefb655Srie * 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 */ 215aefb655Srie 227c478bd9Sstevel@tonic-gate /* 23*dde769a2SRod Evans * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 247c478bd9Sstevel@tonic-gate * Use is subject to license terms. 257c478bd9Sstevel@tonic-gate */ 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gate #include <unistd.h> 287c478bd9Sstevel@tonic-gate #include <strings.h> 297c478bd9Sstevel@tonic-gate #include <limits.h> 307c478bd9Sstevel@tonic-gate #include <dlfcn.h> 317c478bd9Sstevel@tonic-gate #include "_conv.h" 327c478bd9Sstevel@tonic-gate #include "lddstub_msg.h" 337c478bd9Sstevel@tonic-gate 347c478bd9Sstevel@tonic-gate static int 357c478bd9Sstevel@tonic-gate originlddstub(char *buffer, const char *orgfile) 367c478bd9Sstevel@tonic-gate { 377c478bd9Sstevel@tonic-gate int len; 387c478bd9Sstevel@tonic-gate 397c478bd9Sstevel@tonic-gate if (dlinfo(RTLD_SELF, RTLD_DI_ORIGIN, (void *)buffer) == -1) 407c478bd9Sstevel@tonic-gate return (-1); 417c478bd9Sstevel@tonic-gate if (strlcat(buffer, orgfile, PATH_MAX) >= PATH_MAX) 427c478bd9Sstevel@tonic-gate return (-1); 437c478bd9Sstevel@tonic-gate if ((len = resolvepath(buffer, buffer, (PATH_MAX - 1))) == -1) 447c478bd9Sstevel@tonic-gate return (-1); 457c478bd9Sstevel@tonic-gate buffer[len] = '\0'; 465aefb655Srie if (access(buffer, X_OK) == -1) 477c478bd9Sstevel@tonic-gate return (-1); 487c478bd9Sstevel@tonic-gate 495aefb655Srie return (1); 507c478bd9Sstevel@tonic-gate } 517c478bd9Sstevel@tonic-gate 525aefb655Srie static char orgstub[PATH_MAX], orgstub64[PATH_MAX]; 535aefb655Srie static int orgflag, orgflag64; 545aefb655Srie 557c478bd9Sstevel@tonic-gate /* 567c478bd9Sstevel@tonic-gate * Determine what lddstub to run. 577c478bd9Sstevel@tonic-gate */ 587c478bd9Sstevel@tonic-gate const char * 597c478bd9Sstevel@tonic-gate conv_lddstub(int class) 607c478bd9Sstevel@tonic-gate { 617c478bd9Sstevel@tonic-gate const char *stub; 627c478bd9Sstevel@tonic-gate 637c478bd9Sstevel@tonic-gate /* 647c478bd9Sstevel@tonic-gate * Establish defaults. 657c478bd9Sstevel@tonic-gate */ 667c478bd9Sstevel@tonic-gate if (class == ELFCLASS32) 677c478bd9Sstevel@tonic-gate stub = MSG_ORIG(MSG_PTH_LDDSTUB); 687c478bd9Sstevel@tonic-gate else 697c478bd9Sstevel@tonic-gate stub = MSG_ORIG(MSG_PTH_LDDSTUB_64); 707c478bd9Sstevel@tonic-gate 717c478bd9Sstevel@tonic-gate /* 727c478bd9Sstevel@tonic-gate * Provided we're not secure, determine lddstub's location from our 737c478bd9Sstevel@tonic-gate * own origin. 747c478bd9Sstevel@tonic-gate */ 757c478bd9Sstevel@tonic-gate if (geteuid()) { 767c478bd9Sstevel@tonic-gate if ((class == ELFCLASS32) && (orgflag != -1)) { 777c478bd9Sstevel@tonic-gate if (orgflag == 0) { 78*dde769a2SRod Evans /* BEGIN CSTYLED */ 797c478bd9Sstevel@tonic-gate if ((orgflag = originlddstub(orgstub, 80*dde769a2SRod Evans #ifdef _LP64 81*dde769a2SRod Evans MSG_ORIG(MSG_ORG_64LDD_32STUB))) == -1) 82*dde769a2SRod Evans #else 83*dde769a2SRod Evans MSG_ORIG(MSG_ORG_32LDD_32STUB))) == -1) 84*dde769a2SRod Evans #endif 857c478bd9Sstevel@tonic-gate return (stub); 86*dde769a2SRod Evans /* END CSTYLED */ 877c478bd9Sstevel@tonic-gate } 887c478bd9Sstevel@tonic-gate stub = (const char *)orgstub; 897c478bd9Sstevel@tonic-gate } 907c478bd9Sstevel@tonic-gate if ((class == ELFCLASS64) && (orgflag64 != -1)) { 917c478bd9Sstevel@tonic-gate if (orgflag64 == 0) { 92*dde769a2SRod Evans /* BEGIN CSTYLED */ 937c478bd9Sstevel@tonic-gate if ((orgflag64 = originlddstub(orgstub64, 94*dde769a2SRod Evans #ifdef _LP64 95*dde769a2SRod Evans MSG_ORIG(MSG_ORG_64LDD_64STUB))) == -1) 96*dde769a2SRod Evans #else 97*dde769a2SRod Evans MSG_ORIG(MSG_ORG_32LDD_64STUB))) == -1) 98*dde769a2SRod Evans #endif 997c478bd9Sstevel@tonic-gate return (stub); 100*dde769a2SRod Evans /* END CSTYLED */ 1017c478bd9Sstevel@tonic-gate } 1027c478bd9Sstevel@tonic-gate stub = (const char *)orgstub64; 1037c478bd9Sstevel@tonic-gate } 1047c478bd9Sstevel@tonic-gate } 1057c478bd9Sstevel@tonic-gate return (stub); 1067c478bd9Sstevel@tonic-gate } 107